From 2d85a3ee2bde9e4aa93274c32d0f100c2756491a Mon Sep 17 00:00:00 2001 From: Jeff Date: Sun, 5 Nov 2023 13:54:29 -0500 Subject: [PATCH] Improve soundness of Map type --- Cargo.lock | 7 - Cargo.toml | 1 - examples/async_download.ds | 8 +- src/abstract_tree/assignment.rs | 8 +- src/abstract_tree/built_in_function.rs | 4 +- src/abstract_tree/filter.rs | 4 +- src/abstract_tree/find.rs | 6 +- src/abstract_tree/for.rs | 14 +- src/abstract_tree/function_call.rs | 7 +- src/abstract_tree/identifier.rs | 2 +- src/abstract_tree/identifier_assignment.rs | 79 + src/abstract_tree/index_assignment.rs | 62 + src/abstract_tree/insert.rs | 2 +- src/abstract_tree/remove.rs | 8 +- src/abstract_tree/select.rs | 11 +- src/abstract_tree/transform.rs | 12 +- src/abstract_tree/value_node.rs | 10 +- src/abstract_tree/yield.rs | 28 + src/error.rs | 14 +- src/evaluator.rs | 10 +- src/main.rs | 2 + src/value/map.rs | 36 +- src/value/mod.rs | 87 +- src/value/table.rs | 30 +- src/value/value_type.rs | 2 +- tree-sitter-dust/src/grammar.json | 13 +- tree-sitter-dust/src/node-types.json | 4 - tree-sitter-dust/src/parser.c | 214841 +++++++----------- 28 files changed, 79429 insertions(+), 135883 deletions(-) create mode 100644 src/abstract_tree/identifier_assignment.rs create mode 100644 src/abstract_tree/index_assignment.rs create mode 100644 src/abstract_tree/yield.rs diff --git a/Cargo.lock b/Cargo.lock index 640bfe9..392610e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -468,7 +468,6 @@ dependencies = [ "comfy-table", "csv", "git2", - "json", "rand", "rayon", "reqwest", @@ -909,12 +908,6 @@ dependencies = [ "wasm-bindgen", ] -[[package]] -name = "json" -version = "0.12.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "078e285eafdfb6c4b434e0d31e8cfcb5115b651496faca5749b88fafd4f23bfd" - [[package]] name = "kv-log-macro" version = "1.0.7" diff --git a/Cargo.toml b/Cargo.toml index 84a469a..bd843ea 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,7 +17,6 @@ clap = { version = "4.4.4", features = ["derive"] } comfy-table = "7.0.1" csv = "1.2.2" git2 = "0.18.1" -json = "0.12.4" rand = "0.8.5" rayon = "1.8.0" reqwest = { version = "0.11.20", features = ["blocking", "json"] } diff --git a/examples/async_download.ds b/examples/async_download.ds index 150b731..ca6d005 100644 --- a/examples/async_download.ds +++ b/examples/async_download.ds @@ -1,11 +1,13 @@ -data = async { { +raw_data = async { + { cast = (download "https://api.sampleapis.com/futurama/cast") characters = (download "https://api.sampleapis.com/futurama/characters") episodes = (download "https://api.sampleapis.com/futurama/episodes") -} } + } +} cast_len = (length (from_json data:cast)) characters_len = (length (from_json data:characters)) episodes_len = (length (from_json data:episodes)) -(output [cast_len, characters_len, episodes_len ]) +(output [cast_len, characters_len, episodes_len]) diff --git a/src/abstract_tree/assignment.rs b/src/abstract_tree/assignment.rs index b23fcd2..4c71f34 100644 --- a/src/abstract_tree/assignment.rs +++ b/src/abstract_tree/assignment.rs @@ -50,11 +50,11 @@ impl AbstractTree for Assignment { fn run(&self, source: &str, context: &mut Map) -> Result { let key = self.identifier.inner().clone(); let value = self.statement.run(source, context)?; - let mut context = context.variables_mut(); + let mut variables = context.variables_mut()?; let new_value = match self.operator { AssignmentOperator::PlusEqual => { - if let Some(mut previous_value) = context.get(&key).cloned() { + if let Some(mut previous_value) = variables.get(&key).cloned() { previous_value += value; previous_value } else { @@ -62,7 +62,7 @@ impl AbstractTree for Assignment { } } AssignmentOperator::MinusEqual => { - if let Some(mut previous_value) = context.get(&key).cloned() { + if let Some(mut previous_value) = variables.get(&key).cloned() { previous_value -= value; previous_value } else { @@ -72,7 +72,7 @@ impl AbstractTree for Assignment { AssignmentOperator::Equal => value, }; - context.insert(key, new_value); + variables.insert(key, new_value); Ok(Value::Empty) } diff --git a/src/abstract_tree/built_in_function.rs b/src/abstract_tree/built_in_function.rs index b6650ae..f3a1013 100644 --- a/src/abstract_tree/built_in_function.rs +++ b/src/abstract_tree/built_in_function.rs @@ -317,7 +317,7 @@ impl AbstractTree for BuiltInFunction { let value = expression.run(source, context)?; let length = match value { Value::List(list) => list.items().len(), - Value::Map(map) => map.len(), + Value::Map(map) => map.variables()?.len(), Value::Table(table) => table.len(), Value::String(string) => string.chars().count(), Value::Function(_) => todo!(), @@ -405,7 +405,7 @@ impl AbstractTree for BuiltInFunction { let metadata_output = Map::new(); { - let mut metadata_variables = metadata_output.variables_mut(); + let mut metadata_variables = metadata_output.variables_mut()?; metadata_variables.insert("type".to_string(), Value::String(file_type)); metadata_variables.insert("size".to_string(), Value::Integer(size)); diff --git a/src/abstract_tree/filter.rs b/src/abstract_tree/filter.rs index c7bf45a..d34eb9d 100644 --- a/src/abstract_tree/filter.rs +++ b/src/abstract_tree/filter.rs @@ -45,7 +45,7 @@ impl AbstractTree for Filter { Some(expression) => Some(expression.run(source, context)?.as_integer()? as usize), None => None, }; - let loop_context = Map::clone_from(context); + let loop_context = Map::clone_from(context)?; values.par_iter().try_for_each(|value| { if let Some(max) = count { @@ -57,7 +57,7 @@ impl AbstractTree for Filter { let mut iter_context = loop_context.clone(); iter_context - .variables_mut() + .variables_mut()? .insert(key.clone(), value.clone()); let should_include = self diff --git a/src/abstract_tree/find.rs b/src/abstract_tree/find.rs index 165cd65..06b6e24 100644 --- a/src/abstract_tree/find.rs +++ b/src/abstract_tree/find.rs @@ -32,12 +32,12 @@ impl AbstractTree for Find { let value = self.expression.run(source, context)?; let values = value.as_list()?.items(); let key = self.identifier.inner(); - let mut context = context.clone(); + let mut variables = context.variables_mut()?; for value in values.iter() { - context.variables_mut().insert(key.clone(), value.clone()); + variables.insert(key.clone(), value.clone()); - let should_return = self.item.run(source, &mut context)?.as_boolean()?; + let should_return = self.item.run(source, &mut context.clone())?.as_boolean()?; if should_return { return Ok(value.clone()); diff --git a/src/abstract_tree/for.rs b/src/abstract_tree/for.rs index e17a3dd..a23921d 100644 --- a/src/abstract_tree/for.rs +++ b/src/abstract_tree/for.rs @@ -49,25 +49,25 @@ impl AbstractTree for For { let expression_run = self.collection.run(source, context)?; let values = expression_run.as_list()?.items(); let key = self.item_id.inner(); - let mut loop_context = Map::clone_from(context); + let loop_context = Map::clone_from(context)?; if self.is_async { values.par_iter().try_for_each(|value| { let mut iter_context = loop_context.clone(); iter_context - .variables_mut() + .variables_mut()? .insert(key.clone(), value.clone()); self.block.run(source, &mut iter_context).map(|_value| ()) })?; } else { - for value in values.iter() { - loop_context - .variables_mut() - .insert(key.clone(), value.clone()); + let mut variables = loop_context.variables_mut()?; - self.block.run(source, &mut loop_context)?; + for value in values.iter() { + variables.insert(key.clone(), value.clone()); + + self.block.run(source, &mut loop_context.clone())?; } } diff --git a/src/abstract_tree/function_call.rs b/src/abstract_tree/function_call.rs index 7043e6b..4c5863e 100644 --- a/src/abstract_tree/function_call.rs +++ b/src/abstract_tree/function_call.rs @@ -53,21 +53,22 @@ impl AbstractTree for FunctionCall { FunctionCall::ContextDefined { name, arguments } => (name, arguments), }; - let definition = if let Some(value) = context.variables().get(name.inner()) { + let definition = if let Some(value) = context.variables()?.get(name.inner()) { value.as_function().cloned()? } else { return Err(Error::FunctionIdentifierNotFound(name.clone())); }; - let mut function_context = Map::clone_from(context); + let mut function_context = Map::clone_from(context)?; if let Some(parameters) = definition.identifiers() { let parameter_expression_pairs = parameters.iter().zip(arguments.iter()); + let mut variables = function_context.variables_mut()?; for (identifier, expression) in parameter_expression_pairs { let key = identifier.clone().take_inner(); let value = expression.run(source, context)?; - function_context.variables_mut().insert(key, value); + variables.insert(key, value); } } diff --git a/src/abstract_tree/identifier.rs b/src/abstract_tree/identifier.rs index 61bac3a..d26a675 100644 --- a/src/abstract_tree/identifier.rs +++ b/src/abstract_tree/identifier.rs @@ -30,7 +30,7 @@ impl AbstractTree for Identifier { } fn run(&self, _source: &str, context: &mut Map) -> Result { - if let Some(value) = context.variables().get(&self.0) { + if let Some(value) = context.variables()?.get(&self.0) { Ok(value.clone()) } else { Err(Error::VariableIdentifierNotFound(self.inner().clone())) diff --git a/src/abstract_tree/identifier_assignment.rs b/src/abstract_tree/identifier_assignment.rs new file mode 100644 index 0000000..6bb7d0c --- /dev/null +++ b/src/abstract_tree/identifier_assignment.rs @@ -0,0 +1,79 @@ +use serde::{Deserialize, Serialize}; +use tree_sitter::Node; + +use crate::{AbstractTree, Error, Identifier, Map, Result, Statement, Value}; + +#[derive(Debug, Clone, Serialize, Deserialize, Eq, PartialEq, PartialOrd, Ord)] +pub struct IdentifierAssignment { + identifier: Identifier, + operator: AssignmentOperator, + statement: Statement, +} + +#[derive(Debug, Clone, Serialize, Deserialize, Eq, PartialEq, PartialOrd, Ord)] +pub enum AssignmentOperator { + Equal, + PlusEqual, + MinusEqual, +} + +impl AbstractTree for IdentifierAssignment { + fn from_syntax_node(source: &str, node: Node) -> Result { + let identifier_node = node.child(0).unwrap(); + let identifier = Identifier::from_syntax_node(source, identifier_node)?; + + let operator_node = node.child(1).unwrap().child(0).unwrap(); + let operator = match operator_node.kind() { + "=" => AssignmentOperator::Equal, + "+=" => AssignmentOperator::PlusEqual, + "-=" => AssignmentOperator::MinusEqual, + _ => { + return Err(Error::UnexpectedSyntaxNode { + expected: "=, += or -=", + actual: operator_node.kind(), + location: operator_node.start_position(), + relevant_source: source[operator_node.byte_range()].to_string(), + }) + } + }; + + let statement_node = node.child(2).unwrap(); + let statement = Statement::from_syntax_node(source, statement_node)?; + + Ok(IdentifierAssignment { + identifier, + operator, + statement, + }) + } + + fn run(&self, source: &str, context: &mut Map) -> Result { + let key = self.identifier.inner().clone(); + let value = self.statement.run(source, context)?; + let mut context = context.variables_mut(); + + let new_value = match self.operator { + AssignmentOperator::PlusEqual => { + if let Some(mut previous_value) = context.get(&key).cloned() { + previous_value += value; + previous_value + } else { + Value::Empty + } + } + AssignmentOperator::MinusEqual => { + if let Some(mut previous_value) = context.get(&key).cloned() { + previous_value -= value; + previous_value + } else { + Value::Empty + } + } + AssignmentOperator::Equal => value, + }; + + context.insert(key, new_value); + + Ok(Value::Empty) + } +} diff --git a/src/abstract_tree/index_assignment.rs b/src/abstract_tree/index_assignment.rs new file mode 100644 index 0000000..be23bee --- /dev/null +++ b/src/abstract_tree/index_assignment.rs @@ -0,0 +1,62 @@ +use serde::{Deserialize, Serialize}; +use tree_sitter::Node; + +use crate::{AbstractTree, Error, Index, Map, Result, Statement, Value}; + +#[derive(Debug, Clone, Serialize, Deserialize, Eq, PartialEq, PartialOrd, Ord)] +pub struct IndexAssignment { + index: Index, + operator: AssignmentOperator, + statement: Statement, +} + +#[derive(Debug, Clone, Serialize, Deserialize, Eq, PartialEq, PartialOrd, Ord)] +pub enum AssignmentOperator { + Equal, + PlusEqual, + MinusEqual, +} + +impl AbstractTree for IndexAssignment { + fn from_syntax_node(source: &str, node: Node) -> Result { + let index_node = node.child(0).unwrap(); + let index = Index::from_syntax_node(source, index_node)?; + + let operator_node = node.child(1).unwrap().child(0).unwrap(); + let operator = match operator_node.kind() { + "=" => AssignmentOperator::Equal, + "+=" => AssignmentOperator::PlusEqual, + "-=" => AssignmentOperator::MinusEqual, + _ => { + return Err(Error::UnexpectedSyntaxNode { + expected: "=, += or -=", + actual: operator_node.kind(), + location: operator_node.start_position(), + relevant_source: source[operator_node.byte_range()].to_string(), + }) + } + }; + + let statement_node = node.child(2).unwrap(); + let statement = Statement::from_syntax_node(source, statement_node)?; + + Ok(IndexAssignment { + index, + operator, + statement, + }) + } + + fn run(&self, source: &str, context: &mut Map) -> Result { + let mut left = self.index.run(source, context)?; + let right = self.statement.run(source, context)?; + + match self.operator { + AssignmentOperator::PlusEqual => left += right, + AssignmentOperator::MinusEqual => left -= right, + AssignmentOperator::Equal => left = right, + } + + Ok(Value::Empty) + } +} diff --git a/src/abstract_tree/insert.rs b/src/abstract_tree/insert.rs index 3faac90..4a27639 100644 --- a/src/abstract_tree/insert.rs +++ b/src/abstract_tree/insert.rs @@ -36,7 +36,7 @@ impl AbstractTree for Insert { } context - .variables_mut() + .variables_mut()? .insert(table_name, Value::Table(table)); Ok(Value::Empty) diff --git a/src/abstract_tree/remove.rs b/src/abstract_tree/remove.rs index f21e3d0..ab14c63 100644 --- a/src/abstract_tree/remove.rs +++ b/src/abstract_tree/remove.rs @@ -33,11 +33,15 @@ impl AbstractTree for Remove { let mut values = value.as_list()?.items_mut(); let key = self.item_id.inner(); let mut should_remove_index = None; + let mut variables = context.variables_mut()?; values.iter().enumerate().try_for_each(|(index, value)| { - context.variables_mut().insert(key.clone(), value.clone()); + variables.insert(key.clone(), value.clone()); - let should_remove = self.predicate.run(source, context)?.as_boolean()?; + let should_remove = self + .predicate + .run(source, &mut context.clone())? + .as_boolean()?; if should_remove { should_remove_index = Some(index); diff --git a/src/abstract_tree/select.rs b/src/abstract_tree/select.rs index f612427..54c0cfe 100644 --- a/src/abstract_tree/select.rs +++ b/src/abstract_tree/select.rs @@ -60,14 +60,13 @@ impl AbstractTree for Select { for row in old_table.rows() { let mut new_row = Vec::new(); - let mut row_context = Map::new(); + let row_context = Map::new(); + let mut row_variables = row_context.variables_mut()?; for (i, value) in row.iter().enumerate() { let column_name = old_table.headers().get(i).unwrap(); - row_context - .variables_mut() - .insert(column_name.clone(), value.clone()); + row_variables.insert(column_name.clone(), value.clone()); let new_table_column_index = new_table @@ -91,7 +90,9 @@ impl AbstractTree for Select { } if let Some(where_clause) = &self.predicate { - let should_include = where_clause.run(source, &mut row_context)?.as_boolean()?; + let should_include = where_clause + .run(source, &mut row_context.clone())? + .as_boolean()?; if should_include { new_table.insert(new_row)?; diff --git a/src/abstract_tree/transform.rs b/src/abstract_tree/transform.rs index 1c0b8f0..e7c6d71 100644 --- a/src/abstract_tree/transform.rs +++ b/src/abstract_tree/transform.rs @@ -36,13 +36,15 @@ impl AbstractTree for Transform { let new_values = values .par_iter() .map(|value| { - let mut iter_context = Map::new(); + let iter_context = Map::new(); + let mut iter_variables = match iter_context.variables_mut() { + Ok(variables) => variables, + Err(_) => return Value::Empty, + }; - iter_context - .variables_mut() - .insert(key.clone(), value.clone()); + iter_variables.insert(key.clone(), value.clone()); - let item_run = self.item.run(source, &mut iter_context); + let item_run = self.item.run(source, &mut iter_context.clone()); match item_run { Ok(value) => value, diff --git a/src/abstract_tree/value_node.rs b/src/abstract_tree/value_node.rs index c4165d3..4f5582e 100644 --- a/src/abstract_tree/value_node.rs +++ b/src/abstract_tree/value_node.rs @@ -168,10 +168,14 @@ impl AbstractTree for ValueNode { ValueType::Map(nodes) => { let map = Map::new(); - for (key, node) in nodes { - let value = node.run(source, context)?; + { + let mut variables = map.variables_mut()?; - map.variables_mut().insert(key.clone(), value); + for (key, node) in nodes { + let value = node.run(source, context)?; + + variables.insert(key.clone(), value); + } } Value::Map(map) diff --git a/src/abstract_tree/yield.rs b/src/abstract_tree/yield.rs new file mode 100644 index 0000000..b4e3033 --- /dev/null +++ b/src/abstract_tree/yield.rs @@ -0,0 +1,28 @@ +use serde::{Deserialize, Serialize}; +use tree_sitter::Node; + +use crate::{AbstractTree, Expression, Function, FunctionCall, Result, Value, ValueNode}; + +#[derive(Debug, Clone, Serialize, Deserialize, Eq, PartialEq, PartialOrd, Ord)] +pub struct Yield { + input: Expression, + call: FunctionCall, +} + +impl AbstractTree for Yield { + fn from_syntax_node(source: &str, node: Node) -> Result { + let input_node = node.child(0).unwrap(); + let input = Expression::from_syntax_node(source, input_node)?; + + let call_node = node.child(1).unwrap(); + let call = FunctionCall::from_syntax_node(source, call_node)?; + + Ok(Yield { input, call }) + } + + fn run(&self, source: &str, context: &mut crate::Map) -> Result { + let target = self.input.run(source, context)?.as_function()?; + + self.call.run(, ) + } +} diff --git a/src/error.rs b/src/error.rs index 668a10d..f517c8b 100644 --- a/src/error.rs +++ b/src/error.rs @@ -5,7 +5,7 @@ use crate::{value::Value, Identifier}; -use std::{fmt, io, time, string::FromUtf8Error, num::ParseFloatError}; +use std::{fmt, io, time, string::FromUtf8Error, num::ParseFloatError, sync::PoisonError}; pub type Result = std::result::Result; @@ -145,6 +145,12 @@ impl Error { } } +impl From> for Error { + fn from(value: PoisonError) -> Self { + Error::ToolFailure(value.to_string()) + } +} + impl From for Error { fn from(value: FromUtf8Error) -> Self { Error::ToolFailure(value.to_string()) @@ -163,12 +169,6 @@ impl From for Error { } } -impl From for Error { - fn from(value: json::Error) -> Self { - Error::ToolFailure(value.to_string()) - } -} - impl From for Error { fn from(value: std::io::Error) -> Self { Error::ToolFailure(value.to_string()) diff --git a/src/evaluator.rs b/src/evaluator.rs index f04e2a7..6b63df1 100644 --- a/src/evaluator.rs +++ b/src/evaluator.rs @@ -153,10 +153,12 @@ mod tests { fn evaluate_map() { let map = Map::new(); - map.variables_mut() - .insert("x".to_string(), Value::Integer(1)); - map.variables_mut() - .insert("foo".to_string(), Value::String("bar".to_string())); + { + let mut variables = map.variables_mut().unwrap(); + + variables.insert("x".to_string(), Value::Integer(1)); + variables.insert("foo".to_string(), Value::String("bar".to_string())); + } assert_eq!(evaluate("{ x = 1, foo = 'bar' }"), Ok(Value::Map(map))); } diff --git a/src/main.rs b/src/main.rs index 6661906..564d02d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -55,6 +55,7 @@ async fn main() { if let Some(input) = args.input { context .variables_mut() + .unwrap() .insert("input".to_string(), Value::String(input)); } @@ -63,6 +64,7 @@ async fn main() { context .variables_mut() + .unwrap() .insert("input".to_string(), Value::String(file_contents)); } diff --git a/src/value/map.rs b/src/value/map.rs index 49a5771..82a972c 100644 --- a/src/value/map.rs +++ b/src/value/map.rs @@ -6,7 +6,7 @@ use std::{ sync::{Arc, RwLock, RwLockReadGuard, RwLockWriteGuard}, }; -use crate::{value::Value, List, Table}; +use crate::{value::Value, List, Result, Table}; /// A collection dust variables comprised of key-value pairs. /// @@ -25,34 +25,24 @@ impl Map { } } - pub fn clone_from(other: &Self) -> Self { + pub fn clone_from(other: &Self) -> Result { let mut new_map = BTreeMap::new(); - for (key, value) in other.variables().iter() { + for (key, value) in other.variables()?.iter() { new_map.insert(key.clone(), value.clone()); } - Map { + Ok(Map { variables: Arc::new(RwLock::new(new_map)), - } + }) } - pub fn variables(&self) -> RwLockReadGuard> { - self.variables.read().unwrap() + pub fn variables(&self) -> Result>> { + Ok(self.variables.read()?) } - pub fn variables_mut(&self) -> RwLockWriteGuard> { - self.variables.write().unwrap() - } - - /// Returns the number of stored variables. - pub fn len(&self) -> usize { - self.variables.read().unwrap().len() - } - - /// Returns true if the length is zero. - pub fn is_empty(&self) -> bool { - self.variables.read().unwrap().is_empty() + pub fn variables_mut(&self) -> Result>> { + Ok(self.variables.write()?) } } @@ -104,12 +94,12 @@ impl Display for Map { } } -impl From<&Table> for Map { - fn from(value: &Table) -> Self { +impl From<&Table> for Result { + fn from(value: &Table) -> Result { let map = Map::new(); for (row_index, row) in value.rows().iter().enumerate() { - map.variables_mut() + map.variables_mut()? .insert( row_index.to_string(), Value::List(List::with_items(row.clone())), @@ -117,7 +107,7 @@ impl From<&Table> for Map { .unwrap(); } - map + Ok(map) } } diff --git a/src/value/mod.rs b/src/value/mod.rs index 4d5443a..591c2e1 100644 --- a/src/value/mod.rs +++ b/src/value/mod.rs @@ -4,7 +4,6 @@ use crate::{ Function, List, Map, Table, ValueType, }; -use json::JsonValue; use serde::{ de::{MapAccess, SeqAccess, Visitor}, ser::SerializeTuple, @@ -207,7 +206,7 @@ impl Value { match self { Value::Table(table) => Ok(table.clone()), Value::List(list) => Ok(Table::from(list)), - Value::Map(map) => Ok(Table::from(map)), + Value::Map(map) => Result::from(map), value => Err(Error::ExpectedTable { actual: value.clone(), }), @@ -496,82 +495,6 @@ impl From<()> for Value { } } -impl TryFrom for Value { - type Error = Error; - - fn try_from(json_value: JsonValue) -> Result { - use JsonValue::*; - - match json_value { - Null => Ok(Value::Empty), - Short(short) => Ok(Value::String(short.to_string())), - String(string) => Ok(Value::String(string)), - Number(number) => Ok(Value::Float(f64::from(number))), - Boolean(boolean) => Ok(Value::Boolean(boolean)), - Object(object) => { - let map = Map::new(); - - for (key, node_value) in object.iter() { - let value = Value::try_from(node_value)?; - - map.variables_mut().insert(key.to_string(), value); - } - - Ok(Value::Map(map)) - } - Array(array) => { - let mut values = Vec::new(); - - for json_value in array { - let value = Value::try_from(json_value)?; - - values.push(value); - } - - Ok(Value::List(List::with_items(values))) - } - } - } -} - -impl TryFrom<&JsonValue> for Value { - type Error = Error; - - fn try_from(json_value: &JsonValue) -> Result { - use JsonValue::*; - - match json_value { - Null => Ok(Value::Empty), - Short(short) => Ok(Value::String(short.to_string())), - String(string) => Ok(Value::String(string.clone())), - Number(number) => Ok(Value::Float(f64::from(*number))), - Boolean(boolean) => Ok(Value::Boolean(*boolean)), - Object(object) => { - let map = Map::new(); - - for (key, node_value) in object.iter() { - let value = Value::try_from(node_value)?; - - map.variables_mut().insert(key.to_string(), value); - } - - Ok(Value::Map(map)) - } - Array(array) => { - let mut values = Vec::new(); - - for json_value in array { - let value = Value::try_from(json_value)?; - - values.push(value); - } - - Ok(Value::List(List::with_items(values))) - } - } - } -} - impl TryFrom for String { type Error = Error; @@ -842,8 +765,12 @@ impl<'de> Visitor<'de> for ValueVisitor { { let map = Map::new(); - while let Some((key, value)) = access.next_entry()? { - map.variables_mut().insert(key, value); + { + let mut variables = map.variables_mut().unwrap(); + + while let Some((key, value)) = access.next_entry()? { + variables.insert(key, value); + } } Ok(Value::Map(map)) diff --git a/src/value/table.rs b/src/value/table.rs index a3e2aa9..1ed4ca4 100644 --- a/src/value/table.rs +++ b/src/value/table.rs @@ -158,7 +158,7 @@ impl Display for Table { string } - Value::Map(map) => format!("Map ({} items)", map.len()), + Value::Map(map) => format!("Map ({} items)", map.variables().unwrap().len()), Value::Table(table) => format!("Table ({} items)", table.len()), Value::Function(_) => "Function".to_string(), Value::Empty => "Empty".to_string(), @@ -233,7 +233,7 @@ impl From<&Value> for Table { } Value::List(list) => Self::from(list), Value::Empty => Table::new(Vec::with_capacity(0)), - Value::Map(map) => Self::from(map), + Value::Map(map) => Result::::from(map).unwrap(), Value::Table(table) => table.clone(), Value::Function(function) => { let mut table = Table::new(vec!["function".to_string()]); @@ -280,39 +280,35 @@ impl From<&mut List> for Table { } } -impl From for Table { +impl From for Result
{ fn from(map: Map) -> Self { - let variables = map.variables(); + let variables = map.variables()?; let keys = variables.keys().cloned().collect(); let values = variables.values().cloned().collect(); let mut table = Table::new(keys); - table - .insert(values) - .expect("Failed to create Table from Map. This is a no-op."); + table.insert(values)?; - table + Ok(table) } } -impl From<&Map> for Table { +impl From<&Map> for Result
{ fn from(map: &Map) -> Self { - let variables = map.variables(); + let variables = map.variables()?; let keys = variables.keys().cloned().collect(); let values = variables.values().cloned().collect(); let mut table = Table::new(keys); - table - .insert(values) - .expect("Failed to create Table from Map. This is a no-op."); + table.insert(values)?; - table + Ok(table) } } -impl From<&mut Map> for Table { +impl From<&mut Map> for Result
{ fn from(map: &mut Map) -> Self { - let variables = map.variables(); + let variables = map.variables()?; let keys = variables.keys().cloned().collect(); let values = variables.values().cloned().collect(); let mut table = Table::new(keys); @@ -321,7 +317,7 @@ impl From<&mut Map> for Table { .insert(values) .expect("Failed to create Table from Map. This is a no-op."); - table + Ok(table) } } diff --git a/src/value/value_type.rs b/src/value/value_type.rs index 31daae2..a11e790 100644 --- a/src/value/value_type.rs +++ b/src/value/value_type.rs @@ -114,7 +114,7 @@ impl From<&Value> for ValueType { Value::Map(map) => { let mut value_nodes = BTreeMap::new(); - for (key, value) in map.variables().iter() { + for (key, value) in map.variables().unwrap().iter() { let value_type = value.value_type(); let value_node = ValueNode::new(value_type, 0, 0); let statement = Statement::Expression(Expression::Value(value_node)); diff --git a/tree-sitter-dust/src/grammar.json b/tree-sitter-dust/src/grammar.json index 0909300..0923286 100644 --- a/tree-sitter-dust/src/grammar.json +++ b/tree-sitter-dust/src/grammar.json @@ -708,17 +708,8 @@ "type": "SEQ", "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "index" - } - ] + "type": "SYMBOL", + "name": "identifier" }, { "type": "SYMBOL", diff --git a/tree-sitter-dust/src/node-types.json b/tree-sitter-dust/src/node-types.json index 25f39d2..43a858a 100644 --- a/tree-sitter-dust/src/node-types.json +++ b/tree-sitter-dust/src/node-types.json @@ -15,10 +15,6 @@ "type": "identifier", "named": true }, - { - "type": "index", - "named": true - }, { "type": "statement", "named": true diff --git a/tree-sitter-dust/src/parser.c b/tree-sitter-dust/src/parser.c index 6fdc30c..c68978a 100644 --- a/tree-sitter-dust/src/parser.c +++ b/tree-sitter-dust/src/parser.c @@ -6,8 +6,8 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 2103 -#define LARGE_STATE_COUNT 969 +#define STATE_COUNT 1301 +#define LARGE_STATE_COUNT 561 #define SYMBOL_COUNT 132 #define ALIAS_COUNT 0 #define TOKEN_COUNT 86 @@ -1011,1076 +1011,1076 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5] = 2, [6] = 2, [7] = 2, - [8] = 2, + [8] = 8, [9] = 9, - [10] = 10, - [11] = 2, - [12] = 10, + [10] = 2, + [11] = 8, + [12] = 2, [13] = 9, [14] = 2, [15] = 9, - [16] = 9, - [17] = 10, - [18] = 2, + [16] = 8, + [17] = 8, + [18] = 9, [19] = 2, - [20] = 2, - [21] = 10, - [22] = 10, - [23] = 9, - [24] = 10, + [20] = 9, + [21] = 2, + [22] = 8, + [23] = 2, + [24] = 8, [25] = 9, - [26] = 2, - [27] = 10, - [28] = 2, - [29] = 9, + [26] = 8, + [27] = 2, + [28] = 8, + [29] = 8, [30] = 9, - [31] = 2, - [32] = 9, - [33] = 10, - [34] = 2, - [35] = 10, - [36] = 2, - [37] = 9, - [38] = 10, - [39] = 10, - [40] = 2, - [41] = 9, - [42] = 10, - [43] = 10, - [44] = 9, - [45] = 10, - [46] = 10, - [47] = 2, - [48] = 10, - [49] = 10, - [50] = 9, - [51] = 10, - [52] = 2, - [53] = 2, - [54] = 10, - [55] = 9, - [56] = 9, - [57] = 10, - [58] = 10, - [59] = 9, - [60] = 10, - [61] = 10, - [62] = 62, - [63] = 63, - [64] = 63, - [65] = 65, - [66] = 66, - [67] = 67, - [68] = 68, - [69] = 67, - [70] = 66, - [71] = 63, - [72] = 72, - [73] = 73, - [74] = 62, - [75] = 75, - [76] = 76, - [77] = 68, - [78] = 63, - [79] = 66, - [80] = 72, - [81] = 73, - [82] = 62, - [83] = 75, - [84] = 76, - [85] = 68, - [86] = 63, - [87] = 66, - [88] = 72, - [89] = 73, - [90] = 62, - [91] = 75, - [92] = 66, - [93] = 76, - [94] = 68, - [95] = 63, - [96] = 65, - [97] = 63, - [98] = 68, - [99] = 76, - [100] = 66, - [101] = 67, - [102] = 75, - [103] = 62, - [104] = 67, - [105] = 73, - [106] = 65, - [107] = 10, - [108] = 62, - [109] = 72, - [110] = 66, - [111] = 76, - [112] = 72, - [113] = 73, - [114] = 65, - [115] = 62, - [116] = 75, - [117] = 76, - [118] = 68, - [119] = 63, - [120] = 63, - [121] = 68, - [122] = 75, - [123] = 63, - [124] = 68, - [125] = 76, - [126] = 76, - [127] = 75, - [128] = 62, - [129] = 75, - [130] = 76, - [131] = 73, - [132] = 66, - [133] = 72, - [134] = 73, - [135] = 75, - [136] = 62, - [137] = 75, - [138] = 73, - [139] = 76, - [140] = 68, - [141] = 63, - [142] = 72, - [143] = 76, - [144] = 66, - [145] = 72, - [146] = 66, - [147] = 75, - [148] = 72, - [149] = 73, - [150] = 62, - [151] = 62, - [152] = 75, - [153] = 72, - [154] = 76, - [155] = 68, - [156] = 63, - [157] = 65, - [158] = 73, - [159] = 72, - [160] = 66, - [161] = 68, - [162] = 68, - [163] = 67, - [164] = 65, - [165] = 66, - [166] = 66, - [167] = 67, - [168] = 66, - [169] = 63, - [170] = 68, - [171] = 76, - [172] = 76, - [173] = 75, - [174] = 75, - [175] = 62, - [176] = 62, - [177] = 73, - [178] = 67, - [179] = 72, - [180] = 72, - [181] = 73, - [182] = 72, - [183] = 73, - [184] = 66, - [185] = 66, - [186] = 72, - [187] = 63, - [188] = 73, - [189] = 68, - [190] = 76, - [191] = 72, - [192] = 73, - [193] = 62, - [194] = 75, - [195] = 76, - [196] = 68, - [197] = 75, - [198] = 62, - [199] = 62, - [200] = 63, - [201] = 73, - [202] = 72, - [203] = 63, - [204] = 68, - [205] = 76, - [206] = 75, - [207] = 62, - [208] = 75, - [209] = 62, - [210] = 65, - [211] = 63, - [212] = 68, - [213] = 67, - [214] = 65, - [215] = 67, - [216] = 73, - [217] = 65, - [218] = 76, - [219] = 76, - [220] = 67, - [221] = 68, - [222] = 72, - [223] = 66, - [224] = 66, - [225] = 68, - [226] = 62, - [227] = 63, - [228] = 68, - [229] = 75, - [230] = 66, - [231] = 76, - [232] = 75, - [233] = 75, - [234] = 62, - [235] = 73, - [236] = 65, - [237] = 76, - [238] = 72, - [239] = 63, - [240] = 73, - [241] = 68, - [242] = 63, - [243] = 66, - [244] = 62, - [245] = 66, - [246] = 67, - [247] = 73, - [248] = 65, - [249] = 63, - [250] = 72, - [251] = 72, - [252] = 73, - [253] = 10, - [254] = 10, - [255] = 10, - [256] = 10, - [257] = 10, - [258] = 10, - [259] = 10, - [260] = 10, - [261] = 261, - [262] = 262, - [263] = 261, - [264] = 264, - [265] = 265, - [266] = 266, - [267] = 267, - [268] = 268, - [269] = 262, - [270] = 268, - [271] = 265, - [272] = 266, - [273] = 261, - [274] = 261, - [275] = 267, - [276] = 264, - [277] = 264, - [278] = 268, - [279] = 262, - [280] = 261, - [281] = 264, - [282] = 266, - [283] = 268, - [284] = 265, - [285] = 267, - [286] = 265, - [287] = 266, - [288] = 262, - [289] = 267, - [290] = 261, - [291] = 264, - [292] = 266, - [293] = 268, - [294] = 261, - [295] = 262, - [296] = 265, - [297] = 267, - [298] = 261, - [299] = 262, - [300] = 262, - [301] = 266, - [302] = 265, - [303] = 268, - [304] = 268, - [305] = 267, - [306] = 264, - [307] = 266, - [308] = 267, - [309] = 264, - [310] = 261, - [311] = 265, - [312] = 264, - [313] = 261, - [314] = 262, - [315] = 265, - [316] = 266, - [317] = 268, - [318] = 264, - [319] = 267, - [320] = 265, - [321] = 266, - [322] = 267, - [323] = 262, - [324] = 268, - [325] = 265, - [326] = 268, - [327] = 264, - [328] = 267, - [329] = 262, - [330] = 261, - [331] = 266, - [332] = 267, - [333] = 264, - [334] = 268, - [335] = 268, - [336] = 262, - [337] = 266, - [338] = 265, - [339] = 267, - [340] = 261, - [341] = 265, - [342] = 264, - [343] = 262, - [344] = 266, - [345] = 267, - [346] = 267, - [347] = 264, - [348] = 9, - [349] = 349, - [350] = 266, - [351] = 265, - [352] = 10, - [353] = 268, - [354] = 10, - [355] = 262, - [356] = 264, - [357] = 268, - [358] = 10, - [359] = 9, - [360] = 265, - [361] = 266, - [362] = 262, - [363] = 267, - [364] = 266, - [365] = 262, - [366] = 265, - [367] = 264, - [368] = 268, - [369] = 262, - [370] = 10, - [371] = 10, - [372] = 268, - [373] = 264, - [374] = 9, - [375] = 266, - [376] = 9, - [377] = 377, - [378] = 378, - [379] = 267, - [380] = 265, - [381] = 10, - [382] = 10, + [31] = 9, + [32] = 8, + [33] = 8, + [34] = 34, + [35] = 35, + [36] = 34, + [37] = 37, + [38] = 38, + [39] = 37, + [40] = 40, + [41] = 35, + [42] = 42, + [43] = 43, + [44] = 43, + [45] = 35, + [46] = 38, + [47] = 42, + [48] = 48, + [49] = 49, + [50] = 48, + [51] = 37, + [52] = 52, + [53] = 40, + [54] = 37, + [55] = 37, + [56] = 48, + [57] = 48, + [58] = 43, + [59] = 49, + [60] = 40, + [61] = 48, + [62] = 49, + [63] = 42, + [64] = 43, + [65] = 35, + [66] = 43, + [67] = 34, + [68] = 35, + [69] = 38, + [70] = 40, + [71] = 52, + [72] = 38, + [73] = 34, + [74] = 52, + [75] = 40, + [76] = 49, + [77] = 34, + [78] = 52, + [79] = 34, + [80] = 48, + [81] = 52, + [82] = 49, + [83] = 34, + [84] = 49, + [85] = 38, + [86] = 35, + [87] = 43, + [88] = 35, + [89] = 38, + [90] = 49, + [91] = 40, + [92] = 40, + [93] = 49, + [94] = 43, + [95] = 48, + [96] = 40, + [97] = 52, + [98] = 40, + [99] = 49, + [100] = 49, + [101] = 52, + [102] = 52, + [103] = 34, + [104] = 38, + [105] = 35, + [106] = 43, + [107] = 48, + [108] = 48, + [109] = 42, + [110] = 48, + [111] = 35, + [112] = 38, + [113] = 43, + [114] = 42, + [115] = 52, + [116] = 38, + [117] = 35, + [118] = 42, + [119] = 34, + [120] = 38, + [121] = 43, + [122] = 52, + [123] = 43, + [124] = 35, + [125] = 38, + [126] = 34, + [127] = 34, + [128] = 52, + [129] = 48, + [130] = 42, + [131] = 48, + [132] = 37, + [133] = 37, + [134] = 49, + [135] = 40, + [136] = 43, + [137] = 49, + [138] = 35, + [139] = 43, + [140] = 38, + [141] = 34, + [142] = 34, + [143] = 38, + [144] = 40, + [145] = 48, + [146] = 8, + [147] = 40, + [148] = 52, + [149] = 52, + [150] = 35, + [151] = 49, + [152] = 40, + [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] = 161, + [169] = 169, + [170] = 170, + [171] = 161, + [172] = 172, + [173] = 173, + [174] = 161, + [175] = 175, + [176] = 173, + [177] = 167, + [178] = 172, + [179] = 161, + [180] = 169, + [181] = 170, + [182] = 175, + [183] = 172, + [184] = 175, + [185] = 161, + [186] = 170, + [187] = 169, + [188] = 175, + [189] = 170, + [190] = 172, + [191] = 167, + [192] = 161, + [193] = 173, + [194] = 167, + [195] = 173, + [196] = 169, + [197] = 167, + [198] = 172, + [199] = 8, + [200] = 9, + [201] = 167, + [202] = 169, + [203] = 170, + [204] = 173, + [205] = 175, + [206] = 172, + [207] = 169, + [208] = 170, + [209] = 9, + [210] = 8, + [211] = 173, + [212] = 8, + [213] = 175, + [214] = 214, + [215] = 172, + [216] = 167, + [217] = 175, + [218] = 170, + [219] = 173, + [220] = 169, + [221] = 8, + [222] = 170, + [223] = 175, + [224] = 169, + [225] = 8, + [226] = 8, + [227] = 8, + [228] = 9, + [229] = 9, + [230] = 230, + [231] = 231, + [232] = 172, + [233] = 167, + [234] = 173, + [235] = 235, + [236] = 235, + [237] = 235, + [238] = 235, + [239] = 235, + [240] = 235, + [241] = 235, + [242] = 235, + [243] = 243, + [244] = 243, + [245] = 245, + [246] = 246, + [247] = 247, + [248] = 248, + [249] = 249, + [250] = 245, + [251] = 245, + [252] = 247, + [253] = 248, + [254] = 247, + [255] = 248, + [256] = 245, + [257] = 247, + [258] = 245, + [259] = 249, + [260] = 243, + [261] = 249, + [262] = 247, + [263] = 245, + [264] = 245, + [265] = 247, + [266] = 246, + [267] = 245, + [268] = 245, + [269] = 249, + [270] = 243, + [271] = 248, + [272] = 247, + [273] = 243, + [274] = 246, + [275] = 248, + [276] = 243, + [277] = 249, + [278] = 243, + [279] = 243, + [280] = 248, + [281] = 247, + [282] = 248, + [283] = 243, + [284] = 246, + [285] = 248, + [286] = 243, + [287] = 243, + [288] = 248, + [289] = 243, + [290] = 243, + [291] = 249, + [292] = 249, + [293] = 248, + [294] = 249, + [295] = 243, + [296] = 246, + [297] = 248, + [298] = 247, + [299] = 248, + [300] = 248, + [301] = 249, + [302] = 248, + [303] = 243, + [304] = 246, + [305] = 246, + [306] = 245, + [307] = 247, + [308] = 243, + [309] = 245, + [310] = 248, + [311] = 243, + [312] = 246, + [313] = 243, + [314] = 248, + [315] = 249, + [316] = 245, + [317] = 243, + [318] = 248, + [319] = 248, + [320] = 247, + [321] = 247, + [322] = 248, + [323] = 249, + [324] = 243, + [325] = 249, + [326] = 249, + [327] = 248, + [328] = 247, + [329] = 245, + [330] = 330, + [331] = 330, + [332] = 330, + [333] = 330, + [334] = 330, + [335] = 330, + [336] = 330, + [337] = 330, + [338] = 338, + [339] = 330, + [340] = 330, + [341] = 330, + [342] = 330, + [343] = 330, + [344] = 344, + [345] = 345, + [346] = 346, + [347] = 345, + [348] = 346, + [349] = 346, + [350] = 345, + [351] = 351, + [352] = 352, + [353] = 346, + [354] = 354, + [355] = 355, + [356] = 161, + [357] = 357, + [358] = 358, + [359] = 359, + [360] = 345, + [361] = 361, + [362] = 362, + [363] = 352, + [364] = 355, + [365] = 346, + [366] = 346, + [367] = 361, + [368] = 362, + [369] = 345, + [370] = 359, + [371] = 345, + [372] = 170, + [373] = 358, + [374] = 357, + [375] = 169, + [376] = 167, + [377] = 354, + [378] = 173, + [379] = 354, + [380] = 351, + [381] = 357, + [382] = 382, [383] = 383, - [384] = 383, - [385] = 383, - [386] = 383, - [387] = 383, - [388] = 383, - [389] = 383, - [390] = 383, - [391] = 383, - [392] = 383, - [393] = 383, - [394] = 383, - [395] = 395, - [396] = 395, - [397] = 397, - [398] = 398, + [384] = 384, + [385] = 385, + [386] = 386, + [387] = 355, + [388] = 388, + [389] = 173, + [390] = 359, + [391] = 351, + [392] = 357, + [393] = 361, + [394] = 352, + [395] = 362, + [396] = 354, + [397] = 358, + [398] = 352, [399] = 399, [400] = 400, - [401] = 398, - [402] = 399, - [403] = 399, - [404] = 398, - [405] = 395, - [406] = 397, - [407] = 399, + [401] = 167, + [402] = 355, + [403] = 403, + [404] = 404, + [405] = 361, + [406] = 362, + [407] = 407, [408] = 408, - [409] = 397, - [410] = 395, - [411] = 408, - [412] = 398, - [413] = 408, - [414] = 399, - [415] = 408, - [416] = 408, - [417] = 395, - [418] = 408, - [419] = 399, - [420] = 400, - [421] = 397, - [422] = 408, - [423] = 395, - [424] = 397, - [425] = 398, - [426] = 399, - [427] = 400, - [428] = 397, - [429] = 399, - [430] = 408, - [431] = 397, - [432] = 395, - [433] = 395, - [434] = 408, - [435] = 398, - [436] = 399, - [437] = 399, - [438] = 397, - [439] = 399, - [440] = 395, - [441] = 399, - [442] = 398, - [443] = 408, - [444] = 399, - [445] = 397, - [446] = 397, - [447] = 408, - [448] = 397, - [449] = 395, - [450] = 408, - [451] = 397, - [452] = 408, - [453] = 408, - [454] = 400, - [455] = 399, - [456] = 408, - [457] = 398, - [458] = 395, - [459] = 400, - [460] = 408, - [461] = 408, - [462] = 408, - [463] = 399, - [464] = 408, - [465] = 397, - [466] = 399, - [467] = 408, - [468] = 400, - [469] = 398, - [470] = 408, - [471] = 397, - [472] = 400, - [473] = 399, - [474] = 395, - [475] = 397, - [476] = 395, - [477] = 398, - [478] = 399, - [479] = 408, - [480] = 398, - [481] = 395, - [482] = 398, - [483] = 399, - [484] = 398, - [485] = 408, - [486] = 398, - [487] = 395, - [488] = 399, - [489] = 399, - [490] = 395, - [491] = 400, - [492] = 395, - [493] = 400, - [494] = 398, - [495] = 400, - [496] = 408, - [497] = 398, - [498] = 399, - [499] = 399, - [500] = 408, - [501] = 395, - [502] = 399, - [503] = 399, - [504] = 408, - [505] = 408, - [506] = 399, - [507] = 408, - [508] = 397, - [509] = 399, - [510] = 397, - [511] = 398, - [512] = 398, - [513] = 400, - [514] = 399, - [515] = 397, - [516] = 398, - [517] = 397, - [518] = 398, - [519] = 408, - [520] = 398, - [521] = 408, - [522] = 399, - [523] = 399, - [524] = 395, - [525] = 399, - [526] = 408, - [527] = 408, - [528] = 395, - [529] = 397, - [530] = 399, - [531] = 400, - [532] = 397, - [533] = 395, - [534] = 534, - [535] = 534, - [536] = 534, - [537] = 537, - [538] = 534, - [539] = 534, - [540] = 534, - [541] = 534, - [542] = 534, - [543] = 534, - [544] = 534, - [545] = 534, - [546] = 546, - [547] = 534, - [548] = 534, - [549] = 534, - [550] = 534, - [551] = 534, - [552] = 534, - [553] = 534, - [554] = 534, - [555] = 534, - [556] = 534, - [557] = 557, - [558] = 557, - [559] = 559, - [560] = 559, - [561] = 561, - [562] = 562, - [563] = 563, - [564] = 564, - [565] = 565, - [566] = 559, - [567] = 557, - [568] = 568, - [569] = 564, - [570] = 570, - [571] = 571, - [572] = 572, - [573] = 557, - [574] = 559, - [575] = 568, - [576] = 576, - [577] = 559, - [578] = 562, - [579] = 572, - [580] = 570, - [581] = 559, - [582] = 557, - [583] = 571, - [584] = 557, - [585] = 563, - [586] = 565, - [587] = 561, - [588] = 561, - [589] = 589, - [590] = 565, - [591] = 561, - [592] = 592, - [593] = 571, - [594] = 570, - [595] = 595, - [596] = 596, - [597] = 572, - [598] = 598, - [599] = 563, - [600] = 559, - [601] = 571, - [602] = 562, - [603] = 603, - [604] = 604, - [605] = 605, - [606] = 606, - [607] = 607, - [608] = 608, - [609] = 565, - [610] = 610, - [611] = 557, - [612] = 559, - [613] = 559, + [409] = 409, + [410] = 410, + [411] = 411, + [412] = 412, + [413] = 413, + [414] = 346, + [415] = 415, + [416] = 354, + [417] = 417, + [418] = 418, + [419] = 419, + [420] = 420, + [421] = 421, + [422] = 345, + [423] = 423, + [424] = 424, + [425] = 359, + [426] = 169, + [427] = 345, + [428] = 428, + [429] = 170, + [430] = 430, + [431] = 431, + [432] = 352, + [433] = 346, + [434] = 434, + [435] = 435, + [436] = 436, + [437] = 352, + [438] = 358, + [439] = 439, + [440] = 359, + [441] = 175, + [442] = 361, + [443] = 354, + [444] = 357, + [445] = 358, + [446] = 172, + [447] = 362, + [448] = 355, + [449] = 355, + [450] = 361, + [451] = 362, + [452] = 357, + [453] = 453, + [454] = 359, + [455] = 175, + [456] = 172, + [457] = 358, + [458] = 354, + [459] = 351, + [460] = 355, + [461] = 411, + [462] = 419, + [463] = 417, + [464] = 400, + [465] = 361, + [466] = 362, + [467] = 352, + [468] = 415, + [469] = 359, + [470] = 413, + [471] = 412, + [472] = 354, + [473] = 355, + [474] = 409, + [475] = 352, + [476] = 453, + [477] = 358, + [478] = 418, + [479] = 355, + [480] = 407, + [481] = 382, + [482] = 421, + [483] = 386, + [484] = 388, + [485] = 385, + [486] = 384, + [487] = 383, + [488] = 408, + [489] = 403, + [490] = 399, + [491] = 420, + [492] = 410, + [493] = 435, + [494] = 434, + [495] = 357, + [496] = 430, + [497] = 428, + [498] = 439, + [499] = 424, + [500] = 423, + [501] = 436, + [502] = 170, + [503] = 169, + [504] = 504, + [505] = 504, + [506] = 504, + [507] = 504, + [508] = 504, + [509] = 175, + [510] = 504, + [511] = 167, + [512] = 504, + [513] = 172, + [514] = 173, + [515] = 172, + [516] = 355, + [517] = 361, + [518] = 358, + [519] = 504, + [520] = 504, + [521] = 357, + [522] = 504, + [523] = 504, + [524] = 359, + [525] = 175, + [526] = 504, + [527] = 453, + [528] = 362, + [529] = 504, + [530] = 453, + [531] = 531, + [532] = 531, + [533] = 531, + [534] = 531, + [535] = 355, + [536] = 531, + [537] = 531, + [538] = 531, + [539] = 531, + [540] = 173, + [541] = 453, + [542] = 453, + [543] = 167, + [544] = 531, + [545] = 531, + [546] = 531, + [547] = 355, + [548] = 169, + [549] = 531, + [550] = 170, + [551] = 531, + [552] = 453, + [553] = 453, + [554] = 357, + [555] = 354, + [556] = 361, + [557] = 358, + [558] = 362, + [559] = 352, + [560] = 352, + [561] = 346, + [562] = 345, + [563] = 357, + [564] = 346, + [565] = 346, + [566] = 345, + [567] = 354, + [568] = 361, + [569] = 345, + [570] = 358, + [571] = 346, + [572] = 345, + [573] = 362, + [574] = 407, + [575] = 410, + [576] = 388, + [577] = 412, + [578] = 386, + [579] = 351, + [580] = 172, + [581] = 417, + [582] = 175, + [583] = 351, + [584] = 409, + [585] = 415, + [586] = 419, + [587] = 413, + [588] = 436, + [589] = 400, + [590] = 439, + [591] = 408, + [592] = 418, + [593] = 423, + [594] = 354, + [595] = 404, + [596] = 434, + [597] = 435, + [598] = 411, + [599] = 421, + [600] = 430, + [601] = 431, + [602] = 382, + [603] = 385, + [604] = 384, + [605] = 424, + [606] = 428, + [607] = 383, + [608] = 388, + [609] = 403, + [610] = 399, + [611] = 420, + [612] = 612, + [613] = 612, [614] = 614, - [615] = 615, - [616] = 568, - [617] = 617, - [618] = 618, - [619] = 619, - [620] = 576, - [621] = 568, - [622] = 622, - [623] = 623, - [624] = 624, - [625] = 625, - [626] = 626, - [627] = 557, - [628] = 628, - [629] = 629, - [630] = 630, - [631] = 631, - [632] = 632, - [633] = 633, - [634] = 564, - [635] = 564, - [636] = 636, - [637] = 557, - [638] = 638, - [639] = 639, - [640] = 562, - [641] = 564, - [642] = 561, - [643] = 564, - [644] = 563, - [645] = 645, - [646] = 572, - [647] = 557, - [648] = 559, - [649] = 262, - [650] = 568, - [651] = 568, - [652] = 570, - [653] = 557, - [654] = 557, - [655] = 576, - [656] = 570, - [657] = 576, - [658] = 562, - [659] = 563, - [660] = 559, - [661] = 572, - [662] = 662, - [663] = 571, - [664] = 561, - [665] = 572, - [666] = 564, - [667] = 565, - [668] = 561, - [669] = 268, - [670] = 564, - [671] = 565, - [672] = 565, - [673] = 265, - [674] = 266, - [675] = 563, - [676] = 568, - [677] = 559, - [678] = 562, - [679] = 261, - [680] = 561, - [681] = 562, - [682] = 563, - [683] = 571, - [684] = 572, - [685] = 571, - [686] = 625, - [687] = 596, - [688] = 622, - [689] = 617, - [690] = 615, - [691] = 614, - [692] = 265, - [693] = 564, - [694] = 565, - [695] = 266, - [696] = 607, - [697] = 262, - [698] = 268, - [699] = 592, - [700] = 572, - [701] = 571, - [702] = 561, - [703] = 628, - [704] = 604, - [705] = 618, - [706] = 631, - [707] = 268, - [708] = 559, - [709] = 262, - [710] = 557, - [711] = 595, - [712] = 632, - [713] = 633, - [714] = 563, - [715] = 562, - [716] = 266, - [717] = 623, - [718] = 561, - [719] = 598, - [720] = 563, - [721] = 564, - [722] = 562, - [723] = 603, - [724] = 557, - [725] = 605, - [726] = 265, - [727] = 606, - [728] = 608, - [729] = 610, - [730] = 572, - [731] = 589, - [732] = 571, - [733] = 619, - [734] = 624, - [735] = 629, - [736] = 568, - [737] = 636, - [738] = 638, - [739] = 576, - [740] = 568, - [741] = 570, - [742] = 645, - [743] = 565, - [744] = 561, - [745] = 662, - [746] = 559, - [747] = 626, - [748] = 576, - [749] = 568, - [750] = 615, - [751] = 564, - [752] = 564, - [753] = 626, - [754] = 576, - [755] = 561, - [756] = 571, - [757] = 633, - [758] = 632, - [759] = 631, - [760] = 557, - [761] = 628, - [762] = 630, - [763] = 625, - [764] = 623, - [765] = 622, - [766] = 617, - [767] = 639, - [768] = 568, - [769] = 268, - [770] = 614, - [771] = 565, - [772] = 262, - [773] = 266, - [774] = 563, - [775] = 562, - [776] = 576, - [777] = 607, - [778] = 570, - [779] = 571, - [780] = 265, - [781] = 592, - [782] = 576, - [783] = 561, - [784] = 572, - [785] = 564, - [786] = 564, - [787] = 557, - [788] = 604, - [789] = 618, - [790] = 565, - [791] = 563, - [792] = 595, - [793] = 559, - [794] = 562, - [795] = 571, - [796] = 596, - [797] = 562, - [798] = 563, - [799] = 603, - [800] = 565, - [801] = 568, - [802] = 605, - [803] = 606, - [804] = 608, - [805] = 559, - [806] = 610, - [807] = 645, - [808] = 589, - [809] = 619, - [810] = 624, - [811] = 629, - [812] = 636, - [813] = 638, - [814] = 572, - [815] = 572, - [816] = 598, - [817] = 571, - [818] = 562, - [819] = 264, - [820] = 267, - [821] = 267, - [822] = 576, - [823] = 568, - [824] = 571, - [825] = 570, - [826] = 572, - [827] = 565, - [828] = 561, - [829] = 572, - [830] = 662, - [831] = 565, - [832] = 563, - [833] = 561, - [834] = 563, - [835] = 562, - [836] = 568, - [837] = 264, - [838] = 614, - [839] = 629, - [840] = 636, - [841] = 618, - [842] = 576, - [843] = 563, - [844] = 633, - [845] = 632, - [846] = 598, - [847] = 564, - [848] = 622, - [849] = 565, - [850] = 562, - [851] = 603, - [852] = 568, - [853] = 571, - [854] = 572, - [855] = 662, - [856] = 645, - [857] = 605, - [858] = 604, - [859] = 571, - [860] = 625, - [861] = 606, - [862] = 623, - [863] = 608, - [864] = 610, - [865] = 596, - [866] = 631, - [867] = 576, - [868] = 626, - [869] = 564, - [870] = 592, - [871] = 589, - [872] = 607, - [873] = 619, - [874] = 628, - [875] = 615, - [876] = 561, - [877] = 571, - [878] = 595, - [879] = 638, - [880] = 624, - [881] = 617, - [882] = 562, - [883] = 883, - [884] = 266, - [885] = 883, - [886] = 883, - [887] = 264, - [888] = 571, - [889] = 568, - [890] = 563, - [891] = 267, - [892] = 883, - [893] = 883, - [894] = 268, - [895] = 883, - [896] = 883, - [897] = 264, - [898] = 883, - [899] = 262, - [900] = 883, - [901] = 883, - [902] = 883, - [903] = 883, - [904] = 883, - [905] = 883, - [906] = 883, - [907] = 883, - [908] = 267, - [909] = 883, - [910] = 883, - [911] = 565, - [912] = 883, - [913] = 883, - [914] = 265, - [915] = 883, - [916] = 572, - [917] = 662, + [615] = 612, + [616] = 616, + [617] = 612, + [618] = 616, + [619] = 616, + [620] = 616, + [621] = 621, + [622] = 354, + [623] = 424, + [624] = 362, + [625] = 361, + [626] = 411, + [627] = 383, + [628] = 418, + [629] = 357, + [630] = 358, + [631] = 382, + [632] = 352, + [633] = 421, + [634] = 388, + [635] = 423, + [636] = 385, + [637] = 352, + [638] = 428, + [639] = 384, + [640] = 430, + [641] = 434, + [642] = 435, + [643] = 420, + [644] = 399, + [645] = 403, + [646] = 408, + [647] = 647, + [648] = 648, + [649] = 649, + [650] = 650, + [651] = 651, + [652] = 652, + [653] = 653, + [654] = 648, + [655] = 648, + [656] = 647, + [657] = 653, + [658] = 658, + [659] = 659, + [660] = 649, + [661] = 659, + [662] = 659, + [663] = 652, + [664] = 664, + [665] = 659, + [666] = 649, + [667] = 649, + [668] = 664, + [669] = 649, + [670] = 670, + [671] = 649, + [672] = 672, + [673] = 673, + [674] = 670, + [675] = 675, + [676] = 659, + [677] = 650, + [678] = 651, + [679] = 679, + [680] = 649, + [681] = 658, + [682] = 647, + [683] = 648, + [684] = 653, + [685] = 652, + [686] = 686, + [687] = 659, + [688] = 688, + [689] = 679, + [690] = 651, + [691] = 686, + [692] = 659, + [693] = 688, + [694] = 672, + [695] = 650, + [696] = 649, + [697] = 664, + [698] = 650, + [699] = 651, + [700] = 652, + [701] = 652, + [702] = 653, + [703] = 648, + [704] = 647, + [705] = 658, + [706] = 670, + [707] = 659, + [708] = 649, + [709] = 672, + [710] = 653, + [711] = 649, + [712] = 649, + [713] = 670, + [714] = 672, + [715] = 670, + [716] = 649, + [717] = 672, + [718] = 648, + [719] = 658, + [720] = 720, + [721] = 720, + [722] = 658, + [723] = 647, + [724] = 648, + [725] = 653, + [726] = 652, + [727] = 670, + [728] = 659, + [729] = 729, + [730] = 679, + [731] = 651, + [732] = 686, + [733] = 659, + [734] = 688, + [735] = 729, + [736] = 650, + [737] = 672, + [738] = 673, + [739] = 679, + [740] = 686, + [741] = 659, + [742] = 688, + [743] = 357, + [744] = 729, + [745] = 361, + [746] = 358, + [747] = 362, + [748] = 679, + [749] = 686, + [750] = 659, + [751] = 670, + [752] = 752, + [753] = 688, + [754] = 649, + [755] = 651, + [756] = 673, + [757] = 752, + [758] = 672, + [759] = 658, + [760] = 647, + [761] = 648, + [762] = 653, + [763] = 652, + [764] = 729, + [765] = 675, + [766] = 664, + [767] = 659, + [768] = 651, + [769] = 650, + [770] = 729, + [771] = 651, + [772] = 675, + [773] = 650, + [774] = 664, + [775] = 652, + [776] = 672, + [777] = 653, + [778] = 648, + [779] = 647, + [780] = 658, + [781] = 650, + [782] = 651, + [783] = 679, + [784] = 686, + [785] = 652, + [786] = 659, + [787] = 688, + [788] = 653, + [789] = 648, + [790] = 647, + [791] = 658, + [792] = 670, + [793] = 672, + [794] = 650, + [795] = 651, + [796] = 688, + [797] = 752, + [798] = 652, + [799] = 673, + [800] = 672, + [801] = 670, + [802] = 670, + [803] = 653, + [804] = 647, + [805] = 647, + [806] = 658, + [807] = 650, + [808] = 720, + [809] = 729, + [810] = 670, + [811] = 679, + [812] = 672, + [813] = 673, + [814] = 650, + [815] = 679, + [816] = 651, + [817] = 652, + [818] = 653, + [819] = 648, + [820] = 688, + [821] = 686, + [822] = 679, + [823] = 720, + [824] = 686, + [825] = 659, + [826] = 688, + [827] = 647, + [828] = 729, + [829] = 658, + [830] = 647, + [831] = 648, + [832] = 658, + [833] = 653, + [834] = 652, + [835] = 664, + [836] = 675, + [837] = 679, + [838] = 686, + [839] = 659, + [840] = 651, + [841] = 720, + [842] = 650, + [843] = 670, + [844] = 672, + [845] = 673, + [846] = 664, + [847] = 688, + [848] = 659, + [849] = 686, + [850] = 688, + [851] = 686, + [852] = 688, + [853] = 686, + [854] = 679, + [855] = 688, + [856] = 729, + [857] = 679, + [858] = 720, + [859] = 650, + [860] = 664, + [861] = 675, + [862] = 659, + [863] = 651, + [864] = 675, + [865] = 652, + [866] = 653, + [867] = 688, + [868] = 686, + [869] = 679, + [870] = 648, + [871] = 647, + [872] = 679, + [873] = 686, + [874] = 659, + [875] = 658, + [876] = 688, + [877] = 688, + [878] = 686, + [879] = 679, + [880] = 720, + [881] = 670, + [882] = 672, + [883] = 729, + [884] = 664, + [885] = 688, + [886] = 686, + [887] = 679, + [888] = 673, + [889] = 675, + [890] = 752, + [891] = 686, + [892] = 679, + [893] = 686, + [894] = 688, + [895] = 686, + [896] = 679, + [897] = 659, + [898] = 688, + [899] = 664, + [900] = 679, + [901] = 664, + [902] = 675, + [903] = 664, + [904] = 658, + [905] = 729, + [906] = 675, + [907] = 688, + [908] = 686, + [909] = 679, + [910] = 664, + [911] = 911, + [912] = 434, + [913] = 388, + [914] = 914, + [915] = 915, + [916] = 916, + [917] = 917, [918] = 918, - [919] = 918, - [920] = 268, - [921] = 918, - [922] = 918, - [923] = 918, - [924] = 918, - [925] = 571, - [926] = 918, - [927] = 662, - [928] = 265, - [929] = 918, - [930] = 918, - [931] = 918, - [932] = 918, - [933] = 918, - [934] = 571, - [935] = 662, - [936] = 918, - [937] = 262, - [938] = 918, - [939] = 918, - [940] = 918, - [941] = 266, - [942] = 918, - [943] = 918, - [944] = 918, - [945] = 918, - [946] = 662, - [947] = 918, - [948] = 662, - [949] = 662, - [950] = 562, - [951] = 564, - [952] = 565, - [953] = 568, - [954] = 563, - [955] = 561, - [956] = 564, - [957] = 563, - [958] = 565, - [959] = 562, - [960] = 564, - [961] = 568, - [962] = 565, - [963] = 568, - [964] = 563, - [965] = 562, - [966] = 561, - [967] = 564, - [968] = 561, - [969] = 559, - [970] = 645, - [971] = 562, - [972] = 565, - [973] = 563, - [974] = 617, - [975] = 561, - [976] = 559, - [977] = 559, - [978] = 557, - [979] = 568, - [980] = 557, - [981] = 633, - [982] = 625, - [983] = 557, - [984] = 632, - [985] = 557, - [986] = 631, - [987] = 607, - [988] = 559, - [989] = 614, - [990] = 628, - [991] = 615, - [992] = 626, - [993] = 622, - [994] = 623, - [995] = 617, - [996] = 633, - [997] = 626, - [998] = 570, - [999] = 570, - [1000] = 615, - [1001] = 614, - [1002] = 631, - [1003] = 267, - [1004] = 622, - [1005] = 264, - [1006] = 645, - [1007] = 623, - [1008] = 625, - [1009] = 628, - [1010] = 632, - [1011] = 607, - [1012] = 619, - [1013] = 595, - [1014] = 589, - [1015] = 610, - [1016] = 608, - [1017] = 606, - [1018] = 639, - [1019] = 624, - [1020] = 605, - [1021] = 603, - [1022] = 629, - [1023] = 592, - [1024] = 636, - [1025] = 604, - [1026] = 638, - [1027] = 596, - [1028] = 645, - [1029] = 598, - [1030] = 561, - [1031] = 630, - [1032] = 618, + [919] = 415, + [920] = 439, + [921] = 357, + [922] = 352, + [923] = 358, + [924] = 362, + [925] = 361, + [926] = 400, + [927] = 386, + [928] = 407, + [929] = 409, + [930] = 388, + [931] = 436, + [932] = 352, + [933] = 412, + [934] = 413, + [935] = 417, + [936] = 419, + [937] = 358, + [938] = 357, + [939] = 359, + [940] = 355, + [941] = 362, + [942] = 361, + [943] = 358, + [944] = 361, + [945] = 362, + [946] = 352, + [947] = 352, + [948] = 361, + [949] = 357, + [950] = 357, + [951] = 358, + [952] = 352, + [953] = 362, + [954] = 361, + [955] = 352, + [956] = 362, + [957] = 352, + [958] = 358, + [959] = 357, + [960] = 352, + [961] = 961, + [962] = 962, + [963] = 961, + [964] = 962, + [965] = 961, + [966] = 962, + [967] = 361, + [968] = 962, + [969] = 961, + [970] = 962, + [971] = 362, + [972] = 961, + [973] = 358, + [974] = 361, + [975] = 962, + [976] = 358, + [977] = 357, + [978] = 962, + [979] = 962, + [980] = 357, + [981] = 961, + [982] = 961, + [983] = 961, + [984] = 961, + [985] = 962, + [986] = 361, + [987] = 362, + [988] = 962, + [989] = 962, + [990] = 961, + [991] = 362, + [992] = 357, + [993] = 962, + [994] = 961, + [995] = 962, + [996] = 961, + [997] = 358, + [998] = 961, + [999] = 999, + [1000] = 1000, + [1001] = 1000, + [1002] = 1000, + [1003] = 1000, + [1004] = 345, + [1005] = 346, + [1006] = 351, + [1007] = 404, + [1008] = 388, + [1009] = 431, + [1010] = 383, + [1011] = 385, + [1012] = 420, + [1013] = 408, + [1014] = 384, + [1015] = 403, + [1016] = 411, + [1017] = 399, + [1018] = 418, + [1019] = 382, + [1020] = 421, + [1021] = 423, + [1022] = 424, + [1023] = 428, + [1024] = 430, + [1025] = 435, + [1026] = 1026, + [1027] = 1027, + [1028] = 1028, + [1029] = 1029, + [1030] = 1026, + [1031] = 1031, + [1032] = 1028, [1033] = 1033, - [1034] = 1034, + [1034] = 1027, [1035] = 1033, - [1036] = 1034, - [1037] = 1033, - [1038] = 1033, + [1036] = 1036, + [1037] = 1027, + [1038] = 1026, [1039] = 1039, - [1040] = 1034, - [1041] = 1033, - [1042] = 561, - [1043] = 1034, - [1044] = 1034, - [1045] = 1033, - [1046] = 1034, - [1047] = 1047, - [1048] = 1034, - [1049] = 1033, - [1050] = 1033, - [1051] = 1034, - [1052] = 563, - [1053] = 619, - [1054] = 589, - [1055] = 606, - [1056] = 610, - [1057] = 564, - [1058] = 605, - [1059] = 603, - [1060] = 608, - [1061] = 598, - [1062] = 624, - [1063] = 564, - [1064] = 596, - [1065] = 645, - [1066] = 629, - [1067] = 595, - [1068] = 618, - [1069] = 604, - [1070] = 636, - [1071] = 638, - [1072] = 565, - [1073] = 562, - [1074] = 568, - [1075] = 592, - [1076] = 1076, - [1077] = 1077, + [1040] = 1027, + [1041] = 1026, + [1042] = 1042, + [1043] = 1043, + [1044] = 918, + [1045] = 1043, + [1046] = 1042, + [1047] = 1043, + [1048] = 1043, + [1049] = 1049, + [1050] = 915, + [1051] = 1043, + [1052] = 1042, + [1053] = 1043, + [1054] = 1043, + [1055] = 1043, + [1056] = 1043, + [1057] = 1043, + [1058] = 1042, + [1059] = 1043, + [1060] = 1042, + [1061] = 1043, + [1062] = 1042, + [1063] = 1043, + [1064] = 1043, + [1065] = 1043, + [1066] = 1043, + [1067] = 1042, + [1068] = 1043, + [1069] = 1043, + [1070] = 1042, + [1071] = 1043, + [1072] = 1042, + [1073] = 1042, + [1074] = 1043, + [1075] = 1042, + [1076] = 1042, + [1077] = 1042, [1078] = 1078, [1079] = 1079, [1080] = 1080, @@ -2089,1023 +2089,221 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1083] = 1083, [1084] = 1084, [1085] = 1081, - [1086] = 1086, - [1087] = 1086, - [1088] = 1082, - [1089] = 1083, + [1086] = 1081, + [1087] = 1087, + [1088] = 1088, + [1089] = 1079, [1090] = 1090, [1091] = 1091, - [1092] = 1084, - [1093] = 1086, - [1094] = 1086, - [1095] = 1095, + [1092] = 1080, + [1093] = 1079, + [1094] = 1082, + [1095] = 1081, [1096] = 1090, - [1097] = 1086, - [1098] = 1086, - [1099] = 1099, - [1100] = 1078, - [1101] = 1090, - [1102] = 1079, - [1103] = 1086, - [1104] = 1086, - [1105] = 1090, - [1106] = 1090, - [1107] = 1086, - [1108] = 1090, - [1109] = 1080, - [1110] = 1086, - [1111] = 1090, - [1112] = 1078, - [1113] = 1086, - [1114] = 1086, - [1115] = 1090, - [1116] = 1076, - [1117] = 1086, - [1118] = 1118, - [1119] = 1099, - [1120] = 1086, - [1121] = 1095, - [1122] = 1118, - [1123] = 1086, - [1124] = 1099, - [1125] = 1086, - [1126] = 1095, - [1127] = 1086, - [1128] = 1099, - [1129] = 1086, - [1130] = 1095, - [1131] = 1084, - [1132] = 1083, - [1133] = 1086, - [1134] = 1099, - [1135] = 1082, - [1136] = 1086, - [1137] = 1099, - [1138] = 1138, - [1139] = 1139, - [1140] = 1140, - [1141] = 1090, - [1142] = 1138, - [1143] = 1077, + [1097] = 1088, + [1098] = 1084, + [1099] = 1087, + [1100] = 1081, + [1101] = 1081, + [1102] = 1081, + [1103] = 1081, + [1104] = 1081, + [1105] = 1081, + [1106] = 1081, + [1107] = 1081, + [1108] = 1081, + [1109] = 1081, + [1110] = 1083, + [1111] = 1111, + [1112] = 1112, + [1113] = 1087, + [1114] = 1114, + [1115] = 1115, + [1116] = 1088, + [1117] = 1083, + [1118] = 1090, + [1119] = 1081, + [1120] = 1084, + [1121] = 1121, + [1122] = 1087, + [1123] = 1088, + [1124] = 1091, + [1125] = 1091, + [1126] = 1090, + [1127] = 1091, + [1128] = 1080, + [1129] = 1083, + [1130] = 1080, + [1131] = 1082, + [1132] = 1132, + [1133] = 1090, + [1134] = 1084, + [1135] = 1079, + [1136] = 1088, + [1137] = 1087, + [1138] = 1082, + [1139] = 1082, + [1140] = 1084, + [1141] = 1080, + [1142] = 1091, + [1143] = 1081, [1144] = 1144, - [1145] = 1081, - [1146] = 1080, - [1147] = 1079, - [1148] = 1140, - [1149] = 1090, - [1150] = 1078, - [1151] = 1079, - [1152] = 1080, - [1153] = 1138, - [1154] = 1081, - [1155] = 1082, - [1156] = 1156, - [1157] = 1139, - [1158] = 1144, - [1159] = 1090, - [1160] = 1078, - [1161] = 1079, - [1162] = 1144, - [1163] = 1076, + [1145] = 1090, + [1146] = 1111, + [1147] = 1112, + [1148] = 1088, + [1149] = 1114, + [1150] = 1115, + [1151] = 1087, + [1152] = 1083, + [1153] = 1087, + [1154] = 1088, + [1155] = 1081, + [1156] = 1083, + [1157] = 1090, + [1158] = 1091, + [1159] = 1080, + [1160] = 1082, + [1161] = 1132, + [1162] = 1084, + [1163] = 1084, [1164] = 1083, - [1165] = 1081, - [1166] = 1086, - [1167] = 1091, - [1168] = 1084, - [1169] = 1118, - [1170] = 1095, - [1171] = 1084, - [1172] = 1091, - [1173] = 1083, - [1174] = 1082, - [1175] = 1081, - [1176] = 1080, - [1177] = 1079, - [1178] = 1078, - [1179] = 1140, - [1180] = 1138, - [1181] = 1077, - [1182] = 1099, - [1183] = 1090, - [1184] = 1099, - [1185] = 1082, - [1186] = 1099, - [1187] = 1156, - [1188] = 1139, - [1189] = 1099, - [1190] = 1156, - [1191] = 1099, - [1192] = 1139, - [1193] = 1099, - [1194] = 1099, - [1195] = 1095, - [1196] = 1084, - [1197] = 1140, - [1198] = 1138, - [1199] = 1077, - [1200] = 1091, - [1201] = 1083, - [1202] = 1082, - [1203] = 1156, - [1204] = 1081, + [1165] = 1082, + [1166] = 1166, + [1167] = 1080, + [1168] = 1111, + [1169] = 1112, + [1170] = 1091, + [1171] = 1114, + [1172] = 1115, + [1173] = 1090, + [1174] = 1087, + [1175] = 1088, + [1176] = 1115, + [1177] = 1177, + [1178] = 1090, + [1179] = 1091, + [1180] = 1082, + [1181] = 1132, + [1182] = 1084, + [1183] = 1114, + [1184] = 1088, + [1185] = 1112, + [1186] = 1111, + [1187] = 1087, + [1188] = 1111, + [1189] = 1112, + [1190] = 1091, + [1191] = 1114, + [1192] = 1115, + [1193] = 1081, + [1194] = 1087, + [1195] = 1088, + [1196] = 1079, + [1197] = 1083, + [1198] = 1090, + [1199] = 1091, + [1200] = 1082, + [1201] = 1132, + [1202] = 1084, + [1203] = 1111, + [1204] = 1112, [1205] = 1080, - [1206] = 1079, - [1207] = 1078, - [1208] = 1144, - [1209] = 1090, - [1210] = 1099, - [1211] = 1118, - [1212] = 1144, - [1213] = 1099, - [1214] = 1118, - [1215] = 1144, - [1216] = 1099, - [1217] = 1095, - [1218] = 1118, - [1219] = 1077, - [1220] = 1140, - [1221] = 1090, - [1222] = 1076, - [1223] = 1084, - [1224] = 1140, - [1225] = 1138, - [1226] = 1077, - [1227] = 1090, - [1228] = 1090, - [1229] = 1081, - [1230] = 1139, - [1231] = 1083, - [1232] = 1082, - [1233] = 1081, - [1234] = 1080, - [1235] = 1084, - [1236] = 1091, - [1237] = 1083, - [1238] = 1082, - [1239] = 1081, - [1240] = 1080, - [1241] = 1140, - [1242] = 1138, - [1243] = 1077, + [1206] = 1114, + [1207] = 1115, + [1208] = 1087, + [1209] = 1088, + [1210] = 1081, + [1211] = 1080, + [1212] = 1090, + [1213] = 1091, + [1214] = 1082, + [1215] = 1132, + [1216] = 1084, + [1217] = 1111, + [1218] = 1112, + [1219] = 1080, + [1220] = 1114, + [1221] = 1115, + [1222] = 1087, + [1223] = 1088, + [1224] = 1082, + [1225] = 1081, + [1226] = 1090, + [1227] = 1091, + [1228] = 1082, + [1229] = 1132, + [1230] = 1084, + [1231] = 1132, + [1232] = 1111, + [1233] = 1112, + [1234] = 1079, + [1235] = 1114, + [1236] = 1115, + [1237] = 1084, + [1238] = 1083, + [1239] = 1084, + [1240] = 1121, + [1241] = 1132, + [1242] = 1111, + [1243] = 1112, [1244] = 1079, - [1245] = 1078, - [1246] = 1079, - [1247] = 1090, - [1248] = 1078, - [1249] = 1144, - [1250] = 1080, - [1251] = 1095, - [1252] = 1099, - [1253] = 1118, - [1254] = 1076, - [1255] = 1095, - [1256] = 1140, - [1257] = 1138, - [1258] = 1077, - [1259] = 1084, - [1260] = 1077, - [1261] = 1138, - [1262] = 1140, - [1263] = 1090, - [1264] = 1083, - [1265] = 1082, - [1266] = 1139, - [1267] = 1090, - [1268] = 1156, - [1269] = 1090, - [1270] = 1138, - [1271] = 1081, - [1272] = 1080, - [1273] = 1079, - [1274] = 1084, - [1275] = 1091, - [1276] = 1140, - [1277] = 1077, - [1278] = 1078, - [1279] = 1144, - [1280] = 1083, - [1281] = 1082, - [1282] = 1140, - [1283] = 1138, - [1284] = 1077, - [1285] = 1077, - [1286] = 1080, - [1287] = 1079, - [1288] = 1140, - [1289] = 1138, - [1290] = 1077, - [1291] = 1078, - [1292] = 1083, - [1293] = 1090, - [1294] = 1095, - [1295] = 1099, - [1296] = 1118, - [1297] = 1076, - [1298] = 1084, - [1299] = 1084, - [1300] = 1083, - [1301] = 1082, - [1302] = 1081, - [1303] = 1080, - [1304] = 1140, - [1305] = 1138, - [1306] = 1077, - [1307] = 1079, - [1308] = 1095, - [1309] = 1156, - [1310] = 1139, - [1311] = 1078, - [1312] = 1077, - [1313] = 1138, - [1314] = 1140, - [1315] = 1144, - [1316] = 1138, - [1317] = 1140, - [1318] = 1090, - [1319] = 1091, - [1320] = 1139, - [1321] = 1077, - [1322] = 1138, - [1323] = 1156, - [1324] = 1139, - [1325] = 1095, - [1326] = 1099, - [1327] = 1090, - [1328] = 1140, - [1329] = 568, - [1330] = 1091, - [1331] = 1118, - [1332] = 1140, - [1333] = 1138, - [1334] = 1077, - [1335] = 1076, - [1336] = 1139, - [1337] = 1077, - [1338] = 1138, - [1339] = 1156, - [1340] = 1090, - [1341] = 1140, - [1342] = 1091, - [1343] = 562, - [1344] = 565, - [1345] = 563, - [1346] = 1156, - [1347] = 1077, - [1348] = 1138, - [1349] = 1090, - [1350] = 1140, - [1351] = 1140, - [1352] = 1140, - [1353] = 1138, - [1354] = 1077, - [1355] = 1084, - [1356] = 1083, - [1357] = 1082, - [1358] = 1081, - [1359] = 1139, - [1360] = 1156, - [1361] = 1140, - [1362] = 1138, - [1363] = 1077, - [1364] = 1090, - [1365] = 1084, - [1366] = 1139, - [1367] = 1091, - [1368] = 1083, - [1369] = 1139, - [1370] = 1156, - [1371] = 1082, - [1372] = 1081, - [1373] = 1080, - [1374] = 1079, - [1375] = 1140, - [1376] = 1138, - [1377] = 1077, - [1378] = 1078, - [1379] = 1080, - [1380] = 1077, - [1381] = 1138, - [1382] = 1079, - [1383] = 1078, - [1384] = 1090, - [1385] = 1095, - [1386] = 1140, - [1387] = 1156, - [1388] = 1140, - [1389] = 1090, - [1390] = 1138, - [1391] = 1077, - [1392] = 1156, - [1393] = 1139, - [1394] = 1091, - [1395] = 1156, - [1396] = 1140, - [1397] = 1095, - [1398] = 1090, - [1399] = 1138, - [1400] = 1077, - [1401] = 1091, - [1402] = 1077, - [1403] = 1138, - [1404] = 1140, - [1405] = 1084, - [1406] = 1156, - [1407] = 1077, - [1408] = 1138, - [1409] = 1140, - [1410] = 1083, - [1411] = 1082, - [1412] = 1081, - [1413] = 1077, - [1414] = 1138, - [1415] = 1080, - [1416] = 1079, - [1417] = 1078, - [1418] = 1144, - [1419] = 1095, - [1420] = 1156, - [1421] = 1139, - [1422] = 1095, - [1423] = 1099, - [1424] = 1118, - [1425] = 1078, - [1426] = 1079, - [1427] = 1080, - [1428] = 1081, - [1429] = 1082, - [1430] = 1083, - [1431] = 1084, - [1432] = 1084, - [1433] = 1083, - [1434] = 1082, - [1435] = 1081, - [1436] = 1095, - [1437] = 1080, - [1438] = 1079, - [1439] = 1078, - [1440] = 1095, - [1441] = 1156, - [1442] = 1156, - [1443] = 1078, - [1444] = 1079, - [1445] = 1080, - [1446] = 1081, - [1447] = 1082, - [1448] = 1139, - [1449] = 1083, - [1450] = 1084, - [1451] = 1140, - [1452] = 1090, - [1453] = 1077, - [1454] = 1138, - [1455] = 1138, - [1456] = 1095, - [1457] = 1077, - [1458] = 1139, - [1459] = 1140, - [1460] = 1091, - [1461] = 1078, - [1462] = 1079, - [1463] = 1080, - [1464] = 1081, - [1465] = 1082, - [1466] = 1083, - [1467] = 1084, - [1468] = 1140, - [1469] = 1095, - [1470] = 1090, - [1471] = 1156, - [1472] = 1138, - [1473] = 1078, - [1474] = 1079, - [1475] = 1080, - [1476] = 1081, - [1477] = 1082, - [1478] = 1083, - [1479] = 1084, - [1480] = 1077, - [1481] = 1091, - [1482] = 1091, - [1483] = 1140, - [1484] = 1090, - [1485] = 1156, - [1486] = 1138, - [1487] = 1076, - [1488] = 1077, - [1489] = 1118, - [1490] = 1099, - [1491] = 1095, - [1492] = 1091, - [1493] = 1084, - [1494] = 1083, - [1495] = 1156, - [1496] = 1082, - [1497] = 1081, - [1498] = 1080, - [1499] = 1079, - [1500] = 1078, - [1501] = 1144, - [1502] = 1502, - [1503] = 606, - [1504] = 645, - [1505] = 1505, - [1506] = 1506, - [1507] = 1507, - [1508] = 1508, - [1509] = 1509, - [1510] = 565, - [1511] = 564, - [1512] = 568, - [1513] = 562, - [1514] = 563, - [1515] = 564, - [1516] = 565, - [1517] = 562, - [1518] = 563, - [1519] = 568, - [1520] = 615, - [1521] = 623, - [1522] = 625, - [1523] = 617, - [1524] = 607, - [1525] = 628, - [1526] = 633, - [1527] = 631, - [1528] = 622, - [1529] = 576, - [1530] = 645, - [1531] = 614, - [1532] = 632, - [1533] = 628, - [1534] = 562, - [1535] = 632, - [1536] = 565, - [1537] = 568, - [1538] = 564, - [1539] = 631, - [1540] = 625, - [1541] = 645, - [1542] = 564, - [1543] = 607, - [1544] = 623, - [1545] = 622, - [1546] = 563, - [1547] = 617, - [1548] = 615, - [1549] = 614, - [1550] = 633, - [1551] = 565, - [1552] = 562, - [1553] = 572, - [1554] = 571, - [1555] = 568, - [1556] = 563, - [1557] = 562, - [1558] = 563, - [1559] = 564, - [1560] = 564, - [1561] = 564, - [1562] = 562, - [1563] = 568, - [1564] = 563, - [1565] = 564, - [1566] = 563, - [1567] = 562, - [1568] = 568, - [1569] = 565, - [1570] = 564, - [1571] = 568, - [1572] = 565, - [1573] = 564, - [1574] = 565, - [1575] = 1575, - [1576] = 568, - [1577] = 1575, - [1578] = 1575, - [1579] = 1575, - [1580] = 1580, - [1581] = 1580, - [1582] = 1580, - [1583] = 1580, - [1584] = 1580, - [1585] = 1580, - [1586] = 1575, - [1587] = 1575, - [1588] = 1580, - [1589] = 1580, - [1590] = 1575, - [1591] = 1575, - [1592] = 1575, - [1593] = 1575, - [1594] = 1580, - [1595] = 1580, - [1596] = 1575, - [1597] = 1580, - [1598] = 568, - [1599] = 1580, - [1600] = 1580, - [1601] = 1575, - [1602] = 565, - [1603] = 1580, - [1604] = 1575, - [1605] = 1575, - [1606] = 1580, - [1607] = 1575, - [1608] = 1575, - [1609] = 1575, - [1610] = 1580, - [1611] = 1575, - [1612] = 568, - [1613] = 1580, - [1614] = 562, - [1615] = 565, - [1616] = 1580, - [1617] = 563, - [1618] = 562, - [1619] = 563, - [1620] = 1575, - [1621] = 565, - [1622] = 562, - [1623] = 563, - [1624] = 1575, - [1625] = 1580, - [1626] = 1580, - [1627] = 1575, - [1628] = 1580, - [1629] = 1629, - [1630] = 1630, - [1631] = 1630, - [1632] = 1630, - [1633] = 1630, - [1634] = 1630, - [1635] = 1630, - [1636] = 1630, - [1637] = 1630, - [1638] = 557, - [1639] = 559, - [1640] = 570, - [1641] = 639, - [1642] = 645, - [1643] = 630, - [1644] = 605, - [1645] = 629, - [1646] = 618, - [1647] = 608, - [1648] = 610, - [1649] = 596, - [1650] = 592, - [1651] = 589, - [1652] = 624, - [1653] = 603, - [1654] = 598, - [1655] = 619, - [1656] = 636, - [1657] = 595, - [1658] = 638, - [1659] = 604, - [1660] = 1660, - [1661] = 1661, - [1662] = 1662, - [1663] = 1661, - [1664] = 1664, - [1665] = 1665, - [1666] = 1660, - [1667] = 1660, - [1668] = 1660, - [1669] = 1661, - [1670] = 1660, - [1671] = 1660, - [1672] = 1661, - [1673] = 1673, - [1674] = 1661, - [1675] = 1661, - [1676] = 1662, - [1677] = 1661, - [1678] = 1660, - [1679] = 1661, - [1680] = 1680, - [1681] = 1664, - [1682] = 1660, - [1683] = 1683, - [1684] = 1684, - [1685] = 1684, - [1686] = 1686, - [1687] = 1686, - [1688] = 1684, - [1689] = 1686, - [1690] = 1686, - [1691] = 1686, - [1692] = 1686, - [1693] = 1686, - [1694] = 1686, - [1695] = 1684, - [1696] = 1686, - [1697] = 1686, - [1698] = 1686, - [1699] = 1684, - [1700] = 1684, - [1701] = 1701, - [1702] = 1684, - [1703] = 1684, - [1704] = 1506, - [1705] = 1686, - [1706] = 1686, - [1707] = 1684, - [1708] = 1686, - [1709] = 1686, - [1710] = 1684, - [1711] = 1686, - [1712] = 1684, - [1713] = 1686, - [1714] = 1686, - [1715] = 1686, - [1716] = 1686, - [1717] = 1686, - [1718] = 1686, - [1719] = 1686, - [1720] = 1686, - [1721] = 1686, - [1722] = 1684, - [1723] = 1684, - [1724] = 1686, - [1725] = 1686, - [1726] = 1684, - [1727] = 1684, - [1728] = 1686, - [1729] = 1684, - [1730] = 1684, - [1731] = 1731, - [1732] = 1684, - [1733] = 1684, - [1734] = 1686, - [1735] = 1684, - [1736] = 1686, - [1737] = 1509, - [1738] = 1686, - [1739] = 1684, - [1740] = 1686, - [1741] = 1741, - [1742] = 1742, - [1743] = 1743, - [1744] = 1744, - [1745] = 1745, - [1746] = 1746, - [1747] = 1747, - [1748] = 1748, - [1749] = 1749, - [1750] = 1750, - [1751] = 1751, - [1752] = 1741, - [1753] = 1743, - [1754] = 1744, - [1755] = 1745, - [1756] = 1746, - [1757] = 1747, - [1758] = 1748, - [1759] = 1747, - [1760] = 1751, - [1761] = 1751, - [1762] = 1741, - [1763] = 1743, - [1764] = 1744, - [1765] = 1748, - [1766] = 1745, - [1767] = 1746, - [1768] = 1747, - [1769] = 1748, - [1770] = 1741, - [1771] = 1747, - [1772] = 1751, - [1773] = 1741, - [1774] = 1743, - [1775] = 1744, - [1776] = 1741, - [1777] = 1745, - [1778] = 1746, - [1779] = 1747, - [1780] = 1748, - [1781] = 1746, - [1782] = 1745, - [1783] = 1751, - [1784] = 1741, - [1785] = 1743, - [1786] = 1744, - [1787] = 1744, - [1788] = 1745, - [1789] = 1746, - [1790] = 1747, - [1791] = 1748, - [1792] = 1743, - [1793] = 1741, - [1794] = 1741, - [1795] = 1743, - [1796] = 1744, - [1797] = 1797, - [1798] = 1745, - [1799] = 1746, - [1800] = 1747, - [1801] = 1748, - [1802] = 1751, - [1803] = 1748, - [1804] = 1741, - [1805] = 1743, - [1806] = 1744, - [1807] = 1749, - [1808] = 1745, - [1809] = 1746, - [1810] = 1747, - [1811] = 1748, - [1812] = 1750, - [1813] = 1741, - [1814] = 1750, - [1815] = 1815, - [1816] = 1816, - [1817] = 1741, - [1818] = 1818, - [1819] = 1742, - [1820] = 1749, - [1821] = 1751, - [1822] = 1746, - [1823] = 1741, - [1824] = 1748, - [1825] = 1747, - [1826] = 1743, - [1827] = 1744, - [1828] = 1745, - [1829] = 1744, - [1830] = 1745, - [1831] = 1746, - [1832] = 1749, - [1833] = 1750, - [1834] = 1743, - [1835] = 1747, - [1836] = 1797, - [1837] = 1741, - [1838] = 1748, - [1839] = 1750, - [1840] = 1751, - [1841] = 1741, - [1842] = 1748, - [1843] = 1843, - [1844] = 1748, - [1845] = 1747, - [1846] = 1747, - [1847] = 1746, - [1848] = 1745, - [1849] = 1744, - [1850] = 1743, - [1851] = 1741, - [1852] = 1751, - [1853] = 1750, - [1854] = 1750, - [1855] = 1750, - [1856] = 1749, - [1857] = 1857, - [1858] = 1749, - [1859] = 1746, - [1860] = 1741, - [1861] = 1745, - [1862] = 1748, - [1863] = 1749, - [1864] = 1744, - [1865] = 1743, - [1866] = 1741, - [1867] = 1750, - [1868] = 1746, - [1869] = 1751, - [1870] = 1815, - [1871] = 1816, - [1872] = 1745, - [1873] = 1818, - [1874] = 1742, - [1875] = 1749, - [1876] = 1751, - [1877] = 1743, - [1878] = 1744, - [1879] = 1747, - [1880] = 1750, - [1881] = 1745, - [1882] = 1746, - [1883] = 1749, - [1884] = 1747, - [1885] = 1797, - [1886] = 1748, - [1887] = 1749, - [1888] = 1746, - [1889] = 1745, - [1890] = 1741, - [1891] = 1891, - [1892] = 1744, - [1893] = 1743, - [1894] = 1744, - [1895] = 1815, - [1896] = 1816, - [1897] = 1743, - [1898] = 1818, - [1899] = 1742, - [1900] = 1749, - [1901] = 1743, - [1902] = 1744, - [1903] = 1751, - [1904] = 1751, - [1905] = 1745, - [1906] = 1746, - [1907] = 1747, - [1908] = 1797, - [1909] = 1748, - [1910] = 1741, - [1911] = 1911, - [1912] = 1742, - [1913] = 1818, - [1914] = 1749, - [1915] = 1816, - [1916] = 1815, - [1917] = 1741, - [1918] = 1815, - [1919] = 1816, - [1920] = 1741, - [1921] = 1818, - [1922] = 1741, - [1923] = 1749, - [1924] = 1743, - [1925] = 1744, - [1926] = 1741, - [1927] = 1750, - [1928] = 1745, - [1929] = 1746, - [1930] = 1747, - [1931] = 1797, - [1932] = 1748, - [1933] = 1815, - [1934] = 1816, - [1935] = 1749, - [1936] = 1818, - [1937] = 1742, - [1938] = 1743, - [1939] = 1744, - [1940] = 1750, - [1941] = 1748, - [1942] = 1745, - [1943] = 1746, - [1944] = 1747, - [1945] = 1797, - [1946] = 1748, - [1947] = 1815, - [1948] = 1816, - [1949] = 1751, - [1950] = 1818, - [1951] = 1742, - [1952] = 1743, - [1953] = 1744, - [1954] = 1747, - [1955] = 1749, - [1956] = 1745, - [1957] = 1746, - [1958] = 1747, - [1959] = 1797, - [1960] = 1748, - [1961] = 1815, - [1962] = 1816, - [1963] = 1746, - [1964] = 1818, - [1965] = 1742, - [1966] = 1745, - [1967] = 1797, - [1968] = 1815, - [1969] = 1816, - [1970] = 1750, - [1971] = 1818, - [1972] = 1742, - [1973] = 1744, - [1974] = 1797, - [1975] = 1815, - [1976] = 1816, - [1977] = 1743, - [1978] = 1818, - [1979] = 1742, - [1980] = 1741, - [1981] = 1797, - [1982] = 1815, - [1983] = 1816, - [1984] = 1741, - [1985] = 1818, - [1986] = 1742, - [1987] = 1751, - [1988] = 1797, - [1989] = 1815, - [1990] = 1816, - [1991] = 1749, - [1992] = 1818, - [1993] = 1742, - [1994] = 1750, - [1995] = 1797, - [1996] = 1815, - [1997] = 1816, - [1998] = 1741, - [1999] = 1818, - [2000] = 1742, - [2001] = 1749, - [2002] = 1797, - [2003] = 1815, - [2004] = 1816, - [2005] = 1749, - [2006] = 1818, - [2007] = 1742, - [2008] = 1749, - [2009] = 1797, - [2010] = 1815, - [2011] = 1816, - [2012] = 1750, - [2013] = 1818, - [2014] = 1742, - [2015] = 1741, - [2016] = 1797, - [2017] = 1750, - [2018] = 1815, - [2019] = 1816, - [2020] = 1741, - [2021] = 1818, - [2022] = 1742, - [2023] = 1749, - [2024] = 1751, - [2025] = 1749, - [2026] = 1857, - [2027] = 1797, - [2028] = 1815, - [2029] = 1816, - [2030] = 1741, - [2031] = 1818, - [2032] = 1742, - [2033] = 1750, - [2034] = 1751, - [2035] = 1857, - [2036] = 1797, - [2037] = 1815, - [2038] = 1816, - [2039] = 1748, - [2040] = 1818, - [2041] = 1742, - [2042] = 1741, - [2043] = 1857, - [2044] = 1797, - [2045] = 1815, - [2046] = 1816, - [2047] = 1743, - [2048] = 1818, - [2049] = 1742, - [2050] = 1747, - [2051] = 1857, - [2052] = 1797, - [2053] = 1815, - [2054] = 1816, - [2055] = 1741, - [2056] = 1818, - [2057] = 1742, - [2058] = 1744, - [2059] = 1857, - [2060] = 1797, - [2061] = 1815, - [2062] = 1816, - [2063] = 1745, - [2064] = 1818, - [2065] = 1742, - [2066] = 1746, - [2067] = 1857, - [2068] = 1797, - [2069] = 1857, - [2070] = 1857, - [2071] = 1857, - [2072] = 1857, - [2073] = 1857, - [2074] = 1857, - [2075] = 1857, - [2076] = 1857, - [2077] = 1911, - [2078] = 1857, - [2079] = 1911, - [2080] = 1857, - [2081] = 1911, - [2082] = 1857, - [2083] = 1911, - [2084] = 1857, - [2085] = 1911, - [2086] = 1857, - [2087] = 1911, - [2088] = 1857, - [2089] = 1911, - [2090] = 1911, - [2091] = 1911, - [2092] = 1911, - [2093] = 1911, - [2094] = 1911, - [2095] = 1911, - [2096] = 1911, - [2097] = 1911, - [2098] = 1911, - [2099] = 1911, - [2100] = 1911, - [2101] = 1911, - [2102] = 1911, + [1245] = 1114, + [1246] = 1115, + [1247] = 1082, + [1248] = 1080, + [1249] = 1121, + [1250] = 1132, + [1251] = 1111, + [1252] = 1112, + [1253] = 1080, + [1254] = 1114, + [1255] = 1115, + [1256] = 1079, + [1257] = 1121, + [1258] = 1132, + [1259] = 1111, + [1260] = 1112, + [1261] = 1080, + [1262] = 1114, + [1263] = 1115, + [1264] = 1091, + [1265] = 1121, + [1266] = 1132, + [1267] = 1111, + [1268] = 1112, + [1269] = 1079, + [1270] = 1114, + [1271] = 1115, + [1272] = 1090, + [1273] = 1121, + [1274] = 1132, + [1275] = 1111, + [1276] = 1112, + [1277] = 1088, + [1278] = 1114, + [1279] = 1115, + [1280] = 1087, + [1281] = 1121, + [1282] = 1132, + [1283] = 1166, + [1284] = 1121, + [1285] = 1166, + [1286] = 1121, + [1287] = 1166, + [1288] = 1121, + [1289] = 1166, + [1290] = 1121, + [1291] = 1166, + [1292] = 1121, + [1293] = 1166, + [1294] = 1121, + [1295] = 1166, + [1296] = 1166, + [1297] = 1166, + [1298] = 1166, + [1299] = 1166, + [1300] = 1166, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -3113,643 +2311,608 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(29); - if (lookahead == '!') ADVANCE(11); - if (lookahead == '"') ADVANCE(6); - if (lookahead == '#') ADVANCE(20); - if (lookahead == '%') ADVANCE(67); - if (lookahead == '&') ADVANCE(8); - if (lookahead == '\'') ADVANCE(9); - if (lookahead == '(') ADVANCE(35); - if (lookahead == ')') ADVANCE(36); - if (lookahead == '*') ADVANCE(65); - if (lookahead == '+') ADVANCE(60); - if (lookahead == ',') ADVANCE(37); - if (lookahead == '-') ADVANCE(64); - if (lookahead == '.') ADVANCE(10); - if (lookahead == '/') ADVANCE(66); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49); - if (lookahead == ':') ADVANCE(57); - if (lookahead == ';') ADVANCE(34); - if (lookahead == '<') ADVANCE(73); - if (lookahead == '=') ADVANCE(55); - if (lookahead == '>') ADVANCE(72); - if (lookahead == '[') ADVANCE(52); - if (lookahead == ']') ADVANCE(53); - if (lookahead == '`') ADVANCE(14); - if (lookahead == 'a') ADVANCE(45); - if (lookahead == 'e') ADVANCE(43); - if (lookahead == '{') ADVANCE(32); - if (lookahead == '|') ADVANCE(82); - if (lookahead == '}') ADVANCE(33); + if (eof) ADVANCE(28); + if (lookahead == '!') ADVANCE(10); + if (lookahead == '"') ADVANCE(5); + if (lookahead == '#') ADVANCE(19); + if (lookahead == '%') ADVANCE(64); + if (lookahead == '&') ADVANCE(7); + if (lookahead == '\'') ADVANCE(8); + if (lookahead == '(') ADVANCE(34); + if (lookahead == ')') ADVANCE(35); + if (lookahead == '*') ADVANCE(62); + if (lookahead == '+') ADVANCE(58); + if (lookahead == ',') ADVANCE(36); + if (lookahead == '-') ADVANCE(61); + if (lookahead == '.') ADVANCE(9); + if (lookahead == '/') ADVANCE(63); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48); + if (lookahead == ':') ADVANCE(55); + if (lookahead == ';') ADVANCE(33); + if (lookahead == '<') ADVANCE(70); + if (lookahead == '=') ADVANCE(53); + if (lookahead == '>') ADVANCE(69); + if (lookahead == '[') ADVANCE(51); + if (lookahead == ']') ADVANCE(52); + if (lookahead == '`') ADVANCE(13); + if (lookahead == 'a') ADVANCE(44); + if (lookahead == 'e') ADVANCE(42); + if (lookahead == '{') ADVANCE(31); + if (lookahead == '|') ADVANCE(79); + if (lookahead == '}') ADVANCE(32); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(0) if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(48); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(47); END_STATE(); case 1: - if (lookahead == '!') ADVANCE(11); - if (lookahead == '"') ADVANCE(6); - if (lookahead == '#') ADVANCE(20); - if (lookahead == '%') ADVANCE(67); - if (lookahead == '&') ADVANCE(8); - if (lookahead == '\'') ADVANCE(9); - if (lookahead == '(') ADVANCE(35); - if (lookahead == ')') ADVANCE(36); - if (lookahead == '*') ADVANCE(65); - if (lookahead == '+') ADVANCE(59); - if (lookahead == ',') ADVANCE(37); - if (lookahead == '-') ADVANCE(63); - if (lookahead == '.') ADVANCE(10); - if (lookahead == '/') ADVANCE(66); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49); - if (lookahead == ':') ADVANCE(57); - if (lookahead == ';') ADVANCE(34); - if (lookahead == '<') ADVANCE(73); - if (lookahead == '=') ADVANCE(12); - if (lookahead == '>') ADVANCE(72); - if (lookahead == '[') ADVANCE(52); - if (lookahead == ']') ADVANCE(53); - if (lookahead == '`') ADVANCE(14); - if (lookahead == '{') ADVANCE(32); - if (lookahead == '|') ADVANCE(82); - if (lookahead == '}') ADVANCE(33); + if (lookahead == '!') ADVANCE(10); + if (lookahead == '"') ADVANCE(5); + if (lookahead == '#') ADVANCE(19); + if (lookahead == '%') ADVANCE(64); + if (lookahead == '&') ADVANCE(7); + if (lookahead == '\'') ADVANCE(8); + if (lookahead == '(') ADVANCE(34); + if (lookahead == ')') ADVANCE(35); + if (lookahead == '*') ADVANCE(62); + if (lookahead == '+') ADVANCE(57); + if (lookahead == ',') ADVANCE(36); + if (lookahead == '-') ADVANCE(60); + if (lookahead == '.') ADVANCE(9); + if (lookahead == '/') ADVANCE(63); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48); + if (lookahead == ':') ADVANCE(55); + if (lookahead == ';') ADVANCE(33); + if (lookahead == '<') ADVANCE(70); + if (lookahead == '=') ADVANCE(11); + if (lookahead == '>') ADVANCE(69); + if (lookahead == '[') ADVANCE(51); + if (lookahead == ']') ADVANCE(52); + if (lookahead == '`') ADVANCE(13); + if (lookahead == '{') ADVANCE(31); + if (lookahead == '|') ADVANCE(79); + if (lookahead == '}') ADVANCE(32); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(1) if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(48); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(47); END_STATE(); case 2: - if (lookahead == '!') ADVANCE(11); - if (lookahead == '"') ADVANCE(6); - if (lookahead == '#') ADVANCE(20); - if (lookahead == '%') ADVANCE(67); - if (lookahead == '&') ADVANCE(8); - if (lookahead == '\'') ADVANCE(9); - if (lookahead == '(') ADVANCE(35); - if (lookahead == '*') ADVANCE(65); - if (lookahead == '+') ADVANCE(60); - if (lookahead == ',') ADVANCE(37); - if (lookahead == '-') ADVANCE(64); - if (lookahead == '.') ADVANCE(10); - if (lookahead == '/') ADVANCE(66); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49); - if (lookahead == ':') ADVANCE(57); - if (lookahead == ';') ADVANCE(34); - if (lookahead == '<') ADVANCE(73); - if (lookahead == '=') ADVANCE(55); - if (lookahead == '>') ADVANCE(72); - if (lookahead == '[') ADVANCE(52); - if (lookahead == '`') ADVANCE(14); - if (lookahead == '{') ADVANCE(32); - if (lookahead == '|') ADVANCE(82); - if (lookahead == '}') ADVANCE(33); + if (lookahead == '!') ADVANCE(10); + if (lookahead == '"') ADVANCE(5); + if (lookahead == '#') ADVANCE(19); + if (lookahead == '%') ADVANCE(64); + if (lookahead == '&') ADVANCE(7); + if (lookahead == '\'') ADVANCE(8); + if (lookahead == '(') ADVANCE(34); + if (lookahead == '*') ADVANCE(62); + if (lookahead == '+') ADVANCE(58); + if (lookahead == ',') ADVANCE(36); + if (lookahead == '-') ADVANCE(61); + if (lookahead == '/') ADVANCE(63); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48); + if (lookahead == ':') ADVANCE(55); + if (lookahead == ';') ADVANCE(33); + if (lookahead == '<') ADVANCE(70); + if (lookahead == '=') ADVANCE(53); + if (lookahead == '>') ADVANCE(69); + if (lookahead == '[') ADVANCE(51); + if (lookahead == '`') ADVANCE(13); + if (lookahead == '{') ADVANCE(31); + if (lookahead == '|') ADVANCE(79); + if (lookahead == '}') ADVANCE(32); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(2) if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(48); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(47); END_STATE(); case 3: - if (lookahead == '!') ADVANCE(11); - if (lookahead == '#') ADVANCE(20); - if (lookahead == '%') ADVANCE(67); - if (lookahead == '&') ADVANCE(8); - if (lookahead == ')') ADVANCE(36); - if (lookahead == '*') ADVANCE(65); - if (lookahead == '+') ADVANCE(59); - if (lookahead == ',') ADVANCE(37); - if (lookahead == '-') ADVANCE(61); - if (lookahead == '.') ADVANCE(10); - if (lookahead == '/') ADVANCE(66); - if (lookahead == ':') ADVANCE(57); - if (lookahead == ';') ADVANCE(34); - if (lookahead == '<') ADVANCE(73); - if (lookahead == '=') ADVANCE(12); - if (lookahead == '>') ADVANCE(72); - if (lookahead == '|') ADVANCE(21); - if (lookahead == '}') ADVANCE(33); + if (lookahead == '!') ADVANCE(10); + if (lookahead == '#') ADVANCE(19); + if (lookahead == '%') ADVANCE(64); + if (lookahead == '&') ADVANCE(7); + if (lookahead == ')') ADVANCE(35); + if (lookahead == '*') ADVANCE(62); + if (lookahead == '+') ADVANCE(57); + if (lookahead == ',') ADVANCE(36); + if (lookahead == '-') ADVANCE(59); + if (lookahead == '.') ADVANCE(9); + if (lookahead == '/') ADVANCE(63); + if (lookahead == ':') ADVANCE(55); + if (lookahead == ';') ADVANCE(33); + if (lookahead == '<') ADVANCE(70); + if (lookahead == '=') ADVANCE(11); + if (lookahead == '>') ADVANCE(69); + if (lookahead == '|') ADVANCE(20); + if (lookahead == '}') ADVANCE(32); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(3) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(47); END_STATE(); case 4: - if (lookahead == '!') ADVANCE(11); - if (lookahead == '#') ADVANCE(20); - if (lookahead == '%') ADVANCE(67); - if (lookahead == '&') ADVANCE(8); - if (lookahead == '*') ADVANCE(65); - if (lookahead == '+') ADVANCE(60); - if (lookahead == ',') ADVANCE(37); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(10); - if (lookahead == '/') ADVANCE(66); - if (lookahead == ':') ADVANCE(57); - if (lookahead == ';') ADVANCE(34); - if (lookahead == '<') ADVANCE(73); - if (lookahead == '=') ADVANCE(54); - if (lookahead == '>') ADVANCE(72); - if (lookahead == '|') ADVANCE(21); - if (lookahead == '}') ADVANCE(33); + if (lookahead == '"') ADVANCE(5); + if (lookahead == '#') ADVANCE(19); + if (lookahead == '\'') ADVANCE(8); + if (lookahead == '(') ADVANCE(34); + if (lookahead == ',') ADVANCE(36); + if (lookahead == '-') ADVANCE(21); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48); + if (lookahead == ';') ADVANCE(33); + if (lookahead == '=') ADVANCE(12); + if (lookahead == '[') ADVANCE(51); + if (lookahead == ']') ADVANCE(52); + if (lookahead == '`') ADVANCE(13); + if (lookahead == '{') ADVANCE(31); + if (lookahead == '|') ADVANCE(78); + if (lookahead == '}') ADVANCE(32); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(4) if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(47); END_STATE(); case 5: - if (lookahead == '"') ADVANCE(6); - if (lookahead == '#') ADVANCE(20); - if (lookahead == '\'') ADVANCE(9); - if (lookahead == '(') ADVANCE(35); - if (lookahead == ',') ADVANCE(37); - if (lookahead == '-') ADVANCE(22); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49); - if (lookahead == ';') ADVANCE(34); - if (lookahead == '=') ADVANCE(13); - if (lookahead == '[') ADVANCE(52); - if (lookahead == ']') ADVANCE(53); - if (lookahead == '`') ADVANCE(14); - if (lookahead == '{') ADVANCE(32); - if (lookahead == '|') ADVANCE(81); - if (lookahead == '}') ADVANCE(33); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(5) - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(48); + if (lookahead == '"') ADVANCE(50); + if (lookahead != 0) ADVANCE(5); END_STATE(); case 6: - if (lookahead == '"') ADVANCE(51); - if (lookahead != 0) ADVANCE(6); - END_STATE(); - case 7: - if (lookahead == '#') ADVANCE(20); - if (lookahead == ',') ADVANCE(37); - if (lookahead == ';') ADVANCE(34); - if (lookahead == 'e') ADVANCE(43); - if (lookahead == '}') ADVANCE(33); + if (lookahead == '#') ADVANCE(19); + if (lookahead == ',') ADVANCE(36); + if (lookahead == ';') ADVANCE(33); + if (lookahead == 'e') ADVANCE(42); + if (lookahead == '}') ADVANCE(32); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(7) + lookahead == ' ') SKIP(6) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(47); + END_STATE(); + case 7: + if (lookahead == '&') ADVANCE(67); END_STATE(); case 8: - if (lookahead == '&') ADVANCE(70); + if (lookahead == '\'') ADVANCE(50); + if (lookahead != 0) ADVANCE(8); END_STATE(); case 9: - if (lookahead == '\'') ADVANCE(51); - if (lookahead != 0) ADVANCE(9); + if (lookahead == '.') ADVANCE(56); END_STATE(); case 10: - if (lookahead == '.') ADVANCE(58); + if (lookahead == '=') ADVANCE(66); END_STATE(); case 11: - if (lookahead == '=') ADVANCE(69); + if (lookahead == '=') ADVANCE(65); + if (lookahead == '>') ADVANCE(76); END_STATE(); case 12: - if (lookahead == '=') ADVANCE(68); - if (lookahead == '>') ADVANCE(79); + if (lookahead == '>') ADVANCE(76); END_STATE(); case 13: - if (lookahead == '>') ADVANCE(79); + if (lookahead == '`') ADVANCE(50); + if (lookahead != 0) ADVANCE(13); END_STATE(); case 14: - if (lookahead == '`') ADVANCE(51); - if (lookahead != 0) ADVANCE(14); + if (lookahead == 'f') ADVANCE(17); END_STATE(); case 15: - if (lookahead == 'f') ADVANCE(18); + if (lookahead == 'f') ADVANCE(75); END_STATE(); case 16: - if (lookahead == 'f') ADVANCE(78); + if (lookahead == 'i') ADVANCE(15); END_STATE(); case 17: - if (lookahead == 'i') ADVANCE(16); + if (lookahead == 'o') ADVANCE(18); END_STATE(); case 18: - if (lookahead == 'o') ADVANCE(19); + if (lookahead == 'r') ADVANCE(77); END_STATE(); case 19: - if (lookahead == 'r') ADVANCE(80); + if (lookahead == '|') ADVANCE(30); + if (lookahead == '\n' || + lookahead == '#') ADVANCE(29); + if (lookahead != 0) ADVANCE(19); END_STATE(); case 20: - if (lookahead == '|') ADVANCE(31); - if (lookahead == '\n' || - lookahead == '#') ADVANCE(30); - if (lookahead != 0) ADVANCE(20); + if (lookahead == '|') ADVANCE(68); END_STATE(); case 21: - if (lookahead == '|') ADVANCE(71); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48); END_STATE(); case 22: if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49); END_STATE(); case 23: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(50); + if (eof) ADVANCE(28); + if (lookahead == '!') ADVANCE(10); + if (lookahead == '"') ADVANCE(5); + if (lookahead == '#') ADVANCE(19); + if (lookahead == '%') ADVANCE(64); + if (lookahead == '&') ADVANCE(7); + if (lookahead == '\'') ADVANCE(8); + if (lookahead == '(') ADVANCE(34); + if (lookahead == ')') ADVANCE(35); + if (lookahead == '*') ADVANCE(62); + if (lookahead == '+') ADVANCE(58); + if (lookahead == ',') ADVANCE(36); + if (lookahead == '-') ADVANCE(61); + if (lookahead == '.') ADVANCE(9); + if (lookahead == '/') ADVANCE(63); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48); + if (lookahead == ':') ADVANCE(55); + if (lookahead == ';') ADVANCE(33); + if (lookahead == '<') ADVANCE(70); + if (lookahead == '=') ADVANCE(53); + if (lookahead == '>') ADVANCE(69); + if (lookahead == '[') ADVANCE(51); + if (lookahead == ']') ADVANCE(52); + if (lookahead == '`') ADVANCE(13); + if (lookahead == 'a') ADVANCE(44); + if (lookahead == '{') ADVANCE(31); + if (lookahead == '|') ADVANCE(79); + if (lookahead == '}') ADVANCE(32); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(23) + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(47); END_STATE(); case 24: - if (eof) ADVANCE(29); - if (lookahead == '!') ADVANCE(11); - if (lookahead == '"') ADVANCE(6); - if (lookahead == '#') ADVANCE(20); - if (lookahead == '%') ADVANCE(67); - if (lookahead == '&') ADVANCE(8); - if (lookahead == '\'') ADVANCE(9); - if (lookahead == '(') ADVANCE(35); - if (lookahead == ')') ADVANCE(36); - if (lookahead == '*') ADVANCE(65); - if (lookahead == '+') ADVANCE(60); - if (lookahead == ',') ADVANCE(37); - if (lookahead == '-') ADVANCE(64); - if (lookahead == '.') ADVANCE(10); - if (lookahead == '/') ADVANCE(66); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49); - if (lookahead == ':') ADVANCE(57); - if (lookahead == ';') ADVANCE(34); - if (lookahead == '<') ADVANCE(73); - if (lookahead == '=') ADVANCE(55); - if (lookahead == '>') ADVANCE(72); - if (lookahead == '[') ADVANCE(52); - if (lookahead == ']') ADVANCE(53); - if (lookahead == '`') ADVANCE(14); - if (lookahead == 'a') ADVANCE(45); - if (lookahead == '{') ADVANCE(32); - if (lookahead == '|') ADVANCE(82); - if (lookahead == '}') ADVANCE(33); + if (eof) ADVANCE(28); + if (lookahead == '!') ADVANCE(10); + if (lookahead == '"') ADVANCE(5); + if (lookahead == '#') ADVANCE(19); + if (lookahead == '%') ADVANCE(64); + if (lookahead == '&') ADVANCE(7); + if (lookahead == '\'') ADVANCE(8); + if (lookahead == '(') ADVANCE(34); + if (lookahead == ')') ADVANCE(35); + if (lookahead == '*') ADVANCE(62); + if (lookahead == '+') ADVANCE(57); + if (lookahead == ',') ADVANCE(36); + if (lookahead == '-') ADVANCE(60); + if (lookahead == '.') ADVANCE(9); + if (lookahead == '/') ADVANCE(63); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48); + if (lookahead == ':') ADVANCE(55); + if (lookahead == ';') ADVANCE(33); + if (lookahead == '<') ADVANCE(70); + if (lookahead == '=') ADVANCE(11); + if (lookahead == '>') ADVANCE(69); + if (lookahead == '[') ADVANCE(51); + if (lookahead == ']') ADVANCE(52); + if (lookahead == '`') ADVANCE(13); + if (lookahead == 'a') ADVANCE(44); + if (lookahead == 'e') ADVANCE(42); + if (lookahead == '{') ADVANCE(31); + if (lookahead == '|') ADVANCE(79); + if (lookahead == '}') ADVANCE(32); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(24) if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(48); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(47); END_STATE(); case 25: - if (eof) ADVANCE(29); - if (lookahead == '!') ADVANCE(11); - if (lookahead == '"') ADVANCE(6); - if (lookahead == '#') ADVANCE(20); - if (lookahead == '%') ADVANCE(67); - if (lookahead == '&') ADVANCE(8); - if (lookahead == '\'') ADVANCE(9); - if (lookahead == '(') ADVANCE(35); - if (lookahead == ')') ADVANCE(36); - if (lookahead == '*') ADVANCE(65); - if (lookahead == '+') ADVANCE(59); - if (lookahead == ',') ADVANCE(37); - if (lookahead == '-') ADVANCE(63); - if (lookahead == '.') ADVANCE(10); - if (lookahead == '/') ADVANCE(66); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49); - if (lookahead == ':') ADVANCE(57); - if (lookahead == ';') ADVANCE(34); - if (lookahead == '<') ADVANCE(73); - if (lookahead == '=') ADVANCE(12); - if (lookahead == '>') ADVANCE(72); - if (lookahead == '[') ADVANCE(52); - if (lookahead == ']') ADVANCE(53); - if (lookahead == '`') ADVANCE(14); - if (lookahead == 'a') ADVANCE(45); - if (lookahead == 'e') ADVANCE(43); - if (lookahead == '{') ADVANCE(32); - if (lookahead == '|') ADVANCE(82); - if (lookahead == '}') ADVANCE(33); + if (eof) ADVANCE(28); + if (lookahead == '!') ADVANCE(10); + if (lookahead == '"') ADVANCE(5); + if (lookahead == '#') ADVANCE(19); + if (lookahead == '%') ADVANCE(64); + if (lookahead == '&') ADVANCE(7); + if (lookahead == '\'') ADVANCE(8); + if (lookahead == '(') ADVANCE(34); + if (lookahead == ')') ADVANCE(35); + if (lookahead == '*') ADVANCE(62); + if (lookahead == '+') ADVANCE(57); + if (lookahead == ',') ADVANCE(36); + if (lookahead == '-') ADVANCE(60); + if (lookahead == '.') ADVANCE(9); + if (lookahead == '/') ADVANCE(63); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48); + if (lookahead == ':') ADVANCE(55); + if (lookahead == ';') ADVANCE(33); + if (lookahead == '<') ADVANCE(70); + if (lookahead == '=') ADVANCE(11); + if (lookahead == '>') ADVANCE(69); + if (lookahead == '[') ADVANCE(51); + if (lookahead == ']') ADVANCE(52); + if (lookahead == '`') ADVANCE(13); + if (lookahead == 'a') ADVANCE(44); + if (lookahead == '{') ADVANCE(31); + if (lookahead == '|') ADVANCE(79); + if (lookahead == '}') ADVANCE(32); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(25) if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(48); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(47); END_STATE(); case 26: - if (eof) ADVANCE(29); - if (lookahead == '!') ADVANCE(11); - if (lookahead == '"') ADVANCE(6); - if (lookahead == '#') ADVANCE(20); - if (lookahead == '%') ADVANCE(67); - if (lookahead == '&') ADVANCE(8); - if (lookahead == '\'') ADVANCE(9); - if (lookahead == '(') ADVANCE(35); - if (lookahead == ')') ADVANCE(36); - if (lookahead == '*') ADVANCE(65); - if (lookahead == '+') ADVANCE(59); - if (lookahead == ',') ADVANCE(37); - if (lookahead == '-') ADVANCE(63); - if (lookahead == '.') ADVANCE(10); - if (lookahead == '/') ADVANCE(66); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49); - if (lookahead == ':') ADVANCE(57); - if (lookahead == ';') ADVANCE(34); - if (lookahead == '<') ADVANCE(73); - if (lookahead == '=') ADVANCE(12); - if (lookahead == '>') ADVANCE(72); - if (lookahead == '[') ADVANCE(52); - if (lookahead == ']') ADVANCE(53); - if (lookahead == '`') ADVANCE(14); - if (lookahead == 'a') ADVANCE(45); - if (lookahead == '{') ADVANCE(32); - if (lookahead == '|') ADVANCE(82); - if (lookahead == '}') ADVANCE(33); + if (eof) ADVANCE(28); + if (lookahead == '"') ADVANCE(5); + if (lookahead == '#') ADVANCE(19); + if (lookahead == '\'') ADVANCE(8); + if (lookahead == '(') ADVANCE(34); + if (lookahead == ',') ADVANCE(36); + if (lookahead == '-') ADVANCE(21); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48); + if (lookahead == ';') ADVANCE(33); + if (lookahead == '=') ADVANCE(54); + if (lookahead == '[') ADVANCE(51); + if (lookahead == '`') ADVANCE(13); + if (lookahead == 'a') ADVANCE(44); + if (lookahead == '{') ADVANCE(31); + if (lookahead == '|') ADVANCE(78); + if (lookahead == '}') ADVANCE(32); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(26) if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(48); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(47); END_STATE(); case 27: - if (eof) ADVANCE(29); - if (lookahead == '"') ADVANCE(6); - if (lookahead == '#') ADVANCE(20); - if (lookahead == '\'') ADVANCE(9); - if (lookahead == '(') ADVANCE(35); - if (lookahead == ',') ADVANCE(37); - if (lookahead == '-') ADVANCE(22); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49); - if (lookahead == ';') ADVANCE(34); - if (lookahead == '=') ADVANCE(56); - if (lookahead == '[') ADVANCE(52); - if (lookahead == '`') ADVANCE(14); - if (lookahead == 'a') ADVANCE(45); - if (lookahead == '{') ADVANCE(32); - if (lookahead == '|') ADVANCE(81); - if (lookahead == '}') ADVANCE(33); + if (eof) ADVANCE(28); + if (lookahead == '"') ADVANCE(5); + if (lookahead == '#') ADVANCE(19); + if (lookahead == '\'') ADVANCE(8); + if (lookahead == '(') ADVANCE(34); + if (lookahead == ',') ADVANCE(36); + if (lookahead == '-') ADVANCE(21); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48); + if (lookahead == ';') ADVANCE(33); + if (lookahead == '=') ADVANCE(12); + if (lookahead == '[') ADVANCE(51); + if (lookahead == '`') ADVANCE(13); + if (lookahead == 'a') ADVANCE(44); + if (lookahead == 'e') ADVANCE(42); + if (lookahead == '{') ADVANCE(31); + if (lookahead == '|') ADVANCE(78); + if (lookahead == '}') ADVANCE(32); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(27) if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(48); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(47); END_STATE(); case 28: - if (eof) ADVANCE(29); - if (lookahead == '"') ADVANCE(6); - if (lookahead == '#') ADVANCE(20); - if (lookahead == '\'') ADVANCE(9); - if (lookahead == '(') ADVANCE(35); - if (lookahead == ',') ADVANCE(37); - if (lookahead == '-') ADVANCE(22); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49); - if (lookahead == ';') ADVANCE(34); - if (lookahead == '=') ADVANCE(13); - if (lookahead == '[') ADVANCE(52); - if (lookahead == '`') ADVANCE(14); - if (lookahead == 'a') ADVANCE(45); - if (lookahead == 'e') ADVANCE(43); - if (lookahead == '{') ADVANCE(32); - if (lookahead == '|') ADVANCE(81); - if (lookahead == '}') ADVANCE(33); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(28) - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(48); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 29: - ACCEPT_TOKEN(ts_builtin_sym_end); + ACCEPT_TOKEN(sym__comment); END_STATE(); case 30: ACCEPT_TOKEN(sym__comment); + if (lookahead == '|') ADVANCE(30); + if (lookahead == '\n' || + lookahead == '#') ADVANCE(29); + if (lookahead != 0) ADVANCE(19); END_STATE(); case 31: - ACCEPT_TOKEN(sym__comment); - if (lookahead == '|') ADVANCE(31); - if (lookahead == '\n' || - lookahead == '#') ADVANCE(30); - if (lookahead != 0) ADVANCE(20); - END_STATE(); - case 32: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 33: + case 32: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 34: + case 33: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 35: + case 34: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 36: + case 35: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 37: + case 36: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); + case 37: + ACCEPT_TOKEN(sym_identifier); + END_STATE(); case 38: ACCEPT_TOKEN(sym_identifier); + if (lookahead == ' ') ADVANCE(16); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(37); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(47); END_STATE(); case 39: ACCEPT_TOKEN(sym_identifier); - if (lookahead == ' ') ADVANCE(17); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38); + if (lookahead == ' ') ADVANCE(14); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(37); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(47); END_STATE(); case 40: ACCEPT_TOKEN(sym_identifier); - if (lookahead == ' ') ADVANCE(15); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38); + if (lookahead == 'c') ADVANCE(39); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(37); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(47); END_STATE(); case 41: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(40); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38); + if (lookahead == 'e') ADVANCE(38); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(37); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(47); END_STATE(); case 42: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(39); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38); + if (lookahead == 'l') ADVANCE(45); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(37); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(47); END_STATE(); case 43: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(46); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38); + if (lookahead == 'n') ADVANCE(40); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(37); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(47); END_STATE(); case 44: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(41); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38); + if (lookahead == 's') ADVANCE(46); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(37); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(47); END_STATE(); case 45: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(47); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38); + if (lookahead == 's') ADVANCE(41); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(37); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(47); END_STATE(); case 46: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(42); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38); + if (lookahead == 'y') ADVANCE(43); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(37); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(47); END_STATE(); case 47: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'y') ADVANCE(44); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(37); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(47); END_STATE(); case 48: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); + ACCEPT_TOKEN(sym_integer); + if (lookahead == '.') ADVANCE(22); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48); END_STATE(); case 49: - ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(23); + ACCEPT_TOKEN(sym_float); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49); END_STATE(); case 50: - ACCEPT_TOKEN(sym_float); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(50); - END_STATE(); - case 51: ACCEPT_TOKEN(sym_string); END_STATE(); - case 52: + case 51: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 53: + case 52: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); + case 53: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(65); + if (lookahead == '>') ADVANCE(76); + END_STATE(); case 54: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(68); + if (lookahead == '>') ADVANCE(76); END_STATE(); case 55: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(68); - if (lookahead == '>') ADVANCE(79); - END_STATE(); - case 56: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '>') ADVANCE(79); - END_STATE(); - case 57: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 58: + case 56: ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); - case 59: + case 57: ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); - case 60: + case 58: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(76); + if (lookahead == '=') ADVANCE(73); + END_STATE(); + case 59: + ACCEPT_TOKEN(anon_sym_DASH); + END_STATE(); + case 60: + ACCEPT_TOKEN(anon_sym_DASH); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48); END_STATE(); case 61: ACCEPT_TOKEN(anon_sym_DASH); - END_STATE(); - case 62: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(77); - END_STATE(); - case 63: - ACCEPT_TOKEN(anon_sym_DASH); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49); - END_STATE(); - case 64: - ACCEPT_TOKEN(anon_sym_DASH); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49); - if (lookahead == '=') ADVANCE(77); - END_STATE(); - case 65: - ACCEPT_TOKEN(anon_sym_STAR); - END_STATE(); - case 66: - ACCEPT_TOKEN(anon_sym_SLASH); - END_STATE(); - case 67: - ACCEPT_TOKEN(anon_sym_PERCENT); - END_STATE(); - case 68: - ACCEPT_TOKEN(anon_sym_EQ_EQ); - END_STATE(); - case 69: - ACCEPT_TOKEN(anon_sym_BANG_EQ); - END_STATE(); - case 70: - ACCEPT_TOKEN(anon_sym_AMP_AMP); - END_STATE(); - case 71: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); - END_STATE(); - case 72: - ACCEPT_TOKEN(anon_sym_GT); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48); if (lookahead == '=') ADVANCE(74); END_STATE(); - case 73: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(75); + case 62: + ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 74: + case 63: + ACCEPT_TOKEN(anon_sym_SLASH); + END_STATE(); + case 64: + ACCEPT_TOKEN(anon_sym_PERCENT); + END_STATE(); + case 65: + ACCEPT_TOKEN(anon_sym_EQ_EQ); + END_STATE(); + case 66: + ACCEPT_TOKEN(anon_sym_BANG_EQ); + END_STATE(); + case 67: + ACCEPT_TOKEN(anon_sym_AMP_AMP); + END_STATE(); + case 68: + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + END_STATE(); + case 69: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(71); + END_STATE(); + case 70: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '=') ADVANCE(72); + END_STATE(); + case 71: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 75: + case 72: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 76: + case 73: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 77: + case 74: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 78: + case 75: ACCEPT_TOKEN(anon_sym_elseif); END_STATE(); - case 79: + case 76: ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); - case 80: + case 77: ACCEPT_TOKEN(anon_sym_asyncfor); END_STATE(); - case 81: + case 78: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 82: + case 79: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(71); + if (lookahead == '|') ADVANCE(68); END_STATE(); default: return false; @@ -4480,230 +3643,230 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [1] = {.lex_state = 27}, - [2] = {.lex_state = 0}, - [3] = {.lex_state = 0}, + [1] = {.lex_state = 26}, + [2] = {.lex_state = 24}, + [3] = {.lex_state = 24}, [4] = {.lex_state = 24}, - [5] = {.lex_state = 0}, - [6] = {.lex_state = 25}, - [7] = {.lex_state = 24}, - [8] = {.lex_state = 0}, - [9] = {.lex_state = 0}, - [10] = {.lex_state = 0}, + [5] = {.lex_state = 25}, + [6] = {.lex_state = 24}, + [7] = {.lex_state = 25}, + [8] = {.lex_state = 24}, + [9] = {.lex_state = 24}, + [10] = {.lex_state = 24}, [11] = {.lex_state = 24}, - [12] = {.lex_state = 0}, - [13] = {.lex_state = 0}, - [14] = {.lex_state = 25}, + [12] = {.lex_state = 25}, + [13] = {.lex_state = 24}, + [14] = {.lex_state = 24}, [15] = {.lex_state = 24}, - [16] = {.lex_state = 0}, - [17] = {.lex_state = 24}, + [16] = {.lex_state = 24}, + [17] = {.lex_state = 25}, [18] = {.lex_state = 25}, - [19] = {.lex_state = 26}, - [20] = {.lex_state = 24}, - [21] = {.lex_state = 0}, + [19] = {.lex_state = 25}, + [20] = {.lex_state = 25}, + [21] = {.lex_state = 25}, [22] = {.lex_state = 25}, - [23] = {.lex_state = 0}, - [24] = {.lex_state = 24}, + [23] = {.lex_state = 25}, + [24] = {.lex_state = 25}, [25] = {.lex_state = 24}, - [26] = {.lex_state = 26}, - [27] = {.lex_state = 0}, + [26] = {.lex_state = 24}, + [27] = {.lex_state = 25}, [28] = {.lex_state = 25}, [29] = {.lex_state = 25}, [30] = {.lex_state = 25}, - [31] = {.lex_state = 26}, - [32] = {.lex_state = 24}, + [31] = {.lex_state = 25}, + [32] = {.lex_state = 25}, [33] = {.lex_state = 25}, [34] = {.lex_state = 25}, - [35] = {.lex_state = 24}, + [35] = {.lex_state = 25}, [36] = {.lex_state = 25}, - [37] = {.lex_state = 26}, + [37] = {.lex_state = 25}, [38] = {.lex_state = 25}, - [39] = {.lex_state = 26}, - [40] = {.lex_state = 26}, + [39] = {.lex_state = 25}, + [40] = {.lex_state = 25}, [41] = {.lex_state = 25}, - [42] = {.lex_state = 24}, - [43] = {.lex_state = 24}, - [44] = {.lex_state = 24}, - [45] = {.lex_state = 24}, - [46] = {.lex_state = 26}, - [47] = {.lex_state = 26}, - [48] = {.lex_state = 24}, - [49] = {.lex_state = 24}, - [50] = {.lex_state = 26}, + [42] = {.lex_state = 25}, + [43] = {.lex_state = 25}, + [44] = {.lex_state = 25}, + [45] = {.lex_state = 25}, + [46] = {.lex_state = 25}, + [47] = {.lex_state = 25}, + [48] = {.lex_state = 25}, + [49] = {.lex_state = 25}, + [50] = {.lex_state = 25}, [51] = {.lex_state = 25}, - [52] = {.lex_state = 26}, - [53] = {.lex_state = 26}, - [54] = {.lex_state = 26}, + [52] = {.lex_state = 25}, + [53] = {.lex_state = 25}, + [54] = {.lex_state = 25}, [55] = {.lex_state = 25}, - [56] = {.lex_state = 26}, - [57] = {.lex_state = 26}, - [58] = {.lex_state = 26}, - [59] = {.lex_state = 26}, - [60] = {.lex_state = 26}, - [61] = {.lex_state = 26}, - [62] = {.lex_state = 26}, - [63] = {.lex_state = 26}, - [64] = {.lex_state = 26}, - [65] = {.lex_state = 26}, - [66] = {.lex_state = 26}, - [67] = {.lex_state = 26}, - [68] = {.lex_state = 26}, - [69] = {.lex_state = 26}, - [70] = {.lex_state = 26}, - [71] = {.lex_state = 26}, - [72] = {.lex_state = 26}, - [73] = {.lex_state = 26}, - [74] = {.lex_state = 26}, - [75] = {.lex_state = 26}, - [76] = {.lex_state = 26}, - [77] = {.lex_state = 26}, - [78] = {.lex_state = 26}, - [79] = {.lex_state = 26}, - [80] = {.lex_state = 26}, - [81] = {.lex_state = 26}, - [82] = {.lex_state = 26}, - [83] = {.lex_state = 26}, - [84] = {.lex_state = 26}, - [85] = {.lex_state = 26}, - [86] = {.lex_state = 26}, - [87] = {.lex_state = 26}, - [88] = {.lex_state = 26}, - [89] = {.lex_state = 26}, - [90] = {.lex_state = 26}, - [91] = {.lex_state = 26}, - [92] = {.lex_state = 26}, - [93] = {.lex_state = 26}, - [94] = {.lex_state = 26}, - [95] = {.lex_state = 26}, - [96] = {.lex_state = 26}, - [97] = {.lex_state = 26}, - [98] = {.lex_state = 26}, - [99] = {.lex_state = 26}, - [100] = {.lex_state = 26}, - [101] = {.lex_state = 26}, - [102] = {.lex_state = 26}, - [103] = {.lex_state = 26}, - [104] = {.lex_state = 26}, - [105] = {.lex_state = 26}, - [106] = {.lex_state = 26}, - [107] = {.lex_state = 26}, - [108] = {.lex_state = 26}, - [109] = {.lex_state = 26}, - [110] = {.lex_state = 26}, - [111] = {.lex_state = 26}, - [112] = {.lex_state = 26}, - [113] = {.lex_state = 26}, - [114] = {.lex_state = 26}, - [115] = {.lex_state = 26}, - [116] = {.lex_state = 26}, - [117] = {.lex_state = 26}, - [118] = {.lex_state = 26}, - [119] = {.lex_state = 26}, - [120] = {.lex_state = 26}, - [121] = {.lex_state = 26}, - [122] = {.lex_state = 26}, - [123] = {.lex_state = 26}, - [124] = {.lex_state = 26}, - [125] = {.lex_state = 26}, - [126] = {.lex_state = 26}, - [127] = {.lex_state = 26}, - [128] = {.lex_state = 26}, - [129] = {.lex_state = 26}, - [130] = {.lex_state = 26}, - [131] = {.lex_state = 26}, - [132] = {.lex_state = 26}, - [133] = {.lex_state = 26}, - [134] = {.lex_state = 26}, - [135] = {.lex_state = 26}, - [136] = {.lex_state = 26}, - [137] = {.lex_state = 26}, - [138] = {.lex_state = 26}, - [139] = {.lex_state = 26}, - [140] = {.lex_state = 26}, - [141] = {.lex_state = 26}, - [142] = {.lex_state = 26}, - [143] = {.lex_state = 26}, - [144] = {.lex_state = 26}, - [145] = {.lex_state = 26}, - [146] = {.lex_state = 26}, - [147] = {.lex_state = 26}, - [148] = {.lex_state = 26}, - [149] = {.lex_state = 26}, - [150] = {.lex_state = 26}, - [151] = {.lex_state = 26}, - [152] = {.lex_state = 26}, - [153] = {.lex_state = 26}, - [154] = {.lex_state = 26}, - [155] = {.lex_state = 26}, - [156] = {.lex_state = 26}, - [157] = {.lex_state = 26}, - [158] = {.lex_state = 26}, - [159] = {.lex_state = 26}, - [160] = {.lex_state = 26}, - [161] = {.lex_state = 26}, - [162] = {.lex_state = 26}, - [163] = {.lex_state = 26}, - [164] = {.lex_state = 26}, - [165] = {.lex_state = 26}, - [166] = {.lex_state = 26}, - [167] = {.lex_state = 26}, - [168] = {.lex_state = 26}, - [169] = {.lex_state = 26}, - [170] = {.lex_state = 26}, - [171] = {.lex_state = 26}, - [172] = {.lex_state = 26}, - [173] = {.lex_state = 26}, - [174] = {.lex_state = 26}, - [175] = {.lex_state = 26}, - [176] = {.lex_state = 26}, - [177] = {.lex_state = 26}, - [178] = {.lex_state = 26}, - [179] = {.lex_state = 26}, - [180] = {.lex_state = 26}, - [181] = {.lex_state = 26}, - [182] = {.lex_state = 26}, - [183] = {.lex_state = 26}, - [184] = {.lex_state = 26}, - [185] = {.lex_state = 26}, - [186] = {.lex_state = 26}, - [187] = {.lex_state = 26}, - [188] = {.lex_state = 26}, - [189] = {.lex_state = 26}, - [190] = {.lex_state = 26}, - [191] = {.lex_state = 26}, - [192] = {.lex_state = 26}, - [193] = {.lex_state = 26}, - [194] = {.lex_state = 26}, - [195] = {.lex_state = 26}, - [196] = {.lex_state = 26}, - [197] = {.lex_state = 26}, - [198] = {.lex_state = 26}, - [199] = {.lex_state = 26}, - [200] = {.lex_state = 26}, - [201] = {.lex_state = 26}, - [202] = {.lex_state = 26}, - [203] = {.lex_state = 26}, - [204] = {.lex_state = 26}, - [205] = {.lex_state = 26}, - [206] = {.lex_state = 26}, - [207] = {.lex_state = 26}, - [208] = {.lex_state = 26}, - [209] = {.lex_state = 26}, - [210] = {.lex_state = 26}, - [211] = {.lex_state = 26}, - [212] = {.lex_state = 26}, - [213] = {.lex_state = 26}, - [214] = {.lex_state = 26}, - [215] = {.lex_state = 26}, - [216] = {.lex_state = 26}, - [217] = {.lex_state = 26}, - [218] = {.lex_state = 26}, - [219] = {.lex_state = 26}, - [220] = {.lex_state = 26}, + [56] = {.lex_state = 25}, + [57] = {.lex_state = 25}, + [58] = {.lex_state = 25}, + [59] = {.lex_state = 25}, + [60] = {.lex_state = 25}, + [61] = {.lex_state = 25}, + [62] = {.lex_state = 25}, + [63] = {.lex_state = 25}, + [64] = {.lex_state = 25}, + [65] = {.lex_state = 25}, + [66] = {.lex_state = 25}, + [67] = {.lex_state = 25}, + [68] = {.lex_state = 25}, + [69] = {.lex_state = 25}, + [70] = {.lex_state = 25}, + [71] = {.lex_state = 25}, + [72] = {.lex_state = 25}, + [73] = {.lex_state = 25}, + [74] = {.lex_state = 25}, + [75] = {.lex_state = 25}, + [76] = {.lex_state = 25}, + [77] = {.lex_state = 25}, + [78] = {.lex_state = 25}, + [79] = {.lex_state = 25}, + [80] = {.lex_state = 25}, + [81] = {.lex_state = 25}, + [82] = {.lex_state = 25}, + [83] = {.lex_state = 25}, + [84] = {.lex_state = 25}, + [85] = {.lex_state = 25}, + [86] = {.lex_state = 25}, + [87] = {.lex_state = 25}, + [88] = {.lex_state = 25}, + [89] = {.lex_state = 25}, + [90] = {.lex_state = 25}, + [91] = {.lex_state = 25}, + [92] = {.lex_state = 25}, + [93] = {.lex_state = 25}, + [94] = {.lex_state = 25}, + [95] = {.lex_state = 25}, + [96] = {.lex_state = 25}, + [97] = {.lex_state = 25}, + [98] = {.lex_state = 25}, + [99] = {.lex_state = 25}, + [100] = {.lex_state = 25}, + [101] = {.lex_state = 25}, + [102] = {.lex_state = 25}, + [103] = {.lex_state = 25}, + [104] = {.lex_state = 25}, + [105] = {.lex_state = 25}, + [106] = {.lex_state = 25}, + [107] = {.lex_state = 25}, + [108] = {.lex_state = 25}, + [109] = {.lex_state = 25}, + [110] = {.lex_state = 25}, + [111] = {.lex_state = 25}, + [112] = {.lex_state = 25}, + [113] = {.lex_state = 25}, + [114] = {.lex_state = 25}, + [115] = {.lex_state = 25}, + [116] = {.lex_state = 25}, + [117] = {.lex_state = 25}, + [118] = {.lex_state = 25}, + [119] = {.lex_state = 25}, + [120] = {.lex_state = 25}, + [121] = {.lex_state = 25}, + [122] = {.lex_state = 25}, + [123] = {.lex_state = 25}, + [124] = {.lex_state = 25}, + [125] = {.lex_state = 25}, + [126] = {.lex_state = 25}, + [127] = {.lex_state = 25}, + [128] = {.lex_state = 25}, + [129] = {.lex_state = 25}, + [130] = {.lex_state = 25}, + [131] = {.lex_state = 25}, + [132] = {.lex_state = 25}, + [133] = {.lex_state = 25}, + [134] = {.lex_state = 25}, + [135] = {.lex_state = 25}, + [136] = {.lex_state = 25}, + [137] = {.lex_state = 25}, + [138] = {.lex_state = 25}, + [139] = {.lex_state = 25}, + [140] = {.lex_state = 25}, + [141] = {.lex_state = 25}, + [142] = {.lex_state = 25}, + [143] = {.lex_state = 25}, + [144] = {.lex_state = 25}, + [145] = {.lex_state = 25}, + [146] = {.lex_state = 25}, + [147] = {.lex_state = 25}, + [148] = {.lex_state = 25}, + [149] = {.lex_state = 25}, + [150] = {.lex_state = 25}, + [151] = {.lex_state = 25}, + [152] = {.lex_state = 25}, + [153] = {.lex_state = 25}, + [154] = {.lex_state = 25}, + [155] = {.lex_state = 25}, + [156] = {.lex_state = 25}, + [157] = {.lex_state = 25}, + [158] = {.lex_state = 25}, + [159] = {.lex_state = 25}, + [160] = {.lex_state = 25}, + [161] = {.lex_state = 0}, + [162] = {.lex_state = 0}, + [163] = {.lex_state = 23}, + [164] = {.lex_state = 0}, + [165] = {.lex_state = 23}, + [166] = {.lex_state = 0}, + [167] = {.lex_state = 24}, + [168] = {.lex_state = 0}, + [169] = {.lex_state = 24}, + [170] = {.lex_state = 24}, + [171] = {.lex_state = 0}, + [172] = {.lex_state = 24}, + [173] = {.lex_state = 24}, + [174] = {.lex_state = 23}, + [175] = {.lex_state = 24}, + [176] = {.lex_state = 24}, + [177] = {.lex_state = 24}, + [178] = {.lex_state = 24}, + [179] = {.lex_state = 23}, + [180] = {.lex_state = 24}, + [181] = {.lex_state = 24}, + [182] = {.lex_state = 24}, + [183] = {.lex_state = 25}, + [184] = {.lex_state = 25}, + [185] = {.lex_state = 23}, + [186] = {.lex_state = 24}, + [187] = {.lex_state = 24}, + [188] = {.lex_state = 24}, + [189] = {.lex_state = 25}, + [190] = {.lex_state = 24}, + [191] = {.lex_state = 24}, + [192] = {.lex_state = 23}, + [193] = {.lex_state = 25}, + [194] = {.lex_state = 25}, + [195] = {.lex_state = 24}, + [196] = {.lex_state = 25}, + [197] = {.lex_state = 25}, + [198] = {.lex_state = 24}, + [199] = {.lex_state = 27}, + [200] = {.lex_state = 27}, + [201] = {.lex_state = 24}, + [202] = {.lex_state = 24}, + [203] = {.lex_state = 24}, + [204] = {.lex_state = 25}, + [205] = {.lex_state = 24}, + [206] = {.lex_state = 25}, + [207] = {.lex_state = 25}, + [208] = {.lex_state = 25}, + [209] = {.lex_state = 27}, + [210] = {.lex_state = 27}, + [211] = {.lex_state = 24}, + [212] = {.lex_state = 27}, + [213] = {.lex_state = 25}, + [214] = {.lex_state = 23}, + [215] = {.lex_state = 25}, + [216] = {.lex_state = 25}, + [217] = {.lex_state = 25}, + [218] = {.lex_state = 25}, + [219] = {.lex_state = 25}, + [220] = {.lex_state = 25}, [221] = {.lex_state = 26}, - [222] = {.lex_state = 26}, - [223] = {.lex_state = 26}, - [224] = {.lex_state = 26}, + [222] = {.lex_state = 25}, + [223] = {.lex_state = 25}, + [224] = {.lex_state = 25}, [225] = {.lex_state = 26}, [226] = {.lex_state = 26}, [227] = {.lex_state = 26}, @@ -4711,9 +3874,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [229] = {.lex_state = 26}, [230] = {.lex_state = 26}, [231] = {.lex_state = 26}, - [232] = {.lex_state = 26}, - [233] = {.lex_state = 26}, - [234] = {.lex_state = 26}, + [232] = {.lex_state = 25}, + [233] = {.lex_state = 25}, + [234] = {.lex_state = 25}, [235] = {.lex_state = 26}, [236] = {.lex_state = 26}, [237] = {.lex_state = 26}, @@ -4740,1848 +3903,1046 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [258] = {.lex_state = 26}, [259] = {.lex_state = 26}, [260] = {.lex_state = 26}, - [261] = {.lex_state = 0}, - [262] = {.lex_state = 0}, - [263] = {.lex_state = 0}, - [264] = {.lex_state = 0}, - [265] = {.lex_state = 0}, - [266] = {.lex_state = 0}, - [267] = {.lex_state = 0}, - [268] = {.lex_state = 0}, - [269] = {.lex_state = 0}, - [270] = {.lex_state = 0}, - [271] = {.lex_state = 0}, - [272] = {.lex_state = 0}, - [273] = {.lex_state = 24}, - [274] = {.lex_state = 0}, - [275] = {.lex_state = 0}, - [276] = {.lex_state = 0}, - [277] = {.lex_state = 24}, - [278] = {.lex_state = 24}, - [279] = {.lex_state = 0}, - [280] = {.lex_state = 24}, - [281] = {.lex_state = 0}, - [282] = {.lex_state = 0}, - [283] = {.lex_state = 0}, - [284] = {.lex_state = 24}, - [285] = {.lex_state = 24}, - [286] = {.lex_state = 0}, - [287] = {.lex_state = 24}, - [288] = {.lex_state = 24}, - [289] = {.lex_state = 0}, - [290] = {.lex_state = 0}, - [291] = {.lex_state = 25}, - [292] = {.lex_state = 0}, - [293] = {.lex_state = 25}, - [294] = {.lex_state = 24}, - [295] = {.lex_state = 25}, - [296] = {.lex_state = 0}, - [297] = {.lex_state = 0}, - [298] = {.lex_state = 0}, - [299] = {.lex_state = 0}, - [300] = {.lex_state = 24}, - [301] = {.lex_state = 25}, - [302] = {.lex_state = 25}, - [303] = {.lex_state = 0}, - [304] = {.lex_state = 24}, - [305] = {.lex_state = 24}, - [306] = {.lex_state = 24}, - [307] = {.lex_state = 24}, - [308] = {.lex_state = 25}, - [309] = {.lex_state = 0}, - [310] = {.lex_state = 0}, - [311] = {.lex_state = 24}, - [312] = {.lex_state = 25}, - [313] = {.lex_state = 24}, - [314] = {.lex_state = 25}, - [315] = {.lex_state = 25}, - [316] = {.lex_state = 25}, - [317] = {.lex_state = 25}, - [318] = {.lex_state = 24}, - [319] = {.lex_state = 25}, - [320] = {.lex_state = 24}, - [321] = {.lex_state = 24}, - [322] = {.lex_state = 24}, - [323] = {.lex_state = 24}, - [324] = {.lex_state = 24}, - [325] = {.lex_state = 24}, - [326] = {.lex_state = 25}, - [327] = {.lex_state = 24}, - [328] = {.lex_state = 24}, - [329] = {.lex_state = 25}, - [330] = {.lex_state = 24}, - [331] = {.lex_state = 24}, - [332] = {.lex_state = 25}, - [333] = {.lex_state = 25}, + [261] = {.lex_state = 26}, + [262] = {.lex_state = 26}, + [263] = {.lex_state = 26}, + [264] = {.lex_state = 26}, + [265] = {.lex_state = 26}, + [266] = {.lex_state = 26}, + [267] = {.lex_state = 26}, + [268] = {.lex_state = 26}, + [269] = {.lex_state = 26}, + [270] = {.lex_state = 26}, + [271] = {.lex_state = 26}, + [272] = {.lex_state = 26}, + [273] = {.lex_state = 26}, + [274] = {.lex_state = 26}, + [275] = {.lex_state = 26}, + [276] = {.lex_state = 26}, + [277] = {.lex_state = 26}, + [278] = {.lex_state = 26}, + [279] = {.lex_state = 26}, + [280] = {.lex_state = 26}, + [281] = {.lex_state = 26}, + [282] = {.lex_state = 26}, + [283] = {.lex_state = 26}, + [284] = {.lex_state = 26}, + [285] = {.lex_state = 26}, + [286] = {.lex_state = 26}, + [287] = {.lex_state = 26}, + [288] = {.lex_state = 26}, + [289] = {.lex_state = 26}, + [290] = {.lex_state = 26}, + [291] = {.lex_state = 26}, + [292] = {.lex_state = 26}, + [293] = {.lex_state = 26}, + [294] = {.lex_state = 26}, + [295] = {.lex_state = 26}, + [296] = {.lex_state = 26}, + [297] = {.lex_state = 26}, + [298] = {.lex_state = 26}, + [299] = {.lex_state = 26}, + [300] = {.lex_state = 26}, + [301] = {.lex_state = 26}, + [302] = {.lex_state = 26}, + [303] = {.lex_state = 26}, + [304] = {.lex_state = 26}, + [305] = {.lex_state = 26}, + [306] = {.lex_state = 26}, + [307] = {.lex_state = 26}, + [308] = {.lex_state = 26}, + [309] = {.lex_state = 26}, + [310] = {.lex_state = 26}, + [311] = {.lex_state = 26}, + [312] = {.lex_state = 26}, + [313] = {.lex_state = 26}, + [314] = {.lex_state = 26}, + [315] = {.lex_state = 26}, + [316] = {.lex_state = 26}, + [317] = {.lex_state = 26}, + [318] = {.lex_state = 26}, + [319] = {.lex_state = 26}, + [320] = {.lex_state = 26}, + [321] = {.lex_state = 26}, + [322] = {.lex_state = 26}, + [323] = {.lex_state = 26}, + [324] = {.lex_state = 26}, + [325] = {.lex_state = 26}, + [326] = {.lex_state = 26}, + [327] = {.lex_state = 26}, + [328] = {.lex_state = 26}, + [329] = {.lex_state = 26}, + [330] = {.lex_state = 26}, + [331] = {.lex_state = 26}, + [332] = {.lex_state = 26}, + [333] = {.lex_state = 26}, [334] = {.lex_state = 26}, - [335] = {.lex_state = 24}, + [335] = {.lex_state = 26}, [336] = {.lex_state = 26}, [337] = {.lex_state = 26}, [338] = {.lex_state = 26}, [339] = {.lex_state = 26}, - [340] = {.lex_state = 24}, - [341] = {.lex_state = 25}, + [340] = {.lex_state = 26}, + [341] = {.lex_state = 26}, [342] = {.lex_state = 26}, - [343] = {.lex_state = 24}, - [344] = {.lex_state = 25}, - [345] = {.lex_state = 25}, - [346] = {.lex_state = 26}, - [347] = {.lex_state = 26}, - [348] = {.lex_state = 28}, + [343] = {.lex_state = 26}, + [344] = {.lex_state = 26}, + [345] = {.lex_state = 24}, + [346] = {.lex_state = 24}, + [347] = {.lex_state = 24}, + [348] = {.lex_state = 24}, [349] = {.lex_state = 24}, - [350] = {.lex_state = 25}, - [351] = {.lex_state = 25}, - [352] = {.lex_state = 28}, - [353] = {.lex_state = 26}, - [354] = {.lex_state = 28}, - [355] = {.lex_state = 25}, - [356] = {.lex_state = 25}, - [357] = {.lex_state = 25}, - [358] = {.lex_state = 28}, - [359] = {.lex_state = 28}, - [360] = {.lex_state = 26}, - [361] = {.lex_state = 26}, - [362] = {.lex_state = 26}, - [363] = {.lex_state = 26}, - [364] = {.lex_state = 26}, - [365] = {.lex_state = 26}, - [366] = {.lex_state = 26}, - [367] = {.lex_state = 26}, - [368] = {.lex_state = 26}, - [369] = {.lex_state = 26}, - [370] = {.lex_state = 27}, - [371] = {.lex_state = 27}, - [372] = {.lex_state = 26}, - [373] = {.lex_state = 26}, - [374] = {.lex_state = 27}, - [375] = {.lex_state = 26}, - [376] = {.lex_state = 27}, - [377] = {.lex_state = 27}, - [378] = {.lex_state = 27}, - [379] = {.lex_state = 26}, - [380] = {.lex_state = 26}, - [381] = {.lex_state = 27}, - [382] = {.lex_state = 27}, - [383] = {.lex_state = 27}, - [384] = {.lex_state = 27}, - [385] = {.lex_state = 27}, - [386] = {.lex_state = 27}, - [387] = {.lex_state = 27}, - [388] = {.lex_state = 27}, - [389] = {.lex_state = 27}, - [390] = {.lex_state = 27}, - [391] = {.lex_state = 27}, - [392] = {.lex_state = 27}, - [393] = {.lex_state = 27}, - [394] = {.lex_state = 27}, - [395] = {.lex_state = 27}, - [396] = {.lex_state = 27}, - [397] = {.lex_state = 27}, - [398] = {.lex_state = 27}, - [399] = {.lex_state = 27}, - [400] = {.lex_state = 27}, - [401] = {.lex_state = 27}, - [402] = {.lex_state = 27}, - [403] = {.lex_state = 27}, - [404] = {.lex_state = 27}, - [405] = {.lex_state = 27}, - [406] = {.lex_state = 27}, - [407] = {.lex_state = 27}, - [408] = {.lex_state = 27}, - [409] = {.lex_state = 27}, - [410] = {.lex_state = 27}, - [411] = {.lex_state = 27}, - [412] = {.lex_state = 27}, - [413] = {.lex_state = 27}, - [414] = {.lex_state = 27}, - [415] = {.lex_state = 27}, - [416] = {.lex_state = 27}, - [417] = {.lex_state = 27}, - [418] = {.lex_state = 27}, - [419] = {.lex_state = 27}, - [420] = {.lex_state = 27}, - [421] = {.lex_state = 27}, - [422] = {.lex_state = 27}, - [423] = {.lex_state = 27}, - [424] = {.lex_state = 27}, - [425] = {.lex_state = 27}, - [426] = {.lex_state = 27}, - [427] = {.lex_state = 27}, - [428] = {.lex_state = 27}, - [429] = {.lex_state = 27}, - [430] = {.lex_state = 27}, - [431] = {.lex_state = 27}, - [432] = {.lex_state = 27}, - [433] = {.lex_state = 27}, - [434] = {.lex_state = 27}, - [435] = {.lex_state = 27}, - [436] = {.lex_state = 27}, - [437] = {.lex_state = 27}, - [438] = {.lex_state = 27}, - [439] = {.lex_state = 27}, - [440] = {.lex_state = 27}, + [350] = {.lex_state = 24}, + [351] = {.lex_state = 24}, + [352] = {.lex_state = 24}, + [353] = {.lex_state = 24}, + [354] = {.lex_state = 24}, + [355] = {.lex_state = 24}, + [356] = {.lex_state = 2}, + [357] = {.lex_state = 24}, + [358] = {.lex_state = 24}, + [359] = {.lex_state = 24}, + [360] = {.lex_state = 24}, + [361] = {.lex_state = 24}, + [362] = {.lex_state = 24}, + [363] = {.lex_state = 24}, + [364] = {.lex_state = 24}, + [365] = {.lex_state = 24}, + [366] = {.lex_state = 24}, + [367] = {.lex_state = 24}, + [368] = {.lex_state = 24}, + [369] = {.lex_state = 24}, + [370] = {.lex_state = 24}, + [371] = {.lex_state = 24}, + [372] = {.lex_state = 1}, + [373] = {.lex_state = 24}, + [374] = {.lex_state = 24}, + [375] = {.lex_state = 1}, + [376] = {.lex_state = 1}, + [377] = {.lex_state = 24}, + [378] = {.lex_state = 1}, + [379] = {.lex_state = 24}, + [380] = {.lex_state = 24}, + [381] = {.lex_state = 25}, + [382] = {.lex_state = 24}, + [383] = {.lex_state = 24}, + [384] = {.lex_state = 24}, + [385] = {.lex_state = 24}, + [386] = {.lex_state = 24}, + [387] = {.lex_state = 24}, + [388] = {.lex_state = 24}, + [389] = {.lex_state = 1}, + [390] = {.lex_state = 25}, + [391] = {.lex_state = 24}, + [392] = {.lex_state = 24}, + [393] = {.lex_state = 25}, + [394] = {.lex_state = 24}, + [395] = {.lex_state = 25}, + [396] = {.lex_state = 25}, + [397] = {.lex_state = 24}, + [398] = {.lex_state = 24}, + [399] = {.lex_state = 24}, + [400] = {.lex_state = 24}, + [401] = {.lex_state = 1}, + [402] = {.lex_state = 25}, + [403] = {.lex_state = 24}, + [404] = {.lex_state = 24}, + [405] = {.lex_state = 24}, + [406] = {.lex_state = 24}, + [407] = {.lex_state = 24}, + [408] = {.lex_state = 24}, + [409] = {.lex_state = 24}, + [410] = {.lex_state = 24}, + [411] = {.lex_state = 24}, + [412] = {.lex_state = 24}, + [413] = {.lex_state = 24}, + [414] = {.lex_state = 24}, + [415] = {.lex_state = 24}, + [416] = {.lex_state = 24}, + [417] = {.lex_state = 24}, + [418] = {.lex_state = 24}, + [419] = {.lex_state = 24}, + [420] = {.lex_state = 24}, + [421] = {.lex_state = 24}, + [422] = {.lex_state = 24}, + [423] = {.lex_state = 24}, + [424] = {.lex_state = 24}, + [425] = {.lex_state = 24}, + [426] = {.lex_state = 1}, + [427] = {.lex_state = 24}, + [428] = {.lex_state = 24}, + [429] = {.lex_state = 1}, + [430] = {.lex_state = 24}, + [431] = {.lex_state = 24}, + [432] = {.lex_state = 25}, + [433] = {.lex_state = 24}, + [434] = {.lex_state = 24}, + [435] = {.lex_state = 24}, + [436] = {.lex_state = 24}, + [437] = {.lex_state = 25}, + [438] = {.lex_state = 25}, + [439] = {.lex_state = 24}, + [440] = {.lex_state = 25}, [441] = {.lex_state = 27}, - [442] = {.lex_state = 27}, - [443] = {.lex_state = 27}, - [444] = {.lex_state = 27}, - [445] = {.lex_state = 27}, + [442] = {.lex_state = 25}, + [443] = {.lex_state = 25}, + [444] = {.lex_state = 25}, + [445] = {.lex_state = 25}, [446] = {.lex_state = 27}, - [447] = {.lex_state = 27}, - [448] = {.lex_state = 27}, - [449] = {.lex_state = 27}, - [450] = {.lex_state = 27}, - [451] = {.lex_state = 27}, - [452] = {.lex_state = 27}, - [453] = {.lex_state = 27}, - [454] = {.lex_state = 27}, + [447] = {.lex_state = 25}, + [448] = {.lex_state = 24}, + [449] = {.lex_state = 25}, + [450] = {.lex_state = 24}, + [451] = {.lex_state = 24}, + [452] = {.lex_state = 24}, + [453] = {.lex_state = 1}, + [454] = {.lex_state = 24}, [455] = {.lex_state = 27}, [456] = {.lex_state = 27}, - [457] = {.lex_state = 27}, - [458] = {.lex_state = 27}, - [459] = {.lex_state = 27}, - [460] = {.lex_state = 27}, - [461] = {.lex_state = 27}, - [462] = {.lex_state = 27}, - [463] = {.lex_state = 27}, - [464] = {.lex_state = 27}, - [465] = {.lex_state = 27}, - [466] = {.lex_state = 27}, - [467] = {.lex_state = 27}, - [468] = {.lex_state = 27}, - [469] = {.lex_state = 27}, - [470] = {.lex_state = 27}, - [471] = {.lex_state = 27}, - [472] = {.lex_state = 27}, - [473] = {.lex_state = 27}, - [474] = {.lex_state = 27}, - [475] = {.lex_state = 27}, - [476] = {.lex_state = 27}, - [477] = {.lex_state = 27}, - [478] = {.lex_state = 27}, - [479] = {.lex_state = 27}, - [480] = {.lex_state = 27}, - [481] = {.lex_state = 27}, - [482] = {.lex_state = 27}, - [483] = {.lex_state = 27}, - [484] = {.lex_state = 27}, - [485] = {.lex_state = 27}, - [486] = {.lex_state = 27}, - [487] = {.lex_state = 27}, - [488] = {.lex_state = 27}, - [489] = {.lex_state = 27}, - [490] = {.lex_state = 27}, - [491] = {.lex_state = 27}, - [492] = {.lex_state = 27}, - [493] = {.lex_state = 27}, - [494] = {.lex_state = 27}, - [495] = {.lex_state = 27}, - [496] = {.lex_state = 27}, - [497] = {.lex_state = 27}, - [498] = {.lex_state = 27}, - [499] = {.lex_state = 27}, - [500] = {.lex_state = 27}, - [501] = {.lex_state = 27}, - [502] = {.lex_state = 27}, - [503] = {.lex_state = 27}, - [504] = {.lex_state = 27}, - [505] = {.lex_state = 27}, - [506] = {.lex_state = 27}, - [507] = {.lex_state = 27}, - [508] = {.lex_state = 27}, - [509] = {.lex_state = 27}, - [510] = {.lex_state = 27}, - [511] = {.lex_state = 27}, - [512] = {.lex_state = 27}, - [513] = {.lex_state = 27}, - [514] = {.lex_state = 27}, - [515] = {.lex_state = 27}, - [516] = {.lex_state = 27}, - [517] = {.lex_state = 27}, - [518] = {.lex_state = 27}, - [519] = {.lex_state = 27}, - [520] = {.lex_state = 27}, - [521] = {.lex_state = 27}, - [522] = {.lex_state = 27}, - [523] = {.lex_state = 27}, - [524] = {.lex_state = 27}, - [525] = {.lex_state = 27}, - [526] = {.lex_state = 27}, - [527] = {.lex_state = 27}, - [528] = {.lex_state = 27}, - [529] = {.lex_state = 27}, - [530] = {.lex_state = 27}, - [531] = {.lex_state = 27}, - [532] = {.lex_state = 27}, - [533] = {.lex_state = 27}, - [534] = {.lex_state = 27}, - [535] = {.lex_state = 27}, - [536] = {.lex_state = 27}, - [537] = {.lex_state = 27}, - [538] = {.lex_state = 27}, - [539] = {.lex_state = 27}, - [540] = {.lex_state = 27}, - [541] = {.lex_state = 27}, - [542] = {.lex_state = 27}, - [543] = {.lex_state = 27}, - [544] = {.lex_state = 27}, - [545] = {.lex_state = 27}, - [546] = {.lex_state = 27}, - [547] = {.lex_state = 27}, - [548] = {.lex_state = 27}, - [549] = {.lex_state = 27}, - [550] = {.lex_state = 27}, - [551] = {.lex_state = 27}, - [552] = {.lex_state = 27}, - [553] = {.lex_state = 27}, - [554] = {.lex_state = 27}, - [555] = {.lex_state = 27}, - [556] = {.lex_state = 27}, - [557] = {.lex_state = 0}, - [558] = {.lex_state = 0}, - [559] = {.lex_state = 0}, - [560] = {.lex_state = 0}, - [561] = {.lex_state = 0}, - [562] = {.lex_state = 0}, - [563] = {.lex_state = 0}, - [564] = {.lex_state = 0}, - [565] = {.lex_state = 0}, - [566] = {.lex_state = 0}, - [567] = {.lex_state = 0}, - [568] = {.lex_state = 0}, - [569] = {.lex_state = 0}, - [570] = {.lex_state = 0}, - [571] = {.lex_state = 0}, - [572] = {.lex_state = 0}, - [573] = {.lex_state = 0}, - [574] = {.lex_state = 0}, - [575] = {.lex_state = 0}, - [576] = {.lex_state = 0}, - [577] = {.lex_state = 0}, - [578] = {.lex_state = 0}, - [579] = {.lex_state = 0}, - [580] = {.lex_state = 0}, - [581] = {.lex_state = 0}, - [582] = {.lex_state = 0}, - [583] = {.lex_state = 0}, - [584] = {.lex_state = 0}, - [585] = {.lex_state = 0}, - [586] = {.lex_state = 0}, - [587] = {.lex_state = 0}, - [588] = {.lex_state = 0}, - [589] = {.lex_state = 0}, - [590] = {.lex_state = 24}, - [591] = {.lex_state = 0}, - [592] = {.lex_state = 0}, - [593] = {.lex_state = 0}, - [594] = {.lex_state = 0}, - [595] = {.lex_state = 0}, - [596] = {.lex_state = 0}, - [597] = {.lex_state = 24}, - [598] = {.lex_state = 0}, - [599] = {.lex_state = 0}, - [600] = {.lex_state = 0}, - [601] = {.lex_state = 24}, - [602] = {.lex_state = 0}, - [603] = {.lex_state = 0}, - [604] = {.lex_state = 0}, - [605] = {.lex_state = 0}, - [606] = {.lex_state = 0}, - [607] = {.lex_state = 0}, - [608] = {.lex_state = 0}, - [609] = {.lex_state = 0}, - [610] = {.lex_state = 0}, - [611] = {.lex_state = 0}, - [612] = {.lex_state = 0}, - [613] = {.lex_state = 25}, - [614] = {.lex_state = 0}, - [615] = {.lex_state = 0}, - [616] = {.lex_state = 24}, - [617] = {.lex_state = 0}, - [618] = {.lex_state = 0}, - [619] = {.lex_state = 0}, - [620] = {.lex_state = 0}, - [621] = {.lex_state = 0}, - [622] = {.lex_state = 0}, - [623] = {.lex_state = 0}, - [624] = {.lex_state = 0}, - [625] = {.lex_state = 0}, - [626] = {.lex_state = 0}, - [627] = {.lex_state = 25}, - [628] = {.lex_state = 0}, - [629] = {.lex_state = 0}, - [630] = {.lex_state = 0}, - [631] = {.lex_state = 0}, - [632] = {.lex_state = 0}, - [633] = {.lex_state = 0}, - [634] = {.lex_state = 0}, - [635] = {.lex_state = 24}, - [636] = {.lex_state = 0}, - [637] = {.lex_state = 0}, - [638] = {.lex_state = 0}, - [639] = {.lex_state = 0}, - [640] = {.lex_state = 24}, - [641] = {.lex_state = 0}, - [642] = {.lex_state = 24}, - [643] = {.lex_state = 24}, - [644] = {.lex_state = 24}, - [645] = {.lex_state = 0}, - [646] = {.lex_state = 0}, - [647] = {.lex_state = 25}, - [648] = {.lex_state = 25}, - [649] = {.lex_state = 2}, - [650] = {.lex_state = 25}, - [651] = {.lex_state = 24}, - [652] = {.lex_state = 25}, - [653] = {.lex_state = 25}, - [654] = {.lex_state = 25}, - [655] = {.lex_state = 0}, - [656] = {.lex_state = 0}, - [657] = {.lex_state = 24}, - [658] = {.lex_state = 0}, - [659] = {.lex_state = 0}, - [660] = {.lex_state = 25}, - [661] = {.lex_state = 0}, - [662] = {.lex_state = 2}, - [663] = {.lex_state = 0}, - [664] = {.lex_state = 24}, - [665] = {.lex_state = 25}, - [666] = {.lex_state = 25}, - [667] = {.lex_state = 25}, - [668] = {.lex_state = 25}, - [669] = {.lex_state = 2}, - [670] = {.lex_state = 25}, - [671] = {.lex_state = 24}, - [672] = {.lex_state = 0}, - [673] = {.lex_state = 2}, - [674] = {.lex_state = 2}, - [675] = {.lex_state = 25}, - [676] = {.lex_state = 0}, - [677] = {.lex_state = 25}, - [678] = {.lex_state = 25}, - [679] = {.lex_state = 2}, - [680] = {.lex_state = 24}, - [681] = {.lex_state = 24}, - [682] = {.lex_state = 24}, - [683] = {.lex_state = 24}, - [684] = {.lex_state = 24}, - [685] = {.lex_state = 25}, - [686] = {.lex_state = 24}, - [687] = {.lex_state = 24}, - [688] = {.lex_state = 24}, - [689] = {.lex_state = 24}, - [690] = {.lex_state = 24}, - [691] = {.lex_state = 24}, - [692] = {.lex_state = 2}, - [693] = {.lex_state = 24}, - [694] = {.lex_state = 24}, - [695] = {.lex_state = 2}, - [696] = {.lex_state = 24}, - [697] = {.lex_state = 2}, - [698] = {.lex_state = 2}, - [699] = {.lex_state = 24}, - [700] = {.lex_state = 25}, - [701] = {.lex_state = 24}, - [702] = {.lex_state = 25}, - [703] = {.lex_state = 24}, - [704] = {.lex_state = 24}, - [705] = {.lex_state = 24}, - [706] = {.lex_state = 24}, - [707] = {.lex_state = 1}, - [708] = {.lex_state = 25}, - [709] = {.lex_state = 1}, - [710] = {.lex_state = 25}, - [711] = {.lex_state = 24}, - [712] = {.lex_state = 24}, - [713] = {.lex_state = 24}, - [714] = {.lex_state = 25}, - [715] = {.lex_state = 25}, - [716] = {.lex_state = 1}, - [717] = {.lex_state = 24}, - [718] = {.lex_state = 24}, - [719] = {.lex_state = 24}, - [720] = {.lex_state = 24}, - [721] = {.lex_state = 24}, - [722] = {.lex_state = 24}, - [723] = {.lex_state = 24}, - [724] = {.lex_state = 25}, - [725] = {.lex_state = 24}, - [726] = {.lex_state = 1}, - [727] = {.lex_state = 24}, - [728] = {.lex_state = 24}, - [729] = {.lex_state = 24}, - [730] = {.lex_state = 24}, - [731] = {.lex_state = 24}, - [732] = {.lex_state = 25}, - [733] = {.lex_state = 24}, - [734] = {.lex_state = 24}, - [735] = {.lex_state = 24}, - [736] = {.lex_state = 24}, - [737] = {.lex_state = 24}, - [738] = {.lex_state = 24}, - [739] = {.lex_state = 24}, - [740] = {.lex_state = 25}, - [741] = {.lex_state = 25}, - [742] = {.lex_state = 24}, - [743] = {.lex_state = 25}, - [744] = {.lex_state = 25}, - [745] = {.lex_state = 2}, - [746] = {.lex_state = 25}, - [747] = {.lex_state = 24}, - [748] = {.lex_state = 0}, - [749] = {.lex_state = 26}, - [750] = {.lex_state = 25}, - [751] = {.lex_state = 26}, - [752] = {.lex_state = 25}, - [753] = {.lex_state = 25}, - [754] = {.lex_state = 0}, - [755] = {.lex_state = 26}, - [756] = {.lex_state = 26}, - [757] = {.lex_state = 25}, - [758] = {.lex_state = 25}, - [759] = {.lex_state = 25}, - [760] = {.lex_state = 25}, - [761] = {.lex_state = 25}, - [762] = {.lex_state = 25}, - [763] = {.lex_state = 25}, - [764] = {.lex_state = 25}, - [765] = {.lex_state = 25}, - [766] = {.lex_state = 25}, - [767] = {.lex_state = 25}, - [768] = {.lex_state = 24}, - [769] = {.lex_state = 1}, - [770] = {.lex_state = 25}, - [771] = {.lex_state = 24}, - [772] = {.lex_state = 1}, - [773] = {.lex_state = 1}, - [774] = {.lex_state = 26}, - [775] = {.lex_state = 26}, - [776] = {.lex_state = 24}, - [777] = {.lex_state = 25}, - [778] = {.lex_state = 25}, - [779] = {.lex_state = 25}, - [780] = {.lex_state = 1}, - [781] = {.lex_state = 25}, - [782] = {.lex_state = 0}, - [783] = {.lex_state = 25}, - [784] = {.lex_state = 26}, - [785] = {.lex_state = 25}, - [786] = {.lex_state = 26}, - [787] = {.lex_state = 25}, - [788] = {.lex_state = 25}, - [789] = {.lex_state = 25}, - [790] = {.lex_state = 26}, - [791] = {.lex_state = 25}, - [792] = {.lex_state = 25}, - [793] = {.lex_state = 25}, - [794] = {.lex_state = 25}, - [795] = {.lex_state = 24}, - [796] = {.lex_state = 25}, - [797] = {.lex_state = 24}, - [798] = {.lex_state = 24}, - [799] = {.lex_state = 25}, - [800] = {.lex_state = 25}, - [801] = {.lex_state = 25}, - [802] = {.lex_state = 25}, - [803] = {.lex_state = 25}, - [804] = {.lex_state = 25}, - [805] = {.lex_state = 25}, - [806] = {.lex_state = 25}, - [807] = {.lex_state = 25}, - [808] = {.lex_state = 25}, - [809] = {.lex_state = 25}, - [810] = {.lex_state = 25}, - [811] = {.lex_state = 25}, - [812] = {.lex_state = 25}, - [813] = {.lex_state = 25}, - [814] = {.lex_state = 24}, - [815] = {.lex_state = 25}, - [816] = {.lex_state = 25}, - [817] = {.lex_state = 25}, - [818] = {.lex_state = 25}, - [819] = {.lex_state = 28}, - [820] = {.lex_state = 28}, - [821] = {.lex_state = 28}, - [822] = {.lex_state = 24}, - [823] = {.lex_state = 26}, - [824] = {.lex_state = 26}, - [825] = {.lex_state = 25}, - [826] = {.lex_state = 25}, - [827] = {.lex_state = 25}, - [828] = {.lex_state = 26}, - [829] = {.lex_state = 26}, - [830] = {.lex_state = 1}, - [831] = {.lex_state = 26}, - [832] = {.lex_state = 25}, - [833] = {.lex_state = 26}, - [834] = {.lex_state = 26}, - [835] = {.lex_state = 26}, - [836] = {.lex_state = 25}, - [837] = {.lex_state = 28}, - [838] = {.lex_state = 26}, - [839] = {.lex_state = 26}, - [840] = {.lex_state = 26}, - [841] = {.lex_state = 26}, - [842] = {.lex_state = 24}, - [843] = {.lex_state = 26}, - [844] = {.lex_state = 26}, - [845] = {.lex_state = 26}, - [846] = {.lex_state = 26}, - [847] = {.lex_state = 26}, - [848] = {.lex_state = 26}, - [849] = {.lex_state = 26}, - [850] = {.lex_state = 26}, - [851] = {.lex_state = 26}, - [852] = {.lex_state = 26}, - [853] = {.lex_state = 26}, - [854] = {.lex_state = 26}, - [855] = {.lex_state = 1}, - [856] = {.lex_state = 26}, - [857] = {.lex_state = 26}, - [858] = {.lex_state = 26}, - [859] = {.lex_state = 25}, - [860] = {.lex_state = 26}, - [861] = {.lex_state = 26}, - [862] = {.lex_state = 26}, - [863] = {.lex_state = 26}, - [864] = {.lex_state = 26}, - [865] = {.lex_state = 26}, - [866] = {.lex_state = 26}, - [867] = {.lex_state = 24}, - [868] = {.lex_state = 26}, - [869] = {.lex_state = 26}, - [870] = {.lex_state = 26}, - [871] = {.lex_state = 26}, - [872] = {.lex_state = 26}, - [873] = {.lex_state = 26}, - [874] = {.lex_state = 26}, - [875] = {.lex_state = 26}, - [876] = {.lex_state = 26}, - [877] = {.lex_state = 25}, - [878] = {.lex_state = 26}, - [879] = {.lex_state = 26}, - [880] = {.lex_state = 26}, - [881] = {.lex_state = 26}, - [882] = {.lex_state = 26}, - [883] = {.lex_state = 1}, - [884] = {.lex_state = 1}, - [885] = {.lex_state = 1}, - [886] = {.lex_state = 1}, - [887] = {.lex_state = 27}, - [888] = {.lex_state = 26}, - [889] = {.lex_state = 26}, - [890] = {.lex_state = 26}, - [891] = {.lex_state = 27}, - [892] = {.lex_state = 1}, - [893] = {.lex_state = 1}, - [894] = {.lex_state = 1}, - [895] = {.lex_state = 1}, - [896] = {.lex_state = 1}, - [897] = {.lex_state = 27}, - [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 = 27}, - [909] = {.lex_state = 1}, - [910] = {.lex_state = 1}, + [457] = {.lex_state = 24}, + [458] = {.lex_state = 25}, + [459] = {.lex_state = 24}, + [460] = {.lex_state = 24}, + [461] = {.lex_state = 25}, + [462] = {.lex_state = 25}, + [463] = {.lex_state = 25}, + [464] = {.lex_state = 25}, + [465] = {.lex_state = 25}, + [466] = {.lex_state = 25}, + [467] = {.lex_state = 25}, + [468] = {.lex_state = 25}, + [469] = {.lex_state = 25}, + [470] = {.lex_state = 25}, + [471] = {.lex_state = 25}, + [472] = {.lex_state = 25}, + [473] = {.lex_state = 24}, + [474] = {.lex_state = 25}, + [475] = {.lex_state = 25}, + [476] = {.lex_state = 1}, + [477] = {.lex_state = 25}, + [478] = {.lex_state = 25}, + [479] = {.lex_state = 25}, + [480] = {.lex_state = 25}, + [481] = {.lex_state = 25}, + [482] = {.lex_state = 25}, + [483] = {.lex_state = 25}, + [484] = {.lex_state = 25}, + [485] = {.lex_state = 25}, + [486] = {.lex_state = 25}, + [487] = {.lex_state = 25}, + [488] = {.lex_state = 25}, + [489] = {.lex_state = 25}, + [490] = {.lex_state = 25}, + [491] = {.lex_state = 25}, + [492] = {.lex_state = 25}, + [493] = {.lex_state = 25}, + [494] = {.lex_state = 25}, + [495] = {.lex_state = 25}, + [496] = {.lex_state = 25}, + [497] = {.lex_state = 25}, + [498] = {.lex_state = 25}, + [499] = {.lex_state = 25}, + [500] = {.lex_state = 25}, + [501] = {.lex_state = 25}, + [502] = {.lex_state = 1}, + [503] = {.lex_state = 1}, + [504] = {.lex_state = 1}, + [505] = {.lex_state = 1}, + [506] = {.lex_state = 1}, + [507] = {.lex_state = 1}, + [508] = {.lex_state = 1}, + [509] = {.lex_state = 26}, + [510] = {.lex_state = 1}, + [511] = {.lex_state = 1}, + [512] = {.lex_state = 1}, + [513] = {.lex_state = 26}, + [514] = {.lex_state = 1}, + [515] = {.lex_state = 26}, + [516] = {.lex_state = 25}, + [517] = {.lex_state = 25}, + [518] = {.lex_state = 25}, + [519] = {.lex_state = 1}, + [520] = {.lex_state = 1}, + [521] = {.lex_state = 25}, + [522] = {.lex_state = 1}, + [523] = {.lex_state = 1}, + [524] = {.lex_state = 25}, + [525] = {.lex_state = 26}, + [526] = {.lex_state = 1}, + [527] = {.lex_state = 1}, + [528] = {.lex_state = 25}, + [529] = {.lex_state = 1}, + [530] = {.lex_state = 1}, + [531] = {.lex_state = 1}, + [532] = {.lex_state = 1}, + [533] = {.lex_state = 1}, + [534] = {.lex_state = 1}, + [535] = {.lex_state = 25}, + [536] = {.lex_state = 1}, + [537] = {.lex_state = 1}, + [538] = {.lex_state = 1}, + [539] = {.lex_state = 1}, + [540] = {.lex_state = 1}, + [541] = {.lex_state = 1}, + [542] = {.lex_state = 1}, + [543] = {.lex_state = 1}, + [544] = {.lex_state = 1}, + [545] = {.lex_state = 1}, + [546] = {.lex_state = 1}, + [547] = {.lex_state = 25}, + [548] = {.lex_state = 1}, + [549] = {.lex_state = 1}, + [550] = {.lex_state = 1}, + [551] = {.lex_state = 1}, + [552] = {.lex_state = 1}, + [553] = {.lex_state = 1}, + [554] = {.lex_state = 1}, + [555] = {.lex_state = 1}, + [556] = {.lex_state = 1}, + [557] = {.lex_state = 1}, + [558] = {.lex_state = 1}, + [559] = {.lex_state = 1}, + [560] = {.lex_state = 1}, + [561] = {.lex_state = 27}, + [562] = {.lex_state = 27}, + [563] = {.lex_state = 1}, + [564] = {.lex_state = 27}, + [565] = {.lex_state = 27}, + [566] = {.lex_state = 27}, + [567] = {.lex_state = 1}, + [568] = {.lex_state = 1}, + [569] = {.lex_state = 27}, + [570] = {.lex_state = 1}, + [571] = {.lex_state = 27}, + [572] = {.lex_state = 27}, + [573] = {.lex_state = 1}, + [574] = {.lex_state = 1}, + [575] = {.lex_state = 1}, + [576] = {.lex_state = 1}, + [577] = {.lex_state = 1}, + [578] = {.lex_state = 1}, + [579] = {.lex_state = 27}, + [580] = {.lex_state = 4}, + [581] = {.lex_state = 1}, + [582] = {.lex_state = 4}, + [583] = {.lex_state = 27}, + [584] = {.lex_state = 1}, + [585] = {.lex_state = 1}, + [586] = {.lex_state = 1}, + [587] = {.lex_state = 1}, + [588] = {.lex_state = 1}, + [589] = {.lex_state = 1}, + [590] = {.lex_state = 1}, + [591] = {.lex_state = 27}, + [592] = {.lex_state = 27}, + [593] = {.lex_state = 27}, + [594] = {.lex_state = 1}, + [595] = {.lex_state = 27}, + [596] = {.lex_state = 27}, + [597] = {.lex_state = 27}, + [598] = {.lex_state = 27}, + [599] = {.lex_state = 27}, + [600] = {.lex_state = 27}, + [601] = {.lex_state = 27}, + [602] = {.lex_state = 27}, + [603] = {.lex_state = 27}, + [604] = {.lex_state = 27}, + [605] = {.lex_state = 27}, + [606] = {.lex_state = 27}, + [607] = {.lex_state = 27}, + [608] = {.lex_state = 27}, + [609] = {.lex_state = 27}, + [610] = {.lex_state = 27}, + [611] = {.lex_state = 27}, + [612] = {.lex_state = 4}, + [613] = {.lex_state = 4}, + [614] = {.lex_state = 1}, + [615] = {.lex_state = 4}, + [616] = {.lex_state = 4}, + [617] = {.lex_state = 4}, + [618] = {.lex_state = 4}, + [619] = {.lex_state = 4}, + [620] = {.lex_state = 4}, + [621] = {.lex_state = 4}, + [622] = {.lex_state = 1}, + [623] = {.lex_state = 26}, + [624] = {.lex_state = 1}, + [625] = {.lex_state = 1}, + [626] = {.lex_state = 26}, + [627] = {.lex_state = 26}, + [628] = {.lex_state = 26}, + [629] = {.lex_state = 1}, + [630] = {.lex_state = 1}, + [631] = {.lex_state = 26}, + [632] = {.lex_state = 1}, + [633] = {.lex_state = 26}, + [634] = {.lex_state = 26}, + [635] = {.lex_state = 26}, + [636] = {.lex_state = 26}, + [637] = {.lex_state = 1}, + [638] = {.lex_state = 26}, + [639] = {.lex_state = 26}, + [640] = {.lex_state = 26}, + [641] = {.lex_state = 26}, + [642] = {.lex_state = 26}, + [643] = {.lex_state = 26}, + [644] = {.lex_state = 26}, + [645] = {.lex_state = 26}, + [646] = {.lex_state = 26}, + [647] = {.lex_state = 4}, + [648] = {.lex_state = 4}, + [649] = {.lex_state = 4}, + [650] = {.lex_state = 4}, + [651] = {.lex_state = 4}, + [652] = {.lex_state = 4}, + [653] = {.lex_state = 4}, + [654] = {.lex_state = 4}, + [655] = {.lex_state = 4}, + [656] = {.lex_state = 4}, + [657] = {.lex_state = 4}, + [658] = {.lex_state = 4}, + [659] = {.lex_state = 4}, + [660] = {.lex_state = 4}, + [661] = {.lex_state = 4}, + [662] = {.lex_state = 4}, + [663] = {.lex_state = 4}, + [664] = {.lex_state = 4}, + [665] = {.lex_state = 4}, + [666] = {.lex_state = 4}, + [667] = {.lex_state = 4}, + [668] = {.lex_state = 4}, + [669] = {.lex_state = 4}, + [670] = {.lex_state = 4}, + [671] = {.lex_state = 4}, + [672] = {.lex_state = 4}, + [673] = {.lex_state = 4}, + [674] = {.lex_state = 4}, + [675] = {.lex_state = 4}, + [676] = {.lex_state = 4}, + [677] = {.lex_state = 4}, + [678] = {.lex_state = 4}, + [679] = {.lex_state = 4}, + [680] = {.lex_state = 4}, + [681] = {.lex_state = 4}, + [682] = {.lex_state = 4}, + [683] = {.lex_state = 4}, + [684] = {.lex_state = 4}, + [685] = {.lex_state = 4}, + [686] = {.lex_state = 4}, + [687] = {.lex_state = 4}, + [688] = {.lex_state = 4}, + [689] = {.lex_state = 4}, + [690] = {.lex_state = 4}, + [691] = {.lex_state = 4}, + [692] = {.lex_state = 4}, + [693] = {.lex_state = 4}, + [694] = {.lex_state = 4}, + [695] = {.lex_state = 4}, + [696] = {.lex_state = 4}, + [697] = {.lex_state = 4}, + [698] = {.lex_state = 4}, + [699] = {.lex_state = 4}, + [700] = {.lex_state = 4}, + [701] = {.lex_state = 4}, + [702] = {.lex_state = 4}, + [703] = {.lex_state = 4}, + [704] = {.lex_state = 4}, + [705] = {.lex_state = 4}, + [706] = {.lex_state = 4}, + [707] = {.lex_state = 4}, + [708] = {.lex_state = 4}, + [709] = {.lex_state = 4}, + [710] = {.lex_state = 4}, + [711] = {.lex_state = 4}, + [712] = {.lex_state = 4}, + [713] = {.lex_state = 4}, + [714] = {.lex_state = 4}, + [715] = {.lex_state = 4}, + [716] = {.lex_state = 4}, + [717] = {.lex_state = 4}, + [718] = {.lex_state = 4}, + [719] = {.lex_state = 4}, + [720] = {.lex_state = 4}, + [721] = {.lex_state = 4}, + [722] = {.lex_state = 4}, + [723] = {.lex_state = 4}, + [724] = {.lex_state = 4}, + [725] = {.lex_state = 4}, + [726] = {.lex_state = 4}, + [727] = {.lex_state = 4}, + [728] = {.lex_state = 4}, + [729] = {.lex_state = 4}, + [730] = {.lex_state = 4}, + [731] = {.lex_state = 4}, + [732] = {.lex_state = 4}, + [733] = {.lex_state = 4}, + [734] = {.lex_state = 4}, + [735] = {.lex_state = 4}, + [736] = {.lex_state = 4}, + [737] = {.lex_state = 4}, + [738] = {.lex_state = 4}, + [739] = {.lex_state = 4}, + [740] = {.lex_state = 4}, + [741] = {.lex_state = 4}, + [742] = {.lex_state = 4}, + [743] = {.lex_state = 1}, + [744] = {.lex_state = 4}, + [745] = {.lex_state = 1}, + [746] = {.lex_state = 1}, + [747] = {.lex_state = 1}, + [748] = {.lex_state = 4}, + [749] = {.lex_state = 4}, + [750] = {.lex_state = 4}, + [751] = {.lex_state = 4}, + [752] = {.lex_state = 4}, + [753] = {.lex_state = 4}, + [754] = {.lex_state = 4}, + [755] = {.lex_state = 4}, + [756] = {.lex_state = 4}, + [757] = {.lex_state = 4}, + [758] = {.lex_state = 4}, + [759] = {.lex_state = 4}, + [760] = {.lex_state = 4}, + [761] = {.lex_state = 4}, + [762] = {.lex_state = 4}, + [763] = {.lex_state = 4}, + [764] = {.lex_state = 4}, + [765] = {.lex_state = 4}, + [766] = {.lex_state = 4}, + [767] = {.lex_state = 4}, + [768] = {.lex_state = 4}, + [769] = {.lex_state = 4}, + [770] = {.lex_state = 4}, + [771] = {.lex_state = 4}, + [772] = {.lex_state = 4}, + [773] = {.lex_state = 4}, + [774] = {.lex_state = 4}, + [775] = {.lex_state = 4}, + [776] = {.lex_state = 4}, + [777] = {.lex_state = 4}, + [778] = {.lex_state = 4}, + [779] = {.lex_state = 4}, + [780] = {.lex_state = 4}, + [781] = {.lex_state = 4}, + [782] = {.lex_state = 4}, + [783] = {.lex_state = 4}, + [784] = {.lex_state = 4}, + [785] = {.lex_state = 4}, + [786] = {.lex_state = 4}, + [787] = {.lex_state = 4}, + [788] = {.lex_state = 4}, + [789] = {.lex_state = 4}, + [790] = {.lex_state = 4}, + [791] = {.lex_state = 4}, + [792] = {.lex_state = 4}, + [793] = {.lex_state = 4}, + [794] = {.lex_state = 4}, + [795] = {.lex_state = 4}, + [796] = {.lex_state = 4}, + [797] = {.lex_state = 4}, + [798] = {.lex_state = 4}, + [799] = {.lex_state = 4}, + [800] = {.lex_state = 4}, + [801] = {.lex_state = 4}, + [802] = {.lex_state = 4}, + [803] = {.lex_state = 4}, + [804] = {.lex_state = 4}, + [805] = {.lex_state = 4}, + [806] = {.lex_state = 4}, + [807] = {.lex_state = 4}, + [808] = {.lex_state = 4}, + [809] = {.lex_state = 4}, + [810] = {.lex_state = 4}, + [811] = {.lex_state = 4}, + [812] = {.lex_state = 4}, + [813] = {.lex_state = 4}, + [814] = {.lex_state = 4}, + [815] = {.lex_state = 4}, + [816] = {.lex_state = 4}, + [817] = {.lex_state = 4}, + [818] = {.lex_state = 4}, + [819] = {.lex_state = 4}, + [820] = {.lex_state = 4}, + [821] = {.lex_state = 4}, + [822] = {.lex_state = 4}, + [823] = {.lex_state = 4}, + [824] = {.lex_state = 4}, + [825] = {.lex_state = 4}, + [826] = {.lex_state = 4}, + [827] = {.lex_state = 4}, + [828] = {.lex_state = 4}, + [829] = {.lex_state = 4}, + [830] = {.lex_state = 4}, + [831] = {.lex_state = 4}, + [832] = {.lex_state = 4}, + [833] = {.lex_state = 4}, + [834] = {.lex_state = 4}, + [835] = {.lex_state = 4}, + [836] = {.lex_state = 4}, + [837] = {.lex_state = 4}, + [838] = {.lex_state = 4}, + [839] = {.lex_state = 4}, + [840] = {.lex_state = 4}, + [841] = {.lex_state = 4}, + [842] = {.lex_state = 4}, + [843] = {.lex_state = 4}, + [844] = {.lex_state = 4}, + [845] = {.lex_state = 4}, + [846] = {.lex_state = 4}, + [847] = {.lex_state = 4}, + [848] = {.lex_state = 4}, + [849] = {.lex_state = 4}, + [850] = {.lex_state = 4}, + [851] = {.lex_state = 4}, + [852] = {.lex_state = 4}, + [853] = {.lex_state = 4}, + [854] = {.lex_state = 4}, + [855] = {.lex_state = 4}, + [856] = {.lex_state = 4}, + [857] = {.lex_state = 4}, + [858] = {.lex_state = 4}, + [859] = {.lex_state = 4}, + [860] = {.lex_state = 4}, + [861] = {.lex_state = 4}, + [862] = {.lex_state = 4}, + [863] = {.lex_state = 4}, + [864] = {.lex_state = 4}, + [865] = {.lex_state = 4}, + [866] = {.lex_state = 4}, + [867] = {.lex_state = 4}, + [868] = {.lex_state = 4}, + [869] = {.lex_state = 4}, + [870] = {.lex_state = 4}, + [871] = {.lex_state = 4}, + [872] = {.lex_state = 4}, + [873] = {.lex_state = 4}, + [874] = {.lex_state = 4}, + [875] = {.lex_state = 4}, + [876] = {.lex_state = 4}, + [877] = {.lex_state = 4}, + [878] = {.lex_state = 4}, + [879] = {.lex_state = 4}, + [880] = {.lex_state = 4}, + [881] = {.lex_state = 4}, + [882] = {.lex_state = 4}, + [883] = {.lex_state = 4}, + [884] = {.lex_state = 4}, + [885] = {.lex_state = 4}, + [886] = {.lex_state = 4}, + [887] = {.lex_state = 4}, + [888] = {.lex_state = 4}, + [889] = {.lex_state = 4}, + [890] = {.lex_state = 4}, + [891] = {.lex_state = 4}, + [892] = {.lex_state = 4}, + [893] = {.lex_state = 4}, + [894] = {.lex_state = 4}, + [895] = {.lex_state = 4}, + [896] = {.lex_state = 4}, + [897] = {.lex_state = 4}, + [898] = {.lex_state = 4}, + [899] = {.lex_state = 4}, + [900] = {.lex_state = 4}, + [901] = {.lex_state = 4}, + [902] = {.lex_state = 4}, + [903] = {.lex_state = 4}, + [904] = {.lex_state = 4}, + [905] = {.lex_state = 4}, + [906] = {.lex_state = 4}, + [907] = {.lex_state = 4}, + [908] = {.lex_state = 4}, + [909] = {.lex_state = 4}, + [910] = {.lex_state = 4}, [911] = {.lex_state = 26}, - [912] = {.lex_state = 1}, - [913] = {.lex_state = 1}, - [914] = {.lex_state = 1}, - [915] = {.lex_state = 1}, - [916] = {.lex_state = 26}, - [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 = 26}, - [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 = 26}, - [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 = 2}, - [951] = {.lex_state = 2}, - [952] = {.lex_state = 2}, - [953] = {.lex_state = 2}, - [954] = {.lex_state = 2}, - [955] = {.lex_state = 2}, - [956] = {.lex_state = 2}, - [957] = {.lex_state = 1}, - [958] = {.lex_state = 1}, - [959] = {.lex_state = 1}, - [960] = {.lex_state = 1}, - [961] = {.lex_state = 2}, - [962] = {.lex_state = 2}, - [963] = {.lex_state = 1}, - [964] = {.lex_state = 2}, - [965] = {.lex_state = 2}, - [966] = {.lex_state = 2}, - [967] = {.lex_state = 1}, - [968] = {.lex_state = 1}, - [969] = {.lex_state = 28}, - [970] = {.lex_state = 2}, - [971] = {.lex_state = 1}, - [972] = {.lex_state = 1}, - [973] = {.lex_state = 1}, - [974] = {.lex_state = 2}, - [975] = {.lex_state = 1}, - [976] = {.lex_state = 28}, - [977] = {.lex_state = 28}, - [978] = {.lex_state = 28}, - [979] = {.lex_state = 1}, - [980] = {.lex_state = 28}, - [981] = {.lex_state = 2}, - [982] = {.lex_state = 2}, - [983] = {.lex_state = 28}, - [984] = {.lex_state = 2}, - [985] = {.lex_state = 28}, - [986] = {.lex_state = 2}, - [987] = {.lex_state = 2}, - [988] = {.lex_state = 28}, - [989] = {.lex_state = 2}, - [990] = {.lex_state = 2}, - [991] = {.lex_state = 2}, - [992] = {.lex_state = 2}, - [993] = {.lex_state = 2}, - [994] = {.lex_state = 2}, - [995] = {.lex_state = 1}, - [996] = {.lex_state = 1}, - [997] = {.lex_state = 1}, - [998] = {.lex_state = 28}, - [999] = {.lex_state = 28}, - [1000] = {.lex_state = 1}, - [1001] = {.lex_state = 1}, - [1002] = {.lex_state = 1}, - [1003] = {.lex_state = 5}, - [1004] = {.lex_state = 1}, - [1005] = {.lex_state = 5}, - [1006] = {.lex_state = 1}, - [1007] = {.lex_state = 1}, - [1008] = {.lex_state = 1}, - [1009] = {.lex_state = 1}, - [1010] = {.lex_state = 1}, - [1011] = {.lex_state = 1}, - [1012] = {.lex_state = 28}, - [1013] = {.lex_state = 28}, - [1014] = {.lex_state = 28}, - [1015] = {.lex_state = 28}, - [1016] = {.lex_state = 28}, - [1017] = {.lex_state = 28}, - [1018] = {.lex_state = 28}, - [1019] = {.lex_state = 28}, - [1020] = {.lex_state = 28}, - [1021] = {.lex_state = 28}, - [1022] = {.lex_state = 28}, - [1023] = {.lex_state = 28}, - [1024] = {.lex_state = 28}, - [1025] = {.lex_state = 28}, - [1026] = {.lex_state = 28}, - [1027] = {.lex_state = 28}, - [1028] = {.lex_state = 28}, - [1029] = {.lex_state = 28}, - [1030] = {.lex_state = 1}, - [1031] = {.lex_state = 28}, - [1032] = {.lex_state = 28}, - [1033] = {.lex_state = 5}, - [1034] = {.lex_state = 5}, - [1035] = {.lex_state = 5}, - [1036] = {.lex_state = 5}, - [1037] = {.lex_state = 5}, - [1038] = {.lex_state = 5}, - [1039] = {.lex_state = 1}, - [1040] = {.lex_state = 5}, - [1041] = {.lex_state = 5}, - [1042] = {.lex_state = 1}, - [1043] = {.lex_state = 5}, - [1044] = {.lex_state = 5}, - [1045] = {.lex_state = 5}, - [1046] = {.lex_state = 5}, - [1047] = {.lex_state = 5}, - [1048] = {.lex_state = 5}, - [1049] = {.lex_state = 5}, - [1050] = {.lex_state = 5}, - [1051] = {.lex_state = 5}, - [1052] = {.lex_state = 1}, - [1053] = {.lex_state = 27}, - [1054] = {.lex_state = 27}, - [1055] = {.lex_state = 27}, - [1056] = {.lex_state = 27}, - [1057] = {.lex_state = 1}, - [1058] = {.lex_state = 27}, - [1059] = {.lex_state = 27}, - [1060] = {.lex_state = 27}, - [1061] = {.lex_state = 27}, - [1062] = {.lex_state = 27}, - [1063] = {.lex_state = 1}, - [1064] = {.lex_state = 27}, - [1065] = {.lex_state = 27}, - [1066] = {.lex_state = 27}, - [1067] = {.lex_state = 27}, - [1068] = {.lex_state = 27}, - [1069] = {.lex_state = 27}, - [1070] = {.lex_state = 27}, - [1071] = {.lex_state = 27}, - [1072] = {.lex_state = 1}, - [1073] = {.lex_state = 1}, - [1074] = {.lex_state = 1}, - [1075] = {.lex_state = 27}, - [1076] = {.lex_state = 5}, - [1077] = {.lex_state = 5}, - [1078] = {.lex_state = 5}, - [1079] = {.lex_state = 5}, - [1080] = {.lex_state = 5}, - [1081] = {.lex_state = 5}, - [1082] = {.lex_state = 5}, - [1083] = {.lex_state = 5}, - [1084] = {.lex_state = 5}, - [1085] = {.lex_state = 5}, - [1086] = {.lex_state = 5}, - [1087] = {.lex_state = 5}, - [1088] = {.lex_state = 5}, - [1089] = {.lex_state = 5}, - [1090] = {.lex_state = 5}, - [1091] = {.lex_state = 5}, - [1092] = {.lex_state = 5}, - [1093] = {.lex_state = 5}, - [1094] = {.lex_state = 5}, - [1095] = {.lex_state = 5}, - [1096] = {.lex_state = 5}, - [1097] = {.lex_state = 5}, - [1098] = {.lex_state = 5}, - [1099] = {.lex_state = 5}, - [1100] = {.lex_state = 5}, - [1101] = {.lex_state = 5}, - [1102] = {.lex_state = 5}, - [1103] = {.lex_state = 5}, - [1104] = {.lex_state = 5}, - [1105] = {.lex_state = 5}, - [1106] = {.lex_state = 5}, - [1107] = {.lex_state = 5}, - [1108] = {.lex_state = 5}, - [1109] = {.lex_state = 5}, - [1110] = {.lex_state = 5}, - [1111] = {.lex_state = 5}, - [1112] = {.lex_state = 5}, - [1113] = {.lex_state = 5}, - [1114] = {.lex_state = 5}, - [1115] = {.lex_state = 5}, - [1116] = {.lex_state = 5}, - [1117] = {.lex_state = 5}, - [1118] = {.lex_state = 5}, - [1119] = {.lex_state = 5}, - [1120] = {.lex_state = 5}, - [1121] = {.lex_state = 5}, - [1122] = {.lex_state = 5}, - [1123] = {.lex_state = 5}, - [1124] = {.lex_state = 5}, - [1125] = {.lex_state = 5}, - [1126] = {.lex_state = 5}, - [1127] = {.lex_state = 5}, - [1128] = {.lex_state = 5}, - [1129] = {.lex_state = 5}, - [1130] = {.lex_state = 5}, - [1131] = {.lex_state = 5}, - [1132] = {.lex_state = 5}, - [1133] = {.lex_state = 5}, - [1134] = {.lex_state = 5}, - [1135] = {.lex_state = 5}, - [1136] = {.lex_state = 5}, - [1137] = {.lex_state = 5}, - [1138] = {.lex_state = 5}, - [1139] = {.lex_state = 5}, - [1140] = {.lex_state = 5}, - [1141] = {.lex_state = 5}, - [1142] = {.lex_state = 5}, - [1143] = {.lex_state = 5}, - [1144] = {.lex_state = 5}, - [1145] = {.lex_state = 5}, - [1146] = {.lex_state = 5}, - [1147] = {.lex_state = 5}, - [1148] = {.lex_state = 5}, - [1149] = {.lex_state = 5}, - [1150] = {.lex_state = 5}, - [1151] = {.lex_state = 5}, - [1152] = {.lex_state = 5}, - [1153] = {.lex_state = 5}, - [1154] = {.lex_state = 5}, - [1155] = {.lex_state = 5}, - [1156] = {.lex_state = 5}, - [1157] = {.lex_state = 5}, - [1158] = {.lex_state = 5}, - [1159] = {.lex_state = 5}, - [1160] = {.lex_state = 5}, - [1161] = {.lex_state = 5}, - [1162] = {.lex_state = 5}, - [1163] = {.lex_state = 5}, - [1164] = {.lex_state = 5}, - [1165] = {.lex_state = 5}, - [1166] = {.lex_state = 5}, - [1167] = {.lex_state = 5}, - [1168] = {.lex_state = 5}, - [1169] = {.lex_state = 5}, - [1170] = {.lex_state = 5}, - [1171] = {.lex_state = 5}, - [1172] = {.lex_state = 5}, - [1173] = {.lex_state = 5}, - [1174] = {.lex_state = 5}, - [1175] = {.lex_state = 5}, - [1176] = {.lex_state = 5}, - [1177] = {.lex_state = 5}, - [1178] = {.lex_state = 5}, - [1179] = {.lex_state = 5}, - [1180] = {.lex_state = 5}, - [1181] = {.lex_state = 5}, - [1182] = {.lex_state = 5}, - [1183] = {.lex_state = 5}, - [1184] = {.lex_state = 5}, - [1185] = {.lex_state = 5}, - [1186] = {.lex_state = 5}, - [1187] = {.lex_state = 5}, - [1188] = {.lex_state = 5}, - [1189] = {.lex_state = 5}, - [1190] = {.lex_state = 5}, - [1191] = {.lex_state = 5}, - [1192] = {.lex_state = 5}, - [1193] = {.lex_state = 5}, - [1194] = {.lex_state = 5}, - [1195] = {.lex_state = 5}, - [1196] = {.lex_state = 5}, - [1197] = {.lex_state = 5}, - [1198] = {.lex_state = 5}, - [1199] = {.lex_state = 5}, - [1200] = {.lex_state = 5}, - [1201] = {.lex_state = 5}, - [1202] = {.lex_state = 5}, - [1203] = {.lex_state = 5}, - [1204] = {.lex_state = 5}, - [1205] = {.lex_state = 5}, - [1206] = {.lex_state = 5}, - [1207] = {.lex_state = 5}, - [1208] = {.lex_state = 5}, - [1209] = {.lex_state = 5}, - [1210] = {.lex_state = 5}, - [1211] = {.lex_state = 5}, - [1212] = {.lex_state = 5}, - [1213] = {.lex_state = 5}, - [1214] = {.lex_state = 5}, - [1215] = {.lex_state = 5}, - [1216] = {.lex_state = 5}, - [1217] = {.lex_state = 5}, - [1218] = {.lex_state = 5}, - [1219] = {.lex_state = 5}, - [1220] = {.lex_state = 5}, - [1221] = {.lex_state = 5}, - [1222] = {.lex_state = 5}, - [1223] = {.lex_state = 5}, - [1224] = {.lex_state = 5}, - [1225] = {.lex_state = 5}, - [1226] = {.lex_state = 5}, - [1227] = {.lex_state = 5}, - [1228] = {.lex_state = 5}, - [1229] = {.lex_state = 5}, - [1230] = {.lex_state = 5}, - [1231] = {.lex_state = 5}, - [1232] = {.lex_state = 5}, - [1233] = {.lex_state = 5}, - [1234] = {.lex_state = 5}, - [1235] = {.lex_state = 5}, - [1236] = {.lex_state = 5}, - [1237] = {.lex_state = 5}, - [1238] = {.lex_state = 5}, - [1239] = {.lex_state = 5}, - [1240] = {.lex_state = 5}, - [1241] = {.lex_state = 5}, - [1242] = {.lex_state = 5}, - [1243] = {.lex_state = 5}, - [1244] = {.lex_state = 5}, - [1245] = {.lex_state = 5}, - [1246] = {.lex_state = 5}, - [1247] = {.lex_state = 5}, - [1248] = {.lex_state = 5}, - [1249] = {.lex_state = 5}, - [1250] = {.lex_state = 5}, - [1251] = {.lex_state = 5}, - [1252] = {.lex_state = 5}, - [1253] = {.lex_state = 5}, - [1254] = {.lex_state = 5}, - [1255] = {.lex_state = 5}, - [1256] = {.lex_state = 5}, - [1257] = {.lex_state = 5}, - [1258] = {.lex_state = 5}, - [1259] = {.lex_state = 5}, - [1260] = {.lex_state = 5}, - [1261] = {.lex_state = 5}, - [1262] = {.lex_state = 5}, - [1263] = {.lex_state = 5}, - [1264] = {.lex_state = 5}, - [1265] = {.lex_state = 5}, - [1266] = {.lex_state = 5}, - [1267] = {.lex_state = 5}, - [1268] = {.lex_state = 5}, - [1269] = {.lex_state = 5}, - [1270] = {.lex_state = 5}, - [1271] = {.lex_state = 5}, - [1272] = {.lex_state = 5}, - [1273] = {.lex_state = 5}, - [1274] = {.lex_state = 5}, - [1275] = {.lex_state = 5}, - [1276] = {.lex_state = 5}, - [1277] = {.lex_state = 5}, - [1278] = {.lex_state = 5}, - [1279] = {.lex_state = 5}, - [1280] = {.lex_state = 5}, - [1281] = {.lex_state = 5}, - [1282] = {.lex_state = 5}, - [1283] = {.lex_state = 5}, - [1284] = {.lex_state = 5}, - [1285] = {.lex_state = 5}, - [1286] = {.lex_state = 5}, - [1287] = {.lex_state = 5}, - [1288] = {.lex_state = 5}, - [1289] = {.lex_state = 5}, - [1290] = {.lex_state = 5}, - [1291] = {.lex_state = 5}, - [1292] = {.lex_state = 5}, - [1293] = {.lex_state = 5}, - [1294] = {.lex_state = 5}, - [1295] = {.lex_state = 5}, - [1296] = {.lex_state = 5}, - [1297] = {.lex_state = 5}, - [1298] = {.lex_state = 5}, - [1299] = {.lex_state = 5}, - [1300] = {.lex_state = 5}, - [1301] = {.lex_state = 5}, - [1302] = {.lex_state = 5}, - [1303] = {.lex_state = 5}, - [1304] = {.lex_state = 5}, - [1305] = {.lex_state = 5}, - [1306] = {.lex_state = 5}, - [1307] = {.lex_state = 5}, - [1308] = {.lex_state = 5}, - [1309] = {.lex_state = 5}, - [1310] = {.lex_state = 5}, - [1311] = {.lex_state = 5}, - [1312] = {.lex_state = 5}, - [1313] = {.lex_state = 5}, - [1314] = {.lex_state = 5}, - [1315] = {.lex_state = 5}, - [1316] = {.lex_state = 5}, - [1317] = {.lex_state = 5}, - [1318] = {.lex_state = 5}, - [1319] = {.lex_state = 5}, - [1320] = {.lex_state = 5}, - [1321] = {.lex_state = 5}, - [1322] = {.lex_state = 5}, - [1323] = {.lex_state = 5}, - [1324] = {.lex_state = 5}, - [1325] = {.lex_state = 5}, - [1326] = {.lex_state = 5}, - [1327] = {.lex_state = 5}, - [1328] = {.lex_state = 5}, - [1329] = {.lex_state = 1}, - [1330] = {.lex_state = 5}, - [1331] = {.lex_state = 5}, - [1332] = {.lex_state = 5}, - [1333] = {.lex_state = 5}, - [1334] = {.lex_state = 5}, - [1335] = {.lex_state = 5}, - [1336] = {.lex_state = 5}, - [1337] = {.lex_state = 5}, - [1338] = {.lex_state = 5}, - [1339] = {.lex_state = 5}, - [1340] = {.lex_state = 5}, - [1341] = {.lex_state = 5}, - [1342] = {.lex_state = 5}, - [1343] = {.lex_state = 1}, - [1344] = {.lex_state = 1}, - [1345] = {.lex_state = 1}, - [1346] = {.lex_state = 5}, - [1347] = {.lex_state = 5}, - [1348] = {.lex_state = 5}, - [1349] = {.lex_state = 5}, - [1350] = {.lex_state = 5}, - [1351] = {.lex_state = 5}, - [1352] = {.lex_state = 5}, - [1353] = {.lex_state = 5}, - [1354] = {.lex_state = 5}, - [1355] = {.lex_state = 5}, - [1356] = {.lex_state = 5}, - [1357] = {.lex_state = 5}, - [1358] = {.lex_state = 5}, - [1359] = {.lex_state = 5}, - [1360] = {.lex_state = 5}, - [1361] = {.lex_state = 5}, - [1362] = {.lex_state = 5}, - [1363] = {.lex_state = 5}, - [1364] = {.lex_state = 5}, - [1365] = {.lex_state = 5}, - [1366] = {.lex_state = 5}, - [1367] = {.lex_state = 5}, - [1368] = {.lex_state = 5}, - [1369] = {.lex_state = 5}, - [1370] = {.lex_state = 5}, - [1371] = {.lex_state = 5}, - [1372] = {.lex_state = 5}, - [1373] = {.lex_state = 5}, - [1374] = {.lex_state = 5}, - [1375] = {.lex_state = 5}, - [1376] = {.lex_state = 5}, - [1377] = {.lex_state = 5}, - [1378] = {.lex_state = 5}, - [1379] = {.lex_state = 5}, - [1380] = {.lex_state = 5}, - [1381] = {.lex_state = 5}, - [1382] = {.lex_state = 5}, - [1383] = {.lex_state = 5}, - [1384] = {.lex_state = 5}, - [1385] = {.lex_state = 5}, - [1386] = {.lex_state = 5}, - [1387] = {.lex_state = 5}, - [1388] = {.lex_state = 5}, - [1389] = {.lex_state = 5}, - [1390] = {.lex_state = 5}, - [1391] = {.lex_state = 5}, - [1392] = {.lex_state = 5}, - [1393] = {.lex_state = 5}, - [1394] = {.lex_state = 5}, - [1395] = {.lex_state = 5}, - [1396] = {.lex_state = 5}, - [1397] = {.lex_state = 5}, - [1398] = {.lex_state = 5}, - [1399] = {.lex_state = 5}, - [1400] = {.lex_state = 5}, - [1401] = {.lex_state = 5}, - [1402] = {.lex_state = 5}, - [1403] = {.lex_state = 5}, - [1404] = {.lex_state = 5}, - [1405] = {.lex_state = 5}, - [1406] = {.lex_state = 5}, - [1407] = {.lex_state = 5}, - [1408] = {.lex_state = 5}, - [1409] = {.lex_state = 5}, - [1410] = {.lex_state = 5}, - [1411] = {.lex_state = 5}, - [1412] = {.lex_state = 5}, - [1413] = {.lex_state = 5}, - [1414] = {.lex_state = 5}, - [1415] = {.lex_state = 5}, - [1416] = {.lex_state = 5}, - [1417] = {.lex_state = 5}, - [1418] = {.lex_state = 5}, - [1419] = {.lex_state = 5}, - [1420] = {.lex_state = 5}, - [1421] = {.lex_state = 5}, - [1422] = {.lex_state = 5}, - [1423] = {.lex_state = 5}, - [1424] = {.lex_state = 5}, - [1425] = {.lex_state = 5}, - [1426] = {.lex_state = 5}, - [1427] = {.lex_state = 5}, - [1428] = {.lex_state = 5}, - [1429] = {.lex_state = 5}, - [1430] = {.lex_state = 5}, - [1431] = {.lex_state = 5}, - [1432] = {.lex_state = 5}, - [1433] = {.lex_state = 5}, - [1434] = {.lex_state = 5}, - [1435] = {.lex_state = 5}, - [1436] = {.lex_state = 5}, - [1437] = {.lex_state = 5}, - [1438] = {.lex_state = 5}, - [1439] = {.lex_state = 5}, - [1440] = {.lex_state = 5}, - [1441] = {.lex_state = 5}, - [1442] = {.lex_state = 5}, - [1443] = {.lex_state = 5}, - [1444] = {.lex_state = 5}, - [1445] = {.lex_state = 5}, - [1446] = {.lex_state = 5}, - [1447] = {.lex_state = 5}, - [1448] = {.lex_state = 5}, - [1449] = {.lex_state = 5}, - [1450] = {.lex_state = 5}, - [1451] = {.lex_state = 5}, - [1452] = {.lex_state = 5}, - [1453] = {.lex_state = 5}, - [1454] = {.lex_state = 5}, - [1455] = {.lex_state = 5}, - [1456] = {.lex_state = 5}, - [1457] = {.lex_state = 5}, - [1458] = {.lex_state = 5}, - [1459] = {.lex_state = 5}, - [1460] = {.lex_state = 5}, - [1461] = {.lex_state = 5}, - [1462] = {.lex_state = 5}, - [1463] = {.lex_state = 5}, - [1464] = {.lex_state = 5}, - [1465] = {.lex_state = 5}, - [1466] = {.lex_state = 5}, - [1467] = {.lex_state = 5}, - [1468] = {.lex_state = 5}, - [1469] = {.lex_state = 5}, - [1470] = {.lex_state = 5}, - [1471] = {.lex_state = 5}, - [1472] = {.lex_state = 5}, - [1473] = {.lex_state = 5}, - [1474] = {.lex_state = 5}, - [1475] = {.lex_state = 5}, - [1476] = {.lex_state = 5}, - [1477] = {.lex_state = 5}, - [1478] = {.lex_state = 5}, - [1479] = {.lex_state = 5}, - [1480] = {.lex_state = 5}, - [1481] = {.lex_state = 5}, - [1482] = {.lex_state = 5}, - [1483] = {.lex_state = 5}, - [1484] = {.lex_state = 5}, - [1485] = {.lex_state = 5}, - [1486] = {.lex_state = 5}, - [1487] = {.lex_state = 5}, - [1488] = {.lex_state = 5}, - [1489] = {.lex_state = 5}, - [1490] = {.lex_state = 5}, - [1491] = {.lex_state = 5}, - [1492] = {.lex_state = 5}, - [1493] = {.lex_state = 5}, - [1494] = {.lex_state = 5}, - [1495] = {.lex_state = 5}, - [1496] = {.lex_state = 5}, - [1497] = {.lex_state = 5}, - [1498] = {.lex_state = 5}, - [1499] = {.lex_state = 5}, - [1500] = {.lex_state = 5}, - [1501] = {.lex_state = 5}, - [1502] = {.lex_state = 27}, - [1503] = {.lex_state = 5}, - [1504] = {.lex_state = 5}, - [1505] = {.lex_state = 5}, - [1506] = {.lex_state = 5}, - [1507] = {.lex_state = 5}, - [1508] = {.lex_state = 5}, - [1509] = {.lex_state = 5}, - [1510] = {.lex_state = 4}, - [1511] = {.lex_state = 4}, - [1512] = {.lex_state = 4}, - [1513] = {.lex_state = 4}, - [1514] = {.lex_state = 4}, - [1515] = {.lex_state = 4}, - [1516] = {.lex_state = 4}, - [1517] = {.lex_state = 4}, - [1518] = {.lex_state = 4}, - [1519] = {.lex_state = 4}, - [1520] = {.lex_state = 4}, - [1521] = {.lex_state = 4}, - [1522] = {.lex_state = 4}, - [1523] = {.lex_state = 4}, - [1524] = {.lex_state = 4}, - [1525] = {.lex_state = 4}, - [1526] = {.lex_state = 4}, - [1527] = {.lex_state = 4}, - [1528] = {.lex_state = 4}, - [1529] = {.lex_state = 4}, - [1530] = {.lex_state = 4}, - [1531] = {.lex_state = 4}, - [1532] = {.lex_state = 4}, - [1533] = {.lex_state = 3}, - [1534] = {.lex_state = 3}, - [1535] = {.lex_state = 3}, - [1536] = {.lex_state = 3}, - [1537] = {.lex_state = 3}, - [1538] = {.lex_state = 3}, - [1539] = {.lex_state = 3}, - [1540] = {.lex_state = 3}, - [1541] = {.lex_state = 3}, - [1542] = {.lex_state = 3}, - [1543] = {.lex_state = 3}, - [1544] = {.lex_state = 3}, - [1545] = {.lex_state = 3}, - [1546] = {.lex_state = 3}, - [1547] = {.lex_state = 3}, - [1548] = {.lex_state = 3}, - [1549] = {.lex_state = 3}, - [1550] = {.lex_state = 3}, - [1551] = {.lex_state = 3}, - [1552] = {.lex_state = 3}, - [1553] = {.lex_state = 3}, - [1554] = {.lex_state = 3}, - [1555] = {.lex_state = 3}, - [1556] = {.lex_state = 3}, - [1557] = {.lex_state = 3}, - [1558] = {.lex_state = 3}, - [1559] = {.lex_state = 3}, - [1560] = {.lex_state = 3}, - [1561] = {.lex_state = 3}, - [1562] = {.lex_state = 3}, - [1563] = {.lex_state = 3}, - [1564] = {.lex_state = 3}, - [1565] = {.lex_state = 3}, - [1566] = {.lex_state = 3}, - [1567] = {.lex_state = 3}, - [1568] = {.lex_state = 3}, - [1569] = {.lex_state = 3}, - [1570] = {.lex_state = 3}, - [1571] = {.lex_state = 3}, - [1572] = {.lex_state = 3}, - [1573] = {.lex_state = 3}, - [1574] = {.lex_state = 3}, - [1575] = {.lex_state = 3}, - [1576] = {.lex_state = 3}, - [1577] = {.lex_state = 3}, - [1578] = {.lex_state = 3}, - [1579] = {.lex_state = 3}, - [1580] = {.lex_state = 3}, - [1581] = {.lex_state = 3}, - [1582] = {.lex_state = 3}, - [1583] = {.lex_state = 3}, - [1584] = {.lex_state = 3}, - [1585] = {.lex_state = 3}, - [1586] = {.lex_state = 3}, - [1587] = {.lex_state = 3}, - [1588] = {.lex_state = 3}, - [1589] = {.lex_state = 3}, - [1590] = {.lex_state = 3}, - [1591] = {.lex_state = 3}, - [1592] = {.lex_state = 3}, - [1593] = {.lex_state = 3}, - [1594] = {.lex_state = 3}, - [1595] = {.lex_state = 3}, - [1596] = {.lex_state = 3}, - [1597] = {.lex_state = 3}, - [1598] = {.lex_state = 3}, - [1599] = {.lex_state = 3}, - [1600] = {.lex_state = 3}, - [1601] = {.lex_state = 3}, - [1602] = {.lex_state = 3}, - [1603] = {.lex_state = 3}, - [1604] = {.lex_state = 3}, - [1605] = {.lex_state = 3}, - [1606] = {.lex_state = 3}, - [1607] = {.lex_state = 3}, - [1608] = {.lex_state = 3}, - [1609] = {.lex_state = 3}, - [1610] = {.lex_state = 3}, - [1611] = {.lex_state = 3}, - [1612] = {.lex_state = 3}, - [1613] = {.lex_state = 3}, - [1614] = {.lex_state = 3}, - [1615] = {.lex_state = 3}, - [1616] = {.lex_state = 3}, - [1617] = {.lex_state = 3}, - [1618] = {.lex_state = 3}, - [1619] = {.lex_state = 3}, - [1620] = {.lex_state = 3}, - [1621] = {.lex_state = 3}, - [1622] = {.lex_state = 3}, - [1623] = {.lex_state = 3}, - [1624] = {.lex_state = 3}, - [1625] = {.lex_state = 3}, - [1626] = {.lex_state = 3}, - [1627] = {.lex_state = 3}, - [1628] = {.lex_state = 3}, - [1629] = {.lex_state = 3}, - [1630] = {.lex_state = 3}, - [1631] = {.lex_state = 3}, - [1632] = {.lex_state = 3}, - [1633] = {.lex_state = 3}, - [1634] = {.lex_state = 3}, - [1635] = {.lex_state = 3}, - [1636] = {.lex_state = 3}, - [1637] = {.lex_state = 3}, - [1638] = {.lex_state = 7}, - [1639] = {.lex_state = 7}, - [1640] = {.lex_state = 7}, - [1641] = {.lex_state = 7}, - [1642] = {.lex_state = 7}, - [1643] = {.lex_state = 7}, - [1644] = {.lex_state = 2}, - [1645] = {.lex_state = 2}, - [1646] = {.lex_state = 2}, - [1647] = {.lex_state = 2}, - [1648] = {.lex_state = 2}, - [1649] = {.lex_state = 2}, - [1650] = {.lex_state = 2}, - [1651] = {.lex_state = 2}, - [1652] = {.lex_state = 2}, - [1653] = {.lex_state = 2}, - [1654] = {.lex_state = 2}, - [1655] = {.lex_state = 2}, - [1656] = {.lex_state = 2}, - [1657] = {.lex_state = 2}, - [1658] = {.lex_state = 2}, - [1659] = {.lex_state = 2}, - [1660] = {.lex_state = 2}, - [1661] = {.lex_state = 2}, - [1662] = {.lex_state = 5}, - [1663] = {.lex_state = 2}, - [1664] = {.lex_state = 5}, - [1665] = {.lex_state = 2}, - [1666] = {.lex_state = 2}, - [1667] = {.lex_state = 2}, - [1668] = {.lex_state = 2}, - [1669] = {.lex_state = 2}, - [1670] = {.lex_state = 2}, - [1671] = {.lex_state = 2}, - [1672] = {.lex_state = 2}, - [1673] = {.lex_state = 5}, - [1674] = {.lex_state = 2}, - [1675] = {.lex_state = 2}, - [1676] = {.lex_state = 5}, - [1677] = {.lex_state = 2}, - [1678] = {.lex_state = 2}, - [1679] = {.lex_state = 2}, - [1680] = {.lex_state = 2}, - [1681] = {.lex_state = 5}, - [1682] = {.lex_state = 2}, - [1683] = {.lex_state = 5}, - [1684] = {.lex_state = 27}, - [1685] = {.lex_state = 27}, - [1686] = {.lex_state = 27}, - [1687] = {.lex_state = 27}, - [1688] = {.lex_state = 27}, - [1689] = {.lex_state = 27}, - [1690] = {.lex_state = 27}, - [1691] = {.lex_state = 27}, - [1692] = {.lex_state = 27}, - [1693] = {.lex_state = 27}, - [1694] = {.lex_state = 27}, - [1695] = {.lex_state = 27}, - [1696] = {.lex_state = 27}, - [1697] = {.lex_state = 27}, - [1698] = {.lex_state = 27}, - [1699] = {.lex_state = 27}, - [1700] = {.lex_state = 27}, - [1701] = {.lex_state = 2}, - [1702] = {.lex_state = 27}, - [1703] = {.lex_state = 27}, - [1704] = {.lex_state = 2}, - [1705] = {.lex_state = 27}, - [1706] = {.lex_state = 27}, - [1707] = {.lex_state = 27}, - [1708] = {.lex_state = 27}, - [1709] = {.lex_state = 27}, - [1710] = {.lex_state = 27}, - [1711] = {.lex_state = 27}, - [1712] = {.lex_state = 27}, - [1713] = {.lex_state = 27}, - [1714] = {.lex_state = 27}, - [1715] = {.lex_state = 27}, - [1716] = {.lex_state = 27}, - [1717] = {.lex_state = 27}, - [1718] = {.lex_state = 27}, - [1719] = {.lex_state = 27}, - [1720] = {.lex_state = 27}, - [1721] = {.lex_state = 27}, - [1722] = {.lex_state = 27}, - [1723] = {.lex_state = 27}, - [1724] = {.lex_state = 27}, - [1725] = {.lex_state = 27}, - [1726] = {.lex_state = 27}, - [1727] = {.lex_state = 27}, - [1728] = {.lex_state = 27}, - [1729] = {.lex_state = 27}, - [1730] = {.lex_state = 27}, - [1731] = {.lex_state = 5}, - [1732] = {.lex_state = 27}, - [1733] = {.lex_state = 27}, - [1734] = {.lex_state = 27}, - [1735] = {.lex_state = 27}, - [1736] = {.lex_state = 27}, - [1737] = {.lex_state = 2}, - [1738] = {.lex_state = 27}, - [1739] = {.lex_state = 27}, - [1740] = {.lex_state = 27}, - [1741] = {.lex_state = 0}, - [1742] = {.lex_state = 2}, - [1743] = {.lex_state = 2}, - [1744] = {.lex_state = 2}, - [1745] = {.lex_state = 2}, - [1746] = {.lex_state = 2}, - [1747] = {.lex_state = 2}, - [1748] = {.lex_state = 2}, - [1749] = {.lex_state = 2}, - [1750] = {.lex_state = 2}, - [1751] = {.lex_state = 2}, - [1752] = {.lex_state = 0}, - [1753] = {.lex_state = 2}, - [1754] = {.lex_state = 2}, - [1755] = {.lex_state = 2}, - [1756] = {.lex_state = 2}, - [1757] = {.lex_state = 2}, - [1758] = {.lex_state = 2}, - [1759] = {.lex_state = 2}, - [1760] = {.lex_state = 2}, - [1761] = {.lex_state = 2}, - [1762] = {.lex_state = 0}, - [1763] = {.lex_state = 2}, - [1764] = {.lex_state = 2}, - [1765] = {.lex_state = 2}, - [1766] = {.lex_state = 2}, - [1767] = {.lex_state = 2}, - [1768] = {.lex_state = 2}, - [1769] = {.lex_state = 2}, - [1770] = {.lex_state = 0}, - [1771] = {.lex_state = 2}, - [1772] = {.lex_state = 2}, - [1773] = {.lex_state = 0}, - [1774] = {.lex_state = 2}, - [1775] = {.lex_state = 2}, - [1776] = {.lex_state = 0}, - [1777] = {.lex_state = 2}, - [1778] = {.lex_state = 2}, - [1779] = {.lex_state = 2}, - [1780] = {.lex_state = 2}, - [1781] = {.lex_state = 2}, - [1782] = {.lex_state = 2}, - [1783] = {.lex_state = 2}, - [1784] = {.lex_state = 0}, - [1785] = {.lex_state = 2}, - [1786] = {.lex_state = 2}, - [1787] = {.lex_state = 2}, - [1788] = {.lex_state = 2}, - [1789] = {.lex_state = 2}, - [1790] = {.lex_state = 2}, - [1791] = {.lex_state = 2}, - [1792] = {.lex_state = 2}, - [1793] = {.lex_state = 0}, - [1794] = {.lex_state = 0}, - [1795] = {.lex_state = 2}, - [1796] = {.lex_state = 2}, - [1797] = {.lex_state = 2}, - [1798] = {.lex_state = 2}, - [1799] = {.lex_state = 2}, - [1800] = {.lex_state = 2}, - [1801] = {.lex_state = 2}, - [1802] = {.lex_state = 2}, - [1803] = {.lex_state = 2}, - [1804] = {.lex_state = 0}, - [1805] = {.lex_state = 2}, - [1806] = {.lex_state = 2}, - [1807] = {.lex_state = 2}, - [1808] = {.lex_state = 2}, - [1809] = {.lex_state = 2}, - [1810] = {.lex_state = 2}, - [1811] = {.lex_state = 2}, - [1812] = {.lex_state = 2}, - [1813] = {.lex_state = 0}, - [1814] = {.lex_state = 2}, - [1815] = {.lex_state = 2}, - [1816] = {.lex_state = 2}, - [1817] = {.lex_state = 0}, - [1818] = {.lex_state = 2}, - [1819] = {.lex_state = 2}, - [1820] = {.lex_state = 2}, - [1821] = {.lex_state = 2}, - [1822] = {.lex_state = 2}, - [1823] = {.lex_state = 0}, - [1824] = {.lex_state = 2}, - [1825] = {.lex_state = 2}, - [1826] = {.lex_state = 2}, - [1827] = {.lex_state = 2}, - [1828] = {.lex_state = 2}, - [1829] = {.lex_state = 2}, - [1830] = {.lex_state = 2}, - [1831] = {.lex_state = 2}, - [1832] = {.lex_state = 2}, - [1833] = {.lex_state = 2}, - [1834] = {.lex_state = 2}, - [1835] = {.lex_state = 2}, - [1836] = {.lex_state = 2}, - [1837] = {.lex_state = 0}, - [1838] = {.lex_state = 2}, - [1839] = {.lex_state = 2}, - [1840] = {.lex_state = 2}, - [1841] = {.lex_state = 0}, - [1842] = {.lex_state = 2}, - [1843] = {.lex_state = 27}, - [1844] = {.lex_state = 2}, - [1845] = {.lex_state = 2}, - [1846] = {.lex_state = 2}, - [1847] = {.lex_state = 2}, - [1848] = {.lex_state = 2}, - [1849] = {.lex_state = 2}, - [1850] = {.lex_state = 2}, - [1851] = {.lex_state = 0}, - [1852] = {.lex_state = 2}, - [1853] = {.lex_state = 2}, - [1854] = {.lex_state = 2}, - [1855] = {.lex_state = 2}, - [1856] = {.lex_state = 2}, - [1857] = {.lex_state = 2}, - [1858] = {.lex_state = 2}, - [1859] = {.lex_state = 2}, - [1860] = {.lex_state = 0}, - [1861] = {.lex_state = 2}, - [1862] = {.lex_state = 2}, - [1863] = {.lex_state = 2}, - [1864] = {.lex_state = 2}, - [1865] = {.lex_state = 2}, - [1866] = {.lex_state = 0}, - [1867] = {.lex_state = 2}, - [1868] = {.lex_state = 2}, - [1869] = {.lex_state = 2}, - [1870] = {.lex_state = 2}, - [1871] = {.lex_state = 2}, - [1872] = {.lex_state = 2}, - [1873] = {.lex_state = 2}, - [1874] = {.lex_state = 2}, - [1875] = {.lex_state = 2}, - [1876] = {.lex_state = 2}, - [1877] = {.lex_state = 2}, - [1878] = {.lex_state = 2}, - [1879] = {.lex_state = 2}, - [1880] = {.lex_state = 2}, - [1881] = {.lex_state = 2}, - [1882] = {.lex_state = 2}, - [1883] = {.lex_state = 2}, - [1884] = {.lex_state = 2}, - [1885] = {.lex_state = 2}, - [1886] = {.lex_state = 2}, - [1887] = {.lex_state = 2}, - [1888] = {.lex_state = 2}, - [1889] = {.lex_state = 2}, - [1890] = {.lex_state = 0}, - [1891] = {.lex_state = 0}, - [1892] = {.lex_state = 2}, - [1893] = {.lex_state = 2}, - [1894] = {.lex_state = 2}, - [1895] = {.lex_state = 2}, - [1896] = {.lex_state = 2}, - [1897] = {.lex_state = 2}, - [1898] = {.lex_state = 2}, - [1899] = {.lex_state = 2}, - [1900] = {.lex_state = 2}, - [1901] = {.lex_state = 2}, - [1902] = {.lex_state = 2}, - [1903] = {.lex_state = 2}, - [1904] = {.lex_state = 2}, - [1905] = {.lex_state = 2}, - [1906] = {.lex_state = 2}, - [1907] = {.lex_state = 2}, - [1908] = {.lex_state = 2}, - [1909] = {.lex_state = 2}, - [1910] = {.lex_state = 0}, - [1911] = {.lex_state = 2}, - [1912] = {.lex_state = 2}, - [1913] = {.lex_state = 2}, - [1914] = {.lex_state = 2}, - [1915] = {.lex_state = 2}, - [1916] = {.lex_state = 2}, - [1917] = {.lex_state = 0}, - [1918] = {.lex_state = 2}, - [1919] = {.lex_state = 2}, - [1920] = {.lex_state = 0}, - [1921] = {.lex_state = 2}, - [1922] = {.lex_state = 0}, - [1923] = {.lex_state = 2}, - [1924] = {.lex_state = 2}, - [1925] = {.lex_state = 2}, - [1926] = {.lex_state = 0}, - [1927] = {.lex_state = 2}, - [1928] = {.lex_state = 2}, - [1929] = {.lex_state = 2}, - [1930] = {.lex_state = 2}, - [1931] = {.lex_state = 2}, - [1932] = {.lex_state = 2}, - [1933] = {.lex_state = 2}, - [1934] = {.lex_state = 2}, - [1935] = {.lex_state = 2}, - [1936] = {.lex_state = 2}, - [1937] = {.lex_state = 2}, - [1938] = {.lex_state = 2}, - [1939] = {.lex_state = 2}, - [1940] = {.lex_state = 2}, - [1941] = {.lex_state = 2}, - [1942] = {.lex_state = 2}, - [1943] = {.lex_state = 2}, - [1944] = {.lex_state = 2}, - [1945] = {.lex_state = 2}, - [1946] = {.lex_state = 2}, - [1947] = {.lex_state = 2}, - [1948] = {.lex_state = 2}, - [1949] = {.lex_state = 2}, - [1950] = {.lex_state = 2}, - [1951] = {.lex_state = 2}, - [1952] = {.lex_state = 2}, - [1953] = {.lex_state = 2}, - [1954] = {.lex_state = 2}, - [1955] = {.lex_state = 2}, - [1956] = {.lex_state = 2}, - [1957] = {.lex_state = 2}, - [1958] = {.lex_state = 2}, - [1959] = {.lex_state = 2}, - [1960] = {.lex_state = 2}, - [1961] = {.lex_state = 2}, - [1962] = {.lex_state = 2}, - [1963] = {.lex_state = 2}, - [1964] = {.lex_state = 2}, - [1965] = {.lex_state = 2}, - [1966] = {.lex_state = 2}, - [1967] = {.lex_state = 2}, - [1968] = {.lex_state = 2}, - [1969] = {.lex_state = 2}, - [1970] = {.lex_state = 2}, - [1971] = {.lex_state = 2}, - [1972] = {.lex_state = 2}, - [1973] = {.lex_state = 2}, - [1974] = {.lex_state = 2}, - [1975] = {.lex_state = 2}, - [1976] = {.lex_state = 2}, - [1977] = {.lex_state = 2}, - [1978] = {.lex_state = 2}, - [1979] = {.lex_state = 2}, - [1980] = {.lex_state = 0}, - [1981] = {.lex_state = 2}, - [1982] = {.lex_state = 2}, - [1983] = {.lex_state = 2}, - [1984] = {.lex_state = 0}, - [1985] = {.lex_state = 2}, - [1986] = {.lex_state = 2}, - [1987] = {.lex_state = 2}, - [1988] = {.lex_state = 2}, - [1989] = {.lex_state = 2}, - [1990] = {.lex_state = 2}, - [1991] = {.lex_state = 2}, - [1992] = {.lex_state = 2}, - [1993] = {.lex_state = 2}, - [1994] = {.lex_state = 2}, - [1995] = {.lex_state = 2}, - [1996] = {.lex_state = 2}, - [1997] = {.lex_state = 2}, - [1998] = {.lex_state = 0}, - [1999] = {.lex_state = 2}, - [2000] = {.lex_state = 2}, - [2001] = {.lex_state = 2}, - [2002] = {.lex_state = 2}, - [2003] = {.lex_state = 2}, - [2004] = {.lex_state = 2}, - [2005] = {.lex_state = 2}, - [2006] = {.lex_state = 2}, - [2007] = {.lex_state = 2}, - [2008] = {.lex_state = 2}, - [2009] = {.lex_state = 2}, - [2010] = {.lex_state = 2}, - [2011] = {.lex_state = 2}, - [2012] = {.lex_state = 2}, - [2013] = {.lex_state = 2}, - [2014] = {.lex_state = 2}, - [2015] = {.lex_state = 0}, - [2016] = {.lex_state = 2}, - [2017] = {.lex_state = 2}, - [2018] = {.lex_state = 2}, - [2019] = {.lex_state = 2}, - [2020] = {.lex_state = 0}, - [2021] = {.lex_state = 2}, - [2022] = {.lex_state = 2}, - [2023] = {.lex_state = 2}, - [2024] = {.lex_state = 2}, - [2025] = {.lex_state = 2}, - [2026] = {.lex_state = 2}, - [2027] = {.lex_state = 2}, - [2028] = {.lex_state = 2}, - [2029] = {.lex_state = 2}, - [2030] = {.lex_state = 0}, - [2031] = {.lex_state = 2}, - [2032] = {.lex_state = 2}, - [2033] = {.lex_state = 2}, - [2034] = {.lex_state = 2}, - [2035] = {.lex_state = 2}, - [2036] = {.lex_state = 2}, - [2037] = {.lex_state = 2}, - [2038] = {.lex_state = 2}, - [2039] = {.lex_state = 2}, - [2040] = {.lex_state = 2}, - [2041] = {.lex_state = 2}, - [2042] = {.lex_state = 0}, - [2043] = {.lex_state = 2}, - [2044] = {.lex_state = 2}, - [2045] = {.lex_state = 2}, - [2046] = {.lex_state = 2}, - [2047] = {.lex_state = 2}, - [2048] = {.lex_state = 2}, - [2049] = {.lex_state = 2}, - [2050] = {.lex_state = 2}, - [2051] = {.lex_state = 2}, - [2052] = {.lex_state = 2}, - [2053] = {.lex_state = 2}, - [2054] = {.lex_state = 2}, - [2055] = {.lex_state = 0}, - [2056] = {.lex_state = 2}, - [2057] = {.lex_state = 2}, - [2058] = {.lex_state = 2}, - [2059] = {.lex_state = 2}, - [2060] = {.lex_state = 2}, - [2061] = {.lex_state = 2}, - [2062] = {.lex_state = 2}, - [2063] = {.lex_state = 2}, - [2064] = {.lex_state = 2}, - [2065] = {.lex_state = 2}, - [2066] = {.lex_state = 2}, - [2067] = {.lex_state = 2}, - [2068] = {.lex_state = 2}, - [2069] = {.lex_state = 2}, - [2070] = {.lex_state = 2}, - [2071] = {.lex_state = 2}, - [2072] = {.lex_state = 2}, - [2073] = {.lex_state = 2}, - [2074] = {.lex_state = 2}, - [2075] = {.lex_state = 2}, - [2076] = {.lex_state = 2}, - [2077] = {.lex_state = 2}, - [2078] = {.lex_state = 2}, - [2079] = {.lex_state = 2}, - [2080] = {.lex_state = 2}, - [2081] = {.lex_state = 2}, - [2082] = {.lex_state = 2}, - [2083] = {.lex_state = 2}, - [2084] = {.lex_state = 2}, - [2085] = {.lex_state = 2}, - [2086] = {.lex_state = 2}, - [2087] = {.lex_state = 2}, - [2088] = {.lex_state = 2}, - [2089] = {.lex_state = 2}, - [2090] = {.lex_state = 2}, - [2091] = {.lex_state = 2}, - [2092] = {.lex_state = 2}, - [2093] = {.lex_state = 2}, - [2094] = {.lex_state = 2}, - [2095] = {.lex_state = 2}, - [2096] = {.lex_state = 2}, - [2097] = {.lex_state = 2}, - [2098] = {.lex_state = 2}, - [2099] = {.lex_state = 2}, - [2100] = {.lex_state = 2}, - [2101] = {.lex_state = 2}, - [2102] = {.lex_state = 2}, + [912] = {.lex_state = 4}, + [913] = {.lex_state = 4}, + [914] = {.lex_state = 4}, + [915] = {.lex_state = 4}, + [916] = {.lex_state = 4}, + [917] = {.lex_state = 4}, + [918] = {.lex_state = 4}, + [919] = {.lex_state = 3}, + [920] = {.lex_state = 3}, + [921] = {.lex_state = 3}, + [922] = {.lex_state = 3}, + [923] = {.lex_state = 3}, + [924] = {.lex_state = 3}, + [925] = {.lex_state = 3}, + [926] = {.lex_state = 3}, + [927] = {.lex_state = 3}, + [928] = {.lex_state = 3}, + [929] = {.lex_state = 3}, + [930] = {.lex_state = 3}, + [931] = {.lex_state = 3}, + [932] = {.lex_state = 3}, + [933] = {.lex_state = 3}, + [934] = {.lex_state = 3}, + [935] = {.lex_state = 3}, + [936] = {.lex_state = 3}, + [937] = {.lex_state = 3}, + [938] = {.lex_state = 3}, + [939] = {.lex_state = 3}, + [940] = {.lex_state = 3}, + [941] = {.lex_state = 3}, + [942] = {.lex_state = 3}, + [943] = {.lex_state = 3}, + [944] = {.lex_state = 3}, + [945] = {.lex_state = 3}, + [946] = {.lex_state = 3}, + [947] = {.lex_state = 3}, + [948] = {.lex_state = 3}, + [949] = {.lex_state = 3}, + [950] = {.lex_state = 3}, + [951] = {.lex_state = 3}, + [952] = {.lex_state = 3}, + [953] = {.lex_state = 3}, + [954] = {.lex_state = 3}, + [955] = {.lex_state = 3}, + [956] = {.lex_state = 3}, + [957] = {.lex_state = 3}, + [958] = {.lex_state = 3}, + [959] = {.lex_state = 3}, + [960] = {.lex_state = 3}, + [961] = {.lex_state = 3}, + [962] = {.lex_state = 3}, + [963] = {.lex_state = 3}, + [964] = {.lex_state = 3}, + [965] = {.lex_state = 3}, + [966] = {.lex_state = 3}, + [967] = {.lex_state = 3}, + [968] = {.lex_state = 3}, + [969] = {.lex_state = 3}, + [970] = {.lex_state = 3}, + [971] = {.lex_state = 3}, + [972] = {.lex_state = 3}, + [973] = {.lex_state = 3}, + [974] = {.lex_state = 3}, + [975] = {.lex_state = 3}, + [976] = {.lex_state = 3}, + [977] = {.lex_state = 3}, + [978] = {.lex_state = 3}, + [979] = {.lex_state = 3}, + [980] = {.lex_state = 3}, + [981] = {.lex_state = 3}, + [982] = {.lex_state = 3}, + [983] = {.lex_state = 3}, + [984] = {.lex_state = 3}, + [985] = {.lex_state = 3}, + [986] = {.lex_state = 3}, + [987] = {.lex_state = 3}, + [988] = {.lex_state = 3}, + [989] = {.lex_state = 3}, + [990] = {.lex_state = 3}, + [991] = {.lex_state = 3}, + [992] = {.lex_state = 3}, + [993] = {.lex_state = 3}, + [994] = {.lex_state = 3}, + [995] = {.lex_state = 3}, + [996] = {.lex_state = 3}, + [997] = {.lex_state = 3}, + [998] = {.lex_state = 3}, + [999] = {.lex_state = 3}, + [1000] = {.lex_state = 3}, + [1001] = {.lex_state = 3}, + [1002] = {.lex_state = 3}, + [1003] = {.lex_state = 3}, + [1004] = {.lex_state = 6}, + [1005] = {.lex_state = 6}, + [1006] = {.lex_state = 6}, + [1007] = {.lex_state = 6}, + [1008] = {.lex_state = 6}, + [1009] = {.lex_state = 6}, + [1010] = {.lex_state = 2}, + [1011] = {.lex_state = 2}, + [1012] = {.lex_state = 2}, + [1013] = {.lex_state = 2}, + [1014] = {.lex_state = 2}, + [1015] = {.lex_state = 2}, + [1016] = {.lex_state = 2}, + [1017] = {.lex_state = 2}, + [1018] = {.lex_state = 2}, + [1019] = {.lex_state = 2}, + [1020] = {.lex_state = 2}, + [1021] = {.lex_state = 2}, + [1022] = {.lex_state = 2}, + [1023] = {.lex_state = 2}, + [1024] = {.lex_state = 2}, + [1025] = {.lex_state = 2}, + [1026] = {.lex_state = 2}, + [1027] = {.lex_state = 2}, + [1028] = {.lex_state = 4}, + [1029] = {.lex_state = 4}, + [1030] = {.lex_state = 2}, + [1031] = {.lex_state = 4}, + [1032] = {.lex_state = 4}, + [1033] = {.lex_state = 4}, + [1034] = {.lex_state = 2}, + [1035] = {.lex_state = 4}, + [1036] = {.lex_state = 2}, + [1037] = {.lex_state = 2}, + [1038] = {.lex_state = 2}, + [1039] = {.lex_state = 2}, + [1040] = {.lex_state = 2}, + [1041] = {.lex_state = 2}, + [1042] = {.lex_state = 26}, + [1043] = {.lex_state = 26}, + [1044] = {.lex_state = 2}, + [1045] = {.lex_state = 26}, + [1046] = {.lex_state = 26}, + [1047] = {.lex_state = 26}, + [1048] = {.lex_state = 26}, + [1049] = {.lex_state = 4}, + [1050] = {.lex_state = 2}, + [1051] = {.lex_state = 26}, + [1052] = {.lex_state = 26}, + [1053] = {.lex_state = 26}, + [1054] = {.lex_state = 26}, + [1055] = {.lex_state = 26}, + [1056] = {.lex_state = 26}, + [1057] = {.lex_state = 26}, + [1058] = {.lex_state = 26}, + [1059] = {.lex_state = 26}, + [1060] = {.lex_state = 26}, + [1061] = {.lex_state = 26}, + [1062] = {.lex_state = 26}, + [1063] = {.lex_state = 26}, + [1064] = {.lex_state = 26}, + [1065] = {.lex_state = 26}, + [1066] = {.lex_state = 26}, + [1067] = {.lex_state = 26}, + [1068] = {.lex_state = 26}, + [1069] = {.lex_state = 26}, + [1070] = {.lex_state = 26}, + [1071] = {.lex_state = 26}, + [1072] = {.lex_state = 26}, + [1073] = {.lex_state = 26}, + [1074] = {.lex_state = 26}, + [1075] = {.lex_state = 26}, + [1076] = {.lex_state = 26}, + [1077] = {.lex_state = 26}, + [1078] = {.lex_state = 2}, + [1079] = {.lex_state = 2}, + [1080] = {.lex_state = 2}, + [1081] = {.lex_state = 0}, + [1082] = {.lex_state = 2}, + [1083] = {.lex_state = 2}, + [1084] = {.lex_state = 2}, + [1085] = {.lex_state = 0}, + [1086] = {.lex_state = 0}, + [1087] = {.lex_state = 2}, + [1088] = {.lex_state = 2}, + [1089] = {.lex_state = 2}, + [1090] = {.lex_state = 2}, + [1091] = {.lex_state = 2}, + [1092] = {.lex_state = 2}, + [1093] = {.lex_state = 2}, + [1094] = {.lex_state = 2}, + [1095] = {.lex_state = 0}, + [1096] = {.lex_state = 2}, + [1097] = {.lex_state = 2}, + [1098] = {.lex_state = 2}, + [1099] = {.lex_state = 2}, + [1100] = {.lex_state = 0}, + [1101] = {.lex_state = 0}, + [1102] = {.lex_state = 0}, + [1103] = {.lex_state = 0}, + [1104] = {.lex_state = 0}, + [1105] = {.lex_state = 0}, + [1106] = {.lex_state = 0}, + [1107] = {.lex_state = 0}, + [1108] = {.lex_state = 0}, + [1109] = {.lex_state = 0}, + [1110] = {.lex_state = 2}, + [1111] = {.lex_state = 2}, + [1112] = {.lex_state = 2}, + [1113] = {.lex_state = 2}, + [1114] = {.lex_state = 2}, + [1115] = {.lex_state = 2}, + [1116] = {.lex_state = 2}, + [1117] = {.lex_state = 2}, + [1118] = {.lex_state = 2}, + [1119] = {.lex_state = 0}, + [1120] = {.lex_state = 2}, + [1121] = {.lex_state = 2}, + [1122] = {.lex_state = 2}, + [1123] = {.lex_state = 2}, + [1124] = {.lex_state = 2}, + [1125] = {.lex_state = 2}, + [1126] = {.lex_state = 2}, + [1127] = {.lex_state = 2}, + [1128] = {.lex_state = 2}, + [1129] = {.lex_state = 2}, + [1130] = {.lex_state = 2}, + [1131] = {.lex_state = 2}, + [1132] = {.lex_state = 2}, + [1133] = {.lex_state = 2}, + [1134] = {.lex_state = 2}, + [1135] = {.lex_state = 2}, + [1136] = {.lex_state = 2}, + [1137] = {.lex_state = 2}, + [1138] = {.lex_state = 2}, + [1139] = {.lex_state = 2}, + [1140] = {.lex_state = 2}, + [1141] = {.lex_state = 2}, + [1142] = {.lex_state = 2}, + [1143] = {.lex_state = 0}, + [1144] = {.lex_state = 0}, + [1145] = {.lex_state = 2}, + [1146] = {.lex_state = 2}, + [1147] = {.lex_state = 2}, + [1148] = {.lex_state = 2}, + [1149] = {.lex_state = 2}, + [1150] = {.lex_state = 2}, + [1151] = {.lex_state = 2}, + [1152] = {.lex_state = 2}, + [1153] = {.lex_state = 2}, + [1154] = {.lex_state = 2}, + [1155] = {.lex_state = 0}, + [1156] = {.lex_state = 2}, + [1157] = {.lex_state = 2}, + [1158] = {.lex_state = 2}, + [1159] = {.lex_state = 2}, + [1160] = {.lex_state = 2}, + [1161] = {.lex_state = 2}, + [1162] = {.lex_state = 2}, + [1163] = {.lex_state = 2}, + [1164] = {.lex_state = 2}, + [1165] = {.lex_state = 2}, + [1166] = {.lex_state = 2}, + [1167] = {.lex_state = 2}, + [1168] = {.lex_state = 2}, + [1169] = {.lex_state = 2}, + [1170] = {.lex_state = 2}, + [1171] = {.lex_state = 2}, + [1172] = {.lex_state = 2}, + [1173] = {.lex_state = 2}, + [1174] = {.lex_state = 2}, + [1175] = {.lex_state = 2}, + [1176] = {.lex_state = 2}, + [1177] = {.lex_state = 26}, + [1178] = {.lex_state = 2}, + [1179] = {.lex_state = 2}, + [1180] = {.lex_state = 2}, + [1181] = {.lex_state = 2}, + [1182] = {.lex_state = 2}, + [1183] = {.lex_state = 2}, + [1184] = {.lex_state = 2}, + [1185] = {.lex_state = 2}, + [1186] = {.lex_state = 2}, + [1187] = {.lex_state = 2}, + [1188] = {.lex_state = 2}, + [1189] = {.lex_state = 2}, + [1190] = {.lex_state = 2}, + [1191] = {.lex_state = 2}, + [1192] = {.lex_state = 2}, + [1193] = {.lex_state = 0}, + [1194] = {.lex_state = 2}, + [1195] = {.lex_state = 2}, + [1196] = {.lex_state = 2}, + [1197] = {.lex_state = 2}, + [1198] = {.lex_state = 2}, + [1199] = {.lex_state = 2}, + [1200] = {.lex_state = 2}, + [1201] = {.lex_state = 2}, + [1202] = {.lex_state = 2}, + [1203] = {.lex_state = 2}, + [1204] = {.lex_state = 2}, + [1205] = {.lex_state = 2}, + [1206] = {.lex_state = 2}, + [1207] = {.lex_state = 2}, + [1208] = {.lex_state = 2}, + [1209] = {.lex_state = 2}, + [1210] = {.lex_state = 0}, + [1211] = {.lex_state = 2}, + [1212] = {.lex_state = 2}, + [1213] = {.lex_state = 2}, + [1214] = {.lex_state = 2}, + [1215] = {.lex_state = 2}, + [1216] = {.lex_state = 2}, + [1217] = {.lex_state = 2}, + [1218] = {.lex_state = 2}, + [1219] = {.lex_state = 2}, + [1220] = {.lex_state = 2}, + [1221] = {.lex_state = 2}, + [1222] = {.lex_state = 2}, + [1223] = {.lex_state = 2}, + [1224] = {.lex_state = 2}, + [1225] = {.lex_state = 0}, + [1226] = {.lex_state = 2}, + [1227] = {.lex_state = 2}, + [1228] = {.lex_state = 2}, + [1229] = {.lex_state = 2}, + [1230] = {.lex_state = 2}, + [1231] = {.lex_state = 2}, + [1232] = {.lex_state = 2}, + [1233] = {.lex_state = 2}, + [1234] = {.lex_state = 2}, + [1235] = {.lex_state = 2}, + [1236] = {.lex_state = 2}, + [1237] = {.lex_state = 2}, + [1238] = {.lex_state = 2}, + [1239] = {.lex_state = 2}, + [1240] = {.lex_state = 2}, + [1241] = {.lex_state = 2}, + [1242] = {.lex_state = 2}, + [1243] = {.lex_state = 2}, + [1244] = {.lex_state = 2}, + [1245] = {.lex_state = 2}, + [1246] = {.lex_state = 2}, + [1247] = {.lex_state = 2}, + [1248] = {.lex_state = 2}, + [1249] = {.lex_state = 2}, + [1250] = {.lex_state = 2}, + [1251] = {.lex_state = 2}, + [1252] = {.lex_state = 2}, + [1253] = {.lex_state = 2}, + [1254] = {.lex_state = 2}, + [1255] = {.lex_state = 2}, + [1256] = {.lex_state = 2}, + [1257] = {.lex_state = 2}, + [1258] = {.lex_state = 2}, + [1259] = {.lex_state = 2}, + [1260] = {.lex_state = 2}, + [1261] = {.lex_state = 2}, + [1262] = {.lex_state = 2}, + [1263] = {.lex_state = 2}, + [1264] = {.lex_state = 2}, + [1265] = {.lex_state = 2}, + [1266] = {.lex_state = 2}, + [1267] = {.lex_state = 2}, + [1268] = {.lex_state = 2}, + [1269] = {.lex_state = 2}, + [1270] = {.lex_state = 2}, + [1271] = {.lex_state = 2}, + [1272] = {.lex_state = 2}, + [1273] = {.lex_state = 2}, + [1274] = {.lex_state = 2}, + [1275] = {.lex_state = 2}, + [1276] = {.lex_state = 2}, + [1277] = {.lex_state = 2}, + [1278] = {.lex_state = 2}, + [1279] = {.lex_state = 2}, + [1280] = {.lex_state = 2}, + [1281] = {.lex_state = 2}, + [1282] = {.lex_state = 2}, + [1283] = {.lex_state = 2}, + [1284] = {.lex_state = 2}, + [1285] = {.lex_state = 2}, + [1286] = {.lex_state = 2}, + [1287] = {.lex_state = 2}, + [1288] = {.lex_state = 2}, + [1289] = {.lex_state = 2}, + [1290] = {.lex_state = 2}, + [1291] = {.lex_state = 2}, + [1292] = {.lex_state = 2}, + [1293] = {.lex_state = 2}, + [1294] = {.lex_state = 2}, + [1295] = {.lex_state = 2}, + [1296] = {.lex_state = 2}, + [1297] = {.lex_state = 2}, + [1298] = {.lex_state = 2}, + [1299] = {.lex_state = 2}, + [1300] = {.lex_state = 2}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -6674,41 +5035,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_reverse] = ACTIONS(1), }, [1] = { - [sym_root] = STATE(1891), - [sym_block] = STATE(378), - [sym_statement] = STATE(381), - [sym_expression] = STATE(925), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(867), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(980), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_root_repeat1] = STATE(378), - [aux_sym_block_repeat1] = STATE(381), + [sym_root] = STATE(1144), + [sym_block] = STATE(231), + [sym_statement] = STATE(226), + [sym_expression] = STATE(535), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(561), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [aux_sym_root_repeat1] = STATE(231), + [aux_sym_block_repeat1] = STATE(226), [sym_identifier] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(7), @@ -6767,41 +5128,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_reverse] = ACTIONS(51), }, [2] = { - [sym_block] = STATE(629), - [sym_statement] = STATE(10), - [sym_expression] = STATE(571), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_math_operator] = STATE(1313), - [sym_logic] = STATE(631), - [sym_logic_operator] = STATE(1312), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(558), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(1817), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(265), - [aux_sym_block_repeat1] = STATE(10), + [sym_block] = STATE(383), + [sym_statement] = STATE(8), + [sym_expression] = STATE(355), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(849), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(811), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(346), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1225), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(170), + [aux_sym_block_repeat1] = STATE(8), [ts_builtin_sym_end] = ACTIONS(53), [sym_identifier] = ACTIONS(55), [sym__comment] = ACTIONS(3), @@ -6818,27 +5179,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(65), [anon_sym_LBRACK] = ACTIONS(67), [anon_sym_RBRACK] = ACTIONS(53), - [anon_sym_EQ] = ACTIONS(69), - [anon_sym_COLON] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(69), [anon_sym_DOT_DOT] = ACTIONS(53), - [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_PLUS_EQ] = ACTIONS(53), - [anon_sym_DASH_EQ] = ACTIONS(53), - [anon_sym_if] = ACTIONS(81), + [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(53), - [anon_sym_else] = ACTIONS(69), + [anon_sym_else] = ACTIONS(81), [anon_sym_match] = ACTIONS(83), [anon_sym_EQ_GT] = ACTIONS(85), [anon_sym_while] = ACTIONS(87), @@ -6886,43 +5244,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_reverse] = ACTIONS(113), }, [3] = { - [sym_block] = STATE(629), - [sym_statement] = STATE(12), - [sym_expression] = STATE(583), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_math_operator] = STATE(1376), - [sym_logic] = STATE(631), - [sym_logic_operator] = STATE(1377), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(567), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(2030), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(271), - [aux_sym_block_repeat1] = STATE(12), + [sym_block] = STATE(383), + [sym_statement] = STATE(11), + [sym_expression] = STATE(364), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(732), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(730), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(349), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1100), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(181), + [aux_sym_block_repeat1] = STATE(11), [ts_builtin_sym_end] = ACTIONS(53), - [sym_identifier] = ACTIONS(55), + [sym_identifier] = ACTIONS(115), [sym__comment] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(57), [anon_sym_RBRACE] = ACTIONS(53), @@ -6937,576 +5295,335 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(65), [anon_sym_LBRACK] = ACTIONS(67), [anon_sym_RBRACK] = ACTIONS(53), - [anon_sym_EQ] = ACTIONS(69), - [anon_sym_COLON] = ACTIONS(115), - [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_COLON] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_PLUS_EQ] = ACTIONS(53), - [anon_sym_DASH_EQ] = ACTIONS(53), - [anon_sym_if] = ACTIONS(117), + [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(119), [anon_sym_elseif] = ACTIONS(53), - [anon_sym_else] = ACTIONS(69), - [anon_sym_match] = ACTIONS(119), - [anon_sym_EQ_GT] = ACTIONS(121), - [anon_sym_while] = ACTIONS(123), - [anon_sym_for] = ACTIONS(125), - [anon_sym_asyncfor] = ACTIONS(127), - [anon_sym_transform] = ACTIONS(129), - [anon_sym_filter] = ACTIONS(131), - [anon_sym_find] = ACTIONS(133), - [anon_sym_remove] = ACTIONS(135), - [anon_sym_reduce] = ACTIONS(137), - [anon_sym_select] = ACTIONS(139), - [anon_sym_insert] = ACTIONS(141), - [anon_sym_async] = ACTIONS(143), + [anon_sym_else] = ACTIONS(81), + [anon_sym_match] = ACTIONS(121), + [anon_sym_EQ_GT] = ACTIONS(123), + [anon_sym_while] = ACTIONS(125), + [anon_sym_for] = ACTIONS(127), + [anon_sym_asyncfor] = ACTIONS(129), + [anon_sym_transform] = ACTIONS(131), + [anon_sym_filter] = ACTIONS(133), + [anon_sym_find] = ACTIONS(135), + [anon_sym_remove] = ACTIONS(137), + [anon_sym_reduce] = ACTIONS(139), + [anon_sym_select] = ACTIONS(141), + [anon_sym_insert] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(147), - [anon_sym_assert_equal] = ACTIONS(147), - [anon_sym_download] = ACTIONS(147), - [anon_sym_help] = ACTIONS(147), - [anon_sym_length] = ACTIONS(147), - [anon_sym_output] = ACTIONS(147), - [anon_sym_output_error] = ACTIONS(147), - [anon_sym_type] = ACTIONS(147), - [anon_sym_append] = ACTIONS(147), - [anon_sym_metadata] = ACTIONS(147), - [anon_sym_move] = ACTIONS(147), - [anon_sym_read] = ACTIONS(147), - [anon_sym_workdir] = ACTIONS(147), - [anon_sym_write] = ACTIONS(147), - [anon_sym_from_json] = ACTIONS(147), - [anon_sym_to_json] = ACTIONS(147), - [anon_sym_to_string] = ACTIONS(147), - [anon_sym_to_float] = ACTIONS(147), - [anon_sym_bash] = ACTIONS(147), - [anon_sym_fish] = ACTIONS(147), - [anon_sym_raw] = ACTIONS(147), - [anon_sym_sh] = ACTIONS(147), - [anon_sym_zsh] = ACTIONS(147), - [anon_sym_random] = ACTIONS(147), - [anon_sym_random_boolean] = ACTIONS(147), - [anon_sym_random_float] = ACTIONS(147), - [anon_sym_random_integer] = ACTIONS(147), - [anon_sym_columns] = ACTIONS(147), - [anon_sym_rows] = ACTIONS(147), - [anon_sym_reverse] = ACTIONS(147), + [anon_sym_table] = ACTIONS(147), + [anon_sym_assert] = ACTIONS(149), + [anon_sym_assert_equal] = ACTIONS(149), + [anon_sym_download] = ACTIONS(149), + [anon_sym_help] = ACTIONS(149), + [anon_sym_length] = ACTIONS(149), + [anon_sym_output] = ACTIONS(149), + [anon_sym_output_error] = ACTIONS(149), + [anon_sym_type] = ACTIONS(149), + [anon_sym_append] = ACTIONS(149), + [anon_sym_metadata] = ACTIONS(149), + [anon_sym_move] = ACTIONS(149), + [anon_sym_read] = ACTIONS(149), + [anon_sym_workdir] = ACTIONS(149), + [anon_sym_write] = ACTIONS(149), + [anon_sym_from_json] = ACTIONS(149), + [anon_sym_to_json] = ACTIONS(149), + [anon_sym_to_string] = ACTIONS(149), + [anon_sym_to_float] = ACTIONS(149), + [anon_sym_bash] = ACTIONS(149), + [anon_sym_fish] = ACTIONS(149), + [anon_sym_raw] = ACTIONS(149), + [anon_sym_sh] = ACTIONS(149), + [anon_sym_zsh] = ACTIONS(149), + [anon_sym_random] = ACTIONS(149), + [anon_sym_random_boolean] = ACTIONS(149), + [anon_sym_random_float] = ACTIONS(149), + [anon_sym_random_integer] = ACTIONS(149), + [anon_sym_columns] = ACTIONS(149), + [anon_sym_rows] = ACTIONS(149), + [anon_sym_reverse] = ACTIONS(149), }, [4] = { - [sym_block] = STATE(735), - [sym_statement] = STATE(17), - [sym_expression] = STATE(601), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_math_operator] = STATE(1316), - [sym_logic] = STATE(706), - [sym_logic_operator] = STATE(1285), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(557), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1910), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(284), - [aux_sym_block_repeat1] = STATE(17), + [sym_block] = STATE(383), + [sym_statement] = STATE(16), + [sym_expression] = STATE(387), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(886), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(887), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(366), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1210), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(186), + [aux_sym_block_repeat1] = STATE(16), [ts_builtin_sym_end] = ACTIONS(53), - [sym_identifier] = ACTIONS(149), + [sym_identifier] = ACTIONS(151), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_LBRACE] = ACTIONS(57), [anon_sym_RBRACE] = ACTIONS(53), [anon_sym_SEMI] = ACTIONS(53), - [anon_sym_LPAREN] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(59), [anon_sym_RPAREN] = ACTIONS(53), - [anon_sym_COMMA] = ACTIONS(53), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(53), - [anon_sym_EQ] = ACTIONS(69), - [anon_sym_COLON] = ACTIONS(163), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(153), [anon_sym_DOT_DOT] = ACTIONS(53), - [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_PLUS_EQ] = ACTIONS(53), - [anon_sym_DASH_EQ] = ACTIONS(53), - [anon_sym_if] = ACTIONS(81), - [anon_sym_match] = ACTIONS(165), - [anon_sym_EQ_GT] = ACTIONS(167), - [anon_sym_while] = ACTIONS(169), - [anon_sym_for] = ACTIONS(171), - [anon_sym_asyncfor] = ACTIONS(173), - [anon_sym_transform] = ACTIONS(175), - [anon_sym_filter] = ACTIONS(177), - [anon_sym_find] = ACTIONS(179), - [anon_sym_remove] = ACTIONS(181), - [anon_sym_reduce] = ACTIONS(183), - [anon_sym_select] = ACTIONS(185), - [anon_sym_insert] = ACTIONS(187), - [anon_sym_async] = ACTIONS(189), + [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(155), + [anon_sym_elseif] = ACTIONS(53), + [anon_sym_else] = ACTIONS(81), + [anon_sym_match] = ACTIONS(157), + [anon_sym_EQ_GT] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_asyncfor] = ACTIONS(165), + [anon_sym_transform] = ACTIONS(167), + [anon_sym_filter] = ACTIONS(169), + [anon_sym_find] = ACTIONS(171), + [anon_sym_remove] = ACTIONS(173), + [anon_sym_reduce] = ACTIONS(175), + [anon_sym_select] = ACTIONS(177), + [anon_sym_insert] = ACTIONS(179), + [anon_sym_async] = ACTIONS(181), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(191), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_assert_equal] = ACTIONS(193), - [anon_sym_download] = ACTIONS(193), - [anon_sym_help] = ACTIONS(193), - [anon_sym_length] = ACTIONS(193), - [anon_sym_output] = ACTIONS(193), - [anon_sym_output_error] = ACTIONS(193), - [anon_sym_type] = ACTIONS(193), - [anon_sym_append] = ACTIONS(193), - [anon_sym_metadata] = ACTIONS(193), - [anon_sym_move] = ACTIONS(193), - [anon_sym_read] = ACTIONS(193), - [anon_sym_workdir] = ACTIONS(193), - [anon_sym_write] = ACTIONS(193), - [anon_sym_from_json] = ACTIONS(193), - [anon_sym_to_json] = ACTIONS(193), - [anon_sym_to_string] = ACTIONS(193), - [anon_sym_to_float] = ACTIONS(193), - [anon_sym_bash] = ACTIONS(193), - [anon_sym_fish] = ACTIONS(193), - [anon_sym_raw] = ACTIONS(193), - [anon_sym_sh] = ACTIONS(193), - [anon_sym_zsh] = ACTIONS(193), - [anon_sym_random] = ACTIONS(193), - [anon_sym_random_boolean] = ACTIONS(193), - [anon_sym_random_float] = ACTIONS(193), - [anon_sym_random_integer] = ACTIONS(193), - [anon_sym_columns] = ACTIONS(193), - [anon_sym_rows] = ACTIONS(193), - [anon_sym_reverse] = ACTIONS(193), + [anon_sym_table] = ACTIONS(183), + [anon_sym_assert] = ACTIONS(185), + [anon_sym_assert_equal] = ACTIONS(185), + [anon_sym_download] = ACTIONS(185), + [anon_sym_help] = ACTIONS(185), + [anon_sym_length] = ACTIONS(185), + [anon_sym_output] = ACTIONS(185), + [anon_sym_output_error] = ACTIONS(185), + [anon_sym_type] = ACTIONS(185), + [anon_sym_append] = ACTIONS(185), + [anon_sym_metadata] = ACTIONS(185), + [anon_sym_move] = ACTIONS(185), + [anon_sym_read] = ACTIONS(185), + [anon_sym_workdir] = ACTIONS(185), + [anon_sym_write] = ACTIONS(185), + [anon_sym_from_json] = ACTIONS(185), + [anon_sym_to_json] = ACTIONS(185), + [anon_sym_to_string] = ACTIONS(185), + [anon_sym_to_float] = ACTIONS(185), + [anon_sym_bash] = ACTIONS(185), + [anon_sym_fish] = ACTIONS(185), + [anon_sym_raw] = ACTIONS(185), + [anon_sym_sh] = ACTIONS(185), + [anon_sym_zsh] = ACTIONS(185), + [anon_sym_random] = ACTIONS(185), + [anon_sym_random_boolean] = ACTIONS(185), + [anon_sym_random_float] = ACTIONS(185), + [anon_sym_random_integer] = ACTIONS(185), + [anon_sym_columns] = ACTIONS(185), + [anon_sym_rows] = ACTIONS(185), + [anon_sym_reverse] = ACTIONS(185), }, [5] = { - [sym_block] = STATE(629), - [sym_statement] = STATE(21), - [sym_expression] = STATE(593), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_math_operator] = STATE(1414), - [sym_logic] = STATE(631), - [sym_logic_operator] = STATE(1413), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(584), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(1776), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(286), - [aux_sym_block_repeat1] = STATE(21), + [sym_block] = STATE(487), + [sym_statement] = STATE(17), + [sym_expression] = STATE(402), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(908), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(909), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(348), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1104), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(17), [ts_builtin_sym_end] = ACTIONS(53), - [sym_identifier] = ACTIONS(55), + [sym_identifier] = ACTIONS(187), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_RBRACE] = ACTIONS(53), [anon_sym_SEMI] = ACTIONS(53), - [anon_sym_LPAREN] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(9), [anon_sym_RPAREN] = ACTIONS(53), - [sym_integer] = ACTIONS(61), - [sym_float] = ACTIONS(63), - [sym_string] = ACTIONS(63), - [anon_sym_true] = ACTIONS(65), - [anon_sym_false] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_EQ] = ACTIONS(69), - [anon_sym_COLON] = ACTIONS(195), + [anon_sym_COMMA] = ACTIONS(53), + [sym_integer] = ACTIONS(11), + [sym_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(53), + [anon_sym_COLON] = ACTIONS(191), [anon_sym_DOT_DOT] = ACTIONS(53), - [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_PLUS_EQ] = ACTIONS(53), - [anon_sym_DASH_EQ] = ACTIONS(53), - [anon_sym_if] = ACTIONS(197), - [anon_sym_elseif] = ACTIONS(53), - [anon_sym_else] = ACTIONS(69), - [anon_sym_match] = ACTIONS(199), - [anon_sym_EQ_GT] = ACTIONS(201), - [anon_sym_while] = ACTIONS(203), - [anon_sym_for] = ACTIONS(205), - [anon_sym_asyncfor] = ACTIONS(207), - [anon_sym_transform] = ACTIONS(209), - [anon_sym_filter] = ACTIONS(211), - [anon_sym_find] = ACTIONS(213), - [anon_sym_remove] = ACTIONS(215), - [anon_sym_reduce] = ACTIONS(217), - [anon_sym_select] = ACTIONS(219), - [anon_sym_insert] = ACTIONS(221), - [anon_sym_async] = ACTIONS(223), + [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(193), + [anon_sym_EQ_GT] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_for] = ACTIONS(199), + [anon_sym_asyncfor] = ACTIONS(201), + [anon_sym_transform] = ACTIONS(203), + [anon_sym_filter] = ACTIONS(205), + [anon_sym_find] = ACTIONS(207), + [anon_sym_remove] = ACTIONS(209), + [anon_sym_reduce] = ACTIONS(211), + [anon_sym_select] = ACTIONS(213), + [anon_sym_insert] = ACTIONS(215), + [anon_sym_async] = ACTIONS(217), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(225), - [anon_sym_assert] = ACTIONS(227), - [anon_sym_assert_equal] = ACTIONS(227), - [anon_sym_download] = ACTIONS(227), - [anon_sym_help] = ACTIONS(227), - [anon_sym_length] = ACTIONS(227), - [anon_sym_output] = ACTIONS(227), - [anon_sym_output_error] = ACTIONS(227), - [anon_sym_type] = ACTIONS(227), - [anon_sym_append] = ACTIONS(227), - [anon_sym_metadata] = ACTIONS(227), - [anon_sym_move] = ACTIONS(227), - [anon_sym_read] = ACTIONS(227), - [anon_sym_workdir] = ACTIONS(227), - [anon_sym_write] = ACTIONS(227), - [anon_sym_from_json] = ACTIONS(227), - [anon_sym_to_json] = ACTIONS(227), - [anon_sym_to_string] = ACTIONS(227), - [anon_sym_to_float] = ACTIONS(227), - [anon_sym_bash] = ACTIONS(227), - [anon_sym_fish] = ACTIONS(227), - [anon_sym_raw] = ACTIONS(227), - [anon_sym_sh] = ACTIONS(227), - [anon_sym_zsh] = ACTIONS(227), - [anon_sym_random] = ACTIONS(227), - [anon_sym_random_boolean] = ACTIONS(227), - [anon_sym_random_float] = ACTIONS(227), - [anon_sym_random_integer] = ACTIONS(227), - [anon_sym_columns] = ACTIONS(227), - [anon_sym_rows] = ACTIONS(227), - [anon_sym_reverse] = ACTIONS(227), + [anon_sym_table] = ACTIONS(219), + [anon_sym_assert] = ACTIONS(221), + [anon_sym_assert_equal] = ACTIONS(221), + [anon_sym_download] = ACTIONS(221), + [anon_sym_help] = ACTIONS(221), + [anon_sym_length] = ACTIONS(221), + [anon_sym_output] = ACTIONS(221), + [anon_sym_output_error] = ACTIONS(221), + [anon_sym_type] = ACTIONS(221), + [anon_sym_append] = ACTIONS(221), + [anon_sym_metadata] = ACTIONS(221), + [anon_sym_move] = ACTIONS(221), + [anon_sym_read] = ACTIONS(221), + [anon_sym_workdir] = ACTIONS(221), + [anon_sym_write] = ACTIONS(221), + [anon_sym_from_json] = ACTIONS(221), + [anon_sym_to_json] = ACTIONS(221), + [anon_sym_to_string] = ACTIONS(221), + [anon_sym_to_float] = ACTIONS(221), + [anon_sym_bash] = ACTIONS(221), + [anon_sym_fish] = ACTIONS(221), + [anon_sym_raw] = ACTIONS(221), + [anon_sym_sh] = ACTIONS(221), + [anon_sym_zsh] = ACTIONS(221), + [anon_sym_random] = ACTIONS(221), + [anon_sym_random_boolean] = ACTIONS(221), + [anon_sym_random_float] = ACTIONS(221), + [anon_sym_random_integer] = ACTIONS(221), + [anon_sym_columns] = ACTIONS(221), + [anon_sym_rows] = ACTIONS(221), + [anon_sym_reverse] = ACTIONS(221), }, [6] = { - [sym_block] = STATE(811), - [sym_statement] = STATE(22), - [sym_expression] = STATE(685), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(576), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1362), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1363), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(647), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1984), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(302), - [aux_sym_block_repeat1] = STATE(22), + [sym_block] = STATE(383), + [sym_statement] = STATE(26), + [sym_expression] = STATE(448), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(838), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(837), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(414), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1085), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(203), + [aux_sym_block_repeat1] = STATE(26), [ts_builtin_sym_end] = ACTIONS(53), - [sym_identifier] = ACTIONS(229), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_RBRACE] = ACTIONS(53), - [anon_sym_SEMI] = ACTIONS(53), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_RPAREN] = ACTIONS(53), - [anon_sym_COMMA] = ACTIONS(53), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_RBRACK] = ACTIONS(53), - [anon_sym_COLON] = ACTIONS(243), - [anon_sym_DOT_DOT] = ACTIONS(53), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(245), - [anon_sym_elseif] = ACTIONS(53), - [anon_sym_else] = ACTIONS(69), - [anon_sym_match] = ACTIONS(247), - [anon_sym_EQ_GT] = ACTIONS(249), - [anon_sym_while] = ACTIONS(251), - [anon_sym_for] = ACTIONS(253), - [anon_sym_asyncfor] = ACTIONS(255), - [anon_sym_transform] = ACTIONS(257), - [anon_sym_filter] = ACTIONS(259), - [anon_sym_find] = ACTIONS(261), - [anon_sym_remove] = ACTIONS(263), - [anon_sym_reduce] = ACTIONS(265), - [anon_sym_select] = ACTIONS(267), - [anon_sym_insert] = ACTIONS(269), - [anon_sym_async] = ACTIONS(271), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(275), - [anon_sym_assert_equal] = ACTIONS(275), - [anon_sym_download] = ACTIONS(275), - [anon_sym_help] = ACTIONS(275), - [anon_sym_length] = ACTIONS(275), - [anon_sym_output] = ACTIONS(275), - [anon_sym_output_error] = ACTIONS(275), - [anon_sym_type] = ACTIONS(275), - [anon_sym_append] = ACTIONS(275), - [anon_sym_metadata] = ACTIONS(275), - [anon_sym_move] = ACTIONS(275), - [anon_sym_read] = ACTIONS(275), - [anon_sym_workdir] = ACTIONS(275), - [anon_sym_write] = ACTIONS(275), - [anon_sym_from_json] = ACTIONS(275), - [anon_sym_to_json] = ACTIONS(275), - [anon_sym_to_string] = ACTIONS(275), - [anon_sym_to_float] = ACTIONS(275), - [anon_sym_bash] = ACTIONS(275), - [anon_sym_fish] = ACTIONS(275), - [anon_sym_raw] = ACTIONS(275), - [anon_sym_sh] = ACTIONS(275), - [anon_sym_zsh] = ACTIONS(275), - [anon_sym_random] = ACTIONS(275), - [anon_sym_random_boolean] = ACTIONS(275), - [anon_sym_random_float] = ACTIONS(275), - [anon_sym_random_integer] = ACTIONS(275), - [anon_sym_columns] = ACTIONS(275), - [anon_sym_rows] = ACTIONS(275), - [anon_sym_reverse] = ACTIONS(275), - }, - [7] = { - [sym_block] = STATE(735), - [sym_statement] = STATE(24), - [sym_expression] = STATE(683), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_math_operator] = STATE(1261), - [sym_logic] = STATE(706), - [sym_logic_operator] = STATE(1219), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(573), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1813), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(311), - [aux_sym_block_repeat1] = STATE(24), - [ts_builtin_sym_end] = ACTIONS(53), - [sym_identifier] = ACTIONS(149), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_RBRACE] = ACTIONS(53), - [anon_sym_SEMI] = ACTIONS(53), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_RPAREN] = ACTIONS(53), - [anon_sym_COMMA] = ACTIONS(53), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(53), - [anon_sym_EQ] = ACTIONS(69), - [anon_sym_COLON] = ACTIONS(277), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_PLUS_EQ] = ACTIONS(53), - [anon_sym_DASH_EQ] = ACTIONS(53), - [anon_sym_if] = ACTIONS(117), - [anon_sym_match] = ACTIONS(279), - [anon_sym_EQ_GT] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_for] = ACTIONS(285), - [anon_sym_asyncfor] = ACTIONS(287), - [anon_sym_transform] = ACTIONS(289), - [anon_sym_filter] = ACTIONS(291), - [anon_sym_find] = ACTIONS(293), - [anon_sym_remove] = ACTIONS(295), - [anon_sym_reduce] = ACTIONS(297), - [anon_sym_select] = ACTIONS(299), - [anon_sym_insert] = ACTIONS(301), - [anon_sym_async] = ACTIONS(303), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(305), - [anon_sym_assert] = ACTIONS(307), - [anon_sym_assert_equal] = ACTIONS(307), - [anon_sym_download] = ACTIONS(307), - [anon_sym_help] = ACTIONS(307), - [anon_sym_length] = ACTIONS(307), - [anon_sym_output] = ACTIONS(307), - [anon_sym_output_error] = ACTIONS(307), - [anon_sym_type] = ACTIONS(307), - [anon_sym_append] = ACTIONS(307), - [anon_sym_metadata] = ACTIONS(307), - [anon_sym_move] = ACTIONS(307), - [anon_sym_read] = ACTIONS(307), - [anon_sym_workdir] = ACTIONS(307), - [anon_sym_write] = ACTIONS(307), - [anon_sym_from_json] = ACTIONS(307), - [anon_sym_to_json] = ACTIONS(307), - [anon_sym_to_string] = ACTIONS(307), - [anon_sym_to_float] = ACTIONS(307), - [anon_sym_bash] = ACTIONS(307), - [anon_sym_fish] = ACTIONS(307), - [anon_sym_raw] = ACTIONS(307), - [anon_sym_sh] = ACTIONS(307), - [anon_sym_zsh] = ACTIONS(307), - [anon_sym_random] = ACTIONS(307), - [anon_sym_random_boolean] = ACTIONS(307), - [anon_sym_random_float] = ACTIONS(307), - [anon_sym_random_integer] = ACTIONS(307), - [anon_sym_columns] = ACTIONS(307), - [anon_sym_rows] = ACTIONS(307), - [anon_sym_reverse] = ACTIONS(307), - }, - [8] = { - [sym_block] = STATE(629), - [sym_statement] = STATE(27), - [sym_expression] = STATE(663), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_math_operator] = STATE(1138), - [sym_logic] = STATE(631), - [sym_logic_operator] = STATE(1277), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(637), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(1998), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(296), - [aux_sym_block_repeat1] = STATE(27), - [ts_builtin_sym_end] = ACTIONS(53), - [sym_identifier] = ACTIONS(55), + [sym_identifier] = ACTIONS(223), [sym__comment] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(57), [anon_sym_RBRACE] = ACTIONS(53), @@ -7519,1264 +5636,1675 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(65), [anon_sym_false] = ACTIONS(65), [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_EQ] = ACTIONS(69), - [anon_sym_COLON] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_PLUS_EQ] = ACTIONS(53), - [anon_sym_DASH_EQ] = ACTIONS(53), - [anon_sym_if] = ACTIONS(311), + [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(227), [anon_sym_elseif] = ACTIONS(53), - [anon_sym_else] = ACTIONS(69), - [anon_sym_match] = ACTIONS(313), - [anon_sym_EQ_GT] = ACTIONS(315), - [anon_sym_while] = ACTIONS(317), - [anon_sym_for] = ACTIONS(319), - [anon_sym_asyncfor] = ACTIONS(321), - [anon_sym_transform] = ACTIONS(323), - [anon_sym_filter] = ACTIONS(325), - [anon_sym_find] = ACTIONS(327), - [anon_sym_remove] = ACTIONS(329), - [anon_sym_reduce] = ACTIONS(331), - [anon_sym_select] = ACTIONS(333), - [anon_sym_insert] = ACTIONS(335), - [anon_sym_async] = ACTIONS(337), + [anon_sym_else] = ACTIONS(81), + [anon_sym_match] = ACTIONS(229), + [anon_sym_EQ_GT] = ACTIONS(231), + [anon_sym_while] = ACTIONS(233), + [anon_sym_for] = ACTIONS(235), + [anon_sym_asyncfor] = ACTIONS(237), + [anon_sym_transform] = ACTIONS(239), + [anon_sym_filter] = ACTIONS(241), + [anon_sym_find] = ACTIONS(243), + [anon_sym_remove] = ACTIONS(245), + [anon_sym_reduce] = ACTIONS(247), + [anon_sym_select] = ACTIONS(249), + [anon_sym_insert] = ACTIONS(251), + [anon_sym_async] = ACTIONS(253), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(339), - [anon_sym_assert] = ACTIONS(341), - [anon_sym_assert_equal] = ACTIONS(341), - [anon_sym_download] = ACTIONS(341), - [anon_sym_help] = ACTIONS(341), - [anon_sym_length] = ACTIONS(341), - [anon_sym_output] = ACTIONS(341), - [anon_sym_output_error] = ACTIONS(341), - [anon_sym_type] = ACTIONS(341), - [anon_sym_append] = ACTIONS(341), - [anon_sym_metadata] = ACTIONS(341), - [anon_sym_move] = ACTIONS(341), - [anon_sym_read] = ACTIONS(341), - [anon_sym_workdir] = ACTIONS(341), - [anon_sym_write] = ACTIONS(341), - [anon_sym_from_json] = ACTIONS(341), - [anon_sym_to_json] = ACTIONS(341), - [anon_sym_to_string] = ACTIONS(341), - [anon_sym_to_float] = ACTIONS(341), - [anon_sym_bash] = ACTIONS(341), - [anon_sym_fish] = ACTIONS(341), - [anon_sym_raw] = ACTIONS(341), - [anon_sym_sh] = ACTIONS(341), - [anon_sym_zsh] = ACTIONS(341), - [anon_sym_random] = ACTIONS(341), - [anon_sym_random_boolean] = ACTIONS(341), - [anon_sym_random_float] = ACTIONS(341), - [anon_sym_random_integer] = ACTIONS(341), - [anon_sym_columns] = ACTIONS(341), - [anon_sym_rows] = ACTIONS(341), - [anon_sym_reverse] = ACTIONS(341), + [anon_sym_table] = ACTIONS(255), + [anon_sym_assert] = ACTIONS(257), + [anon_sym_assert_equal] = ACTIONS(257), + [anon_sym_download] = ACTIONS(257), + [anon_sym_help] = ACTIONS(257), + [anon_sym_length] = ACTIONS(257), + [anon_sym_output] = ACTIONS(257), + [anon_sym_output_error] = ACTIONS(257), + [anon_sym_type] = ACTIONS(257), + [anon_sym_append] = ACTIONS(257), + [anon_sym_metadata] = ACTIONS(257), + [anon_sym_move] = ACTIONS(257), + [anon_sym_read] = ACTIONS(257), + [anon_sym_workdir] = ACTIONS(257), + [anon_sym_write] = ACTIONS(257), + [anon_sym_from_json] = ACTIONS(257), + [anon_sym_to_json] = ACTIONS(257), + [anon_sym_to_string] = ACTIONS(257), + [anon_sym_to_float] = ACTIONS(257), + [anon_sym_bash] = ACTIONS(257), + [anon_sym_fish] = ACTIONS(257), + [anon_sym_raw] = ACTIONS(257), + [anon_sym_sh] = ACTIONS(257), + [anon_sym_zsh] = ACTIONS(257), + [anon_sym_random] = ACTIONS(257), + [anon_sym_random_boolean] = ACTIONS(257), + [anon_sym_random_float] = ACTIONS(257), + [anon_sym_random_integer] = ACTIONS(257), + [anon_sym_columns] = ACTIONS(257), + [anon_sym_rows] = ACTIONS(257), + [anon_sym_reverse] = ACTIONS(257), + }, + [7] = { + [sym_block] = STATE(487), + [sym_statement] = STATE(22), + [sym_expression] = STATE(449), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(784), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(783), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(353), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [aux_sym_block_repeat1] = STATE(22), + [ts_builtin_sym_end] = ACTIONS(53), + [sym_identifier] = ACTIONS(259), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_RBRACE] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_RPAREN] = ACTIONS(53), + [anon_sym_COMMA] = ACTIONS(53), + [sym_integer] = ACTIONS(11), + [sym_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(53), + [anon_sym_COLON] = ACTIONS(261), + [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(119), + [anon_sym_match] = ACTIONS(263), + [anon_sym_EQ_GT] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_for] = ACTIONS(269), + [anon_sym_asyncfor] = ACTIONS(271), + [anon_sym_transform] = ACTIONS(273), + [anon_sym_filter] = ACTIONS(275), + [anon_sym_find] = ACTIONS(277), + [anon_sym_remove] = ACTIONS(279), + [anon_sym_reduce] = ACTIONS(281), + [anon_sym_select] = ACTIONS(283), + [anon_sym_insert] = ACTIONS(285), + [anon_sym_async] = ACTIONS(287), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(289), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_assert_equal] = ACTIONS(291), + [anon_sym_download] = ACTIONS(291), + [anon_sym_help] = ACTIONS(291), + [anon_sym_length] = ACTIONS(291), + [anon_sym_output] = ACTIONS(291), + [anon_sym_output_error] = ACTIONS(291), + [anon_sym_type] = ACTIONS(291), + [anon_sym_append] = ACTIONS(291), + [anon_sym_metadata] = ACTIONS(291), + [anon_sym_move] = ACTIONS(291), + [anon_sym_read] = ACTIONS(291), + [anon_sym_workdir] = ACTIONS(291), + [anon_sym_write] = ACTIONS(291), + [anon_sym_from_json] = ACTIONS(291), + [anon_sym_to_json] = ACTIONS(291), + [anon_sym_to_string] = ACTIONS(291), + [anon_sym_to_float] = ACTIONS(291), + [anon_sym_bash] = ACTIONS(291), + [anon_sym_fish] = ACTIONS(291), + [anon_sym_raw] = ACTIONS(291), + [anon_sym_sh] = ACTIONS(291), + [anon_sym_zsh] = ACTIONS(291), + [anon_sym_random] = ACTIONS(291), + [anon_sym_random_boolean] = ACTIONS(291), + [anon_sym_random_float] = ACTIONS(291), + [anon_sym_random_integer] = ACTIONS(291), + [anon_sym_columns] = ACTIONS(291), + [anon_sym_rows] = ACTIONS(291), + [anon_sym_reverse] = ACTIONS(291), + }, + [8] = { + [sym_statement] = STATE(9), + [sym_expression] = STATE(355), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(346), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1225), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(170), + [aux_sym_block_repeat1] = STATE(9), + [ts_builtin_sym_end] = ACTIONS(293), + [sym_identifier] = ACTIONS(295), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(298), + [anon_sym_RBRACE] = ACTIONS(293), + [anon_sym_SEMI] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_RPAREN] = ACTIONS(293), + [anon_sym_COMMA] = ACTIONS(293), + [sym_integer] = ACTIONS(304), + [sym_float] = ACTIONS(307), + [sym_string] = ACTIONS(307), + [anon_sym_true] = ACTIONS(310), + [anon_sym_false] = ACTIONS(310), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_RBRACK] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(293), + [anon_sym_DOT_DOT] = ACTIONS(293), + [anon_sym_PLUS] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(316), + [anon_sym_STAR] = ACTIONS(293), + [anon_sym_SLASH] = ACTIONS(293), + [anon_sym_PERCENT] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_AMP_AMP] = ACTIONS(293), + [anon_sym_PIPE_PIPE] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(316), + [anon_sym_LT] = ACTIONS(316), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_if] = ACTIONS(318), + [anon_sym_elseif] = ACTIONS(293), + [anon_sym_else] = ACTIONS(316), + [anon_sym_match] = ACTIONS(321), + [anon_sym_EQ_GT] = ACTIONS(324), + [anon_sym_while] = ACTIONS(327), + [anon_sym_for] = ACTIONS(330), + [anon_sym_asyncfor] = ACTIONS(333), + [anon_sym_transform] = ACTIONS(336), + [anon_sym_filter] = ACTIONS(339), + [anon_sym_find] = ACTIONS(342), + [anon_sym_remove] = ACTIONS(345), + [anon_sym_reduce] = ACTIONS(348), + [anon_sym_select] = ACTIONS(351), + [anon_sym_insert] = ACTIONS(354), + [anon_sym_async] = ACTIONS(357), + [anon_sym_PIPE] = ACTIONS(360), + [anon_sym_table] = ACTIONS(363), + [anon_sym_assert] = ACTIONS(366), + [anon_sym_assert_equal] = ACTIONS(366), + [anon_sym_download] = ACTIONS(366), + [anon_sym_help] = ACTIONS(366), + [anon_sym_length] = ACTIONS(366), + [anon_sym_output] = ACTIONS(366), + [anon_sym_output_error] = ACTIONS(366), + [anon_sym_type] = ACTIONS(366), + [anon_sym_append] = ACTIONS(366), + [anon_sym_metadata] = ACTIONS(366), + [anon_sym_move] = ACTIONS(366), + [anon_sym_read] = ACTIONS(366), + [anon_sym_workdir] = ACTIONS(366), + [anon_sym_write] = ACTIONS(366), + [anon_sym_from_json] = ACTIONS(366), + [anon_sym_to_json] = ACTIONS(366), + [anon_sym_to_string] = ACTIONS(366), + [anon_sym_to_float] = ACTIONS(366), + [anon_sym_bash] = ACTIONS(366), + [anon_sym_fish] = ACTIONS(366), + [anon_sym_raw] = ACTIONS(366), + [anon_sym_sh] = ACTIONS(366), + [anon_sym_zsh] = ACTIONS(366), + [anon_sym_random] = ACTIONS(366), + [anon_sym_random_boolean] = ACTIONS(366), + [anon_sym_random_float] = ACTIONS(366), + [anon_sym_random_integer] = ACTIONS(366), + [anon_sym_columns] = ACTIONS(366), + [anon_sym_rows] = ACTIONS(366), + [anon_sym_reverse] = ACTIONS(366), }, [9] = { [sym_statement] = STATE(9), - [sym_expression] = STATE(571), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_logic] = STATE(631), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(558), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(1817), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(265), + [sym_expression] = STATE(355), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(346), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1225), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(170), [aux_sym_block_repeat1] = STATE(9), - [ts_builtin_sym_end] = ACTIONS(343), - [sym_identifier] = ACTIONS(345), + [ts_builtin_sym_end] = ACTIONS(369), + [sym_identifier] = ACTIONS(371), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_RBRACE] = ACTIONS(343), - [anon_sym_SEMI] = ACTIONS(343), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_RPAREN] = ACTIONS(343), - [anon_sym_COMMA] = ACTIONS(343), - [sym_integer] = ACTIONS(354), - [sym_float] = ACTIONS(357), - [sym_string] = ACTIONS(357), - [anon_sym_true] = ACTIONS(360), - [anon_sym_false] = ACTIONS(360), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_RBRACK] = ACTIONS(343), - [anon_sym_EQ] = ACTIONS(366), - [anon_sym_COLON] = ACTIONS(343), - [anon_sym_DOT_DOT] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(366), - [anon_sym_DASH] = ACTIONS(366), - [anon_sym_STAR] = ACTIONS(343), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_PERCENT] = ACTIONS(343), - [anon_sym_EQ_EQ] = ACTIONS(343), - [anon_sym_BANG_EQ] = ACTIONS(343), - [anon_sym_AMP_AMP] = ACTIONS(343), - [anon_sym_PIPE_PIPE] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(366), - [anon_sym_LT] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(343), - [anon_sym_LT_EQ] = ACTIONS(343), - [anon_sym_PLUS_EQ] = ACTIONS(343), - [anon_sym_DASH_EQ] = ACTIONS(343), - [anon_sym_if] = ACTIONS(368), - [anon_sym_elseif] = ACTIONS(343), - [anon_sym_else] = ACTIONS(366), - [anon_sym_match] = ACTIONS(371), - [anon_sym_EQ_GT] = ACTIONS(374), - [anon_sym_while] = ACTIONS(377), - [anon_sym_for] = ACTIONS(380), - [anon_sym_asyncfor] = ACTIONS(383), - [anon_sym_transform] = ACTIONS(386), - [anon_sym_filter] = ACTIONS(389), - [anon_sym_find] = ACTIONS(392), - [anon_sym_remove] = ACTIONS(395), - [anon_sym_reduce] = ACTIONS(398), - [anon_sym_select] = ACTIONS(401), - [anon_sym_insert] = ACTIONS(404), - [anon_sym_async] = ACTIONS(407), - [anon_sym_PIPE] = ACTIONS(410), - [anon_sym_table] = ACTIONS(413), - [anon_sym_assert] = ACTIONS(416), - [anon_sym_assert_equal] = ACTIONS(416), - [anon_sym_download] = ACTIONS(416), - [anon_sym_help] = ACTIONS(416), - [anon_sym_length] = ACTIONS(416), - [anon_sym_output] = ACTIONS(416), - [anon_sym_output_error] = ACTIONS(416), - [anon_sym_type] = ACTIONS(416), - [anon_sym_append] = ACTIONS(416), - [anon_sym_metadata] = ACTIONS(416), - [anon_sym_move] = ACTIONS(416), - [anon_sym_read] = ACTIONS(416), - [anon_sym_workdir] = ACTIONS(416), - [anon_sym_write] = ACTIONS(416), - [anon_sym_from_json] = ACTIONS(416), - [anon_sym_to_json] = ACTIONS(416), - [anon_sym_to_string] = ACTIONS(416), - [anon_sym_to_float] = ACTIONS(416), - [anon_sym_bash] = ACTIONS(416), - [anon_sym_fish] = ACTIONS(416), - [anon_sym_raw] = ACTIONS(416), - [anon_sym_sh] = ACTIONS(416), - [anon_sym_zsh] = ACTIONS(416), - [anon_sym_random] = ACTIONS(416), - [anon_sym_random_boolean] = ACTIONS(416), - [anon_sym_random_float] = ACTIONS(416), - [anon_sym_random_integer] = ACTIONS(416), - [anon_sym_columns] = ACTIONS(416), - [anon_sym_rows] = ACTIONS(416), - [anon_sym_reverse] = ACTIONS(416), + [anon_sym_LBRACE] = ACTIONS(374), + [anon_sym_RBRACE] = ACTIONS(369), + [anon_sym_SEMI] = ACTIONS(369), + [anon_sym_LPAREN] = ACTIONS(377), + [anon_sym_RPAREN] = ACTIONS(369), + [anon_sym_COMMA] = ACTIONS(369), + [sym_integer] = ACTIONS(380), + [sym_float] = ACTIONS(383), + [sym_string] = ACTIONS(383), + [anon_sym_true] = ACTIONS(386), + [anon_sym_false] = ACTIONS(386), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_RBRACK] = ACTIONS(369), + [anon_sym_COLON] = ACTIONS(369), + [anon_sym_DOT_DOT] = ACTIONS(369), + [anon_sym_PLUS] = ACTIONS(369), + [anon_sym_DASH] = ACTIONS(392), + [anon_sym_STAR] = ACTIONS(369), + [anon_sym_SLASH] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(369), + [anon_sym_EQ_EQ] = ACTIONS(369), + [anon_sym_BANG_EQ] = ACTIONS(369), + [anon_sym_AMP_AMP] = ACTIONS(369), + [anon_sym_PIPE_PIPE] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(392), + [anon_sym_LT] = ACTIONS(392), + [anon_sym_GT_EQ] = ACTIONS(369), + [anon_sym_LT_EQ] = ACTIONS(369), + [anon_sym_if] = ACTIONS(394), + [anon_sym_elseif] = ACTIONS(369), + [anon_sym_else] = ACTIONS(392), + [anon_sym_match] = ACTIONS(397), + [anon_sym_EQ_GT] = ACTIONS(400), + [anon_sym_while] = ACTIONS(403), + [anon_sym_for] = ACTIONS(406), + [anon_sym_asyncfor] = ACTIONS(409), + [anon_sym_transform] = ACTIONS(412), + [anon_sym_filter] = ACTIONS(415), + [anon_sym_find] = ACTIONS(418), + [anon_sym_remove] = ACTIONS(421), + [anon_sym_reduce] = ACTIONS(424), + [anon_sym_select] = ACTIONS(427), + [anon_sym_insert] = ACTIONS(430), + [anon_sym_async] = ACTIONS(433), + [anon_sym_PIPE] = ACTIONS(436), + [anon_sym_table] = ACTIONS(439), + [anon_sym_assert] = ACTIONS(442), + [anon_sym_assert_equal] = ACTIONS(442), + [anon_sym_download] = ACTIONS(442), + [anon_sym_help] = ACTIONS(442), + [anon_sym_length] = ACTIONS(442), + [anon_sym_output] = ACTIONS(442), + [anon_sym_output_error] = ACTIONS(442), + [anon_sym_type] = ACTIONS(442), + [anon_sym_append] = ACTIONS(442), + [anon_sym_metadata] = ACTIONS(442), + [anon_sym_move] = ACTIONS(442), + [anon_sym_read] = ACTIONS(442), + [anon_sym_workdir] = ACTIONS(442), + [anon_sym_write] = ACTIONS(442), + [anon_sym_from_json] = ACTIONS(442), + [anon_sym_to_json] = ACTIONS(442), + [anon_sym_to_string] = ACTIONS(442), + [anon_sym_to_float] = ACTIONS(442), + [anon_sym_bash] = ACTIONS(442), + [anon_sym_fish] = ACTIONS(442), + [anon_sym_raw] = ACTIONS(442), + [anon_sym_sh] = ACTIONS(442), + [anon_sym_zsh] = ACTIONS(442), + [anon_sym_random] = ACTIONS(442), + [anon_sym_random_boolean] = ACTIONS(442), + [anon_sym_random_float] = ACTIONS(442), + [anon_sym_random_integer] = ACTIONS(442), + [anon_sym_columns] = ACTIONS(442), + [anon_sym_rows] = ACTIONS(442), + [anon_sym_reverse] = ACTIONS(442), }, [10] = { - [sym_statement] = STATE(9), - [sym_expression] = STATE(571), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_logic] = STATE(631), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(558), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(1817), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(265), - [aux_sym_block_repeat1] = STATE(9), - [ts_builtin_sym_end] = ACTIONS(419), - [sym_identifier] = ACTIONS(421), + [sym_block] = STATE(607), + [sym_statement] = STATE(212), + [sym_expression] = STATE(460), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(732), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(730), + [sym_assignment] = STATE(598), + [sym_if_else] = STATE(598), + [sym_if] = STATE(564), + [sym_match] = STATE(598), + [sym_while] = STATE(598), + [sym_for] = STATE(598), + [sym_transform] = STATE(598), + [sym_filter] = STATE(598), + [sym_find] = STATE(598), + [sym_remove] = STATE(598), + [sym_reduce] = STATE(598), + [sym_select] = STATE(598), + [sym_insert] = STATE(598), + [sym_async] = STATE(598), + [sym_identifier_list] = STATE(1100), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(181), + [aux_sym_block_repeat1] = STATE(212), + [sym_identifier] = ACTIONS(445), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(424), - [anon_sym_RBRACE] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_RPAREN] = ACTIONS(419), - [anon_sym_COMMA] = ACTIONS(419), - [sym_integer] = ACTIONS(430), - [sym_float] = ACTIONS(433), - [sym_string] = ACTIONS(433), - [anon_sym_true] = ACTIONS(436), - [anon_sym_false] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(439), - [anon_sym_RBRACK] = ACTIONS(419), - [anon_sym_EQ] = ACTIONS(442), - [anon_sym_COLON] = ACTIONS(419), - [anon_sym_DOT_DOT] = ACTIONS(419), - [anon_sym_PLUS] = ACTIONS(442), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_STAR] = ACTIONS(419), - [anon_sym_SLASH] = ACTIONS(419), - [anon_sym_PERCENT] = ACTIONS(419), - [anon_sym_EQ_EQ] = ACTIONS(419), - [anon_sym_BANG_EQ] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(442), - [anon_sym_LT] = ACTIONS(442), - [anon_sym_GT_EQ] = ACTIONS(419), - [anon_sym_LT_EQ] = ACTIONS(419), - [anon_sym_PLUS_EQ] = ACTIONS(419), - [anon_sym_DASH_EQ] = ACTIONS(419), - [anon_sym_if] = ACTIONS(444), - [anon_sym_elseif] = ACTIONS(419), - [anon_sym_else] = ACTIONS(442), - [anon_sym_match] = ACTIONS(447), - [anon_sym_EQ_GT] = ACTIONS(450), - [anon_sym_while] = ACTIONS(453), - [anon_sym_for] = ACTIONS(456), - [anon_sym_asyncfor] = ACTIONS(459), - [anon_sym_transform] = ACTIONS(462), - [anon_sym_filter] = ACTIONS(465), - [anon_sym_find] = ACTIONS(468), - [anon_sym_remove] = ACTIONS(471), - [anon_sym_reduce] = ACTIONS(474), - [anon_sym_select] = ACTIONS(477), - [anon_sym_insert] = ACTIONS(480), - [anon_sym_async] = ACTIONS(483), - [anon_sym_PIPE] = ACTIONS(486), - [anon_sym_table] = ACTIONS(489), - [anon_sym_assert] = ACTIONS(492), - [anon_sym_assert_equal] = ACTIONS(492), - [anon_sym_download] = ACTIONS(492), - [anon_sym_help] = ACTIONS(492), - [anon_sym_length] = ACTIONS(492), - [anon_sym_output] = ACTIONS(492), - [anon_sym_output_error] = ACTIONS(492), - [anon_sym_type] = ACTIONS(492), - [anon_sym_append] = ACTIONS(492), - [anon_sym_metadata] = ACTIONS(492), - [anon_sym_move] = ACTIONS(492), - [anon_sym_read] = ACTIONS(492), - [anon_sym_workdir] = ACTIONS(492), - [anon_sym_write] = ACTIONS(492), - [anon_sym_from_json] = ACTIONS(492), - [anon_sym_to_json] = ACTIONS(492), - [anon_sym_to_string] = ACTIONS(492), - [anon_sym_to_float] = ACTIONS(492), - [anon_sym_bash] = ACTIONS(492), - [anon_sym_fish] = ACTIONS(492), - [anon_sym_raw] = ACTIONS(492), - [anon_sym_sh] = ACTIONS(492), - [anon_sym_zsh] = ACTIONS(492), - [anon_sym_random] = ACTIONS(492), - [anon_sym_random_boolean] = ACTIONS(492), - [anon_sym_random_float] = ACTIONS(492), - [anon_sym_random_integer] = ACTIONS(492), - [anon_sym_columns] = ACTIONS(492), - [anon_sym_rows] = ACTIONS(492), - [anon_sym_reverse] = ACTIONS(492), - }, - [11] = { - [sym_block] = STATE(735), - [sym_statement] = STATE(35), - [sym_expression] = STATE(701), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_math_operator] = STATE(1455), - [sym_logic] = STATE(706), - [sym_logic_operator] = STATE(1453), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(582), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1866), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(320), - [aux_sym_block_repeat1] = STATE(35), - [ts_builtin_sym_end] = ACTIONS(53), - [sym_identifier] = ACTIONS(149), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(151), + [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_RBRACE] = ACTIONS(53), [anon_sym_SEMI] = ACTIONS(53), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_RPAREN] = ACTIONS(53), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_EQ] = ACTIONS(69), - [anon_sym_COLON] = ACTIONS(495), - [anon_sym_DOT_DOT] = ACTIONS(53), - [anon_sym_PLUS] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(59), + [anon_sym_COMMA] = ACTIONS(53), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_PLUS_EQ] = ACTIONS(53), - [anon_sym_DASH_EQ] = ACTIONS(53), - [anon_sym_if] = ACTIONS(197), - [anon_sym_match] = ACTIONS(497), - [anon_sym_EQ_GT] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_asyncfor] = ACTIONS(505), - [anon_sym_transform] = ACTIONS(507), - [anon_sym_filter] = ACTIONS(509), - [anon_sym_find] = ACTIONS(511), - [anon_sym_remove] = ACTIONS(513), - [anon_sym_reduce] = ACTIONS(515), - [anon_sym_select] = ACTIONS(517), - [anon_sym_insert] = ACTIONS(519), - [anon_sym_async] = ACTIONS(521), + [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(449), + [anon_sym_elseif] = ACTIONS(53), + [anon_sym_else] = ACTIONS(81), + [anon_sym_match] = ACTIONS(451), + [anon_sym_EQ_GT] = ACTIONS(123), + [anon_sym_while] = ACTIONS(453), + [anon_sym_for] = ACTIONS(455), + [anon_sym_asyncfor] = ACTIONS(457), + [anon_sym_transform] = ACTIONS(459), + [anon_sym_filter] = ACTIONS(461), + [anon_sym_find] = ACTIONS(463), + [anon_sym_remove] = ACTIONS(465), + [anon_sym_reduce] = ACTIONS(467), + [anon_sym_select] = ACTIONS(469), + [anon_sym_insert] = ACTIONS(143), + [anon_sym_async] = ACTIONS(471), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(523), - [anon_sym_assert] = ACTIONS(525), - [anon_sym_assert_equal] = ACTIONS(525), - [anon_sym_download] = ACTIONS(525), - [anon_sym_help] = ACTIONS(525), - [anon_sym_length] = ACTIONS(525), - [anon_sym_output] = ACTIONS(525), - [anon_sym_output_error] = ACTIONS(525), - [anon_sym_type] = ACTIONS(525), - [anon_sym_append] = ACTIONS(525), - [anon_sym_metadata] = ACTIONS(525), - [anon_sym_move] = ACTIONS(525), - [anon_sym_read] = ACTIONS(525), - [anon_sym_workdir] = ACTIONS(525), - [anon_sym_write] = ACTIONS(525), - [anon_sym_from_json] = ACTIONS(525), - [anon_sym_to_json] = ACTIONS(525), - [anon_sym_to_string] = ACTIONS(525), - [anon_sym_to_float] = ACTIONS(525), - [anon_sym_bash] = ACTIONS(525), - [anon_sym_fish] = ACTIONS(525), - [anon_sym_raw] = ACTIONS(525), - [anon_sym_sh] = ACTIONS(525), - [anon_sym_zsh] = ACTIONS(525), - [anon_sym_random] = ACTIONS(525), - [anon_sym_random_boolean] = ACTIONS(525), - [anon_sym_random_float] = ACTIONS(525), - [anon_sym_random_integer] = ACTIONS(525), - [anon_sym_columns] = ACTIONS(525), - [anon_sym_rows] = ACTIONS(525), - [anon_sym_reverse] = ACTIONS(525), + [anon_sym_table] = ACTIONS(147), + [anon_sym_assert] = ACTIONS(149), + [anon_sym_assert_equal] = ACTIONS(149), + [anon_sym_download] = ACTIONS(149), + [anon_sym_help] = ACTIONS(149), + [anon_sym_length] = ACTIONS(149), + [anon_sym_output] = ACTIONS(149), + [anon_sym_output_error] = ACTIONS(149), + [anon_sym_type] = ACTIONS(149), + [anon_sym_append] = ACTIONS(149), + [anon_sym_metadata] = ACTIONS(149), + [anon_sym_move] = ACTIONS(149), + [anon_sym_read] = ACTIONS(149), + [anon_sym_workdir] = ACTIONS(149), + [anon_sym_write] = ACTIONS(149), + [anon_sym_from_json] = ACTIONS(149), + [anon_sym_to_json] = ACTIONS(149), + [anon_sym_to_string] = ACTIONS(149), + [anon_sym_to_float] = ACTIONS(149), + [anon_sym_bash] = ACTIONS(149), + [anon_sym_fish] = ACTIONS(149), + [anon_sym_raw] = ACTIONS(149), + [anon_sym_sh] = ACTIONS(149), + [anon_sym_zsh] = ACTIONS(149), + [anon_sym_random] = ACTIONS(149), + [anon_sym_random_boolean] = ACTIONS(149), + [anon_sym_random_float] = ACTIONS(149), + [anon_sym_random_integer] = ACTIONS(149), + [anon_sym_columns] = ACTIONS(149), + [anon_sym_rows] = ACTIONS(149), + [anon_sym_reverse] = ACTIONS(149), + }, + [11] = { + [sym_statement] = STATE(13), + [sym_expression] = STATE(364), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(349), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1100), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(181), + [aux_sym_block_repeat1] = STATE(13), + [ts_builtin_sym_end] = ACTIONS(293), + [sym_identifier] = ACTIONS(473), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(298), + [anon_sym_RBRACE] = ACTIONS(293), + [anon_sym_SEMI] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_RPAREN] = ACTIONS(293), + [anon_sym_COMMA] = ACTIONS(293), + [sym_integer] = ACTIONS(304), + [sym_float] = ACTIONS(307), + [sym_string] = ACTIONS(307), + [anon_sym_true] = ACTIONS(310), + [anon_sym_false] = ACTIONS(310), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_RBRACK] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(293), + [anon_sym_PLUS] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(316), + [anon_sym_STAR] = ACTIONS(293), + [anon_sym_SLASH] = ACTIONS(293), + [anon_sym_PERCENT] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_AMP_AMP] = ACTIONS(293), + [anon_sym_PIPE_PIPE] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(316), + [anon_sym_LT] = ACTIONS(316), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_if] = ACTIONS(476), + [anon_sym_elseif] = ACTIONS(293), + [anon_sym_else] = ACTIONS(316), + [anon_sym_match] = ACTIONS(479), + [anon_sym_EQ_GT] = ACTIONS(482), + [anon_sym_while] = ACTIONS(485), + [anon_sym_for] = ACTIONS(488), + [anon_sym_asyncfor] = ACTIONS(491), + [anon_sym_transform] = ACTIONS(494), + [anon_sym_filter] = ACTIONS(497), + [anon_sym_find] = ACTIONS(500), + [anon_sym_remove] = ACTIONS(503), + [anon_sym_reduce] = ACTIONS(506), + [anon_sym_select] = ACTIONS(509), + [anon_sym_insert] = ACTIONS(512), + [anon_sym_async] = ACTIONS(515), + [anon_sym_PIPE] = ACTIONS(360), + [anon_sym_table] = ACTIONS(518), + [anon_sym_assert] = ACTIONS(521), + [anon_sym_assert_equal] = ACTIONS(521), + [anon_sym_download] = ACTIONS(521), + [anon_sym_help] = ACTIONS(521), + [anon_sym_length] = ACTIONS(521), + [anon_sym_output] = ACTIONS(521), + [anon_sym_output_error] = ACTIONS(521), + [anon_sym_type] = ACTIONS(521), + [anon_sym_append] = ACTIONS(521), + [anon_sym_metadata] = ACTIONS(521), + [anon_sym_move] = ACTIONS(521), + [anon_sym_read] = ACTIONS(521), + [anon_sym_workdir] = ACTIONS(521), + [anon_sym_write] = ACTIONS(521), + [anon_sym_from_json] = ACTIONS(521), + [anon_sym_to_json] = ACTIONS(521), + [anon_sym_to_string] = ACTIONS(521), + [anon_sym_to_float] = ACTIONS(521), + [anon_sym_bash] = ACTIONS(521), + [anon_sym_fish] = ACTIONS(521), + [anon_sym_raw] = ACTIONS(521), + [anon_sym_sh] = ACTIONS(521), + [anon_sym_zsh] = ACTIONS(521), + [anon_sym_random] = ACTIONS(521), + [anon_sym_random_boolean] = ACTIONS(521), + [anon_sym_random_float] = ACTIONS(521), + [anon_sym_random_integer] = ACTIONS(521), + [anon_sym_columns] = ACTIONS(521), + [anon_sym_rows] = ACTIONS(521), + [anon_sym_reverse] = ACTIONS(521), }, [12] = { - [sym_statement] = STATE(13), - [sym_expression] = STATE(583), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_logic] = STATE(631), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(567), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(2030), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(271), - [aux_sym_block_repeat1] = STATE(13), - [ts_builtin_sym_end] = ACTIONS(419), - [sym_identifier] = ACTIONS(421), + [sym_block] = STATE(487), + [sym_statement] = STATE(28), + [sym_expression] = STATE(479), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(821), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(822), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(365), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1119), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(218), + [aux_sym_block_repeat1] = STATE(28), + [ts_builtin_sym_end] = ACTIONS(53), + [sym_identifier] = ACTIONS(524), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(424), - [anon_sym_RBRACE] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_RPAREN] = ACTIONS(419), - [anon_sym_COMMA] = ACTIONS(419), - [sym_integer] = ACTIONS(430), - [sym_float] = ACTIONS(433), - [sym_string] = ACTIONS(433), - [anon_sym_true] = ACTIONS(436), - [anon_sym_false] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(439), - [anon_sym_RBRACK] = ACTIONS(419), - [anon_sym_EQ] = ACTIONS(442), - [anon_sym_COLON] = ACTIONS(419), - [anon_sym_PLUS] = ACTIONS(442), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_STAR] = ACTIONS(419), - [anon_sym_SLASH] = ACTIONS(419), - [anon_sym_PERCENT] = ACTIONS(419), - [anon_sym_EQ_EQ] = ACTIONS(419), - [anon_sym_BANG_EQ] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(442), - [anon_sym_LT] = ACTIONS(442), - [anon_sym_GT_EQ] = ACTIONS(419), - [anon_sym_LT_EQ] = ACTIONS(419), - [anon_sym_PLUS_EQ] = ACTIONS(419), - [anon_sym_DASH_EQ] = ACTIONS(419), - [anon_sym_if] = ACTIONS(527), - [anon_sym_elseif] = ACTIONS(419), - [anon_sym_else] = ACTIONS(442), - [anon_sym_match] = ACTIONS(530), - [anon_sym_EQ_GT] = ACTIONS(533), - [anon_sym_while] = ACTIONS(536), - [anon_sym_for] = ACTIONS(539), - [anon_sym_asyncfor] = ACTIONS(542), - [anon_sym_transform] = ACTIONS(545), - [anon_sym_filter] = ACTIONS(548), - [anon_sym_find] = ACTIONS(551), - [anon_sym_remove] = ACTIONS(554), - [anon_sym_reduce] = ACTIONS(557), - [anon_sym_select] = ACTIONS(560), - [anon_sym_insert] = ACTIONS(563), - [anon_sym_async] = ACTIONS(566), - [anon_sym_PIPE] = ACTIONS(486), - [anon_sym_table] = ACTIONS(569), - [anon_sym_assert] = ACTIONS(572), - [anon_sym_assert_equal] = ACTIONS(572), - [anon_sym_download] = ACTIONS(572), - [anon_sym_help] = ACTIONS(572), - [anon_sym_length] = ACTIONS(572), - [anon_sym_output] = ACTIONS(572), - [anon_sym_output_error] = ACTIONS(572), - [anon_sym_type] = ACTIONS(572), - [anon_sym_append] = ACTIONS(572), - [anon_sym_metadata] = ACTIONS(572), - [anon_sym_move] = ACTIONS(572), - [anon_sym_read] = ACTIONS(572), - [anon_sym_workdir] = ACTIONS(572), - [anon_sym_write] = ACTIONS(572), - [anon_sym_from_json] = ACTIONS(572), - [anon_sym_to_json] = ACTIONS(572), - [anon_sym_to_string] = ACTIONS(572), - [anon_sym_to_float] = ACTIONS(572), - [anon_sym_bash] = ACTIONS(572), - [anon_sym_fish] = ACTIONS(572), - [anon_sym_raw] = ACTIONS(572), - [anon_sym_sh] = ACTIONS(572), - [anon_sym_zsh] = ACTIONS(572), - [anon_sym_random] = ACTIONS(572), - [anon_sym_random_boolean] = ACTIONS(572), - [anon_sym_random_float] = ACTIONS(572), - [anon_sym_random_integer] = ACTIONS(572), - [anon_sym_columns] = ACTIONS(572), - [anon_sym_rows] = ACTIONS(572), - [anon_sym_reverse] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_RBRACE] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_RPAREN] = ACTIONS(53), + [sym_integer] = ACTIONS(11), + [sym_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(526), + [anon_sym_DOT_DOT] = ACTIONS(53), + [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(155), + [anon_sym_match] = ACTIONS(528), + [anon_sym_EQ_GT] = ACTIONS(530), + [anon_sym_while] = ACTIONS(532), + [anon_sym_for] = ACTIONS(534), + [anon_sym_asyncfor] = ACTIONS(536), + [anon_sym_transform] = ACTIONS(538), + [anon_sym_filter] = ACTIONS(540), + [anon_sym_find] = ACTIONS(542), + [anon_sym_remove] = ACTIONS(544), + [anon_sym_reduce] = ACTIONS(546), + [anon_sym_select] = ACTIONS(548), + [anon_sym_insert] = ACTIONS(550), + [anon_sym_async] = ACTIONS(552), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(554), + [anon_sym_assert] = ACTIONS(556), + [anon_sym_assert_equal] = ACTIONS(556), + [anon_sym_download] = ACTIONS(556), + [anon_sym_help] = ACTIONS(556), + [anon_sym_length] = ACTIONS(556), + [anon_sym_output] = ACTIONS(556), + [anon_sym_output_error] = ACTIONS(556), + [anon_sym_type] = ACTIONS(556), + [anon_sym_append] = ACTIONS(556), + [anon_sym_metadata] = ACTIONS(556), + [anon_sym_move] = ACTIONS(556), + [anon_sym_read] = ACTIONS(556), + [anon_sym_workdir] = ACTIONS(556), + [anon_sym_write] = ACTIONS(556), + [anon_sym_from_json] = ACTIONS(556), + [anon_sym_to_json] = ACTIONS(556), + [anon_sym_to_string] = ACTIONS(556), + [anon_sym_to_float] = ACTIONS(556), + [anon_sym_bash] = ACTIONS(556), + [anon_sym_fish] = ACTIONS(556), + [anon_sym_raw] = ACTIONS(556), + [anon_sym_sh] = ACTIONS(556), + [anon_sym_zsh] = ACTIONS(556), + [anon_sym_random] = ACTIONS(556), + [anon_sym_random_boolean] = ACTIONS(556), + [anon_sym_random_float] = ACTIONS(556), + [anon_sym_random_integer] = ACTIONS(556), + [anon_sym_columns] = ACTIONS(556), + [anon_sym_rows] = ACTIONS(556), + [anon_sym_reverse] = ACTIONS(556), }, [13] = { [sym_statement] = STATE(13), - [sym_expression] = STATE(583), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_logic] = STATE(631), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(567), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(2030), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(271), + [sym_expression] = STATE(364), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(349), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1100), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(181), [aux_sym_block_repeat1] = STATE(13), - [ts_builtin_sym_end] = ACTIONS(343), - [sym_identifier] = ACTIONS(345), + [ts_builtin_sym_end] = ACTIONS(369), + [sym_identifier] = ACTIONS(558), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_RBRACE] = ACTIONS(343), - [anon_sym_SEMI] = ACTIONS(343), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_RPAREN] = ACTIONS(343), - [anon_sym_COMMA] = ACTIONS(343), - [sym_integer] = ACTIONS(354), - [sym_float] = ACTIONS(357), - [sym_string] = ACTIONS(357), - [anon_sym_true] = ACTIONS(360), - [anon_sym_false] = ACTIONS(360), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_RBRACK] = ACTIONS(343), - [anon_sym_EQ] = ACTIONS(366), - [anon_sym_COLON] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(366), - [anon_sym_DASH] = ACTIONS(366), - [anon_sym_STAR] = ACTIONS(343), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_PERCENT] = ACTIONS(343), - [anon_sym_EQ_EQ] = ACTIONS(343), - [anon_sym_BANG_EQ] = ACTIONS(343), - [anon_sym_AMP_AMP] = ACTIONS(343), - [anon_sym_PIPE_PIPE] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(366), - [anon_sym_LT] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(343), - [anon_sym_LT_EQ] = ACTIONS(343), - [anon_sym_PLUS_EQ] = ACTIONS(343), - [anon_sym_DASH_EQ] = ACTIONS(343), - [anon_sym_if] = ACTIONS(575), - [anon_sym_elseif] = ACTIONS(343), - [anon_sym_else] = ACTIONS(366), - [anon_sym_match] = ACTIONS(578), - [anon_sym_EQ_GT] = ACTIONS(581), - [anon_sym_while] = ACTIONS(584), - [anon_sym_for] = ACTIONS(587), - [anon_sym_asyncfor] = ACTIONS(590), - [anon_sym_transform] = ACTIONS(593), - [anon_sym_filter] = ACTIONS(596), - [anon_sym_find] = ACTIONS(599), - [anon_sym_remove] = ACTIONS(602), - [anon_sym_reduce] = ACTIONS(605), - [anon_sym_select] = ACTIONS(608), - [anon_sym_insert] = ACTIONS(611), - [anon_sym_async] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(410), - [anon_sym_table] = ACTIONS(617), - [anon_sym_assert] = ACTIONS(620), - [anon_sym_assert_equal] = ACTIONS(620), - [anon_sym_download] = ACTIONS(620), - [anon_sym_help] = ACTIONS(620), - [anon_sym_length] = ACTIONS(620), - [anon_sym_output] = ACTIONS(620), - [anon_sym_output_error] = ACTIONS(620), - [anon_sym_type] = ACTIONS(620), - [anon_sym_append] = ACTIONS(620), - [anon_sym_metadata] = ACTIONS(620), - [anon_sym_move] = ACTIONS(620), - [anon_sym_read] = ACTIONS(620), - [anon_sym_workdir] = ACTIONS(620), - [anon_sym_write] = ACTIONS(620), - [anon_sym_from_json] = ACTIONS(620), - [anon_sym_to_json] = ACTIONS(620), - [anon_sym_to_string] = ACTIONS(620), - [anon_sym_to_float] = ACTIONS(620), - [anon_sym_bash] = ACTIONS(620), - [anon_sym_fish] = ACTIONS(620), - [anon_sym_raw] = ACTIONS(620), - [anon_sym_sh] = ACTIONS(620), - [anon_sym_zsh] = ACTIONS(620), - [anon_sym_random] = ACTIONS(620), - [anon_sym_random_boolean] = ACTIONS(620), - [anon_sym_random_float] = ACTIONS(620), - [anon_sym_random_integer] = ACTIONS(620), - [anon_sym_columns] = ACTIONS(620), - [anon_sym_rows] = ACTIONS(620), - [anon_sym_reverse] = ACTIONS(620), + [anon_sym_LBRACE] = ACTIONS(374), + [anon_sym_RBRACE] = ACTIONS(369), + [anon_sym_SEMI] = ACTIONS(369), + [anon_sym_LPAREN] = ACTIONS(377), + [anon_sym_RPAREN] = ACTIONS(369), + [anon_sym_COMMA] = ACTIONS(369), + [sym_integer] = ACTIONS(380), + [sym_float] = ACTIONS(383), + [sym_string] = ACTIONS(383), + [anon_sym_true] = ACTIONS(386), + [anon_sym_false] = ACTIONS(386), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_RBRACK] = ACTIONS(369), + [anon_sym_COLON] = ACTIONS(369), + [anon_sym_PLUS] = ACTIONS(369), + [anon_sym_DASH] = ACTIONS(392), + [anon_sym_STAR] = ACTIONS(369), + [anon_sym_SLASH] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(369), + [anon_sym_EQ_EQ] = ACTIONS(369), + [anon_sym_BANG_EQ] = ACTIONS(369), + [anon_sym_AMP_AMP] = ACTIONS(369), + [anon_sym_PIPE_PIPE] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(392), + [anon_sym_LT] = ACTIONS(392), + [anon_sym_GT_EQ] = ACTIONS(369), + [anon_sym_LT_EQ] = ACTIONS(369), + [anon_sym_if] = ACTIONS(561), + [anon_sym_elseif] = ACTIONS(369), + [anon_sym_else] = ACTIONS(392), + [anon_sym_match] = ACTIONS(564), + [anon_sym_EQ_GT] = ACTIONS(567), + [anon_sym_while] = ACTIONS(570), + [anon_sym_for] = ACTIONS(573), + [anon_sym_asyncfor] = ACTIONS(576), + [anon_sym_transform] = ACTIONS(579), + [anon_sym_filter] = ACTIONS(582), + [anon_sym_find] = ACTIONS(585), + [anon_sym_remove] = ACTIONS(588), + [anon_sym_reduce] = ACTIONS(591), + [anon_sym_select] = ACTIONS(594), + [anon_sym_insert] = ACTIONS(597), + [anon_sym_async] = ACTIONS(600), + [anon_sym_PIPE] = ACTIONS(436), + [anon_sym_table] = ACTIONS(603), + [anon_sym_assert] = ACTIONS(606), + [anon_sym_assert_equal] = ACTIONS(606), + [anon_sym_download] = ACTIONS(606), + [anon_sym_help] = ACTIONS(606), + [anon_sym_length] = ACTIONS(606), + [anon_sym_output] = ACTIONS(606), + [anon_sym_output_error] = ACTIONS(606), + [anon_sym_type] = ACTIONS(606), + [anon_sym_append] = ACTIONS(606), + [anon_sym_metadata] = ACTIONS(606), + [anon_sym_move] = ACTIONS(606), + [anon_sym_read] = ACTIONS(606), + [anon_sym_workdir] = ACTIONS(606), + [anon_sym_write] = ACTIONS(606), + [anon_sym_from_json] = ACTIONS(606), + [anon_sym_to_json] = ACTIONS(606), + [anon_sym_to_string] = ACTIONS(606), + [anon_sym_to_float] = ACTIONS(606), + [anon_sym_bash] = ACTIONS(606), + [anon_sym_fish] = ACTIONS(606), + [anon_sym_raw] = ACTIONS(606), + [anon_sym_sh] = ACTIONS(606), + [anon_sym_zsh] = ACTIONS(606), + [anon_sym_random] = ACTIONS(606), + [anon_sym_random_boolean] = ACTIONS(606), + [anon_sym_random_float] = ACTIONS(606), + [anon_sym_random_integer] = ACTIONS(606), + [anon_sym_columns] = ACTIONS(606), + [anon_sym_rows] = ACTIONS(606), + [anon_sym_reverse] = ACTIONS(606), }, [14] = { - [sym_block] = STATE(811), - [sym_statement] = STATE(33), - [sym_expression] = STATE(732), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(620), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1322), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1321), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(654), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1841), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(315), - [aux_sym_block_repeat1] = STATE(33), + [sym_block] = STATE(607), + [sym_statement] = STATE(199), + [sym_expression] = STATE(473), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(838), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(837), + [sym_assignment] = STATE(598), + [sym_if_else] = STATE(598), + [sym_if] = STATE(565), + [sym_match] = STATE(598), + [sym_while] = STATE(598), + [sym_for] = STATE(598), + [sym_transform] = STATE(598), + [sym_filter] = STATE(598), + [sym_find] = STATE(598), + [sym_remove] = STATE(598), + [sym_reduce] = STATE(598), + [sym_select] = STATE(598), + [sym_insert] = STATE(598), + [sym_async] = STATE(598), + [sym_identifier_list] = STATE(1085), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(203), + [aux_sym_block_repeat1] = STATE(199), [ts_builtin_sym_end] = ACTIONS(53), - [sym_identifier] = ACTIONS(623), + [sym_identifier] = ACTIONS(609), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_RBRACE] = ACTIONS(53), [anon_sym_SEMI] = ACTIONS(53), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_RPAREN] = ACTIONS(53), - [anon_sym_COMMA] = ACTIONS(53), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_RBRACK] = ACTIONS(53), - [anon_sym_COLON] = ACTIONS(625), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(627), + [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(19), [anon_sym_elseif] = ACTIONS(53), - [anon_sym_else] = ACTIONS(69), - [anon_sym_match] = ACTIONS(629), - [anon_sym_EQ_GT] = ACTIONS(631), - [anon_sym_while] = ACTIONS(633), - [anon_sym_for] = ACTIONS(635), - [anon_sym_asyncfor] = ACTIONS(637), - [anon_sym_transform] = ACTIONS(639), - [anon_sym_filter] = ACTIONS(641), - [anon_sym_find] = ACTIONS(643), - [anon_sym_remove] = ACTIONS(645), - [anon_sym_reduce] = ACTIONS(647), - [anon_sym_select] = ACTIONS(649), - [anon_sym_insert] = ACTIONS(651), - [anon_sym_async] = ACTIONS(653), + [anon_sym_else] = ACTIONS(81), + [anon_sym_match] = ACTIONS(611), + [anon_sym_EQ_GT] = ACTIONS(231), + [anon_sym_while] = ACTIONS(613), + [anon_sym_for] = ACTIONS(615), + [anon_sym_asyncfor] = ACTIONS(617), + [anon_sym_transform] = ACTIONS(619), + [anon_sym_filter] = ACTIONS(621), + [anon_sym_find] = ACTIONS(623), + [anon_sym_remove] = ACTIONS(625), + [anon_sym_reduce] = ACTIONS(627), + [anon_sym_select] = ACTIONS(629), + [anon_sym_insert] = ACTIONS(251), + [anon_sym_async] = ACTIONS(631), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(655), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_assert_equal] = ACTIONS(657), - [anon_sym_download] = ACTIONS(657), - [anon_sym_help] = ACTIONS(657), - [anon_sym_length] = ACTIONS(657), - [anon_sym_output] = ACTIONS(657), - [anon_sym_output_error] = ACTIONS(657), - [anon_sym_type] = ACTIONS(657), - [anon_sym_append] = ACTIONS(657), - [anon_sym_metadata] = ACTIONS(657), - [anon_sym_move] = ACTIONS(657), - [anon_sym_read] = ACTIONS(657), - [anon_sym_workdir] = ACTIONS(657), - [anon_sym_write] = ACTIONS(657), - [anon_sym_from_json] = ACTIONS(657), - [anon_sym_to_json] = ACTIONS(657), - [anon_sym_to_string] = ACTIONS(657), - [anon_sym_to_float] = ACTIONS(657), - [anon_sym_bash] = ACTIONS(657), - [anon_sym_fish] = ACTIONS(657), - [anon_sym_raw] = ACTIONS(657), - [anon_sym_sh] = ACTIONS(657), - [anon_sym_zsh] = ACTIONS(657), - [anon_sym_random] = ACTIONS(657), - [anon_sym_random_boolean] = ACTIONS(657), - [anon_sym_random_float] = ACTIONS(657), - [anon_sym_random_integer] = ACTIONS(657), - [anon_sym_columns] = ACTIONS(657), - [anon_sym_rows] = ACTIONS(657), - [anon_sym_reverse] = ACTIONS(657), + [anon_sym_table] = ACTIONS(255), + [anon_sym_assert] = ACTIONS(257), + [anon_sym_assert_equal] = ACTIONS(257), + [anon_sym_download] = ACTIONS(257), + [anon_sym_help] = ACTIONS(257), + [anon_sym_length] = ACTIONS(257), + [anon_sym_output] = ACTIONS(257), + [anon_sym_output_error] = ACTIONS(257), + [anon_sym_type] = ACTIONS(257), + [anon_sym_append] = ACTIONS(257), + [anon_sym_metadata] = ACTIONS(257), + [anon_sym_move] = ACTIONS(257), + [anon_sym_read] = ACTIONS(257), + [anon_sym_workdir] = ACTIONS(257), + [anon_sym_write] = ACTIONS(257), + [anon_sym_from_json] = ACTIONS(257), + [anon_sym_to_json] = ACTIONS(257), + [anon_sym_to_string] = ACTIONS(257), + [anon_sym_to_float] = ACTIONS(257), + [anon_sym_bash] = ACTIONS(257), + [anon_sym_fish] = ACTIONS(257), + [anon_sym_raw] = ACTIONS(257), + [anon_sym_sh] = ACTIONS(257), + [anon_sym_zsh] = ACTIONS(257), + [anon_sym_random] = ACTIONS(257), + [anon_sym_random_boolean] = ACTIONS(257), + [anon_sym_random_float] = ACTIONS(257), + [anon_sym_random_integer] = ACTIONS(257), + [anon_sym_columns] = ACTIONS(257), + [anon_sym_rows] = ACTIONS(257), + [anon_sym_reverse] = ACTIONS(257), }, [15] = { [sym_statement] = STATE(15), - [sym_expression] = STATE(601), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_logic] = STATE(706), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(557), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1910), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(284), + [sym_expression] = STATE(387), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(366), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1210), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(186), [aux_sym_block_repeat1] = STATE(15), - [ts_builtin_sym_end] = ACTIONS(343), - [sym_identifier] = ACTIONS(659), + [ts_builtin_sym_end] = ACTIONS(369), + [sym_identifier] = ACTIONS(633), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(662), - [anon_sym_RBRACE] = ACTIONS(343), - [anon_sym_SEMI] = ACTIONS(343), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_RPAREN] = ACTIONS(343), - [anon_sym_COMMA] = ACTIONS(343), - [sym_integer] = ACTIONS(668), - [sym_float] = ACTIONS(671), - [sym_string] = ACTIONS(671), - [anon_sym_true] = ACTIONS(674), - [anon_sym_false] = ACTIONS(674), - [anon_sym_LBRACK] = ACTIONS(677), - [anon_sym_RBRACK] = ACTIONS(343), - [anon_sym_EQ] = ACTIONS(366), - [anon_sym_COLON] = ACTIONS(343), - [anon_sym_DOT_DOT] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(366), - [anon_sym_DASH] = ACTIONS(366), - [anon_sym_STAR] = ACTIONS(343), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_PERCENT] = ACTIONS(343), - [anon_sym_EQ_EQ] = ACTIONS(343), - [anon_sym_BANG_EQ] = ACTIONS(343), - [anon_sym_AMP_AMP] = ACTIONS(343), - [anon_sym_PIPE_PIPE] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(366), - [anon_sym_LT] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(343), - [anon_sym_LT_EQ] = ACTIONS(343), - [anon_sym_PLUS_EQ] = ACTIONS(343), - [anon_sym_DASH_EQ] = ACTIONS(343), - [anon_sym_if] = ACTIONS(368), - [anon_sym_match] = ACTIONS(680), - [anon_sym_EQ_GT] = ACTIONS(683), - [anon_sym_while] = ACTIONS(686), - [anon_sym_for] = ACTIONS(689), - [anon_sym_asyncfor] = ACTIONS(692), - [anon_sym_transform] = ACTIONS(695), - [anon_sym_filter] = ACTIONS(698), - [anon_sym_find] = ACTIONS(701), - [anon_sym_remove] = ACTIONS(704), - [anon_sym_reduce] = ACTIONS(707), - [anon_sym_select] = ACTIONS(710), - [anon_sym_insert] = ACTIONS(713), - [anon_sym_async] = ACTIONS(716), - [anon_sym_PIPE] = ACTIONS(410), - [anon_sym_table] = ACTIONS(719), - [anon_sym_assert] = ACTIONS(722), - [anon_sym_assert_equal] = ACTIONS(722), - [anon_sym_download] = ACTIONS(722), - [anon_sym_help] = ACTIONS(722), - [anon_sym_length] = ACTIONS(722), - [anon_sym_output] = ACTIONS(722), - [anon_sym_output_error] = ACTIONS(722), - [anon_sym_type] = ACTIONS(722), - [anon_sym_append] = ACTIONS(722), - [anon_sym_metadata] = ACTIONS(722), - [anon_sym_move] = ACTIONS(722), - [anon_sym_read] = ACTIONS(722), - [anon_sym_workdir] = ACTIONS(722), - [anon_sym_write] = ACTIONS(722), - [anon_sym_from_json] = ACTIONS(722), - [anon_sym_to_json] = ACTIONS(722), - [anon_sym_to_string] = ACTIONS(722), - [anon_sym_to_float] = ACTIONS(722), - [anon_sym_bash] = ACTIONS(722), - [anon_sym_fish] = ACTIONS(722), - [anon_sym_raw] = ACTIONS(722), - [anon_sym_sh] = ACTIONS(722), - [anon_sym_zsh] = ACTIONS(722), - [anon_sym_random] = ACTIONS(722), - [anon_sym_random_boolean] = ACTIONS(722), - [anon_sym_random_float] = ACTIONS(722), - [anon_sym_random_integer] = ACTIONS(722), - [anon_sym_columns] = ACTIONS(722), - [anon_sym_rows] = ACTIONS(722), - [anon_sym_reverse] = ACTIONS(722), + [anon_sym_LBRACE] = ACTIONS(374), + [anon_sym_RBRACE] = ACTIONS(369), + [anon_sym_SEMI] = ACTIONS(369), + [anon_sym_LPAREN] = ACTIONS(377), + [anon_sym_RPAREN] = ACTIONS(369), + [sym_integer] = ACTIONS(380), + [sym_float] = ACTIONS(383), + [sym_string] = ACTIONS(383), + [anon_sym_true] = ACTIONS(386), + [anon_sym_false] = ACTIONS(386), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_COLON] = ACTIONS(369), + [anon_sym_DOT_DOT] = ACTIONS(369), + [anon_sym_PLUS] = ACTIONS(369), + [anon_sym_DASH] = ACTIONS(392), + [anon_sym_STAR] = ACTIONS(369), + [anon_sym_SLASH] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(369), + [anon_sym_EQ_EQ] = ACTIONS(369), + [anon_sym_BANG_EQ] = ACTIONS(369), + [anon_sym_AMP_AMP] = ACTIONS(369), + [anon_sym_PIPE_PIPE] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(392), + [anon_sym_LT] = ACTIONS(392), + [anon_sym_GT_EQ] = ACTIONS(369), + [anon_sym_LT_EQ] = ACTIONS(369), + [anon_sym_if] = ACTIONS(636), + [anon_sym_elseif] = ACTIONS(369), + [anon_sym_else] = ACTIONS(392), + [anon_sym_match] = ACTIONS(639), + [anon_sym_EQ_GT] = ACTIONS(642), + [anon_sym_while] = ACTIONS(645), + [anon_sym_for] = ACTIONS(648), + [anon_sym_asyncfor] = ACTIONS(651), + [anon_sym_transform] = ACTIONS(654), + [anon_sym_filter] = ACTIONS(657), + [anon_sym_find] = ACTIONS(660), + [anon_sym_remove] = ACTIONS(663), + [anon_sym_reduce] = ACTIONS(666), + [anon_sym_select] = ACTIONS(669), + [anon_sym_insert] = ACTIONS(672), + [anon_sym_async] = ACTIONS(675), + [anon_sym_PIPE] = ACTIONS(436), + [anon_sym_table] = ACTIONS(678), + [anon_sym_assert] = ACTIONS(681), + [anon_sym_assert_equal] = ACTIONS(681), + [anon_sym_download] = ACTIONS(681), + [anon_sym_help] = ACTIONS(681), + [anon_sym_length] = ACTIONS(681), + [anon_sym_output] = ACTIONS(681), + [anon_sym_output_error] = ACTIONS(681), + [anon_sym_type] = ACTIONS(681), + [anon_sym_append] = ACTIONS(681), + [anon_sym_metadata] = ACTIONS(681), + [anon_sym_move] = ACTIONS(681), + [anon_sym_read] = ACTIONS(681), + [anon_sym_workdir] = ACTIONS(681), + [anon_sym_write] = ACTIONS(681), + [anon_sym_from_json] = ACTIONS(681), + [anon_sym_to_json] = ACTIONS(681), + [anon_sym_to_string] = ACTIONS(681), + [anon_sym_to_float] = ACTIONS(681), + [anon_sym_bash] = ACTIONS(681), + [anon_sym_fish] = ACTIONS(681), + [anon_sym_raw] = ACTIONS(681), + [anon_sym_sh] = ACTIONS(681), + [anon_sym_zsh] = ACTIONS(681), + [anon_sym_random] = ACTIONS(681), + [anon_sym_random_boolean] = ACTIONS(681), + [anon_sym_random_float] = ACTIONS(681), + [anon_sym_random_integer] = ACTIONS(681), + [anon_sym_columns] = ACTIONS(681), + [anon_sym_rows] = ACTIONS(681), + [anon_sym_reverse] = ACTIONS(681), }, [16] = { - [sym_statement] = STATE(16), - [sym_expression] = STATE(593), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_logic] = STATE(631), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(584), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(1776), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(286), - [aux_sym_block_repeat1] = STATE(16), - [ts_builtin_sym_end] = ACTIONS(343), - [sym_identifier] = ACTIONS(345), + [sym_statement] = STATE(15), + [sym_expression] = STATE(387), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(366), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1210), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(186), + [aux_sym_block_repeat1] = STATE(15), + [ts_builtin_sym_end] = ACTIONS(293), + [sym_identifier] = ACTIONS(684), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_RBRACE] = ACTIONS(343), - [anon_sym_SEMI] = ACTIONS(343), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_RPAREN] = ACTIONS(343), - [sym_integer] = ACTIONS(354), - [sym_float] = ACTIONS(357), - [sym_string] = ACTIONS(357), - [anon_sym_true] = ACTIONS(360), - [anon_sym_false] = ACTIONS(360), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_EQ] = ACTIONS(366), - [anon_sym_COLON] = ACTIONS(343), - [anon_sym_DOT_DOT] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(366), - [anon_sym_DASH] = ACTIONS(366), - [anon_sym_STAR] = ACTIONS(343), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_PERCENT] = ACTIONS(343), - [anon_sym_EQ_EQ] = ACTIONS(343), - [anon_sym_BANG_EQ] = ACTIONS(343), - [anon_sym_AMP_AMP] = ACTIONS(343), - [anon_sym_PIPE_PIPE] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(366), - [anon_sym_LT] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(343), - [anon_sym_LT_EQ] = ACTIONS(343), - [anon_sym_PLUS_EQ] = ACTIONS(343), - [anon_sym_DASH_EQ] = ACTIONS(343), - [anon_sym_if] = ACTIONS(725), - [anon_sym_elseif] = ACTIONS(343), - [anon_sym_else] = ACTIONS(366), - [anon_sym_match] = ACTIONS(728), - [anon_sym_EQ_GT] = ACTIONS(731), - [anon_sym_while] = ACTIONS(734), - [anon_sym_for] = ACTIONS(737), - [anon_sym_asyncfor] = ACTIONS(740), - [anon_sym_transform] = ACTIONS(743), - [anon_sym_filter] = ACTIONS(746), - [anon_sym_find] = ACTIONS(749), - [anon_sym_remove] = ACTIONS(752), - [anon_sym_reduce] = ACTIONS(755), - [anon_sym_select] = ACTIONS(758), - [anon_sym_insert] = ACTIONS(761), - [anon_sym_async] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(410), - [anon_sym_table] = ACTIONS(767), - [anon_sym_assert] = ACTIONS(770), - [anon_sym_assert_equal] = ACTIONS(770), - [anon_sym_download] = ACTIONS(770), - [anon_sym_help] = ACTIONS(770), - [anon_sym_length] = ACTIONS(770), - [anon_sym_output] = ACTIONS(770), - [anon_sym_output_error] = ACTIONS(770), - [anon_sym_type] = ACTIONS(770), - [anon_sym_append] = ACTIONS(770), - [anon_sym_metadata] = ACTIONS(770), - [anon_sym_move] = ACTIONS(770), - [anon_sym_read] = ACTIONS(770), - [anon_sym_workdir] = ACTIONS(770), - [anon_sym_write] = ACTIONS(770), - [anon_sym_from_json] = ACTIONS(770), - [anon_sym_to_json] = ACTIONS(770), - [anon_sym_to_string] = ACTIONS(770), - [anon_sym_to_float] = ACTIONS(770), - [anon_sym_bash] = ACTIONS(770), - [anon_sym_fish] = ACTIONS(770), - [anon_sym_raw] = ACTIONS(770), - [anon_sym_sh] = ACTIONS(770), - [anon_sym_zsh] = ACTIONS(770), - [anon_sym_random] = ACTIONS(770), - [anon_sym_random_boolean] = ACTIONS(770), - [anon_sym_random_float] = ACTIONS(770), - [anon_sym_random_integer] = ACTIONS(770), - [anon_sym_columns] = ACTIONS(770), - [anon_sym_rows] = ACTIONS(770), - [anon_sym_reverse] = ACTIONS(770), + [anon_sym_LBRACE] = ACTIONS(298), + [anon_sym_RBRACE] = ACTIONS(293), + [anon_sym_SEMI] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_RPAREN] = ACTIONS(293), + [sym_integer] = ACTIONS(304), + [sym_float] = ACTIONS(307), + [sym_string] = ACTIONS(307), + [anon_sym_true] = ACTIONS(310), + [anon_sym_false] = ACTIONS(310), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_COLON] = ACTIONS(293), + [anon_sym_DOT_DOT] = ACTIONS(293), + [anon_sym_PLUS] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(316), + [anon_sym_STAR] = ACTIONS(293), + [anon_sym_SLASH] = ACTIONS(293), + [anon_sym_PERCENT] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_AMP_AMP] = ACTIONS(293), + [anon_sym_PIPE_PIPE] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(316), + [anon_sym_LT] = ACTIONS(316), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_if] = ACTIONS(687), + [anon_sym_elseif] = ACTIONS(293), + [anon_sym_else] = ACTIONS(316), + [anon_sym_match] = ACTIONS(690), + [anon_sym_EQ_GT] = ACTIONS(693), + [anon_sym_while] = ACTIONS(696), + [anon_sym_for] = ACTIONS(699), + [anon_sym_asyncfor] = ACTIONS(702), + [anon_sym_transform] = ACTIONS(705), + [anon_sym_filter] = ACTIONS(708), + [anon_sym_find] = ACTIONS(711), + [anon_sym_remove] = ACTIONS(714), + [anon_sym_reduce] = ACTIONS(717), + [anon_sym_select] = ACTIONS(720), + [anon_sym_insert] = ACTIONS(723), + [anon_sym_async] = ACTIONS(726), + [anon_sym_PIPE] = ACTIONS(360), + [anon_sym_table] = ACTIONS(729), + [anon_sym_assert] = ACTIONS(732), + [anon_sym_assert_equal] = ACTIONS(732), + [anon_sym_download] = ACTIONS(732), + [anon_sym_help] = ACTIONS(732), + [anon_sym_length] = ACTIONS(732), + [anon_sym_output] = ACTIONS(732), + [anon_sym_output_error] = ACTIONS(732), + [anon_sym_type] = ACTIONS(732), + [anon_sym_append] = ACTIONS(732), + [anon_sym_metadata] = ACTIONS(732), + [anon_sym_move] = ACTIONS(732), + [anon_sym_read] = ACTIONS(732), + [anon_sym_workdir] = ACTIONS(732), + [anon_sym_write] = ACTIONS(732), + [anon_sym_from_json] = ACTIONS(732), + [anon_sym_to_json] = ACTIONS(732), + [anon_sym_to_string] = ACTIONS(732), + [anon_sym_to_float] = ACTIONS(732), + [anon_sym_bash] = ACTIONS(732), + [anon_sym_fish] = ACTIONS(732), + [anon_sym_raw] = ACTIONS(732), + [anon_sym_sh] = ACTIONS(732), + [anon_sym_zsh] = ACTIONS(732), + [anon_sym_random] = ACTIONS(732), + [anon_sym_random_boolean] = ACTIONS(732), + [anon_sym_random_float] = ACTIONS(732), + [anon_sym_random_integer] = ACTIONS(732), + [anon_sym_columns] = ACTIONS(732), + [anon_sym_rows] = ACTIONS(732), + [anon_sym_reverse] = ACTIONS(732), }, [17] = { - [sym_statement] = STATE(15), - [sym_expression] = STATE(601), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_logic] = STATE(706), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(557), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1910), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(284), - [aux_sym_block_repeat1] = STATE(15), - [ts_builtin_sym_end] = ACTIONS(419), - [sym_identifier] = ACTIONS(773), + [sym_statement] = STATE(18), + [sym_expression] = STATE(402), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(348), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1104), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(18), + [ts_builtin_sym_end] = ACTIONS(293), + [sym_identifier] = ACTIONS(735), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(776), - [anon_sym_RBRACE] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(779), - [anon_sym_RPAREN] = ACTIONS(419), - [anon_sym_COMMA] = ACTIONS(419), - [sym_integer] = ACTIONS(782), - [sym_float] = ACTIONS(785), - [sym_string] = ACTIONS(785), - [anon_sym_true] = ACTIONS(788), - [anon_sym_false] = ACTIONS(788), - [anon_sym_LBRACK] = ACTIONS(791), - [anon_sym_RBRACK] = ACTIONS(419), - [anon_sym_EQ] = ACTIONS(442), - [anon_sym_COLON] = ACTIONS(419), - [anon_sym_DOT_DOT] = ACTIONS(419), - [anon_sym_PLUS] = ACTIONS(442), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_STAR] = ACTIONS(419), - [anon_sym_SLASH] = ACTIONS(419), - [anon_sym_PERCENT] = ACTIONS(419), - [anon_sym_EQ_EQ] = ACTIONS(419), - [anon_sym_BANG_EQ] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(442), - [anon_sym_LT] = ACTIONS(442), - [anon_sym_GT_EQ] = ACTIONS(419), - [anon_sym_LT_EQ] = ACTIONS(419), - [anon_sym_PLUS_EQ] = ACTIONS(419), - [anon_sym_DASH_EQ] = ACTIONS(419), - [anon_sym_if] = ACTIONS(444), - [anon_sym_match] = ACTIONS(794), - [anon_sym_EQ_GT] = ACTIONS(797), - [anon_sym_while] = ACTIONS(800), - [anon_sym_for] = ACTIONS(803), - [anon_sym_asyncfor] = ACTIONS(806), - [anon_sym_transform] = ACTIONS(809), - [anon_sym_filter] = ACTIONS(812), - [anon_sym_find] = ACTIONS(815), - [anon_sym_remove] = ACTIONS(818), - [anon_sym_reduce] = ACTIONS(821), - [anon_sym_select] = ACTIONS(824), - [anon_sym_insert] = ACTIONS(827), - [anon_sym_async] = ACTIONS(830), - [anon_sym_PIPE] = ACTIONS(486), - [anon_sym_table] = ACTIONS(833), - [anon_sym_assert] = ACTIONS(836), - [anon_sym_assert_equal] = ACTIONS(836), - [anon_sym_download] = ACTIONS(836), - [anon_sym_help] = ACTIONS(836), - [anon_sym_length] = ACTIONS(836), - [anon_sym_output] = ACTIONS(836), - [anon_sym_output_error] = ACTIONS(836), - [anon_sym_type] = ACTIONS(836), - [anon_sym_append] = ACTIONS(836), - [anon_sym_metadata] = ACTIONS(836), - [anon_sym_move] = ACTIONS(836), - [anon_sym_read] = ACTIONS(836), - [anon_sym_workdir] = ACTIONS(836), - [anon_sym_write] = ACTIONS(836), - [anon_sym_from_json] = ACTIONS(836), - [anon_sym_to_json] = ACTIONS(836), - [anon_sym_to_string] = ACTIONS(836), - [anon_sym_to_float] = ACTIONS(836), - [anon_sym_bash] = ACTIONS(836), - [anon_sym_fish] = ACTIONS(836), - [anon_sym_raw] = ACTIONS(836), - [anon_sym_sh] = ACTIONS(836), - [anon_sym_zsh] = ACTIONS(836), - [anon_sym_random] = ACTIONS(836), - [anon_sym_random_boolean] = ACTIONS(836), - [anon_sym_random_float] = ACTIONS(836), - [anon_sym_random_integer] = ACTIONS(836), - [anon_sym_columns] = ACTIONS(836), - [anon_sym_rows] = ACTIONS(836), - [anon_sym_reverse] = ACTIONS(836), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(293), + [anon_sym_SEMI] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(741), + [anon_sym_RPAREN] = ACTIONS(293), + [anon_sym_COMMA] = ACTIONS(293), + [sym_integer] = ACTIONS(744), + [sym_float] = ACTIONS(747), + [sym_string] = ACTIONS(747), + [anon_sym_true] = ACTIONS(750), + [anon_sym_false] = ACTIONS(750), + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_RBRACK] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(293), + [anon_sym_DOT_DOT] = ACTIONS(293), + [anon_sym_PLUS] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(316), + [anon_sym_STAR] = ACTIONS(293), + [anon_sym_SLASH] = ACTIONS(293), + [anon_sym_PERCENT] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_AMP_AMP] = ACTIONS(293), + [anon_sym_PIPE_PIPE] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(316), + [anon_sym_LT] = ACTIONS(316), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_if] = ACTIONS(318), + [anon_sym_match] = ACTIONS(756), + [anon_sym_EQ_GT] = ACTIONS(759), + [anon_sym_while] = ACTIONS(762), + [anon_sym_for] = ACTIONS(765), + [anon_sym_asyncfor] = ACTIONS(768), + [anon_sym_transform] = ACTIONS(771), + [anon_sym_filter] = ACTIONS(774), + [anon_sym_find] = ACTIONS(777), + [anon_sym_remove] = ACTIONS(780), + [anon_sym_reduce] = ACTIONS(783), + [anon_sym_select] = ACTIONS(786), + [anon_sym_insert] = ACTIONS(789), + [anon_sym_async] = ACTIONS(792), + [anon_sym_PIPE] = ACTIONS(360), + [anon_sym_table] = ACTIONS(795), + [anon_sym_assert] = ACTIONS(798), + [anon_sym_assert_equal] = ACTIONS(798), + [anon_sym_download] = ACTIONS(798), + [anon_sym_help] = ACTIONS(798), + [anon_sym_length] = ACTIONS(798), + [anon_sym_output] = ACTIONS(798), + [anon_sym_output_error] = ACTIONS(798), + [anon_sym_type] = ACTIONS(798), + [anon_sym_append] = ACTIONS(798), + [anon_sym_metadata] = ACTIONS(798), + [anon_sym_move] = ACTIONS(798), + [anon_sym_read] = ACTIONS(798), + [anon_sym_workdir] = ACTIONS(798), + [anon_sym_write] = ACTIONS(798), + [anon_sym_from_json] = ACTIONS(798), + [anon_sym_to_json] = ACTIONS(798), + [anon_sym_to_string] = ACTIONS(798), + [anon_sym_to_float] = ACTIONS(798), + [anon_sym_bash] = ACTIONS(798), + [anon_sym_fish] = ACTIONS(798), + [anon_sym_raw] = ACTIONS(798), + [anon_sym_sh] = ACTIONS(798), + [anon_sym_zsh] = ACTIONS(798), + [anon_sym_random] = ACTIONS(798), + [anon_sym_random_boolean] = ACTIONS(798), + [anon_sym_random_float] = ACTIONS(798), + [anon_sym_random_integer] = ACTIONS(798), + [anon_sym_columns] = ACTIONS(798), + [anon_sym_rows] = ACTIONS(798), + [anon_sym_reverse] = ACTIONS(798), }, [18] = { - [sym_block] = STATE(811), - [sym_statement] = STATE(38), - [sym_expression] = STATE(779), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(655), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1242), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1243), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(724), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1860), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(341), - [aux_sym_block_repeat1] = STATE(38), - [ts_builtin_sym_end] = ACTIONS(53), - [sym_identifier] = ACTIONS(839), + [sym_statement] = STATE(18), + [sym_expression] = STATE(402), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(348), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1104), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(18), + [ts_builtin_sym_end] = ACTIONS(369), + [sym_identifier] = ACTIONS(801), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_RBRACE] = ACTIONS(53), - [anon_sym_SEMI] = ACTIONS(53), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_RPAREN] = ACTIONS(53), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(841), - [anon_sym_DOT_DOT] = ACTIONS(53), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(843), - [anon_sym_elseif] = ACTIONS(53), - [anon_sym_else] = ACTIONS(69), - [anon_sym_match] = ACTIONS(845), - [anon_sym_EQ_GT] = ACTIONS(847), - [anon_sym_while] = ACTIONS(849), - [anon_sym_for] = ACTIONS(851), - [anon_sym_asyncfor] = 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(867), - [anon_sym_async] = ACTIONS(869), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(871), - [anon_sym_assert] = ACTIONS(873), - [anon_sym_assert_equal] = ACTIONS(873), - [anon_sym_download] = ACTIONS(873), - [anon_sym_help] = ACTIONS(873), - [anon_sym_length] = ACTIONS(873), - [anon_sym_output] = ACTIONS(873), - [anon_sym_output_error] = ACTIONS(873), - [anon_sym_type] = ACTIONS(873), - [anon_sym_append] = ACTIONS(873), - [anon_sym_metadata] = ACTIONS(873), - [anon_sym_move] = ACTIONS(873), - [anon_sym_read] = ACTIONS(873), - [anon_sym_workdir] = ACTIONS(873), - [anon_sym_write] = ACTIONS(873), - [anon_sym_from_json] = ACTIONS(873), - [anon_sym_to_json] = ACTIONS(873), - [anon_sym_to_string] = ACTIONS(873), - [anon_sym_to_float] = ACTIONS(873), - [anon_sym_bash] = ACTIONS(873), - [anon_sym_fish] = ACTIONS(873), - [anon_sym_raw] = ACTIONS(873), - [anon_sym_sh] = ACTIONS(873), - [anon_sym_zsh] = ACTIONS(873), - [anon_sym_random] = ACTIONS(873), - [anon_sym_random_boolean] = ACTIONS(873), - [anon_sym_random_float] = ACTIONS(873), - [anon_sym_random_integer] = ACTIONS(873), - [anon_sym_columns] = ACTIONS(873), - [anon_sym_rows] = ACTIONS(873), - [anon_sym_reverse] = ACTIONS(873), + [anon_sym_LBRACE] = ACTIONS(804), + [anon_sym_RBRACE] = ACTIONS(369), + [anon_sym_SEMI] = ACTIONS(369), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_RPAREN] = ACTIONS(369), + [anon_sym_COMMA] = ACTIONS(369), + [sym_integer] = ACTIONS(810), + [sym_float] = ACTIONS(813), + [sym_string] = ACTIONS(813), + [anon_sym_true] = ACTIONS(816), + [anon_sym_false] = ACTIONS(816), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_RBRACK] = ACTIONS(369), + [anon_sym_COLON] = ACTIONS(369), + [anon_sym_DOT_DOT] = ACTIONS(369), + [anon_sym_PLUS] = ACTIONS(369), + [anon_sym_DASH] = ACTIONS(392), + [anon_sym_STAR] = ACTIONS(369), + [anon_sym_SLASH] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(369), + [anon_sym_EQ_EQ] = ACTIONS(369), + [anon_sym_BANG_EQ] = ACTIONS(369), + [anon_sym_AMP_AMP] = ACTIONS(369), + [anon_sym_PIPE_PIPE] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(392), + [anon_sym_LT] = ACTIONS(392), + [anon_sym_GT_EQ] = ACTIONS(369), + [anon_sym_LT_EQ] = ACTIONS(369), + [anon_sym_if] = ACTIONS(394), + [anon_sym_match] = ACTIONS(822), + [anon_sym_EQ_GT] = ACTIONS(825), + [anon_sym_while] = ACTIONS(828), + [anon_sym_for] = ACTIONS(831), + [anon_sym_asyncfor] = ACTIONS(834), + [anon_sym_transform] = ACTIONS(837), + [anon_sym_filter] = ACTIONS(840), + [anon_sym_find] = ACTIONS(843), + [anon_sym_remove] = ACTIONS(846), + [anon_sym_reduce] = ACTIONS(849), + [anon_sym_select] = ACTIONS(852), + [anon_sym_insert] = ACTIONS(855), + [anon_sym_async] = ACTIONS(858), + [anon_sym_PIPE] = ACTIONS(436), + [anon_sym_table] = ACTIONS(861), + [anon_sym_assert] = ACTIONS(864), + [anon_sym_assert_equal] = ACTIONS(864), + [anon_sym_download] = ACTIONS(864), + [anon_sym_help] = ACTIONS(864), + [anon_sym_length] = ACTIONS(864), + [anon_sym_output] = ACTIONS(864), + [anon_sym_output_error] = ACTIONS(864), + [anon_sym_type] = ACTIONS(864), + [anon_sym_append] = ACTIONS(864), + [anon_sym_metadata] = ACTIONS(864), + [anon_sym_move] = ACTIONS(864), + [anon_sym_read] = ACTIONS(864), + [anon_sym_workdir] = ACTIONS(864), + [anon_sym_write] = ACTIONS(864), + [anon_sym_from_json] = ACTIONS(864), + [anon_sym_to_json] = ACTIONS(864), + [anon_sym_to_string] = ACTIONS(864), + [anon_sym_to_float] = ACTIONS(864), + [anon_sym_bash] = ACTIONS(864), + [anon_sym_fish] = ACTIONS(864), + [anon_sym_raw] = ACTIONS(864), + [anon_sym_sh] = ACTIONS(864), + [anon_sym_zsh] = ACTIONS(864), + [anon_sym_random] = ACTIONS(864), + [anon_sym_random_boolean] = ACTIONS(864), + [anon_sym_random_float] = ACTIONS(864), + [anon_sym_random_integer] = ACTIONS(864), + [anon_sym_columns] = ACTIONS(864), + [anon_sym_rows] = ACTIONS(864), + [anon_sym_reverse] = ACTIONS(864), }, [19] = { - [sym_block] = STATE(839), - [sym_statement] = STATE(39), - [sym_expression] = STATE(756), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(657), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1305), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1306), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(627), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1752), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(338), - [aux_sym_block_repeat1] = STATE(39), + [sym_block] = STATE(487), + [sym_statement] = STATE(32), + [sym_expression] = STATE(516), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(433), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [aux_sym_block_repeat1] = STATE(32), [ts_builtin_sym_end] = ACTIONS(53), - [sym_identifier] = ACTIONS(875), + [sym_identifier] = ACTIONS(867), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_RBRACE] = ACTIONS(53), [anon_sym_SEMI] = ACTIONS(53), [anon_sym_LPAREN] = ACTIONS(9), [anon_sym_RPAREN] = ACTIONS(53), + [sym_integer] = ACTIONS(11), + [sym_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(869), + [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(227), + [anon_sym_match] = ACTIONS(871), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(873), + [anon_sym_for] = ACTIONS(875), + [anon_sym_asyncfor] = ACTIONS(877), + [anon_sym_transform] = ACTIONS(879), + [anon_sym_filter] = ACTIONS(881), + [anon_sym_find] = ACTIONS(883), + [anon_sym_remove] = ACTIONS(885), + [anon_sym_reduce] = ACTIONS(887), + [anon_sym_select] = ACTIONS(889), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(891), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), + }, + [20] = { + [sym_statement] = STATE(20), + [sym_expression] = STATE(449), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(353), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [aux_sym_block_repeat1] = STATE(20), + [ts_builtin_sym_end] = ACTIONS(369), + [sym_identifier] = ACTIONS(893), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(804), + [anon_sym_RBRACE] = ACTIONS(369), + [anon_sym_SEMI] = ACTIONS(369), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_RPAREN] = ACTIONS(369), + [anon_sym_COMMA] = ACTIONS(369), + [sym_integer] = ACTIONS(810), + [sym_float] = ACTIONS(813), + [sym_string] = ACTIONS(813), + [anon_sym_true] = ACTIONS(816), + [anon_sym_false] = ACTIONS(816), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_RBRACK] = ACTIONS(369), + [anon_sym_COLON] = ACTIONS(369), + [anon_sym_PLUS] = ACTIONS(369), + [anon_sym_DASH] = ACTIONS(392), + [anon_sym_STAR] = ACTIONS(369), + [anon_sym_SLASH] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(369), + [anon_sym_EQ_EQ] = ACTIONS(369), + [anon_sym_BANG_EQ] = ACTIONS(369), + [anon_sym_AMP_AMP] = ACTIONS(369), + [anon_sym_PIPE_PIPE] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(392), + [anon_sym_LT] = ACTIONS(392), + [anon_sym_GT_EQ] = ACTIONS(369), + [anon_sym_LT_EQ] = ACTIONS(369), + [anon_sym_if] = ACTIONS(561), + [anon_sym_match] = ACTIONS(896), + [anon_sym_EQ_GT] = ACTIONS(899), + [anon_sym_while] = ACTIONS(902), + [anon_sym_for] = ACTIONS(905), + [anon_sym_asyncfor] = ACTIONS(908), + [anon_sym_transform] = ACTIONS(911), + [anon_sym_filter] = ACTIONS(914), + [anon_sym_find] = ACTIONS(917), + [anon_sym_remove] = ACTIONS(920), + [anon_sym_reduce] = ACTIONS(923), + [anon_sym_select] = ACTIONS(926), + [anon_sym_insert] = ACTIONS(929), + [anon_sym_async] = ACTIONS(932), + [anon_sym_PIPE] = ACTIONS(436), + [anon_sym_table] = ACTIONS(935), + [anon_sym_assert] = ACTIONS(938), + [anon_sym_assert_equal] = ACTIONS(938), + [anon_sym_download] = ACTIONS(938), + [anon_sym_help] = ACTIONS(938), + [anon_sym_length] = ACTIONS(938), + [anon_sym_output] = ACTIONS(938), + [anon_sym_output_error] = ACTIONS(938), + [anon_sym_type] = ACTIONS(938), + [anon_sym_append] = ACTIONS(938), + [anon_sym_metadata] = ACTIONS(938), + [anon_sym_move] = ACTIONS(938), + [anon_sym_read] = ACTIONS(938), + [anon_sym_workdir] = ACTIONS(938), + [anon_sym_write] = ACTIONS(938), + [anon_sym_from_json] = ACTIONS(938), + [anon_sym_to_json] = ACTIONS(938), + [anon_sym_to_string] = ACTIONS(938), + [anon_sym_to_float] = ACTIONS(938), + [anon_sym_bash] = ACTIONS(938), + [anon_sym_fish] = ACTIONS(938), + [anon_sym_raw] = ACTIONS(938), + [anon_sym_sh] = ACTIONS(938), + [anon_sym_zsh] = ACTIONS(938), + [anon_sym_random] = ACTIONS(938), + [anon_sym_random_boolean] = ACTIONS(938), + [anon_sym_random_float] = ACTIONS(938), + [anon_sym_random_integer] = ACTIONS(938), + [anon_sym_columns] = ACTIONS(938), + [anon_sym_rows] = ACTIONS(938), + [anon_sym_reverse] = ACTIONS(938), + }, + [21] = { + [sym_block] = STATE(627), + [sym_statement] = STATE(225), + [sym_expression] = STATE(547), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(784), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(783), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(571), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [aux_sym_block_repeat1] = STATE(225), + [sym_identifier] = ACTIONS(941), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_LPAREN] = ACTIONS(9), [anon_sym_COMMA] = ACTIONS(53), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -8784,4772 +7312,3662 @@ 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_RBRACK] = ACTIONS(53), - [anon_sym_COLON] = ACTIONS(879), - [anon_sym_DOT_DOT] = ACTIONS(53), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_COLON] = ACTIONS(261), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(245), - [anon_sym_match] = ACTIONS(881), - [anon_sym_EQ_GT] = ACTIONS(883), - [anon_sym_while] = ACTIONS(885), - [anon_sym_for] = ACTIONS(887), - [anon_sym_asyncfor] = ACTIONS(889), - [anon_sym_transform] = ACTIONS(891), - [anon_sym_filter] = ACTIONS(893), - [anon_sym_find] = ACTIONS(895), - [anon_sym_remove] = ACTIONS(897), - [anon_sym_reduce] = ACTIONS(899), - [anon_sym_select] = ACTIONS(901), - [anon_sym_insert] = ACTIONS(903), - [anon_sym_async] = ACTIONS(905), + [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(449), + [anon_sym_match] = ACTIONS(943), + [anon_sym_EQ_GT] = ACTIONS(265), + [anon_sym_while] = ACTIONS(945), + [anon_sym_for] = ACTIONS(947), + [anon_sym_asyncfor] = ACTIONS(949), + [anon_sym_transform] = ACTIONS(951), + [anon_sym_filter] = ACTIONS(953), + [anon_sym_find] = ACTIONS(955), + [anon_sym_remove] = ACTIONS(957), + [anon_sym_reduce] = ACTIONS(959), + [anon_sym_select] = ACTIONS(961), + [anon_sym_insert] = ACTIONS(285), + [anon_sym_async] = ACTIONS(963), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(907), - [anon_sym_assert] = ACTIONS(909), - [anon_sym_assert_equal] = ACTIONS(909), - [anon_sym_download] = ACTIONS(909), - [anon_sym_help] = ACTIONS(909), - [anon_sym_length] = ACTIONS(909), - [anon_sym_output] = ACTIONS(909), - [anon_sym_output_error] = ACTIONS(909), - [anon_sym_type] = ACTIONS(909), - [anon_sym_append] = ACTIONS(909), - [anon_sym_metadata] = ACTIONS(909), - [anon_sym_move] = ACTIONS(909), - [anon_sym_read] = ACTIONS(909), - [anon_sym_workdir] = ACTIONS(909), - [anon_sym_write] = ACTIONS(909), - [anon_sym_from_json] = ACTIONS(909), - [anon_sym_to_json] = ACTIONS(909), - [anon_sym_to_string] = ACTIONS(909), - [anon_sym_to_float] = ACTIONS(909), - [anon_sym_bash] = ACTIONS(909), - [anon_sym_fish] = ACTIONS(909), - [anon_sym_raw] = ACTIONS(909), - [anon_sym_sh] = ACTIONS(909), - [anon_sym_zsh] = ACTIONS(909), - [anon_sym_random] = ACTIONS(909), - [anon_sym_random_boolean] = ACTIONS(909), - [anon_sym_random_float] = ACTIONS(909), - [anon_sym_random_integer] = ACTIONS(909), - [anon_sym_columns] = ACTIONS(909), - [anon_sym_rows] = ACTIONS(909), - [anon_sym_reverse] = ACTIONS(909), - }, - [20] = { - [sym_block] = STATE(735), - [sym_statement] = STATE(45), - [sym_expression] = STATE(795), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_math_operator] = STATE(1270), - [sym_logic] = STATE(706), - [sym_logic_operator] = STATE(1260), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(611), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(2015), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(325), - [aux_sym_block_repeat1] = STATE(45), - [ts_builtin_sym_end] = ACTIONS(53), - [sym_identifier] = ACTIONS(149), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_RBRACE] = ACTIONS(53), - [anon_sym_SEMI] = ACTIONS(53), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_RPAREN] = ACTIONS(53), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_EQ] = ACTIONS(69), - [anon_sym_COLON] = ACTIONS(911), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_PLUS_EQ] = ACTIONS(53), - [anon_sym_DASH_EQ] = ACTIONS(53), - [anon_sym_if] = ACTIONS(311), - [anon_sym_match] = ACTIONS(913), - [anon_sym_EQ_GT] = ACTIONS(915), - [anon_sym_while] = ACTIONS(917), - [anon_sym_for] = ACTIONS(919), - [anon_sym_asyncfor] = ACTIONS(921), - [anon_sym_transform] = ACTIONS(923), - [anon_sym_filter] = ACTIONS(925), - [anon_sym_find] = ACTIONS(927), - [anon_sym_remove] = ACTIONS(929), - [anon_sym_reduce] = ACTIONS(931), - [anon_sym_select] = ACTIONS(933), - [anon_sym_insert] = ACTIONS(935), - [anon_sym_async] = ACTIONS(937), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(939), - [anon_sym_assert] = ACTIONS(941), - [anon_sym_assert_equal] = ACTIONS(941), - [anon_sym_download] = ACTIONS(941), - [anon_sym_help] = ACTIONS(941), - [anon_sym_length] = ACTIONS(941), - [anon_sym_output] = ACTIONS(941), - [anon_sym_output_error] = ACTIONS(941), - [anon_sym_type] = ACTIONS(941), - [anon_sym_append] = ACTIONS(941), - [anon_sym_metadata] = ACTIONS(941), - [anon_sym_move] = ACTIONS(941), - [anon_sym_read] = ACTIONS(941), - [anon_sym_workdir] = ACTIONS(941), - [anon_sym_write] = ACTIONS(941), - [anon_sym_from_json] = ACTIONS(941), - [anon_sym_to_json] = ACTIONS(941), - [anon_sym_to_string] = ACTIONS(941), - [anon_sym_to_float] = ACTIONS(941), - [anon_sym_bash] = ACTIONS(941), - [anon_sym_fish] = ACTIONS(941), - [anon_sym_raw] = ACTIONS(941), - [anon_sym_sh] = ACTIONS(941), - [anon_sym_zsh] = ACTIONS(941), - [anon_sym_random] = ACTIONS(941), - [anon_sym_random_boolean] = ACTIONS(941), - [anon_sym_random_float] = ACTIONS(941), - [anon_sym_random_integer] = ACTIONS(941), - [anon_sym_columns] = ACTIONS(941), - [anon_sym_rows] = ACTIONS(941), - [anon_sym_reverse] = ACTIONS(941), - }, - [21] = { - [sym_statement] = STATE(16), - [sym_expression] = STATE(593), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_logic] = STATE(631), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(584), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(1776), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(286), - [aux_sym_block_repeat1] = STATE(16), - [ts_builtin_sym_end] = ACTIONS(419), - [sym_identifier] = ACTIONS(421), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(424), - [anon_sym_RBRACE] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_RPAREN] = ACTIONS(419), - [sym_integer] = ACTIONS(430), - [sym_float] = ACTIONS(433), - [sym_string] = ACTIONS(433), - [anon_sym_true] = ACTIONS(436), - [anon_sym_false] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(439), - [anon_sym_EQ] = ACTIONS(442), - [anon_sym_COLON] = ACTIONS(419), - [anon_sym_DOT_DOT] = ACTIONS(419), - [anon_sym_PLUS] = ACTIONS(442), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_STAR] = ACTIONS(419), - [anon_sym_SLASH] = ACTIONS(419), - [anon_sym_PERCENT] = ACTIONS(419), - [anon_sym_EQ_EQ] = ACTIONS(419), - [anon_sym_BANG_EQ] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(442), - [anon_sym_LT] = ACTIONS(442), - [anon_sym_GT_EQ] = ACTIONS(419), - [anon_sym_LT_EQ] = ACTIONS(419), - [anon_sym_PLUS_EQ] = ACTIONS(419), - [anon_sym_DASH_EQ] = ACTIONS(419), - [anon_sym_if] = ACTIONS(943), - [anon_sym_elseif] = ACTIONS(419), - [anon_sym_else] = ACTIONS(442), - [anon_sym_match] = ACTIONS(946), - [anon_sym_EQ_GT] = ACTIONS(949), - [anon_sym_while] = ACTIONS(952), - [anon_sym_for] = ACTIONS(955), - [anon_sym_asyncfor] = ACTIONS(958), - [anon_sym_transform] = ACTIONS(961), - [anon_sym_filter] = ACTIONS(964), - [anon_sym_find] = ACTIONS(967), - [anon_sym_remove] = ACTIONS(970), - [anon_sym_reduce] = ACTIONS(973), - [anon_sym_select] = ACTIONS(976), - [anon_sym_insert] = ACTIONS(979), - [anon_sym_async] = ACTIONS(982), - [anon_sym_PIPE] = ACTIONS(486), - [anon_sym_table] = ACTIONS(985), - [anon_sym_assert] = ACTIONS(988), - [anon_sym_assert_equal] = ACTIONS(988), - [anon_sym_download] = ACTIONS(988), - [anon_sym_help] = ACTIONS(988), - [anon_sym_length] = ACTIONS(988), - [anon_sym_output] = ACTIONS(988), - [anon_sym_output_error] = ACTIONS(988), - [anon_sym_type] = ACTIONS(988), - [anon_sym_append] = ACTIONS(988), - [anon_sym_metadata] = ACTIONS(988), - [anon_sym_move] = ACTIONS(988), - [anon_sym_read] = ACTIONS(988), - [anon_sym_workdir] = ACTIONS(988), - [anon_sym_write] = ACTIONS(988), - [anon_sym_from_json] = ACTIONS(988), - [anon_sym_to_json] = ACTIONS(988), - [anon_sym_to_string] = ACTIONS(988), - [anon_sym_to_float] = ACTIONS(988), - [anon_sym_bash] = ACTIONS(988), - [anon_sym_fish] = ACTIONS(988), - [anon_sym_raw] = ACTIONS(988), - [anon_sym_sh] = ACTIONS(988), - [anon_sym_zsh] = ACTIONS(988), - [anon_sym_random] = ACTIONS(988), - [anon_sym_random_boolean] = ACTIONS(988), - [anon_sym_random_float] = ACTIONS(988), - [anon_sym_random_integer] = ACTIONS(988), - [anon_sym_columns] = ACTIONS(988), - [anon_sym_rows] = ACTIONS(988), - [anon_sym_reverse] = ACTIONS(988), + [anon_sym_table] = ACTIONS(289), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_assert_equal] = ACTIONS(291), + [anon_sym_download] = ACTIONS(291), + [anon_sym_help] = ACTIONS(291), + [anon_sym_length] = ACTIONS(291), + [anon_sym_output] = ACTIONS(291), + [anon_sym_output_error] = ACTIONS(291), + [anon_sym_type] = ACTIONS(291), + [anon_sym_append] = ACTIONS(291), + [anon_sym_metadata] = ACTIONS(291), + [anon_sym_move] = ACTIONS(291), + [anon_sym_read] = ACTIONS(291), + [anon_sym_workdir] = ACTIONS(291), + [anon_sym_write] = ACTIONS(291), + [anon_sym_from_json] = ACTIONS(291), + [anon_sym_to_json] = ACTIONS(291), + [anon_sym_to_string] = ACTIONS(291), + [anon_sym_to_float] = ACTIONS(291), + [anon_sym_bash] = ACTIONS(291), + [anon_sym_fish] = ACTIONS(291), + [anon_sym_raw] = ACTIONS(291), + [anon_sym_sh] = ACTIONS(291), + [anon_sym_zsh] = ACTIONS(291), + [anon_sym_random] = ACTIONS(291), + [anon_sym_random_boolean] = ACTIONS(291), + [anon_sym_random_float] = ACTIONS(291), + [anon_sym_random_integer] = ACTIONS(291), + [anon_sym_columns] = ACTIONS(291), + [anon_sym_rows] = ACTIONS(291), + [anon_sym_reverse] = ACTIONS(291), }, [22] = { - [sym_statement] = STATE(29), - [sym_expression] = STATE(685), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(576), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(647), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1984), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(302), - [aux_sym_block_repeat1] = STATE(29), - [ts_builtin_sym_end] = ACTIONS(419), - [sym_identifier] = ACTIONS(991), + [sym_statement] = STATE(20), + [sym_expression] = STATE(449), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(353), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [aux_sym_block_repeat1] = STATE(20), + [ts_builtin_sym_end] = ACTIONS(293), + [sym_identifier] = ACTIONS(965), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(994), - [anon_sym_RBRACE] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_RPAREN] = ACTIONS(419), - [anon_sym_COMMA] = ACTIONS(419), - [sym_integer] = ACTIONS(1000), - [sym_float] = ACTIONS(1003), - [sym_string] = ACTIONS(1003), - [anon_sym_true] = ACTIONS(1006), - [anon_sym_false] = ACTIONS(1006), - [anon_sym_LBRACK] = ACTIONS(1009), - [anon_sym_RBRACK] = ACTIONS(419), - [anon_sym_COLON] = ACTIONS(419), - [anon_sym_DOT_DOT] = ACTIONS(419), - [anon_sym_PLUS] = ACTIONS(419), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_STAR] = ACTIONS(419), - [anon_sym_SLASH] = ACTIONS(419), - [anon_sym_PERCENT] = ACTIONS(419), - [anon_sym_EQ_EQ] = ACTIONS(419), - [anon_sym_BANG_EQ] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(442), - [anon_sym_LT] = ACTIONS(442), - [anon_sym_GT_EQ] = ACTIONS(419), - [anon_sym_LT_EQ] = ACTIONS(419), - [anon_sym_if] = ACTIONS(1012), - [anon_sym_elseif] = ACTIONS(419), - [anon_sym_else] = ACTIONS(442), - [anon_sym_match] = ACTIONS(1015), - [anon_sym_EQ_GT] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1021), - [anon_sym_for] = ACTIONS(1024), - [anon_sym_asyncfor] = ACTIONS(1027), - [anon_sym_transform] = ACTIONS(1030), - [anon_sym_filter] = ACTIONS(1033), - [anon_sym_find] = ACTIONS(1036), - [anon_sym_remove] = ACTIONS(1039), - [anon_sym_reduce] = ACTIONS(1042), - [anon_sym_select] = ACTIONS(1045), - [anon_sym_insert] = ACTIONS(1048), - [anon_sym_async] = ACTIONS(1051), - [anon_sym_PIPE] = ACTIONS(486), - [anon_sym_table] = ACTIONS(1054), - [anon_sym_assert] = ACTIONS(1057), - [anon_sym_assert_equal] = ACTIONS(1057), - [anon_sym_download] = ACTIONS(1057), - [anon_sym_help] = ACTIONS(1057), - [anon_sym_length] = ACTIONS(1057), - [anon_sym_output] = ACTIONS(1057), - [anon_sym_output_error] = ACTIONS(1057), - [anon_sym_type] = ACTIONS(1057), - [anon_sym_append] = ACTIONS(1057), - [anon_sym_metadata] = ACTIONS(1057), - [anon_sym_move] = ACTIONS(1057), - [anon_sym_read] = ACTIONS(1057), - [anon_sym_workdir] = ACTIONS(1057), - [anon_sym_write] = ACTIONS(1057), - [anon_sym_from_json] = ACTIONS(1057), - [anon_sym_to_json] = ACTIONS(1057), - [anon_sym_to_string] = ACTIONS(1057), - [anon_sym_to_float] = ACTIONS(1057), - [anon_sym_bash] = ACTIONS(1057), - [anon_sym_fish] = ACTIONS(1057), - [anon_sym_raw] = ACTIONS(1057), - [anon_sym_sh] = ACTIONS(1057), - [anon_sym_zsh] = ACTIONS(1057), - [anon_sym_random] = ACTIONS(1057), - [anon_sym_random_boolean] = ACTIONS(1057), - [anon_sym_random_float] = ACTIONS(1057), - [anon_sym_random_integer] = ACTIONS(1057), - [anon_sym_columns] = ACTIONS(1057), - [anon_sym_rows] = ACTIONS(1057), - [anon_sym_reverse] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(293), + [anon_sym_SEMI] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(741), + [anon_sym_RPAREN] = ACTIONS(293), + [anon_sym_COMMA] = ACTIONS(293), + [sym_integer] = ACTIONS(744), + [sym_float] = ACTIONS(747), + [sym_string] = ACTIONS(747), + [anon_sym_true] = ACTIONS(750), + [anon_sym_false] = ACTIONS(750), + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_RBRACK] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(293), + [anon_sym_PLUS] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(316), + [anon_sym_STAR] = ACTIONS(293), + [anon_sym_SLASH] = ACTIONS(293), + [anon_sym_PERCENT] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_AMP_AMP] = ACTIONS(293), + [anon_sym_PIPE_PIPE] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(316), + [anon_sym_LT] = ACTIONS(316), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_if] = ACTIONS(476), + [anon_sym_match] = ACTIONS(968), + [anon_sym_EQ_GT] = ACTIONS(971), + [anon_sym_while] = ACTIONS(974), + [anon_sym_for] = ACTIONS(977), + [anon_sym_asyncfor] = ACTIONS(980), + [anon_sym_transform] = ACTIONS(983), + [anon_sym_filter] = ACTIONS(986), + [anon_sym_find] = ACTIONS(989), + [anon_sym_remove] = ACTIONS(992), + [anon_sym_reduce] = ACTIONS(995), + [anon_sym_select] = ACTIONS(998), + [anon_sym_insert] = ACTIONS(1001), + [anon_sym_async] = ACTIONS(1004), + [anon_sym_PIPE] = ACTIONS(360), + [anon_sym_table] = ACTIONS(1007), + [anon_sym_assert] = ACTIONS(1010), + [anon_sym_assert_equal] = ACTIONS(1010), + [anon_sym_download] = ACTIONS(1010), + [anon_sym_help] = ACTIONS(1010), + [anon_sym_length] = ACTIONS(1010), + [anon_sym_output] = ACTIONS(1010), + [anon_sym_output_error] = ACTIONS(1010), + [anon_sym_type] = ACTIONS(1010), + [anon_sym_append] = ACTIONS(1010), + [anon_sym_metadata] = ACTIONS(1010), + [anon_sym_move] = ACTIONS(1010), + [anon_sym_read] = ACTIONS(1010), + [anon_sym_workdir] = ACTIONS(1010), + [anon_sym_write] = ACTIONS(1010), + [anon_sym_from_json] = ACTIONS(1010), + [anon_sym_to_json] = ACTIONS(1010), + [anon_sym_to_string] = ACTIONS(1010), + [anon_sym_to_float] = ACTIONS(1010), + [anon_sym_bash] = ACTIONS(1010), + [anon_sym_fish] = ACTIONS(1010), + [anon_sym_raw] = ACTIONS(1010), + [anon_sym_sh] = ACTIONS(1010), + [anon_sym_zsh] = ACTIONS(1010), + [anon_sym_random] = ACTIONS(1010), + [anon_sym_random_boolean] = ACTIONS(1010), + [anon_sym_random_float] = ACTIONS(1010), + [anon_sym_random_integer] = ACTIONS(1010), + [anon_sym_columns] = ACTIONS(1010), + [anon_sym_rows] = ACTIONS(1010), + [anon_sym_reverse] = ACTIONS(1010), }, [23] = { - [sym_statement] = STATE(23), - [sym_expression] = STATE(663), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_logic] = STATE(631), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(637), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(1998), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(296), - [aux_sym_block_repeat1] = STATE(23), - [ts_builtin_sym_end] = ACTIONS(343), - [sym_identifier] = ACTIONS(345), + [sym_block] = STATE(1010), + [sym_statement] = STATE(221), + [sym_expression] = STATE(547), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(784), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(783), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(571), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [aux_sym_block_repeat1] = STATE(221), + [sym_identifier] = ACTIONS(941), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_RBRACE] = ACTIONS(343), - [anon_sym_SEMI] = ACTIONS(343), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_RPAREN] = ACTIONS(343), - [sym_integer] = ACTIONS(354), - [sym_float] = ACTIONS(357), - [sym_string] = ACTIONS(357), - [anon_sym_true] = ACTIONS(360), - [anon_sym_false] = ACTIONS(360), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_EQ] = ACTIONS(366), - [anon_sym_COLON] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(366), - [anon_sym_DASH] = ACTIONS(366), - [anon_sym_STAR] = ACTIONS(343), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_PERCENT] = ACTIONS(343), - [anon_sym_EQ_EQ] = ACTIONS(343), - [anon_sym_BANG_EQ] = ACTIONS(343), - [anon_sym_AMP_AMP] = ACTIONS(343), - [anon_sym_PIPE_PIPE] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(366), - [anon_sym_LT] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(343), - [anon_sym_LT_EQ] = ACTIONS(343), - [anon_sym_PLUS_EQ] = ACTIONS(343), - [anon_sym_DASH_EQ] = ACTIONS(343), - [anon_sym_if] = ACTIONS(1060), - [anon_sym_elseif] = ACTIONS(343), - [anon_sym_else] = ACTIONS(366), - [anon_sym_match] = ACTIONS(1063), - [anon_sym_EQ_GT] = ACTIONS(1066), - [anon_sym_while] = ACTIONS(1069), - [anon_sym_for] = ACTIONS(1072), - [anon_sym_asyncfor] = ACTIONS(1075), - [anon_sym_transform] = ACTIONS(1078), - [anon_sym_filter] = ACTIONS(1081), - [anon_sym_find] = ACTIONS(1084), - [anon_sym_remove] = ACTIONS(1087), - [anon_sym_reduce] = ACTIONS(1090), - [anon_sym_select] = ACTIONS(1093), - [anon_sym_insert] = ACTIONS(1096), - [anon_sym_async] = ACTIONS(1099), - [anon_sym_PIPE] = ACTIONS(410), - [anon_sym_table] = ACTIONS(1102), - [anon_sym_assert] = ACTIONS(1105), - [anon_sym_assert_equal] = ACTIONS(1105), - [anon_sym_download] = ACTIONS(1105), - [anon_sym_help] = ACTIONS(1105), - [anon_sym_length] = ACTIONS(1105), - [anon_sym_output] = ACTIONS(1105), - [anon_sym_output_error] = ACTIONS(1105), - [anon_sym_type] = ACTIONS(1105), - [anon_sym_append] = ACTIONS(1105), - [anon_sym_metadata] = ACTIONS(1105), - [anon_sym_move] = ACTIONS(1105), - [anon_sym_read] = ACTIONS(1105), - [anon_sym_workdir] = ACTIONS(1105), - [anon_sym_write] = ACTIONS(1105), - [anon_sym_from_json] = ACTIONS(1105), - [anon_sym_to_json] = ACTIONS(1105), - [anon_sym_to_string] = ACTIONS(1105), - [anon_sym_to_float] = ACTIONS(1105), - [anon_sym_bash] = ACTIONS(1105), - [anon_sym_fish] = ACTIONS(1105), - [anon_sym_raw] = ACTIONS(1105), - [anon_sym_sh] = ACTIONS(1105), - [anon_sym_zsh] = ACTIONS(1105), - [anon_sym_random] = ACTIONS(1105), - [anon_sym_random_boolean] = ACTIONS(1105), - [anon_sym_random_float] = ACTIONS(1105), - [anon_sym_random_integer] = ACTIONS(1105), - [anon_sym_columns] = ACTIONS(1105), - [anon_sym_rows] = ACTIONS(1105), - [anon_sym_reverse] = ACTIONS(1105), + [anon_sym_LBRACE] = ACTIONS(1013), + [anon_sym_RBRACE] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_COMMA] = ACTIONS(53), + [sym_integer] = ACTIONS(11), + [sym_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(261), + [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(449), + [anon_sym_match] = ACTIONS(943), + [anon_sym_EQ_GT] = ACTIONS(265), + [anon_sym_while] = ACTIONS(945), + [anon_sym_for] = ACTIONS(947), + [anon_sym_asyncfor] = ACTIONS(949), + [anon_sym_transform] = ACTIONS(951), + [anon_sym_filter] = ACTIONS(953), + [anon_sym_find] = ACTIONS(955), + [anon_sym_remove] = ACTIONS(957), + [anon_sym_reduce] = ACTIONS(959), + [anon_sym_select] = ACTIONS(961), + [anon_sym_insert] = ACTIONS(285), + [anon_sym_async] = ACTIONS(963), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(289), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_assert_equal] = ACTIONS(291), + [anon_sym_download] = ACTIONS(291), + [anon_sym_help] = ACTIONS(291), + [anon_sym_length] = ACTIONS(291), + [anon_sym_output] = ACTIONS(291), + [anon_sym_output_error] = ACTIONS(291), + [anon_sym_type] = ACTIONS(291), + [anon_sym_append] = ACTIONS(291), + [anon_sym_metadata] = ACTIONS(291), + [anon_sym_move] = ACTIONS(291), + [anon_sym_read] = ACTIONS(291), + [anon_sym_workdir] = ACTIONS(291), + [anon_sym_write] = ACTIONS(291), + [anon_sym_from_json] = ACTIONS(291), + [anon_sym_to_json] = ACTIONS(291), + [anon_sym_to_string] = ACTIONS(291), + [anon_sym_to_float] = ACTIONS(291), + [anon_sym_bash] = ACTIONS(291), + [anon_sym_fish] = ACTIONS(291), + [anon_sym_raw] = ACTIONS(291), + [anon_sym_sh] = ACTIONS(291), + [anon_sym_zsh] = ACTIONS(291), + [anon_sym_random] = ACTIONS(291), + [anon_sym_random_boolean] = ACTIONS(291), + [anon_sym_random_float] = ACTIONS(291), + [anon_sym_random_integer] = ACTIONS(291), + [anon_sym_columns] = ACTIONS(291), + [anon_sym_rows] = ACTIONS(291), + [anon_sym_reverse] = ACTIONS(291), }, [24] = { - [sym_statement] = STATE(25), - [sym_expression] = STATE(683), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_logic] = STATE(706), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(573), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1813), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(311), - [aux_sym_block_repeat1] = STATE(25), - [ts_builtin_sym_end] = ACTIONS(419), - [sym_identifier] = ACTIONS(773), + [sym_statement] = STATE(18), + [sym_expression] = STATE(402), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(348), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1104), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(18), + [sym_identifier] = ACTIONS(735), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(776), - [anon_sym_RBRACE] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(779), - [anon_sym_RPAREN] = ACTIONS(419), - [anon_sym_COMMA] = ACTIONS(419), - [sym_integer] = ACTIONS(782), - [sym_float] = ACTIONS(785), - [sym_string] = ACTIONS(785), - [anon_sym_true] = ACTIONS(788), - [anon_sym_false] = ACTIONS(788), - [anon_sym_LBRACK] = ACTIONS(791), - [anon_sym_RBRACK] = ACTIONS(419), - [anon_sym_EQ] = ACTIONS(442), - [anon_sym_COLON] = ACTIONS(419), - [anon_sym_PLUS] = ACTIONS(442), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_STAR] = ACTIONS(419), - [anon_sym_SLASH] = ACTIONS(419), - [anon_sym_PERCENT] = ACTIONS(419), - [anon_sym_EQ_EQ] = ACTIONS(419), - [anon_sym_BANG_EQ] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(442), - [anon_sym_LT] = ACTIONS(442), - [anon_sym_GT_EQ] = ACTIONS(419), - [anon_sym_LT_EQ] = ACTIONS(419), - [anon_sym_PLUS_EQ] = ACTIONS(419), - [anon_sym_DASH_EQ] = ACTIONS(419), - [anon_sym_if] = ACTIONS(527), - [anon_sym_match] = ACTIONS(1108), - [anon_sym_EQ_GT] = ACTIONS(1111), - [anon_sym_while] = ACTIONS(1114), - [anon_sym_for] = ACTIONS(1117), - [anon_sym_asyncfor] = ACTIONS(1120), - [anon_sym_transform] = ACTIONS(1123), - [anon_sym_filter] = ACTIONS(1126), - [anon_sym_find] = ACTIONS(1129), - [anon_sym_remove] = ACTIONS(1132), - [anon_sym_reduce] = ACTIONS(1135), - [anon_sym_select] = ACTIONS(1138), - [anon_sym_insert] = ACTIONS(1141), - [anon_sym_async] = ACTIONS(1144), - [anon_sym_PIPE] = ACTIONS(486), - [anon_sym_table] = ACTIONS(1147), - [anon_sym_assert] = ACTIONS(1150), - [anon_sym_assert_equal] = ACTIONS(1150), - [anon_sym_download] = ACTIONS(1150), - [anon_sym_help] = ACTIONS(1150), - [anon_sym_length] = ACTIONS(1150), - [anon_sym_output] = ACTIONS(1150), - [anon_sym_output_error] = ACTIONS(1150), - [anon_sym_type] = ACTIONS(1150), - [anon_sym_append] = ACTIONS(1150), - [anon_sym_metadata] = ACTIONS(1150), - [anon_sym_move] = ACTIONS(1150), - [anon_sym_read] = ACTIONS(1150), - [anon_sym_workdir] = ACTIONS(1150), - [anon_sym_write] = ACTIONS(1150), - [anon_sym_from_json] = ACTIONS(1150), - [anon_sym_to_json] = ACTIONS(1150), - [anon_sym_to_string] = ACTIONS(1150), - [anon_sym_to_float] = ACTIONS(1150), - [anon_sym_bash] = ACTIONS(1150), - [anon_sym_fish] = ACTIONS(1150), - [anon_sym_raw] = ACTIONS(1150), - [anon_sym_sh] = ACTIONS(1150), - [anon_sym_zsh] = ACTIONS(1150), - [anon_sym_random] = ACTIONS(1150), - [anon_sym_random_boolean] = ACTIONS(1150), - [anon_sym_random_float] = ACTIONS(1150), - [anon_sym_random_integer] = ACTIONS(1150), - [anon_sym_columns] = ACTIONS(1150), - [anon_sym_rows] = ACTIONS(1150), - [anon_sym_reverse] = ACTIONS(1150), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(293), + [anon_sym_SEMI] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(741), + [anon_sym_RPAREN] = ACTIONS(293), + [anon_sym_COMMA] = ACTIONS(293), + [sym_integer] = ACTIONS(744), + [sym_float] = ACTIONS(747), + [sym_string] = ACTIONS(747), + [anon_sym_true] = ACTIONS(750), + [anon_sym_false] = ACTIONS(750), + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_RBRACK] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(293), + [anon_sym_DOT_DOT] = ACTIONS(293), + [anon_sym_PLUS] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(316), + [anon_sym_STAR] = ACTIONS(293), + [anon_sym_SLASH] = ACTIONS(293), + [anon_sym_PERCENT] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_AMP_AMP] = ACTIONS(293), + [anon_sym_PIPE_PIPE] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(316), + [anon_sym_LT] = ACTIONS(316), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_if] = ACTIONS(79), + [anon_sym_match] = ACTIONS(193), + [anon_sym_EQ_GT] = ACTIONS(759), + [anon_sym_while] = ACTIONS(197), + [anon_sym_for] = ACTIONS(199), + [anon_sym_asyncfor] = ACTIONS(201), + [anon_sym_transform] = ACTIONS(203), + [anon_sym_filter] = ACTIONS(205), + [anon_sym_find] = ACTIONS(207), + [anon_sym_remove] = ACTIONS(209), + [anon_sym_reduce] = ACTIONS(211), + [anon_sym_select] = ACTIONS(213), + [anon_sym_insert] = ACTIONS(215), + [anon_sym_async] = ACTIONS(217), + [anon_sym_PIPE] = ACTIONS(360), + [anon_sym_table] = ACTIONS(795), + [anon_sym_assert] = ACTIONS(798), + [anon_sym_assert_equal] = ACTIONS(798), + [anon_sym_download] = ACTIONS(798), + [anon_sym_help] = ACTIONS(798), + [anon_sym_length] = ACTIONS(798), + [anon_sym_output] = ACTIONS(798), + [anon_sym_output_error] = ACTIONS(798), + [anon_sym_type] = ACTIONS(798), + [anon_sym_append] = ACTIONS(798), + [anon_sym_metadata] = ACTIONS(798), + [anon_sym_move] = ACTIONS(798), + [anon_sym_read] = ACTIONS(798), + [anon_sym_workdir] = ACTIONS(798), + [anon_sym_write] = ACTIONS(798), + [anon_sym_from_json] = ACTIONS(798), + [anon_sym_to_json] = ACTIONS(798), + [anon_sym_to_string] = ACTIONS(798), + [anon_sym_to_float] = ACTIONS(798), + [anon_sym_bash] = ACTIONS(798), + [anon_sym_fish] = ACTIONS(798), + [anon_sym_raw] = ACTIONS(798), + [anon_sym_sh] = ACTIONS(798), + [anon_sym_zsh] = ACTIONS(798), + [anon_sym_random] = ACTIONS(798), + [anon_sym_random_boolean] = ACTIONS(798), + [anon_sym_random_float] = ACTIONS(798), + [anon_sym_random_integer] = ACTIONS(798), + [anon_sym_columns] = ACTIONS(798), + [anon_sym_rows] = ACTIONS(798), + [anon_sym_reverse] = ACTIONS(798), }, [25] = { [sym_statement] = STATE(25), - [sym_expression] = STATE(683), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_logic] = STATE(706), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(573), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1813), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(311), + [sym_expression] = STATE(448), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(414), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1085), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(203), [aux_sym_block_repeat1] = STATE(25), - [ts_builtin_sym_end] = ACTIONS(343), - [sym_identifier] = ACTIONS(659), + [ts_builtin_sym_end] = ACTIONS(369), + [sym_identifier] = ACTIONS(1015), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(662), - [anon_sym_RBRACE] = ACTIONS(343), - [anon_sym_SEMI] = ACTIONS(343), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_RPAREN] = ACTIONS(343), - [anon_sym_COMMA] = ACTIONS(343), - [sym_integer] = ACTIONS(668), - [sym_float] = ACTIONS(671), - [sym_string] = ACTIONS(671), - [anon_sym_true] = ACTIONS(674), - [anon_sym_false] = ACTIONS(674), - [anon_sym_LBRACK] = ACTIONS(677), - [anon_sym_RBRACK] = ACTIONS(343), - [anon_sym_EQ] = ACTIONS(366), - [anon_sym_COLON] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(366), - [anon_sym_DASH] = ACTIONS(366), - [anon_sym_STAR] = ACTIONS(343), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_PERCENT] = ACTIONS(343), - [anon_sym_EQ_EQ] = ACTIONS(343), - [anon_sym_BANG_EQ] = ACTIONS(343), - [anon_sym_AMP_AMP] = ACTIONS(343), - [anon_sym_PIPE_PIPE] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(366), - [anon_sym_LT] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(343), - [anon_sym_LT_EQ] = ACTIONS(343), - [anon_sym_PLUS_EQ] = ACTIONS(343), - [anon_sym_DASH_EQ] = ACTIONS(343), - [anon_sym_if] = ACTIONS(575), - [anon_sym_match] = ACTIONS(1153), - [anon_sym_EQ_GT] = ACTIONS(1156), - [anon_sym_while] = ACTIONS(1159), - [anon_sym_for] = ACTIONS(1162), - [anon_sym_asyncfor] = ACTIONS(1165), - [anon_sym_transform] = ACTIONS(1168), - [anon_sym_filter] = ACTIONS(1171), - [anon_sym_find] = ACTIONS(1174), - [anon_sym_remove] = ACTIONS(1177), - [anon_sym_reduce] = ACTIONS(1180), - [anon_sym_select] = ACTIONS(1183), - [anon_sym_insert] = ACTIONS(1186), - [anon_sym_async] = ACTIONS(1189), - [anon_sym_PIPE] = ACTIONS(410), - [anon_sym_table] = ACTIONS(1192), - [anon_sym_assert] = ACTIONS(1195), - [anon_sym_assert_equal] = ACTIONS(1195), - [anon_sym_download] = ACTIONS(1195), - [anon_sym_help] = ACTIONS(1195), - [anon_sym_length] = ACTIONS(1195), - [anon_sym_output] = ACTIONS(1195), - [anon_sym_output_error] = ACTIONS(1195), - [anon_sym_type] = ACTIONS(1195), - [anon_sym_append] = ACTIONS(1195), - [anon_sym_metadata] = ACTIONS(1195), - [anon_sym_move] = ACTIONS(1195), - [anon_sym_read] = ACTIONS(1195), - [anon_sym_workdir] = ACTIONS(1195), - [anon_sym_write] = ACTIONS(1195), - [anon_sym_from_json] = ACTIONS(1195), - [anon_sym_to_json] = ACTIONS(1195), - [anon_sym_to_string] = ACTIONS(1195), - [anon_sym_to_float] = ACTIONS(1195), - [anon_sym_bash] = ACTIONS(1195), - [anon_sym_fish] = ACTIONS(1195), - [anon_sym_raw] = ACTIONS(1195), - [anon_sym_sh] = ACTIONS(1195), - [anon_sym_zsh] = ACTIONS(1195), - [anon_sym_random] = ACTIONS(1195), - [anon_sym_random_boolean] = ACTIONS(1195), - [anon_sym_random_float] = ACTIONS(1195), - [anon_sym_random_integer] = ACTIONS(1195), - [anon_sym_columns] = ACTIONS(1195), - [anon_sym_rows] = ACTIONS(1195), - [anon_sym_reverse] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(374), + [anon_sym_RBRACE] = ACTIONS(369), + [anon_sym_SEMI] = ACTIONS(369), + [anon_sym_LPAREN] = ACTIONS(377), + [anon_sym_RPAREN] = ACTIONS(369), + [sym_integer] = ACTIONS(380), + [sym_float] = ACTIONS(383), + [sym_string] = ACTIONS(383), + [anon_sym_true] = ACTIONS(386), + [anon_sym_false] = ACTIONS(386), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_COLON] = ACTIONS(369), + [anon_sym_PLUS] = ACTIONS(369), + [anon_sym_DASH] = ACTIONS(392), + [anon_sym_STAR] = ACTIONS(369), + [anon_sym_SLASH] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(369), + [anon_sym_EQ_EQ] = ACTIONS(369), + [anon_sym_BANG_EQ] = ACTIONS(369), + [anon_sym_AMP_AMP] = ACTIONS(369), + [anon_sym_PIPE_PIPE] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(392), + [anon_sym_LT] = ACTIONS(392), + [anon_sym_GT_EQ] = ACTIONS(369), + [anon_sym_LT_EQ] = ACTIONS(369), + [anon_sym_if] = ACTIONS(1018), + [anon_sym_elseif] = ACTIONS(369), + [anon_sym_else] = ACTIONS(392), + [anon_sym_match] = ACTIONS(1021), + [anon_sym_EQ_GT] = ACTIONS(1024), + [anon_sym_while] = ACTIONS(1027), + [anon_sym_for] = ACTIONS(1030), + [anon_sym_asyncfor] = ACTIONS(1033), + [anon_sym_transform] = ACTIONS(1036), + [anon_sym_filter] = ACTIONS(1039), + [anon_sym_find] = ACTIONS(1042), + [anon_sym_remove] = ACTIONS(1045), + [anon_sym_reduce] = ACTIONS(1048), + [anon_sym_select] = ACTIONS(1051), + [anon_sym_insert] = ACTIONS(1054), + [anon_sym_async] = ACTIONS(1057), + [anon_sym_PIPE] = ACTIONS(436), + [anon_sym_table] = ACTIONS(1060), + [anon_sym_assert] = ACTIONS(1063), + [anon_sym_assert_equal] = ACTIONS(1063), + [anon_sym_download] = ACTIONS(1063), + [anon_sym_help] = ACTIONS(1063), + [anon_sym_length] = ACTIONS(1063), + [anon_sym_output] = ACTIONS(1063), + [anon_sym_output_error] = ACTIONS(1063), + [anon_sym_type] = ACTIONS(1063), + [anon_sym_append] = ACTIONS(1063), + [anon_sym_metadata] = ACTIONS(1063), + [anon_sym_move] = ACTIONS(1063), + [anon_sym_read] = ACTIONS(1063), + [anon_sym_workdir] = ACTIONS(1063), + [anon_sym_write] = ACTIONS(1063), + [anon_sym_from_json] = ACTIONS(1063), + [anon_sym_to_json] = ACTIONS(1063), + [anon_sym_to_string] = ACTIONS(1063), + [anon_sym_to_float] = ACTIONS(1063), + [anon_sym_bash] = ACTIONS(1063), + [anon_sym_fish] = ACTIONS(1063), + [anon_sym_raw] = ACTIONS(1063), + [anon_sym_sh] = ACTIONS(1063), + [anon_sym_zsh] = ACTIONS(1063), + [anon_sym_random] = ACTIONS(1063), + [anon_sym_random_boolean] = ACTIONS(1063), + [anon_sym_random_float] = ACTIONS(1063), + [anon_sym_random_integer] = ACTIONS(1063), + [anon_sym_columns] = ACTIONS(1063), + [anon_sym_rows] = ACTIONS(1063), + [anon_sym_reverse] = ACTIONS(1063), }, [26] = { - [sym_block] = STATE(839), - [sym_statement] = STATE(46), - [sym_expression] = STATE(824), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(739), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1381), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1380), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(653), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [aux_sym_block_repeat1] = STATE(46), - [ts_builtin_sym_end] = ACTIONS(53), - [sym_identifier] = ACTIONS(1198), + [sym_statement] = STATE(25), + [sym_expression] = STATE(448), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(414), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1085), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(203), + [aux_sym_block_repeat1] = STATE(25), + [ts_builtin_sym_end] = ACTIONS(293), + [sym_identifier] = ACTIONS(1066), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(298), + [anon_sym_RBRACE] = ACTIONS(293), + [anon_sym_SEMI] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_RPAREN] = ACTIONS(293), + [sym_integer] = ACTIONS(304), + [sym_float] = ACTIONS(307), + [sym_string] = ACTIONS(307), + [anon_sym_true] = ACTIONS(310), + [anon_sym_false] = ACTIONS(310), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_COLON] = ACTIONS(293), + [anon_sym_PLUS] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(316), + [anon_sym_STAR] = ACTIONS(293), + [anon_sym_SLASH] = ACTIONS(293), + [anon_sym_PERCENT] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_AMP_AMP] = ACTIONS(293), + [anon_sym_PIPE_PIPE] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(316), + [anon_sym_LT] = ACTIONS(316), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_if] = ACTIONS(1069), + [anon_sym_elseif] = ACTIONS(293), + [anon_sym_else] = ACTIONS(316), + [anon_sym_match] = ACTIONS(1072), + [anon_sym_EQ_GT] = ACTIONS(1075), + [anon_sym_while] = ACTIONS(1078), + [anon_sym_for] = ACTIONS(1081), + [anon_sym_asyncfor] = ACTIONS(1084), + [anon_sym_transform] = ACTIONS(1087), + [anon_sym_filter] = ACTIONS(1090), + [anon_sym_find] = ACTIONS(1093), + [anon_sym_remove] = ACTIONS(1096), + [anon_sym_reduce] = ACTIONS(1099), + [anon_sym_select] = ACTIONS(1102), + [anon_sym_insert] = ACTIONS(1105), + [anon_sym_async] = ACTIONS(1108), + [anon_sym_PIPE] = ACTIONS(360), + [anon_sym_table] = ACTIONS(1111), + [anon_sym_assert] = ACTIONS(1114), + [anon_sym_assert_equal] = ACTIONS(1114), + [anon_sym_download] = ACTIONS(1114), + [anon_sym_help] = ACTIONS(1114), + [anon_sym_length] = ACTIONS(1114), + [anon_sym_output] = ACTIONS(1114), + [anon_sym_output_error] = ACTIONS(1114), + [anon_sym_type] = ACTIONS(1114), + [anon_sym_append] = ACTIONS(1114), + [anon_sym_metadata] = ACTIONS(1114), + [anon_sym_move] = ACTIONS(1114), + [anon_sym_read] = ACTIONS(1114), + [anon_sym_workdir] = ACTIONS(1114), + [anon_sym_write] = ACTIONS(1114), + [anon_sym_from_json] = ACTIONS(1114), + [anon_sym_to_json] = ACTIONS(1114), + [anon_sym_to_string] = ACTIONS(1114), + [anon_sym_to_float] = ACTIONS(1114), + [anon_sym_bash] = ACTIONS(1114), + [anon_sym_fish] = ACTIONS(1114), + [anon_sym_raw] = ACTIONS(1114), + [anon_sym_sh] = ACTIONS(1114), + [anon_sym_zsh] = ACTIONS(1114), + [anon_sym_random] = ACTIONS(1114), + [anon_sym_random_boolean] = ACTIONS(1114), + [anon_sym_random_float] = ACTIONS(1114), + [anon_sym_random_integer] = ACTIONS(1114), + [anon_sym_columns] = ACTIONS(1114), + [anon_sym_rows] = ACTIONS(1114), + [anon_sym_reverse] = ACTIONS(1114), + }, + [27] = { + [sym_block] = STATE(627), + [sym_statement] = STATE(226), + [sym_expression] = STATE(535), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(561), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [aux_sym_block_repeat1] = STATE(226), + [ts_builtin_sym_end] = ACTIONS(53), + [sym_identifier] = ACTIONS(5), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(53), [anon_sym_SEMI] = ACTIONS(53), [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(53), - [anon_sym_COMMA] = ACTIONS(53), [sym_integer] = ACTIONS(11), [sym_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(53), - [anon_sym_COLON] = ACTIONS(1200), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(627), - [anon_sym_match] = ACTIONS(1202), - [anon_sym_EQ_GT] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(1206), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_asyncfor] = ACTIONS(1210), - [anon_sym_transform] = ACTIONS(1212), - [anon_sym_filter] = ACTIONS(1214), - [anon_sym_find] = ACTIONS(1216), - [anon_sym_remove] = ACTIONS(1218), - [anon_sym_reduce] = ACTIONS(1220), - [anon_sym_select] = ACTIONS(1222), - [anon_sym_insert] = ACTIONS(1224), - [anon_sym_async] = ACTIONS(1226), + [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(19), + [anon_sym_match] = ACTIONS(21), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(25), + [anon_sym_for] = ACTIONS(27), + [anon_sym_asyncfor] = 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_async] = ACTIONS(45), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1228), - [anon_sym_assert] = ACTIONS(1230), - [anon_sym_assert_equal] = ACTIONS(1230), - [anon_sym_download] = ACTIONS(1230), - [anon_sym_help] = ACTIONS(1230), - [anon_sym_length] = ACTIONS(1230), - [anon_sym_output] = ACTIONS(1230), - [anon_sym_output_error] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_append] = ACTIONS(1230), - [anon_sym_metadata] = ACTIONS(1230), - [anon_sym_move] = ACTIONS(1230), - [anon_sym_read] = ACTIONS(1230), - [anon_sym_workdir] = ACTIONS(1230), - [anon_sym_write] = ACTIONS(1230), - [anon_sym_from_json] = ACTIONS(1230), - [anon_sym_to_json] = ACTIONS(1230), - [anon_sym_to_string] = ACTIONS(1230), - [anon_sym_to_float] = ACTIONS(1230), - [anon_sym_bash] = ACTIONS(1230), - [anon_sym_fish] = ACTIONS(1230), - [anon_sym_raw] = ACTIONS(1230), - [anon_sym_sh] = ACTIONS(1230), - [anon_sym_zsh] = ACTIONS(1230), - [anon_sym_random] = ACTIONS(1230), - [anon_sym_random_boolean] = ACTIONS(1230), - [anon_sym_random_float] = ACTIONS(1230), - [anon_sym_random_integer] = ACTIONS(1230), - [anon_sym_columns] = ACTIONS(1230), - [anon_sym_rows] = ACTIONS(1230), - [anon_sym_reverse] = ACTIONS(1230), - }, - [27] = { - [sym_statement] = STATE(23), - [sym_expression] = STATE(663), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_logic] = STATE(631), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(637), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(1998), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(296), - [aux_sym_block_repeat1] = STATE(23), - [ts_builtin_sym_end] = ACTIONS(419), - [sym_identifier] = ACTIONS(421), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(424), - [anon_sym_RBRACE] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(427), - [anon_sym_RPAREN] = ACTIONS(419), - [sym_integer] = ACTIONS(430), - [sym_float] = ACTIONS(433), - [sym_string] = ACTIONS(433), - [anon_sym_true] = ACTIONS(436), - [anon_sym_false] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(439), - [anon_sym_EQ] = ACTIONS(442), - [anon_sym_COLON] = ACTIONS(419), - [anon_sym_PLUS] = ACTIONS(442), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_STAR] = ACTIONS(419), - [anon_sym_SLASH] = ACTIONS(419), - [anon_sym_PERCENT] = ACTIONS(419), - [anon_sym_EQ_EQ] = ACTIONS(419), - [anon_sym_BANG_EQ] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(442), - [anon_sym_LT] = ACTIONS(442), - [anon_sym_GT_EQ] = ACTIONS(419), - [anon_sym_LT_EQ] = ACTIONS(419), - [anon_sym_PLUS_EQ] = ACTIONS(419), - [anon_sym_DASH_EQ] = ACTIONS(419), - [anon_sym_if] = ACTIONS(1232), - [anon_sym_elseif] = ACTIONS(419), - [anon_sym_else] = ACTIONS(442), - [anon_sym_match] = ACTIONS(1235), - [anon_sym_EQ_GT] = ACTIONS(1238), - [anon_sym_while] = ACTIONS(1241), - [anon_sym_for] = ACTIONS(1244), - [anon_sym_asyncfor] = ACTIONS(1247), - [anon_sym_transform] = ACTIONS(1250), - [anon_sym_filter] = ACTIONS(1253), - [anon_sym_find] = ACTIONS(1256), - [anon_sym_remove] = ACTIONS(1259), - [anon_sym_reduce] = ACTIONS(1262), - [anon_sym_select] = ACTIONS(1265), - [anon_sym_insert] = ACTIONS(1268), - [anon_sym_async] = ACTIONS(1271), - [anon_sym_PIPE] = ACTIONS(486), - [anon_sym_table] = ACTIONS(1274), - [anon_sym_assert] = ACTIONS(1277), - [anon_sym_assert_equal] = ACTIONS(1277), - [anon_sym_download] = ACTIONS(1277), - [anon_sym_help] = ACTIONS(1277), - [anon_sym_length] = ACTIONS(1277), - [anon_sym_output] = ACTIONS(1277), - [anon_sym_output_error] = ACTIONS(1277), - [anon_sym_type] = ACTIONS(1277), - [anon_sym_append] = ACTIONS(1277), - [anon_sym_metadata] = ACTIONS(1277), - [anon_sym_move] = ACTIONS(1277), - [anon_sym_read] = ACTIONS(1277), - [anon_sym_workdir] = ACTIONS(1277), - [anon_sym_write] = ACTIONS(1277), - [anon_sym_from_json] = ACTIONS(1277), - [anon_sym_to_json] = ACTIONS(1277), - [anon_sym_to_string] = ACTIONS(1277), - [anon_sym_to_float] = ACTIONS(1277), - [anon_sym_bash] = ACTIONS(1277), - [anon_sym_fish] = ACTIONS(1277), - [anon_sym_raw] = ACTIONS(1277), - [anon_sym_sh] = ACTIONS(1277), - [anon_sym_zsh] = ACTIONS(1277), - [anon_sym_random] = ACTIONS(1277), - [anon_sym_random_boolean] = ACTIONS(1277), - [anon_sym_random_float] = ACTIONS(1277), - [anon_sym_random_integer] = ACTIONS(1277), - [anon_sym_columns] = ACTIONS(1277), - [anon_sym_rows] = ACTIONS(1277), - [anon_sym_reverse] = ACTIONS(1277), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [28] = { - [sym_block] = STATE(811), - [sym_statement] = STATE(51), - [sym_expression] = STATE(817), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(748), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1472), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1480), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(760), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1926), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(351), - [aux_sym_block_repeat1] = STATE(51), - [ts_builtin_sym_end] = ACTIONS(53), - [sym_identifier] = ACTIONS(1280), + [sym_statement] = STATE(30), + [sym_expression] = STATE(479), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(365), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1119), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(218), + [aux_sym_block_repeat1] = STATE(30), + [ts_builtin_sym_end] = ACTIONS(293), + [sym_identifier] = ACTIONS(1117), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_RBRACE] = ACTIONS(53), - [anon_sym_SEMI] = ACTIONS(53), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_RPAREN] = ACTIONS(53), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1282), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_elseif] = ACTIONS(53), - [anon_sym_else] = ACTIONS(69), - [anon_sym_match] = ACTIONS(1286), - [anon_sym_EQ_GT] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_asyncfor] = ACTIONS(1294), - [anon_sym_transform] = ACTIONS(1296), - [anon_sym_filter] = ACTIONS(1298), - [anon_sym_find] = ACTIONS(1300), - [anon_sym_remove] = ACTIONS(1302), - [anon_sym_reduce] = ACTIONS(1304), - [anon_sym_select] = ACTIONS(1306), - [anon_sym_insert] = ACTIONS(1308), - [anon_sym_async] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1312), - [anon_sym_assert] = ACTIONS(1314), - [anon_sym_assert_equal] = ACTIONS(1314), - [anon_sym_download] = ACTIONS(1314), - [anon_sym_help] = ACTIONS(1314), - [anon_sym_length] = ACTIONS(1314), - [anon_sym_output] = ACTIONS(1314), - [anon_sym_output_error] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_append] = ACTIONS(1314), - [anon_sym_metadata] = ACTIONS(1314), - [anon_sym_move] = ACTIONS(1314), - [anon_sym_read] = ACTIONS(1314), - [anon_sym_workdir] = ACTIONS(1314), - [anon_sym_write] = ACTIONS(1314), - [anon_sym_from_json] = ACTIONS(1314), - [anon_sym_to_json] = ACTIONS(1314), - [anon_sym_to_string] = ACTIONS(1314), - [anon_sym_to_float] = ACTIONS(1314), - [anon_sym_bash] = ACTIONS(1314), - [anon_sym_fish] = ACTIONS(1314), - [anon_sym_raw] = ACTIONS(1314), - [anon_sym_sh] = ACTIONS(1314), - [anon_sym_zsh] = ACTIONS(1314), - [anon_sym_random] = ACTIONS(1314), - [anon_sym_random_boolean] = ACTIONS(1314), - [anon_sym_random_float] = ACTIONS(1314), - [anon_sym_random_integer] = ACTIONS(1314), - [anon_sym_columns] = ACTIONS(1314), - [anon_sym_rows] = ACTIONS(1314), - [anon_sym_reverse] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(293), + [anon_sym_SEMI] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(741), + [anon_sym_RPAREN] = ACTIONS(293), + [sym_integer] = ACTIONS(744), + [sym_float] = ACTIONS(747), + [sym_string] = ACTIONS(747), + [anon_sym_true] = ACTIONS(750), + [anon_sym_false] = ACTIONS(750), + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_COLON] = ACTIONS(293), + [anon_sym_DOT_DOT] = ACTIONS(293), + [anon_sym_PLUS] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(316), + [anon_sym_STAR] = ACTIONS(293), + [anon_sym_SLASH] = ACTIONS(293), + [anon_sym_PERCENT] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_AMP_AMP] = ACTIONS(293), + [anon_sym_PIPE_PIPE] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(316), + [anon_sym_LT] = ACTIONS(316), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_if] = ACTIONS(687), + [anon_sym_match] = ACTIONS(1120), + [anon_sym_EQ_GT] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1126), + [anon_sym_for] = ACTIONS(1129), + [anon_sym_asyncfor] = ACTIONS(1132), + [anon_sym_transform] = ACTIONS(1135), + [anon_sym_filter] = ACTIONS(1138), + [anon_sym_find] = ACTIONS(1141), + [anon_sym_remove] = ACTIONS(1144), + [anon_sym_reduce] = ACTIONS(1147), + [anon_sym_select] = ACTIONS(1150), + [anon_sym_insert] = ACTIONS(1153), + [anon_sym_async] = ACTIONS(1156), + [anon_sym_PIPE] = ACTIONS(360), + [anon_sym_table] = ACTIONS(1159), + [anon_sym_assert] = ACTIONS(1162), + [anon_sym_assert_equal] = ACTIONS(1162), + [anon_sym_download] = ACTIONS(1162), + [anon_sym_help] = ACTIONS(1162), + [anon_sym_length] = ACTIONS(1162), + [anon_sym_output] = ACTIONS(1162), + [anon_sym_output_error] = ACTIONS(1162), + [anon_sym_type] = ACTIONS(1162), + [anon_sym_append] = ACTIONS(1162), + [anon_sym_metadata] = ACTIONS(1162), + [anon_sym_move] = ACTIONS(1162), + [anon_sym_read] = ACTIONS(1162), + [anon_sym_workdir] = ACTIONS(1162), + [anon_sym_write] = ACTIONS(1162), + [anon_sym_from_json] = ACTIONS(1162), + [anon_sym_to_json] = ACTIONS(1162), + [anon_sym_to_string] = ACTIONS(1162), + [anon_sym_to_float] = ACTIONS(1162), + [anon_sym_bash] = ACTIONS(1162), + [anon_sym_fish] = ACTIONS(1162), + [anon_sym_raw] = ACTIONS(1162), + [anon_sym_sh] = ACTIONS(1162), + [anon_sym_zsh] = ACTIONS(1162), + [anon_sym_random] = ACTIONS(1162), + [anon_sym_random_boolean] = ACTIONS(1162), + [anon_sym_random_float] = ACTIONS(1162), + [anon_sym_random_integer] = ACTIONS(1162), + [anon_sym_columns] = ACTIONS(1162), + [anon_sym_rows] = ACTIONS(1162), + [anon_sym_reverse] = ACTIONS(1162), }, [29] = { - [sym_statement] = STATE(29), - [sym_expression] = STATE(685), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(576), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(647), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1984), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(302), - [aux_sym_block_repeat1] = STATE(29), - [ts_builtin_sym_end] = ACTIONS(343), - [sym_identifier] = ACTIONS(1316), + [sym_statement] = STATE(20), + [sym_expression] = STATE(449), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(353), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [aux_sym_block_repeat1] = STATE(20), + [sym_identifier] = ACTIONS(965), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1319), - [anon_sym_RBRACE] = ACTIONS(343), - [anon_sym_SEMI] = ACTIONS(343), - [anon_sym_LPAREN] = ACTIONS(1322), - [anon_sym_RPAREN] = ACTIONS(343), - [anon_sym_COMMA] = ACTIONS(343), - [sym_integer] = ACTIONS(1325), - [sym_float] = ACTIONS(1328), - [sym_string] = ACTIONS(1328), - [anon_sym_true] = ACTIONS(1331), - [anon_sym_false] = ACTIONS(1331), - [anon_sym_LBRACK] = ACTIONS(1334), - [anon_sym_RBRACK] = ACTIONS(343), - [anon_sym_COLON] = ACTIONS(343), - [anon_sym_DOT_DOT] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(366), - [anon_sym_STAR] = ACTIONS(343), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_PERCENT] = ACTIONS(343), - [anon_sym_EQ_EQ] = ACTIONS(343), - [anon_sym_BANG_EQ] = ACTIONS(343), - [anon_sym_AMP_AMP] = ACTIONS(343), - [anon_sym_PIPE_PIPE] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(366), - [anon_sym_LT] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(343), - [anon_sym_LT_EQ] = ACTIONS(343), - [anon_sym_if] = ACTIONS(1337), - [anon_sym_elseif] = ACTIONS(343), - [anon_sym_else] = ACTIONS(366), - [anon_sym_match] = ACTIONS(1340), - [anon_sym_EQ_GT] = ACTIONS(1343), - [anon_sym_while] = ACTIONS(1346), - [anon_sym_for] = ACTIONS(1349), - [anon_sym_asyncfor] = ACTIONS(1352), - [anon_sym_transform] = ACTIONS(1355), - [anon_sym_filter] = ACTIONS(1358), - [anon_sym_find] = ACTIONS(1361), - [anon_sym_remove] = ACTIONS(1364), - [anon_sym_reduce] = ACTIONS(1367), - [anon_sym_select] = ACTIONS(1370), - [anon_sym_insert] = ACTIONS(1373), - [anon_sym_async] = ACTIONS(1376), - [anon_sym_PIPE] = ACTIONS(410), - [anon_sym_table] = ACTIONS(1379), - [anon_sym_assert] = ACTIONS(1382), - [anon_sym_assert_equal] = ACTIONS(1382), - [anon_sym_download] = ACTIONS(1382), - [anon_sym_help] = ACTIONS(1382), - [anon_sym_length] = ACTIONS(1382), - [anon_sym_output] = ACTIONS(1382), - [anon_sym_output_error] = ACTIONS(1382), - [anon_sym_type] = ACTIONS(1382), - [anon_sym_append] = ACTIONS(1382), - [anon_sym_metadata] = ACTIONS(1382), - [anon_sym_move] = ACTIONS(1382), - [anon_sym_read] = ACTIONS(1382), - [anon_sym_workdir] = ACTIONS(1382), - [anon_sym_write] = ACTIONS(1382), - [anon_sym_from_json] = ACTIONS(1382), - [anon_sym_to_json] = ACTIONS(1382), - [anon_sym_to_string] = ACTIONS(1382), - [anon_sym_to_float] = ACTIONS(1382), - [anon_sym_bash] = ACTIONS(1382), - [anon_sym_fish] = ACTIONS(1382), - [anon_sym_raw] = ACTIONS(1382), - [anon_sym_sh] = ACTIONS(1382), - [anon_sym_zsh] = ACTIONS(1382), - [anon_sym_random] = ACTIONS(1382), - [anon_sym_random_boolean] = ACTIONS(1382), - [anon_sym_random_float] = ACTIONS(1382), - [anon_sym_random_integer] = ACTIONS(1382), - [anon_sym_columns] = ACTIONS(1382), - [anon_sym_rows] = ACTIONS(1382), - [anon_sym_reverse] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(293), + [anon_sym_SEMI] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(741), + [anon_sym_RPAREN] = ACTIONS(293), + [anon_sym_COMMA] = ACTIONS(293), + [sym_integer] = ACTIONS(744), + [sym_float] = ACTIONS(747), + [sym_string] = ACTIONS(747), + [anon_sym_true] = ACTIONS(750), + [anon_sym_false] = ACTIONS(750), + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_RBRACK] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(293), + [anon_sym_PLUS] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(316), + [anon_sym_STAR] = ACTIONS(293), + [anon_sym_SLASH] = ACTIONS(293), + [anon_sym_PERCENT] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_AMP_AMP] = ACTIONS(293), + [anon_sym_PIPE_PIPE] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(316), + [anon_sym_LT] = ACTIONS(316), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(263), + [anon_sym_EQ_GT] = ACTIONS(971), + [anon_sym_while] = ACTIONS(267), + [anon_sym_for] = ACTIONS(269), + [anon_sym_asyncfor] = ACTIONS(271), + [anon_sym_transform] = ACTIONS(273), + [anon_sym_filter] = ACTIONS(275), + [anon_sym_find] = ACTIONS(277), + [anon_sym_remove] = ACTIONS(279), + [anon_sym_reduce] = ACTIONS(281), + [anon_sym_select] = ACTIONS(283), + [anon_sym_insert] = ACTIONS(285), + [anon_sym_async] = ACTIONS(287), + [anon_sym_PIPE] = ACTIONS(360), + [anon_sym_table] = ACTIONS(1007), + [anon_sym_assert] = ACTIONS(1010), + [anon_sym_assert_equal] = ACTIONS(1010), + [anon_sym_download] = ACTIONS(1010), + [anon_sym_help] = ACTIONS(1010), + [anon_sym_length] = ACTIONS(1010), + [anon_sym_output] = ACTIONS(1010), + [anon_sym_output_error] = ACTIONS(1010), + [anon_sym_type] = ACTIONS(1010), + [anon_sym_append] = ACTIONS(1010), + [anon_sym_metadata] = ACTIONS(1010), + [anon_sym_move] = ACTIONS(1010), + [anon_sym_read] = ACTIONS(1010), + [anon_sym_workdir] = ACTIONS(1010), + [anon_sym_write] = ACTIONS(1010), + [anon_sym_from_json] = ACTIONS(1010), + [anon_sym_to_json] = ACTIONS(1010), + [anon_sym_to_string] = ACTIONS(1010), + [anon_sym_to_float] = ACTIONS(1010), + [anon_sym_bash] = ACTIONS(1010), + [anon_sym_fish] = ACTIONS(1010), + [anon_sym_raw] = ACTIONS(1010), + [anon_sym_sh] = ACTIONS(1010), + [anon_sym_zsh] = ACTIONS(1010), + [anon_sym_random] = ACTIONS(1010), + [anon_sym_random_boolean] = ACTIONS(1010), + [anon_sym_random_float] = ACTIONS(1010), + [anon_sym_random_integer] = ACTIONS(1010), + [anon_sym_columns] = ACTIONS(1010), + [anon_sym_rows] = ACTIONS(1010), + [anon_sym_reverse] = ACTIONS(1010), }, [30] = { [sym_statement] = STATE(30), - [sym_expression] = STATE(732), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(620), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(654), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1841), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(315), + [sym_expression] = STATE(479), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(365), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1119), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(218), [aux_sym_block_repeat1] = STATE(30), - [ts_builtin_sym_end] = ACTIONS(343), - [sym_identifier] = ACTIONS(1385), + [ts_builtin_sym_end] = ACTIONS(369), + [sym_identifier] = ACTIONS(1165), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1319), - [anon_sym_RBRACE] = ACTIONS(343), - [anon_sym_SEMI] = ACTIONS(343), - [anon_sym_LPAREN] = ACTIONS(1322), - [anon_sym_RPAREN] = ACTIONS(343), - [anon_sym_COMMA] = ACTIONS(343), - [sym_integer] = ACTIONS(1325), - [sym_float] = ACTIONS(1328), - [sym_string] = ACTIONS(1328), - [anon_sym_true] = ACTIONS(1331), - [anon_sym_false] = ACTIONS(1331), - [anon_sym_LBRACK] = ACTIONS(1334), - [anon_sym_RBRACK] = ACTIONS(343), - [anon_sym_COLON] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(366), - [anon_sym_STAR] = ACTIONS(343), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_PERCENT] = ACTIONS(343), - [anon_sym_EQ_EQ] = ACTIONS(343), - [anon_sym_BANG_EQ] = ACTIONS(343), - [anon_sym_AMP_AMP] = ACTIONS(343), - [anon_sym_PIPE_PIPE] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(366), - [anon_sym_LT] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(343), - [anon_sym_LT_EQ] = ACTIONS(343), - [anon_sym_if] = ACTIONS(1388), - [anon_sym_elseif] = ACTIONS(343), - [anon_sym_else] = ACTIONS(366), - [anon_sym_match] = ACTIONS(1391), - [anon_sym_EQ_GT] = ACTIONS(1394), - [anon_sym_while] = ACTIONS(1397), - [anon_sym_for] = ACTIONS(1400), - [anon_sym_asyncfor] = ACTIONS(1403), - [anon_sym_transform] = ACTIONS(1406), - [anon_sym_filter] = ACTIONS(1409), - [anon_sym_find] = ACTIONS(1412), - [anon_sym_remove] = ACTIONS(1415), - [anon_sym_reduce] = ACTIONS(1418), - [anon_sym_select] = ACTIONS(1421), - [anon_sym_insert] = ACTIONS(1424), - [anon_sym_async] = ACTIONS(1427), - [anon_sym_PIPE] = ACTIONS(410), - [anon_sym_table] = ACTIONS(1430), - [anon_sym_assert] = ACTIONS(1433), - [anon_sym_assert_equal] = ACTIONS(1433), - [anon_sym_download] = ACTIONS(1433), - [anon_sym_help] = ACTIONS(1433), - [anon_sym_length] = ACTIONS(1433), - [anon_sym_output] = ACTIONS(1433), - [anon_sym_output_error] = ACTIONS(1433), - [anon_sym_type] = ACTIONS(1433), - [anon_sym_append] = ACTIONS(1433), - [anon_sym_metadata] = ACTIONS(1433), - [anon_sym_move] = ACTIONS(1433), - [anon_sym_read] = ACTIONS(1433), - [anon_sym_workdir] = ACTIONS(1433), - [anon_sym_write] = ACTIONS(1433), - [anon_sym_from_json] = ACTIONS(1433), - [anon_sym_to_json] = ACTIONS(1433), - [anon_sym_to_string] = ACTIONS(1433), - [anon_sym_to_float] = ACTIONS(1433), - [anon_sym_bash] = ACTIONS(1433), - [anon_sym_fish] = ACTIONS(1433), - [anon_sym_raw] = ACTIONS(1433), - [anon_sym_sh] = ACTIONS(1433), - [anon_sym_zsh] = ACTIONS(1433), - [anon_sym_random] = ACTIONS(1433), - [anon_sym_random_boolean] = ACTIONS(1433), - [anon_sym_random_float] = ACTIONS(1433), - [anon_sym_random_integer] = ACTIONS(1433), - [anon_sym_columns] = ACTIONS(1433), - [anon_sym_rows] = ACTIONS(1433), - [anon_sym_reverse] = ACTIONS(1433), + [anon_sym_LBRACE] = ACTIONS(804), + [anon_sym_RBRACE] = ACTIONS(369), + [anon_sym_SEMI] = ACTIONS(369), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_RPAREN] = ACTIONS(369), + [sym_integer] = ACTIONS(810), + [sym_float] = ACTIONS(813), + [sym_string] = ACTIONS(813), + [anon_sym_true] = ACTIONS(816), + [anon_sym_false] = ACTIONS(816), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_COLON] = ACTIONS(369), + [anon_sym_DOT_DOT] = ACTIONS(369), + [anon_sym_PLUS] = ACTIONS(369), + [anon_sym_DASH] = ACTIONS(392), + [anon_sym_STAR] = ACTIONS(369), + [anon_sym_SLASH] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(369), + [anon_sym_EQ_EQ] = ACTIONS(369), + [anon_sym_BANG_EQ] = ACTIONS(369), + [anon_sym_AMP_AMP] = ACTIONS(369), + [anon_sym_PIPE_PIPE] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(392), + [anon_sym_LT] = ACTIONS(392), + [anon_sym_GT_EQ] = ACTIONS(369), + [anon_sym_LT_EQ] = ACTIONS(369), + [anon_sym_if] = ACTIONS(636), + [anon_sym_match] = ACTIONS(1168), + [anon_sym_EQ_GT] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1174), + [anon_sym_for] = ACTIONS(1177), + [anon_sym_asyncfor] = ACTIONS(1180), + [anon_sym_transform] = ACTIONS(1183), + [anon_sym_filter] = ACTIONS(1186), + [anon_sym_find] = ACTIONS(1189), + [anon_sym_remove] = ACTIONS(1192), + [anon_sym_reduce] = ACTIONS(1195), + [anon_sym_select] = ACTIONS(1198), + [anon_sym_insert] = ACTIONS(1201), + [anon_sym_async] = ACTIONS(1204), + [anon_sym_PIPE] = ACTIONS(436), + [anon_sym_table] = ACTIONS(1207), + [anon_sym_assert] = ACTIONS(1210), + [anon_sym_assert_equal] = ACTIONS(1210), + [anon_sym_download] = ACTIONS(1210), + [anon_sym_help] = ACTIONS(1210), + [anon_sym_length] = ACTIONS(1210), + [anon_sym_output] = ACTIONS(1210), + [anon_sym_output_error] = ACTIONS(1210), + [anon_sym_type] = ACTIONS(1210), + [anon_sym_append] = ACTIONS(1210), + [anon_sym_metadata] = ACTIONS(1210), + [anon_sym_move] = ACTIONS(1210), + [anon_sym_read] = ACTIONS(1210), + [anon_sym_workdir] = ACTIONS(1210), + [anon_sym_write] = ACTIONS(1210), + [anon_sym_from_json] = ACTIONS(1210), + [anon_sym_to_json] = ACTIONS(1210), + [anon_sym_to_string] = ACTIONS(1210), + [anon_sym_to_float] = ACTIONS(1210), + [anon_sym_bash] = ACTIONS(1210), + [anon_sym_fish] = ACTIONS(1210), + [anon_sym_raw] = ACTIONS(1210), + [anon_sym_sh] = ACTIONS(1210), + [anon_sym_zsh] = ACTIONS(1210), + [anon_sym_random] = ACTIONS(1210), + [anon_sym_random_boolean] = ACTIONS(1210), + [anon_sym_random_float] = ACTIONS(1210), + [anon_sym_random_integer] = ACTIONS(1210), + [anon_sym_columns] = ACTIONS(1210), + [anon_sym_rows] = ACTIONS(1210), + [anon_sym_reverse] = ACTIONS(1210), }, [31] = { - [sym_block] = STATE(839), - [sym_statement] = STATE(57), - [sym_expression] = STATE(853), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(776), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1142), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1143), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(710), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1823), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(366), - [aux_sym_block_repeat1] = STATE(57), - [ts_builtin_sym_end] = ACTIONS(53), - [sym_identifier] = ACTIONS(1436), + [sym_statement] = STATE(31), + [sym_expression] = STATE(516), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(433), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [aux_sym_block_repeat1] = STATE(31), + [ts_builtin_sym_end] = ACTIONS(369), + [sym_identifier] = ACTIONS(1213), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(877), - [anon_sym_RBRACE] = ACTIONS(53), - [anon_sym_SEMI] = ACTIONS(53), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(53), - [sym_integer] = ACTIONS(11), - [sym_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(1438), - [anon_sym_DOT_DOT] = ACTIONS(53), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(843), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_EQ_GT] = ACTIONS(1442), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_for] = ACTIONS(1446), - [anon_sym_asyncfor] = ACTIONS(1448), - [anon_sym_transform] = ACTIONS(1450), - [anon_sym_filter] = ACTIONS(1452), - [anon_sym_find] = ACTIONS(1454), - [anon_sym_remove] = ACTIONS(1456), - [anon_sym_reduce] = ACTIONS(1458), - [anon_sym_select] = ACTIONS(1460), - [anon_sym_insert] = ACTIONS(1462), - [anon_sym_async] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1466), - [anon_sym_assert] = ACTIONS(1468), - [anon_sym_assert_equal] = ACTIONS(1468), - [anon_sym_download] = ACTIONS(1468), - [anon_sym_help] = ACTIONS(1468), - [anon_sym_length] = ACTIONS(1468), - [anon_sym_output] = ACTIONS(1468), - [anon_sym_output_error] = ACTIONS(1468), - [anon_sym_type] = ACTIONS(1468), - [anon_sym_append] = ACTIONS(1468), - [anon_sym_metadata] = ACTIONS(1468), - [anon_sym_move] = ACTIONS(1468), - [anon_sym_read] = ACTIONS(1468), - [anon_sym_workdir] = ACTIONS(1468), - [anon_sym_write] = ACTIONS(1468), - [anon_sym_from_json] = ACTIONS(1468), - [anon_sym_to_json] = ACTIONS(1468), - [anon_sym_to_string] = ACTIONS(1468), - [anon_sym_to_float] = ACTIONS(1468), - [anon_sym_bash] = ACTIONS(1468), - [anon_sym_fish] = ACTIONS(1468), - [anon_sym_raw] = ACTIONS(1468), - [anon_sym_sh] = ACTIONS(1468), - [anon_sym_zsh] = ACTIONS(1468), - [anon_sym_random] = ACTIONS(1468), - [anon_sym_random_boolean] = ACTIONS(1468), - [anon_sym_random_float] = ACTIONS(1468), - [anon_sym_random_integer] = ACTIONS(1468), - [anon_sym_columns] = ACTIONS(1468), - [anon_sym_rows] = ACTIONS(1468), - [anon_sym_reverse] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(804), + [anon_sym_RBRACE] = ACTIONS(369), + [anon_sym_SEMI] = ACTIONS(369), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_RPAREN] = ACTIONS(369), + [sym_integer] = ACTIONS(810), + [sym_float] = ACTIONS(813), + [sym_string] = ACTIONS(813), + [anon_sym_true] = ACTIONS(816), + [anon_sym_false] = ACTIONS(816), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_COLON] = ACTIONS(369), + [anon_sym_PLUS] = ACTIONS(369), + [anon_sym_DASH] = ACTIONS(392), + [anon_sym_STAR] = ACTIONS(369), + [anon_sym_SLASH] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(369), + [anon_sym_EQ_EQ] = ACTIONS(369), + [anon_sym_BANG_EQ] = ACTIONS(369), + [anon_sym_AMP_AMP] = ACTIONS(369), + [anon_sym_PIPE_PIPE] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(392), + [anon_sym_LT] = ACTIONS(392), + [anon_sym_GT_EQ] = ACTIONS(369), + [anon_sym_LT_EQ] = ACTIONS(369), + [anon_sym_if] = ACTIONS(1018), + [anon_sym_match] = ACTIONS(1216), + [anon_sym_EQ_GT] = ACTIONS(1219), + [anon_sym_while] = ACTIONS(1222), + [anon_sym_for] = ACTIONS(1225), + [anon_sym_asyncfor] = ACTIONS(1228), + [anon_sym_transform] = ACTIONS(1231), + [anon_sym_filter] = ACTIONS(1234), + [anon_sym_find] = ACTIONS(1237), + [anon_sym_remove] = ACTIONS(1240), + [anon_sym_reduce] = ACTIONS(1243), + [anon_sym_select] = ACTIONS(1246), + [anon_sym_insert] = ACTIONS(1249), + [anon_sym_async] = ACTIONS(1252), + [anon_sym_PIPE] = ACTIONS(436), + [anon_sym_table] = ACTIONS(1255), + [anon_sym_assert] = ACTIONS(1258), + [anon_sym_assert_equal] = ACTIONS(1258), + [anon_sym_download] = ACTIONS(1258), + [anon_sym_help] = ACTIONS(1258), + [anon_sym_length] = ACTIONS(1258), + [anon_sym_output] = ACTIONS(1258), + [anon_sym_output_error] = ACTIONS(1258), + [anon_sym_type] = ACTIONS(1258), + [anon_sym_append] = ACTIONS(1258), + [anon_sym_metadata] = ACTIONS(1258), + [anon_sym_move] = ACTIONS(1258), + [anon_sym_read] = ACTIONS(1258), + [anon_sym_workdir] = ACTIONS(1258), + [anon_sym_write] = ACTIONS(1258), + [anon_sym_from_json] = ACTIONS(1258), + [anon_sym_to_json] = ACTIONS(1258), + [anon_sym_to_string] = ACTIONS(1258), + [anon_sym_to_float] = ACTIONS(1258), + [anon_sym_bash] = ACTIONS(1258), + [anon_sym_fish] = ACTIONS(1258), + [anon_sym_raw] = ACTIONS(1258), + [anon_sym_sh] = ACTIONS(1258), + [anon_sym_zsh] = ACTIONS(1258), + [anon_sym_random] = ACTIONS(1258), + [anon_sym_random_boolean] = ACTIONS(1258), + [anon_sym_random_float] = ACTIONS(1258), + [anon_sym_random_integer] = ACTIONS(1258), + [anon_sym_columns] = ACTIONS(1258), + [anon_sym_rows] = ACTIONS(1258), + [anon_sym_reverse] = ACTIONS(1258), }, [32] = { - [sym_statement] = STATE(32), - [sym_expression] = STATE(701), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_logic] = STATE(706), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(582), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1866), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(320), - [aux_sym_block_repeat1] = STATE(32), - [ts_builtin_sym_end] = ACTIONS(343), - [sym_identifier] = ACTIONS(659), + [sym_statement] = STATE(31), + [sym_expression] = STATE(516), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(433), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [aux_sym_block_repeat1] = STATE(31), + [ts_builtin_sym_end] = ACTIONS(293), + [sym_identifier] = ACTIONS(1261), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(662), - [anon_sym_RBRACE] = ACTIONS(343), - [anon_sym_SEMI] = ACTIONS(343), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_RPAREN] = ACTIONS(343), - [sym_integer] = ACTIONS(668), - [sym_float] = ACTIONS(671), - [sym_string] = ACTIONS(671), - [anon_sym_true] = ACTIONS(674), - [anon_sym_false] = ACTIONS(674), - [anon_sym_LBRACK] = ACTIONS(677), - [anon_sym_EQ] = ACTIONS(366), - [anon_sym_COLON] = ACTIONS(343), - [anon_sym_DOT_DOT] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(366), - [anon_sym_DASH] = ACTIONS(366), - [anon_sym_STAR] = ACTIONS(343), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_PERCENT] = ACTIONS(343), - [anon_sym_EQ_EQ] = ACTIONS(343), - [anon_sym_BANG_EQ] = ACTIONS(343), - [anon_sym_AMP_AMP] = ACTIONS(343), - [anon_sym_PIPE_PIPE] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(366), - [anon_sym_LT] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(343), - [anon_sym_LT_EQ] = ACTIONS(343), - [anon_sym_PLUS_EQ] = ACTIONS(343), - [anon_sym_DASH_EQ] = ACTIONS(343), - [anon_sym_if] = ACTIONS(725), - [anon_sym_match] = ACTIONS(1470), - [anon_sym_EQ_GT] = ACTIONS(1473), - [anon_sym_while] = ACTIONS(1476), - [anon_sym_for] = ACTIONS(1479), - [anon_sym_asyncfor] = ACTIONS(1482), - [anon_sym_transform] = ACTIONS(1485), - [anon_sym_filter] = ACTIONS(1488), - [anon_sym_find] = ACTIONS(1491), - [anon_sym_remove] = ACTIONS(1494), - [anon_sym_reduce] = ACTIONS(1497), - [anon_sym_select] = ACTIONS(1500), - [anon_sym_insert] = ACTIONS(1503), - [anon_sym_async] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(410), - [anon_sym_table] = ACTIONS(1509), - [anon_sym_assert] = ACTIONS(1512), - [anon_sym_assert_equal] = ACTIONS(1512), - [anon_sym_download] = ACTIONS(1512), - [anon_sym_help] = ACTIONS(1512), - [anon_sym_length] = ACTIONS(1512), - [anon_sym_output] = ACTIONS(1512), - [anon_sym_output_error] = ACTIONS(1512), - [anon_sym_type] = ACTIONS(1512), - [anon_sym_append] = ACTIONS(1512), - [anon_sym_metadata] = ACTIONS(1512), - [anon_sym_move] = ACTIONS(1512), - [anon_sym_read] = ACTIONS(1512), - [anon_sym_workdir] = ACTIONS(1512), - [anon_sym_write] = ACTIONS(1512), - [anon_sym_from_json] = ACTIONS(1512), - [anon_sym_to_json] = ACTIONS(1512), - [anon_sym_to_string] = ACTIONS(1512), - [anon_sym_to_float] = ACTIONS(1512), - [anon_sym_bash] = ACTIONS(1512), - [anon_sym_fish] = ACTIONS(1512), - [anon_sym_raw] = ACTIONS(1512), - [anon_sym_sh] = ACTIONS(1512), - [anon_sym_zsh] = ACTIONS(1512), - [anon_sym_random] = ACTIONS(1512), - [anon_sym_random_boolean] = ACTIONS(1512), - [anon_sym_random_float] = ACTIONS(1512), - [anon_sym_random_integer] = ACTIONS(1512), - [anon_sym_columns] = ACTIONS(1512), - [anon_sym_rows] = ACTIONS(1512), - [anon_sym_reverse] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(293), + [anon_sym_SEMI] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(741), + [anon_sym_RPAREN] = ACTIONS(293), + [sym_integer] = ACTIONS(744), + [sym_float] = ACTIONS(747), + [sym_string] = ACTIONS(747), + [anon_sym_true] = ACTIONS(750), + [anon_sym_false] = ACTIONS(750), + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_COLON] = ACTIONS(293), + [anon_sym_PLUS] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(316), + [anon_sym_STAR] = ACTIONS(293), + [anon_sym_SLASH] = ACTIONS(293), + [anon_sym_PERCENT] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_AMP_AMP] = ACTIONS(293), + [anon_sym_PIPE_PIPE] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(316), + [anon_sym_LT] = ACTIONS(316), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_if] = ACTIONS(1069), + [anon_sym_match] = ACTIONS(1264), + [anon_sym_EQ_GT] = ACTIONS(1267), + [anon_sym_while] = ACTIONS(1270), + [anon_sym_for] = ACTIONS(1273), + [anon_sym_asyncfor] = ACTIONS(1276), + [anon_sym_transform] = ACTIONS(1279), + [anon_sym_filter] = ACTIONS(1282), + [anon_sym_find] = ACTIONS(1285), + [anon_sym_remove] = ACTIONS(1288), + [anon_sym_reduce] = ACTIONS(1291), + [anon_sym_select] = ACTIONS(1294), + [anon_sym_insert] = ACTIONS(1297), + [anon_sym_async] = ACTIONS(1300), + [anon_sym_PIPE] = ACTIONS(360), + [anon_sym_table] = ACTIONS(1303), + [anon_sym_assert] = ACTIONS(1306), + [anon_sym_assert_equal] = ACTIONS(1306), + [anon_sym_download] = ACTIONS(1306), + [anon_sym_help] = ACTIONS(1306), + [anon_sym_length] = ACTIONS(1306), + [anon_sym_output] = ACTIONS(1306), + [anon_sym_output_error] = ACTIONS(1306), + [anon_sym_type] = ACTIONS(1306), + [anon_sym_append] = ACTIONS(1306), + [anon_sym_metadata] = ACTIONS(1306), + [anon_sym_move] = ACTIONS(1306), + [anon_sym_read] = ACTIONS(1306), + [anon_sym_workdir] = ACTIONS(1306), + [anon_sym_write] = ACTIONS(1306), + [anon_sym_from_json] = ACTIONS(1306), + [anon_sym_to_json] = ACTIONS(1306), + [anon_sym_to_string] = ACTIONS(1306), + [anon_sym_to_float] = ACTIONS(1306), + [anon_sym_bash] = ACTIONS(1306), + [anon_sym_fish] = ACTIONS(1306), + [anon_sym_raw] = ACTIONS(1306), + [anon_sym_sh] = ACTIONS(1306), + [anon_sym_zsh] = ACTIONS(1306), + [anon_sym_random] = ACTIONS(1306), + [anon_sym_random_boolean] = ACTIONS(1306), + [anon_sym_random_float] = ACTIONS(1306), + [anon_sym_random_integer] = ACTIONS(1306), + [anon_sym_columns] = ACTIONS(1306), + [anon_sym_rows] = ACTIONS(1306), + [anon_sym_reverse] = ACTIONS(1306), }, [33] = { - [sym_statement] = STATE(30), - [sym_expression] = STATE(732), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(620), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(654), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1841), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(315), - [aux_sym_block_repeat1] = STATE(30), - [ts_builtin_sym_end] = ACTIONS(419), - [sym_identifier] = ACTIONS(1515), + [sym_statement] = STATE(18), + [sym_expression] = STATE(402), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(348), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1104), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(18), + [sym_identifier] = ACTIONS(735), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(994), - [anon_sym_RBRACE] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_RPAREN] = ACTIONS(419), - [anon_sym_COMMA] = ACTIONS(419), - [sym_integer] = ACTIONS(1000), - [sym_float] = ACTIONS(1003), - [sym_string] = ACTIONS(1003), - [anon_sym_true] = ACTIONS(1006), - [anon_sym_false] = ACTIONS(1006), - [anon_sym_LBRACK] = ACTIONS(1009), - [anon_sym_RBRACK] = ACTIONS(419), - [anon_sym_COLON] = ACTIONS(419), - [anon_sym_PLUS] = ACTIONS(419), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_STAR] = ACTIONS(419), - [anon_sym_SLASH] = ACTIONS(419), - [anon_sym_PERCENT] = ACTIONS(419), - [anon_sym_EQ_EQ] = ACTIONS(419), - [anon_sym_BANG_EQ] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(442), - [anon_sym_LT] = ACTIONS(442), - [anon_sym_GT_EQ] = ACTIONS(419), - [anon_sym_LT_EQ] = ACTIONS(419), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_elseif] = ACTIONS(419), - [anon_sym_else] = ACTIONS(442), - [anon_sym_match] = ACTIONS(1521), - [anon_sym_EQ_GT] = ACTIONS(1524), - [anon_sym_while] = ACTIONS(1527), - [anon_sym_for] = ACTIONS(1530), - [anon_sym_asyncfor] = ACTIONS(1533), - [anon_sym_transform] = ACTIONS(1536), - [anon_sym_filter] = ACTIONS(1539), - [anon_sym_find] = ACTIONS(1542), - [anon_sym_remove] = ACTIONS(1545), - [anon_sym_reduce] = ACTIONS(1548), - [anon_sym_select] = ACTIONS(1551), - [anon_sym_insert] = ACTIONS(1554), - [anon_sym_async] = ACTIONS(1557), - [anon_sym_PIPE] = ACTIONS(486), - [anon_sym_table] = ACTIONS(1560), - [anon_sym_assert] = ACTIONS(1563), - [anon_sym_assert_equal] = ACTIONS(1563), - [anon_sym_download] = ACTIONS(1563), - [anon_sym_help] = ACTIONS(1563), - [anon_sym_length] = ACTIONS(1563), - [anon_sym_output] = ACTIONS(1563), - [anon_sym_output_error] = ACTIONS(1563), - [anon_sym_type] = ACTIONS(1563), - [anon_sym_append] = ACTIONS(1563), - [anon_sym_metadata] = ACTIONS(1563), - [anon_sym_move] = ACTIONS(1563), - [anon_sym_read] = ACTIONS(1563), - [anon_sym_workdir] = ACTIONS(1563), - [anon_sym_write] = ACTIONS(1563), - [anon_sym_from_json] = ACTIONS(1563), - [anon_sym_to_json] = ACTIONS(1563), - [anon_sym_to_string] = ACTIONS(1563), - [anon_sym_to_float] = ACTIONS(1563), - [anon_sym_bash] = ACTIONS(1563), - [anon_sym_fish] = ACTIONS(1563), - [anon_sym_raw] = ACTIONS(1563), - [anon_sym_sh] = ACTIONS(1563), - [anon_sym_zsh] = ACTIONS(1563), - [anon_sym_random] = ACTIONS(1563), - [anon_sym_random_boolean] = ACTIONS(1563), - [anon_sym_random_float] = ACTIONS(1563), - [anon_sym_random_integer] = ACTIONS(1563), - [anon_sym_columns] = ACTIONS(1563), - [anon_sym_rows] = ACTIONS(1563), - [anon_sym_reverse] = ACTIONS(1563), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_RBRACE] = ACTIONS(293), + [anon_sym_SEMI] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_COMMA] = ACTIONS(293), + [sym_integer] = ACTIONS(11), + [sym_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(293), + [anon_sym_DOT_DOT] = ACTIONS(293), + [anon_sym_PLUS] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(316), + [anon_sym_STAR] = ACTIONS(293), + [anon_sym_SLASH] = ACTIONS(293), + [anon_sym_PERCENT] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_AMP_AMP] = ACTIONS(293), + [anon_sym_PIPE_PIPE] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(316), + [anon_sym_LT] = ACTIONS(316), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_if] = ACTIONS(79), + [anon_sym_match] = ACTIONS(193), + [anon_sym_EQ_GT] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_for] = ACTIONS(199), + [anon_sym_asyncfor] = ACTIONS(201), + [anon_sym_transform] = ACTIONS(203), + [anon_sym_filter] = ACTIONS(205), + [anon_sym_find] = ACTIONS(207), + [anon_sym_remove] = ACTIONS(209), + [anon_sym_reduce] = ACTIONS(211), + [anon_sym_select] = ACTIONS(213), + [anon_sym_insert] = ACTIONS(215), + [anon_sym_async] = ACTIONS(217), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(219), + [anon_sym_assert] = ACTIONS(221), + [anon_sym_assert_equal] = ACTIONS(221), + [anon_sym_download] = ACTIONS(221), + [anon_sym_help] = ACTIONS(221), + [anon_sym_length] = ACTIONS(221), + [anon_sym_output] = ACTIONS(221), + [anon_sym_output_error] = ACTIONS(221), + [anon_sym_type] = ACTIONS(221), + [anon_sym_append] = ACTIONS(221), + [anon_sym_metadata] = ACTIONS(221), + [anon_sym_move] = ACTIONS(221), + [anon_sym_read] = ACTIONS(221), + [anon_sym_workdir] = ACTIONS(221), + [anon_sym_write] = ACTIONS(221), + [anon_sym_from_json] = ACTIONS(221), + [anon_sym_to_json] = ACTIONS(221), + [anon_sym_to_string] = ACTIONS(221), + [anon_sym_to_float] = ACTIONS(221), + [anon_sym_bash] = ACTIONS(221), + [anon_sym_fish] = ACTIONS(221), + [anon_sym_raw] = ACTIONS(221), + [anon_sym_sh] = ACTIONS(221), + [anon_sym_zsh] = ACTIONS(221), + [anon_sym_random] = ACTIONS(221), + [anon_sym_random_boolean] = ACTIONS(221), + [anon_sym_random_float] = ACTIONS(221), + [anon_sym_random_integer] = ACTIONS(221), + [anon_sym_columns] = ACTIONS(221), + [anon_sym_rows] = ACTIONS(221), + [anon_sym_reverse] = ACTIONS(221), }, [34] = { - [sym_block] = STATE(1022), - [sym_statement] = STATE(358), - [sym_expression] = STATE(859), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(754), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1322), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1321), - [sym_assignment] = STATE(1023), - [sym_if_else] = STATE(1023), - [sym_if] = STATE(985), - [sym_match] = STATE(1023), - [sym_while] = STATE(1023), - [sym_for] = STATE(1023), - [sym_transform] = STATE(1023), - [sym_filter] = STATE(1023), - [sym_find] = STATE(1023), - [sym_remove] = STATE(1023), - [sym_reduce] = STATE(1023), - [sym_select] = STATE(1023), - [sym_insert] = STATE(1023), - [sym_async] = STATE(1023), - [sym_identifier_list] = STATE(1841), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(315), - [aux_sym_block_repeat1] = STATE(358), - [sym_identifier] = ACTIONS(1566), + [sym_block] = STATE(645), + [sym_statement] = STATE(225), + [sym_expression] = STATE(547), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(571), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [aux_sym_block_repeat1] = STATE(225), + [sym_identifier] = ACTIONS(941), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1568), - [anon_sym_RBRACE] = ACTIONS(53), - [anon_sym_SEMI] = ACTIONS(53), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_COMMA] = ACTIONS(53), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(625), - [anon_sym_PLUS] = ACTIONS(75), + [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(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(1570), - [anon_sym_elseif] = ACTIONS(53), - [anon_sym_else] = ACTIONS(69), - [anon_sym_match] = ACTIONS(1572), - [anon_sym_EQ_GT] = ACTIONS(631), - [anon_sym_while] = ACTIONS(1574), - [anon_sym_for] = ACTIONS(1576), - [anon_sym_asyncfor] = ACTIONS(1578), - [anon_sym_transform] = ACTIONS(1580), - [anon_sym_filter] = ACTIONS(1582), - [anon_sym_find] = ACTIONS(1584), - [anon_sym_remove] = ACTIONS(1586), - [anon_sym_reduce] = ACTIONS(1588), - [anon_sym_select] = ACTIONS(1590), - [anon_sym_insert] = ACTIONS(651), - [anon_sym_async] = ACTIONS(1592), + [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(449), + [anon_sym_match] = ACTIONS(943), + [anon_sym_EQ_GT] = ACTIONS(265), + [anon_sym_while] = ACTIONS(945), + [anon_sym_for] = ACTIONS(947), + [anon_sym_asyncfor] = ACTIONS(949), + [anon_sym_transform] = ACTIONS(951), + [anon_sym_filter] = ACTIONS(953), + [anon_sym_find] = ACTIONS(955), + [anon_sym_remove] = ACTIONS(957), + [anon_sym_reduce] = ACTIONS(959), + [anon_sym_select] = ACTIONS(961), + [anon_sym_insert] = ACTIONS(285), + [anon_sym_async] = ACTIONS(963), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(655), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_assert_equal] = ACTIONS(657), - [anon_sym_download] = ACTIONS(657), - [anon_sym_help] = ACTIONS(657), - [anon_sym_length] = ACTIONS(657), - [anon_sym_output] = ACTIONS(657), - [anon_sym_output_error] = ACTIONS(657), - [anon_sym_type] = ACTIONS(657), - [anon_sym_append] = ACTIONS(657), - [anon_sym_metadata] = ACTIONS(657), - [anon_sym_move] = ACTIONS(657), - [anon_sym_read] = ACTIONS(657), - [anon_sym_workdir] = ACTIONS(657), - [anon_sym_write] = ACTIONS(657), - [anon_sym_from_json] = ACTIONS(657), - [anon_sym_to_json] = ACTIONS(657), - [anon_sym_to_string] = ACTIONS(657), - [anon_sym_to_float] = ACTIONS(657), - [anon_sym_bash] = ACTIONS(657), - [anon_sym_fish] = ACTIONS(657), - [anon_sym_raw] = ACTIONS(657), - [anon_sym_sh] = ACTIONS(657), - [anon_sym_zsh] = ACTIONS(657), - [anon_sym_random] = ACTIONS(657), - [anon_sym_random_boolean] = ACTIONS(657), - [anon_sym_random_float] = ACTIONS(657), - [anon_sym_random_integer] = ACTIONS(657), - [anon_sym_columns] = ACTIONS(657), - [anon_sym_rows] = ACTIONS(657), - [anon_sym_reverse] = ACTIONS(657), + [anon_sym_table] = ACTIONS(289), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_assert_equal] = ACTIONS(291), + [anon_sym_download] = ACTIONS(291), + [anon_sym_help] = ACTIONS(291), + [anon_sym_length] = ACTIONS(291), + [anon_sym_output] = ACTIONS(291), + [anon_sym_output_error] = ACTIONS(291), + [anon_sym_type] = ACTIONS(291), + [anon_sym_append] = ACTIONS(291), + [anon_sym_metadata] = ACTIONS(291), + [anon_sym_move] = ACTIONS(291), + [anon_sym_read] = ACTIONS(291), + [anon_sym_workdir] = ACTIONS(291), + [anon_sym_write] = ACTIONS(291), + [anon_sym_from_json] = ACTIONS(291), + [anon_sym_to_json] = ACTIONS(291), + [anon_sym_to_string] = ACTIONS(291), + [anon_sym_to_float] = ACTIONS(291), + [anon_sym_bash] = ACTIONS(291), + [anon_sym_fish] = ACTIONS(291), + [anon_sym_raw] = ACTIONS(291), + [anon_sym_sh] = ACTIONS(291), + [anon_sym_zsh] = ACTIONS(291), + [anon_sym_random] = ACTIONS(291), + [anon_sym_random_boolean] = ACTIONS(291), + [anon_sym_random_float] = ACTIONS(291), + [anon_sym_random_integer] = ACTIONS(291), + [anon_sym_columns] = ACTIONS(291), + [anon_sym_rows] = ACTIONS(291), + [anon_sym_reverse] = ACTIONS(291), }, [35] = { - [sym_statement] = STATE(32), - [sym_expression] = STATE(701), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_logic] = STATE(706), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(582), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1866), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(320), - [aux_sym_block_repeat1] = STATE(32), - [ts_builtin_sym_end] = ACTIONS(419), - [sym_identifier] = ACTIONS(773), + [sym_block] = STATE(420), + [sym_statement] = STATE(16), + [sym_expression] = STATE(387), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(366), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1210), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(186), + [aux_sym_block_repeat1] = STATE(16), + [sym_identifier] = ACTIONS(151), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(776), - [anon_sym_RBRACE] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(779), - [anon_sym_RPAREN] = ACTIONS(419), - [sym_integer] = ACTIONS(782), - [sym_float] = ACTIONS(785), - [sym_string] = ACTIONS(785), - [anon_sym_true] = ACTIONS(788), - [anon_sym_false] = ACTIONS(788), - [anon_sym_LBRACK] = ACTIONS(791), - [anon_sym_EQ] = ACTIONS(442), - [anon_sym_COLON] = ACTIONS(419), - [anon_sym_DOT_DOT] = ACTIONS(419), - [anon_sym_PLUS] = ACTIONS(442), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_STAR] = ACTIONS(419), - [anon_sym_SLASH] = ACTIONS(419), - [anon_sym_PERCENT] = ACTIONS(419), - [anon_sym_EQ_EQ] = ACTIONS(419), - [anon_sym_BANG_EQ] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(442), - [anon_sym_LT] = ACTIONS(442), - [anon_sym_GT_EQ] = ACTIONS(419), - [anon_sym_LT_EQ] = ACTIONS(419), - [anon_sym_PLUS_EQ] = ACTIONS(419), - [anon_sym_DASH_EQ] = ACTIONS(419), - [anon_sym_if] = ACTIONS(943), - [anon_sym_match] = ACTIONS(1594), - [anon_sym_EQ_GT] = ACTIONS(1597), - [anon_sym_while] = ACTIONS(1600), - [anon_sym_for] = ACTIONS(1603), - [anon_sym_asyncfor] = ACTIONS(1606), - [anon_sym_transform] = ACTIONS(1609), - [anon_sym_filter] = ACTIONS(1612), - [anon_sym_find] = ACTIONS(1615), - [anon_sym_remove] = ACTIONS(1618), - [anon_sym_reduce] = ACTIONS(1621), - [anon_sym_select] = ACTIONS(1624), - [anon_sym_insert] = ACTIONS(1627), - [anon_sym_async] = ACTIONS(1630), - [anon_sym_PIPE] = ACTIONS(486), - [anon_sym_table] = ACTIONS(1633), - [anon_sym_assert] = ACTIONS(1636), - [anon_sym_assert_equal] = ACTIONS(1636), - [anon_sym_download] = ACTIONS(1636), - [anon_sym_help] = ACTIONS(1636), - [anon_sym_length] = ACTIONS(1636), - [anon_sym_output] = ACTIONS(1636), - [anon_sym_output_error] = ACTIONS(1636), - [anon_sym_type] = ACTIONS(1636), - [anon_sym_append] = ACTIONS(1636), - [anon_sym_metadata] = ACTIONS(1636), - [anon_sym_move] = ACTIONS(1636), - [anon_sym_read] = ACTIONS(1636), - [anon_sym_workdir] = ACTIONS(1636), - [anon_sym_write] = ACTIONS(1636), - [anon_sym_from_json] = ACTIONS(1636), - [anon_sym_to_json] = ACTIONS(1636), - [anon_sym_to_string] = ACTIONS(1636), - [anon_sym_to_float] = ACTIONS(1636), - [anon_sym_bash] = ACTIONS(1636), - [anon_sym_fish] = ACTIONS(1636), - [anon_sym_raw] = ACTIONS(1636), - [anon_sym_sh] = ACTIONS(1636), - [anon_sym_zsh] = ACTIONS(1636), - [anon_sym_random] = ACTIONS(1636), - [anon_sym_random_boolean] = ACTIONS(1636), - [anon_sym_random_float] = ACTIONS(1636), - [anon_sym_random_integer] = ACTIONS(1636), - [anon_sym_columns] = ACTIONS(1636), - [anon_sym_rows] = ACTIONS(1636), - [anon_sym_reverse] = ACTIONS(1636), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(869), + [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(155), + [anon_sym_match] = ACTIONS(157), + [anon_sym_EQ_GT] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_asyncfor] = ACTIONS(165), + [anon_sym_transform] = ACTIONS(167), + [anon_sym_filter] = ACTIONS(169), + [anon_sym_find] = ACTIONS(171), + [anon_sym_remove] = ACTIONS(173), + [anon_sym_reduce] = ACTIONS(175), + [anon_sym_select] = ACTIONS(177), + [anon_sym_insert] = ACTIONS(179), + [anon_sym_async] = ACTIONS(181), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(183), + [anon_sym_assert] = ACTIONS(185), + [anon_sym_assert_equal] = ACTIONS(185), + [anon_sym_download] = ACTIONS(185), + [anon_sym_help] = ACTIONS(185), + [anon_sym_length] = ACTIONS(185), + [anon_sym_output] = ACTIONS(185), + [anon_sym_output_error] = ACTIONS(185), + [anon_sym_type] = ACTIONS(185), + [anon_sym_append] = ACTIONS(185), + [anon_sym_metadata] = ACTIONS(185), + [anon_sym_move] = ACTIONS(185), + [anon_sym_read] = ACTIONS(185), + [anon_sym_workdir] = ACTIONS(185), + [anon_sym_write] = ACTIONS(185), + [anon_sym_from_json] = ACTIONS(185), + [anon_sym_to_json] = ACTIONS(185), + [anon_sym_to_string] = ACTIONS(185), + [anon_sym_to_float] = ACTIONS(185), + [anon_sym_bash] = ACTIONS(185), + [anon_sym_fish] = ACTIONS(185), + [anon_sym_raw] = ACTIONS(185), + [anon_sym_sh] = ACTIONS(185), + [anon_sym_zsh] = ACTIONS(185), + [anon_sym_random] = ACTIONS(185), + [anon_sym_random_boolean] = ACTIONS(185), + [anon_sym_random_float] = ACTIONS(185), + [anon_sym_random_integer] = ACTIONS(185), + [anon_sym_columns] = ACTIONS(185), + [anon_sym_rows] = ACTIONS(185), + [anon_sym_reverse] = ACTIONS(185), }, [36] = { - [sym_block] = STATE(1022), - [sym_statement] = STATE(352), - [sym_expression] = STATE(877), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(782), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1472), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1480), - [sym_assignment] = STATE(1023), - [sym_if_else] = STATE(1023), - [sym_if] = STATE(978), - [sym_match] = STATE(1023), - [sym_while] = STATE(1023), - [sym_for] = STATE(1023), - [sym_transform] = STATE(1023), - [sym_filter] = STATE(1023), - [sym_find] = STATE(1023), - [sym_remove] = STATE(1023), - [sym_reduce] = STATE(1023), - [sym_select] = STATE(1023), - [sym_insert] = STATE(1023), - [sym_async] = STATE(1023), - [sym_identifier_list] = STATE(1926), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(351), - [aux_sym_block_repeat1] = STATE(352), - [ts_builtin_sym_end] = ACTIONS(53), - [sym_identifier] = ACTIONS(1639), + [sym_block] = STATE(403), + [sym_statement] = STATE(8), + [sym_expression] = STATE(355), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(346), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1225), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(170), + [aux_sym_block_repeat1] = STATE(8), + [sym_identifier] = ACTIONS(55), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1568), - [anon_sym_RBRACE] = ACTIONS(53), - [anon_sym_SEMI] = ACTIONS(53), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1282), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(19), - [anon_sym_elseif] = ACTIONS(53), - [anon_sym_else] = ACTIONS(69), - [anon_sym_match] = ACTIONS(1641), - [anon_sym_EQ_GT] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1643), - [anon_sym_for] = ACTIONS(1645), - [anon_sym_asyncfor] = ACTIONS(1647), - [anon_sym_transform] = ACTIONS(1649), - [anon_sym_filter] = ACTIONS(1651), - [anon_sym_find] = ACTIONS(1653), - [anon_sym_remove] = ACTIONS(1655), - [anon_sym_reduce] = ACTIONS(1657), - [anon_sym_select] = ACTIONS(1659), - [anon_sym_insert] = ACTIONS(1308), - [anon_sym_async] = ACTIONS(1661), + [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_asyncfor] = ACTIONS(91), + [anon_sym_transform] = ACTIONS(93), + [anon_sym_filter] = ACTIONS(95), + [anon_sym_find] = ACTIONS(97), + [anon_sym_remove] = ACTIONS(99), + [anon_sym_reduce] = ACTIONS(101), + [anon_sym_select] = ACTIONS(103), + [anon_sym_insert] = ACTIONS(105), + [anon_sym_async] = ACTIONS(107), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1312), - [anon_sym_assert] = ACTIONS(1314), - [anon_sym_assert_equal] = ACTIONS(1314), - [anon_sym_download] = ACTIONS(1314), - [anon_sym_help] = ACTIONS(1314), - [anon_sym_length] = ACTIONS(1314), - [anon_sym_output] = ACTIONS(1314), - [anon_sym_output_error] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_append] = ACTIONS(1314), - [anon_sym_metadata] = ACTIONS(1314), - [anon_sym_move] = ACTIONS(1314), - [anon_sym_read] = ACTIONS(1314), - [anon_sym_workdir] = ACTIONS(1314), - [anon_sym_write] = ACTIONS(1314), - [anon_sym_from_json] = ACTIONS(1314), - [anon_sym_to_json] = ACTIONS(1314), - [anon_sym_to_string] = ACTIONS(1314), - [anon_sym_to_float] = ACTIONS(1314), - [anon_sym_bash] = ACTIONS(1314), - [anon_sym_fish] = ACTIONS(1314), - [anon_sym_raw] = ACTIONS(1314), - [anon_sym_sh] = ACTIONS(1314), - [anon_sym_zsh] = ACTIONS(1314), - [anon_sym_random] = ACTIONS(1314), - [anon_sym_random_boolean] = ACTIONS(1314), - [anon_sym_random_float] = ACTIONS(1314), - [anon_sym_random_integer] = ACTIONS(1314), - [anon_sym_columns] = ACTIONS(1314), - [anon_sym_rows] = ACTIONS(1314), - [anon_sym_reverse] = ACTIONS(1314), + [anon_sym_table] = ACTIONS(111), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_assert_equal] = ACTIONS(113), + [anon_sym_download] = ACTIONS(113), + [anon_sym_help] = ACTIONS(113), + [anon_sym_length] = ACTIONS(113), + [anon_sym_output] = ACTIONS(113), + [anon_sym_output_error] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_append] = ACTIONS(113), + [anon_sym_metadata] = ACTIONS(113), + [anon_sym_move] = ACTIONS(113), + [anon_sym_read] = ACTIONS(113), + [anon_sym_workdir] = ACTIONS(113), + [anon_sym_write] = ACTIONS(113), + [anon_sym_from_json] = ACTIONS(113), + [anon_sym_to_json] = ACTIONS(113), + [anon_sym_to_string] = ACTIONS(113), + [anon_sym_to_float] = ACTIONS(113), + [anon_sym_bash] = ACTIONS(113), + [anon_sym_fish] = ACTIONS(113), + [anon_sym_raw] = ACTIONS(113), + [anon_sym_sh] = ACTIONS(113), + [anon_sym_zsh] = ACTIONS(113), + [anon_sym_random] = ACTIONS(113), + [anon_sym_random_boolean] = ACTIONS(113), + [anon_sym_random_float] = ACTIONS(113), + [anon_sym_random_integer] = ACTIONS(113), + [anon_sym_columns] = ACTIONS(113), + [anon_sym_rows] = ACTIONS(113), + [anon_sym_reverse] = ACTIONS(113), }, [37] = { - [sym_statement] = STATE(37), - [sym_expression] = STATE(756), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(657), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(627), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1752), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(338), - [aux_sym_block_repeat1] = STATE(37), - [ts_builtin_sym_end] = ACTIONS(343), - [sym_identifier] = ACTIONS(1663), + [sym_block] = STATE(601), + [sym_statement] = STATE(212), + [sym_expression] = STATE(460), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(598), + [sym_if_else] = STATE(598), + [sym_if] = STATE(564), + [sym_match] = STATE(598), + [sym_while] = STATE(598), + [sym_for] = STATE(598), + [sym_transform] = STATE(598), + [sym_filter] = STATE(598), + [sym_find] = STATE(598), + [sym_remove] = STATE(598), + [sym_reduce] = STATE(598), + [sym_select] = STATE(598), + [sym_insert] = STATE(598), + [sym_async] = STATE(598), + [sym_identifier_list] = STATE(1100), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(181), + [aux_sym_block_repeat1] = STATE(212), + [sym_identifier] = ACTIONS(445), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_RBRACE] = ACTIONS(343), - [anon_sym_SEMI] = ACTIONS(343), - [anon_sym_LPAREN] = ACTIONS(1669), - [anon_sym_RPAREN] = ACTIONS(343), - [anon_sym_COMMA] = ACTIONS(343), - [sym_integer] = ACTIONS(1672), - [sym_float] = ACTIONS(1675), - [sym_string] = ACTIONS(1675), - [anon_sym_true] = ACTIONS(1678), - [anon_sym_false] = ACTIONS(1678), - [anon_sym_LBRACK] = ACTIONS(1681), - [anon_sym_RBRACK] = ACTIONS(343), - [anon_sym_COLON] = ACTIONS(343), - [anon_sym_DOT_DOT] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(366), - [anon_sym_STAR] = ACTIONS(343), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_PERCENT] = ACTIONS(343), - [anon_sym_EQ_EQ] = ACTIONS(343), - [anon_sym_BANG_EQ] = ACTIONS(343), - [anon_sym_AMP_AMP] = ACTIONS(343), - [anon_sym_PIPE_PIPE] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(366), - [anon_sym_LT] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(343), - [anon_sym_LT_EQ] = ACTIONS(343), - [anon_sym_if] = ACTIONS(1337), - [anon_sym_match] = ACTIONS(1684), - [anon_sym_EQ_GT] = ACTIONS(1687), - [anon_sym_while] = ACTIONS(1690), - [anon_sym_for] = ACTIONS(1693), - [anon_sym_asyncfor] = ACTIONS(1696), - [anon_sym_transform] = ACTIONS(1699), - [anon_sym_filter] = ACTIONS(1702), - [anon_sym_find] = ACTIONS(1705), - [anon_sym_remove] = ACTIONS(1708), - [anon_sym_reduce] = ACTIONS(1711), - [anon_sym_select] = ACTIONS(1714), - [anon_sym_insert] = ACTIONS(1717), - [anon_sym_async] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(410), - [anon_sym_table] = ACTIONS(1723), - [anon_sym_assert] = ACTIONS(1726), - [anon_sym_assert_equal] = ACTIONS(1726), - [anon_sym_download] = ACTIONS(1726), - [anon_sym_help] = ACTIONS(1726), - [anon_sym_length] = ACTIONS(1726), - [anon_sym_output] = ACTIONS(1726), - [anon_sym_output_error] = ACTIONS(1726), - [anon_sym_type] = ACTIONS(1726), - [anon_sym_append] = ACTIONS(1726), - [anon_sym_metadata] = ACTIONS(1726), - [anon_sym_move] = ACTIONS(1726), - [anon_sym_read] = ACTIONS(1726), - [anon_sym_workdir] = ACTIONS(1726), - [anon_sym_write] = ACTIONS(1726), - [anon_sym_from_json] = ACTIONS(1726), - [anon_sym_to_json] = ACTIONS(1726), - [anon_sym_to_string] = ACTIONS(1726), - [anon_sym_to_float] = ACTIONS(1726), - [anon_sym_bash] = ACTIONS(1726), - [anon_sym_fish] = ACTIONS(1726), - [anon_sym_raw] = ACTIONS(1726), - [anon_sym_sh] = ACTIONS(1726), - [anon_sym_zsh] = ACTIONS(1726), - [anon_sym_random] = ACTIONS(1726), - [anon_sym_random_boolean] = ACTIONS(1726), - [anon_sym_random_float] = ACTIONS(1726), - [anon_sym_random_integer] = ACTIONS(1726), - [anon_sym_columns] = ACTIONS(1726), - [anon_sym_rows] = ACTIONS(1726), - [anon_sym_reverse] = ACTIONS(1726), + [anon_sym_LBRACE] = ACTIONS(447), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(869), + [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(449), + [anon_sym_match] = ACTIONS(451), + [anon_sym_EQ_GT] = ACTIONS(123), + [anon_sym_while] = ACTIONS(453), + [anon_sym_for] = ACTIONS(455), + [anon_sym_asyncfor] = ACTIONS(457), + [anon_sym_transform] = ACTIONS(459), + [anon_sym_filter] = ACTIONS(461), + [anon_sym_find] = ACTIONS(463), + [anon_sym_remove] = ACTIONS(465), + [anon_sym_reduce] = ACTIONS(467), + [anon_sym_select] = ACTIONS(469), + [anon_sym_insert] = ACTIONS(143), + [anon_sym_async] = ACTIONS(471), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(147), + [anon_sym_assert] = ACTIONS(149), + [anon_sym_assert_equal] = ACTIONS(149), + [anon_sym_download] = ACTIONS(149), + [anon_sym_help] = ACTIONS(149), + [anon_sym_length] = ACTIONS(149), + [anon_sym_output] = ACTIONS(149), + [anon_sym_output_error] = ACTIONS(149), + [anon_sym_type] = ACTIONS(149), + [anon_sym_append] = ACTIONS(149), + [anon_sym_metadata] = ACTIONS(149), + [anon_sym_move] = ACTIONS(149), + [anon_sym_read] = ACTIONS(149), + [anon_sym_workdir] = ACTIONS(149), + [anon_sym_write] = ACTIONS(149), + [anon_sym_from_json] = ACTIONS(149), + [anon_sym_to_json] = ACTIONS(149), + [anon_sym_to_string] = ACTIONS(149), + [anon_sym_to_float] = ACTIONS(149), + [anon_sym_bash] = ACTIONS(149), + [anon_sym_fish] = ACTIONS(149), + [anon_sym_raw] = ACTIONS(149), + [anon_sym_sh] = ACTIONS(149), + [anon_sym_zsh] = ACTIONS(149), + [anon_sym_random] = ACTIONS(149), + [anon_sym_random_boolean] = ACTIONS(149), + [anon_sym_random_float] = ACTIONS(149), + [anon_sym_random_integer] = ACTIONS(149), + [anon_sym_columns] = ACTIONS(149), + [anon_sym_rows] = ACTIONS(149), + [anon_sym_reverse] = ACTIONS(149), }, [38] = { - [sym_statement] = STATE(41), - [sym_expression] = STATE(779), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(655), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(724), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1860), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(341), - [aux_sym_block_repeat1] = STATE(41), - [ts_builtin_sym_end] = ACTIONS(419), - [sym_identifier] = ACTIONS(1729), + [sym_block] = STATE(399), + [sym_statement] = STATE(8), + [sym_expression] = STATE(355), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(346), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1225), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(170), + [aux_sym_block_repeat1] = STATE(8), + [sym_identifier] = ACTIONS(55), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(994), - [anon_sym_RBRACE] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_RPAREN] = ACTIONS(419), - [sym_integer] = ACTIONS(1000), - [sym_float] = ACTIONS(1003), - [sym_string] = ACTIONS(1003), - [anon_sym_true] = ACTIONS(1006), - [anon_sym_false] = ACTIONS(1006), - [anon_sym_LBRACK] = ACTIONS(1009), - [anon_sym_COLON] = ACTIONS(419), - [anon_sym_DOT_DOT] = ACTIONS(419), - [anon_sym_PLUS] = ACTIONS(419), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_STAR] = ACTIONS(419), - [anon_sym_SLASH] = ACTIONS(419), - [anon_sym_PERCENT] = ACTIONS(419), - [anon_sym_EQ_EQ] = ACTIONS(419), - [anon_sym_BANG_EQ] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(442), - [anon_sym_LT] = ACTIONS(442), - [anon_sym_GT_EQ] = ACTIONS(419), - [anon_sym_LT_EQ] = ACTIONS(419), - [anon_sym_if] = ACTIONS(1732), - [anon_sym_elseif] = ACTIONS(419), - [anon_sym_else] = ACTIONS(442), - [anon_sym_match] = ACTIONS(1735), - [anon_sym_EQ_GT] = ACTIONS(1738), - [anon_sym_while] = ACTIONS(1741), - [anon_sym_for] = ACTIONS(1744), - [anon_sym_asyncfor] = ACTIONS(1747), - [anon_sym_transform] = ACTIONS(1750), - [anon_sym_filter] = ACTIONS(1753), - [anon_sym_find] = ACTIONS(1756), - [anon_sym_remove] = ACTIONS(1759), - [anon_sym_reduce] = ACTIONS(1762), - [anon_sym_select] = ACTIONS(1765), - [anon_sym_insert] = ACTIONS(1768), - [anon_sym_async] = ACTIONS(1771), - [anon_sym_PIPE] = ACTIONS(486), - [anon_sym_table] = ACTIONS(1774), - [anon_sym_assert] = ACTIONS(1777), - [anon_sym_assert_equal] = ACTIONS(1777), - [anon_sym_download] = ACTIONS(1777), - [anon_sym_help] = ACTIONS(1777), - [anon_sym_length] = ACTIONS(1777), - [anon_sym_output] = ACTIONS(1777), - [anon_sym_output_error] = ACTIONS(1777), - [anon_sym_type] = ACTIONS(1777), - [anon_sym_append] = ACTIONS(1777), - [anon_sym_metadata] = ACTIONS(1777), - [anon_sym_move] = ACTIONS(1777), - [anon_sym_read] = ACTIONS(1777), - [anon_sym_workdir] = ACTIONS(1777), - [anon_sym_write] = ACTIONS(1777), - [anon_sym_from_json] = ACTIONS(1777), - [anon_sym_to_json] = ACTIONS(1777), - [anon_sym_to_string] = ACTIONS(1777), - [anon_sym_to_float] = ACTIONS(1777), - [anon_sym_bash] = ACTIONS(1777), - [anon_sym_fish] = ACTIONS(1777), - [anon_sym_raw] = ACTIONS(1777), - [anon_sym_sh] = ACTIONS(1777), - [anon_sym_zsh] = ACTIONS(1777), - [anon_sym_random] = ACTIONS(1777), - [anon_sym_random_boolean] = ACTIONS(1777), - [anon_sym_random_float] = ACTIONS(1777), - [anon_sym_random_integer] = ACTIONS(1777), - [anon_sym_columns] = ACTIONS(1777), - [anon_sym_rows] = ACTIONS(1777), - [anon_sym_reverse] = ACTIONS(1777), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(869), + [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_asyncfor] = ACTIONS(91), + [anon_sym_transform] = ACTIONS(93), + [anon_sym_filter] = ACTIONS(95), + [anon_sym_find] = ACTIONS(97), + [anon_sym_remove] = ACTIONS(99), + [anon_sym_reduce] = ACTIONS(101), + [anon_sym_select] = ACTIONS(103), + [anon_sym_insert] = ACTIONS(105), + [anon_sym_async] = ACTIONS(107), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(111), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_assert_equal] = ACTIONS(113), + [anon_sym_download] = ACTIONS(113), + [anon_sym_help] = ACTIONS(113), + [anon_sym_length] = ACTIONS(113), + [anon_sym_output] = ACTIONS(113), + [anon_sym_output_error] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_append] = ACTIONS(113), + [anon_sym_metadata] = ACTIONS(113), + [anon_sym_move] = ACTIONS(113), + [anon_sym_read] = ACTIONS(113), + [anon_sym_workdir] = ACTIONS(113), + [anon_sym_write] = ACTIONS(113), + [anon_sym_from_json] = ACTIONS(113), + [anon_sym_to_json] = ACTIONS(113), + [anon_sym_to_string] = ACTIONS(113), + [anon_sym_to_float] = ACTIONS(113), + [anon_sym_bash] = ACTIONS(113), + [anon_sym_fish] = ACTIONS(113), + [anon_sym_raw] = ACTIONS(113), + [anon_sym_sh] = ACTIONS(113), + [anon_sym_zsh] = ACTIONS(113), + [anon_sym_random] = ACTIONS(113), + [anon_sym_random_boolean] = ACTIONS(113), + [anon_sym_random_float] = ACTIONS(113), + [anon_sym_random_integer] = ACTIONS(113), + [anon_sym_columns] = ACTIONS(113), + [anon_sym_rows] = ACTIONS(113), + [anon_sym_reverse] = ACTIONS(113), }, [39] = { - [sym_statement] = STATE(37), - [sym_expression] = STATE(756), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(657), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(627), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1752), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(338), - [aux_sym_block_repeat1] = STATE(37), - [ts_builtin_sym_end] = ACTIONS(419), - [sym_identifier] = ACTIONS(1780), + [sym_block] = STATE(431), + [sym_statement] = STATE(16), + [sym_expression] = STATE(387), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(366), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1210), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(186), + [aux_sym_block_repeat1] = STATE(16), + [sym_identifier] = ACTIONS(151), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1783), - [anon_sym_RBRACE] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_RPAREN] = ACTIONS(419), - [anon_sym_COMMA] = ACTIONS(419), - [sym_integer] = ACTIONS(1789), - [sym_float] = ACTIONS(1792), - [sym_string] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1795), - [anon_sym_false] = ACTIONS(1795), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_RBRACK] = ACTIONS(419), - [anon_sym_COLON] = ACTIONS(419), - [anon_sym_DOT_DOT] = ACTIONS(419), - [anon_sym_PLUS] = ACTIONS(419), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_STAR] = ACTIONS(419), - [anon_sym_SLASH] = ACTIONS(419), - [anon_sym_PERCENT] = ACTIONS(419), - [anon_sym_EQ_EQ] = ACTIONS(419), - [anon_sym_BANG_EQ] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(442), - [anon_sym_LT] = ACTIONS(442), - [anon_sym_GT_EQ] = ACTIONS(419), - [anon_sym_LT_EQ] = ACTIONS(419), - [anon_sym_if] = ACTIONS(1012), - [anon_sym_match] = ACTIONS(1801), - [anon_sym_EQ_GT] = ACTIONS(1804), - [anon_sym_while] = ACTIONS(1807), - [anon_sym_for] = ACTIONS(1810), - [anon_sym_asyncfor] = ACTIONS(1813), - [anon_sym_transform] = ACTIONS(1816), - [anon_sym_filter] = ACTIONS(1819), - [anon_sym_find] = ACTIONS(1822), - [anon_sym_remove] = ACTIONS(1825), - [anon_sym_reduce] = ACTIONS(1828), - [anon_sym_select] = ACTIONS(1831), - [anon_sym_insert] = ACTIONS(1834), - [anon_sym_async] = ACTIONS(1837), - [anon_sym_PIPE] = ACTIONS(486), - [anon_sym_table] = ACTIONS(1840), - [anon_sym_assert] = ACTIONS(1843), - [anon_sym_assert_equal] = ACTIONS(1843), - [anon_sym_download] = ACTIONS(1843), - [anon_sym_help] = ACTIONS(1843), - [anon_sym_length] = ACTIONS(1843), - [anon_sym_output] = ACTIONS(1843), - [anon_sym_output_error] = ACTIONS(1843), - [anon_sym_type] = ACTIONS(1843), - [anon_sym_append] = ACTIONS(1843), - [anon_sym_metadata] = ACTIONS(1843), - [anon_sym_move] = ACTIONS(1843), - [anon_sym_read] = ACTIONS(1843), - [anon_sym_workdir] = ACTIONS(1843), - [anon_sym_write] = ACTIONS(1843), - [anon_sym_from_json] = ACTIONS(1843), - [anon_sym_to_json] = ACTIONS(1843), - [anon_sym_to_string] = ACTIONS(1843), - [anon_sym_to_float] = ACTIONS(1843), - [anon_sym_bash] = ACTIONS(1843), - [anon_sym_fish] = ACTIONS(1843), - [anon_sym_raw] = ACTIONS(1843), - [anon_sym_sh] = ACTIONS(1843), - [anon_sym_zsh] = ACTIONS(1843), - [anon_sym_random] = ACTIONS(1843), - [anon_sym_random_boolean] = ACTIONS(1843), - [anon_sym_random_float] = ACTIONS(1843), - [anon_sym_random_integer] = ACTIONS(1843), - [anon_sym_columns] = ACTIONS(1843), - [anon_sym_rows] = ACTIONS(1843), - [anon_sym_reverse] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(869), + [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(155), + [anon_sym_match] = ACTIONS(157), + [anon_sym_EQ_GT] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_asyncfor] = ACTIONS(165), + [anon_sym_transform] = ACTIONS(167), + [anon_sym_filter] = ACTIONS(169), + [anon_sym_find] = ACTIONS(171), + [anon_sym_remove] = ACTIONS(173), + [anon_sym_reduce] = ACTIONS(175), + [anon_sym_select] = ACTIONS(177), + [anon_sym_insert] = ACTIONS(179), + [anon_sym_async] = ACTIONS(181), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(183), + [anon_sym_assert] = ACTIONS(185), + [anon_sym_assert_equal] = ACTIONS(185), + [anon_sym_download] = ACTIONS(185), + [anon_sym_help] = ACTIONS(185), + [anon_sym_length] = ACTIONS(185), + [anon_sym_output] = ACTIONS(185), + [anon_sym_output_error] = ACTIONS(185), + [anon_sym_type] = ACTIONS(185), + [anon_sym_append] = ACTIONS(185), + [anon_sym_metadata] = ACTIONS(185), + [anon_sym_move] = ACTIONS(185), + [anon_sym_read] = ACTIONS(185), + [anon_sym_workdir] = ACTIONS(185), + [anon_sym_write] = ACTIONS(185), + [anon_sym_from_json] = ACTIONS(185), + [anon_sym_to_json] = ACTIONS(185), + [anon_sym_to_string] = ACTIONS(185), + [anon_sym_to_float] = ACTIONS(185), + [anon_sym_bash] = ACTIONS(185), + [anon_sym_fish] = ACTIONS(185), + [anon_sym_raw] = ACTIONS(185), + [anon_sym_sh] = ACTIONS(185), + [anon_sym_zsh] = ACTIONS(185), + [anon_sym_random] = ACTIONS(185), + [anon_sym_random_boolean] = ACTIONS(185), + [anon_sym_random_float] = ACTIONS(185), + [anon_sym_random_integer] = ACTIONS(185), + [anon_sym_columns] = ACTIONS(185), + [anon_sym_rows] = ACTIONS(185), + [anon_sym_reverse] = ACTIONS(185), }, [40] = { - [sym_block] = STATE(839), - [sym_statement] = STATE(61), - [sym_expression] = STATE(888), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(822), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(787), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(61), - [ts_builtin_sym_end] = ACTIONS(53), - [sym_identifier] = ACTIONS(1846), + [sym_block] = STATE(603), + [sym_statement] = STATE(212), + [sym_expression] = STATE(460), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(598), + [sym_if_else] = STATE(598), + [sym_if] = STATE(564), + [sym_match] = STATE(598), + [sym_while] = STATE(598), + [sym_for] = STATE(598), + [sym_transform] = STATE(598), + [sym_filter] = STATE(598), + [sym_find] = STATE(598), + [sym_remove] = STATE(598), + [sym_reduce] = STATE(598), + [sym_select] = STATE(598), + [sym_insert] = STATE(598), + [sym_async] = STATE(598), + [sym_identifier_list] = STATE(1100), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(181), + [aux_sym_block_repeat1] = STATE(212), + [sym_identifier] = ACTIONS(445), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(877), - [anon_sym_RBRACE] = ACTIONS(53), - [anon_sym_SEMI] = ACTIONS(53), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(53), - [sym_integer] = ACTIONS(11), - [sym_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(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(447), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_match] = ACTIONS(1850), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(1852), - [anon_sym_for] = ACTIONS(1854), - [anon_sym_asyncfor] = ACTIONS(1856), - [anon_sym_transform] = ACTIONS(1858), - [anon_sym_filter] = ACTIONS(1860), - [anon_sym_find] = ACTIONS(1862), - [anon_sym_remove] = ACTIONS(1864), - [anon_sym_reduce] = ACTIONS(1866), - [anon_sym_select] = ACTIONS(1868), - [anon_sym_insert] = ACTIONS(43), - [anon_sym_async] = ACTIONS(1870), + [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(449), + [anon_sym_match] = ACTIONS(451), + [anon_sym_EQ_GT] = ACTIONS(123), + [anon_sym_while] = ACTIONS(453), + [anon_sym_for] = ACTIONS(455), + [anon_sym_asyncfor] = ACTIONS(457), + [anon_sym_transform] = ACTIONS(459), + [anon_sym_filter] = ACTIONS(461), + [anon_sym_find] = ACTIONS(463), + [anon_sym_remove] = ACTIONS(465), + [anon_sym_reduce] = ACTIONS(467), + [anon_sym_select] = ACTIONS(469), + [anon_sym_insert] = ACTIONS(143), + [anon_sym_async] = ACTIONS(471), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(49), - [anon_sym_assert] = ACTIONS(51), - [anon_sym_assert_equal] = ACTIONS(51), - [anon_sym_download] = ACTIONS(51), - [anon_sym_help] = ACTIONS(51), - [anon_sym_length] = ACTIONS(51), - [anon_sym_output] = ACTIONS(51), - [anon_sym_output_error] = ACTIONS(51), - [anon_sym_type] = ACTIONS(51), - [anon_sym_append] = ACTIONS(51), - [anon_sym_metadata] = ACTIONS(51), - [anon_sym_move] = ACTIONS(51), - [anon_sym_read] = ACTIONS(51), - [anon_sym_workdir] = ACTIONS(51), - [anon_sym_write] = ACTIONS(51), - [anon_sym_from_json] = ACTIONS(51), - [anon_sym_to_json] = ACTIONS(51), - [anon_sym_to_string] = ACTIONS(51), - [anon_sym_to_float] = ACTIONS(51), - [anon_sym_bash] = ACTIONS(51), - [anon_sym_fish] = ACTIONS(51), - [anon_sym_raw] = ACTIONS(51), - [anon_sym_sh] = ACTIONS(51), - [anon_sym_zsh] = ACTIONS(51), - [anon_sym_random] = ACTIONS(51), - [anon_sym_random_boolean] = ACTIONS(51), - [anon_sym_random_float] = ACTIONS(51), - [anon_sym_random_integer] = ACTIONS(51), - [anon_sym_columns] = ACTIONS(51), - [anon_sym_rows] = ACTIONS(51), - [anon_sym_reverse] = ACTIONS(51), + [anon_sym_table] = ACTIONS(147), + [anon_sym_assert] = ACTIONS(149), + [anon_sym_assert_equal] = ACTIONS(149), + [anon_sym_download] = ACTIONS(149), + [anon_sym_help] = ACTIONS(149), + [anon_sym_length] = ACTIONS(149), + [anon_sym_output] = ACTIONS(149), + [anon_sym_output_error] = ACTIONS(149), + [anon_sym_type] = ACTIONS(149), + [anon_sym_append] = ACTIONS(149), + [anon_sym_metadata] = ACTIONS(149), + [anon_sym_move] = ACTIONS(149), + [anon_sym_read] = ACTIONS(149), + [anon_sym_workdir] = ACTIONS(149), + [anon_sym_write] = ACTIONS(149), + [anon_sym_from_json] = ACTIONS(149), + [anon_sym_to_json] = ACTIONS(149), + [anon_sym_to_string] = ACTIONS(149), + [anon_sym_to_float] = ACTIONS(149), + [anon_sym_bash] = ACTIONS(149), + [anon_sym_fish] = ACTIONS(149), + [anon_sym_raw] = ACTIONS(149), + [anon_sym_sh] = ACTIONS(149), + [anon_sym_zsh] = ACTIONS(149), + [anon_sym_random] = ACTIONS(149), + [anon_sym_random_boolean] = ACTIONS(149), + [anon_sym_random_float] = ACTIONS(149), + [anon_sym_random_integer] = ACTIONS(149), + [anon_sym_columns] = ACTIONS(149), + [anon_sym_rows] = ACTIONS(149), + [anon_sym_reverse] = ACTIONS(149), }, [41] = { - [sym_statement] = STATE(41), - [sym_expression] = STATE(779), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(655), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(724), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1860), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(341), - [aux_sym_block_repeat1] = STATE(41), - [ts_builtin_sym_end] = ACTIONS(343), - [sym_identifier] = ACTIONS(1872), + [sym_block] = STATE(420), + [sym_statement] = STATE(8), + [sym_expression] = STATE(355), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(346), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1225), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(170), + [aux_sym_block_repeat1] = STATE(8), + [sym_identifier] = ACTIONS(55), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1319), - [anon_sym_RBRACE] = ACTIONS(343), - [anon_sym_SEMI] = ACTIONS(343), - [anon_sym_LPAREN] = ACTIONS(1322), - [anon_sym_RPAREN] = ACTIONS(343), - [sym_integer] = ACTIONS(1325), - [sym_float] = ACTIONS(1328), - [sym_string] = ACTIONS(1328), - [anon_sym_true] = ACTIONS(1331), - [anon_sym_false] = ACTIONS(1331), - [anon_sym_LBRACK] = ACTIONS(1334), - [anon_sym_COLON] = ACTIONS(343), - [anon_sym_DOT_DOT] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(366), - [anon_sym_STAR] = ACTIONS(343), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_PERCENT] = ACTIONS(343), - [anon_sym_EQ_EQ] = ACTIONS(343), - [anon_sym_BANG_EQ] = ACTIONS(343), - [anon_sym_AMP_AMP] = ACTIONS(343), - [anon_sym_PIPE_PIPE] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(366), - [anon_sym_LT] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(343), - [anon_sym_LT_EQ] = ACTIONS(343), - [anon_sym_if] = ACTIONS(1875), - [anon_sym_elseif] = ACTIONS(343), - [anon_sym_else] = ACTIONS(366), - [anon_sym_match] = ACTIONS(1878), - [anon_sym_EQ_GT] = ACTIONS(1881), - [anon_sym_while] = ACTIONS(1884), - [anon_sym_for] = ACTIONS(1887), - [anon_sym_asyncfor] = ACTIONS(1890), - [anon_sym_transform] = ACTIONS(1893), - [anon_sym_filter] = ACTIONS(1896), - [anon_sym_find] = ACTIONS(1899), - [anon_sym_remove] = ACTIONS(1902), - [anon_sym_reduce] = ACTIONS(1905), - [anon_sym_select] = ACTIONS(1908), - [anon_sym_insert] = ACTIONS(1911), - [anon_sym_async] = ACTIONS(1914), - [anon_sym_PIPE] = ACTIONS(410), - [anon_sym_table] = ACTIONS(1917), - [anon_sym_assert] = ACTIONS(1920), - [anon_sym_assert_equal] = ACTIONS(1920), - [anon_sym_download] = ACTIONS(1920), - [anon_sym_help] = ACTIONS(1920), - [anon_sym_length] = ACTIONS(1920), - [anon_sym_output] = ACTIONS(1920), - [anon_sym_output_error] = ACTIONS(1920), - [anon_sym_type] = ACTIONS(1920), - [anon_sym_append] = ACTIONS(1920), - [anon_sym_metadata] = ACTIONS(1920), - [anon_sym_move] = ACTIONS(1920), - [anon_sym_read] = ACTIONS(1920), - [anon_sym_workdir] = ACTIONS(1920), - [anon_sym_write] = ACTIONS(1920), - [anon_sym_from_json] = ACTIONS(1920), - [anon_sym_to_json] = ACTIONS(1920), - [anon_sym_to_string] = ACTIONS(1920), - [anon_sym_to_float] = ACTIONS(1920), - [anon_sym_bash] = ACTIONS(1920), - [anon_sym_fish] = ACTIONS(1920), - [anon_sym_raw] = ACTIONS(1920), - [anon_sym_sh] = ACTIONS(1920), - [anon_sym_zsh] = ACTIONS(1920), - [anon_sym_random] = ACTIONS(1920), - [anon_sym_random_boolean] = ACTIONS(1920), - [anon_sym_random_float] = ACTIONS(1920), - [anon_sym_random_integer] = ACTIONS(1920), - [anon_sym_columns] = ACTIONS(1920), - [anon_sym_rows] = ACTIONS(1920), - [anon_sym_reverse] = ACTIONS(1920), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(869), + [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_asyncfor] = ACTIONS(91), + [anon_sym_transform] = ACTIONS(93), + [anon_sym_filter] = ACTIONS(95), + [anon_sym_find] = ACTIONS(97), + [anon_sym_remove] = ACTIONS(99), + [anon_sym_reduce] = ACTIONS(101), + [anon_sym_select] = ACTIONS(103), + [anon_sym_insert] = ACTIONS(105), + [anon_sym_async] = ACTIONS(107), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(111), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_assert_equal] = ACTIONS(113), + [anon_sym_download] = ACTIONS(113), + [anon_sym_help] = ACTIONS(113), + [anon_sym_length] = ACTIONS(113), + [anon_sym_output] = ACTIONS(113), + [anon_sym_output_error] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_append] = ACTIONS(113), + [anon_sym_metadata] = ACTIONS(113), + [anon_sym_move] = ACTIONS(113), + [anon_sym_read] = ACTIONS(113), + [anon_sym_workdir] = ACTIONS(113), + [anon_sym_write] = ACTIONS(113), + [anon_sym_from_json] = ACTIONS(113), + [anon_sym_to_json] = ACTIONS(113), + [anon_sym_to_string] = ACTIONS(113), + [anon_sym_to_float] = ACTIONS(113), + [anon_sym_bash] = ACTIONS(113), + [anon_sym_fish] = ACTIONS(113), + [anon_sym_raw] = ACTIONS(113), + [anon_sym_sh] = ACTIONS(113), + [anon_sym_zsh] = ACTIONS(113), + [anon_sym_random] = ACTIONS(113), + [anon_sym_random_boolean] = ACTIONS(113), + [anon_sym_random_float] = ACTIONS(113), + [anon_sym_random_integer] = ACTIONS(113), + [anon_sym_columns] = ACTIONS(113), + [anon_sym_rows] = ACTIONS(113), + [anon_sym_reverse] = ACTIONS(113), }, [42] = { - [sym_statement] = STATE(15), - [sym_expression] = STATE(601), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_logic] = STATE(706), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(557), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1910), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(284), - [aux_sym_block_repeat1] = STATE(15), - [sym_identifier] = ACTIONS(773), + [sym_block] = STATE(404), + [sym_statement] = STATE(16), + [sym_expression] = STATE(387), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(366), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1210), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(186), + [aux_sym_block_repeat1] = STATE(16), + [sym_identifier] = ACTIONS(151), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(776), - [anon_sym_RBRACE] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(779), - [anon_sym_COMMA] = ACTIONS(419), - [sym_integer] = ACTIONS(782), - [sym_float] = ACTIONS(785), - [sym_string] = ACTIONS(785), - [anon_sym_true] = ACTIONS(788), - [anon_sym_false] = ACTIONS(788), - [anon_sym_LBRACK] = ACTIONS(791), - [anon_sym_EQ] = ACTIONS(442), - [anon_sym_COLON] = ACTIONS(419), - [anon_sym_DOT_DOT] = ACTIONS(419), - [anon_sym_PLUS] = ACTIONS(442), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_STAR] = ACTIONS(419), - [anon_sym_SLASH] = ACTIONS(419), - [anon_sym_PERCENT] = ACTIONS(419), - [anon_sym_EQ_EQ] = ACTIONS(419), - [anon_sym_BANG_EQ] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(442), - [anon_sym_LT] = ACTIONS(442), - [anon_sym_GT_EQ] = ACTIONS(419), - [anon_sym_LT_EQ] = ACTIONS(419), - [anon_sym_PLUS_EQ] = ACTIONS(419), - [anon_sym_DASH_EQ] = ACTIONS(419), - [anon_sym_if] = ACTIONS(81), - [anon_sym_match] = ACTIONS(165), - [anon_sym_EQ_GT] = ACTIONS(797), - [anon_sym_while] = ACTIONS(169), - [anon_sym_for] = ACTIONS(171), - [anon_sym_asyncfor] = ACTIONS(173), - [anon_sym_transform] = ACTIONS(175), - [anon_sym_filter] = ACTIONS(177), - [anon_sym_find] = ACTIONS(179), - [anon_sym_remove] = ACTIONS(181), - [anon_sym_reduce] = ACTIONS(183), - [anon_sym_select] = ACTIONS(185), - [anon_sym_insert] = ACTIONS(187), - [anon_sym_async] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(486), - [anon_sym_table] = ACTIONS(833), - [anon_sym_assert] = ACTIONS(836), - [anon_sym_assert_equal] = ACTIONS(836), - [anon_sym_download] = ACTIONS(836), - [anon_sym_help] = ACTIONS(836), - [anon_sym_length] = ACTIONS(836), - [anon_sym_output] = ACTIONS(836), - [anon_sym_output_error] = ACTIONS(836), - [anon_sym_type] = ACTIONS(836), - [anon_sym_append] = ACTIONS(836), - [anon_sym_metadata] = ACTIONS(836), - [anon_sym_move] = ACTIONS(836), - [anon_sym_read] = ACTIONS(836), - [anon_sym_workdir] = ACTIONS(836), - [anon_sym_write] = ACTIONS(836), - [anon_sym_from_json] = ACTIONS(836), - [anon_sym_to_json] = ACTIONS(836), - [anon_sym_to_string] = ACTIONS(836), - [anon_sym_to_float] = ACTIONS(836), - [anon_sym_bash] = ACTIONS(836), - [anon_sym_fish] = ACTIONS(836), - [anon_sym_raw] = ACTIONS(836), - [anon_sym_sh] = ACTIONS(836), - [anon_sym_zsh] = ACTIONS(836), - [anon_sym_random] = ACTIONS(836), - [anon_sym_random_boolean] = ACTIONS(836), - [anon_sym_random_float] = ACTIONS(836), - [anon_sym_random_integer] = ACTIONS(836), - [anon_sym_columns] = ACTIONS(836), - [anon_sym_rows] = ACTIONS(836), - [anon_sym_reverse] = ACTIONS(836), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(869), + [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(155), + [anon_sym_match] = ACTIONS(157), + [anon_sym_EQ_GT] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_asyncfor] = ACTIONS(165), + [anon_sym_transform] = ACTIONS(167), + [anon_sym_filter] = ACTIONS(169), + [anon_sym_find] = ACTIONS(171), + [anon_sym_remove] = ACTIONS(173), + [anon_sym_reduce] = ACTIONS(175), + [anon_sym_select] = ACTIONS(177), + [anon_sym_insert] = ACTIONS(179), + [anon_sym_async] = ACTIONS(181), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(183), + [anon_sym_assert] = ACTIONS(185), + [anon_sym_assert_equal] = ACTIONS(185), + [anon_sym_download] = ACTIONS(185), + [anon_sym_help] = ACTIONS(185), + [anon_sym_length] = ACTIONS(185), + [anon_sym_output] = ACTIONS(185), + [anon_sym_output_error] = ACTIONS(185), + [anon_sym_type] = ACTIONS(185), + [anon_sym_append] = ACTIONS(185), + [anon_sym_metadata] = ACTIONS(185), + [anon_sym_move] = ACTIONS(185), + [anon_sym_read] = ACTIONS(185), + [anon_sym_workdir] = ACTIONS(185), + [anon_sym_write] = ACTIONS(185), + [anon_sym_from_json] = ACTIONS(185), + [anon_sym_to_json] = ACTIONS(185), + [anon_sym_to_string] = ACTIONS(185), + [anon_sym_to_float] = ACTIONS(185), + [anon_sym_bash] = ACTIONS(185), + [anon_sym_fish] = ACTIONS(185), + [anon_sym_raw] = ACTIONS(185), + [anon_sym_sh] = ACTIONS(185), + [anon_sym_zsh] = ACTIONS(185), + [anon_sym_random] = ACTIONS(185), + [anon_sym_random_boolean] = ACTIONS(185), + [anon_sym_random_float] = ACTIONS(185), + [anon_sym_random_integer] = ACTIONS(185), + [anon_sym_columns] = ACTIONS(185), + [anon_sym_rows] = ACTIONS(185), + [anon_sym_reverse] = ACTIONS(185), }, [43] = { - [sym_statement] = STATE(15), - [sym_expression] = STATE(601), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_logic] = STATE(706), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(557), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1910), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(284), - [aux_sym_block_repeat1] = STATE(15), - [sym_identifier] = ACTIONS(773), + [sym_block] = STATE(435), + [sym_statement] = STATE(8), + [sym_expression] = STATE(355), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(346), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1225), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(170), + [aux_sym_block_repeat1] = STATE(8), + [sym_identifier] = ACTIONS(55), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1923), - [anon_sym_RBRACE] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_COMMA] = ACTIONS(419), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_EQ] = ACTIONS(442), - [anon_sym_COLON] = ACTIONS(419), - [anon_sym_DOT_DOT] = ACTIONS(419), - [anon_sym_PLUS] = ACTIONS(442), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_STAR] = ACTIONS(419), - [anon_sym_SLASH] = ACTIONS(419), - [anon_sym_PERCENT] = ACTIONS(419), - [anon_sym_EQ_EQ] = ACTIONS(419), - [anon_sym_BANG_EQ] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(442), - [anon_sym_LT] = ACTIONS(442), - [anon_sym_GT_EQ] = ACTIONS(419), - [anon_sym_LT_EQ] = ACTIONS(419), - [anon_sym_PLUS_EQ] = ACTIONS(419), - [anon_sym_DASH_EQ] = ACTIONS(419), - [anon_sym_if] = ACTIONS(81), - [anon_sym_match] = ACTIONS(165), - [anon_sym_EQ_GT] = ACTIONS(167), - [anon_sym_while] = ACTIONS(169), - [anon_sym_for] = ACTIONS(171), - [anon_sym_asyncfor] = ACTIONS(173), - [anon_sym_transform] = ACTIONS(175), - [anon_sym_filter] = ACTIONS(177), - [anon_sym_find] = ACTIONS(179), - [anon_sym_remove] = ACTIONS(181), - [anon_sym_reduce] = ACTIONS(183), - [anon_sym_select] = ACTIONS(185), - [anon_sym_insert] = ACTIONS(187), - [anon_sym_async] = ACTIONS(189), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(869), + [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_asyncfor] = ACTIONS(91), + [anon_sym_transform] = ACTIONS(93), + [anon_sym_filter] = ACTIONS(95), + [anon_sym_find] = ACTIONS(97), + [anon_sym_remove] = ACTIONS(99), + [anon_sym_reduce] = ACTIONS(101), + [anon_sym_select] = ACTIONS(103), + [anon_sym_insert] = ACTIONS(105), + [anon_sym_async] = ACTIONS(107), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(191), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_assert_equal] = ACTIONS(193), - [anon_sym_download] = ACTIONS(193), - [anon_sym_help] = ACTIONS(193), - [anon_sym_length] = ACTIONS(193), - [anon_sym_output] = ACTIONS(193), - [anon_sym_output_error] = ACTIONS(193), - [anon_sym_type] = ACTIONS(193), - [anon_sym_append] = ACTIONS(193), - [anon_sym_metadata] = ACTIONS(193), - [anon_sym_move] = ACTIONS(193), - [anon_sym_read] = ACTIONS(193), - [anon_sym_workdir] = ACTIONS(193), - [anon_sym_write] = ACTIONS(193), - [anon_sym_from_json] = ACTIONS(193), - [anon_sym_to_json] = ACTIONS(193), - [anon_sym_to_string] = ACTIONS(193), - [anon_sym_to_float] = ACTIONS(193), - [anon_sym_bash] = ACTIONS(193), - [anon_sym_fish] = ACTIONS(193), - [anon_sym_raw] = ACTIONS(193), - [anon_sym_sh] = ACTIONS(193), - [anon_sym_zsh] = ACTIONS(193), - [anon_sym_random] = ACTIONS(193), - [anon_sym_random_boolean] = ACTIONS(193), - [anon_sym_random_float] = ACTIONS(193), - [anon_sym_random_integer] = ACTIONS(193), - [anon_sym_columns] = ACTIONS(193), - [anon_sym_rows] = ACTIONS(193), - [anon_sym_reverse] = ACTIONS(193), + [anon_sym_table] = ACTIONS(111), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_assert_equal] = ACTIONS(113), + [anon_sym_download] = ACTIONS(113), + [anon_sym_help] = ACTIONS(113), + [anon_sym_length] = ACTIONS(113), + [anon_sym_output] = ACTIONS(113), + [anon_sym_output_error] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_append] = ACTIONS(113), + [anon_sym_metadata] = ACTIONS(113), + [anon_sym_move] = ACTIONS(113), + [anon_sym_read] = ACTIONS(113), + [anon_sym_workdir] = ACTIONS(113), + [anon_sym_write] = ACTIONS(113), + [anon_sym_from_json] = ACTIONS(113), + [anon_sym_to_json] = ACTIONS(113), + [anon_sym_to_string] = ACTIONS(113), + [anon_sym_to_float] = ACTIONS(113), + [anon_sym_bash] = ACTIONS(113), + [anon_sym_fish] = ACTIONS(113), + [anon_sym_raw] = ACTIONS(113), + [anon_sym_sh] = ACTIONS(113), + [anon_sym_zsh] = ACTIONS(113), + [anon_sym_random] = ACTIONS(113), + [anon_sym_random_boolean] = ACTIONS(113), + [anon_sym_random_float] = ACTIONS(113), + [anon_sym_random_integer] = ACTIONS(113), + [anon_sym_columns] = ACTIONS(113), + [anon_sym_rows] = ACTIONS(113), + [anon_sym_reverse] = ACTIONS(113), }, [44] = { - [sym_statement] = STATE(44), - [sym_expression] = STATE(795), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_logic] = STATE(706), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(611), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(2015), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(325), - [aux_sym_block_repeat1] = STATE(44), - [ts_builtin_sym_end] = ACTIONS(343), - [sym_identifier] = ACTIONS(659), + [sym_block] = STATE(597), + [sym_statement] = STATE(199), + [sym_expression] = STATE(473), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(598), + [sym_if_else] = STATE(598), + [sym_if] = STATE(565), + [sym_match] = STATE(598), + [sym_while] = STATE(598), + [sym_for] = STATE(598), + [sym_transform] = STATE(598), + [sym_filter] = STATE(598), + [sym_find] = STATE(598), + [sym_remove] = STATE(598), + [sym_reduce] = STATE(598), + [sym_select] = STATE(598), + [sym_insert] = STATE(598), + [sym_async] = STATE(598), + [sym_identifier_list] = STATE(1085), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(203), + [aux_sym_block_repeat1] = STATE(199), + [sym_identifier] = ACTIONS(609), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(662), - [anon_sym_RBRACE] = ACTIONS(343), - [anon_sym_SEMI] = ACTIONS(343), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_RPAREN] = ACTIONS(343), - [sym_integer] = ACTIONS(668), - [sym_float] = ACTIONS(671), - [sym_string] = ACTIONS(671), - [anon_sym_true] = ACTIONS(674), - [anon_sym_false] = ACTIONS(674), - [anon_sym_LBRACK] = ACTIONS(677), - [anon_sym_EQ] = ACTIONS(366), - [anon_sym_COLON] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(366), - [anon_sym_DASH] = ACTIONS(366), - [anon_sym_STAR] = ACTIONS(343), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_PERCENT] = ACTIONS(343), - [anon_sym_EQ_EQ] = ACTIONS(343), - [anon_sym_BANG_EQ] = ACTIONS(343), - [anon_sym_AMP_AMP] = ACTIONS(343), - [anon_sym_PIPE_PIPE] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(366), - [anon_sym_LT] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(343), - [anon_sym_LT_EQ] = ACTIONS(343), - [anon_sym_PLUS_EQ] = ACTIONS(343), - [anon_sym_DASH_EQ] = ACTIONS(343), - [anon_sym_if] = ACTIONS(1060), - [anon_sym_match] = ACTIONS(1925), - [anon_sym_EQ_GT] = ACTIONS(1928), - [anon_sym_while] = ACTIONS(1931), - [anon_sym_for] = ACTIONS(1934), - [anon_sym_asyncfor] = ACTIONS(1937), - [anon_sym_transform] = ACTIONS(1940), - [anon_sym_filter] = ACTIONS(1943), - [anon_sym_find] = ACTIONS(1946), - [anon_sym_remove] = ACTIONS(1949), - [anon_sym_reduce] = ACTIONS(1952), - [anon_sym_select] = ACTIONS(1955), - [anon_sym_insert] = ACTIONS(1958), - [anon_sym_async] = ACTIONS(1961), - [anon_sym_PIPE] = ACTIONS(410), - [anon_sym_table] = ACTIONS(1964), - [anon_sym_assert] = ACTIONS(1967), - [anon_sym_assert_equal] = ACTIONS(1967), - [anon_sym_download] = ACTIONS(1967), - [anon_sym_help] = ACTIONS(1967), - [anon_sym_length] = ACTIONS(1967), - [anon_sym_output] = ACTIONS(1967), - [anon_sym_output_error] = ACTIONS(1967), - [anon_sym_type] = ACTIONS(1967), - [anon_sym_append] = ACTIONS(1967), - [anon_sym_metadata] = ACTIONS(1967), - [anon_sym_move] = ACTIONS(1967), - [anon_sym_read] = ACTIONS(1967), - [anon_sym_workdir] = ACTIONS(1967), - [anon_sym_write] = ACTIONS(1967), - [anon_sym_from_json] = ACTIONS(1967), - [anon_sym_to_json] = ACTIONS(1967), - [anon_sym_to_string] = ACTIONS(1967), - [anon_sym_to_float] = ACTIONS(1967), - [anon_sym_bash] = ACTIONS(1967), - [anon_sym_fish] = ACTIONS(1967), - [anon_sym_raw] = ACTIONS(1967), - [anon_sym_sh] = ACTIONS(1967), - [anon_sym_zsh] = ACTIONS(1967), - [anon_sym_random] = ACTIONS(1967), - [anon_sym_random_boolean] = ACTIONS(1967), - [anon_sym_random_float] = ACTIONS(1967), - [anon_sym_random_integer] = ACTIONS(1967), - [anon_sym_columns] = ACTIONS(1967), - [anon_sym_rows] = ACTIONS(1967), - [anon_sym_reverse] = ACTIONS(1967), + [anon_sym_LBRACE] = ACTIONS(447), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(869), + [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(19), + [anon_sym_match] = ACTIONS(611), + [anon_sym_EQ_GT] = ACTIONS(231), + [anon_sym_while] = ACTIONS(613), + [anon_sym_for] = ACTIONS(615), + [anon_sym_asyncfor] = ACTIONS(617), + [anon_sym_transform] = ACTIONS(619), + [anon_sym_filter] = ACTIONS(621), + [anon_sym_find] = ACTIONS(623), + [anon_sym_remove] = ACTIONS(625), + [anon_sym_reduce] = ACTIONS(627), + [anon_sym_select] = ACTIONS(629), + [anon_sym_insert] = ACTIONS(251), + [anon_sym_async] = ACTIONS(631), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(255), + [anon_sym_assert] = ACTIONS(257), + [anon_sym_assert_equal] = ACTIONS(257), + [anon_sym_download] = ACTIONS(257), + [anon_sym_help] = ACTIONS(257), + [anon_sym_length] = ACTIONS(257), + [anon_sym_output] = ACTIONS(257), + [anon_sym_output_error] = ACTIONS(257), + [anon_sym_type] = ACTIONS(257), + [anon_sym_append] = ACTIONS(257), + [anon_sym_metadata] = ACTIONS(257), + [anon_sym_move] = ACTIONS(257), + [anon_sym_read] = ACTIONS(257), + [anon_sym_workdir] = ACTIONS(257), + [anon_sym_write] = ACTIONS(257), + [anon_sym_from_json] = ACTIONS(257), + [anon_sym_to_json] = ACTIONS(257), + [anon_sym_to_string] = ACTIONS(257), + [anon_sym_to_float] = ACTIONS(257), + [anon_sym_bash] = ACTIONS(257), + [anon_sym_fish] = ACTIONS(257), + [anon_sym_raw] = ACTIONS(257), + [anon_sym_sh] = ACTIONS(257), + [anon_sym_zsh] = ACTIONS(257), + [anon_sym_random] = ACTIONS(257), + [anon_sym_random_boolean] = ACTIONS(257), + [anon_sym_random_float] = ACTIONS(257), + [anon_sym_random_integer] = ACTIONS(257), + [anon_sym_columns] = ACTIONS(257), + [anon_sym_rows] = ACTIONS(257), + [anon_sym_reverse] = ACTIONS(257), }, [45] = { - [sym_statement] = STATE(44), - [sym_expression] = STATE(795), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_logic] = STATE(706), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(611), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(2015), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(325), - [aux_sym_block_repeat1] = STATE(44), - [ts_builtin_sym_end] = ACTIONS(419), - [sym_identifier] = ACTIONS(773), + [sym_block] = STATE(611), + [sym_statement] = STATE(199), + [sym_expression] = STATE(473), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(598), + [sym_if_else] = STATE(598), + [sym_if] = STATE(565), + [sym_match] = STATE(598), + [sym_while] = STATE(598), + [sym_for] = STATE(598), + [sym_transform] = STATE(598), + [sym_filter] = STATE(598), + [sym_find] = STATE(598), + [sym_remove] = STATE(598), + [sym_reduce] = STATE(598), + [sym_select] = STATE(598), + [sym_insert] = STATE(598), + [sym_async] = STATE(598), + [sym_identifier_list] = STATE(1085), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(203), + [aux_sym_block_repeat1] = STATE(199), + [sym_identifier] = ACTIONS(609), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(776), - [anon_sym_RBRACE] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(779), - [anon_sym_RPAREN] = ACTIONS(419), - [sym_integer] = ACTIONS(782), - [sym_float] = ACTIONS(785), - [sym_string] = ACTIONS(785), - [anon_sym_true] = ACTIONS(788), - [anon_sym_false] = ACTIONS(788), - [anon_sym_LBRACK] = ACTIONS(791), - [anon_sym_EQ] = ACTIONS(442), - [anon_sym_COLON] = ACTIONS(419), - [anon_sym_PLUS] = ACTIONS(442), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_STAR] = ACTIONS(419), - [anon_sym_SLASH] = ACTIONS(419), - [anon_sym_PERCENT] = ACTIONS(419), - [anon_sym_EQ_EQ] = ACTIONS(419), - [anon_sym_BANG_EQ] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(442), - [anon_sym_LT] = ACTIONS(442), - [anon_sym_GT_EQ] = ACTIONS(419), - [anon_sym_LT_EQ] = ACTIONS(419), - [anon_sym_PLUS_EQ] = ACTIONS(419), - [anon_sym_DASH_EQ] = ACTIONS(419), - [anon_sym_if] = ACTIONS(1232), - [anon_sym_match] = ACTIONS(1970), - [anon_sym_EQ_GT] = ACTIONS(1973), - [anon_sym_while] = ACTIONS(1976), - [anon_sym_for] = ACTIONS(1979), - [anon_sym_asyncfor] = ACTIONS(1982), - [anon_sym_transform] = ACTIONS(1985), - [anon_sym_filter] = ACTIONS(1988), - [anon_sym_find] = ACTIONS(1991), - [anon_sym_remove] = ACTIONS(1994), - [anon_sym_reduce] = ACTIONS(1997), - [anon_sym_select] = ACTIONS(2000), - [anon_sym_insert] = ACTIONS(2003), - [anon_sym_async] = ACTIONS(2006), - [anon_sym_PIPE] = ACTIONS(486), - [anon_sym_table] = ACTIONS(2009), - [anon_sym_assert] = ACTIONS(2012), - [anon_sym_assert_equal] = ACTIONS(2012), - [anon_sym_download] = ACTIONS(2012), - [anon_sym_help] = ACTIONS(2012), - [anon_sym_length] = ACTIONS(2012), - [anon_sym_output] = ACTIONS(2012), - [anon_sym_output_error] = ACTIONS(2012), - [anon_sym_type] = ACTIONS(2012), - [anon_sym_append] = ACTIONS(2012), - [anon_sym_metadata] = ACTIONS(2012), - [anon_sym_move] = ACTIONS(2012), - [anon_sym_read] = ACTIONS(2012), - [anon_sym_workdir] = ACTIONS(2012), - [anon_sym_write] = ACTIONS(2012), - [anon_sym_from_json] = ACTIONS(2012), - [anon_sym_to_json] = ACTIONS(2012), - [anon_sym_to_string] = ACTIONS(2012), - [anon_sym_to_float] = ACTIONS(2012), - [anon_sym_bash] = ACTIONS(2012), - [anon_sym_fish] = ACTIONS(2012), - [anon_sym_raw] = ACTIONS(2012), - [anon_sym_sh] = ACTIONS(2012), - [anon_sym_zsh] = ACTIONS(2012), - [anon_sym_random] = ACTIONS(2012), - [anon_sym_random_boolean] = ACTIONS(2012), - [anon_sym_random_float] = ACTIONS(2012), - [anon_sym_random_integer] = ACTIONS(2012), - [anon_sym_columns] = ACTIONS(2012), - [anon_sym_rows] = ACTIONS(2012), - [anon_sym_reverse] = ACTIONS(2012), + [anon_sym_LBRACE] = ACTIONS(447), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(869), + [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(19), + [anon_sym_match] = ACTIONS(611), + [anon_sym_EQ_GT] = ACTIONS(231), + [anon_sym_while] = ACTIONS(613), + [anon_sym_for] = ACTIONS(615), + [anon_sym_asyncfor] = ACTIONS(617), + [anon_sym_transform] = ACTIONS(619), + [anon_sym_filter] = ACTIONS(621), + [anon_sym_find] = ACTIONS(623), + [anon_sym_remove] = ACTIONS(625), + [anon_sym_reduce] = ACTIONS(627), + [anon_sym_select] = ACTIONS(629), + [anon_sym_insert] = ACTIONS(251), + [anon_sym_async] = ACTIONS(631), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(255), + [anon_sym_assert] = ACTIONS(257), + [anon_sym_assert_equal] = ACTIONS(257), + [anon_sym_download] = ACTIONS(257), + [anon_sym_help] = ACTIONS(257), + [anon_sym_length] = ACTIONS(257), + [anon_sym_output] = ACTIONS(257), + [anon_sym_output_error] = ACTIONS(257), + [anon_sym_type] = ACTIONS(257), + [anon_sym_append] = ACTIONS(257), + [anon_sym_metadata] = ACTIONS(257), + [anon_sym_move] = ACTIONS(257), + [anon_sym_read] = ACTIONS(257), + [anon_sym_workdir] = ACTIONS(257), + [anon_sym_write] = ACTIONS(257), + [anon_sym_from_json] = ACTIONS(257), + [anon_sym_to_json] = ACTIONS(257), + [anon_sym_to_string] = ACTIONS(257), + [anon_sym_to_float] = ACTIONS(257), + [anon_sym_bash] = ACTIONS(257), + [anon_sym_fish] = ACTIONS(257), + [anon_sym_raw] = ACTIONS(257), + [anon_sym_sh] = ACTIONS(257), + [anon_sym_zsh] = ACTIONS(257), + [anon_sym_random] = ACTIONS(257), + [anon_sym_random_boolean] = ACTIONS(257), + [anon_sym_random_float] = ACTIONS(257), + [anon_sym_random_integer] = ACTIONS(257), + [anon_sym_columns] = ACTIONS(257), + [anon_sym_rows] = ACTIONS(257), + [anon_sym_reverse] = ACTIONS(257), }, [46] = { - [sym_statement] = STATE(50), - [sym_expression] = STATE(824), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(739), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(653), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [aux_sym_block_repeat1] = STATE(50), - [ts_builtin_sym_end] = ACTIONS(419), - [sym_identifier] = ACTIONS(2015), + [sym_block] = STATE(610), + [sym_statement] = STATE(199), + [sym_expression] = STATE(473), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(598), + [sym_if_else] = STATE(598), + [sym_if] = STATE(565), + [sym_match] = STATE(598), + [sym_while] = STATE(598), + [sym_for] = STATE(598), + [sym_transform] = STATE(598), + [sym_filter] = STATE(598), + [sym_find] = STATE(598), + [sym_remove] = STATE(598), + [sym_reduce] = STATE(598), + [sym_select] = STATE(598), + [sym_insert] = STATE(598), + [sym_async] = STATE(598), + [sym_identifier_list] = STATE(1085), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(203), + [aux_sym_block_repeat1] = STATE(199), + [sym_identifier] = ACTIONS(609), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1783), - [anon_sym_RBRACE] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_RPAREN] = ACTIONS(419), - [anon_sym_COMMA] = ACTIONS(419), - [sym_integer] = ACTIONS(1789), - [sym_float] = ACTIONS(1792), - [sym_string] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1795), - [anon_sym_false] = ACTIONS(1795), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_RBRACK] = ACTIONS(419), - [anon_sym_COLON] = ACTIONS(419), - [anon_sym_PLUS] = ACTIONS(419), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_STAR] = ACTIONS(419), - [anon_sym_SLASH] = ACTIONS(419), - [anon_sym_PERCENT] = ACTIONS(419), - [anon_sym_EQ_EQ] = ACTIONS(419), - [anon_sym_BANG_EQ] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(442), - [anon_sym_LT] = ACTIONS(442), - [anon_sym_GT_EQ] = ACTIONS(419), - [anon_sym_LT_EQ] = ACTIONS(419), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_match] = ACTIONS(2018), - [anon_sym_EQ_GT] = ACTIONS(2021), - [anon_sym_while] = ACTIONS(2024), - [anon_sym_for] = ACTIONS(2027), - [anon_sym_asyncfor] = ACTIONS(2030), - [anon_sym_transform] = ACTIONS(2033), - [anon_sym_filter] = ACTIONS(2036), - [anon_sym_find] = ACTIONS(2039), - [anon_sym_remove] = ACTIONS(2042), - [anon_sym_reduce] = ACTIONS(2045), - [anon_sym_select] = ACTIONS(2048), - [anon_sym_insert] = ACTIONS(2051), - [anon_sym_async] = ACTIONS(2054), - [anon_sym_PIPE] = ACTIONS(486), - [anon_sym_table] = ACTIONS(2057), - [anon_sym_assert] = ACTIONS(2060), - [anon_sym_assert_equal] = ACTIONS(2060), - [anon_sym_download] = ACTIONS(2060), - [anon_sym_help] = ACTIONS(2060), - [anon_sym_length] = ACTIONS(2060), - [anon_sym_output] = ACTIONS(2060), - [anon_sym_output_error] = ACTIONS(2060), - [anon_sym_type] = ACTIONS(2060), - [anon_sym_append] = ACTIONS(2060), - [anon_sym_metadata] = ACTIONS(2060), - [anon_sym_move] = ACTIONS(2060), - [anon_sym_read] = ACTIONS(2060), - [anon_sym_workdir] = ACTIONS(2060), - [anon_sym_write] = ACTIONS(2060), - [anon_sym_from_json] = ACTIONS(2060), - [anon_sym_to_json] = ACTIONS(2060), - [anon_sym_to_string] = ACTIONS(2060), - [anon_sym_to_float] = ACTIONS(2060), - [anon_sym_bash] = ACTIONS(2060), - [anon_sym_fish] = ACTIONS(2060), - [anon_sym_raw] = ACTIONS(2060), - [anon_sym_sh] = ACTIONS(2060), - [anon_sym_zsh] = ACTIONS(2060), - [anon_sym_random] = ACTIONS(2060), - [anon_sym_random_boolean] = ACTIONS(2060), - [anon_sym_random_float] = ACTIONS(2060), - [anon_sym_random_integer] = ACTIONS(2060), - [anon_sym_columns] = ACTIONS(2060), - [anon_sym_rows] = ACTIONS(2060), - [anon_sym_reverse] = ACTIONS(2060), + [anon_sym_LBRACE] = ACTIONS(447), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(869), + [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(19), + [anon_sym_match] = ACTIONS(611), + [anon_sym_EQ_GT] = ACTIONS(231), + [anon_sym_while] = ACTIONS(613), + [anon_sym_for] = ACTIONS(615), + [anon_sym_asyncfor] = ACTIONS(617), + [anon_sym_transform] = ACTIONS(619), + [anon_sym_filter] = ACTIONS(621), + [anon_sym_find] = ACTIONS(623), + [anon_sym_remove] = ACTIONS(625), + [anon_sym_reduce] = ACTIONS(627), + [anon_sym_select] = ACTIONS(629), + [anon_sym_insert] = ACTIONS(251), + [anon_sym_async] = ACTIONS(631), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(255), + [anon_sym_assert] = ACTIONS(257), + [anon_sym_assert_equal] = ACTIONS(257), + [anon_sym_download] = ACTIONS(257), + [anon_sym_help] = ACTIONS(257), + [anon_sym_length] = ACTIONS(257), + [anon_sym_output] = ACTIONS(257), + [anon_sym_output_error] = ACTIONS(257), + [anon_sym_type] = ACTIONS(257), + [anon_sym_append] = ACTIONS(257), + [anon_sym_metadata] = ACTIONS(257), + [anon_sym_move] = ACTIONS(257), + [anon_sym_read] = ACTIONS(257), + [anon_sym_workdir] = ACTIONS(257), + [anon_sym_write] = ACTIONS(257), + [anon_sym_from_json] = ACTIONS(257), + [anon_sym_to_json] = ACTIONS(257), + [anon_sym_to_string] = ACTIONS(257), + [anon_sym_to_float] = ACTIONS(257), + [anon_sym_bash] = ACTIONS(257), + [anon_sym_fish] = ACTIONS(257), + [anon_sym_raw] = ACTIONS(257), + [anon_sym_sh] = ACTIONS(257), + [anon_sym_zsh] = ACTIONS(257), + [anon_sym_random] = ACTIONS(257), + [anon_sym_random_boolean] = ACTIONS(257), + [anon_sym_random_float] = ACTIONS(257), + [anon_sym_random_integer] = ACTIONS(257), + [anon_sym_columns] = ACTIONS(257), + [anon_sym_rows] = ACTIONS(257), + [anon_sym_reverse] = ACTIONS(257), }, [47] = { - [sym_block] = STATE(1066), - [sym_statement] = STATE(381), - [sym_expression] = STATE(925), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(867), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(980), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(381), - [ts_builtin_sym_end] = ACTIONS(53), - [sym_identifier] = ACTIONS(5), + [sym_block] = STATE(595), + [sym_statement] = STATE(212), + [sym_expression] = STATE(460), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(598), + [sym_if_else] = STATE(598), + [sym_if] = STATE(564), + [sym_match] = STATE(598), + [sym_while] = STATE(598), + [sym_for] = STATE(598), + [sym_transform] = STATE(598), + [sym_filter] = STATE(598), + [sym_find] = STATE(598), + [sym_remove] = STATE(598), + [sym_reduce] = STATE(598), + [sym_select] = STATE(598), + [sym_insert] = STATE(598), + [sym_async] = STATE(598), + [sym_identifier_list] = STATE(1100), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(181), + [aux_sym_block_repeat1] = STATE(212), + [sym_identifier] = ACTIONS(445), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(53), - [anon_sym_SEMI] = ACTIONS(53), - [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(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(447), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [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_asyncfor] = 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_async] = ACTIONS(45), + [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(449), + [anon_sym_match] = ACTIONS(451), + [anon_sym_EQ_GT] = ACTIONS(123), + [anon_sym_while] = ACTIONS(453), + [anon_sym_for] = ACTIONS(455), + [anon_sym_asyncfor] = ACTIONS(457), + [anon_sym_transform] = ACTIONS(459), + [anon_sym_filter] = ACTIONS(461), + [anon_sym_find] = ACTIONS(463), + [anon_sym_remove] = ACTIONS(465), + [anon_sym_reduce] = ACTIONS(467), + [anon_sym_select] = ACTIONS(469), + [anon_sym_insert] = ACTIONS(143), + [anon_sym_async] = ACTIONS(471), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(49), - [anon_sym_assert] = ACTIONS(51), - [anon_sym_assert_equal] = ACTIONS(51), - [anon_sym_download] = ACTIONS(51), - [anon_sym_help] = ACTIONS(51), - [anon_sym_length] = ACTIONS(51), - [anon_sym_output] = ACTIONS(51), - [anon_sym_output_error] = ACTIONS(51), - [anon_sym_type] = ACTIONS(51), - [anon_sym_append] = ACTIONS(51), - [anon_sym_metadata] = ACTIONS(51), - [anon_sym_move] = ACTIONS(51), - [anon_sym_read] = ACTIONS(51), - [anon_sym_workdir] = ACTIONS(51), - [anon_sym_write] = ACTIONS(51), - [anon_sym_from_json] = ACTIONS(51), - [anon_sym_to_json] = ACTIONS(51), - [anon_sym_to_string] = ACTIONS(51), - [anon_sym_to_float] = ACTIONS(51), - [anon_sym_bash] = ACTIONS(51), - [anon_sym_fish] = ACTIONS(51), - [anon_sym_raw] = ACTIONS(51), - [anon_sym_sh] = ACTIONS(51), - [anon_sym_zsh] = ACTIONS(51), - [anon_sym_random] = ACTIONS(51), - [anon_sym_random_boolean] = ACTIONS(51), - [anon_sym_random_float] = ACTIONS(51), - [anon_sym_random_integer] = ACTIONS(51), - [anon_sym_columns] = ACTIONS(51), - [anon_sym_rows] = ACTIONS(51), - [anon_sym_reverse] = ACTIONS(51), + [anon_sym_table] = ACTIONS(147), + [anon_sym_assert] = ACTIONS(149), + [anon_sym_assert_equal] = ACTIONS(149), + [anon_sym_download] = ACTIONS(149), + [anon_sym_help] = ACTIONS(149), + [anon_sym_length] = ACTIONS(149), + [anon_sym_output] = ACTIONS(149), + [anon_sym_output_error] = ACTIONS(149), + [anon_sym_type] = ACTIONS(149), + [anon_sym_append] = ACTIONS(149), + [anon_sym_metadata] = ACTIONS(149), + [anon_sym_move] = ACTIONS(149), + [anon_sym_read] = ACTIONS(149), + [anon_sym_workdir] = ACTIONS(149), + [anon_sym_write] = ACTIONS(149), + [anon_sym_from_json] = ACTIONS(149), + [anon_sym_to_json] = ACTIONS(149), + [anon_sym_to_string] = ACTIONS(149), + [anon_sym_to_float] = ACTIONS(149), + [anon_sym_bash] = ACTIONS(149), + [anon_sym_fish] = ACTIONS(149), + [anon_sym_raw] = ACTIONS(149), + [anon_sym_sh] = ACTIONS(149), + [anon_sym_zsh] = ACTIONS(149), + [anon_sym_random] = ACTIONS(149), + [anon_sym_random_boolean] = ACTIONS(149), + [anon_sym_random_float] = ACTIONS(149), + [anon_sym_random_integer] = ACTIONS(149), + [anon_sym_columns] = ACTIONS(149), + [anon_sym_rows] = ACTIONS(149), + [anon_sym_reverse] = ACTIONS(149), }, [48] = { - [sym_statement] = STATE(25), - [sym_expression] = STATE(683), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_logic] = STATE(706), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(573), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1813), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(311), - [aux_sym_block_repeat1] = STATE(25), - [sym_identifier] = ACTIONS(773), + [sym_block] = STATE(605), + [sym_statement] = STATE(212), + [sym_expression] = STATE(460), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(598), + [sym_if_else] = STATE(598), + [sym_if] = STATE(564), + [sym_match] = STATE(598), + [sym_while] = STATE(598), + [sym_for] = STATE(598), + [sym_transform] = STATE(598), + [sym_filter] = STATE(598), + [sym_find] = STATE(598), + [sym_remove] = STATE(598), + [sym_reduce] = STATE(598), + [sym_select] = STATE(598), + [sym_insert] = STATE(598), + [sym_async] = STATE(598), + [sym_identifier_list] = STATE(1100), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(181), + [aux_sym_block_repeat1] = STATE(212), + [sym_identifier] = ACTIONS(445), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1923), - [anon_sym_RBRACE] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_COMMA] = ACTIONS(419), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_EQ] = ACTIONS(442), - [anon_sym_COLON] = ACTIONS(419), - [anon_sym_PLUS] = ACTIONS(442), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_STAR] = ACTIONS(419), - [anon_sym_SLASH] = ACTIONS(419), - [anon_sym_PERCENT] = ACTIONS(419), - [anon_sym_EQ_EQ] = ACTIONS(419), - [anon_sym_BANG_EQ] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(442), - [anon_sym_LT] = ACTIONS(442), - [anon_sym_GT_EQ] = ACTIONS(419), - [anon_sym_LT_EQ] = ACTIONS(419), - [anon_sym_PLUS_EQ] = ACTIONS(419), - [anon_sym_DASH_EQ] = ACTIONS(419), - [anon_sym_if] = ACTIONS(117), - [anon_sym_match] = ACTIONS(279), - [anon_sym_EQ_GT] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_for] = ACTIONS(285), - [anon_sym_asyncfor] = ACTIONS(287), - [anon_sym_transform] = ACTIONS(289), - [anon_sym_filter] = ACTIONS(291), - [anon_sym_find] = ACTIONS(293), - [anon_sym_remove] = ACTIONS(295), - [anon_sym_reduce] = ACTIONS(297), - [anon_sym_select] = ACTIONS(299), - [anon_sym_insert] = ACTIONS(301), - [anon_sym_async] = ACTIONS(303), + [anon_sym_LBRACE] = ACTIONS(447), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(869), + [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(449), + [anon_sym_match] = ACTIONS(451), + [anon_sym_EQ_GT] = ACTIONS(123), + [anon_sym_while] = ACTIONS(453), + [anon_sym_for] = ACTIONS(455), + [anon_sym_asyncfor] = ACTIONS(457), + [anon_sym_transform] = ACTIONS(459), + [anon_sym_filter] = ACTIONS(461), + [anon_sym_find] = ACTIONS(463), + [anon_sym_remove] = ACTIONS(465), + [anon_sym_reduce] = ACTIONS(467), + [anon_sym_select] = ACTIONS(469), + [anon_sym_insert] = ACTIONS(143), + [anon_sym_async] = ACTIONS(471), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(305), - [anon_sym_assert] = ACTIONS(307), - [anon_sym_assert_equal] = ACTIONS(307), - [anon_sym_download] = ACTIONS(307), - [anon_sym_help] = ACTIONS(307), - [anon_sym_length] = ACTIONS(307), - [anon_sym_output] = ACTIONS(307), - [anon_sym_output_error] = ACTIONS(307), - [anon_sym_type] = ACTIONS(307), - [anon_sym_append] = ACTIONS(307), - [anon_sym_metadata] = ACTIONS(307), - [anon_sym_move] = ACTIONS(307), - [anon_sym_read] = ACTIONS(307), - [anon_sym_workdir] = ACTIONS(307), - [anon_sym_write] = ACTIONS(307), - [anon_sym_from_json] = ACTIONS(307), - [anon_sym_to_json] = ACTIONS(307), - [anon_sym_to_string] = ACTIONS(307), - [anon_sym_to_float] = ACTIONS(307), - [anon_sym_bash] = ACTIONS(307), - [anon_sym_fish] = ACTIONS(307), - [anon_sym_raw] = ACTIONS(307), - [anon_sym_sh] = ACTIONS(307), - [anon_sym_zsh] = ACTIONS(307), - [anon_sym_random] = ACTIONS(307), - [anon_sym_random_boolean] = ACTIONS(307), - [anon_sym_random_float] = ACTIONS(307), - [anon_sym_random_integer] = ACTIONS(307), - [anon_sym_columns] = ACTIONS(307), - [anon_sym_rows] = ACTIONS(307), - [anon_sym_reverse] = ACTIONS(307), + [anon_sym_table] = ACTIONS(147), + [anon_sym_assert] = ACTIONS(149), + [anon_sym_assert_equal] = ACTIONS(149), + [anon_sym_download] = ACTIONS(149), + [anon_sym_help] = ACTIONS(149), + [anon_sym_length] = ACTIONS(149), + [anon_sym_output] = ACTIONS(149), + [anon_sym_output_error] = ACTIONS(149), + [anon_sym_type] = ACTIONS(149), + [anon_sym_append] = ACTIONS(149), + [anon_sym_metadata] = ACTIONS(149), + [anon_sym_move] = ACTIONS(149), + [anon_sym_read] = ACTIONS(149), + [anon_sym_workdir] = ACTIONS(149), + [anon_sym_write] = ACTIONS(149), + [anon_sym_from_json] = ACTIONS(149), + [anon_sym_to_json] = ACTIONS(149), + [anon_sym_to_string] = ACTIONS(149), + [anon_sym_to_float] = ACTIONS(149), + [anon_sym_bash] = ACTIONS(149), + [anon_sym_fish] = ACTIONS(149), + [anon_sym_raw] = ACTIONS(149), + [anon_sym_sh] = ACTIONS(149), + [anon_sym_zsh] = ACTIONS(149), + [anon_sym_random] = ACTIONS(149), + [anon_sym_random_boolean] = ACTIONS(149), + [anon_sym_random_float] = ACTIONS(149), + [anon_sym_random_integer] = ACTIONS(149), + [anon_sym_columns] = ACTIONS(149), + [anon_sym_rows] = ACTIONS(149), + [anon_sym_reverse] = ACTIONS(149), }, [49] = { - [sym_statement] = STATE(25), - [sym_expression] = STATE(683), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_logic] = STATE(706), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(573), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1813), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(311), - [aux_sym_block_repeat1] = STATE(25), - [sym_identifier] = ACTIONS(773), + [sym_block] = STATE(604), + [sym_statement] = STATE(212), + [sym_expression] = STATE(460), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(598), + [sym_if_else] = STATE(598), + [sym_if] = STATE(564), + [sym_match] = STATE(598), + [sym_while] = STATE(598), + [sym_for] = STATE(598), + [sym_transform] = STATE(598), + [sym_filter] = STATE(598), + [sym_find] = STATE(598), + [sym_remove] = STATE(598), + [sym_reduce] = STATE(598), + [sym_select] = STATE(598), + [sym_insert] = STATE(598), + [sym_async] = STATE(598), + [sym_identifier_list] = STATE(1100), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(181), + [aux_sym_block_repeat1] = STATE(212), + [sym_identifier] = ACTIONS(445), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(776), - [anon_sym_RBRACE] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(779), - [anon_sym_COMMA] = ACTIONS(419), - [sym_integer] = ACTIONS(782), - [sym_float] = ACTIONS(785), - [sym_string] = ACTIONS(785), - [anon_sym_true] = ACTIONS(788), - [anon_sym_false] = ACTIONS(788), - [anon_sym_LBRACK] = ACTIONS(791), - [anon_sym_EQ] = ACTIONS(442), - [anon_sym_COLON] = ACTIONS(419), - [anon_sym_PLUS] = ACTIONS(442), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_STAR] = ACTIONS(419), - [anon_sym_SLASH] = ACTIONS(419), - [anon_sym_PERCENT] = ACTIONS(419), - [anon_sym_EQ_EQ] = ACTIONS(419), - [anon_sym_BANG_EQ] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(442), - [anon_sym_LT] = ACTIONS(442), - [anon_sym_GT_EQ] = ACTIONS(419), - [anon_sym_LT_EQ] = ACTIONS(419), - [anon_sym_PLUS_EQ] = ACTIONS(419), - [anon_sym_DASH_EQ] = ACTIONS(419), - [anon_sym_if] = ACTIONS(117), - [anon_sym_match] = ACTIONS(279), - [anon_sym_EQ_GT] = ACTIONS(1111), - [anon_sym_while] = ACTIONS(283), - [anon_sym_for] = ACTIONS(285), - [anon_sym_asyncfor] = ACTIONS(287), - [anon_sym_transform] = ACTIONS(289), - [anon_sym_filter] = ACTIONS(291), - [anon_sym_find] = ACTIONS(293), - [anon_sym_remove] = ACTIONS(295), - [anon_sym_reduce] = ACTIONS(297), - [anon_sym_select] = ACTIONS(299), - [anon_sym_insert] = ACTIONS(301), - [anon_sym_async] = ACTIONS(303), - [anon_sym_PIPE] = ACTIONS(486), - [anon_sym_table] = ACTIONS(1147), - [anon_sym_assert] = ACTIONS(1150), - [anon_sym_assert_equal] = ACTIONS(1150), - [anon_sym_download] = ACTIONS(1150), - [anon_sym_help] = ACTIONS(1150), - [anon_sym_length] = ACTIONS(1150), - [anon_sym_output] = ACTIONS(1150), - [anon_sym_output_error] = ACTIONS(1150), - [anon_sym_type] = ACTIONS(1150), - [anon_sym_append] = ACTIONS(1150), - [anon_sym_metadata] = ACTIONS(1150), - [anon_sym_move] = ACTIONS(1150), - [anon_sym_read] = ACTIONS(1150), - [anon_sym_workdir] = ACTIONS(1150), - [anon_sym_write] = ACTIONS(1150), - [anon_sym_from_json] = ACTIONS(1150), - [anon_sym_to_json] = ACTIONS(1150), - [anon_sym_to_string] = ACTIONS(1150), - [anon_sym_to_float] = ACTIONS(1150), - [anon_sym_bash] = ACTIONS(1150), - [anon_sym_fish] = ACTIONS(1150), - [anon_sym_raw] = ACTIONS(1150), - [anon_sym_sh] = ACTIONS(1150), - [anon_sym_zsh] = ACTIONS(1150), - [anon_sym_random] = ACTIONS(1150), - [anon_sym_random_boolean] = ACTIONS(1150), - [anon_sym_random_float] = ACTIONS(1150), - [anon_sym_random_integer] = ACTIONS(1150), - [anon_sym_columns] = ACTIONS(1150), - [anon_sym_rows] = ACTIONS(1150), - [anon_sym_reverse] = ACTIONS(1150), + [anon_sym_LBRACE] = ACTIONS(447), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(869), + [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(449), + [anon_sym_match] = ACTIONS(451), + [anon_sym_EQ_GT] = ACTIONS(123), + [anon_sym_while] = ACTIONS(453), + [anon_sym_for] = ACTIONS(455), + [anon_sym_asyncfor] = ACTIONS(457), + [anon_sym_transform] = ACTIONS(459), + [anon_sym_filter] = ACTIONS(461), + [anon_sym_find] = ACTIONS(463), + [anon_sym_remove] = ACTIONS(465), + [anon_sym_reduce] = ACTIONS(467), + [anon_sym_select] = ACTIONS(469), + [anon_sym_insert] = ACTIONS(143), + [anon_sym_async] = ACTIONS(471), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(147), + [anon_sym_assert] = ACTIONS(149), + [anon_sym_assert_equal] = ACTIONS(149), + [anon_sym_download] = ACTIONS(149), + [anon_sym_help] = ACTIONS(149), + [anon_sym_length] = ACTIONS(149), + [anon_sym_output] = ACTIONS(149), + [anon_sym_output_error] = ACTIONS(149), + [anon_sym_type] = ACTIONS(149), + [anon_sym_append] = ACTIONS(149), + [anon_sym_metadata] = ACTIONS(149), + [anon_sym_move] = ACTIONS(149), + [anon_sym_read] = ACTIONS(149), + [anon_sym_workdir] = ACTIONS(149), + [anon_sym_write] = ACTIONS(149), + [anon_sym_from_json] = ACTIONS(149), + [anon_sym_to_json] = ACTIONS(149), + [anon_sym_to_string] = ACTIONS(149), + [anon_sym_to_float] = ACTIONS(149), + [anon_sym_bash] = ACTIONS(149), + [anon_sym_fish] = ACTIONS(149), + [anon_sym_raw] = ACTIONS(149), + [anon_sym_sh] = ACTIONS(149), + [anon_sym_zsh] = ACTIONS(149), + [anon_sym_random] = ACTIONS(149), + [anon_sym_random_boolean] = ACTIONS(149), + [anon_sym_random_float] = ACTIONS(149), + [anon_sym_random_integer] = ACTIONS(149), + [anon_sym_columns] = ACTIONS(149), + [anon_sym_rows] = ACTIONS(149), + [anon_sym_reverse] = ACTIONS(149), }, [50] = { - [sym_statement] = STATE(50), - [sym_expression] = STATE(824), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(739), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(653), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [aux_sym_block_repeat1] = STATE(50), - [ts_builtin_sym_end] = ACTIONS(343), - [sym_identifier] = ACTIONS(2063), + [sym_block] = STATE(1022), + [sym_statement] = STATE(221), + [sym_expression] = STATE(547), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(571), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [aux_sym_block_repeat1] = STATE(221), + [sym_identifier] = ACTIONS(941), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_RBRACE] = ACTIONS(343), - [anon_sym_SEMI] = ACTIONS(343), - [anon_sym_LPAREN] = ACTIONS(1669), - [anon_sym_RPAREN] = ACTIONS(343), - [anon_sym_COMMA] = ACTIONS(343), - [sym_integer] = ACTIONS(1672), - [sym_float] = ACTIONS(1675), - [sym_string] = ACTIONS(1675), - [anon_sym_true] = ACTIONS(1678), - [anon_sym_false] = ACTIONS(1678), - [anon_sym_LBRACK] = ACTIONS(1681), - [anon_sym_RBRACK] = ACTIONS(343), - [anon_sym_COLON] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(366), - [anon_sym_STAR] = ACTIONS(343), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_PERCENT] = ACTIONS(343), - [anon_sym_EQ_EQ] = ACTIONS(343), - [anon_sym_BANG_EQ] = ACTIONS(343), - [anon_sym_AMP_AMP] = ACTIONS(343), - [anon_sym_PIPE_PIPE] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(366), - [anon_sym_LT] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(343), - [anon_sym_LT_EQ] = ACTIONS(343), - [anon_sym_if] = ACTIONS(1388), - [anon_sym_match] = ACTIONS(2066), - [anon_sym_EQ_GT] = ACTIONS(2069), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_for] = ACTIONS(2075), - [anon_sym_asyncfor] = ACTIONS(2078), - [anon_sym_transform] = ACTIONS(2081), - [anon_sym_filter] = ACTIONS(2084), - [anon_sym_find] = ACTIONS(2087), - [anon_sym_remove] = ACTIONS(2090), - [anon_sym_reduce] = ACTIONS(2093), - [anon_sym_select] = ACTIONS(2096), - [anon_sym_insert] = ACTIONS(2099), - [anon_sym_async] = ACTIONS(2102), - [anon_sym_PIPE] = ACTIONS(410), - [anon_sym_table] = ACTIONS(2105), - [anon_sym_assert] = ACTIONS(2108), - [anon_sym_assert_equal] = ACTIONS(2108), - [anon_sym_download] = ACTIONS(2108), - [anon_sym_help] = ACTIONS(2108), - [anon_sym_length] = ACTIONS(2108), - [anon_sym_output] = ACTIONS(2108), - [anon_sym_output_error] = ACTIONS(2108), - [anon_sym_type] = ACTIONS(2108), - [anon_sym_append] = ACTIONS(2108), - [anon_sym_metadata] = ACTIONS(2108), - [anon_sym_move] = ACTIONS(2108), - [anon_sym_read] = ACTIONS(2108), - [anon_sym_workdir] = ACTIONS(2108), - [anon_sym_write] = ACTIONS(2108), - [anon_sym_from_json] = ACTIONS(2108), - [anon_sym_to_json] = ACTIONS(2108), - [anon_sym_to_string] = ACTIONS(2108), - [anon_sym_to_float] = ACTIONS(2108), - [anon_sym_bash] = ACTIONS(2108), - [anon_sym_fish] = ACTIONS(2108), - [anon_sym_raw] = ACTIONS(2108), - [anon_sym_sh] = ACTIONS(2108), - [anon_sym_zsh] = ACTIONS(2108), - [anon_sym_random] = ACTIONS(2108), - [anon_sym_random_boolean] = ACTIONS(2108), - [anon_sym_random_float] = ACTIONS(2108), - [anon_sym_random_integer] = ACTIONS(2108), - [anon_sym_columns] = ACTIONS(2108), - [anon_sym_rows] = ACTIONS(2108), - [anon_sym_reverse] = ACTIONS(2108), + [anon_sym_LBRACE] = ACTIONS(1013), + [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(869), + [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(449), + [anon_sym_match] = ACTIONS(943), + [anon_sym_EQ_GT] = ACTIONS(265), + [anon_sym_while] = ACTIONS(945), + [anon_sym_for] = ACTIONS(947), + [anon_sym_asyncfor] = ACTIONS(949), + [anon_sym_transform] = ACTIONS(951), + [anon_sym_filter] = ACTIONS(953), + [anon_sym_find] = ACTIONS(955), + [anon_sym_remove] = ACTIONS(957), + [anon_sym_reduce] = ACTIONS(959), + [anon_sym_select] = ACTIONS(961), + [anon_sym_insert] = ACTIONS(285), + [anon_sym_async] = ACTIONS(963), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(289), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_assert_equal] = ACTIONS(291), + [anon_sym_download] = ACTIONS(291), + [anon_sym_help] = ACTIONS(291), + [anon_sym_length] = ACTIONS(291), + [anon_sym_output] = ACTIONS(291), + [anon_sym_output_error] = ACTIONS(291), + [anon_sym_type] = ACTIONS(291), + [anon_sym_append] = ACTIONS(291), + [anon_sym_metadata] = ACTIONS(291), + [anon_sym_move] = ACTIONS(291), + [anon_sym_read] = ACTIONS(291), + [anon_sym_workdir] = ACTIONS(291), + [anon_sym_write] = ACTIONS(291), + [anon_sym_from_json] = ACTIONS(291), + [anon_sym_to_json] = ACTIONS(291), + [anon_sym_to_string] = ACTIONS(291), + [anon_sym_to_float] = ACTIONS(291), + [anon_sym_bash] = ACTIONS(291), + [anon_sym_fish] = ACTIONS(291), + [anon_sym_raw] = ACTIONS(291), + [anon_sym_sh] = ACTIONS(291), + [anon_sym_zsh] = ACTIONS(291), + [anon_sym_random] = ACTIONS(291), + [anon_sym_random_boolean] = ACTIONS(291), + [anon_sym_random_float] = ACTIONS(291), + [anon_sym_random_integer] = ACTIONS(291), + [anon_sym_columns] = ACTIONS(291), + [anon_sym_rows] = ACTIONS(291), + [anon_sym_reverse] = ACTIONS(291), }, [51] = { - [sym_statement] = STATE(55), - [sym_expression] = STATE(817), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(748), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(760), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1926), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(351), - [aux_sym_block_repeat1] = STATE(55), - [ts_builtin_sym_end] = ACTIONS(419), - [sym_identifier] = ACTIONS(2111), + [sym_block] = STATE(1009), + [sym_statement] = STATE(210), + [sym_expression] = STATE(460), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(598), + [sym_if_else] = STATE(598), + [sym_if] = STATE(564), + [sym_match] = STATE(598), + [sym_while] = STATE(598), + [sym_for] = STATE(598), + [sym_transform] = STATE(598), + [sym_filter] = STATE(598), + [sym_find] = STATE(598), + [sym_remove] = STATE(598), + [sym_reduce] = STATE(598), + [sym_select] = STATE(598), + [sym_insert] = STATE(598), + [sym_async] = STATE(598), + [sym_identifier_list] = STATE(1100), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(181), + [aux_sym_block_repeat1] = STATE(210), + [sym_identifier] = ACTIONS(445), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(994), - [anon_sym_RBRACE] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_RPAREN] = ACTIONS(419), - [sym_integer] = ACTIONS(1000), - [sym_float] = ACTIONS(1003), - [sym_string] = ACTIONS(1003), - [anon_sym_true] = ACTIONS(1006), - [anon_sym_false] = ACTIONS(1006), - [anon_sym_LBRACK] = ACTIONS(1009), - [anon_sym_COLON] = ACTIONS(419), - [anon_sym_PLUS] = ACTIONS(419), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_STAR] = ACTIONS(419), - [anon_sym_SLASH] = ACTIONS(419), - [anon_sym_PERCENT] = ACTIONS(419), - [anon_sym_EQ_EQ] = ACTIONS(419), - [anon_sym_BANG_EQ] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(442), - [anon_sym_LT] = ACTIONS(442), - [anon_sym_GT_EQ] = ACTIONS(419), - [anon_sym_LT_EQ] = ACTIONS(419), - [anon_sym_if] = ACTIONS(2114), - [anon_sym_elseif] = ACTIONS(419), - [anon_sym_else] = ACTIONS(442), - [anon_sym_match] = ACTIONS(2117), - [anon_sym_EQ_GT] = ACTIONS(2120), - [anon_sym_while] = ACTIONS(2123), - [anon_sym_for] = ACTIONS(2126), - [anon_sym_asyncfor] = ACTIONS(2129), - [anon_sym_transform] = ACTIONS(2132), - [anon_sym_filter] = ACTIONS(2135), - [anon_sym_find] = ACTIONS(2138), - [anon_sym_remove] = ACTIONS(2141), - [anon_sym_reduce] = ACTIONS(2144), - [anon_sym_select] = ACTIONS(2147), - [anon_sym_insert] = ACTIONS(2150), - [anon_sym_async] = ACTIONS(2153), - [anon_sym_PIPE] = ACTIONS(486), - [anon_sym_table] = ACTIONS(2156), - [anon_sym_assert] = ACTIONS(2159), - [anon_sym_assert_equal] = ACTIONS(2159), - [anon_sym_download] = ACTIONS(2159), - [anon_sym_help] = ACTIONS(2159), - [anon_sym_length] = ACTIONS(2159), - [anon_sym_output] = ACTIONS(2159), - [anon_sym_output_error] = ACTIONS(2159), - [anon_sym_type] = ACTIONS(2159), - [anon_sym_append] = ACTIONS(2159), - [anon_sym_metadata] = ACTIONS(2159), - [anon_sym_move] = ACTIONS(2159), - [anon_sym_read] = ACTIONS(2159), - [anon_sym_workdir] = ACTIONS(2159), - [anon_sym_write] = ACTIONS(2159), - [anon_sym_from_json] = ACTIONS(2159), - [anon_sym_to_json] = ACTIONS(2159), - [anon_sym_to_string] = ACTIONS(2159), - [anon_sym_to_float] = ACTIONS(2159), - [anon_sym_bash] = ACTIONS(2159), - [anon_sym_fish] = ACTIONS(2159), - [anon_sym_raw] = ACTIONS(2159), - [anon_sym_sh] = ACTIONS(2159), - [anon_sym_zsh] = ACTIONS(2159), - [anon_sym_random] = ACTIONS(2159), - [anon_sym_random_boolean] = ACTIONS(2159), - [anon_sym_random_float] = ACTIONS(2159), - [anon_sym_random_integer] = ACTIONS(2159), - [anon_sym_columns] = ACTIONS(2159), - [anon_sym_rows] = ACTIONS(2159), - [anon_sym_reverse] = ACTIONS(2159), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(869), + [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(449), + [anon_sym_match] = ACTIONS(451), + [anon_sym_EQ_GT] = ACTIONS(123), + [anon_sym_while] = ACTIONS(453), + [anon_sym_for] = ACTIONS(455), + [anon_sym_asyncfor] = ACTIONS(457), + [anon_sym_transform] = ACTIONS(459), + [anon_sym_filter] = ACTIONS(461), + [anon_sym_find] = ACTIONS(463), + [anon_sym_remove] = ACTIONS(465), + [anon_sym_reduce] = ACTIONS(467), + [anon_sym_select] = ACTIONS(469), + [anon_sym_insert] = ACTIONS(143), + [anon_sym_async] = ACTIONS(471), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(147), + [anon_sym_assert] = ACTIONS(149), + [anon_sym_assert_equal] = ACTIONS(149), + [anon_sym_download] = ACTIONS(149), + [anon_sym_help] = ACTIONS(149), + [anon_sym_length] = ACTIONS(149), + [anon_sym_output] = ACTIONS(149), + [anon_sym_output_error] = ACTIONS(149), + [anon_sym_type] = ACTIONS(149), + [anon_sym_append] = ACTIONS(149), + [anon_sym_metadata] = ACTIONS(149), + [anon_sym_move] = ACTIONS(149), + [anon_sym_read] = ACTIONS(149), + [anon_sym_workdir] = ACTIONS(149), + [anon_sym_write] = ACTIONS(149), + [anon_sym_from_json] = ACTIONS(149), + [anon_sym_to_json] = ACTIONS(149), + [anon_sym_to_string] = ACTIONS(149), + [anon_sym_to_float] = ACTIONS(149), + [anon_sym_bash] = ACTIONS(149), + [anon_sym_fish] = ACTIONS(149), + [anon_sym_raw] = ACTIONS(149), + [anon_sym_sh] = ACTIONS(149), + [anon_sym_zsh] = ACTIONS(149), + [anon_sym_random] = ACTIONS(149), + [anon_sym_random_boolean] = ACTIONS(149), + [anon_sym_random_float] = ACTIONS(149), + [anon_sym_random_integer] = ACTIONS(149), + [anon_sym_columns] = ACTIONS(149), + [anon_sym_rows] = ACTIONS(149), + [anon_sym_reverse] = ACTIONS(149), }, [52] = { - [sym_block] = STATE(1645), - [sym_statement] = STATE(371), - [sym_expression] = STATE(934), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(842), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1381), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1380), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(983), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [aux_sym_block_repeat1] = STATE(371), - [sym_identifier] = ACTIONS(2162), + [sym_block] = STATE(488), + [sym_statement] = STATE(17), + [sym_expression] = STATE(402), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(348), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1104), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(17), + [sym_identifier] = ACTIONS(187), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2164), - [anon_sym_RBRACE] = ACTIONS(53), - [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_COMMA] = ACTIONS(53), [sym_integer] = ACTIONS(11), [sym_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(1200), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(1570), - [anon_sym_match] = ACTIONS(2166), - [anon_sym_EQ_GT] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(2168), - [anon_sym_for] = ACTIONS(2170), - [anon_sym_asyncfor] = ACTIONS(2172), - [anon_sym_transform] = ACTIONS(2174), - [anon_sym_filter] = ACTIONS(2176), - [anon_sym_find] = ACTIONS(2178), - [anon_sym_remove] = ACTIONS(2180), - [anon_sym_reduce] = ACTIONS(2182), - [anon_sym_select] = ACTIONS(2184), - [anon_sym_insert] = ACTIONS(1224), - [anon_sym_async] = ACTIONS(2186), + [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(193), + [anon_sym_EQ_GT] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_for] = ACTIONS(199), + [anon_sym_asyncfor] = ACTIONS(201), + [anon_sym_transform] = ACTIONS(203), + [anon_sym_filter] = ACTIONS(205), + [anon_sym_find] = ACTIONS(207), + [anon_sym_remove] = ACTIONS(209), + [anon_sym_reduce] = ACTIONS(211), + [anon_sym_select] = ACTIONS(213), + [anon_sym_insert] = ACTIONS(215), + [anon_sym_async] = ACTIONS(217), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1228), - [anon_sym_assert] = ACTIONS(1230), - [anon_sym_assert_equal] = ACTIONS(1230), - [anon_sym_download] = ACTIONS(1230), - [anon_sym_help] = ACTIONS(1230), - [anon_sym_length] = ACTIONS(1230), - [anon_sym_output] = ACTIONS(1230), - [anon_sym_output_error] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_append] = ACTIONS(1230), - [anon_sym_metadata] = ACTIONS(1230), - [anon_sym_move] = ACTIONS(1230), - [anon_sym_read] = ACTIONS(1230), - [anon_sym_workdir] = ACTIONS(1230), - [anon_sym_write] = ACTIONS(1230), - [anon_sym_from_json] = ACTIONS(1230), - [anon_sym_to_json] = ACTIONS(1230), - [anon_sym_to_string] = ACTIONS(1230), - [anon_sym_to_float] = ACTIONS(1230), - [anon_sym_bash] = ACTIONS(1230), - [anon_sym_fish] = ACTIONS(1230), - [anon_sym_raw] = ACTIONS(1230), - [anon_sym_sh] = ACTIONS(1230), - [anon_sym_zsh] = ACTIONS(1230), - [anon_sym_random] = ACTIONS(1230), - [anon_sym_random_boolean] = ACTIONS(1230), - [anon_sym_random_float] = ACTIONS(1230), - [anon_sym_random_integer] = ACTIONS(1230), - [anon_sym_columns] = ACTIONS(1230), - [anon_sym_rows] = ACTIONS(1230), - [anon_sym_reverse] = ACTIONS(1230), + [anon_sym_table] = ACTIONS(219), + [anon_sym_assert] = ACTIONS(221), + [anon_sym_assert_equal] = ACTIONS(221), + [anon_sym_download] = ACTIONS(221), + [anon_sym_help] = ACTIONS(221), + [anon_sym_length] = ACTIONS(221), + [anon_sym_output] = ACTIONS(221), + [anon_sym_output_error] = ACTIONS(221), + [anon_sym_type] = ACTIONS(221), + [anon_sym_append] = ACTIONS(221), + [anon_sym_metadata] = ACTIONS(221), + [anon_sym_move] = ACTIONS(221), + [anon_sym_read] = ACTIONS(221), + [anon_sym_workdir] = ACTIONS(221), + [anon_sym_write] = ACTIONS(221), + [anon_sym_from_json] = ACTIONS(221), + [anon_sym_to_json] = ACTIONS(221), + [anon_sym_to_string] = ACTIONS(221), + [anon_sym_to_float] = ACTIONS(221), + [anon_sym_bash] = ACTIONS(221), + [anon_sym_fish] = ACTIONS(221), + [anon_sym_raw] = ACTIONS(221), + [anon_sym_sh] = ACTIONS(221), + [anon_sym_zsh] = ACTIONS(221), + [anon_sym_random] = ACTIONS(221), + [anon_sym_random_boolean] = ACTIONS(221), + [anon_sym_random_float] = ACTIONS(221), + [anon_sym_random_integer] = ACTIONS(221), + [anon_sym_columns] = ACTIONS(221), + [anon_sym_rows] = ACTIONS(221), + [anon_sym_reverse] = ACTIONS(221), }, [53] = { - [sym_block] = STATE(1066), - [sym_statement] = STATE(382), - [sym_expression] = STATE(934), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(842), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1381), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1380), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(983), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [aux_sym_block_repeat1] = STATE(382), - [sym_identifier] = ACTIONS(2162), + [sym_block] = STATE(1011), + [sym_statement] = STATE(221), + [sym_expression] = STATE(547), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(571), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [aux_sym_block_repeat1] = STATE(221), + [sym_identifier] = ACTIONS(941), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(53), - [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(1013), [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_COMMA] = ACTIONS(53), [sym_integer] = ACTIONS(11), [sym_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(1200), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(1570), - [anon_sym_match] = ACTIONS(2166), - [anon_sym_EQ_GT] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(2168), - [anon_sym_for] = ACTIONS(2170), - [anon_sym_asyncfor] = ACTIONS(2172), - [anon_sym_transform] = ACTIONS(2174), - [anon_sym_filter] = ACTIONS(2176), - [anon_sym_find] = ACTIONS(2178), - [anon_sym_remove] = ACTIONS(2180), - [anon_sym_reduce] = ACTIONS(2182), - [anon_sym_select] = ACTIONS(2184), - [anon_sym_insert] = ACTIONS(1224), - [anon_sym_async] = ACTIONS(2186), + [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(449), + [anon_sym_match] = ACTIONS(943), + [anon_sym_EQ_GT] = ACTIONS(265), + [anon_sym_while] = ACTIONS(945), + [anon_sym_for] = ACTIONS(947), + [anon_sym_asyncfor] = ACTIONS(949), + [anon_sym_transform] = ACTIONS(951), + [anon_sym_filter] = ACTIONS(953), + [anon_sym_find] = ACTIONS(955), + [anon_sym_remove] = ACTIONS(957), + [anon_sym_reduce] = ACTIONS(959), + [anon_sym_select] = ACTIONS(961), + [anon_sym_insert] = ACTIONS(285), + [anon_sym_async] = ACTIONS(963), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1228), - [anon_sym_assert] = ACTIONS(1230), - [anon_sym_assert_equal] = ACTIONS(1230), - [anon_sym_download] = ACTIONS(1230), - [anon_sym_help] = ACTIONS(1230), - [anon_sym_length] = ACTIONS(1230), - [anon_sym_output] = ACTIONS(1230), - [anon_sym_output_error] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_append] = ACTIONS(1230), - [anon_sym_metadata] = ACTIONS(1230), - [anon_sym_move] = ACTIONS(1230), - [anon_sym_read] = ACTIONS(1230), - [anon_sym_workdir] = ACTIONS(1230), - [anon_sym_write] = ACTIONS(1230), - [anon_sym_from_json] = ACTIONS(1230), - [anon_sym_to_json] = ACTIONS(1230), - [anon_sym_to_string] = ACTIONS(1230), - [anon_sym_to_float] = ACTIONS(1230), - [anon_sym_bash] = ACTIONS(1230), - [anon_sym_fish] = ACTIONS(1230), - [anon_sym_raw] = ACTIONS(1230), - [anon_sym_sh] = ACTIONS(1230), - [anon_sym_zsh] = ACTIONS(1230), - [anon_sym_random] = ACTIONS(1230), - [anon_sym_random_boolean] = ACTIONS(1230), - [anon_sym_random_float] = ACTIONS(1230), - [anon_sym_random_integer] = ACTIONS(1230), - [anon_sym_columns] = ACTIONS(1230), - [anon_sym_rows] = ACTIONS(1230), - [anon_sym_reverse] = ACTIONS(1230), + [anon_sym_table] = ACTIONS(289), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_assert_equal] = ACTIONS(291), + [anon_sym_download] = ACTIONS(291), + [anon_sym_help] = ACTIONS(291), + [anon_sym_length] = ACTIONS(291), + [anon_sym_output] = ACTIONS(291), + [anon_sym_output_error] = ACTIONS(291), + [anon_sym_type] = ACTIONS(291), + [anon_sym_append] = ACTIONS(291), + [anon_sym_metadata] = ACTIONS(291), + [anon_sym_move] = ACTIONS(291), + [anon_sym_read] = ACTIONS(291), + [anon_sym_workdir] = ACTIONS(291), + [anon_sym_write] = ACTIONS(291), + [anon_sym_from_json] = ACTIONS(291), + [anon_sym_to_json] = ACTIONS(291), + [anon_sym_to_string] = ACTIONS(291), + [anon_sym_to_float] = ACTIONS(291), + [anon_sym_bash] = ACTIONS(291), + [anon_sym_fish] = ACTIONS(291), + [anon_sym_raw] = ACTIONS(291), + [anon_sym_sh] = ACTIONS(291), + [anon_sym_zsh] = ACTIONS(291), + [anon_sym_random] = ACTIONS(291), + [anon_sym_random_boolean] = ACTIONS(291), + [anon_sym_random_float] = ACTIONS(291), + [anon_sym_random_integer] = ACTIONS(291), + [anon_sym_columns] = ACTIONS(291), + [anon_sym_rows] = ACTIONS(291), + [anon_sym_reverse] = ACTIONS(291), }, [54] = { - [sym_statement] = STATE(37), - [sym_expression] = STATE(756), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(657), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(627), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1752), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(338), - [aux_sym_block_repeat1] = STATE(37), - [sym_identifier] = ACTIONS(1780), + [sym_block] = STATE(601), + [sym_statement] = STATE(199), + [sym_expression] = STATE(473), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(598), + [sym_if_else] = STATE(598), + [sym_if] = STATE(565), + [sym_match] = STATE(598), + [sym_while] = STATE(598), + [sym_for] = STATE(598), + [sym_transform] = STATE(598), + [sym_filter] = STATE(598), + [sym_find] = STATE(598), + [sym_remove] = STATE(598), + [sym_reduce] = STATE(598), + [sym_select] = STATE(598), + [sym_insert] = STATE(598), + [sym_async] = STATE(598), + [sym_identifier_list] = STATE(1085), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(203), + [aux_sym_block_repeat1] = STATE(199), + [sym_identifier] = ACTIONS(609), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1783), - [anon_sym_RBRACE] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_RPAREN] = ACTIONS(419), - [anon_sym_COMMA] = ACTIONS(419), - [sym_integer] = ACTIONS(1789), - [sym_float] = ACTIONS(1792), - [sym_string] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1795), - [anon_sym_false] = ACTIONS(1795), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_RBRACK] = ACTIONS(419), - [anon_sym_COLON] = ACTIONS(419), - [anon_sym_DOT_DOT] = ACTIONS(419), - [anon_sym_PLUS] = ACTIONS(419), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_STAR] = ACTIONS(419), - [anon_sym_SLASH] = ACTIONS(419), - [anon_sym_PERCENT] = ACTIONS(419), - [anon_sym_EQ_EQ] = ACTIONS(419), - [anon_sym_BANG_EQ] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(442), - [anon_sym_LT] = ACTIONS(442), - [anon_sym_GT_EQ] = ACTIONS(419), - [anon_sym_LT_EQ] = ACTIONS(419), - [anon_sym_if] = ACTIONS(245), - [anon_sym_match] = ACTIONS(881), - [anon_sym_EQ_GT] = ACTIONS(1804), - [anon_sym_while] = ACTIONS(885), - [anon_sym_for] = ACTIONS(887), - [anon_sym_asyncfor] = ACTIONS(889), - [anon_sym_transform] = ACTIONS(891), - [anon_sym_filter] = ACTIONS(893), - [anon_sym_find] = ACTIONS(895), - [anon_sym_remove] = ACTIONS(897), - [anon_sym_reduce] = ACTIONS(899), - [anon_sym_select] = ACTIONS(901), - [anon_sym_insert] = ACTIONS(903), - [anon_sym_async] = ACTIONS(905), - [anon_sym_PIPE] = ACTIONS(486), - [anon_sym_table] = ACTIONS(1840), - [anon_sym_assert] = ACTIONS(1843), - [anon_sym_assert_equal] = ACTIONS(1843), - [anon_sym_download] = ACTIONS(1843), - [anon_sym_help] = ACTIONS(1843), - [anon_sym_length] = ACTIONS(1843), - [anon_sym_output] = ACTIONS(1843), - [anon_sym_output_error] = ACTIONS(1843), - [anon_sym_type] = ACTIONS(1843), - [anon_sym_append] = ACTIONS(1843), - [anon_sym_metadata] = ACTIONS(1843), - [anon_sym_move] = ACTIONS(1843), - [anon_sym_read] = ACTIONS(1843), - [anon_sym_workdir] = ACTIONS(1843), - [anon_sym_write] = ACTIONS(1843), - [anon_sym_from_json] = ACTIONS(1843), - [anon_sym_to_json] = ACTIONS(1843), - [anon_sym_to_string] = ACTIONS(1843), - [anon_sym_to_float] = ACTIONS(1843), - [anon_sym_bash] = ACTIONS(1843), - [anon_sym_fish] = ACTIONS(1843), - [anon_sym_raw] = ACTIONS(1843), - [anon_sym_sh] = ACTIONS(1843), - [anon_sym_zsh] = ACTIONS(1843), - [anon_sym_random] = ACTIONS(1843), - [anon_sym_random_boolean] = ACTIONS(1843), - [anon_sym_random_float] = ACTIONS(1843), - [anon_sym_random_integer] = ACTIONS(1843), - [anon_sym_columns] = ACTIONS(1843), - [anon_sym_rows] = ACTIONS(1843), - [anon_sym_reverse] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(447), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(869), + [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(19), + [anon_sym_match] = ACTIONS(611), + [anon_sym_EQ_GT] = ACTIONS(231), + [anon_sym_while] = ACTIONS(613), + [anon_sym_for] = ACTIONS(615), + [anon_sym_asyncfor] = ACTIONS(617), + [anon_sym_transform] = ACTIONS(619), + [anon_sym_filter] = ACTIONS(621), + [anon_sym_find] = ACTIONS(623), + [anon_sym_remove] = ACTIONS(625), + [anon_sym_reduce] = ACTIONS(627), + [anon_sym_select] = ACTIONS(629), + [anon_sym_insert] = ACTIONS(251), + [anon_sym_async] = ACTIONS(631), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(255), + [anon_sym_assert] = ACTIONS(257), + [anon_sym_assert_equal] = ACTIONS(257), + [anon_sym_download] = ACTIONS(257), + [anon_sym_help] = ACTIONS(257), + [anon_sym_length] = ACTIONS(257), + [anon_sym_output] = ACTIONS(257), + [anon_sym_output_error] = ACTIONS(257), + [anon_sym_type] = ACTIONS(257), + [anon_sym_append] = ACTIONS(257), + [anon_sym_metadata] = ACTIONS(257), + [anon_sym_move] = ACTIONS(257), + [anon_sym_read] = ACTIONS(257), + [anon_sym_workdir] = ACTIONS(257), + [anon_sym_write] = ACTIONS(257), + [anon_sym_from_json] = ACTIONS(257), + [anon_sym_to_json] = ACTIONS(257), + [anon_sym_to_string] = ACTIONS(257), + [anon_sym_to_float] = ACTIONS(257), + [anon_sym_bash] = ACTIONS(257), + [anon_sym_fish] = ACTIONS(257), + [anon_sym_raw] = ACTIONS(257), + [anon_sym_sh] = ACTIONS(257), + [anon_sym_zsh] = ACTIONS(257), + [anon_sym_random] = ACTIONS(257), + [anon_sym_random_boolean] = ACTIONS(257), + [anon_sym_random_float] = ACTIONS(257), + [anon_sym_random_integer] = ACTIONS(257), + [anon_sym_columns] = ACTIONS(257), + [anon_sym_rows] = ACTIONS(257), + [anon_sym_reverse] = ACTIONS(257), }, [55] = { - [sym_statement] = STATE(55), - [sym_expression] = STATE(817), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(748), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(760), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1926), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(351), - [aux_sym_block_repeat1] = STATE(55), - [ts_builtin_sym_end] = ACTIONS(343), - [sym_identifier] = ACTIONS(2188), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1319), - [anon_sym_RBRACE] = ACTIONS(343), - [anon_sym_SEMI] = ACTIONS(343), - [anon_sym_LPAREN] = ACTIONS(1322), - [anon_sym_RPAREN] = ACTIONS(343), - [sym_integer] = ACTIONS(1325), - [sym_float] = ACTIONS(1328), - [sym_string] = ACTIONS(1328), - [anon_sym_true] = ACTIONS(1331), - [anon_sym_false] = ACTIONS(1331), - [anon_sym_LBRACK] = ACTIONS(1334), - [anon_sym_COLON] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(366), - [anon_sym_STAR] = ACTIONS(343), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_PERCENT] = ACTIONS(343), - [anon_sym_EQ_EQ] = ACTIONS(343), - [anon_sym_BANG_EQ] = ACTIONS(343), - [anon_sym_AMP_AMP] = ACTIONS(343), - [anon_sym_PIPE_PIPE] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(366), - [anon_sym_LT] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(343), - [anon_sym_LT_EQ] = ACTIONS(343), - [anon_sym_if] = ACTIONS(2191), - [anon_sym_elseif] = ACTIONS(343), - [anon_sym_else] = ACTIONS(366), - [anon_sym_match] = ACTIONS(2194), - [anon_sym_EQ_GT] = ACTIONS(2197), - [anon_sym_while] = ACTIONS(2200), - [anon_sym_for] = ACTIONS(2203), - [anon_sym_asyncfor] = ACTIONS(2206), - [anon_sym_transform] = ACTIONS(2209), - [anon_sym_filter] = ACTIONS(2212), - [anon_sym_find] = ACTIONS(2215), - [anon_sym_remove] = ACTIONS(2218), - [anon_sym_reduce] = ACTIONS(2221), - [anon_sym_select] = ACTIONS(2224), - [anon_sym_insert] = ACTIONS(2227), - [anon_sym_async] = ACTIONS(2230), - [anon_sym_PIPE] = ACTIONS(410), - [anon_sym_table] = ACTIONS(2233), - [anon_sym_assert] = ACTIONS(2236), - [anon_sym_assert_equal] = ACTIONS(2236), - [anon_sym_download] = ACTIONS(2236), - [anon_sym_help] = ACTIONS(2236), - [anon_sym_length] = ACTIONS(2236), - [anon_sym_output] = ACTIONS(2236), - [anon_sym_output_error] = ACTIONS(2236), - [anon_sym_type] = ACTIONS(2236), - [anon_sym_append] = ACTIONS(2236), - [anon_sym_metadata] = ACTIONS(2236), - [anon_sym_move] = ACTIONS(2236), - [anon_sym_read] = ACTIONS(2236), - [anon_sym_workdir] = ACTIONS(2236), - [anon_sym_write] = ACTIONS(2236), - [anon_sym_from_json] = ACTIONS(2236), - [anon_sym_to_json] = ACTIONS(2236), - [anon_sym_to_string] = ACTIONS(2236), - [anon_sym_to_float] = ACTIONS(2236), - [anon_sym_bash] = ACTIONS(2236), - [anon_sym_fish] = ACTIONS(2236), - [anon_sym_raw] = ACTIONS(2236), - [anon_sym_sh] = ACTIONS(2236), - [anon_sym_zsh] = ACTIONS(2236), - [anon_sym_random] = ACTIONS(2236), - [anon_sym_random_boolean] = ACTIONS(2236), - [anon_sym_random_float] = ACTIONS(2236), - [anon_sym_random_integer] = ACTIONS(2236), - [anon_sym_columns] = ACTIONS(2236), - [anon_sym_rows] = ACTIONS(2236), - [anon_sym_reverse] = ACTIONS(2236), - }, - [56] = { - [sym_statement] = STATE(56), - [sym_expression] = STATE(853), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(776), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(710), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1823), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(366), - [aux_sym_block_repeat1] = STATE(56), - [ts_builtin_sym_end] = ACTIONS(343), - [sym_identifier] = ACTIONS(2239), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_RBRACE] = ACTIONS(343), - [anon_sym_SEMI] = ACTIONS(343), - [anon_sym_LPAREN] = ACTIONS(1669), - [anon_sym_RPAREN] = ACTIONS(343), - [sym_integer] = ACTIONS(1672), - [sym_float] = ACTIONS(1675), - [sym_string] = ACTIONS(1675), - [anon_sym_true] = ACTIONS(1678), - [anon_sym_false] = ACTIONS(1678), - [anon_sym_LBRACK] = ACTIONS(1681), - [anon_sym_COLON] = ACTIONS(343), - [anon_sym_DOT_DOT] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(366), - [anon_sym_STAR] = ACTIONS(343), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_PERCENT] = ACTIONS(343), - [anon_sym_EQ_EQ] = ACTIONS(343), - [anon_sym_BANG_EQ] = ACTIONS(343), - [anon_sym_AMP_AMP] = ACTIONS(343), - [anon_sym_PIPE_PIPE] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(366), - [anon_sym_LT] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(343), - [anon_sym_LT_EQ] = ACTIONS(343), - [anon_sym_if] = ACTIONS(1875), - [anon_sym_match] = ACTIONS(2242), - [anon_sym_EQ_GT] = ACTIONS(2245), - [anon_sym_while] = ACTIONS(2248), - [anon_sym_for] = ACTIONS(2251), - [anon_sym_asyncfor] = ACTIONS(2254), - [anon_sym_transform] = ACTIONS(2257), - [anon_sym_filter] = ACTIONS(2260), - [anon_sym_find] = ACTIONS(2263), - [anon_sym_remove] = ACTIONS(2266), - [anon_sym_reduce] = ACTIONS(2269), - [anon_sym_select] = ACTIONS(2272), - [anon_sym_insert] = ACTIONS(2275), - [anon_sym_async] = ACTIONS(2278), - [anon_sym_PIPE] = ACTIONS(410), - [anon_sym_table] = ACTIONS(2281), - [anon_sym_assert] = ACTIONS(2284), - [anon_sym_assert_equal] = ACTIONS(2284), - [anon_sym_download] = ACTIONS(2284), - [anon_sym_help] = ACTIONS(2284), - [anon_sym_length] = ACTIONS(2284), - [anon_sym_output] = ACTIONS(2284), - [anon_sym_output_error] = ACTIONS(2284), - [anon_sym_type] = ACTIONS(2284), - [anon_sym_append] = ACTIONS(2284), - [anon_sym_metadata] = ACTIONS(2284), - [anon_sym_move] = ACTIONS(2284), - [anon_sym_read] = ACTIONS(2284), - [anon_sym_workdir] = ACTIONS(2284), - [anon_sym_write] = ACTIONS(2284), - [anon_sym_from_json] = ACTIONS(2284), - [anon_sym_to_json] = ACTIONS(2284), - [anon_sym_to_string] = ACTIONS(2284), - [anon_sym_to_float] = ACTIONS(2284), - [anon_sym_bash] = ACTIONS(2284), - [anon_sym_fish] = ACTIONS(2284), - [anon_sym_raw] = ACTIONS(2284), - [anon_sym_sh] = ACTIONS(2284), - [anon_sym_zsh] = ACTIONS(2284), - [anon_sym_random] = ACTIONS(2284), - [anon_sym_random_boolean] = ACTIONS(2284), - [anon_sym_random_float] = ACTIONS(2284), - [anon_sym_random_integer] = ACTIONS(2284), - [anon_sym_columns] = ACTIONS(2284), - [anon_sym_rows] = ACTIONS(2284), - [anon_sym_reverse] = ACTIONS(2284), - }, - [57] = { - [sym_statement] = STATE(56), - [sym_expression] = STATE(853), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(776), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(710), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1823), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(366), - [aux_sym_block_repeat1] = STATE(56), - [ts_builtin_sym_end] = ACTIONS(419), - [sym_identifier] = ACTIONS(2287), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1783), - [anon_sym_RBRACE] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_RPAREN] = ACTIONS(419), - [sym_integer] = ACTIONS(1789), - [sym_float] = ACTIONS(1792), - [sym_string] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1795), - [anon_sym_false] = ACTIONS(1795), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_COLON] = ACTIONS(419), - [anon_sym_DOT_DOT] = ACTIONS(419), - [anon_sym_PLUS] = ACTIONS(419), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_STAR] = ACTIONS(419), - [anon_sym_SLASH] = ACTIONS(419), - [anon_sym_PERCENT] = ACTIONS(419), - [anon_sym_EQ_EQ] = ACTIONS(419), - [anon_sym_BANG_EQ] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(442), - [anon_sym_LT] = ACTIONS(442), - [anon_sym_GT_EQ] = ACTIONS(419), - [anon_sym_LT_EQ] = ACTIONS(419), - [anon_sym_if] = ACTIONS(1732), - [anon_sym_match] = ACTIONS(2290), - [anon_sym_EQ_GT] = ACTIONS(2293), - [anon_sym_while] = ACTIONS(2296), - [anon_sym_for] = ACTIONS(2299), - [anon_sym_asyncfor] = ACTIONS(2302), - [anon_sym_transform] = ACTIONS(2305), - [anon_sym_filter] = ACTIONS(2308), - [anon_sym_find] = ACTIONS(2311), - [anon_sym_remove] = ACTIONS(2314), - [anon_sym_reduce] = ACTIONS(2317), - [anon_sym_select] = ACTIONS(2320), - [anon_sym_insert] = ACTIONS(2323), - [anon_sym_async] = ACTIONS(2326), - [anon_sym_PIPE] = ACTIONS(486), - [anon_sym_table] = ACTIONS(2329), - [anon_sym_assert] = ACTIONS(2332), - [anon_sym_assert_equal] = ACTIONS(2332), - [anon_sym_download] = ACTIONS(2332), - [anon_sym_help] = ACTIONS(2332), - [anon_sym_length] = ACTIONS(2332), - [anon_sym_output] = ACTIONS(2332), - [anon_sym_output_error] = ACTIONS(2332), - [anon_sym_type] = ACTIONS(2332), - [anon_sym_append] = ACTIONS(2332), - [anon_sym_metadata] = ACTIONS(2332), - [anon_sym_move] = ACTIONS(2332), - [anon_sym_read] = ACTIONS(2332), - [anon_sym_workdir] = ACTIONS(2332), - [anon_sym_write] = ACTIONS(2332), - [anon_sym_from_json] = ACTIONS(2332), - [anon_sym_to_json] = ACTIONS(2332), - [anon_sym_to_string] = ACTIONS(2332), - [anon_sym_to_float] = ACTIONS(2332), - [anon_sym_bash] = ACTIONS(2332), - [anon_sym_fish] = ACTIONS(2332), - [anon_sym_raw] = ACTIONS(2332), - [anon_sym_sh] = ACTIONS(2332), - [anon_sym_zsh] = ACTIONS(2332), - [anon_sym_random] = ACTIONS(2332), - [anon_sym_random_boolean] = ACTIONS(2332), - [anon_sym_random_float] = ACTIONS(2332), - [anon_sym_random_integer] = ACTIONS(2332), - [anon_sym_columns] = ACTIONS(2332), - [anon_sym_rows] = ACTIONS(2332), - [anon_sym_reverse] = ACTIONS(2332), - }, - [58] = { - [sym_statement] = STATE(50), - [sym_expression] = STATE(824), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(739), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(653), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [aux_sym_block_repeat1] = STATE(50), - [sym_identifier] = ACTIONS(2015), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1783), - [anon_sym_RBRACE] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_RPAREN] = ACTIONS(419), - [anon_sym_COMMA] = ACTIONS(419), - [sym_integer] = ACTIONS(1789), - [sym_float] = ACTIONS(1792), - [sym_string] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1795), - [anon_sym_false] = ACTIONS(1795), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_RBRACK] = ACTIONS(419), - [anon_sym_COLON] = ACTIONS(419), - [anon_sym_PLUS] = ACTIONS(419), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_STAR] = ACTIONS(419), - [anon_sym_SLASH] = ACTIONS(419), - [anon_sym_PERCENT] = ACTIONS(419), - [anon_sym_EQ_EQ] = ACTIONS(419), - [anon_sym_BANG_EQ] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(442), - [anon_sym_LT] = ACTIONS(442), - [anon_sym_GT_EQ] = ACTIONS(419), - [anon_sym_LT_EQ] = ACTIONS(419), - [anon_sym_if] = ACTIONS(627), - [anon_sym_match] = ACTIONS(1202), - [anon_sym_EQ_GT] = ACTIONS(2021), - [anon_sym_while] = ACTIONS(1206), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_asyncfor] = ACTIONS(1210), - [anon_sym_transform] = ACTIONS(1212), - [anon_sym_filter] = ACTIONS(1214), - [anon_sym_find] = ACTIONS(1216), - [anon_sym_remove] = ACTIONS(1218), - [anon_sym_reduce] = ACTIONS(1220), - [anon_sym_select] = ACTIONS(1222), - [anon_sym_insert] = ACTIONS(1224), - [anon_sym_async] = ACTIONS(1226), - [anon_sym_PIPE] = ACTIONS(486), - [anon_sym_table] = ACTIONS(2057), - [anon_sym_assert] = ACTIONS(2060), - [anon_sym_assert_equal] = ACTIONS(2060), - [anon_sym_download] = ACTIONS(2060), - [anon_sym_help] = ACTIONS(2060), - [anon_sym_length] = ACTIONS(2060), - [anon_sym_output] = ACTIONS(2060), - [anon_sym_output_error] = ACTIONS(2060), - [anon_sym_type] = ACTIONS(2060), - [anon_sym_append] = ACTIONS(2060), - [anon_sym_metadata] = ACTIONS(2060), - [anon_sym_move] = ACTIONS(2060), - [anon_sym_read] = ACTIONS(2060), - [anon_sym_workdir] = ACTIONS(2060), - [anon_sym_write] = ACTIONS(2060), - [anon_sym_from_json] = ACTIONS(2060), - [anon_sym_to_json] = ACTIONS(2060), - [anon_sym_to_string] = ACTIONS(2060), - [anon_sym_to_float] = ACTIONS(2060), - [anon_sym_bash] = ACTIONS(2060), - [anon_sym_fish] = ACTIONS(2060), - [anon_sym_raw] = ACTIONS(2060), - [anon_sym_sh] = ACTIONS(2060), - [anon_sym_zsh] = ACTIONS(2060), - [anon_sym_random] = ACTIONS(2060), - [anon_sym_random_boolean] = ACTIONS(2060), - [anon_sym_random_float] = ACTIONS(2060), - [anon_sym_random_integer] = ACTIONS(2060), - [anon_sym_columns] = ACTIONS(2060), - [anon_sym_rows] = ACTIONS(2060), - [anon_sym_reverse] = ACTIONS(2060), - }, - [59] = { - [sym_statement] = STATE(59), - [sym_expression] = STATE(888), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(822), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(787), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(59), - [ts_builtin_sym_end] = ACTIONS(343), - [sym_identifier] = ACTIONS(2335), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_RBRACE] = ACTIONS(343), - [anon_sym_SEMI] = ACTIONS(343), - [anon_sym_LPAREN] = ACTIONS(1669), - [anon_sym_RPAREN] = ACTIONS(343), - [sym_integer] = ACTIONS(1672), - [sym_float] = ACTIONS(1675), - [sym_string] = ACTIONS(1675), - [anon_sym_true] = ACTIONS(1678), - [anon_sym_false] = ACTIONS(1678), - [anon_sym_LBRACK] = ACTIONS(1681), - [anon_sym_COLON] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(366), - [anon_sym_STAR] = ACTIONS(343), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_PERCENT] = ACTIONS(343), - [anon_sym_EQ_EQ] = ACTIONS(343), - [anon_sym_BANG_EQ] = ACTIONS(343), - [anon_sym_AMP_AMP] = ACTIONS(343), - [anon_sym_PIPE_PIPE] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(366), - [anon_sym_LT] = ACTIONS(366), - [anon_sym_GT_EQ] = ACTIONS(343), - [anon_sym_LT_EQ] = ACTIONS(343), - [anon_sym_if] = ACTIONS(2191), - [anon_sym_match] = ACTIONS(2338), - [anon_sym_EQ_GT] = ACTIONS(2341), - [anon_sym_while] = ACTIONS(2344), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_asyncfor] = ACTIONS(2350), - [anon_sym_transform] = ACTIONS(2353), - [anon_sym_filter] = ACTIONS(2356), - [anon_sym_find] = ACTIONS(2359), - [anon_sym_remove] = ACTIONS(2362), - [anon_sym_reduce] = ACTIONS(2365), - [anon_sym_select] = ACTIONS(2368), - [anon_sym_insert] = ACTIONS(2371), - [anon_sym_async] = ACTIONS(2374), - [anon_sym_PIPE] = ACTIONS(410), - [anon_sym_table] = ACTIONS(2377), - [anon_sym_assert] = ACTIONS(2380), - [anon_sym_assert_equal] = ACTIONS(2380), - [anon_sym_download] = ACTIONS(2380), - [anon_sym_help] = ACTIONS(2380), - [anon_sym_length] = ACTIONS(2380), - [anon_sym_output] = ACTIONS(2380), - [anon_sym_output_error] = ACTIONS(2380), - [anon_sym_type] = ACTIONS(2380), - [anon_sym_append] = ACTIONS(2380), - [anon_sym_metadata] = ACTIONS(2380), - [anon_sym_move] = ACTIONS(2380), - [anon_sym_read] = ACTIONS(2380), - [anon_sym_workdir] = ACTIONS(2380), - [anon_sym_write] = ACTIONS(2380), - [anon_sym_from_json] = ACTIONS(2380), - [anon_sym_to_json] = ACTIONS(2380), - [anon_sym_to_string] = ACTIONS(2380), - [anon_sym_to_float] = ACTIONS(2380), - [anon_sym_bash] = ACTIONS(2380), - [anon_sym_fish] = ACTIONS(2380), - [anon_sym_raw] = ACTIONS(2380), - [anon_sym_sh] = ACTIONS(2380), - [anon_sym_zsh] = ACTIONS(2380), - [anon_sym_random] = ACTIONS(2380), - [anon_sym_random_boolean] = ACTIONS(2380), - [anon_sym_random_float] = ACTIONS(2380), - [anon_sym_random_integer] = ACTIONS(2380), - [anon_sym_columns] = ACTIONS(2380), - [anon_sym_rows] = ACTIONS(2380), - [anon_sym_reverse] = ACTIONS(2380), - }, - [60] = { - [sym_statement] = STATE(37), - [sym_expression] = STATE(756), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(657), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(627), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1752), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(338), - [aux_sym_block_repeat1] = STATE(37), - [sym_identifier] = ACTIONS(1780), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_COMMA] = ACTIONS(419), - [sym_integer] = ACTIONS(11), - [sym_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(419), - [anon_sym_DOT_DOT] = ACTIONS(419), - [anon_sym_PLUS] = ACTIONS(419), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_STAR] = ACTIONS(419), - [anon_sym_SLASH] = ACTIONS(419), - [anon_sym_PERCENT] = ACTIONS(419), - [anon_sym_EQ_EQ] = ACTIONS(419), - [anon_sym_BANG_EQ] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(442), - [anon_sym_LT] = ACTIONS(442), - [anon_sym_GT_EQ] = ACTIONS(419), - [anon_sym_LT_EQ] = ACTIONS(419), - [anon_sym_if] = ACTIONS(245), - [anon_sym_match] = ACTIONS(881), - [anon_sym_EQ_GT] = ACTIONS(883), - [anon_sym_while] = ACTIONS(885), - [anon_sym_for] = ACTIONS(887), - [anon_sym_asyncfor] = ACTIONS(889), - [anon_sym_transform] = ACTIONS(891), - [anon_sym_filter] = ACTIONS(893), - [anon_sym_find] = ACTIONS(895), - [anon_sym_remove] = ACTIONS(897), - [anon_sym_reduce] = ACTIONS(899), - [anon_sym_select] = ACTIONS(901), - [anon_sym_insert] = ACTIONS(903), - [anon_sym_async] = ACTIONS(905), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(907), - [anon_sym_assert] = ACTIONS(909), - [anon_sym_assert_equal] = ACTIONS(909), - [anon_sym_download] = ACTIONS(909), - [anon_sym_help] = ACTIONS(909), - [anon_sym_length] = ACTIONS(909), - [anon_sym_output] = ACTIONS(909), - [anon_sym_output_error] = ACTIONS(909), - [anon_sym_type] = ACTIONS(909), - [anon_sym_append] = ACTIONS(909), - [anon_sym_metadata] = ACTIONS(909), - [anon_sym_move] = ACTIONS(909), - [anon_sym_read] = ACTIONS(909), - [anon_sym_workdir] = ACTIONS(909), - [anon_sym_write] = ACTIONS(909), - [anon_sym_from_json] = ACTIONS(909), - [anon_sym_to_json] = ACTIONS(909), - [anon_sym_to_string] = ACTIONS(909), - [anon_sym_to_float] = ACTIONS(909), - [anon_sym_bash] = ACTIONS(909), - [anon_sym_fish] = ACTIONS(909), - [anon_sym_raw] = ACTIONS(909), - [anon_sym_sh] = ACTIONS(909), - [anon_sym_zsh] = ACTIONS(909), - [anon_sym_random] = ACTIONS(909), - [anon_sym_random_boolean] = ACTIONS(909), - [anon_sym_random_float] = ACTIONS(909), - [anon_sym_random_integer] = ACTIONS(909), - [anon_sym_columns] = ACTIONS(909), - [anon_sym_rows] = ACTIONS(909), - [anon_sym_reverse] = ACTIONS(909), - }, - [61] = { - [sym_statement] = STATE(59), - [sym_expression] = STATE(888), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(822), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(787), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(59), - [ts_builtin_sym_end] = ACTIONS(419), - [sym_identifier] = ACTIONS(2385), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1783), - [anon_sym_RBRACE] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_RPAREN] = ACTIONS(419), - [sym_integer] = ACTIONS(1789), - [sym_float] = ACTIONS(1792), - [sym_string] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1795), - [anon_sym_false] = ACTIONS(1795), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_COLON] = ACTIONS(419), - [anon_sym_PLUS] = ACTIONS(419), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_STAR] = ACTIONS(419), - [anon_sym_SLASH] = ACTIONS(419), - [anon_sym_PERCENT] = ACTIONS(419), - [anon_sym_EQ_EQ] = ACTIONS(419), - [anon_sym_BANG_EQ] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(442), - [anon_sym_LT] = ACTIONS(442), - [anon_sym_GT_EQ] = ACTIONS(419), - [anon_sym_LT_EQ] = ACTIONS(419), - [anon_sym_if] = ACTIONS(2114), - [anon_sym_match] = ACTIONS(2388), - [anon_sym_EQ_GT] = ACTIONS(2391), - [anon_sym_while] = ACTIONS(2394), - [anon_sym_for] = ACTIONS(2397), - [anon_sym_asyncfor] = ACTIONS(2400), - [anon_sym_transform] = ACTIONS(2403), - [anon_sym_filter] = ACTIONS(2406), - [anon_sym_find] = ACTIONS(2409), - [anon_sym_remove] = ACTIONS(2412), - [anon_sym_reduce] = ACTIONS(2415), - [anon_sym_select] = ACTIONS(2418), - [anon_sym_insert] = ACTIONS(2421), - [anon_sym_async] = ACTIONS(2424), - [anon_sym_PIPE] = ACTIONS(486), - [anon_sym_table] = ACTIONS(2427), - [anon_sym_assert] = ACTIONS(2430), - [anon_sym_assert_equal] = ACTIONS(2430), - [anon_sym_download] = ACTIONS(2430), - [anon_sym_help] = ACTIONS(2430), - [anon_sym_length] = ACTIONS(2430), - [anon_sym_output] = ACTIONS(2430), - [anon_sym_output_error] = ACTIONS(2430), - [anon_sym_type] = ACTIONS(2430), - [anon_sym_append] = ACTIONS(2430), - [anon_sym_metadata] = ACTIONS(2430), - [anon_sym_move] = ACTIONS(2430), - [anon_sym_read] = ACTIONS(2430), - [anon_sym_workdir] = ACTIONS(2430), - [anon_sym_write] = ACTIONS(2430), - [anon_sym_from_json] = ACTIONS(2430), - [anon_sym_to_json] = ACTIONS(2430), - [anon_sym_to_string] = ACTIONS(2430), - [anon_sym_to_float] = ACTIONS(2430), - [anon_sym_bash] = ACTIONS(2430), - [anon_sym_fish] = ACTIONS(2430), - [anon_sym_raw] = ACTIONS(2430), - [anon_sym_sh] = ACTIONS(2430), - [anon_sym_zsh] = ACTIONS(2430), - [anon_sym_random] = ACTIONS(2430), - [anon_sym_random_boolean] = ACTIONS(2430), - [anon_sym_random_float] = ACTIONS(2430), - [anon_sym_random_integer] = ACTIONS(2430), - [anon_sym_columns] = ACTIONS(2430), - [anon_sym_rows] = ACTIONS(2430), - [anon_sym_reverse] = ACTIONS(2430), - }, - [62] = { - [sym_block] = STATE(624), - [sym_statement] = STATE(27), - [sym_expression] = STATE(663), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(631), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(637), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(1998), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(296), - [aux_sym_block_repeat1] = STATE(27), - [sym_identifier] = ACTIONS(55), + [sym_block] = STATE(431), + [sym_statement] = STATE(26), + [sym_expression] = STATE(448), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(414), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1085), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(203), + [aux_sym_block_repeat1] = STATE(26), + [sym_identifier] = ACTIONS(223), [sym__comment] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(57), [anon_sym_LPAREN] = ACTIONS(59), @@ -13559,213 +10977,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(65), [anon_sym_false] = ACTIONS(65), [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(311), - [anon_sym_match] = ACTIONS(313), - [anon_sym_EQ_GT] = ACTIONS(315), - [anon_sym_while] = ACTIONS(317), - [anon_sym_for] = ACTIONS(319), - [anon_sym_asyncfor] = ACTIONS(321), - [anon_sym_transform] = ACTIONS(323), - [anon_sym_filter] = ACTIONS(325), - [anon_sym_find] = ACTIONS(327), - [anon_sym_remove] = ACTIONS(329), - [anon_sym_reduce] = ACTIONS(331), - [anon_sym_select] = ACTIONS(333), - [anon_sym_insert] = ACTIONS(335), - [anon_sym_async] = ACTIONS(337), + [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(227), + [anon_sym_match] = ACTIONS(229), + [anon_sym_EQ_GT] = ACTIONS(231), + [anon_sym_while] = ACTIONS(233), + [anon_sym_for] = ACTIONS(235), + [anon_sym_asyncfor] = ACTIONS(237), + [anon_sym_transform] = ACTIONS(239), + [anon_sym_filter] = ACTIONS(241), + [anon_sym_find] = ACTIONS(243), + [anon_sym_remove] = ACTIONS(245), + [anon_sym_reduce] = ACTIONS(247), + [anon_sym_select] = ACTIONS(249), + [anon_sym_insert] = ACTIONS(251), + [anon_sym_async] = ACTIONS(253), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(339), - [anon_sym_assert] = ACTIONS(341), - [anon_sym_assert_equal] = ACTIONS(341), - [anon_sym_download] = ACTIONS(341), - [anon_sym_help] = ACTIONS(341), - [anon_sym_length] = ACTIONS(341), - [anon_sym_output] = ACTIONS(341), - [anon_sym_output_error] = ACTIONS(341), - [anon_sym_type] = ACTIONS(341), - [anon_sym_append] = ACTIONS(341), - [anon_sym_metadata] = ACTIONS(341), - [anon_sym_move] = ACTIONS(341), - [anon_sym_read] = ACTIONS(341), - [anon_sym_workdir] = ACTIONS(341), - [anon_sym_write] = ACTIONS(341), - [anon_sym_from_json] = ACTIONS(341), - [anon_sym_to_json] = ACTIONS(341), - [anon_sym_to_string] = ACTIONS(341), - [anon_sym_to_float] = ACTIONS(341), - [anon_sym_bash] = ACTIONS(341), - [anon_sym_fish] = ACTIONS(341), - [anon_sym_raw] = ACTIONS(341), - [anon_sym_sh] = ACTIONS(341), - [anon_sym_zsh] = ACTIONS(341), - [anon_sym_random] = ACTIONS(341), - [anon_sym_random_boolean] = ACTIONS(341), - [anon_sym_random_float] = ACTIONS(341), - [anon_sym_random_integer] = ACTIONS(341), - [anon_sym_columns] = ACTIONS(341), - [anon_sym_rows] = ACTIONS(341), - [anon_sym_reverse] = ACTIONS(341), + [anon_sym_table] = ACTIONS(255), + [anon_sym_assert] = ACTIONS(257), + [anon_sym_assert_equal] = ACTIONS(257), + [anon_sym_download] = ACTIONS(257), + [anon_sym_help] = ACTIONS(257), + [anon_sym_length] = ACTIONS(257), + [anon_sym_output] = ACTIONS(257), + [anon_sym_output_error] = ACTIONS(257), + [anon_sym_type] = ACTIONS(257), + [anon_sym_append] = ACTIONS(257), + [anon_sym_metadata] = ACTIONS(257), + [anon_sym_move] = ACTIONS(257), + [anon_sym_read] = ACTIONS(257), + [anon_sym_workdir] = ACTIONS(257), + [anon_sym_write] = ACTIONS(257), + [anon_sym_from_json] = ACTIONS(257), + [anon_sym_to_json] = ACTIONS(257), + [anon_sym_to_string] = ACTIONS(257), + [anon_sym_to_float] = ACTIONS(257), + [anon_sym_bash] = ACTIONS(257), + [anon_sym_fish] = ACTIONS(257), + [anon_sym_raw] = ACTIONS(257), + [anon_sym_sh] = ACTIONS(257), + [anon_sym_zsh] = ACTIONS(257), + [anon_sym_random] = ACTIONS(257), + [anon_sym_random_boolean] = ACTIONS(257), + [anon_sym_random_float] = ACTIONS(257), + [anon_sym_random_integer] = ACTIONS(257), + [anon_sym_columns] = ACTIONS(257), + [anon_sym_rows] = ACTIONS(257), + [anon_sym_reverse] = ACTIONS(257), }, - [63] = { - [sym_block] = STATE(1016), - [sym_statement] = STATE(358), - [sym_expression] = STATE(859), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(754), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(1023), - [sym_if_else] = STATE(1023), - [sym_if] = STATE(985), - [sym_match] = STATE(1023), - [sym_while] = STATE(1023), - [sym_for] = STATE(1023), - [sym_transform] = STATE(1023), - [sym_filter] = STATE(1023), - [sym_find] = STATE(1023), - [sym_remove] = STATE(1023), - [sym_reduce] = STATE(1023), - [sym_select] = STATE(1023), - [sym_insert] = STATE(1023), - [sym_async] = STATE(1023), - [sym_identifier_list] = STATE(1841), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(315), - [aux_sym_block_repeat1] = STATE(358), - [sym_identifier] = ACTIONS(1566), + [56] = { + [sym_block] = STATE(499), + [sym_statement] = STATE(32), + [sym_expression] = STATE(516), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(433), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [aux_sym_block_repeat1] = STATE(32), + [sym_identifier] = ACTIONS(867), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(1570), - [anon_sym_match] = ACTIONS(1572), - [anon_sym_EQ_GT] = ACTIONS(631), - [anon_sym_while] = ACTIONS(1574), - [anon_sym_for] = ACTIONS(1576), - [anon_sym_asyncfor] = ACTIONS(1578), - [anon_sym_transform] = ACTIONS(1580), - [anon_sym_filter] = ACTIONS(1582), - [anon_sym_find] = ACTIONS(1584), - [anon_sym_remove] = ACTIONS(1586), - [anon_sym_reduce] = ACTIONS(1588), - [anon_sym_select] = ACTIONS(1590), - [anon_sym_insert] = ACTIONS(651), - [anon_sym_async] = ACTIONS(1592), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(655), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_assert_equal] = ACTIONS(657), - [anon_sym_download] = ACTIONS(657), - [anon_sym_help] = ACTIONS(657), - [anon_sym_length] = ACTIONS(657), - [anon_sym_output] = ACTIONS(657), - [anon_sym_output_error] = ACTIONS(657), - [anon_sym_type] = ACTIONS(657), - [anon_sym_append] = ACTIONS(657), - [anon_sym_metadata] = ACTIONS(657), - [anon_sym_move] = ACTIONS(657), - [anon_sym_read] = ACTIONS(657), - [anon_sym_workdir] = ACTIONS(657), - [anon_sym_write] = ACTIONS(657), - [anon_sym_from_json] = ACTIONS(657), - [anon_sym_to_json] = ACTIONS(657), - [anon_sym_to_string] = ACTIONS(657), - [anon_sym_to_float] = ACTIONS(657), - [anon_sym_bash] = ACTIONS(657), - [anon_sym_fish] = ACTIONS(657), - [anon_sym_raw] = ACTIONS(657), - [anon_sym_sh] = ACTIONS(657), - [anon_sym_zsh] = ACTIONS(657), - [anon_sym_random] = ACTIONS(657), - [anon_sym_random_boolean] = ACTIONS(657), - [anon_sym_random_float] = ACTIONS(657), - [anon_sym_random_integer] = ACTIONS(657), - [anon_sym_columns] = ACTIONS(657), - [anon_sym_rows] = ACTIONS(657), - [anon_sym_reverse] = ACTIONS(657), - }, - [64] = { - [sym_block] = STATE(1647), - [sym_statement] = STATE(371), - [sym_expression] = STATE(934), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(842), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(983), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [aux_sym_block_repeat1] = STATE(371), - [sym_identifier] = ACTIONS(2162), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2164), + [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -13773,638 +11084,103 @@ 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(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(1570), - [anon_sym_match] = ACTIONS(2166), - [anon_sym_EQ_GT] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(2168), - [anon_sym_for] = ACTIONS(2170), - [anon_sym_asyncfor] = ACTIONS(2172), - [anon_sym_transform] = ACTIONS(2174), - [anon_sym_filter] = ACTIONS(2176), - [anon_sym_find] = ACTIONS(2178), - [anon_sym_remove] = ACTIONS(2180), - [anon_sym_reduce] = ACTIONS(2182), - [anon_sym_select] = ACTIONS(2184), - [anon_sym_insert] = ACTIONS(1224), - [anon_sym_async] = ACTIONS(2186), + [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(227), + [anon_sym_match] = ACTIONS(871), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(873), + [anon_sym_for] = ACTIONS(875), + [anon_sym_asyncfor] = ACTIONS(877), + [anon_sym_transform] = ACTIONS(879), + [anon_sym_filter] = ACTIONS(881), + [anon_sym_find] = ACTIONS(883), + [anon_sym_remove] = ACTIONS(885), + [anon_sym_reduce] = ACTIONS(887), + [anon_sym_select] = ACTIONS(889), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(891), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1228), - [anon_sym_assert] = ACTIONS(1230), - [anon_sym_assert_equal] = ACTIONS(1230), - [anon_sym_download] = ACTIONS(1230), - [anon_sym_help] = ACTIONS(1230), - [anon_sym_length] = ACTIONS(1230), - [anon_sym_output] = ACTIONS(1230), - [anon_sym_output_error] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_append] = ACTIONS(1230), - [anon_sym_metadata] = ACTIONS(1230), - [anon_sym_move] = ACTIONS(1230), - [anon_sym_read] = ACTIONS(1230), - [anon_sym_workdir] = ACTIONS(1230), - [anon_sym_write] = ACTIONS(1230), - [anon_sym_from_json] = ACTIONS(1230), - [anon_sym_to_json] = ACTIONS(1230), - [anon_sym_to_string] = ACTIONS(1230), - [anon_sym_to_float] = ACTIONS(1230), - [anon_sym_bash] = ACTIONS(1230), - [anon_sym_fish] = ACTIONS(1230), - [anon_sym_raw] = ACTIONS(1230), - [anon_sym_sh] = ACTIONS(1230), - [anon_sym_zsh] = ACTIONS(1230), - [anon_sym_random] = ACTIONS(1230), - [anon_sym_random_boolean] = ACTIONS(1230), - [anon_sym_random_float] = ACTIONS(1230), - [anon_sym_random_integer] = ACTIONS(1230), - [anon_sym_columns] = ACTIONS(1230), - [anon_sym_rows] = ACTIONS(1230), - [anon_sym_reverse] = ACTIONS(1230), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, - [65] = { - [sym_block] = STATE(1643), - [sym_statement] = STATE(354), - [sym_expression] = STATE(859), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(754), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(1023), - [sym_if_else] = STATE(1023), - [sym_if] = STATE(985), - [sym_match] = STATE(1023), - [sym_while] = STATE(1023), - [sym_for] = STATE(1023), - [sym_transform] = STATE(1023), - [sym_filter] = STATE(1023), - [sym_find] = STATE(1023), - [sym_remove] = STATE(1023), - [sym_reduce] = STATE(1023), - [sym_select] = STATE(1023), - [sym_insert] = STATE(1023), - [sym_async] = STATE(1023), - [sym_identifier_list] = STATE(1841), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(315), - [aux_sym_block_repeat1] = STATE(354), - [sym_identifier] = ACTIONS(1566), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2433), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(1570), - [anon_sym_match] = ACTIONS(1572), - [anon_sym_EQ_GT] = ACTIONS(631), - [anon_sym_while] = ACTIONS(1574), - [anon_sym_for] = ACTIONS(1576), - [anon_sym_asyncfor] = ACTIONS(1578), - [anon_sym_transform] = ACTIONS(1580), - [anon_sym_filter] = ACTIONS(1582), - [anon_sym_find] = ACTIONS(1584), - [anon_sym_remove] = ACTIONS(1586), - [anon_sym_reduce] = ACTIONS(1588), - [anon_sym_select] = ACTIONS(1590), - [anon_sym_insert] = ACTIONS(651), - [anon_sym_async] = ACTIONS(1592), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(655), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_assert_equal] = ACTIONS(657), - [anon_sym_download] = ACTIONS(657), - [anon_sym_help] = ACTIONS(657), - [anon_sym_length] = ACTIONS(657), - [anon_sym_output] = ACTIONS(657), - [anon_sym_output_error] = ACTIONS(657), - [anon_sym_type] = ACTIONS(657), - [anon_sym_append] = ACTIONS(657), - [anon_sym_metadata] = ACTIONS(657), - [anon_sym_move] = ACTIONS(657), - [anon_sym_read] = ACTIONS(657), - [anon_sym_workdir] = ACTIONS(657), - [anon_sym_write] = ACTIONS(657), - [anon_sym_from_json] = ACTIONS(657), - [anon_sym_to_json] = ACTIONS(657), - [anon_sym_to_string] = ACTIONS(657), - [anon_sym_to_float] = ACTIONS(657), - [anon_sym_bash] = ACTIONS(657), - [anon_sym_fish] = ACTIONS(657), - [anon_sym_raw] = ACTIONS(657), - [anon_sym_sh] = ACTIONS(657), - [anon_sym_zsh] = ACTIONS(657), - [anon_sym_random] = ACTIONS(657), - [anon_sym_random_boolean] = ACTIONS(657), - [anon_sym_random_float] = ACTIONS(657), - [anon_sym_random_integer] = ACTIONS(657), - [anon_sym_columns] = ACTIONS(657), - [anon_sym_rows] = ACTIONS(657), - [anon_sym_reverse] = ACTIONS(657), - }, - [66] = { - [sym_block] = STATE(1654), - [sym_statement] = STATE(371), - [sym_expression] = STATE(934), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(842), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(983), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [aux_sym_block_repeat1] = STATE(371), - [sym_identifier] = ACTIONS(2162), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2164), - [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(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(1570), - [anon_sym_match] = ACTIONS(2166), - [anon_sym_EQ_GT] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(2168), - [anon_sym_for] = ACTIONS(2170), - [anon_sym_asyncfor] = ACTIONS(2172), - [anon_sym_transform] = ACTIONS(2174), - [anon_sym_filter] = ACTIONS(2176), - [anon_sym_find] = ACTIONS(2178), - [anon_sym_remove] = ACTIONS(2180), - [anon_sym_reduce] = ACTIONS(2182), - [anon_sym_select] = ACTIONS(2184), - [anon_sym_insert] = ACTIONS(1224), - [anon_sym_async] = ACTIONS(2186), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1228), - [anon_sym_assert] = ACTIONS(1230), - [anon_sym_assert_equal] = ACTIONS(1230), - [anon_sym_download] = ACTIONS(1230), - [anon_sym_help] = ACTIONS(1230), - [anon_sym_length] = ACTIONS(1230), - [anon_sym_output] = ACTIONS(1230), - [anon_sym_output_error] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_append] = ACTIONS(1230), - [anon_sym_metadata] = ACTIONS(1230), - [anon_sym_move] = ACTIONS(1230), - [anon_sym_read] = ACTIONS(1230), - [anon_sym_workdir] = ACTIONS(1230), - [anon_sym_write] = ACTIONS(1230), - [anon_sym_from_json] = ACTIONS(1230), - [anon_sym_to_json] = ACTIONS(1230), - [anon_sym_to_string] = ACTIONS(1230), - [anon_sym_to_float] = ACTIONS(1230), - [anon_sym_bash] = ACTIONS(1230), - [anon_sym_fish] = ACTIONS(1230), - [anon_sym_raw] = ACTIONS(1230), - [anon_sym_sh] = ACTIONS(1230), - [anon_sym_zsh] = ACTIONS(1230), - [anon_sym_random] = ACTIONS(1230), - [anon_sym_random_boolean] = ACTIONS(1230), - [anon_sym_random_float] = ACTIONS(1230), - [anon_sym_random_integer] = ACTIONS(1230), - [anon_sym_columns] = ACTIONS(1230), - [anon_sym_rows] = ACTIONS(1230), - [anon_sym_reverse] = ACTIONS(1230), - }, - [67] = { - [sym_block] = STATE(1641), - [sym_statement] = STATE(354), - [sym_expression] = STATE(859), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(754), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(1023), - [sym_if_else] = STATE(1023), - [sym_if] = STATE(985), - [sym_match] = STATE(1023), - [sym_while] = STATE(1023), - [sym_for] = STATE(1023), - [sym_transform] = STATE(1023), - [sym_filter] = STATE(1023), - [sym_find] = STATE(1023), - [sym_remove] = STATE(1023), - [sym_reduce] = STATE(1023), - [sym_select] = STATE(1023), - [sym_insert] = STATE(1023), - [sym_async] = STATE(1023), - [sym_identifier_list] = STATE(1841), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(315), - [aux_sym_block_repeat1] = STATE(354), - [sym_identifier] = ACTIONS(1566), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2433), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(1570), - [anon_sym_match] = ACTIONS(1572), - [anon_sym_EQ_GT] = ACTIONS(631), - [anon_sym_while] = ACTIONS(1574), - [anon_sym_for] = ACTIONS(1576), - [anon_sym_asyncfor] = ACTIONS(1578), - [anon_sym_transform] = ACTIONS(1580), - [anon_sym_filter] = ACTIONS(1582), - [anon_sym_find] = ACTIONS(1584), - [anon_sym_remove] = ACTIONS(1586), - [anon_sym_reduce] = ACTIONS(1588), - [anon_sym_select] = ACTIONS(1590), - [anon_sym_insert] = ACTIONS(651), - [anon_sym_async] = ACTIONS(1592), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(655), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_assert_equal] = ACTIONS(657), - [anon_sym_download] = ACTIONS(657), - [anon_sym_help] = ACTIONS(657), - [anon_sym_length] = ACTIONS(657), - [anon_sym_output] = ACTIONS(657), - [anon_sym_output_error] = ACTIONS(657), - [anon_sym_type] = ACTIONS(657), - [anon_sym_append] = ACTIONS(657), - [anon_sym_metadata] = ACTIONS(657), - [anon_sym_move] = ACTIONS(657), - [anon_sym_read] = ACTIONS(657), - [anon_sym_workdir] = ACTIONS(657), - [anon_sym_write] = ACTIONS(657), - [anon_sym_from_json] = ACTIONS(657), - [anon_sym_to_json] = ACTIONS(657), - [anon_sym_to_string] = ACTIONS(657), - [anon_sym_to_float] = ACTIONS(657), - [anon_sym_bash] = ACTIONS(657), - [anon_sym_fish] = ACTIONS(657), - [anon_sym_raw] = ACTIONS(657), - [anon_sym_sh] = ACTIONS(657), - [anon_sym_zsh] = ACTIONS(657), - [anon_sym_random] = ACTIONS(657), - [anon_sym_random_boolean] = ACTIONS(657), - [anon_sym_random_float] = ACTIONS(657), - [anon_sym_random_integer] = ACTIONS(657), - [anon_sym_columns] = ACTIONS(657), - [anon_sym_rows] = ACTIONS(657), - [anon_sym_reverse] = ACTIONS(657), - }, - [68] = { - [sym_block] = STATE(729), - [sym_statement] = STATE(35), - [sym_expression] = STATE(701), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(706), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(582), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1866), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(320), - [aux_sym_block_repeat1] = STATE(35), - [sym_identifier] = ACTIONS(149), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(197), - [anon_sym_match] = ACTIONS(497), - [anon_sym_EQ_GT] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_asyncfor] = ACTIONS(505), - [anon_sym_transform] = ACTIONS(507), - [anon_sym_filter] = ACTIONS(509), - [anon_sym_find] = ACTIONS(511), - [anon_sym_remove] = ACTIONS(513), - [anon_sym_reduce] = ACTIONS(515), - [anon_sym_select] = ACTIONS(517), - [anon_sym_insert] = ACTIONS(519), - [anon_sym_async] = ACTIONS(521), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(523), - [anon_sym_assert] = ACTIONS(525), - [anon_sym_assert_equal] = ACTIONS(525), - [anon_sym_download] = ACTIONS(525), - [anon_sym_help] = ACTIONS(525), - [anon_sym_length] = ACTIONS(525), - [anon_sym_output] = ACTIONS(525), - [anon_sym_output_error] = ACTIONS(525), - [anon_sym_type] = ACTIONS(525), - [anon_sym_append] = ACTIONS(525), - [anon_sym_metadata] = ACTIONS(525), - [anon_sym_move] = ACTIONS(525), - [anon_sym_read] = ACTIONS(525), - [anon_sym_workdir] = ACTIONS(525), - [anon_sym_write] = ACTIONS(525), - [anon_sym_from_json] = ACTIONS(525), - [anon_sym_to_json] = ACTIONS(525), - [anon_sym_to_string] = ACTIONS(525), - [anon_sym_to_float] = ACTIONS(525), - [anon_sym_bash] = ACTIONS(525), - [anon_sym_fish] = ACTIONS(525), - [anon_sym_raw] = ACTIONS(525), - [anon_sym_sh] = ACTIONS(525), - [anon_sym_zsh] = ACTIONS(525), - [anon_sym_random] = ACTIONS(525), - [anon_sym_random_boolean] = ACTIONS(525), - [anon_sym_random_float] = ACTIONS(525), - [anon_sym_random_integer] = ACTIONS(525), - [anon_sym_columns] = ACTIONS(525), - [anon_sym_rows] = ACTIONS(525), - [anon_sym_reverse] = ACTIONS(525), - }, - [69] = { - [sym_block] = STATE(1018), - [sym_statement] = STATE(352), - [sym_expression] = STATE(877), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(782), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(1023), - [sym_if_else] = STATE(1023), - [sym_if] = STATE(978), - [sym_match] = STATE(1023), - [sym_while] = STATE(1023), - [sym_for] = STATE(1023), - [sym_transform] = STATE(1023), - [sym_filter] = STATE(1023), - [sym_find] = STATE(1023), - [sym_remove] = STATE(1023), - [sym_reduce] = STATE(1023), - [sym_select] = STATE(1023), - [sym_insert] = STATE(1023), - [sym_async] = STATE(1023), - [sym_identifier_list] = STATE(1926), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(351), - [aux_sym_block_repeat1] = STATE(352), - [sym_identifier] = ACTIONS(1639), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(1641), - [anon_sym_EQ_GT] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1643), - [anon_sym_for] = ACTIONS(1645), - [anon_sym_asyncfor] = ACTIONS(1647), - [anon_sym_transform] = ACTIONS(1649), - [anon_sym_filter] = ACTIONS(1651), - [anon_sym_find] = ACTIONS(1653), - [anon_sym_remove] = ACTIONS(1655), - [anon_sym_reduce] = ACTIONS(1657), - [anon_sym_select] = ACTIONS(1659), - [anon_sym_insert] = ACTIONS(1308), - [anon_sym_async] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1312), - [anon_sym_assert] = ACTIONS(1314), - [anon_sym_assert_equal] = ACTIONS(1314), - [anon_sym_download] = ACTIONS(1314), - [anon_sym_help] = ACTIONS(1314), - [anon_sym_length] = ACTIONS(1314), - [anon_sym_output] = ACTIONS(1314), - [anon_sym_output_error] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_append] = ACTIONS(1314), - [anon_sym_metadata] = ACTIONS(1314), - [anon_sym_move] = ACTIONS(1314), - [anon_sym_read] = ACTIONS(1314), - [anon_sym_workdir] = ACTIONS(1314), - [anon_sym_write] = ACTIONS(1314), - [anon_sym_from_json] = ACTIONS(1314), - [anon_sym_to_json] = ACTIONS(1314), - [anon_sym_to_string] = ACTIONS(1314), - [anon_sym_to_float] = ACTIONS(1314), - [anon_sym_bash] = ACTIONS(1314), - [anon_sym_fish] = ACTIONS(1314), - [anon_sym_raw] = ACTIONS(1314), - [anon_sym_sh] = ACTIONS(1314), - [anon_sym_zsh] = ACTIONS(1314), - [anon_sym_random] = ACTIONS(1314), - [anon_sym_random_boolean] = ACTIONS(1314), - [anon_sym_random_float] = ACTIONS(1314), - [anon_sym_random_integer] = ACTIONS(1314), - [anon_sym_columns] = ACTIONS(1314), - [anon_sym_rows] = ACTIONS(1314), - [anon_sym_reverse] = ACTIONS(1314), - }, - [70] = { - [sym_block] = STATE(1061), - [sym_statement] = STATE(381), - [sym_expression] = STATE(925), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(867), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(980), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(381), + [57] = { + [sym_block] = STATE(623), + [sym_statement] = STATE(226), + [sym_expression] = STATE(535), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(561), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [aux_sym_block_repeat1] = STATE(226), [sym_identifier] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(7), @@ -14415,20 +11191,20 @@ 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(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), + [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(19), [anon_sym_match] = ACTIONS(21), [anon_sym_EQ_GT] = ACTIONS(23), @@ -14476,471 +11252,1862 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_rows] = ACTIONS(51), [anon_sym_reverse] = ACTIONS(51), }, - [71] = { - [sym_block] = STATE(728), - [sym_statement] = STATE(35), - [sym_expression] = STATE(701), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(706), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(582), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1866), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(320), - [aux_sym_block_repeat1] = STATE(35), - [sym_identifier] = ACTIONS(149), + [58] = { + [sym_block] = STATE(597), + [sym_statement] = STATE(212), + [sym_expression] = STATE(460), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(598), + [sym_if_else] = STATE(598), + [sym_if] = STATE(564), + [sym_match] = STATE(598), + [sym_while] = STATE(598), + [sym_for] = STATE(598), + [sym_transform] = STATE(598), + [sym_filter] = STATE(598), + [sym_find] = STATE(598), + [sym_remove] = STATE(598), + [sym_reduce] = STATE(598), + [sym_select] = STATE(598), + [sym_insert] = STATE(598), + [sym_async] = STATE(598), + [sym_identifier_list] = STATE(1100), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(181), + [aux_sym_block_repeat1] = STATE(212), + [sym_identifier] = ACTIONS(445), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(447), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(197), - [anon_sym_match] = ACTIONS(497), - [anon_sym_EQ_GT] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_asyncfor] = ACTIONS(505), - [anon_sym_transform] = ACTIONS(507), - [anon_sym_filter] = ACTIONS(509), - [anon_sym_find] = ACTIONS(511), - [anon_sym_remove] = ACTIONS(513), - [anon_sym_reduce] = ACTIONS(515), - [anon_sym_select] = ACTIONS(517), - [anon_sym_insert] = ACTIONS(519), - [anon_sym_async] = ACTIONS(521), + [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(449), + [anon_sym_match] = ACTIONS(451), + [anon_sym_EQ_GT] = ACTIONS(123), + [anon_sym_while] = ACTIONS(453), + [anon_sym_for] = ACTIONS(455), + [anon_sym_asyncfor] = ACTIONS(457), + [anon_sym_transform] = ACTIONS(459), + [anon_sym_filter] = ACTIONS(461), + [anon_sym_find] = ACTIONS(463), + [anon_sym_remove] = ACTIONS(465), + [anon_sym_reduce] = ACTIONS(467), + [anon_sym_select] = ACTIONS(469), + [anon_sym_insert] = ACTIONS(143), + [anon_sym_async] = ACTIONS(471), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(523), - [anon_sym_assert] = ACTIONS(525), - [anon_sym_assert_equal] = ACTIONS(525), - [anon_sym_download] = ACTIONS(525), - [anon_sym_help] = ACTIONS(525), - [anon_sym_length] = ACTIONS(525), - [anon_sym_output] = ACTIONS(525), - [anon_sym_output_error] = ACTIONS(525), - [anon_sym_type] = ACTIONS(525), - [anon_sym_append] = ACTIONS(525), - [anon_sym_metadata] = ACTIONS(525), - [anon_sym_move] = ACTIONS(525), - [anon_sym_read] = ACTIONS(525), - [anon_sym_workdir] = ACTIONS(525), - [anon_sym_write] = ACTIONS(525), - [anon_sym_from_json] = ACTIONS(525), - [anon_sym_to_json] = ACTIONS(525), - [anon_sym_to_string] = ACTIONS(525), - [anon_sym_to_float] = ACTIONS(525), - [anon_sym_bash] = ACTIONS(525), - [anon_sym_fish] = ACTIONS(525), - [anon_sym_raw] = ACTIONS(525), - [anon_sym_sh] = ACTIONS(525), - [anon_sym_zsh] = ACTIONS(525), - [anon_sym_random] = ACTIONS(525), - [anon_sym_random_boolean] = ACTIONS(525), - [anon_sym_random_float] = ACTIONS(525), - [anon_sym_random_integer] = ACTIONS(525), - [anon_sym_columns] = ACTIONS(525), - [anon_sym_rows] = ACTIONS(525), - [anon_sym_reverse] = ACTIONS(525), + [anon_sym_table] = ACTIONS(147), + [anon_sym_assert] = ACTIONS(149), + [anon_sym_assert_equal] = ACTIONS(149), + [anon_sym_download] = ACTIONS(149), + [anon_sym_help] = ACTIONS(149), + [anon_sym_length] = ACTIONS(149), + [anon_sym_output] = ACTIONS(149), + [anon_sym_output_error] = ACTIONS(149), + [anon_sym_type] = ACTIONS(149), + [anon_sym_append] = ACTIONS(149), + [anon_sym_metadata] = ACTIONS(149), + [anon_sym_move] = ACTIONS(149), + [anon_sym_read] = ACTIONS(149), + [anon_sym_workdir] = ACTIONS(149), + [anon_sym_write] = ACTIONS(149), + [anon_sym_from_json] = ACTIONS(149), + [anon_sym_to_json] = ACTIONS(149), + [anon_sym_to_string] = ACTIONS(149), + [anon_sym_to_float] = ACTIONS(149), + [anon_sym_bash] = ACTIONS(149), + [anon_sym_fish] = ACTIONS(149), + [anon_sym_raw] = ACTIONS(149), + [anon_sym_sh] = ACTIONS(149), + [anon_sym_zsh] = ACTIONS(149), + [anon_sym_random] = ACTIONS(149), + [anon_sym_random_boolean] = ACTIONS(149), + [anon_sym_random_float] = ACTIONS(149), + [anon_sym_random_integer] = ACTIONS(149), + [anon_sym_columns] = ACTIONS(149), + [anon_sym_rows] = ACTIONS(149), + [anon_sym_reverse] = ACTIONS(149), + }, + [59] = { + [sym_block] = STATE(1014), + [sym_statement] = STATE(221), + [sym_expression] = STATE(547), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(571), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [aux_sym_block_repeat1] = STATE(221), + [sym_identifier] = ACTIONS(941), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1013), + [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(869), + [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(449), + [anon_sym_match] = ACTIONS(943), + [anon_sym_EQ_GT] = ACTIONS(265), + [anon_sym_while] = ACTIONS(945), + [anon_sym_for] = ACTIONS(947), + [anon_sym_asyncfor] = ACTIONS(949), + [anon_sym_transform] = ACTIONS(951), + [anon_sym_filter] = ACTIONS(953), + [anon_sym_find] = ACTIONS(955), + [anon_sym_remove] = ACTIONS(957), + [anon_sym_reduce] = ACTIONS(959), + [anon_sym_select] = ACTIONS(961), + [anon_sym_insert] = ACTIONS(285), + [anon_sym_async] = ACTIONS(963), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(289), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_assert_equal] = ACTIONS(291), + [anon_sym_download] = ACTIONS(291), + [anon_sym_help] = ACTIONS(291), + [anon_sym_length] = ACTIONS(291), + [anon_sym_output] = ACTIONS(291), + [anon_sym_output_error] = ACTIONS(291), + [anon_sym_type] = ACTIONS(291), + [anon_sym_append] = ACTIONS(291), + [anon_sym_metadata] = ACTIONS(291), + [anon_sym_move] = ACTIONS(291), + [anon_sym_read] = ACTIONS(291), + [anon_sym_workdir] = ACTIONS(291), + [anon_sym_write] = ACTIONS(291), + [anon_sym_from_json] = ACTIONS(291), + [anon_sym_to_json] = ACTIONS(291), + [anon_sym_to_string] = ACTIONS(291), + [anon_sym_to_float] = ACTIONS(291), + [anon_sym_bash] = ACTIONS(291), + [anon_sym_fish] = ACTIONS(291), + [anon_sym_raw] = ACTIONS(291), + [anon_sym_sh] = ACTIONS(291), + [anon_sym_zsh] = ACTIONS(291), + [anon_sym_random] = ACTIONS(291), + [anon_sym_random_boolean] = ACTIONS(291), + [anon_sym_random_float] = ACTIONS(291), + [anon_sym_random_integer] = ACTIONS(291), + [anon_sym_columns] = ACTIONS(291), + [anon_sym_rows] = ACTIONS(291), + [anon_sym_reverse] = ACTIONS(291), + }, + [60] = { + [sym_block] = STATE(485), + [sym_statement] = STATE(17), + [sym_expression] = STATE(402), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(348), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1104), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(17), + [sym_identifier] = ACTIONS(187), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(189), + [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(869), + [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(193), + [anon_sym_EQ_GT] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_for] = ACTIONS(199), + [anon_sym_asyncfor] = ACTIONS(201), + [anon_sym_transform] = ACTIONS(203), + [anon_sym_filter] = ACTIONS(205), + [anon_sym_find] = ACTIONS(207), + [anon_sym_remove] = ACTIONS(209), + [anon_sym_reduce] = ACTIONS(211), + [anon_sym_select] = ACTIONS(213), + [anon_sym_insert] = ACTIONS(215), + [anon_sym_async] = ACTIONS(217), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(219), + [anon_sym_assert] = ACTIONS(221), + [anon_sym_assert_equal] = ACTIONS(221), + [anon_sym_download] = ACTIONS(221), + [anon_sym_help] = ACTIONS(221), + [anon_sym_length] = ACTIONS(221), + [anon_sym_output] = ACTIONS(221), + [anon_sym_output_error] = ACTIONS(221), + [anon_sym_type] = ACTIONS(221), + [anon_sym_append] = ACTIONS(221), + [anon_sym_metadata] = ACTIONS(221), + [anon_sym_move] = ACTIONS(221), + [anon_sym_read] = ACTIONS(221), + [anon_sym_workdir] = ACTIONS(221), + [anon_sym_write] = ACTIONS(221), + [anon_sym_from_json] = ACTIONS(221), + [anon_sym_to_json] = ACTIONS(221), + [anon_sym_to_string] = ACTIONS(221), + [anon_sym_to_float] = ACTIONS(221), + [anon_sym_bash] = ACTIONS(221), + [anon_sym_fish] = ACTIONS(221), + [anon_sym_raw] = ACTIONS(221), + [anon_sym_sh] = ACTIONS(221), + [anon_sym_zsh] = ACTIONS(221), + [anon_sym_random] = ACTIONS(221), + [anon_sym_random_boolean] = ACTIONS(221), + [anon_sym_random_float] = ACTIONS(221), + [anon_sym_random_integer] = ACTIONS(221), + [anon_sym_columns] = ACTIONS(221), + [anon_sym_rows] = ACTIONS(221), + [anon_sym_reverse] = ACTIONS(221), + }, + [61] = { + [sym_block] = STATE(499), + [sym_statement] = STATE(28), + [sym_expression] = STATE(479), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(365), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1119), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(218), + [aux_sym_block_repeat1] = STATE(28), + [sym_identifier] = ACTIONS(524), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(189), + [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(869), + [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(155), + [anon_sym_match] = ACTIONS(528), + [anon_sym_EQ_GT] = ACTIONS(530), + [anon_sym_while] = ACTIONS(532), + [anon_sym_for] = ACTIONS(534), + [anon_sym_asyncfor] = ACTIONS(536), + [anon_sym_transform] = ACTIONS(538), + [anon_sym_filter] = ACTIONS(540), + [anon_sym_find] = ACTIONS(542), + [anon_sym_remove] = ACTIONS(544), + [anon_sym_reduce] = ACTIONS(546), + [anon_sym_select] = ACTIONS(548), + [anon_sym_insert] = ACTIONS(550), + [anon_sym_async] = ACTIONS(552), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(554), + [anon_sym_assert] = ACTIONS(556), + [anon_sym_assert_equal] = ACTIONS(556), + [anon_sym_download] = ACTIONS(556), + [anon_sym_help] = ACTIONS(556), + [anon_sym_length] = ACTIONS(556), + [anon_sym_output] = ACTIONS(556), + [anon_sym_output_error] = ACTIONS(556), + [anon_sym_type] = ACTIONS(556), + [anon_sym_append] = ACTIONS(556), + [anon_sym_metadata] = ACTIONS(556), + [anon_sym_move] = ACTIONS(556), + [anon_sym_read] = ACTIONS(556), + [anon_sym_workdir] = ACTIONS(556), + [anon_sym_write] = ACTIONS(556), + [anon_sym_from_json] = ACTIONS(556), + [anon_sym_to_json] = ACTIONS(556), + [anon_sym_to_string] = ACTIONS(556), + [anon_sym_to_float] = ACTIONS(556), + [anon_sym_bash] = ACTIONS(556), + [anon_sym_fish] = ACTIONS(556), + [anon_sym_raw] = ACTIONS(556), + [anon_sym_sh] = ACTIONS(556), + [anon_sym_zsh] = ACTIONS(556), + [anon_sym_random] = ACTIONS(556), + [anon_sym_random_boolean] = ACTIONS(556), + [anon_sym_random_float] = ACTIONS(556), + [anon_sym_random_integer] = ACTIONS(556), + [anon_sym_columns] = ACTIONS(556), + [anon_sym_rows] = ACTIONS(556), + [anon_sym_reverse] = ACTIONS(556), + }, + [62] = { + [sym_block] = STATE(486), + [sym_statement] = STATE(17), + [sym_expression] = STATE(402), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(348), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1104), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(17), + [sym_identifier] = ACTIONS(187), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(189), + [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(869), + [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(193), + [anon_sym_EQ_GT] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_for] = ACTIONS(199), + [anon_sym_asyncfor] = ACTIONS(201), + [anon_sym_transform] = ACTIONS(203), + [anon_sym_filter] = ACTIONS(205), + [anon_sym_find] = ACTIONS(207), + [anon_sym_remove] = ACTIONS(209), + [anon_sym_reduce] = ACTIONS(211), + [anon_sym_select] = ACTIONS(213), + [anon_sym_insert] = ACTIONS(215), + [anon_sym_async] = ACTIONS(217), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(219), + [anon_sym_assert] = ACTIONS(221), + [anon_sym_assert_equal] = ACTIONS(221), + [anon_sym_download] = ACTIONS(221), + [anon_sym_help] = ACTIONS(221), + [anon_sym_length] = ACTIONS(221), + [anon_sym_output] = ACTIONS(221), + [anon_sym_output_error] = ACTIONS(221), + [anon_sym_type] = ACTIONS(221), + [anon_sym_append] = ACTIONS(221), + [anon_sym_metadata] = ACTIONS(221), + [anon_sym_move] = ACTIONS(221), + [anon_sym_read] = ACTIONS(221), + [anon_sym_workdir] = ACTIONS(221), + [anon_sym_write] = ACTIONS(221), + [anon_sym_from_json] = ACTIONS(221), + [anon_sym_to_json] = ACTIONS(221), + [anon_sym_to_string] = ACTIONS(221), + [anon_sym_to_float] = ACTIONS(221), + [anon_sym_bash] = ACTIONS(221), + [anon_sym_fish] = ACTIONS(221), + [anon_sym_raw] = ACTIONS(221), + [anon_sym_sh] = ACTIONS(221), + [anon_sym_zsh] = ACTIONS(221), + [anon_sym_random] = ACTIONS(221), + [anon_sym_random_boolean] = ACTIONS(221), + [anon_sym_random_float] = ACTIONS(221), + [anon_sym_random_integer] = ACTIONS(221), + [anon_sym_columns] = ACTIONS(221), + [anon_sym_rows] = ACTIONS(221), + [anon_sym_reverse] = ACTIONS(221), + }, + [63] = { + [sym_block] = STATE(404), + [sym_statement] = STATE(26), + [sym_expression] = STATE(448), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(414), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1085), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(203), + [aux_sym_block_repeat1] = STATE(26), + [sym_identifier] = ACTIONS(223), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(869), + [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(227), + [anon_sym_match] = ACTIONS(229), + [anon_sym_EQ_GT] = ACTIONS(231), + [anon_sym_while] = ACTIONS(233), + [anon_sym_for] = ACTIONS(235), + [anon_sym_asyncfor] = ACTIONS(237), + [anon_sym_transform] = ACTIONS(239), + [anon_sym_filter] = ACTIONS(241), + [anon_sym_find] = ACTIONS(243), + [anon_sym_remove] = ACTIONS(245), + [anon_sym_reduce] = ACTIONS(247), + [anon_sym_select] = ACTIONS(249), + [anon_sym_insert] = ACTIONS(251), + [anon_sym_async] = ACTIONS(253), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(255), + [anon_sym_assert] = ACTIONS(257), + [anon_sym_assert_equal] = ACTIONS(257), + [anon_sym_download] = ACTIONS(257), + [anon_sym_help] = ACTIONS(257), + [anon_sym_length] = ACTIONS(257), + [anon_sym_output] = ACTIONS(257), + [anon_sym_output_error] = ACTIONS(257), + [anon_sym_type] = ACTIONS(257), + [anon_sym_append] = ACTIONS(257), + [anon_sym_metadata] = ACTIONS(257), + [anon_sym_move] = ACTIONS(257), + [anon_sym_read] = ACTIONS(257), + [anon_sym_workdir] = ACTIONS(257), + [anon_sym_write] = ACTIONS(257), + [anon_sym_from_json] = ACTIONS(257), + [anon_sym_to_json] = ACTIONS(257), + [anon_sym_to_string] = ACTIONS(257), + [anon_sym_to_float] = ACTIONS(257), + [anon_sym_bash] = ACTIONS(257), + [anon_sym_fish] = ACTIONS(257), + [anon_sym_raw] = ACTIONS(257), + [anon_sym_sh] = ACTIONS(257), + [anon_sym_zsh] = ACTIONS(257), + [anon_sym_random] = ACTIONS(257), + [anon_sym_random_boolean] = ACTIONS(257), + [anon_sym_random_float] = ACTIONS(257), + [anon_sym_random_integer] = ACTIONS(257), + [anon_sym_columns] = ACTIONS(257), + [anon_sym_rows] = ACTIONS(257), + [anon_sym_reverse] = ACTIONS(257), + }, + [64] = { + [sym_block] = STATE(493), + [sym_statement] = STATE(32), + [sym_expression] = STATE(516), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(433), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [aux_sym_block_repeat1] = STATE(32), + [sym_identifier] = ACTIONS(867), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(189), + [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(869), + [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(227), + [anon_sym_match] = ACTIONS(871), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(873), + [anon_sym_for] = ACTIONS(875), + [anon_sym_asyncfor] = ACTIONS(877), + [anon_sym_transform] = ACTIONS(879), + [anon_sym_filter] = ACTIONS(881), + [anon_sym_find] = ACTIONS(883), + [anon_sym_remove] = ACTIONS(885), + [anon_sym_reduce] = ACTIONS(887), + [anon_sym_select] = ACTIONS(889), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(891), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), + }, + [65] = { + [sym_block] = STATE(491), + [sym_statement] = STATE(32), + [sym_expression] = STATE(516), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(433), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [aux_sym_block_repeat1] = STATE(32), + [sym_identifier] = ACTIONS(867), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(189), + [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(869), + [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(227), + [anon_sym_match] = ACTIONS(871), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(873), + [anon_sym_for] = ACTIONS(875), + [anon_sym_asyncfor] = ACTIONS(877), + [anon_sym_transform] = ACTIONS(879), + [anon_sym_filter] = ACTIONS(881), + [anon_sym_find] = ACTIONS(883), + [anon_sym_remove] = ACTIONS(885), + [anon_sym_reduce] = ACTIONS(887), + [anon_sym_select] = ACTIONS(889), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(891), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), + }, + [66] = { + [sym_block] = STATE(493), + [sym_statement] = STATE(28), + [sym_expression] = STATE(479), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(365), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1119), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(218), + [aux_sym_block_repeat1] = STATE(28), + [sym_identifier] = ACTIONS(524), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(189), + [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(869), + [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(155), + [anon_sym_match] = ACTIONS(528), + [anon_sym_EQ_GT] = ACTIONS(530), + [anon_sym_while] = ACTIONS(532), + [anon_sym_for] = ACTIONS(534), + [anon_sym_asyncfor] = ACTIONS(536), + [anon_sym_transform] = ACTIONS(538), + [anon_sym_filter] = ACTIONS(540), + [anon_sym_find] = ACTIONS(542), + [anon_sym_remove] = ACTIONS(544), + [anon_sym_reduce] = ACTIONS(546), + [anon_sym_select] = ACTIONS(548), + [anon_sym_insert] = ACTIONS(550), + [anon_sym_async] = ACTIONS(552), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(554), + [anon_sym_assert] = ACTIONS(556), + [anon_sym_assert_equal] = ACTIONS(556), + [anon_sym_download] = ACTIONS(556), + [anon_sym_help] = ACTIONS(556), + [anon_sym_length] = ACTIONS(556), + [anon_sym_output] = ACTIONS(556), + [anon_sym_output_error] = ACTIONS(556), + [anon_sym_type] = ACTIONS(556), + [anon_sym_append] = ACTIONS(556), + [anon_sym_metadata] = ACTIONS(556), + [anon_sym_move] = ACTIONS(556), + [anon_sym_read] = ACTIONS(556), + [anon_sym_workdir] = ACTIONS(556), + [anon_sym_write] = ACTIONS(556), + [anon_sym_from_json] = ACTIONS(556), + [anon_sym_to_json] = ACTIONS(556), + [anon_sym_to_string] = ACTIONS(556), + [anon_sym_to_float] = ACTIONS(556), + [anon_sym_bash] = ACTIONS(556), + [anon_sym_fish] = ACTIONS(556), + [anon_sym_raw] = ACTIONS(556), + [anon_sym_sh] = ACTIONS(556), + [anon_sym_zsh] = ACTIONS(556), + [anon_sym_random] = ACTIONS(556), + [anon_sym_random_boolean] = ACTIONS(556), + [anon_sym_random_float] = ACTIONS(556), + [anon_sym_random_integer] = ACTIONS(556), + [anon_sym_columns] = ACTIONS(556), + [anon_sym_rows] = ACTIONS(556), + [anon_sym_reverse] = ACTIONS(556), + }, + [67] = { + [sym_block] = STATE(609), + [sym_statement] = STATE(199), + [sym_expression] = STATE(473), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(598), + [sym_if_else] = STATE(598), + [sym_if] = STATE(565), + [sym_match] = STATE(598), + [sym_while] = STATE(598), + [sym_for] = STATE(598), + [sym_transform] = STATE(598), + [sym_filter] = STATE(598), + [sym_find] = STATE(598), + [sym_remove] = STATE(598), + [sym_reduce] = STATE(598), + [sym_select] = STATE(598), + [sym_insert] = STATE(598), + [sym_async] = STATE(598), + [sym_identifier_list] = STATE(1085), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(203), + [aux_sym_block_repeat1] = STATE(199), + [sym_identifier] = ACTIONS(609), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(447), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(869), + [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(19), + [anon_sym_match] = ACTIONS(611), + [anon_sym_EQ_GT] = ACTIONS(231), + [anon_sym_while] = ACTIONS(613), + [anon_sym_for] = ACTIONS(615), + [anon_sym_asyncfor] = ACTIONS(617), + [anon_sym_transform] = ACTIONS(619), + [anon_sym_filter] = ACTIONS(621), + [anon_sym_find] = ACTIONS(623), + [anon_sym_remove] = ACTIONS(625), + [anon_sym_reduce] = ACTIONS(627), + [anon_sym_select] = ACTIONS(629), + [anon_sym_insert] = ACTIONS(251), + [anon_sym_async] = ACTIONS(631), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(255), + [anon_sym_assert] = ACTIONS(257), + [anon_sym_assert_equal] = ACTIONS(257), + [anon_sym_download] = ACTIONS(257), + [anon_sym_help] = ACTIONS(257), + [anon_sym_length] = ACTIONS(257), + [anon_sym_output] = ACTIONS(257), + [anon_sym_output_error] = ACTIONS(257), + [anon_sym_type] = ACTIONS(257), + [anon_sym_append] = ACTIONS(257), + [anon_sym_metadata] = ACTIONS(257), + [anon_sym_move] = ACTIONS(257), + [anon_sym_read] = ACTIONS(257), + [anon_sym_workdir] = ACTIONS(257), + [anon_sym_write] = ACTIONS(257), + [anon_sym_from_json] = ACTIONS(257), + [anon_sym_to_json] = ACTIONS(257), + [anon_sym_to_string] = ACTIONS(257), + [anon_sym_to_float] = ACTIONS(257), + [anon_sym_bash] = ACTIONS(257), + [anon_sym_fish] = ACTIONS(257), + [anon_sym_raw] = ACTIONS(257), + [anon_sym_sh] = ACTIONS(257), + [anon_sym_zsh] = ACTIONS(257), + [anon_sym_random] = ACTIONS(257), + [anon_sym_random_boolean] = ACTIONS(257), + [anon_sym_random_float] = ACTIONS(257), + [anon_sym_random_integer] = ACTIONS(257), + [anon_sym_columns] = ACTIONS(257), + [anon_sym_rows] = ACTIONS(257), + [anon_sym_reverse] = ACTIONS(257), + }, + [68] = { + [sym_block] = STATE(491), + [sym_statement] = STATE(28), + [sym_expression] = STATE(479), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(365), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1119), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(218), + [aux_sym_block_repeat1] = STATE(28), + [sym_identifier] = ACTIONS(524), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(189), + [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(869), + [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(155), + [anon_sym_match] = ACTIONS(528), + [anon_sym_EQ_GT] = ACTIONS(530), + [anon_sym_while] = ACTIONS(532), + [anon_sym_for] = ACTIONS(534), + [anon_sym_asyncfor] = ACTIONS(536), + [anon_sym_transform] = ACTIONS(538), + [anon_sym_filter] = ACTIONS(540), + [anon_sym_find] = ACTIONS(542), + [anon_sym_remove] = ACTIONS(544), + [anon_sym_reduce] = ACTIONS(546), + [anon_sym_select] = ACTIONS(548), + [anon_sym_insert] = ACTIONS(550), + [anon_sym_async] = ACTIONS(552), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(554), + [anon_sym_assert] = ACTIONS(556), + [anon_sym_assert_equal] = ACTIONS(556), + [anon_sym_download] = ACTIONS(556), + [anon_sym_help] = ACTIONS(556), + [anon_sym_length] = ACTIONS(556), + [anon_sym_output] = ACTIONS(556), + [anon_sym_output_error] = ACTIONS(556), + [anon_sym_type] = ACTIONS(556), + [anon_sym_append] = ACTIONS(556), + [anon_sym_metadata] = ACTIONS(556), + [anon_sym_move] = ACTIONS(556), + [anon_sym_read] = ACTIONS(556), + [anon_sym_workdir] = ACTIONS(556), + [anon_sym_write] = ACTIONS(556), + [anon_sym_from_json] = ACTIONS(556), + [anon_sym_to_json] = ACTIONS(556), + [anon_sym_to_string] = ACTIONS(556), + [anon_sym_to_float] = ACTIONS(556), + [anon_sym_bash] = ACTIONS(556), + [anon_sym_fish] = ACTIONS(556), + [anon_sym_raw] = ACTIONS(556), + [anon_sym_sh] = ACTIONS(556), + [anon_sym_zsh] = ACTIONS(556), + [anon_sym_random] = ACTIONS(556), + [anon_sym_random_boolean] = ACTIONS(556), + [anon_sym_random_float] = ACTIONS(556), + [anon_sym_random_integer] = ACTIONS(556), + [anon_sym_columns] = ACTIONS(556), + [anon_sym_rows] = ACTIONS(556), + [anon_sym_reverse] = ACTIONS(556), + }, + [69] = { + [sym_block] = STATE(490), + [sym_statement] = STATE(32), + [sym_expression] = STATE(516), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(433), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [aux_sym_block_repeat1] = STATE(32), + [sym_identifier] = ACTIONS(867), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(189), + [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(869), + [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(227), + [anon_sym_match] = ACTIONS(871), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(873), + [anon_sym_for] = ACTIONS(875), + [anon_sym_asyncfor] = ACTIONS(877), + [anon_sym_transform] = ACTIONS(879), + [anon_sym_filter] = ACTIONS(881), + [anon_sym_find] = ACTIONS(883), + [anon_sym_remove] = ACTIONS(885), + [anon_sym_reduce] = ACTIONS(887), + [anon_sym_select] = ACTIONS(889), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(891), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), + }, + [70] = { + [sym_block] = STATE(636), + [sym_statement] = STATE(225), + [sym_expression] = STATE(547), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(571), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [aux_sym_block_repeat1] = STATE(225), + [sym_identifier] = ACTIONS(941), + [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(869), + [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(449), + [anon_sym_match] = ACTIONS(943), + [anon_sym_EQ_GT] = ACTIONS(265), + [anon_sym_while] = ACTIONS(945), + [anon_sym_for] = ACTIONS(947), + [anon_sym_asyncfor] = ACTIONS(949), + [anon_sym_transform] = ACTIONS(951), + [anon_sym_filter] = ACTIONS(953), + [anon_sym_find] = ACTIONS(955), + [anon_sym_remove] = ACTIONS(957), + [anon_sym_reduce] = ACTIONS(959), + [anon_sym_select] = ACTIONS(961), + [anon_sym_insert] = ACTIONS(285), + [anon_sym_async] = ACTIONS(963), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(289), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_assert_equal] = ACTIONS(291), + [anon_sym_download] = ACTIONS(291), + [anon_sym_help] = ACTIONS(291), + [anon_sym_length] = ACTIONS(291), + [anon_sym_output] = ACTIONS(291), + [anon_sym_output_error] = ACTIONS(291), + [anon_sym_type] = ACTIONS(291), + [anon_sym_append] = ACTIONS(291), + [anon_sym_metadata] = ACTIONS(291), + [anon_sym_move] = ACTIONS(291), + [anon_sym_read] = ACTIONS(291), + [anon_sym_workdir] = ACTIONS(291), + [anon_sym_write] = ACTIONS(291), + [anon_sym_from_json] = ACTIONS(291), + [anon_sym_to_json] = ACTIONS(291), + [anon_sym_to_string] = ACTIONS(291), + [anon_sym_to_float] = ACTIONS(291), + [anon_sym_bash] = ACTIONS(291), + [anon_sym_fish] = ACTIONS(291), + [anon_sym_raw] = ACTIONS(291), + [anon_sym_sh] = ACTIONS(291), + [anon_sym_zsh] = ACTIONS(291), + [anon_sym_random] = ACTIONS(291), + [anon_sym_random_boolean] = ACTIONS(291), + [anon_sym_random_float] = ACTIONS(291), + [anon_sym_random_integer] = ACTIONS(291), + [anon_sym_columns] = ACTIONS(291), + [anon_sym_rows] = ACTIONS(291), + [anon_sym_reverse] = ACTIONS(291), + }, + [71] = { + [sym_block] = STATE(591), + [sym_statement] = STATE(199), + [sym_expression] = STATE(473), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(598), + [sym_if_else] = STATE(598), + [sym_if] = STATE(565), + [sym_match] = STATE(598), + [sym_while] = STATE(598), + [sym_for] = STATE(598), + [sym_transform] = STATE(598), + [sym_filter] = STATE(598), + [sym_find] = STATE(598), + [sym_remove] = STATE(598), + [sym_reduce] = STATE(598), + [sym_select] = STATE(598), + [sym_insert] = STATE(598), + [sym_async] = STATE(598), + [sym_identifier_list] = STATE(1085), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(203), + [aux_sym_block_repeat1] = STATE(199), + [sym_identifier] = ACTIONS(609), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(447), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(869), + [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(19), + [anon_sym_match] = ACTIONS(611), + [anon_sym_EQ_GT] = ACTIONS(231), + [anon_sym_while] = ACTIONS(613), + [anon_sym_for] = ACTIONS(615), + [anon_sym_asyncfor] = ACTIONS(617), + [anon_sym_transform] = ACTIONS(619), + [anon_sym_filter] = ACTIONS(621), + [anon_sym_find] = ACTIONS(623), + [anon_sym_remove] = ACTIONS(625), + [anon_sym_reduce] = ACTIONS(627), + [anon_sym_select] = ACTIONS(629), + [anon_sym_insert] = ACTIONS(251), + [anon_sym_async] = ACTIONS(631), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(255), + [anon_sym_assert] = ACTIONS(257), + [anon_sym_assert_equal] = ACTIONS(257), + [anon_sym_download] = ACTIONS(257), + [anon_sym_help] = ACTIONS(257), + [anon_sym_length] = ACTIONS(257), + [anon_sym_output] = ACTIONS(257), + [anon_sym_output_error] = ACTIONS(257), + [anon_sym_type] = ACTIONS(257), + [anon_sym_append] = ACTIONS(257), + [anon_sym_metadata] = ACTIONS(257), + [anon_sym_move] = ACTIONS(257), + [anon_sym_read] = ACTIONS(257), + [anon_sym_workdir] = ACTIONS(257), + [anon_sym_write] = ACTIONS(257), + [anon_sym_from_json] = ACTIONS(257), + [anon_sym_to_json] = ACTIONS(257), + [anon_sym_to_string] = ACTIONS(257), + [anon_sym_to_float] = ACTIONS(257), + [anon_sym_bash] = ACTIONS(257), + [anon_sym_fish] = ACTIONS(257), + [anon_sym_raw] = ACTIONS(257), + [anon_sym_sh] = ACTIONS(257), + [anon_sym_zsh] = ACTIONS(257), + [anon_sym_random] = ACTIONS(257), + [anon_sym_random_boolean] = ACTIONS(257), + [anon_sym_random_float] = ACTIONS(257), + [anon_sym_random_integer] = ACTIONS(257), + [anon_sym_columns] = ACTIONS(257), + [anon_sym_rows] = ACTIONS(257), + [anon_sym_reverse] = ACTIONS(257), }, [72] = { - [sym_block] = STATE(638), - [sym_statement] = STATE(10), - [sym_expression] = STATE(571), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(631), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(558), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(1817), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(265), - [aux_sym_block_repeat1] = STATE(10), - [sym_identifier] = ACTIONS(55), + [sym_block] = STATE(490), + [sym_statement] = STATE(28), + [sym_expression] = STATE(479), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(365), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1119), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(218), + [aux_sym_block_repeat1] = STATE(28), + [sym_identifier] = ACTIONS(524), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(59), - [sym_integer] = ACTIONS(61), - [sym_float] = ACTIONS(63), - [sym_string] = ACTIONS(63), - [anon_sym_true] = ACTIONS(65), - [anon_sym_false] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(189), + [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(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = 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_asyncfor] = ACTIONS(91), - [anon_sym_transform] = ACTIONS(93), - [anon_sym_filter] = ACTIONS(95), - [anon_sym_find] = ACTIONS(97), - [anon_sym_remove] = ACTIONS(99), - [anon_sym_reduce] = ACTIONS(101), - [anon_sym_select] = ACTIONS(103), - [anon_sym_insert] = ACTIONS(105), - [anon_sym_async] = ACTIONS(107), + [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(155), + [anon_sym_match] = ACTIONS(528), + [anon_sym_EQ_GT] = ACTIONS(530), + [anon_sym_while] = ACTIONS(532), + [anon_sym_for] = ACTIONS(534), + [anon_sym_asyncfor] = ACTIONS(536), + [anon_sym_transform] = ACTIONS(538), + [anon_sym_filter] = ACTIONS(540), + [anon_sym_find] = ACTIONS(542), + [anon_sym_remove] = ACTIONS(544), + [anon_sym_reduce] = ACTIONS(546), + [anon_sym_select] = ACTIONS(548), + [anon_sym_insert] = ACTIONS(550), + [anon_sym_async] = ACTIONS(552), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(111), - [anon_sym_assert] = ACTIONS(113), - [anon_sym_assert_equal] = ACTIONS(113), - [anon_sym_download] = ACTIONS(113), - [anon_sym_help] = ACTIONS(113), - [anon_sym_length] = ACTIONS(113), - [anon_sym_output] = ACTIONS(113), - [anon_sym_output_error] = ACTIONS(113), - [anon_sym_type] = ACTIONS(113), - [anon_sym_append] = ACTIONS(113), - [anon_sym_metadata] = ACTIONS(113), - [anon_sym_move] = ACTIONS(113), - [anon_sym_read] = ACTIONS(113), - [anon_sym_workdir] = ACTIONS(113), - [anon_sym_write] = ACTIONS(113), - [anon_sym_from_json] = ACTIONS(113), - [anon_sym_to_json] = ACTIONS(113), - [anon_sym_to_string] = ACTIONS(113), - [anon_sym_to_float] = ACTIONS(113), - [anon_sym_bash] = ACTIONS(113), - [anon_sym_fish] = ACTIONS(113), - [anon_sym_raw] = ACTIONS(113), - [anon_sym_sh] = ACTIONS(113), - [anon_sym_zsh] = ACTIONS(113), - [anon_sym_random] = ACTIONS(113), - [anon_sym_random_boolean] = ACTIONS(113), - [anon_sym_random_float] = ACTIONS(113), - [anon_sym_random_integer] = ACTIONS(113), - [anon_sym_columns] = ACTIONS(113), - [anon_sym_rows] = ACTIONS(113), - [anon_sym_reverse] = ACTIONS(113), + [anon_sym_table] = ACTIONS(554), + [anon_sym_assert] = ACTIONS(556), + [anon_sym_assert_equal] = ACTIONS(556), + [anon_sym_download] = ACTIONS(556), + [anon_sym_help] = ACTIONS(556), + [anon_sym_length] = ACTIONS(556), + [anon_sym_output] = ACTIONS(556), + [anon_sym_output_error] = ACTIONS(556), + [anon_sym_type] = ACTIONS(556), + [anon_sym_append] = ACTIONS(556), + [anon_sym_metadata] = ACTIONS(556), + [anon_sym_move] = ACTIONS(556), + [anon_sym_read] = ACTIONS(556), + [anon_sym_workdir] = ACTIONS(556), + [anon_sym_write] = ACTIONS(556), + [anon_sym_from_json] = ACTIONS(556), + [anon_sym_to_json] = ACTIONS(556), + [anon_sym_to_string] = ACTIONS(556), + [anon_sym_to_float] = ACTIONS(556), + [anon_sym_bash] = ACTIONS(556), + [anon_sym_fish] = ACTIONS(556), + [anon_sym_raw] = ACTIONS(556), + [anon_sym_sh] = ACTIONS(556), + [anon_sym_zsh] = ACTIONS(556), + [anon_sym_random] = ACTIONS(556), + [anon_sym_random_boolean] = ACTIONS(556), + [anon_sym_random_float] = ACTIONS(556), + [anon_sym_random_integer] = ACTIONS(556), + [anon_sym_columns] = ACTIONS(556), + [anon_sym_rows] = ACTIONS(556), + [anon_sym_reverse] = ACTIONS(556), }, [73] = { - [sym_block] = STATE(636), - [sym_statement] = STATE(10), - [sym_expression] = STATE(571), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(631), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(558), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(1817), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(265), - [aux_sym_block_repeat1] = STATE(10), - [sym_identifier] = ACTIONS(55), + [sym_block] = STATE(489), + [sym_statement] = STATE(28), + [sym_expression] = STATE(479), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(365), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1119), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(218), + [aux_sym_block_repeat1] = STATE(28), + [sym_identifier] = ACTIONS(524), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(59), - [sym_integer] = ACTIONS(61), - [sym_float] = ACTIONS(63), - [sym_string] = ACTIONS(63), - [anon_sym_true] = ACTIONS(65), - [anon_sym_false] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(189), + [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(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = 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_asyncfor] = ACTIONS(91), - [anon_sym_transform] = ACTIONS(93), - [anon_sym_filter] = ACTIONS(95), - [anon_sym_find] = ACTIONS(97), - [anon_sym_remove] = ACTIONS(99), - [anon_sym_reduce] = ACTIONS(101), - [anon_sym_select] = ACTIONS(103), - [anon_sym_insert] = ACTIONS(105), - [anon_sym_async] = ACTIONS(107), + [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(155), + [anon_sym_match] = ACTIONS(528), + [anon_sym_EQ_GT] = ACTIONS(530), + [anon_sym_while] = ACTIONS(532), + [anon_sym_for] = ACTIONS(534), + [anon_sym_asyncfor] = ACTIONS(536), + [anon_sym_transform] = ACTIONS(538), + [anon_sym_filter] = ACTIONS(540), + [anon_sym_find] = ACTIONS(542), + [anon_sym_remove] = ACTIONS(544), + [anon_sym_reduce] = ACTIONS(546), + [anon_sym_select] = ACTIONS(548), + [anon_sym_insert] = ACTIONS(550), + [anon_sym_async] = ACTIONS(552), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(111), - [anon_sym_assert] = ACTIONS(113), - [anon_sym_assert_equal] = ACTIONS(113), - [anon_sym_download] = ACTIONS(113), - [anon_sym_help] = ACTIONS(113), - [anon_sym_length] = ACTIONS(113), - [anon_sym_output] = ACTIONS(113), - [anon_sym_output_error] = ACTIONS(113), - [anon_sym_type] = ACTIONS(113), - [anon_sym_append] = ACTIONS(113), - [anon_sym_metadata] = ACTIONS(113), - [anon_sym_move] = ACTIONS(113), - [anon_sym_read] = ACTIONS(113), - [anon_sym_workdir] = ACTIONS(113), - [anon_sym_write] = ACTIONS(113), - [anon_sym_from_json] = ACTIONS(113), - [anon_sym_to_json] = ACTIONS(113), - [anon_sym_to_string] = ACTIONS(113), - [anon_sym_to_float] = ACTIONS(113), - [anon_sym_bash] = ACTIONS(113), - [anon_sym_fish] = ACTIONS(113), - [anon_sym_raw] = ACTIONS(113), - [anon_sym_sh] = ACTIONS(113), - [anon_sym_zsh] = ACTIONS(113), - [anon_sym_random] = ACTIONS(113), - [anon_sym_random_boolean] = ACTIONS(113), - [anon_sym_random_float] = ACTIONS(113), - [anon_sym_random_integer] = ACTIONS(113), - [anon_sym_columns] = ACTIONS(113), - [anon_sym_rows] = ACTIONS(113), - [anon_sym_reverse] = ACTIONS(113), + [anon_sym_table] = ACTIONS(554), + [anon_sym_assert] = ACTIONS(556), + [anon_sym_assert_equal] = ACTIONS(556), + [anon_sym_download] = ACTIONS(556), + [anon_sym_help] = ACTIONS(556), + [anon_sym_length] = ACTIONS(556), + [anon_sym_output] = ACTIONS(556), + [anon_sym_output_error] = ACTIONS(556), + [anon_sym_type] = ACTIONS(556), + [anon_sym_append] = ACTIONS(556), + [anon_sym_metadata] = ACTIONS(556), + [anon_sym_move] = ACTIONS(556), + [anon_sym_read] = ACTIONS(556), + [anon_sym_workdir] = ACTIONS(556), + [anon_sym_write] = ACTIONS(556), + [anon_sym_from_json] = ACTIONS(556), + [anon_sym_to_json] = ACTIONS(556), + [anon_sym_to_string] = ACTIONS(556), + [anon_sym_to_float] = ACTIONS(556), + [anon_sym_bash] = ACTIONS(556), + [anon_sym_fish] = ACTIONS(556), + [anon_sym_raw] = ACTIONS(556), + [anon_sym_sh] = ACTIONS(556), + [anon_sym_zsh] = ACTIONS(556), + [anon_sym_random] = ACTIONS(556), + [anon_sym_random_boolean] = ACTIONS(556), + [anon_sym_random_float] = ACTIONS(556), + [anon_sym_random_integer] = ACTIONS(556), + [anon_sym_columns] = ACTIONS(556), + [anon_sym_rows] = ACTIONS(556), + [anon_sym_reverse] = ACTIONS(556), }, [74] = { - [sym_block] = STATE(624), - [sym_statement] = STATE(10), - [sym_expression] = STATE(571), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(631), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(558), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(1817), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(265), - [aux_sym_block_repeat1] = STATE(10), - [sym_identifier] = ACTIONS(55), + [sym_block] = STATE(488), + [sym_statement] = STATE(28), + [sym_expression] = STATE(479), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(365), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1119), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(218), + [aux_sym_block_repeat1] = STATE(28), + [sym_identifier] = ACTIONS(524), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(59), - [sym_integer] = ACTIONS(61), - [sym_float] = ACTIONS(63), - [sym_string] = ACTIONS(63), - [anon_sym_true] = ACTIONS(65), - [anon_sym_false] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(189), + [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(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = 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_asyncfor] = ACTIONS(91), - [anon_sym_transform] = ACTIONS(93), - [anon_sym_filter] = ACTIONS(95), - [anon_sym_find] = ACTIONS(97), - [anon_sym_remove] = ACTIONS(99), - [anon_sym_reduce] = ACTIONS(101), - [anon_sym_select] = ACTIONS(103), - [anon_sym_insert] = ACTIONS(105), - [anon_sym_async] = ACTIONS(107), + [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(155), + [anon_sym_match] = ACTIONS(528), + [anon_sym_EQ_GT] = ACTIONS(530), + [anon_sym_while] = ACTIONS(532), + [anon_sym_for] = ACTIONS(534), + [anon_sym_asyncfor] = ACTIONS(536), + [anon_sym_transform] = ACTIONS(538), + [anon_sym_filter] = ACTIONS(540), + [anon_sym_find] = ACTIONS(542), + [anon_sym_remove] = ACTIONS(544), + [anon_sym_reduce] = ACTIONS(546), + [anon_sym_select] = ACTIONS(548), + [anon_sym_insert] = ACTIONS(550), + [anon_sym_async] = ACTIONS(552), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(111), - [anon_sym_assert] = ACTIONS(113), - [anon_sym_assert_equal] = ACTIONS(113), - [anon_sym_download] = ACTIONS(113), - [anon_sym_help] = ACTIONS(113), - [anon_sym_length] = ACTIONS(113), - [anon_sym_output] = ACTIONS(113), - [anon_sym_output_error] = ACTIONS(113), - [anon_sym_type] = ACTIONS(113), - [anon_sym_append] = ACTIONS(113), - [anon_sym_metadata] = ACTIONS(113), - [anon_sym_move] = ACTIONS(113), - [anon_sym_read] = ACTIONS(113), - [anon_sym_workdir] = ACTIONS(113), - [anon_sym_write] = ACTIONS(113), - [anon_sym_from_json] = ACTIONS(113), - [anon_sym_to_json] = ACTIONS(113), - [anon_sym_to_string] = ACTIONS(113), - [anon_sym_to_float] = ACTIONS(113), - [anon_sym_bash] = ACTIONS(113), - [anon_sym_fish] = ACTIONS(113), - [anon_sym_raw] = ACTIONS(113), - [anon_sym_sh] = ACTIONS(113), - [anon_sym_zsh] = ACTIONS(113), - [anon_sym_random] = ACTIONS(113), - [anon_sym_random_boolean] = ACTIONS(113), - [anon_sym_random_float] = ACTIONS(113), - [anon_sym_random_integer] = ACTIONS(113), - [anon_sym_columns] = ACTIONS(113), - [anon_sym_rows] = ACTIONS(113), - [anon_sym_reverse] = ACTIONS(113), + [anon_sym_table] = ACTIONS(554), + [anon_sym_assert] = ACTIONS(556), + [anon_sym_assert_equal] = ACTIONS(556), + [anon_sym_download] = ACTIONS(556), + [anon_sym_help] = ACTIONS(556), + [anon_sym_length] = ACTIONS(556), + [anon_sym_output] = ACTIONS(556), + [anon_sym_output_error] = ACTIONS(556), + [anon_sym_type] = ACTIONS(556), + [anon_sym_append] = ACTIONS(556), + [anon_sym_metadata] = ACTIONS(556), + [anon_sym_move] = ACTIONS(556), + [anon_sym_read] = ACTIONS(556), + [anon_sym_workdir] = ACTIONS(556), + [anon_sym_write] = ACTIONS(556), + [anon_sym_from_json] = ACTIONS(556), + [anon_sym_to_json] = ACTIONS(556), + [anon_sym_to_string] = ACTIONS(556), + [anon_sym_to_float] = ACTIONS(556), + [anon_sym_bash] = ACTIONS(556), + [anon_sym_fish] = ACTIONS(556), + [anon_sym_raw] = ACTIONS(556), + [anon_sym_sh] = ACTIONS(556), + [anon_sym_zsh] = ACTIONS(556), + [anon_sym_random] = ACTIONS(556), + [anon_sym_random_boolean] = ACTIONS(556), + [anon_sym_random_float] = ACTIONS(556), + [anon_sym_random_integer] = ACTIONS(556), + [anon_sym_columns] = ACTIONS(556), + [anon_sym_rows] = ACTIONS(556), + [anon_sym_reverse] = ACTIONS(556), }, [75] = { - [sym_block] = STATE(619), - [sym_statement] = STATE(10), - [sym_expression] = STATE(571), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(631), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(558), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(1817), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(265), - [aux_sym_block_repeat1] = STATE(10), - [sym_identifier] = ACTIONS(55), + [sym_block] = STATE(385), + [sym_statement] = STATE(11), + [sym_expression] = STATE(364), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(349), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1100), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(181), + [aux_sym_block_repeat1] = STATE(11), + [sym_identifier] = ACTIONS(115), [sym__comment] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(57), [anon_sym_LPAREN] = ACTIONS(59), @@ -14950,104 +13117,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(65), [anon_sym_false] = ACTIONS(65), [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = 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_asyncfor] = ACTIONS(91), - [anon_sym_transform] = ACTIONS(93), - [anon_sym_filter] = ACTIONS(95), - [anon_sym_find] = ACTIONS(97), - [anon_sym_remove] = ACTIONS(99), - [anon_sym_reduce] = ACTIONS(101), - [anon_sym_select] = ACTIONS(103), - [anon_sym_insert] = ACTIONS(105), - [anon_sym_async] = ACTIONS(107), + [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(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_EQ_GT] = ACTIONS(123), + [anon_sym_while] = ACTIONS(125), + [anon_sym_for] = ACTIONS(127), + [anon_sym_asyncfor] = ACTIONS(129), + [anon_sym_transform] = ACTIONS(131), + [anon_sym_filter] = ACTIONS(133), + [anon_sym_find] = ACTIONS(135), + [anon_sym_remove] = ACTIONS(137), + [anon_sym_reduce] = ACTIONS(139), + [anon_sym_select] = ACTIONS(141), + [anon_sym_insert] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(111), - [anon_sym_assert] = ACTIONS(113), - [anon_sym_assert_equal] = ACTIONS(113), - [anon_sym_download] = ACTIONS(113), - [anon_sym_help] = ACTIONS(113), - [anon_sym_length] = ACTIONS(113), - [anon_sym_output] = ACTIONS(113), - [anon_sym_output_error] = ACTIONS(113), - [anon_sym_type] = ACTIONS(113), - [anon_sym_append] = ACTIONS(113), - [anon_sym_metadata] = ACTIONS(113), - [anon_sym_move] = ACTIONS(113), - [anon_sym_read] = ACTIONS(113), - [anon_sym_workdir] = ACTIONS(113), - [anon_sym_write] = ACTIONS(113), - [anon_sym_from_json] = ACTIONS(113), - [anon_sym_to_json] = ACTIONS(113), - [anon_sym_to_string] = ACTIONS(113), - [anon_sym_to_float] = ACTIONS(113), - [anon_sym_bash] = ACTIONS(113), - [anon_sym_fish] = ACTIONS(113), - [anon_sym_raw] = ACTIONS(113), - [anon_sym_sh] = ACTIONS(113), - [anon_sym_zsh] = ACTIONS(113), - [anon_sym_random] = ACTIONS(113), - [anon_sym_random_boolean] = ACTIONS(113), - [anon_sym_random_float] = ACTIONS(113), - [anon_sym_random_integer] = ACTIONS(113), - [anon_sym_columns] = ACTIONS(113), - [anon_sym_rows] = ACTIONS(113), - [anon_sym_reverse] = ACTIONS(113), + [anon_sym_table] = ACTIONS(147), + [anon_sym_assert] = ACTIONS(149), + [anon_sym_assert_equal] = ACTIONS(149), + [anon_sym_download] = ACTIONS(149), + [anon_sym_help] = ACTIONS(149), + [anon_sym_length] = ACTIONS(149), + [anon_sym_output] = ACTIONS(149), + [anon_sym_output_error] = ACTIONS(149), + [anon_sym_type] = ACTIONS(149), + [anon_sym_append] = ACTIONS(149), + [anon_sym_metadata] = ACTIONS(149), + [anon_sym_move] = ACTIONS(149), + [anon_sym_read] = ACTIONS(149), + [anon_sym_workdir] = ACTIONS(149), + [anon_sym_write] = ACTIONS(149), + [anon_sym_from_json] = ACTIONS(149), + [anon_sym_to_json] = ACTIONS(149), + [anon_sym_to_string] = ACTIONS(149), + [anon_sym_to_float] = ACTIONS(149), + [anon_sym_bash] = ACTIONS(149), + [anon_sym_fish] = ACTIONS(149), + [anon_sym_raw] = ACTIONS(149), + [anon_sym_sh] = ACTIONS(149), + [anon_sym_zsh] = ACTIONS(149), + [anon_sym_random] = ACTIONS(149), + [anon_sym_random_boolean] = ACTIONS(149), + [anon_sym_random_float] = ACTIONS(149), + [anon_sym_random_integer] = ACTIONS(149), + [anon_sym_columns] = ACTIONS(149), + [anon_sym_rows] = ACTIONS(149), + [anon_sym_reverse] = ACTIONS(149), }, [76] = { - [sym_block] = STATE(589), - [sym_statement] = STATE(10), - [sym_expression] = STATE(571), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(631), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(558), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(1817), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(265), - [aux_sym_block_repeat1] = STATE(10), - [sym_identifier] = ACTIONS(55), + [sym_block] = STATE(384), + [sym_statement] = STATE(11), + [sym_expression] = STATE(364), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(349), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1100), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(181), + [aux_sym_block_repeat1] = STATE(11), + [sym_identifier] = ACTIONS(115), [sym__comment] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(57), [anon_sym_LPAREN] = ACTIONS(59), @@ -15057,211 +13224,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(65), [anon_sym_false] = ACTIONS(65), [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = 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_asyncfor] = ACTIONS(91), - [anon_sym_transform] = ACTIONS(93), - [anon_sym_filter] = ACTIONS(95), - [anon_sym_find] = ACTIONS(97), - [anon_sym_remove] = ACTIONS(99), - [anon_sym_reduce] = ACTIONS(101), - [anon_sym_select] = ACTIONS(103), - [anon_sym_insert] = ACTIONS(105), - [anon_sym_async] = ACTIONS(107), + [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(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_EQ_GT] = ACTIONS(123), + [anon_sym_while] = ACTIONS(125), + [anon_sym_for] = ACTIONS(127), + [anon_sym_asyncfor] = ACTIONS(129), + [anon_sym_transform] = ACTIONS(131), + [anon_sym_filter] = ACTIONS(133), + [anon_sym_find] = ACTIONS(135), + [anon_sym_remove] = ACTIONS(137), + [anon_sym_reduce] = ACTIONS(139), + [anon_sym_select] = ACTIONS(141), + [anon_sym_insert] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(111), - [anon_sym_assert] = ACTIONS(113), - [anon_sym_assert_equal] = ACTIONS(113), - [anon_sym_download] = ACTIONS(113), - [anon_sym_help] = ACTIONS(113), - [anon_sym_length] = ACTIONS(113), - [anon_sym_output] = ACTIONS(113), - [anon_sym_output_error] = ACTIONS(113), - [anon_sym_type] = ACTIONS(113), - [anon_sym_append] = ACTIONS(113), - [anon_sym_metadata] = ACTIONS(113), - [anon_sym_move] = ACTIONS(113), - [anon_sym_read] = ACTIONS(113), - [anon_sym_workdir] = ACTIONS(113), - [anon_sym_write] = ACTIONS(113), - [anon_sym_from_json] = ACTIONS(113), - [anon_sym_to_json] = ACTIONS(113), - [anon_sym_to_string] = ACTIONS(113), - [anon_sym_to_float] = ACTIONS(113), - [anon_sym_bash] = ACTIONS(113), - [anon_sym_fish] = ACTIONS(113), - [anon_sym_raw] = ACTIONS(113), - [anon_sym_sh] = ACTIONS(113), - [anon_sym_zsh] = ACTIONS(113), - [anon_sym_random] = ACTIONS(113), - [anon_sym_random_boolean] = ACTIONS(113), - [anon_sym_random_float] = ACTIONS(113), - [anon_sym_random_integer] = ACTIONS(113), - [anon_sym_columns] = ACTIONS(113), - [anon_sym_rows] = ACTIONS(113), - [anon_sym_reverse] = ACTIONS(113), + [anon_sym_table] = ACTIONS(147), + [anon_sym_assert] = ACTIONS(149), + [anon_sym_assert_equal] = ACTIONS(149), + [anon_sym_download] = ACTIONS(149), + [anon_sym_help] = ACTIONS(149), + [anon_sym_length] = ACTIONS(149), + [anon_sym_output] = ACTIONS(149), + [anon_sym_output_error] = ACTIONS(149), + [anon_sym_type] = ACTIONS(149), + [anon_sym_append] = ACTIONS(149), + [anon_sym_metadata] = ACTIONS(149), + [anon_sym_move] = ACTIONS(149), + [anon_sym_read] = ACTIONS(149), + [anon_sym_workdir] = ACTIONS(149), + [anon_sym_write] = ACTIONS(149), + [anon_sym_from_json] = ACTIONS(149), + [anon_sym_to_json] = ACTIONS(149), + [anon_sym_to_string] = ACTIONS(149), + [anon_sym_to_float] = ACTIONS(149), + [anon_sym_bash] = ACTIONS(149), + [anon_sym_fish] = ACTIONS(149), + [anon_sym_raw] = ACTIONS(149), + [anon_sym_sh] = ACTIONS(149), + [anon_sym_zsh] = ACTIONS(149), + [anon_sym_random] = ACTIONS(149), + [anon_sym_random_boolean] = ACTIONS(149), + [anon_sym_random_float] = ACTIONS(149), + [anon_sym_random_integer] = ACTIONS(149), + [anon_sym_columns] = ACTIONS(149), + [anon_sym_rows] = ACTIONS(149), + [anon_sym_reverse] = ACTIONS(149), }, [77] = { - [sym_block] = STATE(610), - [sym_statement] = STATE(10), - [sym_expression] = STATE(571), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(631), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(558), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(1817), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(265), - [aux_sym_block_repeat1] = STATE(10), - [sym_identifier] = ACTIONS(55), + [sym_block] = STATE(489), + [sym_statement] = STATE(32), + [sym_expression] = STATE(516), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(433), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [aux_sym_block_repeat1] = STATE(32), + [sym_identifier] = ACTIONS(867), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(59), - [sym_integer] = ACTIONS(61), - [sym_float] = ACTIONS(63), - [sym_string] = ACTIONS(63), - [anon_sym_true] = ACTIONS(65), - [anon_sym_false] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(189), + [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(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = 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_asyncfor] = ACTIONS(91), - [anon_sym_transform] = ACTIONS(93), - [anon_sym_filter] = ACTIONS(95), - [anon_sym_find] = ACTIONS(97), - [anon_sym_remove] = ACTIONS(99), - [anon_sym_reduce] = ACTIONS(101), - [anon_sym_select] = ACTIONS(103), - [anon_sym_insert] = ACTIONS(105), - [anon_sym_async] = ACTIONS(107), + [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(227), + [anon_sym_match] = ACTIONS(871), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(873), + [anon_sym_for] = ACTIONS(875), + [anon_sym_asyncfor] = ACTIONS(877), + [anon_sym_transform] = ACTIONS(879), + [anon_sym_filter] = ACTIONS(881), + [anon_sym_find] = ACTIONS(883), + [anon_sym_remove] = ACTIONS(885), + [anon_sym_reduce] = ACTIONS(887), + [anon_sym_select] = ACTIONS(889), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(891), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(111), - [anon_sym_assert] = ACTIONS(113), - [anon_sym_assert_equal] = ACTIONS(113), - [anon_sym_download] = ACTIONS(113), - [anon_sym_help] = ACTIONS(113), - [anon_sym_length] = ACTIONS(113), - [anon_sym_output] = ACTIONS(113), - [anon_sym_output_error] = ACTIONS(113), - [anon_sym_type] = ACTIONS(113), - [anon_sym_append] = ACTIONS(113), - [anon_sym_metadata] = ACTIONS(113), - [anon_sym_move] = ACTIONS(113), - [anon_sym_read] = ACTIONS(113), - [anon_sym_workdir] = ACTIONS(113), - [anon_sym_write] = ACTIONS(113), - [anon_sym_from_json] = ACTIONS(113), - [anon_sym_to_json] = ACTIONS(113), - [anon_sym_to_string] = ACTIONS(113), - [anon_sym_to_float] = ACTIONS(113), - [anon_sym_bash] = ACTIONS(113), - [anon_sym_fish] = ACTIONS(113), - [anon_sym_raw] = ACTIONS(113), - [anon_sym_sh] = ACTIONS(113), - [anon_sym_zsh] = ACTIONS(113), - [anon_sym_random] = ACTIONS(113), - [anon_sym_random_boolean] = ACTIONS(113), - [anon_sym_random_float] = ACTIONS(113), - [anon_sym_random_integer] = ACTIONS(113), - [anon_sym_columns] = ACTIONS(113), - [anon_sym_rows] = ACTIONS(113), - [anon_sym_reverse] = ACTIONS(113), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [78] = { - [sym_block] = STATE(608), - [sym_statement] = STATE(10), - [sym_expression] = STATE(571), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(631), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(558), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(1817), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(265), - [aux_sym_block_repeat1] = STATE(10), - [sym_identifier] = ACTIONS(55), + [sym_block] = STATE(408), + [sym_statement] = STATE(11), + [sym_expression] = STATE(364), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(349), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1100), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(181), + [aux_sym_block_repeat1] = STATE(11), + [sym_identifier] = ACTIONS(115), [sym__comment] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(57), [anon_sym_LPAREN] = ACTIONS(59), @@ -15271,103 +13438,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(65), [anon_sym_false] = ACTIONS(65), [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = 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_asyncfor] = ACTIONS(91), - [anon_sym_transform] = ACTIONS(93), - [anon_sym_filter] = ACTIONS(95), - [anon_sym_find] = ACTIONS(97), - [anon_sym_remove] = ACTIONS(99), - [anon_sym_reduce] = ACTIONS(101), - [anon_sym_select] = ACTIONS(103), - [anon_sym_insert] = ACTIONS(105), - [anon_sym_async] = ACTIONS(107), + [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(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_EQ_GT] = ACTIONS(123), + [anon_sym_while] = ACTIONS(125), + [anon_sym_for] = ACTIONS(127), + [anon_sym_asyncfor] = ACTIONS(129), + [anon_sym_transform] = ACTIONS(131), + [anon_sym_filter] = ACTIONS(133), + [anon_sym_find] = ACTIONS(135), + [anon_sym_remove] = ACTIONS(137), + [anon_sym_reduce] = ACTIONS(139), + [anon_sym_select] = ACTIONS(141), + [anon_sym_insert] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(111), - [anon_sym_assert] = ACTIONS(113), - [anon_sym_assert_equal] = ACTIONS(113), - [anon_sym_download] = ACTIONS(113), - [anon_sym_help] = ACTIONS(113), - [anon_sym_length] = ACTIONS(113), - [anon_sym_output] = ACTIONS(113), - [anon_sym_output_error] = ACTIONS(113), - [anon_sym_type] = ACTIONS(113), - [anon_sym_append] = ACTIONS(113), - [anon_sym_metadata] = ACTIONS(113), - [anon_sym_move] = ACTIONS(113), - [anon_sym_read] = ACTIONS(113), - [anon_sym_workdir] = ACTIONS(113), - [anon_sym_write] = ACTIONS(113), - [anon_sym_from_json] = ACTIONS(113), - [anon_sym_to_json] = ACTIONS(113), - [anon_sym_to_string] = ACTIONS(113), - [anon_sym_to_float] = ACTIONS(113), - [anon_sym_bash] = ACTIONS(113), - [anon_sym_fish] = ACTIONS(113), - [anon_sym_raw] = ACTIONS(113), - [anon_sym_sh] = ACTIONS(113), - [anon_sym_zsh] = ACTIONS(113), - [anon_sym_random] = ACTIONS(113), - [anon_sym_random_boolean] = ACTIONS(113), - [anon_sym_random_float] = ACTIONS(113), - [anon_sym_random_integer] = ACTIONS(113), - [anon_sym_columns] = ACTIONS(113), - [anon_sym_rows] = ACTIONS(113), - [anon_sym_reverse] = ACTIONS(113), + [anon_sym_table] = ACTIONS(147), + [anon_sym_assert] = ACTIONS(149), + [anon_sym_assert_equal] = ACTIONS(149), + [anon_sym_download] = ACTIONS(149), + [anon_sym_help] = ACTIONS(149), + [anon_sym_length] = ACTIONS(149), + [anon_sym_output] = ACTIONS(149), + [anon_sym_output_error] = ACTIONS(149), + [anon_sym_type] = ACTIONS(149), + [anon_sym_append] = ACTIONS(149), + [anon_sym_metadata] = ACTIONS(149), + [anon_sym_move] = ACTIONS(149), + [anon_sym_read] = ACTIONS(149), + [anon_sym_workdir] = ACTIONS(149), + [anon_sym_write] = ACTIONS(149), + [anon_sym_from_json] = ACTIONS(149), + [anon_sym_to_json] = ACTIONS(149), + [anon_sym_to_string] = ACTIONS(149), + [anon_sym_to_float] = ACTIONS(149), + [anon_sym_bash] = ACTIONS(149), + [anon_sym_fish] = ACTIONS(149), + [anon_sym_raw] = ACTIONS(149), + [anon_sym_sh] = ACTIONS(149), + [anon_sym_zsh] = ACTIONS(149), + [anon_sym_random] = ACTIONS(149), + [anon_sym_random_boolean] = ACTIONS(149), + [anon_sym_random_float] = ACTIONS(149), + [anon_sym_random_integer] = ACTIONS(149), + [anon_sym_columns] = ACTIONS(149), + [anon_sym_rows] = ACTIONS(149), + [anon_sym_reverse] = ACTIONS(149), }, [79] = { - [sym_block] = STATE(598), - [sym_statement] = STATE(10), - [sym_expression] = STATE(571), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(631), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(558), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(1817), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(265), - [aux_sym_block_repeat1] = STATE(10), + [sym_block] = STATE(403), + [sym_statement] = STATE(11), + [sym_expression] = STATE(364), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(349), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1100), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(181), + [aux_sym_block_repeat1] = STATE(11), + [sym_identifier] = ACTIONS(115), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(869), + [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(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_EQ_GT] = ACTIONS(123), + [anon_sym_while] = ACTIONS(125), + [anon_sym_for] = ACTIONS(127), + [anon_sym_asyncfor] = ACTIONS(129), + [anon_sym_transform] = ACTIONS(131), + [anon_sym_filter] = ACTIONS(133), + [anon_sym_find] = ACTIONS(135), + [anon_sym_remove] = ACTIONS(137), + [anon_sym_reduce] = ACTIONS(139), + [anon_sym_select] = ACTIONS(141), + [anon_sym_insert] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(147), + [anon_sym_assert] = ACTIONS(149), + [anon_sym_assert_equal] = ACTIONS(149), + [anon_sym_download] = ACTIONS(149), + [anon_sym_help] = ACTIONS(149), + [anon_sym_length] = ACTIONS(149), + [anon_sym_output] = ACTIONS(149), + [anon_sym_output_error] = ACTIONS(149), + [anon_sym_type] = ACTIONS(149), + [anon_sym_append] = ACTIONS(149), + [anon_sym_metadata] = ACTIONS(149), + [anon_sym_move] = ACTIONS(149), + [anon_sym_read] = ACTIONS(149), + [anon_sym_workdir] = ACTIONS(149), + [anon_sym_write] = ACTIONS(149), + [anon_sym_from_json] = ACTIONS(149), + [anon_sym_to_json] = ACTIONS(149), + [anon_sym_to_string] = ACTIONS(149), + [anon_sym_to_float] = ACTIONS(149), + [anon_sym_bash] = ACTIONS(149), + [anon_sym_fish] = ACTIONS(149), + [anon_sym_raw] = ACTIONS(149), + [anon_sym_sh] = ACTIONS(149), + [anon_sym_zsh] = ACTIONS(149), + [anon_sym_random] = ACTIONS(149), + [anon_sym_random_boolean] = ACTIONS(149), + [anon_sym_random_float] = ACTIONS(149), + [anon_sym_random_integer] = ACTIONS(149), + [anon_sym_columns] = ACTIONS(149), + [anon_sym_rows] = ACTIONS(149), + [anon_sym_reverse] = ACTIONS(149), + }, + [80] = { + [sym_block] = STATE(424), + [sym_statement] = STATE(8), + [sym_expression] = STATE(355), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(346), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1225), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(170), + [aux_sym_block_repeat1] = STATE(8), [sym_identifier] = ACTIONS(55), [sym__comment] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(57), @@ -15378,21 +13652,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(65), [anon_sym_false] = ACTIONS(65), [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(81), + [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), @@ -15439,901 +13713,794 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_rows] = ACTIONS(113), [anon_sym_reverse] = ACTIONS(113), }, - [80] = { - [sym_block] = STATE(813), - [sym_statement] = STATE(33), - [sym_expression] = STATE(732), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(620), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(654), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1841), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(315), - [aux_sym_block_repeat1] = STATE(33), - [sym_identifier] = ACTIONS(623), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(627), - [anon_sym_match] = ACTIONS(629), - [anon_sym_EQ_GT] = ACTIONS(631), - [anon_sym_while] = ACTIONS(633), - [anon_sym_for] = ACTIONS(635), - [anon_sym_asyncfor] = ACTIONS(637), - [anon_sym_transform] = ACTIONS(639), - [anon_sym_filter] = ACTIONS(641), - [anon_sym_find] = ACTIONS(643), - [anon_sym_remove] = ACTIONS(645), - [anon_sym_reduce] = ACTIONS(647), - [anon_sym_select] = ACTIONS(649), - [anon_sym_insert] = ACTIONS(651), - [anon_sym_async] = ACTIONS(653), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(655), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_assert_equal] = ACTIONS(657), - [anon_sym_download] = ACTIONS(657), - [anon_sym_help] = ACTIONS(657), - [anon_sym_length] = ACTIONS(657), - [anon_sym_output] = ACTIONS(657), - [anon_sym_output_error] = ACTIONS(657), - [anon_sym_type] = ACTIONS(657), - [anon_sym_append] = ACTIONS(657), - [anon_sym_metadata] = ACTIONS(657), - [anon_sym_move] = ACTIONS(657), - [anon_sym_read] = ACTIONS(657), - [anon_sym_workdir] = ACTIONS(657), - [anon_sym_write] = ACTIONS(657), - [anon_sym_from_json] = ACTIONS(657), - [anon_sym_to_json] = ACTIONS(657), - [anon_sym_to_string] = ACTIONS(657), - [anon_sym_to_float] = ACTIONS(657), - [anon_sym_bash] = ACTIONS(657), - [anon_sym_fish] = ACTIONS(657), - [anon_sym_raw] = ACTIONS(657), - [anon_sym_sh] = ACTIONS(657), - [anon_sym_zsh] = ACTIONS(657), - [anon_sym_random] = ACTIONS(657), - [anon_sym_random_boolean] = ACTIONS(657), - [anon_sym_random_float] = ACTIONS(657), - [anon_sym_random_integer] = ACTIONS(657), - [anon_sym_columns] = ACTIONS(657), - [anon_sym_rows] = ACTIONS(657), - [anon_sym_reverse] = ACTIONS(657), - }, [81] = { - [sym_block] = STATE(812), - [sym_statement] = STATE(33), - [sym_expression] = STATE(732), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(620), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(654), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1841), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(315), - [aux_sym_block_repeat1] = STATE(33), - [sym_identifier] = ACTIONS(623), + [sym_block] = STATE(488), + [sym_statement] = STATE(32), + [sym_expression] = STATE(516), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(433), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [aux_sym_block_repeat1] = STATE(32), + [sym_identifier] = ACTIONS(867), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(189), + [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(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(627), - [anon_sym_match] = ACTIONS(629), - [anon_sym_EQ_GT] = ACTIONS(631), - [anon_sym_while] = ACTIONS(633), - [anon_sym_for] = ACTIONS(635), - [anon_sym_asyncfor] = ACTIONS(637), - [anon_sym_transform] = ACTIONS(639), - [anon_sym_filter] = ACTIONS(641), - [anon_sym_find] = ACTIONS(643), - [anon_sym_remove] = ACTIONS(645), - [anon_sym_reduce] = ACTIONS(647), - [anon_sym_select] = ACTIONS(649), - [anon_sym_insert] = ACTIONS(651), - [anon_sym_async] = ACTIONS(653), + [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(227), + [anon_sym_match] = ACTIONS(871), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(873), + [anon_sym_for] = ACTIONS(875), + [anon_sym_asyncfor] = ACTIONS(877), + [anon_sym_transform] = ACTIONS(879), + [anon_sym_filter] = ACTIONS(881), + [anon_sym_find] = ACTIONS(883), + [anon_sym_remove] = ACTIONS(885), + [anon_sym_reduce] = ACTIONS(887), + [anon_sym_select] = ACTIONS(889), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(891), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(655), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_assert_equal] = ACTIONS(657), - [anon_sym_download] = ACTIONS(657), - [anon_sym_help] = ACTIONS(657), - [anon_sym_length] = ACTIONS(657), - [anon_sym_output] = ACTIONS(657), - [anon_sym_output_error] = ACTIONS(657), - [anon_sym_type] = ACTIONS(657), - [anon_sym_append] = ACTIONS(657), - [anon_sym_metadata] = ACTIONS(657), - [anon_sym_move] = ACTIONS(657), - [anon_sym_read] = ACTIONS(657), - [anon_sym_workdir] = ACTIONS(657), - [anon_sym_write] = ACTIONS(657), - [anon_sym_from_json] = ACTIONS(657), - [anon_sym_to_json] = ACTIONS(657), - [anon_sym_to_string] = ACTIONS(657), - [anon_sym_to_float] = ACTIONS(657), - [anon_sym_bash] = ACTIONS(657), - [anon_sym_fish] = ACTIONS(657), - [anon_sym_raw] = ACTIONS(657), - [anon_sym_sh] = ACTIONS(657), - [anon_sym_zsh] = ACTIONS(657), - [anon_sym_random] = ACTIONS(657), - [anon_sym_random_boolean] = ACTIONS(657), - [anon_sym_random_float] = ACTIONS(657), - [anon_sym_random_integer] = ACTIONS(657), - [anon_sym_columns] = ACTIONS(657), - [anon_sym_rows] = ACTIONS(657), - [anon_sym_reverse] = ACTIONS(657), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [82] = { - [sym_block] = STATE(810), - [sym_statement] = STATE(33), - [sym_expression] = STATE(732), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(620), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(654), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1841), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(315), - [aux_sym_block_repeat1] = STATE(33), - [sym_identifier] = ACTIONS(623), + [sym_block] = STATE(639), + [sym_statement] = STATE(225), + [sym_expression] = STATE(547), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(571), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [aux_sym_block_repeat1] = STATE(225), + [sym_identifier] = ACTIONS(941), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), + [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(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(627), - [anon_sym_match] = ACTIONS(629), - [anon_sym_EQ_GT] = ACTIONS(631), - [anon_sym_while] = ACTIONS(633), - [anon_sym_for] = ACTIONS(635), - [anon_sym_asyncfor] = ACTIONS(637), - [anon_sym_transform] = ACTIONS(639), - [anon_sym_filter] = ACTIONS(641), - [anon_sym_find] = ACTIONS(643), - [anon_sym_remove] = ACTIONS(645), - [anon_sym_reduce] = ACTIONS(647), - [anon_sym_select] = ACTIONS(649), - [anon_sym_insert] = ACTIONS(651), - [anon_sym_async] = ACTIONS(653), + [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(449), + [anon_sym_match] = ACTIONS(943), + [anon_sym_EQ_GT] = ACTIONS(265), + [anon_sym_while] = ACTIONS(945), + [anon_sym_for] = ACTIONS(947), + [anon_sym_asyncfor] = ACTIONS(949), + [anon_sym_transform] = ACTIONS(951), + [anon_sym_filter] = ACTIONS(953), + [anon_sym_find] = ACTIONS(955), + [anon_sym_remove] = ACTIONS(957), + [anon_sym_reduce] = ACTIONS(959), + [anon_sym_select] = ACTIONS(961), + [anon_sym_insert] = ACTIONS(285), + [anon_sym_async] = ACTIONS(963), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(655), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_assert_equal] = ACTIONS(657), - [anon_sym_download] = ACTIONS(657), - [anon_sym_help] = ACTIONS(657), - [anon_sym_length] = ACTIONS(657), - [anon_sym_output] = ACTIONS(657), - [anon_sym_output_error] = ACTIONS(657), - [anon_sym_type] = ACTIONS(657), - [anon_sym_append] = ACTIONS(657), - [anon_sym_metadata] = ACTIONS(657), - [anon_sym_move] = ACTIONS(657), - [anon_sym_read] = ACTIONS(657), - [anon_sym_workdir] = ACTIONS(657), - [anon_sym_write] = ACTIONS(657), - [anon_sym_from_json] = ACTIONS(657), - [anon_sym_to_json] = ACTIONS(657), - [anon_sym_to_string] = ACTIONS(657), - [anon_sym_to_float] = ACTIONS(657), - [anon_sym_bash] = ACTIONS(657), - [anon_sym_fish] = ACTIONS(657), - [anon_sym_raw] = ACTIONS(657), - [anon_sym_sh] = ACTIONS(657), - [anon_sym_zsh] = ACTIONS(657), - [anon_sym_random] = ACTIONS(657), - [anon_sym_random_boolean] = ACTIONS(657), - [anon_sym_random_float] = ACTIONS(657), - [anon_sym_random_integer] = ACTIONS(657), - [anon_sym_columns] = ACTIONS(657), - [anon_sym_rows] = ACTIONS(657), - [anon_sym_reverse] = ACTIONS(657), + [anon_sym_table] = ACTIONS(289), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_assert_equal] = ACTIONS(291), + [anon_sym_download] = ACTIONS(291), + [anon_sym_help] = ACTIONS(291), + [anon_sym_length] = ACTIONS(291), + [anon_sym_output] = ACTIONS(291), + [anon_sym_output_error] = ACTIONS(291), + [anon_sym_type] = ACTIONS(291), + [anon_sym_append] = ACTIONS(291), + [anon_sym_metadata] = ACTIONS(291), + [anon_sym_move] = ACTIONS(291), + [anon_sym_read] = ACTIONS(291), + [anon_sym_workdir] = ACTIONS(291), + [anon_sym_write] = ACTIONS(291), + [anon_sym_from_json] = ACTIONS(291), + [anon_sym_to_json] = ACTIONS(291), + [anon_sym_to_string] = ACTIONS(291), + [anon_sym_to_float] = ACTIONS(291), + [anon_sym_bash] = ACTIONS(291), + [anon_sym_fish] = ACTIONS(291), + [anon_sym_raw] = ACTIONS(291), + [anon_sym_sh] = ACTIONS(291), + [anon_sym_zsh] = ACTIONS(291), + [anon_sym_random] = ACTIONS(291), + [anon_sym_random_boolean] = ACTIONS(291), + [anon_sym_random_float] = ACTIONS(291), + [anon_sym_random_integer] = ACTIONS(291), + [anon_sym_columns] = ACTIONS(291), + [anon_sym_rows] = ACTIONS(291), + [anon_sym_reverse] = ACTIONS(291), }, [83] = { - [sym_block] = STATE(809), - [sym_statement] = STATE(33), - [sym_expression] = STATE(732), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(620), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(654), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1841), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(315), - [aux_sym_block_repeat1] = STATE(33), - [sym_identifier] = ACTIONS(623), + [sym_block] = STATE(489), + [sym_statement] = STATE(17), + [sym_expression] = STATE(402), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(348), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1104), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(17), + [sym_identifier] = ACTIONS(187), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(189), + [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(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(627), - [anon_sym_match] = ACTIONS(629), - [anon_sym_EQ_GT] = ACTIONS(631), - [anon_sym_while] = ACTIONS(633), - [anon_sym_for] = ACTIONS(635), - [anon_sym_asyncfor] = ACTIONS(637), - [anon_sym_transform] = ACTIONS(639), - [anon_sym_filter] = ACTIONS(641), - [anon_sym_find] = ACTIONS(643), - [anon_sym_remove] = ACTIONS(645), - [anon_sym_reduce] = ACTIONS(647), - [anon_sym_select] = ACTIONS(649), - [anon_sym_insert] = ACTIONS(651), - [anon_sym_async] = ACTIONS(653), + [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(193), + [anon_sym_EQ_GT] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_for] = ACTIONS(199), + [anon_sym_asyncfor] = ACTIONS(201), + [anon_sym_transform] = ACTIONS(203), + [anon_sym_filter] = ACTIONS(205), + [anon_sym_find] = ACTIONS(207), + [anon_sym_remove] = ACTIONS(209), + [anon_sym_reduce] = ACTIONS(211), + [anon_sym_select] = ACTIONS(213), + [anon_sym_insert] = ACTIONS(215), + [anon_sym_async] = ACTIONS(217), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(655), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_assert_equal] = ACTIONS(657), - [anon_sym_download] = ACTIONS(657), - [anon_sym_help] = ACTIONS(657), - [anon_sym_length] = ACTIONS(657), - [anon_sym_output] = ACTIONS(657), - [anon_sym_output_error] = ACTIONS(657), - [anon_sym_type] = ACTIONS(657), - [anon_sym_append] = ACTIONS(657), - [anon_sym_metadata] = ACTIONS(657), - [anon_sym_move] = ACTIONS(657), - [anon_sym_read] = ACTIONS(657), - [anon_sym_workdir] = ACTIONS(657), - [anon_sym_write] = ACTIONS(657), - [anon_sym_from_json] = ACTIONS(657), - [anon_sym_to_json] = ACTIONS(657), - [anon_sym_to_string] = ACTIONS(657), - [anon_sym_to_float] = ACTIONS(657), - [anon_sym_bash] = ACTIONS(657), - [anon_sym_fish] = ACTIONS(657), - [anon_sym_raw] = ACTIONS(657), - [anon_sym_sh] = ACTIONS(657), - [anon_sym_zsh] = ACTIONS(657), - [anon_sym_random] = ACTIONS(657), - [anon_sym_random_boolean] = ACTIONS(657), - [anon_sym_random_float] = ACTIONS(657), - [anon_sym_random_integer] = ACTIONS(657), - [anon_sym_columns] = ACTIONS(657), - [anon_sym_rows] = ACTIONS(657), - [anon_sym_reverse] = ACTIONS(657), + [anon_sym_table] = ACTIONS(219), + [anon_sym_assert] = ACTIONS(221), + [anon_sym_assert_equal] = ACTIONS(221), + [anon_sym_download] = ACTIONS(221), + [anon_sym_help] = ACTIONS(221), + [anon_sym_length] = ACTIONS(221), + [anon_sym_output] = ACTIONS(221), + [anon_sym_output_error] = ACTIONS(221), + [anon_sym_type] = ACTIONS(221), + [anon_sym_append] = ACTIONS(221), + [anon_sym_metadata] = ACTIONS(221), + [anon_sym_move] = ACTIONS(221), + [anon_sym_read] = ACTIONS(221), + [anon_sym_workdir] = ACTIONS(221), + [anon_sym_write] = ACTIONS(221), + [anon_sym_from_json] = ACTIONS(221), + [anon_sym_to_json] = ACTIONS(221), + [anon_sym_to_string] = ACTIONS(221), + [anon_sym_to_float] = ACTIONS(221), + [anon_sym_bash] = ACTIONS(221), + [anon_sym_fish] = ACTIONS(221), + [anon_sym_raw] = ACTIONS(221), + [anon_sym_sh] = ACTIONS(221), + [anon_sym_zsh] = ACTIONS(221), + [anon_sym_random] = ACTIONS(221), + [anon_sym_random_boolean] = ACTIONS(221), + [anon_sym_random_float] = ACTIONS(221), + [anon_sym_random_integer] = ACTIONS(221), + [anon_sym_columns] = ACTIONS(221), + [anon_sym_rows] = ACTIONS(221), + [anon_sym_reverse] = ACTIONS(221), }, [84] = { - [sym_block] = STATE(808), - [sym_statement] = STATE(33), - [sym_expression] = STATE(732), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(620), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(654), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1841), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(315), - [aux_sym_block_repeat1] = STATE(33), - [sym_identifier] = ACTIONS(623), + [sym_block] = STATE(486), + [sym_statement] = STATE(32), + [sym_expression] = STATE(516), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(433), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [aux_sym_block_repeat1] = STATE(32), + [sym_identifier] = ACTIONS(867), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(189), + [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(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(627), - [anon_sym_match] = ACTIONS(629), - [anon_sym_EQ_GT] = ACTIONS(631), - [anon_sym_while] = ACTIONS(633), - [anon_sym_for] = ACTIONS(635), - [anon_sym_asyncfor] = ACTIONS(637), - [anon_sym_transform] = ACTIONS(639), - [anon_sym_filter] = ACTIONS(641), - [anon_sym_find] = ACTIONS(643), - [anon_sym_remove] = ACTIONS(645), - [anon_sym_reduce] = ACTIONS(647), - [anon_sym_select] = ACTIONS(649), - [anon_sym_insert] = ACTIONS(651), - [anon_sym_async] = ACTIONS(653), + [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(227), + [anon_sym_match] = ACTIONS(871), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(873), + [anon_sym_for] = ACTIONS(875), + [anon_sym_asyncfor] = ACTIONS(877), + [anon_sym_transform] = ACTIONS(879), + [anon_sym_filter] = ACTIONS(881), + [anon_sym_find] = ACTIONS(883), + [anon_sym_remove] = ACTIONS(885), + [anon_sym_reduce] = ACTIONS(887), + [anon_sym_select] = ACTIONS(889), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(891), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(655), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_assert_equal] = ACTIONS(657), - [anon_sym_download] = ACTIONS(657), - [anon_sym_help] = ACTIONS(657), - [anon_sym_length] = ACTIONS(657), - [anon_sym_output] = ACTIONS(657), - [anon_sym_output_error] = ACTIONS(657), - [anon_sym_type] = ACTIONS(657), - [anon_sym_append] = ACTIONS(657), - [anon_sym_metadata] = ACTIONS(657), - [anon_sym_move] = ACTIONS(657), - [anon_sym_read] = ACTIONS(657), - [anon_sym_workdir] = ACTIONS(657), - [anon_sym_write] = ACTIONS(657), - [anon_sym_from_json] = ACTIONS(657), - [anon_sym_to_json] = ACTIONS(657), - [anon_sym_to_string] = ACTIONS(657), - [anon_sym_to_float] = ACTIONS(657), - [anon_sym_bash] = ACTIONS(657), - [anon_sym_fish] = ACTIONS(657), - [anon_sym_raw] = ACTIONS(657), - [anon_sym_sh] = ACTIONS(657), - [anon_sym_zsh] = ACTIONS(657), - [anon_sym_random] = ACTIONS(657), - [anon_sym_random_boolean] = ACTIONS(657), - [anon_sym_random_float] = ACTIONS(657), - [anon_sym_random_integer] = ACTIONS(657), - [anon_sym_columns] = ACTIONS(657), - [anon_sym_rows] = ACTIONS(657), - [anon_sym_reverse] = ACTIONS(657), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [85] = { - [sym_block] = STATE(806), - [sym_statement] = STATE(33), - [sym_expression] = STATE(732), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(620), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(654), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1841), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(315), - [aux_sym_block_repeat1] = STATE(33), - [sym_identifier] = ACTIONS(623), + [sym_block] = STATE(399), + [sym_statement] = STATE(11), + [sym_expression] = STATE(364), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(349), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1100), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(181), + [aux_sym_block_repeat1] = STATE(11), + [sym_identifier] = ACTIONS(115), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(627), - [anon_sym_match] = ACTIONS(629), - [anon_sym_EQ_GT] = ACTIONS(631), - [anon_sym_while] = ACTIONS(633), - [anon_sym_for] = ACTIONS(635), - [anon_sym_asyncfor] = ACTIONS(637), - [anon_sym_transform] = ACTIONS(639), - [anon_sym_filter] = ACTIONS(641), - [anon_sym_find] = ACTIONS(643), - [anon_sym_remove] = ACTIONS(645), - [anon_sym_reduce] = ACTIONS(647), - [anon_sym_select] = ACTIONS(649), - [anon_sym_insert] = ACTIONS(651), - [anon_sym_async] = ACTIONS(653), + [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(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_EQ_GT] = ACTIONS(123), + [anon_sym_while] = ACTIONS(125), + [anon_sym_for] = ACTIONS(127), + [anon_sym_asyncfor] = ACTIONS(129), + [anon_sym_transform] = ACTIONS(131), + [anon_sym_filter] = ACTIONS(133), + [anon_sym_find] = ACTIONS(135), + [anon_sym_remove] = ACTIONS(137), + [anon_sym_reduce] = ACTIONS(139), + [anon_sym_select] = ACTIONS(141), + [anon_sym_insert] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(655), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_assert_equal] = ACTIONS(657), - [anon_sym_download] = ACTIONS(657), - [anon_sym_help] = ACTIONS(657), - [anon_sym_length] = ACTIONS(657), - [anon_sym_output] = ACTIONS(657), - [anon_sym_output_error] = ACTIONS(657), - [anon_sym_type] = ACTIONS(657), - [anon_sym_append] = ACTIONS(657), - [anon_sym_metadata] = ACTIONS(657), - [anon_sym_move] = ACTIONS(657), - [anon_sym_read] = ACTIONS(657), - [anon_sym_workdir] = ACTIONS(657), - [anon_sym_write] = ACTIONS(657), - [anon_sym_from_json] = ACTIONS(657), - [anon_sym_to_json] = ACTIONS(657), - [anon_sym_to_string] = ACTIONS(657), - [anon_sym_to_float] = ACTIONS(657), - [anon_sym_bash] = ACTIONS(657), - [anon_sym_fish] = ACTIONS(657), - [anon_sym_raw] = ACTIONS(657), - [anon_sym_sh] = ACTIONS(657), - [anon_sym_zsh] = ACTIONS(657), - [anon_sym_random] = ACTIONS(657), - [anon_sym_random_boolean] = ACTIONS(657), - [anon_sym_random_float] = ACTIONS(657), - [anon_sym_random_integer] = ACTIONS(657), - [anon_sym_columns] = ACTIONS(657), - [anon_sym_rows] = ACTIONS(657), - [anon_sym_reverse] = ACTIONS(657), + [anon_sym_table] = ACTIONS(147), + [anon_sym_assert] = ACTIONS(149), + [anon_sym_assert_equal] = ACTIONS(149), + [anon_sym_download] = ACTIONS(149), + [anon_sym_help] = ACTIONS(149), + [anon_sym_length] = ACTIONS(149), + [anon_sym_output] = ACTIONS(149), + [anon_sym_output_error] = ACTIONS(149), + [anon_sym_type] = ACTIONS(149), + [anon_sym_append] = ACTIONS(149), + [anon_sym_metadata] = ACTIONS(149), + [anon_sym_move] = ACTIONS(149), + [anon_sym_read] = ACTIONS(149), + [anon_sym_workdir] = ACTIONS(149), + [anon_sym_write] = ACTIONS(149), + [anon_sym_from_json] = ACTIONS(149), + [anon_sym_to_json] = ACTIONS(149), + [anon_sym_to_string] = ACTIONS(149), + [anon_sym_to_float] = ACTIONS(149), + [anon_sym_bash] = ACTIONS(149), + [anon_sym_fish] = ACTIONS(149), + [anon_sym_raw] = ACTIONS(149), + [anon_sym_sh] = ACTIONS(149), + [anon_sym_zsh] = ACTIONS(149), + [anon_sym_random] = ACTIONS(149), + [anon_sym_random_boolean] = ACTIONS(149), + [anon_sym_random_float] = ACTIONS(149), + [anon_sym_random_integer] = ACTIONS(149), + [anon_sym_columns] = ACTIONS(149), + [anon_sym_rows] = ACTIONS(149), + [anon_sym_reverse] = ACTIONS(149), }, [86] = { - [sym_block] = STATE(804), - [sym_statement] = STATE(33), - [sym_expression] = STATE(732), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(620), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(654), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1841), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(315), - [aux_sym_block_repeat1] = STATE(33), - [sym_identifier] = ACTIONS(623), + [sym_block] = STATE(420), + [sym_statement] = STATE(11), + [sym_expression] = STATE(364), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(349), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1100), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(181), + [aux_sym_block_repeat1] = STATE(11), + [sym_identifier] = ACTIONS(115), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(627), - [anon_sym_match] = ACTIONS(629), - [anon_sym_EQ_GT] = ACTIONS(631), - [anon_sym_while] = ACTIONS(633), - [anon_sym_for] = ACTIONS(635), - [anon_sym_asyncfor] = ACTIONS(637), - [anon_sym_transform] = ACTIONS(639), - [anon_sym_filter] = ACTIONS(641), - [anon_sym_find] = ACTIONS(643), - [anon_sym_remove] = ACTIONS(645), - [anon_sym_reduce] = ACTIONS(647), - [anon_sym_select] = ACTIONS(649), - [anon_sym_insert] = ACTIONS(651), - [anon_sym_async] = ACTIONS(653), + [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(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_EQ_GT] = ACTIONS(123), + [anon_sym_while] = ACTIONS(125), + [anon_sym_for] = ACTIONS(127), + [anon_sym_asyncfor] = ACTIONS(129), + [anon_sym_transform] = ACTIONS(131), + [anon_sym_filter] = ACTIONS(133), + [anon_sym_find] = ACTIONS(135), + [anon_sym_remove] = ACTIONS(137), + [anon_sym_reduce] = ACTIONS(139), + [anon_sym_select] = ACTIONS(141), + [anon_sym_insert] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(655), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_assert_equal] = ACTIONS(657), - [anon_sym_download] = ACTIONS(657), - [anon_sym_help] = ACTIONS(657), - [anon_sym_length] = ACTIONS(657), - [anon_sym_output] = ACTIONS(657), - [anon_sym_output_error] = ACTIONS(657), - [anon_sym_type] = ACTIONS(657), - [anon_sym_append] = ACTIONS(657), - [anon_sym_metadata] = ACTIONS(657), - [anon_sym_move] = ACTIONS(657), - [anon_sym_read] = ACTIONS(657), - [anon_sym_workdir] = ACTIONS(657), - [anon_sym_write] = ACTIONS(657), - [anon_sym_from_json] = ACTIONS(657), - [anon_sym_to_json] = ACTIONS(657), - [anon_sym_to_string] = ACTIONS(657), - [anon_sym_to_float] = ACTIONS(657), - [anon_sym_bash] = ACTIONS(657), - [anon_sym_fish] = ACTIONS(657), - [anon_sym_raw] = ACTIONS(657), - [anon_sym_sh] = ACTIONS(657), - [anon_sym_zsh] = ACTIONS(657), - [anon_sym_random] = ACTIONS(657), - [anon_sym_random_boolean] = ACTIONS(657), - [anon_sym_random_float] = ACTIONS(657), - [anon_sym_random_integer] = ACTIONS(657), - [anon_sym_columns] = ACTIONS(657), - [anon_sym_rows] = ACTIONS(657), - [anon_sym_reverse] = ACTIONS(657), + [anon_sym_table] = ACTIONS(147), + [anon_sym_assert] = ACTIONS(149), + [anon_sym_assert_equal] = ACTIONS(149), + [anon_sym_download] = ACTIONS(149), + [anon_sym_help] = ACTIONS(149), + [anon_sym_length] = ACTIONS(149), + [anon_sym_output] = ACTIONS(149), + [anon_sym_output_error] = ACTIONS(149), + [anon_sym_type] = ACTIONS(149), + [anon_sym_append] = ACTIONS(149), + [anon_sym_metadata] = ACTIONS(149), + [anon_sym_move] = ACTIONS(149), + [anon_sym_read] = ACTIONS(149), + [anon_sym_workdir] = ACTIONS(149), + [anon_sym_write] = ACTIONS(149), + [anon_sym_from_json] = ACTIONS(149), + [anon_sym_to_json] = ACTIONS(149), + [anon_sym_to_string] = ACTIONS(149), + [anon_sym_to_float] = ACTIONS(149), + [anon_sym_bash] = ACTIONS(149), + [anon_sym_fish] = ACTIONS(149), + [anon_sym_raw] = ACTIONS(149), + [anon_sym_sh] = ACTIONS(149), + [anon_sym_zsh] = ACTIONS(149), + [anon_sym_random] = ACTIONS(149), + [anon_sym_random_boolean] = ACTIONS(149), + [anon_sym_random_float] = ACTIONS(149), + [anon_sym_random_integer] = ACTIONS(149), + [anon_sym_columns] = ACTIONS(149), + [anon_sym_rows] = ACTIONS(149), + [anon_sym_reverse] = ACTIONS(149), }, [87] = { - [sym_block] = STATE(816), - [sym_statement] = STATE(33), - [sym_expression] = STATE(732), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(620), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(654), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1841), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(315), - [aux_sym_block_repeat1] = STATE(33), - [sym_identifier] = ACTIONS(623), + [sym_block] = STATE(435), + [sym_statement] = STATE(11), + [sym_expression] = STATE(364), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(349), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1100), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(181), + [aux_sym_block_repeat1] = STATE(11), + [sym_identifier] = ACTIONS(115), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(627), - [anon_sym_match] = ACTIONS(629), - [anon_sym_EQ_GT] = ACTIONS(631), - [anon_sym_while] = ACTIONS(633), - [anon_sym_for] = ACTIONS(635), - [anon_sym_asyncfor] = ACTIONS(637), - [anon_sym_transform] = ACTIONS(639), - [anon_sym_filter] = ACTIONS(641), - [anon_sym_find] = ACTIONS(643), - [anon_sym_remove] = ACTIONS(645), - [anon_sym_reduce] = ACTIONS(647), - [anon_sym_select] = ACTIONS(649), - [anon_sym_insert] = ACTIONS(651), - [anon_sym_async] = ACTIONS(653), + [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(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_EQ_GT] = ACTIONS(123), + [anon_sym_while] = ACTIONS(125), + [anon_sym_for] = ACTIONS(127), + [anon_sym_asyncfor] = ACTIONS(129), + [anon_sym_transform] = ACTIONS(131), + [anon_sym_filter] = ACTIONS(133), + [anon_sym_find] = ACTIONS(135), + [anon_sym_remove] = ACTIONS(137), + [anon_sym_reduce] = ACTIONS(139), + [anon_sym_select] = ACTIONS(141), + [anon_sym_insert] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(655), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_assert_equal] = ACTIONS(657), - [anon_sym_download] = ACTIONS(657), - [anon_sym_help] = ACTIONS(657), - [anon_sym_length] = ACTIONS(657), - [anon_sym_output] = ACTIONS(657), - [anon_sym_output_error] = ACTIONS(657), - [anon_sym_type] = ACTIONS(657), - [anon_sym_append] = ACTIONS(657), - [anon_sym_metadata] = ACTIONS(657), - [anon_sym_move] = ACTIONS(657), - [anon_sym_read] = ACTIONS(657), - [anon_sym_workdir] = ACTIONS(657), - [anon_sym_write] = ACTIONS(657), - [anon_sym_from_json] = ACTIONS(657), - [anon_sym_to_json] = ACTIONS(657), - [anon_sym_to_string] = ACTIONS(657), - [anon_sym_to_float] = ACTIONS(657), - [anon_sym_bash] = ACTIONS(657), - [anon_sym_fish] = ACTIONS(657), - [anon_sym_raw] = ACTIONS(657), - [anon_sym_sh] = ACTIONS(657), - [anon_sym_zsh] = ACTIONS(657), - [anon_sym_random] = ACTIONS(657), - [anon_sym_random_boolean] = ACTIONS(657), - [anon_sym_random_float] = ACTIONS(657), - [anon_sym_random_integer] = ACTIONS(657), - [anon_sym_columns] = ACTIONS(657), - [anon_sym_rows] = ACTIONS(657), - [anon_sym_reverse] = ACTIONS(657), + [anon_sym_table] = ACTIONS(147), + [anon_sym_assert] = ACTIONS(149), + [anon_sym_assert_equal] = ACTIONS(149), + [anon_sym_download] = ACTIONS(149), + [anon_sym_help] = ACTIONS(149), + [anon_sym_length] = ACTIONS(149), + [anon_sym_output] = ACTIONS(149), + [anon_sym_output_error] = ACTIONS(149), + [anon_sym_type] = ACTIONS(149), + [anon_sym_append] = ACTIONS(149), + [anon_sym_metadata] = ACTIONS(149), + [anon_sym_move] = ACTIONS(149), + [anon_sym_read] = ACTIONS(149), + [anon_sym_workdir] = ACTIONS(149), + [anon_sym_write] = ACTIONS(149), + [anon_sym_from_json] = ACTIONS(149), + [anon_sym_to_json] = ACTIONS(149), + [anon_sym_to_string] = ACTIONS(149), + [anon_sym_to_float] = ACTIONS(149), + [anon_sym_bash] = ACTIONS(149), + [anon_sym_fish] = ACTIONS(149), + [anon_sym_raw] = ACTIONS(149), + [anon_sym_sh] = ACTIONS(149), + [anon_sym_zsh] = ACTIONS(149), + [anon_sym_random] = ACTIONS(149), + [anon_sym_random_boolean] = ACTIONS(149), + [anon_sym_random_float] = ACTIONS(149), + [anon_sym_random_integer] = ACTIONS(149), + [anon_sym_columns] = ACTIONS(149), + [anon_sym_rows] = ACTIONS(149), + [anon_sym_reverse] = ACTIONS(149), }, [88] = { - [sym_block] = STATE(879), - [sym_statement] = STATE(46), - [sym_expression] = STATE(824), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(739), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(653), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [aux_sym_block_repeat1] = STATE(46), - [sym_identifier] = ACTIONS(1198), + [sym_block] = STATE(1012), + [sym_statement] = STATE(221), + [sym_expression] = STATE(547), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(571), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [aux_sym_block_repeat1] = STATE(221), + [sym_identifier] = ACTIONS(941), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(1013), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -16341,106 +14508,106 @@ 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(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(627), - [anon_sym_match] = ACTIONS(1202), - [anon_sym_EQ_GT] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(1206), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_asyncfor] = ACTIONS(1210), - [anon_sym_transform] = ACTIONS(1212), - [anon_sym_filter] = ACTIONS(1214), - [anon_sym_find] = ACTIONS(1216), - [anon_sym_remove] = ACTIONS(1218), - [anon_sym_reduce] = ACTIONS(1220), - [anon_sym_select] = ACTIONS(1222), - [anon_sym_insert] = ACTIONS(1224), - [anon_sym_async] = ACTIONS(1226), + [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(449), + [anon_sym_match] = ACTIONS(943), + [anon_sym_EQ_GT] = ACTIONS(265), + [anon_sym_while] = ACTIONS(945), + [anon_sym_for] = ACTIONS(947), + [anon_sym_asyncfor] = ACTIONS(949), + [anon_sym_transform] = ACTIONS(951), + [anon_sym_filter] = ACTIONS(953), + [anon_sym_find] = ACTIONS(955), + [anon_sym_remove] = ACTIONS(957), + [anon_sym_reduce] = ACTIONS(959), + [anon_sym_select] = ACTIONS(961), + [anon_sym_insert] = ACTIONS(285), + [anon_sym_async] = ACTIONS(963), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1228), - [anon_sym_assert] = ACTIONS(1230), - [anon_sym_assert_equal] = ACTIONS(1230), - [anon_sym_download] = ACTIONS(1230), - [anon_sym_help] = ACTIONS(1230), - [anon_sym_length] = ACTIONS(1230), - [anon_sym_output] = ACTIONS(1230), - [anon_sym_output_error] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_append] = ACTIONS(1230), - [anon_sym_metadata] = ACTIONS(1230), - [anon_sym_move] = ACTIONS(1230), - [anon_sym_read] = ACTIONS(1230), - [anon_sym_workdir] = ACTIONS(1230), - [anon_sym_write] = ACTIONS(1230), - [anon_sym_from_json] = ACTIONS(1230), - [anon_sym_to_json] = ACTIONS(1230), - [anon_sym_to_string] = ACTIONS(1230), - [anon_sym_to_float] = ACTIONS(1230), - [anon_sym_bash] = ACTIONS(1230), - [anon_sym_fish] = ACTIONS(1230), - [anon_sym_raw] = ACTIONS(1230), - [anon_sym_sh] = ACTIONS(1230), - [anon_sym_zsh] = ACTIONS(1230), - [anon_sym_random] = ACTIONS(1230), - [anon_sym_random_boolean] = ACTIONS(1230), - [anon_sym_random_float] = ACTIONS(1230), - [anon_sym_random_integer] = ACTIONS(1230), - [anon_sym_columns] = ACTIONS(1230), - [anon_sym_rows] = ACTIONS(1230), - [anon_sym_reverse] = ACTIONS(1230), + [anon_sym_table] = ACTIONS(289), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_assert_equal] = ACTIONS(291), + [anon_sym_download] = ACTIONS(291), + [anon_sym_help] = ACTIONS(291), + [anon_sym_length] = ACTIONS(291), + [anon_sym_output] = ACTIONS(291), + [anon_sym_output_error] = ACTIONS(291), + [anon_sym_type] = ACTIONS(291), + [anon_sym_append] = ACTIONS(291), + [anon_sym_metadata] = ACTIONS(291), + [anon_sym_move] = ACTIONS(291), + [anon_sym_read] = ACTIONS(291), + [anon_sym_workdir] = ACTIONS(291), + [anon_sym_write] = ACTIONS(291), + [anon_sym_from_json] = ACTIONS(291), + [anon_sym_to_json] = ACTIONS(291), + [anon_sym_to_string] = ACTIONS(291), + [anon_sym_to_float] = ACTIONS(291), + [anon_sym_bash] = ACTIONS(291), + [anon_sym_fish] = ACTIONS(291), + [anon_sym_raw] = ACTIONS(291), + [anon_sym_sh] = ACTIONS(291), + [anon_sym_zsh] = ACTIONS(291), + [anon_sym_random] = ACTIONS(291), + [anon_sym_random_boolean] = ACTIONS(291), + [anon_sym_random_float] = ACTIONS(291), + [anon_sym_random_integer] = ACTIONS(291), + [anon_sym_columns] = ACTIONS(291), + [anon_sym_rows] = ACTIONS(291), + [anon_sym_reverse] = ACTIONS(291), }, [89] = { - [sym_block] = STATE(840), - [sym_statement] = STATE(46), - [sym_expression] = STATE(824), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(739), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(653), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [aux_sym_block_repeat1] = STATE(46), - [sym_identifier] = ACTIONS(1198), + [sym_block] = STATE(490), + [sym_statement] = STATE(17), + [sym_expression] = STATE(402), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(348), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1104), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(17), + [sym_identifier] = ACTIONS(187), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -16448,106 +14615,106 @@ 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(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(627), - [anon_sym_match] = ACTIONS(1202), - [anon_sym_EQ_GT] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(1206), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_asyncfor] = ACTIONS(1210), - [anon_sym_transform] = ACTIONS(1212), - [anon_sym_filter] = ACTIONS(1214), - [anon_sym_find] = ACTIONS(1216), - [anon_sym_remove] = ACTIONS(1218), - [anon_sym_reduce] = ACTIONS(1220), - [anon_sym_select] = ACTIONS(1222), - [anon_sym_insert] = ACTIONS(1224), - [anon_sym_async] = ACTIONS(1226), + [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(193), + [anon_sym_EQ_GT] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_for] = ACTIONS(199), + [anon_sym_asyncfor] = ACTIONS(201), + [anon_sym_transform] = ACTIONS(203), + [anon_sym_filter] = ACTIONS(205), + [anon_sym_find] = ACTIONS(207), + [anon_sym_remove] = ACTIONS(209), + [anon_sym_reduce] = ACTIONS(211), + [anon_sym_select] = ACTIONS(213), + [anon_sym_insert] = ACTIONS(215), + [anon_sym_async] = ACTIONS(217), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1228), - [anon_sym_assert] = ACTIONS(1230), - [anon_sym_assert_equal] = ACTIONS(1230), - [anon_sym_download] = ACTIONS(1230), - [anon_sym_help] = ACTIONS(1230), - [anon_sym_length] = ACTIONS(1230), - [anon_sym_output] = ACTIONS(1230), - [anon_sym_output_error] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_append] = ACTIONS(1230), - [anon_sym_metadata] = ACTIONS(1230), - [anon_sym_move] = ACTIONS(1230), - [anon_sym_read] = ACTIONS(1230), - [anon_sym_workdir] = ACTIONS(1230), - [anon_sym_write] = ACTIONS(1230), - [anon_sym_from_json] = ACTIONS(1230), - [anon_sym_to_json] = ACTIONS(1230), - [anon_sym_to_string] = ACTIONS(1230), - [anon_sym_to_float] = ACTIONS(1230), - [anon_sym_bash] = ACTIONS(1230), - [anon_sym_fish] = ACTIONS(1230), - [anon_sym_raw] = ACTIONS(1230), - [anon_sym_sh] = ACTIONS(1230), - [anon_sym_zsh] = ACTIONS(1230), - [anon_sym_random] = ACTIONS(1230), - [anon_sym_random_boolean] = ACTIONS(1230), - [anon_sym_random_float] = ACTIONS(1230), - [anon_sym_random_integer] = ACTIONS(1230), - [anon_sym_columns] = ACTIONS(1230), - [anon_sym_rows] = ACTIONS(1230), - [anon_sym_reverse] = ACTIONS(1230), + [anon_sym_table] = ACTIONS(219), + [anon_sym_assert] = ACTIONS(221), + [anon_sym_assert_equal] = ACTIONS(221), + [anon_sym_download] = ACTIONS(221), + [anon_sym_help] = ACTIONS(221), + [anon_sym_length] = ACTIONS(221), + [anon_sym_output] = ACTIONS(221), + [anon_sym_output_error] = ACTIONS(221), + [anon_sym_type] = ACTIONS(221), + [anon_sym_append] = ACTIONS(221), + [anon_sym_metadata] = ACTIONS(221), + [anon_sym_move] = ACTIONS(221), + [anon_sym_read] = ACTIONS(221), + [anon_sym_workdir] = ACTIONS(221), + [anon_sym_write] = ACTIONS(221), + [anon_sym_from_json] = ACTIONS(221), + [anon_sym_to_json] = ACTIONS(221), + [anon_sym_to_string] = ACTIONS(221), + [anon_sym_to_float] = ACTIONS(221), + [anon_sym_bash] = ACTIONS(221), + [anon_sym_fish] = ACTIONS(221), + [anon_sym_raw] = ACTIONS(221), + [anon_sym_sh] = ACTIONS(221), + [anon_sym_zsh] = ACTIONS(221), + [anon_sym_random] = ACTIONS(221), + [anon_sym_random_boolean] = ACTIONS(221), + [anon_sym_random_float] = ACTIONS(221), + [anon_sym_random_integer] = ACTIONS(221), + [anon_sym_columns] = ACTIONS(221), + [anon_sym_rows] = ACTIONS(221), + [anon_sym_reverse] = ACTIONS(221), }, [90] = { - [sym_block] = STATE(880), - [sym_statement] = STATE(46), - [sym_expression] = STATE(824), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(739), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(653), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [aux_sym_block_repeat1] = STATE(46), - [sym_identifier] = ACTIONS(1198), + [sym_block] = STATE(486), + [sym_statement] = STATE(28), + [sym_expression] = STATE(479), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(365), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1119), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(218), + [aux_sym_block_repeat1] = STATE(28), + [sym_identifier] = ACTIONS(524), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -16555,106 +14722,106 @@ 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(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(627), - [anon_sym_match] = ACTIONS(1202), - [anon_sym_EQ_GT] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(1206), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_asyncfor] = ACTIONS(1210), - [anon_sym_transform] = ACTIONS(1212), - [anon_sym_filter] = ACTIONS(1214), - [anon_sym_find] = ACTIONS(1216), - [anon_sym_remove] = ACTIONS(1218), - [anon_sym_reduce] = ACTIONS(1220), - [anon_sym_select] = ACTIONS(1222), - [anon_sym_insert] = ACTIONS(1224), - [anon_sym_async] = ACTIONS(1226), + [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(155), + [anon_sym_match] = ACTIONS(528), + [anon_sym_EQ_GT] = ACTIONS(530), + [anon_sym_while] = ACTIONS(532), + [anon_sym_for] = ACTIONS(534), + [anon_sym_asyncfor] = ACTIONS(536), + [anon_sym_transform] = ACTIONS(538), + [anon_sym_filter] = ACTIONS(540), + [anon_sym_find] = ACTIONS(542), + [anon_sym_remove] = ACTIONS(544), + [anon_sym_reduce] = ACTIONS(546), + [anon_sym_select] = ACTIONS(548), + [anon_sym_insert] = ACTIONS(550), + [anon_sym_async] = ACTIONS(552), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1228), - [anon_sym_assert] = ACTIONS(1230), - [anon_sym_assert_equal] = ACTIONS(1230), - [anon_sym_download] = ACTIONS(1230), - [anon_sym_help] = ACTIONS(1230), - [anon_sym_length] = ACTIONS(1230), - [anon_sym_output] = ACTIONS(1230), - [anon_sym_output_error] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_append] = ACTIONS(1230), - [anon_sym_metadata] = ACTIONS(1230), - [anon_sym_move] = ACTIONS(1230), - [anon_sym_read] = ACTIONS(1230), - [anon_sym_workdir] = ACTIONS(1230), - [anon_sym_write] = ACTIONS(1230), - [anon_sym_from_json] = ACTIONS(1230), - [anon_sym_to_json] = ACTIONS(1230), - [anon_sym_to_string] = ACTIONS(1230), - [anon_sym_to_float] = ACTIONS(1230), - [anon_sym_bash] = ACTIONS(1230), - [anon_sym_fish] = ACTIONS(1230), - [anon_sym_raw] = ACTIONS(1230), - [anon_sym_sh] = ACTIONS(1230), - [anon_sym_zsh] = ACTIONS(1230), - [anon_sym_random] = ACTIONS(1230), - [anon_sym_random_boolean] = ACTIONS(1230), - [anon_sym_random_float] = ACTIONS(1230), - [anon_sym_random_integer] = ACTIONS(1230), - [anon_sym_columns] = ACTIONS(1230), - [anon_sym_rows] = ACTIONS(1230), - [anon_sym_reverse] = ACTIONS(1230), + [anon_sym_table] = ACTIONS(554), + [anon_sym_assert] = ACTIONS(556), + [anon_sym_assert_equal] = ACTIONS(556), + [anon_sym_download] = ACTIONS(556), + [anon_sym_help] = ACTIONS(556), + [anon_sym_length] = ACTIONS(556), + [anon_sym_output] = ACTIONS(556), + [anon_sym_output_error] = ACTIONS(556), + [anon_sym_type] = ACTIONS(556), + [anon_sym_append] = ACTIONS(556), + [anon_sym_metadata] = ACTIONS(556), + [anon_sym_move] = ACTIONS(556), + [anon_sym_read] = ACTIONS(556), + [anon_sym_workdir] = ACTIONS(556), + [anon_sym_write] = ACTIONS(556), + [anon_sym_from_json] = ACTIONS(556), + [anon_sym_to_json] = ACTIONS(556), + [anon_sym_to_string] = ACTIONS(556), + [anon_sym_to_float] = ACTIONS(556), + [anon_sym_bash] = ACTIONS(556), + [anon_sym_fish] = ACTIONS(556), + [anon_sym_raw] = ACTIONS(556), + [anon_sym_sh] = ACTIONS(556), + [anon_sym_zsh] = ACTIONS(556), + [anon_sym_random] = ACTIONS(556), + [anon_sym_random_boolean] = ACTIONS(556), + [anon_sym_random_float] = ACTIONS(556), + [anon_sym_random_integer] = ACTIONS(556), + [anon_sym_columns] = ACTIONS(556), + [anon_sym_rows] = ACTIONS(556), + [anon_sym_reverse] = ACTIONS(556), }, [91] = { - [sym_block] = STATE(873), - [sym_statement] = STATE(46), - [sym_expression] = STATE(824), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(739), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(653), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [aux_sym_block_repeat1] = STATE(46), - [sym_identifier] = ACTIONS(1198), + [sym_block] = STATE(485), + [sym_statement] = STATE(32), + [sym_expression] = STATE(516), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(433), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [aux_sym_block_repeat1] = STATE(32), + [sym_identifier] = ACTIONS(867), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -16662,106 +14829,106 @@ 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(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(627), - [anon_sym_match] = ACTIONS(1202), - [anon_sym_EQ_GT] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(1206), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_asyncfor] = ACTIONS(1210), - [anon_sym_transform] = ACTIONS(1212), - [anon_sym_filter] = ACTIONS(1214), - [anon_sym_find] = ACTIONS(1216), - [anon_sym_remove] = ACTIONS(1218), - [anon_sym_reduce] = ACTIONS(1220), - [anon_sym_select] = ACTIONS(1222), - [anon_sym_insert] = ACTIONS(1224), - [anon_sym_async] = ACTIONS(1226), + [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(227), + [anon_sym_match] = ACTIONS(871), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(873), + [anon_sym_for] = ACTIONS(875), + [anon_sym_asyncfor] = ACTIONS(877), + [anon_sym_transform] = ACTIONS(879), + [anon_sym_filter] = ACTIONS(881), + [anon_sym_find] = ACTIONS(883), + [anon_sym_remove] = ACTIONS(885), + [anon_sym_reduce] = ACTIONS(887), + [anon_sym_select] = ACTIONS(889), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(891), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1228), - [anon_sym_assert] = ACTIONS(1230), - [anon_sym_assert_equal] = ACTIONS(1230), - [anon_sym_download] = ACTIONS(1230), - [anon_sym_help] = ACTIONS(1230), - [anon_sym_length] = ACTIONS(1230), - [anon_sym_output] = ACTIONS(1230), - [anon_sym_output_error] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_append] = ACTIONS(1230), - [anon_sym_metadata] = ACTIONS(1230), - [anon_sym_move] = ACTIONS(1230), - [anon_sym_read] = ACTIONS(1230), - [anon_sym_workdir] = ACTIONS(1230), - [anon_sym_write] = ACTIONS(1230), - [anon_sym_from_json] = ACTIONS(1230), - [anon_sym_to_json] = ACTIONS(1230), - [anon_sym_to_string] = ACTIONS(1230), - [anon_sym_to_float] = ACTIONS(1230), - [anon_sym_bash] = ACTIONS(1230), - [anon_sym_fish] = ACTIONS(1230), - [anon_sym_raw] = ACTIONS(1230), - [anon_sym_sh] = ACTIONS(1230), - [anon_sym_zsh] = ACTIONS(1230), - [anon_sym_random] = ACTIONS(1230), - [anon_sym_random_boolean] = ACTIONS(1230), - [anon_sym_random_float] = ACTIONS(1230), - [anon_sym_random_integer] = ACTIONS(1230), - [anon_sym_columns] = ACTIONS(1230), - [anon_sym_rows] = ACTIONS(1230), - [anon_sym_reverse] = ACTIONS(1230), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [92] = { - [sym_block] = STATE(846), - [sym_statement] = STATE(39), - [sym_expression] = STATE(756), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(657), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(627), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1752), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(338), - [aux_sym_block_repeat1] = STATE(39), - [sym_identifier] = ACTIONS(875), + [sym_block] = STATE(485), + [sym_statement] = STATE(28), + [sym_expression] = STATE(479), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(365), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1119), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(218), + [aux_sym_block_repeat1] = STATE(28), + [sym_identifier] = ACTIONS(524), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -16769,213 +14936,213 @@ 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(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(245), - [anon_sym_match] = ACTIONS(881), - [anon_sym_EQ_GT] = ACTIONS(883), - [anon_sym_while] = ACTIONS(885), - [anon_sym_for] = ACTIONS(887), - [anon_sym_asyncfor] = ACTIONS(889), - [anon_sym_transform] = ACTIONS(891), - [anon_sym_filter] = ACTIONS(893), - [anon_sym_find] = ACTIONS(895), - [anon_sym_remove] = ACTIONS(897), - [anon_sym_reduce] = ACTIONS(899), - [anon_sym_select] = ACTIONS(901), - [anon_sym_insert] = ACTIONS(903), - [anon_sym_async] = ACTIONS(905), + [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(155), + [anon_sym_match] = ACTIONS(528), + [anon_sym_EQ_GT] = ACTIONS(530), + [anon_sym_while] = ACTIONS(532), + [anon_sym_for] = ACTIONS(534), + [anon_sym_asyncfor] = ACTIONS(536), + [anon_sym_transform] = ACTIONS(538), + [anon_sym_filter] = ACTIONS(540), + [anon_sym_find] = ACTIONS(542), + [anon_sym_remove] = ACTIONS(544), + [anon_sym_reduce] = ACTIONS(546), + [anon_sym_select] = ACTIONS(548), + [anon_sym_insert] = ACTIONS(550), + [anon_sym_async] = ACTIONS(552), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(907), - [anon_sym_assert] = ACTIONS(909), - [anon_sym_assert_equal] = ACTIONS(909), - [anon_sym_download] = ACTIONS(909), - [anon_sym_help] = ACTIONS(909), - [anon_sym_length] = ACTIONS(909), - [anon_sym_output] = ACTIONS(909), - [anon_sym_output_error] = ACTIONS(909), - [anon_sym_type] = ACTIONS(909), - [anon_sym_append] = ACTIONS(909), - [anon_sym_metadata] = ACTIONS(909), - [anon_sym_move] = ACTIONS(909), - [anon_sym_read] = ACTIONS(909), - [anon_sym_workdir] = ACTIONS(909), - [anon_sym_write] = ACTIONS(909), - [anon_sym_from_json] = ACTIONS(909), - [anon_sym_to_json] = ACTIONS(909), - [anon_sym_to_string] = ACTIONS(909), - [anon_sym_to_float] = ACTIONS(909), - [anon_sym_bash] = ACTIONS(909), - [anon_sym_fish] = ACTIONS(909), - [anon_sym_raw] = ACTIONS(909), - [anon_sym_sh] = ACTIONS(909), - [anon_sym_zsh] = ACTIONS(909), - [anon_sym_random] = ACTIONS(909), - [anon_sym_random_boolean] = ACTIONS(909), - [anon_sym_random_float] = ACTIONS(909), - [anon_sym_random_integer] = ACTIONS(909), - [anon_sym_columns] = ACTIONS(909), - [anon_sym_rows] = ACTIONS(909), - [anon_sym_reverse] = ACTIONS(909), + [anon_sym_table] = ACTIONS(554), + [anon_sym_assert] = ACTIONS(556), + [anon_sym_assert_equal] = ACTIONS(556), + [anon_sym_download] = ACTIONS(556), + [anon_sym_help] = ACTIONS(556), + [anon_sym_length] = ACTIONS(556), + [anon_sym_output] = ACTIONS(556), + [anon_sym_output_error] = ACTIONS(556), + [anon_sym_type] = ACTIONS(556), + [anon_sym_append] = ACTIONS(556), + [anon_sym_metadata] = ACTIONS(556), + [anon_sym_move] = ACTIONS(556), + [anon_sym_read] = ACTIONS(556), + [anon_sym_workdir] = ACTIONS(556), + [anon_sym_write] = ACTIONS(556), + [anon_sym_from_json] = ACTIONS(556), + [anon_sym_to_json] = ACTIONS(556), + [anon_sym_to_string] = ACTIONS(556), + [anon_sym_to_float] = ACTIONS(556), + [anon_sym_bash] = ACTIONS(556), + [anon_sym_fish] = ACTIONS(556), + [anon_sym_raw] = ACTIONS(556), + [anon_sym_sh] = ACTIONS(556), + [anon_sym_zsh] = ACTIONS(556), + [anon_sym_random] = ACTIONS(556), + [anon_sym_random_boolean] = ACTIONS(556), + [anon_sym_random_float] = ACTIONS(556), + [anon_sym_random_integer] = ACTIONS(556), + [anon_sym_columns] = ACTIONS(556), + [anon_sym_rows] = ACTIONS(556), + [anon_sym_reverse] = ACTIONS(556), }, [93] = { - [sym_block] = STATE(871), - [sym_statement] = STATE(46), - [sym_expression] = STATE(824), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(739), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(653), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [aux_sym_block_repeat1] = STATE(46), - [sym_identifier] = ACTIONS(1198), + [sym_block] = STATE(384), + [sym_statement] = STATE(8), + [sym_expression] = STATE(355), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(346), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1225), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(170), + [aux_sym_block_repeat1] = STATE(8), + [sym_identifier] = ACTIONS(55), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(877), - [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(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(627), - [anon_sym_match] = ACTIONS(1202), - [anon_sym_EQ_GT] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(1206), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_asyncfor] = ACTIONS(1210), - [anon_sym_transform] = ACTIONS(1212), - [anon_sym_filter] = ACTIONS(1214), - [anon_sym_find] = ACTIONS(1216), - [anon_sym_remove] = ACTIONS(1218), - [anon_sym_reduce] = ACTIONS(1220), - [anon_sym_select] = ACTIONS(1222), - [anon_sym_insert] = ACTIONS(1224), - [anon_sym_async] = ACTIONS(1226), + [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_asyncfor] = ACTIONS(91), + [anon_sym_transform] = ACTIONS(93), + [anon_sym_filter] = ACTIONS(95), + [anon_sym_find] = ACTIONS(97), + [anon_sym_remove] = ACTIONS(99), + [anon_sym_reduce] = ACTIONS(101), + [anon_sym_select] = ACTIONS(103), + [anon_sym_insert] = ACTIONS(105), + [anon_sym_async] = ACTIONS(107), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1228), - [anon_sym_assert] = ACTIONS(1230), - [anon_sym_assert_equal] = ACTIONS(1230), - [anon_sym_download] = ACTIONS(1230), - [anon_sym_help] = ACTIONS(1230), - [anon_sym_length] = ACTIONS(1230), - [anon_sym_output] = ACTIONS(1230), - [anon_sym_output_error] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_append] = ACTIONS(1230), - [anon_sym_metadata] = ACTIONS(1230), - [anon_sym_move] = ACTIONS(1230), - [anon_sym_read] = ACTIONS(1230), - [anon_sym_workdir] = ACTIONS(1230), - [anon_sym_write] = ACTIONS(1230), - [anon_sym_from_json] = ACTIONS(1230), - [anon_sym_to_json] = ACTIONS(1230), - [anon_sym_to_string] = ACTIONS(1230), - [anon_sym_to_float] = ACTIONS(1230), - [anon_sym_bash] = ACTIONS(1230), - [anon_sym_fish] = ACTIONS(1230), - [anon_sym_raw] = ACTIONS(1230), - [anon_sym_sh] = ACTIONS(1230), - [anon_sym_zsh] = ACTIONS(1230), - [anon_sym_random] = ACTIONS(1230), - [anon_sym_random_boolean] = ACTIONS(1230), - [anon_sym_random_float] = ACTIONS(1230), - [anon_sym_random_integer] = ACTIONS(1230), - [anon_sym_columns] = ACTIONS(1230), - [anon_sym_rows] = ACTIONS(1230), - [anon_sym_reverse] = ACTIONS(1230), + [anon_sym_table] = ACTIONS(111), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_assert_equal] = ACTIONS(113), + [anon_sym_download] = ACTIONS(113), + [anon_sym_help] = ACTIONS(113), + [anon_sym_length] = ACTIONS(113), + [anon_sym_output] = ACTIONS(113), + [anon_sym_output_error] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_append] = ACTIONS(113), + [anon_sym_metadata] = ACTIONS(113), + [anon_sym_move] = ACTIONS(113), + [anon_sym_read] = ACTIONS(113), + [anon_sym_workdir] = ACTIONS(113), + [anon_sym_write] = ACTIONS(113), + [anon_sym_from_json] = ACTIONS(113), + [anon_sym_to_json] = ACTIONS(113), + [anon_sym_to_string] = ACTIONS(113), + [anon_sym_to_float] = ACTIONS(113), + [anon_sym_bash] = ACTIONS(113), + [anon_sym_fish] = ACTIONS(113), + [anon_sym_raw] = ACTIONS(113), + [anon_sym_sh] = ACTIONS(113), + [anon_sym_zsh] = ACTIONS(113), + [anon_sym_random] = ACTIONS(113), + [anon_sym_random_boolean] = ACTIONS(113), + [anon_sym_random_float] = ACTIONS(113), + [anon_sym_random_integer] = ACTIONS(113), + [anon_sym_columns] = ACTIONS(113), + [anon_sym_rows] = ACTIONS(113), + [anon_sym_reverse] = ACTIONS(113), }, [94] = { - [sym_block] = STATE(864), - [sym_statement] = STATE(46), - [sym_expression] = STATE(824), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(739), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(653), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [aux_sym_block_repeat1] = STATE(46), - [sym_identifier] = ACTIONS(1198), + [sym_block] = STATE(1025), + [sym_statement] = STATE(221), + [sym_expression] = STATE(547), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(571), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [aux_sym_block_repeat1] = STATE(221), + [sym_identifier] = ACTIONS(941), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(1013), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -16983,1709 +15150,1602 @@ 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(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(627), - [anon_sym_match] = ACTIONS(1202), - [anon_sym_EQ_GT] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(1206), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_asyncfor] = ACTIONS(1210), - [anon_sym_transform] = ACTIONS(1212), - [anon_sym_filter] = ACTIONS(1214), - [anon_sym_find] = ACTIONS(1216), - [anon_sym_remove] = ACTIONS(1218), - [anon_sym_reduce] = ACTIONS(1220), - [anon_sym_select] = ACTIONS(1222), - [anon_sym_insert] = ACTIONS(1224), - [anon_sym_async] = ACTIONS(1226), + [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(449), + [anon_sym_match] = ACTIONS(943), + [anon_sym_EQ_GT] = ACTIONS(265), + [anon_sym_while] = ACTIONS(945), + [anon_sym_for] = ACTIONS(947), + [anon_sym_asyncfor] = ACTIONS(949), + [anon_sym_transform] = ACTIONS(951), + [anon_sym_filter] = ACTIONS(953), + [anon_sym_find] = ACTIONS(955), + [anon_sym_remove] = ACTIONS(957), + [anon_sym_reduce] = ACTIONS(959), + [anon_sym_select] = ACTIONS(961), + [anon_sym_insert] = ACTIONS(285), + [anon_sym_async] = ACTIONS(963), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1228), - [anon_sym_assert] = ACTIONS(1230), - [anon_sym_assert_equal] = ACTIONS(1230), - [anon_sym_download] = ACTIONS(1230), - [anon_sym_help] = ACTIONS(1230), - [anon_sym_length] = ACTIONS(1230), - [anon_sym_output] = ACTIONS(1230), - [anon_sym_output_error] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_append] = ACTIONS(1230), - [anon_sym_metadata] = ACTIONS(1230), - [anon_sym_move] = ACTIONS(1230), - [anon_sym_read] = ACTIONS(1230), - [anon_sym_workdir] = ACTIONS(1230), - [anon_sym_write] = ACTIONS(1230), - [anon_sym_from_json] = ACTIONS(1230), - [anon_sym_to_json] = ACTIONS(1230), - [anon_sym_to_string] = ACTIONS(1230), - [anon_sym_to_float] = ACTIONS(1230), - [anon_sym_bash] = ACTIONS(1230), - [anon_sym_fish] = ACTIONS(1230), - [anon_sym_raw] = ACTIONS(1230), - [anon_sym_sh] = ACTIONS(1230), - [anon_sym_zsh] = ACTIONS(1230), - [anon_sym_random] = ACTIONS(1230), - [anon_sym_random_boolean] = ACTIONS(1230), - [anon_sym_random_float] = ACTIONS(1230), - [anon_sym_random_integer] = ACTIONS(1230), - [anon_sym_columns] = ACTIONS(1230), - [anon_sym_rows] = ACTIONS(1230), - [anon_sym_reverse] = ACTIONS(1230), + [anon_sym_table] = ACTIONS(289), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_assert_equal] = ACTIONS(291), + [anon_sym_download] = ACTIONS(291), + [anon_sym_help] = ACTIONS(291), + [anon_sym_length] = ACTIONS(291), + [anon_sym_output] = ACTIONS(291), + [anon_sym_output_error] = ACTIONS(291), + [anon_sym_type] = ACTIONS(291), + [anon_sym_append] = ACTIONS(291), + [anon_sym_metadata] = ACTIONS(291), + [anon_sym_move] = ACTIONS(291), + [anon_sym_read] = ACTIONS(291), + [anon_sym_workdir] = ACTIONS(291), + [anon_sym_write] = ACTIONS(291), + [anon_sym_from_json] = ACTIONS(291), + [anon_sym_to_json] = ACTIONS(291), + [anon_sym_to_string] = ACTIONS(291), + [anon_sym_to_float] = ACTIONS(291), + [anon_sym_bash] = ACTIONS(291), + [anon_sym_fish] = ACTIONS(291), + [anon_sym_raw] = ACTIONS(291), + [anon_sym_sh] = ACTIONS(291), + [anon_sym_zsh] = ACTIONS(291), + [anon_sym_random] = ACTIONS(291), + [anon_sym_random_boolean] = ACTIONS(291), + [anon_sym_random_float] = ACTIONS(291), + [anon_sym_random_integer] = ACTIONS(291), + [anon_sym_columns] = ACTIONS(291), + [anon_sym_rows] = ACTIONS(291), + [anon_sym_reverse] = ACTIONS(291), }, [95] = { - [sym_block] = STATE(863), - [sym_statement] = STATE(46), - [sym_expression] = STATE(824), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(739), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(653), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [aux_sym_block_repeat1] = STATE(46), - [sym_identifier] = ACTIONS(1198), + [sym_block] = STATE(424), + [sym_statement] = STATE(11), + [sym_expression] = STATE(364), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(349), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1100), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(181), + [aux_sym_block_repeat1] = STATE(11), + [sym_identifier] = ACTIONS(115), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(877), - [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(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(627), - [anon_sym_match] = ACTIONS(1202), - [anon_sym_EQ_GT] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(1206), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_asyncfor] = ACTIONS(1210), - [anon_sym_transform] = ACTIONS(1212), - [anon_sym_filter] = ACTIONS(1214), - [anon_sym_find] = ACTIONS(1216), - [anon_sym_remove] = ACTIONS(1218), - [anon_sym_reduce] = ACTIONS(1220), - [anon_sym_select] = ACTIONS(1222), - [anon_sym_insert] = ACTIONS(1224), - [anon_sym_async] = ACTIONS(1226), + [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(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_EQ_GT] = ACTIONS(123), + [anon_sym_while] = ACTIONS(125), + [anon_sym_for] = ACTIONS(127), + [anon_sym_asyncfor] = ACTIONS(129), + [anon_sym_transform] = ACTIONS(131), + [anon_sym_filter] = ACTIONS(133), + [anon_sym_find] = ACTIONS(135), + [anon_sym_remove] = ACTIONS(137), + [anon_sym_reduce] = ACTIONS(139), + [anon_sym_select] = ACTIONS(141), + [anon_sym_insert] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1228), - [anon_sym_assert] = ACTIONS(1230), - [anon_sym_assert_equal] = ACTIONS(1230), - [anon_sym_download] = ACTIONS(1230), - [anon_sym_help] = ACTIONS(1230), - [anon_sym_length] = ACTIONS(1230), - [anon_sym_output] = ACTIONS(1230), - [anon_sym_output_error] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_append] = ACTIONS(1230), - [anon_sym_metadata] = ACTIONS(1230), - [anon_sym_move] = ACTIONS(1230), - [anon_sym_read] = ACTIONS(1230), - [anon_sym_workdir] = ACTIONS(1230), - [anon_sym_write] = ACTIONS(1230), - [anon_sym_from_json] = ACTIONS(1230), - [anon_sym_to_json] = ACTIONS(1230), - [anon_sym_to_string] = ACTIONS(1230), - [anon_sym_to_float] = ACTIONS(1230), - [anon_sym_bash] = ACTIONS(1230), - [anon_sym_fish] = ACTIONS(1230), - [anon_sym_raw] = ACTIONS(1230), - [anon_sym_sh] = ACTIONS(1230), - [anon_sym_zsh] = ACTIONS(1230), - [anon_sym_random] = ACTIONS(1230), - [anon_sym_random_boolean] = ACTIONS(1230), - [anon_sym_random_float] = ACTIONS(1230), - [anon_sym_random_integer] = ACTIONS(1230), - [anon_sym_columns] = ACTIONS(1230), - [anon_sym_rows] = ACTIONS(1230), - [anon_sym_reverse] = ACTIONS(1230), + [anon_sym_table] = ACTIONS(147), + [anon_sym_assert] = ACTIONS(149), + [anon_sym_assert_equal] = ACTIONS(149), + [anon_sym_download] = ACTIONS(149), + [anon_sym_help] = ACTIONS(149), + [anon_sym_length] = ACTIONS(149), + [anon_sym_output] = ACTIONS(149), + [anon_sym_output_error] = ACTIONS(149), + [anon_sym_type] = ACTIONS(149), + [anon_sym_append] = ACTIONS(149), + [anon_sym_metadata] = ACTIONS(149), + [anon_sym_move] = ACTIONS(149), + [anon_sym_read] = ACTIONS(149), + [anon_sym_workdir] = ACTIONS(149), + [anon_sym_write] = ACTIONS(149), + [anon_sym_from_json] = ACTIONS(149), + [anon_sym_to_json] = ACTIONS(149), + [anon_sym_to_string] = ACTIONS(149), + [anon_sym_to_float] = ACTIONS(149), + [anon_sym_bash] = ACTIONS(149), + [anon_sym_fish] = ACTIONS(149), + [anon_sym_raw] = ACTIONS(149), + [anon_sym_sh] = ACTIONS(149), + [anon_sym_zsh] = ACTIONS(149), + [anon_sym_random] = ACTIONS(149), + [anon_sym_random_boolean] = ACTIONS(149), + [anon_sym_random_float] = ACTIONS(149), + [anon_sym_random_integer] = ACTIONS(149), + [anon_sym_columns] = ACTIONS(149), + [anon_sym_rows] = ACTIONS(149), + [anon_sym_reverse] = ACTIONS(149), }, [96] = { - [sym_block] = STATE(762), - [sym_statement] = STATE(33), - [sym_expression] = STATE(732), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(620), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(654), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1841), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(315), - [aux_sym_block_repeat1] = STATE(33), - [sym_identifier] = ACTIONS(623), + [sym_block] = STATE(385), + [sym_statement] = STATE(8), + [sym_expression] = STATE(355), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(346), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1225), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(170), + [aux_sym_block_repeat1] = STATE(8), + [sym_identifier] = ACTIONS(55), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(627), - [anon_sym_match] = ACTIONS(629), - [anon_sym_EQ_GT] = ACTIONS(631), - [anon_sym_while] = ACTIONS(633), - [anon_sym_for] = ACTIONS(635), - [anon_sym_asyncfor] = ACTIONS(637), - [anon_sym_transform] = ACTIONS(639), - [anon_sym_filter] = ACTIONS(641), - [anon_sym_find] = ACTIONS(643), - [anon_sym_remove] = ACTIONS(645), - [anon_sym_reduce] = ACTIONS(647), - [anon_sym_select] = ACTIONS(649), - [anon_sym_insert] = ACTIONS(651), - [anon_sym_async] = ACTIONS(653), + [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_asyncfor] = ACTIONS(91), + [anon_sym_transform] = ACTIONS(93), + [anon_sym_filter] = ACTIONS(95), + [anon_sym_find] = ACTIONS(97), + [anon_sym_remove] = ACTIONS(99), + [anon_sym_reduce] = ACTIONS(101), + [anon_sym_select] = ACTIONS(103), + [anon_sym_insert] = ACTIONS(105), + [anon_sym_async] = ACTIONS(107), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(655), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_assert_equal] = ACTIONS(657), - [anon_sym_download] = ACTIONS(657), - [anon_sym_help] = ACTIONS(657), - [anon_sym_length] = ACTIONS(657), - [anon_sym_output] = ACTIONS(657), - [anon_sym_output_error] = ACTIONS(657), - [anon_sym_type] = ACTIONS(657), - [anon_sym_append] = ACTIONS(657), - [anon_sym_metadata] = ACTIONS(657), - [anon_sym_move] = ACTIONS(657), - [anon_sym_read] = ACTIONS(657), - [anon_sym_workdir] = ACTIONS(657), - [anon_sym_write] = ACTIONS(657), - [anon_sym_from_json] = ACTIONS(657), - [anon_sym_to_json] = ACTIONS(657), - [anon_sym_to_string] = ACTIONS(657), - [anon_sym_to_float] = ACTIONS(657), - [anon_sym_bash] = ACTIONS(657), - [anon_sym_fish] = ACTIONS(657), - [anon_sym_raw] = ACTIONS(657), - [anon_sym_sh] = ACTIONS(657), - [anon_sym_zsh] = ACTIONS(657), - [anon_sym_random] = ACTIONS(657), - [anon_sym_random_boolean] = ACTIONS(657), - [anon_sym_random_float] = ACTIONS(657), - [anon_sym_random_integer] = ACTIONS(657), - [anon_sym_columns] = ACTIONS(657), - [anon_sym_rows] = ACTIONS(657), - [anon_sym_reverse] = ACTIONS(657), + [anon_sym_table] = ACTIONS(111), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_assert_equal] = ACTIONS(113), + [anon_sym_download] = ACTIONS(113), + [anon_sym_help] = ACTIONS(113), + [anon_sym_length] = ACTIONS(113), + [anon_sym_output] = ACTIONS(113), + [anon_sym_output_error] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_append] = ACTIONS(113), + [anon_sym_metadata] = ACTIONS(113), + [anon_sym_move] = ACTIONS(113), + [anon_sym_read] = ACTIONS(113), + [anon_sym_workdir] = ACTIONS(113), + [anon_sym_write] = ACTIONS(113), + [anon_sym_from_json] = ACTIONS(113), + [anon_sym_to_json] = ACTIONS(113), + [anon_sym_to_string] = ACTIONS(113), + [anon_sym_to_float] = ACTIONS(113), + [anon_sym_bash] = ACTIONS(113), + [anon_sym_fish] = ACTIONS(113), + [anon_sym_raw] = ACTIONS(113), + [anon_sym_sh] = ACTIONS(113), + [anon_sym_zsh] = ACTIONS(113), + [anon_sym_random] = ACTIONS(113), + [anon_sym_random_boolean] = ACTIONS(113), + [anon_sym_random_float] = ACTIONS(113), + [anon_sym_random_integer] = ACTIONS(113), + [anon_sym_columns] = ACTIONS(113), + [anon_sym_rows] = ACTIONS(113), + [anon_sym_reverse] = ACTIONS(113), }, [97] = { - [sym_block] = STATE(804), - [sym_statement] = STATE(38), - [sym_expression] = STATE(779), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(655), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(724), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1860), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(341), - [aux_sym_block_repeat1] = STATE(38), - [sym_identifier] = ACTIONS(839), + [sym_block] = STATE(1013), + [sym_statement] = STATE(221), + [sym_expression] = STATE(547), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(571), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [aux_sym_block_repeat1] = STATE(221), + [sym_identifier] = ACTIONS(941), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(1013), + [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(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(843), - [anon_sym_match] = ACTIONS(845), - [anon_sym_EQ_GT] = ACTIONS(847), - [anon_sym_while] = ACTIONS(849), - [anon_sym_for] = ACTIONS(851), - [anon_sym_asyncfor] = 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(867), - [anon_sym_async] = ACTIONS(869), + [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(449), + [anon_sym_match] = ACTIONS(943), + [anon_sym_EQ_GT] = ACTIONS(265), + [anon_sym_while] = ACTIONS(945), + [anon_sym_for] = ACTIONS(947), + [anon_sym_asyncfor] = ACTIONS(949), + [anon_sym_transform] = ACTIONS(951), + [anon_sym_filter] = ACTIONS(953), + [anon_sym_find] = ACTIONS(955), + [anon_sym_remove] = ACTIONS(957), + [anon_sym_reduce] = ACTIONS(959), + [anon_sym_select] = ACTIONS(961), + [anon_sym_insert] = ACTIONS(285), + [anon_sym_async] = ACTIONS(963), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(871), - [anon_sym_assert] = ACTIONS(873), - [anon_sym_assert_equal] = ACTIONS(873), - [anon_sym_download] = ACTIONS(873), - [anon_sym_help] = ACTIONS(873), - [anon_sym_length] = ACTIONS(873), - [anon_sym_output] = ACTIONS(873), - [anon_sym_output_error] = ACTIONS(873), - [anon_sym_type] = ACTIONS(873), - [anon_sym_append] = ACTIONS(873), - [anon_sym_metadata] = ACTIONS(873), - [anon_sym_move] = ACTIONS(873), - [anon_sym_read] = ACTIONS(873), - [anon_sym_workdir] = ACTIONS(873), - [anon_sym_write] = ACTIONS(873), - [anon_sym_from_json] = ACTIONS(873), - [anon_sym_to_json] = ACTIONS(873), - [anon_sym_to_string] = ACTIONS(873), - [anon_sym_to_float] = ACTIONS(873), - [anon_sym_bash] = ACTIONS(873), - [anon_sym_fish] = ACTIONS(873), - [anon_sym_raw] = ACTIONS(873), - [anon_sym_sh] = ACTIONS(873), - [anon_sym_zsh] = ACTIONS(873), - [anon_sym_random] = ACTIONS(873), - [anon_sym_random_boolean] = ACTIONS(873), - [anon_sym_random_float] = ACTIONS(873), - [anon_sym_random_integer] = ACTIONS(873), - [anon_sym_columns] = ACTIONS(873), - [anon_sym_rows] = ACTIONS(873), - [anon_sym_reverse] = ACTIONS(873), + [anon_sym_table] = ACTIONS(289), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_assert_equal] = ACTIONS(291), + [anon_sym_download] = ACTIONS(291), + [anon_sym_help] = ACTIONS(291), + [anon_sym_length] = ACTIONS(291), + [anon_sym_output] = ACTIONS(291), + [anon_sym_output_error] = ACTIONS(291), + [anon_sym_type] = ACTIONS(291), + [anon_sym_append] = ACTIONS(291), + [anon_sym_metadata] = ACTIONS(291), + [anon_sym_move] = ACTIONS(291), + [anon_sym_read] = ACTIONS(291), + [anon_sym_workdir] = ACTIONS(291), + [anon_sym_write] = ACTIONS(291), + [anon_sym_from_json] = ACTIONS(291), + [anon_sym_to_json] = ACTIONS(291), + [anon_sym_to_string] = ACTIONS(291), + [anon_sym_to_float] = ACTIONS(291), + [anon_sym_bash] = ACTIONS(291), + [anon_sym_fish] = ACTIONS(291), + [anon_sym_raw] = ACTIONS(291), + [anon_sym_sh] = ACTIONS(291), + [anon_sym_zsh] = ACTIONS(291), + [anon_sym_random] = ACTIONS(291), + [anon_sym_random_boolean] = ACTIONS(291), + [anon_sym_random_float] = ACTIONS(291), + [anon_sym_random_integer] = ACTIONS(291), + [anon_sym_columns] = ACTIONS(291), + [anon_sym_rows] = ACTIONS(291), + [anon_sym_reverse] = ACTIONS(291), }, [98] = { - [sym_block] = STATE(806), - [sym_statement] = STATE(38), - [sym_expression] = STATE(779), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(655), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(724), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1860), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(341), - [aux_sym_block_repeat1] = STATE(38), - [sym_identifier] = ACTIONS(839), + [sym_block] = STATE(485), + [sym_statement] = STATE(22), + [sym_expression] = STATE(449), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(353), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [aux_sym_block_repeat1] = STATE(22), + [sym_identifier] = ACTIONS(259), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(189), + [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(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(843), - [anon_sym_match] = ACTIONS(845), - [anon_sym_EQ_GT] = ACTIONS(847), - [anon_sym_while] = ACTIONS(849), - [anon_sym_for] = ACTIONS(851), - [anon_sym_asyncfor] = 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(867), - [anon_sym_async] = ACTIONS(869), + [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(119), + [anon_sym_match] = ACTIONS(263), + [anon_sym_EQ_GT] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_for] = ACTIONS(269), + [anon_sym_asyncfor] = ACTIONS(271), + [anon_sym_transform] = ACTIONS(273), + [anon_sym_filter] = ACTIONS(275), + [anon_sym_find] = ACTIONS(277), + [anon_sym_remove] = ACTIONS(279), + [anon_sym_reduce] = ACTIONS(281), + [anon_sym_select] = ACTIONS(283), + [anon_sym_insert] = ACTIONS(285), + [anon_sym_async] = ACTIONS(287), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(871), - [anon_sym_assert] = ACTIONS(873), - [anon_sym_assert_equal] = ACTIONS(873), - [anon_sym_download] = ACTIONS(873), - [anon_sym_help] = ACTIONS(873), - [anon_sym_length] = ACTIONS(873), - [anon_sym_output] = ACTIONS(873), - [anon_sym_output_error] = ACTIONS(873), - [anon_sym_type] = ACTIONS(873), - [anon_sym_append] = ACTIONS(873), - [anon_sym_metadata] = ACTIONS(873), - [anon_sym_move] = ACTIONS(873), - [anon_sym_read] = ACTIONS(873), - [anon_sym_workdir] = ACTIONS(873), - [anon_sym_write] = ACTIONS(873), - [anon_sym_from_json] = ACTIONS(873), - [anon_sym_to_json] = ACTIONS(873), - [anon_sym_to_string] = ACTIONS(873), - [anon_sym_to_float] = ACTIONS(873), - [anon_sym_bash] = ACTIONS(873), - [anon_sym_fish] = ACTIONS(873), - [anon_sym_raw] = ACTIONS(873), - [anon_sym_sh] = ACTIONS(873), - [anon_sym_zsh] = ACTIONS(873), - [anon_sym_random] = ACTIONS(873), - [anon_sym_random_boolean] = ACTIONS(873), - [anon_sym_random_float] = ACTIONS(873), - [anon_sym_random_integer] = ACTIONS(873), - [anon_sym_columns] = ACTIONS(873), - [anon_sym_rows] = ACTIONS(873), - [anon_sym_reverse] = ACTIONS(873), + [anon_sym_table] = ACTIONS(289), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_assert_equal] = ACTIONS(291), + [anon_sym_download] = ACTIONS(291), + [anon_sym_help] = ACTIONS(291), + [anon_sym_length] = ACTIONS(291), + [anon_sym_output] = ACTIONS(291), + [anon_sym_output_error] = ACTIONS(291), + [anon_sym_type] = ACTIONS(291), + [anon_sym_append] = ACTIONS(291), + [anon_sym_metadata] = ACTIONS(291), + [anon_sym_move] = ACTIONS(291), + [anon_sym_read] = ACTIONS(291), + [anon_sym_workdir] = ACTIONS(291), + [anon_sym_write] = ACTIONS(291), + [anon_sym_from_json] = ACTIONS(291), + [anon_sym_to_json] = ACTIONS(291), + [anon_sym_to_string] = ACTIONS(291), + [anon_sym_to_float] = ACTIONS(291), + [anon_sym_bash] = ACTIONS(291), + [anon_sym_fish] = ACTIONS(291), + [anon_sym_raw] = ACTIONS(291), + [anon_sym_sh] = ACTIONS(291), + [anon_sym_zsh] = ACTIONS(291), + [anon_sym_random] = ACTIONS(291), + [anon_sym_random_boolean] = ACTIONS(291), + [anon_sym_random_float] = ACTIONS(291), + [anon_sym_random_integer] = ACTIONS(291), + [anon_sym_columns] = ACTIONS(291), + [anon_sym_rows] = ACTIONS(291), + [anon_sym_reverse] = ACTIONS(291), }, [99] = { - [sym_block] = STATE(808), - [sym_statement] = STATE(38), - [sym_expression] = STATE(779), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(655), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(724), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1860), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(341), - [aux_sym_block_repeat1] = STATE(38), - [sym_identifier] = ACTIONS(839), + [sym_block] = STATE(486), + [sym_statement] = STATE(22), + [sym_expression] = STATE(449), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(353), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [aux_sym_block_repeat1] = STATE(22), + [sym_identifier] = ACTIONS(259), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(189), + [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(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(843), - [anon_sym_match] = ACTIONS(845), - [anon_sym_EQ_GT] = ACTIONS(847), - [anon_sym_while] = ACTIONS(849), - [anon_sym_for] = ACTIONS(851), - [anon_sym_asyncfor] = 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(867), - [anon_sym_async] = ACTIONS(869), + [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(119), + [anon_sym_match] = ACTIONS(263), + [anon_sym_EQ_GT] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_for] = ACTIONS(269), + [anon_sym_asyncfor] = ACTIONS(271), + [anon_sym_transform] = ACTIONS(273), + [anon_sym_filter] = ACTIONS(275), + [anon_sym_find] = ACTIONS(277), + [anon_sym_remove] = ACTIONS(279), + [anon_sym_reduce] = ACTIONS(281), + [anon_sym_select] = ACTIONS(283), + [anon_sym_insert] = ACTIONS(285), + [anon_sym_async] = ACTIONS(287), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(871), - [anon_sym_assert] = ACTIONS(873), - [anon_sym_assert_equal] = ACTIONS(873), - [anon_sym_download] = ACTIONS(873), - [anon_sym_help] = ACTIONS(873), - [anon_sym_length] = ACTIONS(873), - [anon_sym_output] = ACTIONS(873), - [anon_sym_output_error] = ACTIONS(873), - [anon_sym_type] = ACTIONS(873), - [anon_sym_append] = ACTIONS(873), - [anon_sym_metadata] = ACTIONS(873), - [anon_sym_move] = ACTIONS(873), - [anon_sym_read] = ACTIONS(873), - [anon_sym_workdir] = ACTIONS(873), - [anon_sym_write] = ACTIONS(873), - [anon_sym_from_json] = ACTIONS(873), - [anon_sym_to_json] = ACTIONS(873), - [anon_sym_to_string] = ACTIONS(873), - [anon_sym_to_float] = ACTIONS(873), - [anon_sym_bash] = ACTIONS(873), - [anon_sym_fish] = ACTIONS(873), - [anon_sym_raw] = ACTIONS(873), - [anon_sym_sh] = ACTIONS(873), - [anon_sym_zsh] = ACTIONS(873), - [anon_sym_random] = ACTIONS(873), - [anon_sym_random_boolean] = ACTIONS(873), - [anon_sym_random_float] = ACTIONS(873), - [anon_sym_random_integer] = ACTIONS(873), - [anon_sym_columns] = ACTIONS(873), - [anon_sym_rows] = ACTIONS(873), - [anon_sym_reverse] = ACTIONS(873), + [anon_sym_table] = ACTIONS(289), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_assert_equal] = ACTIONS(291), + [anon_sym_download] = ACTIONS(291), + [anon_sym_help] = ACTIONS(291), + [anon_sym_length] = ACTIONS(291), + [anon_sym_output] = ACTIONS(291), + [anon_sym_output_error] = ACTIONS(291), + [anon_sym_type] = ACTIONS(291), + [anon_sym_append] = ACTIONS(291), + [anon_sym_metadata] = ACTIONS(291), + [anon_sym_move] = ACTIONS(291), + [anon_sym_read] = ACTIONS(291), + [anon_sym_workdir] = ACTIONS(291), + [anon_sym_write] = ACTIONS(291), + [anon_sym_from_json] = ACTIONS(291), + [anon_sym_to_json] = ACTIONS(291), + [anon_sym_to_string] = ACTIONS(291), + [anon_sym_to_float] = ACTIONS(291), + [anon_sym_bash] = ACTIONS(291), + [anon_sym_fish] = ACTIONS(291), + [anon_sym_raw] = ACTIONS(291), + [anon_sym_sh] = ACTIONS(291), + [anon_sym_zsh] = ACTIONS(291), + [anon_sym_random] = ACTIONS(291), + [anon_sym_random_boolean] = ACTIONS(291), + [anon_sym_random_float] = ACTIONS(291), + [anon_sym_random_integer] = ACTIONS(291), + [anon_sym_columns] = ACTIONS(291), + [anon_sym_rows] = ACTIONS(291), + [anon_sym_reverse] = ACTIONS(291), }, [100] = { - [sym_block] = STATE(846), - [sym_statement] = STATE(46), - [sym_expression] = STATE(824), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(739), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(653), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [aux_sym_block_repeat1] = STATE(46), - [sym_identifier] = ACTIONS(1198), + [sym_block] = STATE(604), + [sym_statement] = STATE(199), + [sym_expression] = STATE(473), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(598), + [sym_if_else] = STATE(598), + [sym_if] = STATE(565), + [sym_match] = STATE(598), + [sym_while] = STATE(598), + [sym_for] = STATE(598), + [sym_transform] = STATE(598), + [sym_filter] = STATE(598), + [sym_find] = STATE(598), + [sym_remove] = STATE(598), + [sym_reduce] = STATE(598), + [sym_select] = STATE(598), + [sym_insert] = STATE(598), + [sym_async] = STATE(598), + [sym_identifier_list] = STATE(1085), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(203), + [aux_sym_block_repeat1] = STATE(199), + [sym_identifier] = ACTIONS(609), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(877), - [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(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(447), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(627), - [anon_sym_match] = ACTIONS(1202), - [anon_sym_EQ_GT] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(1206), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_asyncfor] = ACTIONS(1210), - [anon_sym_transform] = ACTIONS(1212), - [anon_sym_filter] = ACTIONS(1214), - [anon_sym_find] = ACTIONS(1216), - [anon_sym_remove] = ACTIONS(1218), - [anon_sym_reduce] = ACTIONS(1220), - [anon_sym_select] = ACTIONS(1222), - [anon_sym_insert] = ACTIONS(1224), - [anon_sym_async] = ACTIONS(1226), + [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(19), + [anon_sym_match] = ACTIONS(611), + [anon_sym_EQ_GT] = ACTIONS(231), + [anon_sym_while] = ACTIONS(613), + [anon_sym_for] = ACTIONS(615), + [anon_sym_asyncfor] = ACTIONS(617), + [anon_sym_transform] = ACTIONS(619), + [anon_sym_filter] = ACTIONS(621), + [anon_sym_find] = ACTIONS(623), + [anon_sym_remove] = ACTIONS(625), + [anon_sym_reduce] = ACTIONS(627), + [anon_sym_select] = ACTIONS(629), + [anon_sym_insert] = ACTIONS(251), + [anon_sym_async] = ACTIONS(631), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1228), - [anon_sym_assert] = ACTIONS(1230), - [anon_sym_assert_equal] = ACTIONS(1230), - [anon_sym_download] = ACTIONS(1230), - [anon_sym_help] = ACTIONS(1230), - [anon_sym_length] = ACTIONS(1230), - [anon_sym_output] = ACTIONS(1230), - [anon_sym_output_error] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_append] = ACTIONS(1230), - [anon_sym_metadata] = ACTIONS(1230), - [anon_sym_move] = ACTIONS(1230), - [anon_sym_read] = ACTIONS(1230), - [anon_sym_workdir] = ACTIONS(1230), - [anon_sym_write] = ACTIONS(1230), - [anon_sym_from_json] = ACTIONS(1230), - [anon_sym_to_json] = ACTIONS(1230), - [anon_sym_to_string] = ACTIONS(1230), - [anon_sym_to_float] = ACTIONS(1230), - [anon_sym_bash] = ACTIONS(1230), - [anon_sym_fish] = ACTIONS(1230), - [anon_sym_raw] = ACTIONS(1230), - [anon_sym_sh] = ACTIONS(1230), - [anon_sym_zsh] = ACTIONS(1230), - [anon_sym_random] = ACTIONS(1230), - [anon_sym_random_boolean] = ACTIONS(1230), - [anon_sym_random_float] = ACTIONS(1230), - [anon_sym_random_integer] = ACTIONS(1230), - [anon_sym_columns] = ACTIONS(1230), - [anon_sym_rows] = ACTIONS(1230), - [anon_sym_reverse] = ACTIONS(1230), + [anon_sym_table] = ACTIONS(255), + [anon_sym_assert] = ACTIONS(257), + [anon_sym_assert_equal] = ACTIONS(257), + [anon_sym_download] = ACTIONS(257), + [anon_sym_help] = ACTIONS(257), + [anon_sym_length] = ACTIONS(257), + [anon_sym_output] = ACTIONS(257), + [anon_sym_output_error] = ACTIONS(257), + [anon_sym_type] = ACTIONS(257), + [anon_sym_append] = ACTIONS(257), + [anon_sym_metadata] = ACTIONS(257), + [anon_sym_move] = ACTIONS(257), + [anon_sym_read] = ACTIONS(257), + [anon_sym_workdir] = ACTIONS(257), + [anon_sym_write] = ACTIONS(257), + [anon_sym_from_json] = ACTIONS(257), + [anon_sym_to_json] = ACTIONS(257), + [anon_sym_to_string] = ACTIONS(257), + [anon_sym_to_float] = ACTIONS(257), + [anon_sym_bash] = ACTIONS(257), + [anon_sym_fish] = ACTIONS(257), + [anon_sym_raw] = ACTIONS(257), + [anon_sym_sh] = ACTIONS(257), + [anon_sym_zsh] = ACTIONS(257), + [anon_sym_random] = ACTIONS(257), + [anon_sym_random_boolean] = ACTIONS(257), + [anon_sym_random_float] = ACTIONS(257), + [anon_sym_random_integer] = ACTIONS(257), + [anon_sym_columns] = ACTIONS(257), + [anon_sym_rows] = ACTIONS(257), + [anon_sym_reverse] = ACTIONS(257), }, [101] = { - [sym_block] = STATE(767), - [sym_statement] = STATE(33), - [sym_expression] = STATE(732), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(620), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(654), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1841), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(315), - [aux_sym_block_repeat1] = STATE(33), - [sym_identifier] = ACTIONS(623), + [sym_block] = STATE(646), + [sym_statement] = STATE(225), + [sym_expression] = STATE(547), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(571), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [aux_sym_block_repeat1] = STATE(225), + [sym_identifier] = ACTIONS(941), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), + [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(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(627), - [anon_sym_match] = ACTIONS(629), - [anon_sym_EQ_GT] = ACTIONS(631), - [anon_sym_while] = ACTIONS(633), - [anon_sym_for] = ACTIONS(635), - [anon_sym_asyncfor] = ACTIONS(637), - [anon_sym_transform] = ACTIONS(639), - [anon_sym_filter] = ACTIONS(641), - [anon_sym_find] = ACTIONS(643), - [anon_sym_remove] = ACTIONS(645), - [anon_sym_reduce] = ACTIONS(647), - [anon_sym_select] = ACTIONS(649), - [anon_sym_insert] = ACTIONS(651), - [anon_sym_async] = ACTIONS(653), + [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(449), + [anon_sym_match] = ACTIONS(943), + [anon_sym_EQ_GT] = ACTIONS(265), + [anon_sym_while] = ACTIONS(945), + [anon_sym_for] = ACTIONS(947), + [anon_sym_asyncfor] = ACTIONS(949), + [anon_sym_transform] = ACTIONS(951), + [anon_sym_filter] = ACTIONS(953), + [anon_sym_find] = ACTIONS(955), + [anon_sym_remove] = ACTIONS(957), + [anon_sym_reduce] = ACTIONS(959), + [anon_sym_select] = ACTIONS(961), + [anon_sym_insert] = ACTIONS(285), + [anon_sym_async] = ACTIONS(963), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(655), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_assert_equal] = ACTIONS(657), - [anon_sym_download] = ACTIONS(657), - [anon_sym_help] = ACTIONS(657), - [anon_sym_length] = ACTIONS(657), - [anon_sym_output] = ACTIONS(657), - [anon_sym_output_error] = ACTIONS(657), - [anon_sym_type] = ACTIONS(657), - [anon_sym_append] = ACTIONS(657), - [anon_sym_metadata] = ACTIONS(657), - [anon_sym_move] = ACTIONS(657), - [anon_sym_read] = ACTIONS(657), - [anon_sym_workdir] = ACTIONS(657), - [anon_sym_write] = ACTIONS(657), - [anon_sym_from_json] = ACTIONS(657), - [anon_sym_to_json] = ACTIONS(657), - [anon_sym_to_string] = ACTIONS(657), - [anon_sym_to_float] = ACTIONS(657), - [anon_sym_bash] = ACTIONS(657), - [anon_sym_fish] = ACTIONS(657), - [anon_sym_raw] = ACTIONS(657), - [anon_sym_sh] = ACTIONS(657), - [anon_sym_zsh] = ACTIONS(657), - [anon_sym_random] = ACTIONS(657), - [anon_sym_random_boolean] = ACTIONS(657), - [anon_sym_random_float] = ACTIONS(657), - [anon_sym_random_integer] = ACTIONS(657), - [anon_sym_columns] = ACTIONS(657), - [anon_sym_rows] = ACTIONS(657), - [anon_sym_reverse] = ACTIONS(657), + [anon_sym_table] = ACTIONS(289), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_assert_equal] = ACTIONS(291), + [anon_sym_download] = ACTIONS(291), + [anon_sym_help] = ACTIONS(291), + [anon_sym_length] = ACTIONS(291), + [anon_sym_output] = ACTIONS(291), + [anon_sym_output_error] = ACTIONS(291), + [anon_sym_type] = ACTIONS(291), + [anon_sym_append] = ACTIONS(291), + [anon_sym_metadata] = ACTIONS(291), + [anon_sym_move] = ACTIONS(291), + [anon_sym_read] = ACTIONS(291), + [anon_sym_workdir] = ACTIONS(291), + [anon_sym_write] = ACTIONS(291), + [anon_sym_from_json] = ACTIONS(291), + [anon_sym_to_json] = ACTIONS(291), + [anon_sym_to_string] = ACTIONS(291), + [anon_sym_to_float] = ACTIONS(291), + [anon_sym_bash] = ACTIONS(291), + [anon_sym_fish] = ACTIONS(291), + [anon_sym_raw] = ACTIONS(291), + [anon_sym_sh] = ACTIONS(291), + [anon_sym_zsh] = ACTIONS(291), + [anon_sym_random] = ACTIONS(291), + [anon_sym_random_boolean] = ACTIONS(291), + [anon_sym_random_float] = ACTIONS(291), + [anon_sym_random_integer] = ACTIONS(291), + [anon_sym_columns] = ACTIONS(291), + [anon_sym_rows] = ACTIONS(291), + [anon_sym_reverse] = ACTIONS(291), }, [102] = { - [sym_block] = STATE(809), - [sym_statement] = STATE(38), - [sym_expression] = STATE(779), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(655), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(724), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1860), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(341), - [aux_sym_block_repeat1] = STATE(38), - [sym_identifier] = ACTIONS(839), + [sym_block] = STATE(488), + [sym_statement] = STATE(22), + [sym_expression] = STATE(449), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(353), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [aux_sym_block_repeat1] = STATE(22), + [sym_identifier] = ACTIONS(259), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(189), + [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(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(843), - [anon_sym_match] = ACTIONS(845), - [anon_sym_EQ_GT] = ACTIONS(847), - [anon_sym_while] = ACTIONS(849), - [anon_sym_for] = ACTIONS(851), - [anon_sym_asyncfor] = 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(867), - [anon_sym_async] = ACTIONS(869), + [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(119), + [anon_sym_match] = ACTIONS(263), + [anon_sym_EQ_GT] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_for] = ACTIONS(269), + [anon_sym_asyncfor] = ACTIONS(271), + [anon_sym_transform] = ACTIONS(273), + [anon_sym_filter] = ACTIONS(275), + [anon_sym_find] = ACTIONS(277), + [anon_sym_remove] = ACTIONS(279), + [anon_sym_reduce] = ACTIONS(281), + [anon_sym_select] = ACTIONS(283), + [anon_sym_insert] = ACTIONS(285), + [anon_sym_async] = ACTIONS(287), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(871), - [anon_sym_assert] = ACTIONS(873), - [anon_sym_assert_equal] = ACTIONS(873), - [anon_sym_download] = ACTIONS(873), - [anon_sym_help] = ACTIONS(873), - [anon_sym_length] = ACTIONS(873), - [anon_sym_output] = ACTIONS(873), - [anon_sym_output_error] = ACTIONS(873), - [anon_sym_type] = ACTIONS(873), - [anon_sym_append] = ACTIONS(873), - [anon_sym_metadata] = ACTIONS(873), - [anon_sym_move] = ACTIONS(873), - [anon_sym_read] = ACTIONS(873), - [anon_sym_workdir] = ACTIONS(873), - [anon_sym_write] = ACTIONS(873), - [anon_sym_from_json] = ACTIONS(873), - [anon_sym_to_json] = ACTIONS(873), - [anon_sym_to_string] = ACTIONS(873), - [anon_sym_to_float] = ACTIONS(873), - [anon_sym_bash] = ACTIONS(873), - [anon_sym_fish] = ACTIONS(873), - [anon_sym_raw] = ACTIONS(873), - [anon_sym_sh] = ACTIONS(873), - [anon_sym_zsh] = ACTIONS(873), - [anon_sym_random] = ACTIONS(873), - [anon_sym_random_boolean] = ACTIONS(873), - [anon_sym_random_float] = ACTIONS(873), - [anon_sym_random_integer] = ACTIONS(873), - [anon_sym_columns] = ACTIONS(873), - [anon_sym_rows] = ACTIONS(873), - [anon_sym_reverse] = ACTIONS(873), + [anon_sym_table] = ACTIONS(289), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_assert_equal] = ACTIONS(291), + [anon_sym_download] = ACTIONS(291), + [anon_sym_help] = ACTIONS(291), + [anon_sym_length] = ACTIONS(291), + [anon_sym_output] = ACTIONS(291), + [anon_sym_output_error] = ACTIONS(291), + [anon_sym_type] = ACTIONS(291), + [anon_sym_append] = ACTIONS(291), + [anon_sym_metadata] = ACTIONS(291), + [anon_sym_move] = ACTIONS(291), + [anon_sym_read] = ACTIONS(291), + [anon_sym_workdir] = ACTIONS(291), + [anon_sym_write] = ACTIONS(291), + [anon_sym_from_json] = ACTIONS(291), + [anon_sym_to_json] = ACTIONS(291), + [anon_sym_to_string] = ACTIONS(291), + [anon_sym_to_float] = ACTIONS(291), + [anon_sym_bash] = ACTIONS(291), + [anon_sym_fish] = ACTIONS(291), + [anon_sym_raw] = ACTIONS(291), + [anon_sym_sh] = ACTIONS(291), + [anon_sym_zsh] = ACTIONS(291), + [anon_sym_random] = ACTIONS(291), + [anon_sym_random_boolean] = ACTIONS(291), + [anon_sym_random_float] = ACTIONS(291), + [anon_sym_random_integer] = ACTIONS(291), + [anon_sym_columns] = ACTIONS(291), + [anon_sym_rows] = ACTIONS(291), + [anon_sym_reverse] = ACTIONS(291), }, [103] = { - [sym_block] = STATE(810), - [sym_statement] = STATE(38), - [sym_expression] = STATE(779), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(655), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(724), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1860), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(341), - [aux_sym_block_repeat1] = STATE(38), - [sym_identifier] = ACTIONS(839), + [sym_block] = STATE(489), + [sym_statement] = STATE(22), + [sym_expression] = STATE(449), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(353), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [aux_sym_block_repeat1] = STATE(22), + [sym_identifier] = ACTIONS(259), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(189), + [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(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(843), - [anon_sym_match] = ACTIONS(845), - [anon_sym_EQ_GT] = ACTIONS(847), - [anon_sym_while] = ACTIONS(849), - [anon_sym_for] = ACTIONS(851), - [anon_sym_asyncfor] = 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(867), - [anon_sym_async] = ACTIONS(869), + [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(119), + [anon_sym_match] = ACTIONS(263), + [anon_sym_EQ_GT] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_for] = ACTIONS(269), + [anon_sym_asyncfor] = ACTIONS(271), + [anon_sym_transform] = ACTIONS(273), + [anon_sym_filter] = ACTIONS(275), + [anon_sym_find] = ACTIONS(277), + [anon_sym_remove] = ACTIONS(279), + [anon_sym_reduce] = ACTIONS(281), + [anon_sym_select] = ACTIONS(283), + [anon_sym_insert] = ACTIONS(285), + [anon_sym_async] = ACTIONS(287), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(871), - [anon_sym_assert] = ACTIONS(873), - [anon_sym_assert_equal] = ACTIONS(873), - [anon_sym_download] = ACTIONS(873), - [anon_sym_help] = ACTIONS(873), - [anon_sym_length] = ACTIONS(873), - [anon_sym_output] = ACTIONS(873), - [anon_sym_output_error] = ACTIONS(873), - [anon_sym_type] = ACTIONS(873), - [anon_sym_append] = ACTIONS(873), - [anon_sym_metadata] = ACTIONS(873), - [anon_sym_move] = ACTIONS(873), - [anon_sym_read] = ACTIONS(873), - [anon_sym_workdir] = ACTIONS(873), - [anon_sym_write] = ACTIONS(873), - [anon_sym_from_json] = ACTIONS(873), - [anon_sym_to_json] = ACTIONS(873), - [anon_sym_to_string] = ACTIONS(873), - [anon_sym_to_float] = ACTIONS(873), - [anon_sym_bash] = ACTIONS(873), - [anon_sym_fish] = ACTIONS(873), - [anon_sym_raw] = ACTIONS(873), - [anon_sym_sh] = ACTIONS(873), - [anon_sym_zsh] = ACTIONS(873), - [anon_sym_random] = ACTIONS(873), - [anon_sym_random_boolean] = ACTIONS(873), - [anon_sym_random_float] = ACTIONS(873), - [anon_sym_random_integer] = ACTIONS(873), - [anon_sym_columns] = ACTIONS(873), - [anon_sym_rows] = ACTIONS(873), - [anon_sym_reverse] = ACTIONS(873), + [anon_sym_table] = ACTIONS(289), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_assert_equal] = ACTIONS(291), + [anon_sym_download] = ACTIONS(291), + [anon_sym_help] = ACTIONS(291), + [anon_sym_length] = ACTIONS(291), + [anon_sym_output] = ACTIONS(291), + [anon_sym_output_error] = ACTIONS(291), + [anon_sym_type] = ACTIONS(291), + [anon_sym_append] = ACTIONS(291), + [anon_sym_metadata] = ACTIONS(291), + [anon_sym_move] = ACTIONS(291), + [anon_sym_read] = ACTIONS(291), + [anon_sym_workdir] = ACTIONS(291), + [anon_sym_write] = ACTIONS(291), + [anon_sym_from_json] = ACTIONS(291), + [anon_sym_to_json] = ACTIONS(291), + [anon_sym_to_string] = ACTIONS(291), + [anon_sym_to_float] = ACTIONS(291), + [anon_sym_bash] = ACTIONS(291), + [anon_sym_fish] = ACTIONS(291), + [anon_sym_raw] = ACTIONS(291), + [anon_sym_sh] = ACTIONS(291), + [anon_sym_zsh] = ACTIONS(291), + [anon_sym_random] = ACTIONS(291), + [anon_sym_random_boolean] = ACTIONS(291), + [anon_sym_random_float] = ACTIONS(291), + [anon_sym_random_integer] = ACTIONS(291), + [anon_sym_columns] = ACTIONS(291), + [anon_sym_rows] = ACTIONS(291), + [anon_sym_reverse] = ACTIONS(291), }, [104] = { - [sym_block] = STATE(767), - [sym_statement] = STATE(38), - [sym_expression] = STATE(779), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(655), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(724), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1860), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(341), - [aux_sym_block_repeat1] = STATE(38), - [sym_identifier] = ACTIONS(839), + [sym_block] = STATE(490), + [sym_statement] = STATE(22), + [sym_expression] = STATE(449), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(353), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [aux_sym_block_repeat1] = STATE(22), + [sym_identifier] = ACTIONS(259), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(189), + [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(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(843), - [anon_sym_match] = ACTIONS(845), - [anon_sym_EQ_GT] = ACTIONS(847), - [anon_sym_while] = ACTIONS(849), - [anon_sym_for] = ACTIONS(851), - [anon_sym_asyncfor] = 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(867), - [anon_sym_async] = ACTIONS(869), + [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(119), + [anon_sym_match] = ACTIONS(263), + [anon_sym_EQ_GT] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_for] = ACTIONS(269), + [anon_sym_asyncfor] = ACTIONS(271), + [anon_sym_transform] = ACTIONS(273), + [anon_sym_filter] = ACTIONS(275), + [anon_sym_find] = ACTIONS(277), + [anon_sym_remove] = ACTIONS(279), + [anon_sym_reduce] = ACTIONS(281), + [anon_sym_select] = ACTIONS(283), + [anon_sym_insert] = ACTIONS(285), + [anon_sym_async] = ACTIONS(287), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(871), - [anon_sym_assert] = ACTIONS(873), - [anon_sym_assert_equal] = ACTIONS(873), - [anon_sym_download] = ACTIONS(873), - [anon_sym_help] = ACTIONS(873), - [anon_sym_length] = ACTIONS(873), - [anon_sym_output] = ACTIONS(873), - [anon_sym_output_error] = ACTIONS(873), - [anon_sym_type] = ACTIONS(873), - [anon_sym_append] = ACTIONS(873), - [anon_sym_metadata] = ACTIONS(873), - [anon_sym_move] = ACTIONS(873), - [anon_sym_read] = ACTIONS(873), - [anon_sym_workdir] = ACTIONS(873), - [anon_sym_write] = ACTIONS(873), - [anon_sym_from_json] = ACTIONS(873), - [anon_sym_to_json] = ACTIONS(873), - [anon_sym_to_string] = ACTIONS(873), - [anon_sym_to_float] = ACTIONS(873), - [anon_sym_bash] = ACTIONS(873), - [anon_sym_fish] = ACTIONS(873), - [anon_sym_raw] = ACTIONS(873), - [anon_sym_sh] = ACTIONS(873), - [anon_sym_zsh] = ACTIONS(873), - [anon_sym_random] = ACTIONS(873), - [anon_sym_random_boolean] = ACTIONS(873), - [anon_sym_random_float] = ACTIONS(873), - [anon_sym_random_integer] = ACTIONS(873), - [anon_sym_columns] = ACTIONS(873), - [anon_sym_rows] = ACTIONS(873), - [anon_sym_reverse] = ACTIONS(873), + [anon_sym_table] = ACTIONS(289), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_assert_equal] = ACTIONS(291), + [anon_sym_download] = ACTIONS(291), + [anon_sym_help] = ACTIONS(291), + [anon_sym_length] = ACTIONS(291), + [anon_sym_output] = ACTIONS(291), + [anon_sym_output_error] = ACTIONS(291), + [anon_sym_type] = ACTIONS(291), + [anon_sym_append] = ACTIONS(291), + [anon_sym_metadata] = ACTIONS(291), + [anon_sym_move] = ACTIONS(291), + [anon_sym_read] = ACTIONS(291), + [anon_sym_workdir] = ACTIONS(291), + [anon_sym_write] = ACTIONS(291), + [anon_sym_from_json] = ACTIONS(291), + [anon_sym_to_json] = ACTIONS(291), + [anon_sym_to_string] = ACTIONS(291), + [anon_sym_to_float] = ACTIONS(291), + [anon_sym_bash] = ACTIONS(291), + [anon_sym_fish] = ACTIONS(291), + [anon_sym_raw] = ACTIONS(291), + [anon_sym_sh] = ACTIONS(291), + [anon_sym_zsh] = ACTIONS(291), + [anon_sym_random] = ACTIONS(291), + [anon_sym_random_boolean] = ACTIONS(291), + [anon_sym_random_float] = ACTIONS(291), + [anon_sym_random_integer] = ACTIONS(291), + [anon_sym_columns] = ACTIONS(291), + [anon_sym_rows] = ACTIONS(291), + [anon_sym_reverse] = ACTIONS(291), }, [105] = { - [sym_block] = STATE(812), - [sym_statement] = STATE(38), - [sym_expression] = STATE(779), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(655), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(724), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1860), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(341), - [aux_sym_block_repeat1] = STATE(38), - [sym_identifier] = ACTIONS(839), + [sym_block] = STATE(491), + [sym_statement] = STATE(22), + [sym_expression] = STATE(449), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(353), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [aux_sym_block_repeat1] = STATE(22), + [sym_identifier] = ACTIONS(259), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(189), + [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(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(843), - [anon_sym_match] = ACTIONS(845), - [anon_sym_EQ_GT] = ACTIONS(847), - [anon_sym_while] = ACTIONS(849), - [anon_sym_for] = ACTIONS(851), - [anon_sym_asyncfor] = 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(867), - [anon_sym_async] = ACTIONS(869), + [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(119), + [anon_sym_match] = ACTIONS(263), + [anon_sym_EQ_GT] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_for] = ACTIONS(269), + [anon_sym_asyncfor] = ACTIONS(271), + [anon_sym_transform] = ACTIONS(273), + [anon_sym_filter] = ACTIONS(275), + [anon_sym_find] = ACTIONS(277), + [anon_sym_remove] = ACTIONS(279), + [anon_sym_reduce] = ACTIONS(281), + [anon_sym_select] = ACTIONS(283), + [anon_sym_insert] = ACTIONS(285), + [anon_sym_async] = ACTIONS(287), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(871), - [anon_sym_assert] = ACTIONS(873), - [anon_sym_assert_equal] = ACTIONS(873), - [anon_sym_download] = ACTIONS(873), - [anon_sym_help] = ACTIONS(873), - [anon_sym_length] = ACTIONS(873), - [anon_sym_output] = ACTIONS(873), - [anon_sym_output_error] = ACTIONS(873), - [anon_sym_type] = ACTIONS(873), - [anon_sym_append] = ACTIONS(873), - [anon_sym_metadata] = ACTIONS(873), - [anon_sym_move] = ACTIONS(873), - [anon_sym_read] = ACTIONS(873), - [anon_sym_workdir] = ACTIONS(873), - [anon_sym_write] = ACTIONS(873), - [anon_sym_from_json] = ACTIONS(873), - [anon_sym_to_json] = ACTIONS(873), - [anon_sym_to_string] = ACTIONS(873), - [anon_sym_to_float] = ACTIONS(873), - [anon_sym_bash] = ACTIONS(873), - [anon_sym_fish] = ACTIONS(873), - [anon_sym_raw] = ACTIONS(873), - [anon_sym_sh] = ACTIONS(873), - [anon_sym_zsh] = ACTIONS(873), - [anon_sym_random] = ACTIONS(873), - [anon_sym_random_boolean] = ACTIONS(873), - [anon_sym_random_float] = ACTIONS(873), - [anon_sym_random_integer] = ACTIONS(873), - [anon_sym_columns] = ACTIONS(873), - [anon_sym_rows] = ACTIONS(873), - [anon_sym_reverse] = ACTIONS(873), + [anon_sym_table] = ACTIONS(289), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_assert_equal] = ACTIONS(291), + [anon_sym_download] = ACTIONS(291), + [anon_sym_help] = ACTIONS(291), + [anon_sym_length] = ACTIONS(291), + [anon_sym_output] = ACTIONS(291), + [anon_sym_output_error] = ACTIONS(291), + [anon_sym_type] = ACTIONS(291), + [anon_sym_append] = ACTIONS(291), + [anon_sym_metadata] = ACTIONS(291), + [anon_sym_move] = ACTIONS(291), + [anon_sym_read] = ACTIONS(291), + [anon_sym_workdir] = ACTIONS(291), + [anon_sym_write] = ACTIONS(291), + [anon_sym_from_json] = ACTIONS(291), + [anon_sym_to_json] = ACTIONS(291), + [anon_sym_to_string] = ACTIONS(291), + [anon_sym_to_float] = ACTIONS(291), + [anon_sym_bash] = ACTIONS(291), + [anon_sym_fish] = ACTIONS(291), + [anon_sym_raw] = ACTIONS(291), + [anon_sym_sh] = ACTIONS(291), + [anon_sym_zsh] = ACTIONS(291), + [anon_sym_random] = ACTIONS(291), + [anon_sym_random_boolean] = ACTIONS(291), + [anon_sym_random_float] = ACTIONS(291), + [anon_sym_random_integer] = ACTIONS(291), + [anon_sym_columns] = ACTIONS(291), + [anon_sym_rows] = ACTIONS(291), + [anon_sym_reverse] = ACTIONS(291), }, [106] = { - [sym_block] = STATE(762), - [sym_statement] = STATE(38), - [sym_expression] = STATE(779), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(655), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(724), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1860), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(341), - [aux_sym_block_repeat1] = STATE(38), - [sym_identifier] = ACTIONS(839), + [sym_block] = STATE(493), + [sym_statement] = STATE(22), + [sym_expression] = STATE(449), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(353), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [aux_sym_block_repeat1] = STATE(22), + [sym_identifier] = ACTIONS(259), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(189), + [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(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(843), - [anon_sym_match] = ACTIONS(845), - [anon_sym_EQ_GT] = ACTIONS(847), - [anon_sym_while] = ACTIONS(849), - [anon_sym_for] = ACTIONS(851), - [anon_sym_asyncfor] = 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(867), - [anon_sym_async] = ACTIONS(869), + [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(119), + [anon_sym_match] = ACTIONS(263), + [anon_sym_EQ_GT] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_for] = ACTIONS(269), + [anon_sym_asyncfor] = ACTIONS(271), + [anon_sym_transform] = ACTIONS(273), + [anon_sym_filter] = ACTIONS(275), + [anon_sym_find] = ACTIONS(277), + [anon_sym_remove] = ACTIONS(279), + [anon_sym_reduce] = ACTIONS(281), + [anon_sym_select] = ACTIONS(283), + [anon_sym_insert] = ACTIONS(285), + [anon_sym_async] = ACTIONS(287), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(871), - [anon_sym_assert] = ACTIONS(873), - [anon_sym_assert_equal] = ACTIONS(873), - [anon_sym_download] = ACTIONS(873), - [anon_sym_help] = ACTIONS(873), - [anon_sym_length] = ACTIONS(873), - [anon_sym_output] = ACTIONS(873), - [anon_sym_output_error] = ACTIONS(873), - [anon_sym_type] = ACTIONS(873), - [anon_sym_append] = ACTIONS(873), - [anon_sym_metadata] = ACTIONS(873), - [anon_sym_move] = ACTIONS(873), - [anon_sym_read] = ACTIONS(873), - [anon_sym_workdir] = ACTIONS(873), - [anon_sym_write] = ACTIONS(873), - [anon_sym_from_json] = ACTIONS(873), - [anon_sym_to_json] = ACTIONS(873), - [anon_sym_to_string] = ACTIONS(873), - [anon_sym_to_float] = ACTIONS(873), - [anon_sym_bash] = ACTIONS(873), - [anon_sym_fish] = ACTIONS(873), - [anon_sym_raw] = ACTIONS(873), - [anon_sym_sh] = ACTIONS(873), - [anon_sym_zsh] = ACTIONS(873), - [anon_sym_random] = ACTIONS(873), - [anon_sym_random_boolean] = ACTIONS(873), - [anon_sym_random_float] = ACTIONS(873), - [anon_sym_random_integer] = ACTIONS(873), - [anon_sym_columns] = ACTIONS(873), - [anon_sym_rows] = ACTIONS(873), - [anon_sym_reverse] = ACTIONS(873), + [anon_sym_table] = ACTIONS(289), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_assert_equal] = ACTIONS(291), + [anon_sym_download] = ACTIONS(291), + [anon_sym_help] = ACTIONS(291), + [anon_sym_length] = ACTIONS(291), + [anon_sym_output] = ACTIONS(291), + [anon_sym_output_error] = ACTIONS(291), + [anon_sym_type] = ACTIONS(291), + [anon_sym_append] = ACTIONS(291), + [anon_sym_metadata] = ACTIONS(291), + [anon_sym_move] = ACTIONS(291), + [anon_sym_read] = ACTIONS(291), + [anon_sym_workdir] = ACTIONS(291), + [anon_sym_write] = ACTIONS(291), + [anon_sym_from_json] = ACTIONS(291), + [anon_sym_to_json] = ACTIONS(291), + [anon_sym_to_string] = ACTIONS(291), + [anon_sym_to_float] = ACTIONS(291), + [anon_sym_bash] = ACTIONS(291), + [anon_sym_fish] = ACTIONS(291), + [anon_sym_raw] = ACTIONS(291), + [anon_sym_sh] = ACTIONS(291), + [anon_sym_zsh] = ACTIONS(291), + [anon_sym_random] = ACTIONS(291), + [anon_sym_random_boolean] = ACTIONS(291), + [anon_sym_random_float] = ACTIONS(291), + [anon_sym_random_integer] = ACTIONS(291), + [anon_sym_columns] = ACTIONS(291), + [anon_sym_rows] = ACTIONS(291), + [anon_sym_reverse] = ACTIONS(291), }, [107] = { - [sym_statement] = STATE(50), - [sym_expression] = STATE(824), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(739), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(653), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [aux_sym_block_repeat1] = STATE(50), - [sym_identifier] = ACTIONS(2015), + [sym_block] = STATE(424), + [sym_statement] = STATE(26), + [sym_expression] = STATE(448), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(414), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1085), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(203), + [aux_sym_block_repeat1] = STATE(26), + [sym_identifier] = ACTIONS(223), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_COMMA] = ACTIONS(419), - [sym_integer] = ACTIONS(11), - [sym_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(419), - [anon_sym_PLUS] = ACTIONS(419), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_STAR] = ACTIONS(419), - [anon_sym_SLASH] = ACTIONS(419), - [anon_sym_PERCENT] = ACTIONS(419), - [anon_sym_EQ_EQ] = ACTIONS(419), - [anon_sym_BANG_EQ] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(442), - [anon_sym_LT] = ACTIONS(442), - [anon_sym_GT_EQ] = ACTIONS(419), - [anon_sym_LT_EQ] = ACTIONS(419), - [anon_sym_if] = ACTIONS(627), - [anon_sym_match] = ACTIONS(1202), - [anon_sym_EQ_GT] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(1206), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_asyncfor] = ACTIONS(1210), - [anon_sym_transform] = ACTIONS(1212), - [anon_sym_filter] = ACTIONS(1214), - [anon_sym_find] = ACTIONS(1216), - [anon_sym_remove] = ACTIONS(1218), - [anon_sym_reduce] = ACTIONS(1220), - [anon_sym_select] = ACTIONS(1222), - [anon_sym_insert] = ACTIONS(1224), - [anon_sym_async] = ACTIONS(1226), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(869), + [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(227), + [anon_sym_match] = ACTIONS(229), + [anon_sym_EQ_GT] = ACTIONS(231), + [anon_sym_while] = ACTIONS(233), + [anon_sym_for] = ACTIONS(235), + [anon_sym_asyncfor] = ACTIONS(237), + [anon_sym_transform] = ACTIONS(239), + [anon_sym_filter] = ACTIONS(241), + [anon_sym_find] = ACTIONS(243), + [anon_sym_remove] = ACTIONS(245), + [anon_sym_reduce] = ACTIONS(247), + [anon_sym_select] = ACTIONS(249), + [anon_sym_insert] = ACTIONS(251), + [anon_sym_async] = ACTIONS(253), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1228), - [anon_sym_assert] = ACTIONS(1230), - [anon_sym_assert_equal] = ACTIONS(1230), - [anon_sym_download] = ACTIONS(1230), - [anon_sym_help] = ACTIONS(1230), - [anon_sym_length] = ACTIONS(1230), - [anon_sym_output] = ACTIONS(1230), - [anon_sym_output_error] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_append] = ACTIONS(1230), - [anon_sym_metadata] = ACTIONS(1230), - [anon_sym_move] = ACTIONS(1230), - [anon_sym_read] = ACTIONS(1230), - [anon_sym_workdir] = ACTIONS(1230), - [anon_sym_write] = ACTIONS(1230), - [anon_sym_from_json] = ACTIONS(1230), - [anon_sym_to_json] = ACTIONS(1230), - [anon_sym_to_string] = ACTIONS(1230), - [anon_sym_to_float] = ACTIONS(1230), - [anon_sym_bash] = ACTIONS(1230), - [anon_sym_fish] = ACTIONS(1230), - [anon_sym_raw] = ACTIONS(1230), - [anon_sym_sh] = ACTIONS(1230), - [anon_sym_zsh] = ACTIONS(1230), - [anon_sym_random] = ACTIONS(1230), - [anon_sym_random_boolean] = ACTIONS(1230), - [anon_sym_random_float] = ACTIONS(1230), - [anon_sym_random_integer] = ACTIONS(1230), - [anon_sym_columns] = ACTIONS(1230), - [anon_sym_rows] = ACTIONS(1230), - [anon_sym_reverse] = ACTIONS(1230), + [anon_sym_table] = ACTIONS(255), + [anon_sym_assert] = ACTIONS(257), + [anon_sym_assert_equal] = ACTIONS(257), + [anon_sym_download] = ACTIONS(257), + [anon_sym_help] = ACTIONS(257), + [anon_sym_length] = ACTIONS(257), + [anon_sym_output] = ACTIONS(257), + [anon_sym_output_error] = ACTIONS(257), + [anon_sym_type] = ACTIONS(257), + [anon_sym_append] = ACTIONS(257), + [anon_sym_metadata] = ACTIONS(257), + [anon_sym_move] = ACTIONS(257), + [anon_sym_read] = ACTIONS(257), + [anon_sym_workdir] = ACTIONS(257), + [anon_sym_write] = ACTIONS(257), + [anon_sym_from_json] = ACTIONS(257), + [anon_sym_to_json] = ACTIONS(257), + [anon_sym_to_string] = ACTIONS(257), + [anon_sym_to_float] = ACTIONS(257), + [anon_sym_bash] = ACTIONS(257), + [anon_sym_fish] = ACTIONS(257), + [anon_sym_raw] = ACTIONS(257), + [anon_sym_sh] = ACTIONS(257), + [anon_sym_zsh] = ACTIONS(257), + [anon_sym_random] = ACTIONS(257), + [anon_sym_random_boolean] = ACTIONS(257), + [anon_sym_random_float] = ACTIONS(257), + [anon_sym_random_integer] = ACTIONS(257), + [anon_sym_columns] = ACTIONS(257), + [anon_sym_rows] = ACTIONS(257), + [anon_sym_reverse] = ACTIONS(257), }, [108] = { - [sym_block] = STATE(1062), - [sym_statement] = STATE(382), - [sym_expression] = STATE(934), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(842), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(983), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [aux_sym_block_repeat1] = STATE(382), - [sym_identifier] = ACTIONS(2162), + [sym_block] = STATE(605), + [sym_statement] = STATE(199), + [sym_expression] = STATE(473), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(598), + [sym_if_else] = STATE(598), + [sym_if] = STATE(565), + [sym_match] = STATE(598), + [sym_while] = STATE(598), + [sym_for] = STATE(598), + [sym_transform] = STATE(598), + [sym_filter] = STATE(598), + [sym_find] = STATE(598), + [sym_remove] = STATE(598), + [sym_reduce] = STATE(598), + [sym_select] = STATE(598), + [sym_insert] = STATE(598), + [sym_async] = STATE(598), + [sym_identifier_list] = STATE(1085), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(203), + [aux_sym_block_repeat1] = STATE(199), + [sym_identifier] = ACTIONS(609), [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(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(447), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(1570), - [anon_sym_match] = ACTIONS(2166), - [anon_sym_EQ_GT] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(2168), - [anon_sym_for] = ACTIONS(2170), - [anon_sym_asyncfor] = ACTIONS(2172), - [anon_sym_transform] = ACTIONS(2174), - [anon_sym_filter] = ACTIONS(2176), - [anon_sym_find] = ACTIONS(2178), - [anon_sym_remove] = ACTIONS(2180), - [anon_sym_reduce] = ACTIONS(2182), - [anon_sym_select] = ACTIONS(2184), - [anon_sym_insert] = ACTIONS(1224), - [anon_sym_async] = ACTIONS(2186), + [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(19), + [anon_sym_match] = ACTIONS(611), + [anon_sym_EQ_GT] = ACTIONS(231), + [anon_sym_while] = ACTIONS(613), + [anon_sym_for] = ACTIONS(615), + [anon_sym_asyncfor] = ACTIONS(617), + [anon_sym_transform] = ACTIONS(619), + [anon_sym_filter] = ACTIONS(621), + [anon_sym_find] = ACTIONS(623), + [anon_sym_remove] = ACTIONS(625), + [anon_sym_reduce] = ACTIONS(627), + [anon_sym_select] = ACTIONS(629), + [anon_sym_insert] = ACTIONS(251), + [anon_sym_async] = ACTIONS(631), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1228), - [anon_sym_assert] = ACTIONS(1230), - [anon_sym_assert_equal] = ACTIONS(1230), - [anon_sym_download] = ACTIONS(1230), - [anon_sym_help] = ACTIONS(1230), - [anon_sym_length] = ACTIONS(1230), - [anon_sym_output] = ACTIONS(1230), - [anon_sym_output_error] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_append] = ACTIONS(1230), - [anon_sym_metadata] = ACTIONS(1230), - [anon_sym_move] = ACTIONS(1230), - [anon_sym_read] = ACTIONS(1230), - [anon_sym_workdir] = ACTIONS(1230), - [anon_sym_write] = ACTIONS(1230), - [anon_sym_from_json] = ACTIONS(1230), - [anon_sym_to_json] = ACTIONS(1230), - [anon_sym_to_string] = ACTIONS(1230), - [anon_sym_to_float] = ACTIONS(1230), - [anon_sym_bash] = ACTIONS(1230), - [anon_sym_fish] = ACTIONS(1230), - [anon_sym_raw] = ACTIONS(1230), - [anon_sym_sh] = ACTIONS(1230), - [anon_sym_zsh] = ACTIONS(1230), - [anon_sym_random] = ACTIONS(1230), - [anon_sym_random_boolean] = ACTIONS(1230), - [anon_sym_random_float] = ACTIONS(1230), - [anon_sym_random_integer] = ACTIONS(1230), - [anon_sym_columns] = ACTIONS(1230), - [anon_sym_rows] = ACTIONS(1230), - [anon_sym_reverse] = ACTIONS(1230), + [anon_sym_table] = ACTIONS(255), + [anon_sym_assert] = ACTIONS(257), + [anon_sym_assert_equal] = ACTIONS(257), + [anon_sym_download] = ACTIONS(257), + [anon_sym_help] = ACTIONS(257), + [anon_sym_length] = ACTIONS(257), + [anon_sym_output] = ACTIONS(257), + [anon_sym_output_error] = ACTIONS(257), + [anon_sym_type] = ACTIONS(257), + [anon_sym_append] = ACTIONS(257), + [anon_sym_metadata] = ACTIONS(257), + [anon_sym_move] = ACTIONS(257), + [anon_sym_read] = ACTIONS(257), + [anon_sym_workdir] = ACTIONS(257), + [anon_sym_write] = ACTIONS(257), + [anon_sym_from_json] = ACTIONS(257), + [anon_sym_to_json] = ACTIONS(257), + [anon_sym_to_string] = ACTIONS(257), + [anon_sym_to_float] = ACTIONS(257), + [anon_sym_bash] = ACTIONS(257), + [anon_sym_fish] = ACTIONS(257), + [anon_sym_raw] = ACTIONS(257), + [anon_sym_sh] = ACTIONS(257), + [anon_sym_zsh] = ACTIONS(257), + [anon_sym_random] = ACTIONS(257), + [anon_sym_random_boolean] = ACTIONS(257), + [anon_sym_random_float] = ACTIONS(257), + [anon_sym_random_integer] = ACTIONS(257), + [anon_sym_columns] = ACTIONS(257), + [anon_sym_rows] = ACTIONS(257), + [anon_sym_reverse] = ACTIONS(257), }, [109] = { - [sym_block] = STATE(813), - [sym_statement] = STATE(38), - [sym_expression] = STATE(779), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(655), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(724), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1860), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(341), - [aux_sym_block_repeat1] = STATE(38), - [sym_identifier] = ACTIONS(839), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(843), - [anon_sym_match] = ACTIONS(845), - [anon_sym_EQ_GT] = ACTIONS(847), - [anon_sym_while] = ACTIONS(849), - [anon_sym_for] = ACTIONS(851), - [anon_sym_asyncfor] = 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(867), - [anon_sym_async] = ACTIONS(869), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(871), - [anon_sym_assert] = ACTIONS(873), - [anon_sym_assert_equal] = ACTIONS(873), - [anon_sym_download] = ACTIONS(873), - [anon_sym_help] = ACTIONS(873), - [anon_sym_length] = ACTIONS(873), - [anon_sym_output] = ACTIONS(873), - [anon_sym_output_error] = ACTIONS(873), - [anon_sym_type] = ACTIONS(873), - [anon_sym_append] = ACTIONS(873), - [anon_sym_metadata] = ACTIONS(873), - [anon_sym_move] = ACTIONS(873), - [anon_sym_read] = ACTIONS(873), - [anon_sym_workdir] = ACTIONS(873), - [anon_sym_write] = ACTIONS(873), - [anon_sym_from_json] = ACTIONS(873), - [anon_sym_to_json] = ACTIONS(873), - [anon_sym_to_string] = ACTIONS(873), - [anon_sym_to_float] = ACTIONS(873), - [anon_sym_bash] = ACTIONS(873), - [anon_sym_fish] = ACTIONS(873), - [anon_sym_raw] = ACTIONS(873), - [anon_sym_sh] = ACTIONS(873), - [anon_sym_zsh] = ACTIONS(873), - [anon_sym_random] = ACTIONS(873), - [anon_sym_random_boolean] = ACTIONS(873), - [anon_sym_random_float] = ACTIONS(873), - [anon_sym_random_integer] = ACTIONS(873), - [anon_sym_columns] = ACTIONS(873), - [anon_sym_rows] = ACTIONS(873), - [anon_sym_reverse] = ACTIONS(873), - }, - [110] = { - [sym_block] = STATE(598), - [sym_statement] = STATE(27), - [sym_expression] = STATE(663), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(631), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(637), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(1998), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(296), - [aux_sym_block_repeat1] = STATE(27), - [sym_identifier] = ACTIONS(55), + [sym_block] = STATE(404), + [sym_statement] = STATE(11), + [sym_expression] = STATE(364), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(349), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1100), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(181), + [aux_sym_block_repeat1] = STATE(11), + [sym_identifier] = ACTIONS(115), [sym__comment] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(57), [anon_sym_LPAREN] = ACTIONS(59), @@ -18695,104 +16755,318 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(65), [anon_sym_false] = ACTIONS(65), [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(311), - [anon_sym_match] = ACTIONS(313), - [anon_sym_EQ_GT] = ACTIONS(315), - [anon_sym_while] = ACTIONS(317), - [anon_sym_for] = ACTIONS(319), - [anon_sym_asyncfor] = ACTIONS(321), - [anon_sym_transform] = ACTIONS(323), - [anon_sym_filter] = ACTIONS(325), - [anon_sym_find] = ACTIONS(327), - [anon_sym_remove] = ACTIONS(329), - [anon_sym_reduce] = ACTIONS(331), - [anon_sym_select] = ACTIONS(333), - [anon_sym_insert] = ACTIONS(335), - [anon_sym_async] = ACTIONS(337), + [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(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_EQ_GT] = ACTIONS(123), + [anon_sym_while] = ACTIONS(125), + [anon_sym_for] = ACTIONS(127), + [anon_sym_asyncfor] = ACTIONS(129), + [anon_sym_transform] = ACTIONS(131), + [anon_sym_filter] = ACTIONS(133), + [anon_sym_find] = ACTIONS(135), + [anon_sym_remove] = ACTIONS(137), + [anon_sym_reduce] = ACTIONS(139), + [anon_sym_select] = ACTIONS(141), + [anon_sym_insert] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(339), - [anon_sym_assert] = ACTIONS(341), - [anon_sym_assert_equal] = ACTIONS(341), - [anon_sym_download] = ACTIONS(341), - [anon_sym_help] = ACTIONS(341), - [anon_sym_length] = ACTIONS(341), - [anon_sym_output] = ACTIONS(341), - [anon_sym_output_error] = ACTIONS(341), - [anon_sym_type] = ACTIONS(341), - [anon_sym_append] = ACTIONS(341), - [anon_sym_metadata] = ACTIONS(341), - [anon_sym_move] = ACTIONS(341), - [anon_sym_read] = ACTIONS(341), - [anon_sym_workdir] = ACTIONS(341), - [anon_sym_write] = ACTIONS(341), - [anon_sym_from_json] = ACTIONS(341), - [anon_sym_to_json] = ACTIONS(341), - [anon_sym_to_string] = ACTIONS(341), - [anon_sym_to_float] = ACTIONS(341), - [anon_sym_bash] = ACTIONS(341), - [anon_sym_fish] = ACTIONS(341), - [anon_sym_raw] = ACTIONS(341), - [anon_sym_sh] = ACTIONS(341), - [anon_sym_zsh] = ACTIONS(341), - [anon_sym_random] = ACTIONS(341), - [anon_sym_random_boolean] = ACTIONS(341), - [anon_sym_random_float] = ACTIONS(341), - [anon_sym_random_integer] = ACTIONS(341), - [anon_sym_columns] = ACTIONS(341), - [anon_sym_rows] = ACTIONS(341), - [anon_sym_reverse] = ACTIONS(341), + [anon_sym_table] = ACTIONS(147), + [anon_sym_assert] = ACTIONS(149), + [anon_sym_assert_equal] = ACTIONS(149), + [anon_sym_download] = ACTIONS(149), + [anon_sym_help] = ACTIONS(149), + [anon_sym_length] = ACTIONS(149), + [anon_sym_output] = ACTIONS(149), + [anon_sym_output_error] = ACTIONS(149), + [anon_sym_type] = ACTIONS(149), + [anon_sym_append] = ACTIONS(149), + [anon_sym_metadata] = ACTIONS(149), + [anon_sym_move] = ACTIONS(149), + [anon_sym_read] = ACTIONS(149), + [anon_sym_workdir] = ACTIONS(149), + [anon_sym_write] = ACTIONS(149), + [anon_sym_from_json] = ACTIONS(149), + [anon_sym_to_json] = ACTIONS(149), + [anon_sym_to_string] = ACTIONS(149), + [anon_sym_to_float] = ACTIONS(149), + [anon_sym_bash] = ACTIONS(149), + [anon_sym_fish] = ACTIONS(149), + [anon_sym_raw] = ACTIONS(149), + [anon_sym_sh] = ACTIONS(149), + [anon_sym_zsh] = ACTIONS(149), + [anon_sym_random] = ACTIONS(149), + [anon_sym_random_boolean] = ACTIONS(149), + [anon_sym_random_float] = ACTIONS(149), + [anon_sym_random_integer] = ACTIONS(149), + [anon_sym_columns] = ACTIONS(149), + [anon_sym_rows] = ACTIONS(149), + [anon_sym_reverse] = ACTIONS(149), + }, + [110] = { + [sym_block] = STATE(424), + [sym_statement] = STATE(16), + [sym_expression] = STATE(387), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(366), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1210), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(186), + [aux_sym_block_repeat1] = STATE(16), + [sym_identifier] = ACTIONS(151), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(869), + [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(155), + [anon_sym_match] = ACTIONS(157), + [anon_sym_EQ_GT] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_asyncfor] = ACTIONS(165), + [anon_sym_transform] = ACTIONS(167), + [anon_sym_filter] = ACTIONS(169), + [anon_sym_find] = ACTIONS(171), + [anon_sym_remove] = ACTIONS(173), + [anon_sym_reduce] = ACTIONS(175), + [anon_sym_select] = ACTIONS(177), + [anon_sym_insert] = ACTIONS(179), + [anon_sym_async] = ACTIONS(181), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(183), + [anon_sym_assert] = ACTIONS(185), + [anon_sym_assert_equal] = ACTIONS(185), + [anon_sym_download] = ACTIONS(185), + [anon_sym_help] = ACTIONS(185), + [anon_sym_length] = ACTIONS(185), + [anon_sym_output] = ACTIONS(185), + [anon_sym_output_error] = ACTIONS(185), + [anon_sym_type] = ACTIONS(185), + [anon_sym_append] = ACTIONS(185), + [anon_sym_metadata] = ACTIONS(185), + [anon_sym_move] = ACTIONS(185), + [anon_sym_read] = ACTIONS(185), + [anon_sym_workdir] = ACTIONS(185), + [anon_sym_write] = ACTIONS(185), + [anon_sym_from_json] = ACTIONS(185), + [anon_sym_to_json] = ACTIONS(185), + [anon_sym_to_string] = ACTIONS(185), + [anon_sym_to_float] = ACTIONS(185), + [anon_sym_bash] = ACTIONS(185), + [anon_sym_fish] = ACTIONS(185), + [anon_sym_raw] = ACTIONS(185), + [anon_sym_sh] = ACTIONS(185), + [anon_sym_zsh] = ACTIONS(185), + [anon_sym_random] = ACTIONS(185), + [anon_sym_random_boolean] = ACTIONS(185), + [anon_sym_random_float] = ACTIONS(185), + [anon_sym_random_integer] = ACTIONS(185), + [anon_sym_columns] = ACTIONS(185), + [anon_sym_rows] = ACTIONS(185), + [anon_sym_reverse] = ACTIONS(185), }, [111] = { - [sym_block] = STATE(1054), - [sym_statement] = STATE(382), - [sym_expression] = STATE(934), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(842), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(983), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [aux_sym_block_repeat1] = STATE(382), - [sym_identifier] = ACTIONS(2162), + [sym_block] = STATE(491), + [sym_statement] = STATE(17), + [sym_expression] = STATE(402), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(348), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1104), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(17), + [sym_identifier] = ACTIONS(187), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(189), + [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(869), + [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(193), + [anon_sym_EQ_GT] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_for] = ACTIONS(199), + [anon_sym_asyncfor] = ACTIONS(201), + [anon_sym_transform] = ACTIONS(203), + [anon_sym_filter] = ACTIONS(205), + [anon_sym_find] = ACTIONS(207), + [anon_sym_remove] = ACTIONS(209), + [anon_sym_reduce] = ACTIONS(211), + [anon_sym_select] = ACTIONS(213), + [anon_sym_insert] = ACTIONS(215), + [anon_sym_async] = ACTIONS(217), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(219), + [anon_sym_assert] = ACTIONS(221), + [anon_sym_assert_equal] = ACTIONS(221), + [anon_sym_download] = ACTIONS(221), + [anon_sym_help] = ACTIONS(221), + [anon_sym_length] = ACTIONS(221), + [anon_sym_output] = ACTIONS(221), + [anon_sym_output_error] = ACTIONS(221), + [anon_sym_type] = ACTIONS(221), + [anon_sym_append] = ACTIONS(221), + [anon_sym_metadata] = ACTIONS(221), + [anon_sym_move] = ACTIONS(221), + [anon_sym_read] = ACTIONS(221), + [anon_sym_workdir] = ACTIONS(221), + [anon_sym_write] = ACTIONS(221), + [anon_sym_from_json] = ACTIONS(221), + [anon_sym_to_json] = ACTIONS(221), + [anon_sym_to_string] = ACTIONS(221), + [anon_sym_to_float] = ACTIONS(221), + [anon_sym_bash] = ACTIONS(221), + [anon_sym_fish] = ACTIONS(221), + [anon_sym_raw] = ACTIONS(221), + [anon_sym_sh] = ACTIONS(221), + [anon_sym_zsh] = ACTIONS(221), + [anon_sym_random] = ACTIONS(221), + [anon_sym_random_boolean] = ACTIONS(221), + [anon_sym_random_float] = ACTIONS(221), + [anon_sym_random_integer] = ACTIONS(221), + [anon_sym_columns] = ACTIONS(221), + [anon_sym_rows] = ACTIONS(221), + [anon_sym_reverse] = ACTIONS(221), + }, + [112] = { + [sym_block] = STATE(644), + [sym_statement] = STATE(225), + [sym_expression] = STATE(547), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(571), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [aux_sym_block_repeat1] = STATE(225), + [sym_identifier] = ACTIONS(941), [sym__comment] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(9), @@ -18802,211 +17076,104 @@ 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(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(1570), - [anon_sym_match] = ACTIONS(2166), - [anon_sym_EQ_GT] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(2168), - [anon_sym_for] = ACTIONS(2170), - [anon_sym_asyncfor] = ACTIONS(2172), - [anon_sym_transform] = ACTIONS(2174), - [anon_sym_filter] = ACTIONS(2176), - [anon_sym_find] = ACTIONS(2178), - [anon_sym_remove] = ACTIONS(2180), - [anon_sym_reduce] = ACTIONS(2182), - [anon_sym_select] = ACTIONS(2184), - [anon_sym_insert] = ACTIONS(1224), - [anon_sym_async] = ACTIONS(2186), + [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(449), + [anon_sym_match] = ACTIONS(943), + [anon_sym_EQ_GT] = ACTIONS(265), + [anon_sym_while] = ACTIONS(945), + [anon_sym_for] = ACTIONS(947), + [anon_sym_asyncfor] = ACTIONS(949), + [anon_sym_transform] = ACTIONS(951), + [anon_sym_filter] = ACTIONS(953), + [anon_sym_find] = ACTIONS(955), + [anon_sym_remove] = ACTIONS(957), + [anon_sym_reduce] = ACTIONS(959), + [anon_sym_select] = ACTIONS(961), + [anon_sym_insert] = ACTIONS(285), + [anon_sym_async] = ACTIONS(963), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1228), - [anon_sym_assert] = ACTIONS(1230), - [anon_sym_assert_equal] = ACTIONS(1230), - [anon_sym_download] = ACTIONS(1230), - [anon_sym_help] = ACTIONS(1230), - [anon_sym_length] = ACTIONS(1230), - [anon_sym_output] = ACTIONS(1230), - [anon_sym_output_error] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_append] = ACTIONS(1230), - [anon_sym_metadata] = ACTIONS(1230), - [anon_sym_move] = ACTIONS(1230), - [anon_sym_read] = ACTIONS(1230), - [anon_sym_workdir] = ACTIONS(1230), - [anon_sym_write] = ACTIONS(1230), - [anon_sym_from_json] = ACTIONS(1230), - [anon_sym_to_json] = ACTIONS(1230), - [anon_sym_to_string] = ACTIONS(1230), - [anon_sym_to_float] = ACTIONS(1230), - [anon_sym_bash] = ACTIONS(1230), - [anon_sym_fish] = ACTIONS(1230), - [anon_sym_raw] = ACTIONS(1230), - [anon_sym_sh] = ACTIONS(1230), - [anon_sym_zsh] = ACTIONS(1230), - [anon_sym_random] = ACTIONS(1230), - [anon_sym_random_boolean] = ACTIONS(1230), - [anon_sym_random_float] = ACTIONS(1230), - [anon_sym_random_integer] = ACTIONS(1230), - [anon_sym_columns] = ACTIONS(1230), - [anon_sym_rows] = ACTIONS(1230), - [anon_sym_reverse] = ACTIONS(1230), - }, - [112] = { - [sym_block] = STATE(638), - [sym_statement] = STATE(21), - [sym_expression] = STATE(593), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(631), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(584), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(1776), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(286), - [aux_sym_block_repeat1] = STATE(21), - [sym_identifier] = ACTIONS(55), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(59), - [sym_integer] = ACTIONS(61), - [sym_float] = ACTIONS(63), - [sym_string] = ACTIONS(63), - [anon_sym_true] = ACTIONS(65), - [anon_sym_false] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(197), - [anon_sym_match] = ACTIONS(199), - [anon_sym_EQ_GT] = ACTIONS(201), - [anon_sym_while] = ACTIONS(203), - [anon_sym_for] = ACTIONS(205), - [anon_sym_asyncfor] = ACTIONS(207), - [anon_sym_transform] = ACTIONS(209), - [anon_sym_filter] = ACTIONS(211), - [anon_sym_find] = ACTIONS(213), - [anon_sym_remove] = ACTIONS(215), - [anon_sym_reduce] = ACTIONS(217), - [anon_sym_select] = ACTIONS(219), - [anon_sym_insert] = ACTIONS(221), - [anon_sym_async] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(225), - [anon_sym_assert] = ACTIONS(227), - [anon_sym_assert_equal] = ACTIONS(227), - [anon_sym_download] = ACTIONS(227), - [anon_sym_help] = ACTIONS(227), - [anon_sym_length] = ACTIONS(227), - [anon_sym_output] = ACTIONS(227), - [anon_sym_output_error] = ACTIONS(227), - [anon_sym_type] = ACTIONS(227), - [anon_sym_append] = ACTIONS(227), - [anon_sym_metadata] = ACTIONS(227), - [anon_sym_move] = ACTIONS(227), - [anon_sym_read] = ACTIONS(227), - [anon_sym_workdir] = ACTIONS(227), - [anon_sym_write] = ACTIONS(227), - [anon_sym_from_json] = ACTIONS(227), - [anon_sym_to_json] = ACTIONS(227), - [anon_sym_to_string] = ACTIONS(227), - [anon_sym_to_float] = ACTIONS(227), - [anon_sym_bash] = ACTIONS(227), - [anon_sym_fish] = ACTIONS(227), - [anon_sym_raw] = ACTIONS(227), - [anon_sym_sh] = ACTIONS(227), - [anon_sym_zsh] = ACTIONS(227), - [anon_sym_random] = ACTIONS(227), - [anon_sym_random_boolean] = ACTIONS(227), - [anon_sym_random_float] = ACTIONS(227), - [anon_sym_random_integer] = ACTIONS(227), - [anon_sym_columns] = ACTIONS(227), - [anon_sym_rows] = ACTIONS(227), - [anon_sym_reverse] = ACTIONS(227), + [anon_sym_table] = ACTIONS(289), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_assert_equal] = ACTIONS(291), + [anon_sym_download] = ACTIONS(291), + [anon_sym_help] = ACTIONS(291), + [anon_sym_length] = ACTIONS(291), + [anon_sym_output] = ACTIONS(291), + [anon_sym_output_error] = ACTIONS(291), + [anon_sym_type] = ACTIONS(291), + [anon_sym_append] = ACTIONS(291), + [anon_sym_metadata] = ACTIONS(291), + [anon_sym_move] = ACTIONS(291), + [anon_sym_read] = ACTIONS(291), + [anon_sym_workdir] = ACTIONS(291), + [anon_sym_write] = ACTIONS(291), + [anon_sym_from_json] = ACTIONS(291), + [anon_sym_to_json] = ACTIONS(291), + [anon_sym_to_string] = ACTIONS(291), + [anon_sym_to_float] = ACTIONS(291), + [anon_sym_bash] = ACTIONS(291), + [anon_sym_fish] = ACTIONS(291), + [anon_sym_raw] = ACTIONS(291), + [anon_sym_sh] = ACTIONS(291), + [anon_sym_zsh] = ACTIONS(291), + [anon_sym_random] = ACTIONS(291), + [anon_sym_random_boolean] = ACTIONS(291), + [anon_sym_random_float] = ACTIONS(291), + [anon_sym_random_integer] = ACTIONS(291), + [anon_sym_columns] = ACTIONS(291), + [anon_sym_rows] = ACTIONS(291), + [anon_sym_reverse] = ACTIONS(291), }, [113] = { - [sym_block] = STATE(636), - [sym_statement] = STATE(21), - [sym_expression] = STATE(593), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(631), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(584), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(1776), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(286), - [aux_sym_block_repeat1] = STATE(21), - [sym_identifier] = ACTIONS(55), + [sym_block] = STATE(435), + [sym_statement] = STATE(16), + [sym_expression] = STATE(387), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(366), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1210), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(186), + [aux_sym_block_repeat1] = STATE(16), + [sym_identifier] = ACTIONS(151), [sym__comment] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(57), [anon_sym_LPAREN] = ACTIONS(59), @@ -19016,210 +17183,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(65), [anon_sym_false] = ACTIONS(65), [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(197), - [anon_sym_match] = ACTIONS(199), - [anon_sym_EQ_GT] = ACTIONS(201), - [anon_sym_while] = ACTIONS(203), - [anon_sym_for] = ACTIONS(205), - [anon_sym_asyncfor] = ACTIONS(207), - [anon_sym_transform] = ACTIONS(209), - [anon_sym_filter] = ACTIONS(211), - [anon_sym_find] = ACTIONS(213), - [anon_sym_remove] = ACTIONS(215), - [anon_sym_reduce] = ACTIONS(217), - [anon_sym_select] = ACTIONS(219), - [anon_sym_insert] = ACTIONS(221), - [anon_sym_async] = ACTIONS(223), + [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(155), + [anon_sym_match] = ACTIONS(157), + [anon_sym_EQ_GT] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_asyncfor] = ACTIONS(165), + [anon_sym_transform] = ACTIONS(167), + [anon_sym_filter] = ACTIONS(169), + [anon_sym_find] = ACTIONS(171), + [anon_sym_remove] = ACTIONS(173), + [anon_sym_reduce] = ACTIONS(175), + [anon_sym_select] = ACTIONS(177), + [anon_sym_insert] = ACTIONS(179), + [anon_sym_async] = ACTIONS(181), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(225), - [anon_sym_assert] = ACTIONS(227), - [anon_sym_assert_equal] = ACTIONS(227), - [anon_sym_download] = ACTIONS(227), - [anon_sym_help] = ACTIONS(227), - [anon_sym_length] = ACTIONS(227), - [anon_sym_output] = ACTIONS(227), - [anon_sym_output_error] = ACTIONS(227), - [anon_sym_type] = ACTIONS(227), - [anon_sym_append] = ACTIONS(227), - [anon_sym_metadata] = ACTIONS(227), - [anon_sym_move] = ACTIONS(227), - [anon_sym_read] = ACTIONS(227), - [anon_sym_workdir] = ACTIONS(227), - [anon_sym_write] = ACTIONS(227), - [anon_sym_from_json] = ACTIONS(227), - [anon_sym_to_json] = ACTIONS(227), - [anon_sym_to_string] = ACTIONS(227), - [anon_sym_to_float] = ACTIONS(227), - [anon_sym_bash] = ACTIONS(227), - [anon_sym_fish] = ACTIONS(227), - [anon_sym_raw] = ACTIONS(227), - [anon_sym_sh] = ACTIONS(227), - [anon_sym_zsh] = ACTIONS(227), - [anon_sym_random] = ACTIONS(227), - [anon_sym_random_boolean] = ACTIONS(227), - [anon_sym_random_float] = ACTIONS(227), - [anon_sym_random_integer] = ACTIONS(227), - [anon_sym_columns] = ACTIONS(227), - [anon_sym_rows] = ACTIONS(227), - [anon_sym_reverse] = ACTIONS(227), + [anon_sym_table] = ACTIONS(183), + [anon_sym_assert] = ACTIONS(185), + [anon_sym_assert_equal] = ACTIONS(185), + [anon_sym_download] = ACTIONS(185), + [anon_sym_help] = ACTIONS(185), + [anon_sym_length] = ACTIONS(185), + [anon_sym_output] = ACTIONS(185), + [anon_sym_output_error] = ACTIONS(185), + [anon_sym_type] = ACTIONS(185), + [anon_sym_append] = ACTIONS(185), + [anon_sym_metadata] = ACTIONS(185), + [anon_sym_move] = ACTIONS(185), + [anon_sym_read] = ACTIONS(185), + [anon_sym_workdir] = ACTIONS(185), + [anon_sym_write] = ACTIONS(185), + [anon_sym_from_json] = ACTIONS(185), + [anon_sym_to_json] = ACTIONS(185), + [anon_sym_to_string] = ACTIONS(185), + [anon_sym_to_float] = ACTIONS(185), + [anon_sym_bash] = ACTIONS(185), + [anon_sym_fish] = ACTIONS(185), + [anon_sym_raw] = ACTIONS(185), + [anon_sym_sh] = ACTIONS(185), + [anon_sym_zsh] = ACTIONS(185), + [anon_sym_random] = ACTIONS(185), + [anon_sym_random_boolean] = ACTIONS(185), + [anon_sym_random_float] = ACTIONS(185), + [anon_sym_random_integer] = ACTIONS(185), + [anon_sym_columns] = ACTIONS(185), + [anon_sym_rows] = ACTIONS(185), + [anon_sym_reverse] = ACTIONS(185), }, [114] = { - [sym_block] = STATE(1031), - [sym_statement] = STATE(352), - [sym_expression] = STATE(877), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(782), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(1023), - [sym_if_else] = STATE(1023), - [sym_if] = STATE(978), - [sym_match] = STATE(1023), - [sym_while] = STATE(1023), - [sym_for] = STATE(1023), - [sym_transform] = STATE(1023), - [sym_filter] = STATE(1023), - [sym_find] = STATE(1023), - [sym_remove] = STATE(1023), - [sym_reduce] = STATE(1023), - [sym_select] = STATE(1023), - [sym_insert] = STATE(1023), - [sym_async] = STATE(1023), - [sym_identifier_list] = STATE(1926), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(351), - [aux_sym_block_repeat1] = STATE(352), - [sym_identifier] = ACTIONS(1639), + [sym_block] = STATE(595), + [sym_statement] = STATE(199), + [sym_expression] = STATE(473), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(598), + [sym_if_else] = STATE(598), + [sym_if] = STATE(565), + [sym_match] = STATE(598), + [sym_while] = STATE(598), + [sym_for] = STATE(598), + [sym_transform] = STATE(598), + [sym_filter] = STATE(598), + [sym_find] = STATE(598), + [sym_remove] = STATE(598), + [sym_reduce] = STATE(598), + [sym_select] = STATE(598), + [sym_insert] = STATE(598), + [sym_async] = STATE(598), + [sym_identifier_list] = STATE(1085), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(203), + [aux_sym_block_repeat1] = STATE(199), + [sym_identifier] = ACTIONS(609), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(447), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), + [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(19), - [anon_sym_match] = ACTIONS(1641), - [anon_sym_EQ_GT] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1643), - [anon_sym_for] = ACTIONS(1645), - [anon_sym_asyncfor] = ACTIONS(1647), - [anon_sym_transform] = ACTIONS(1649), - [anon_sym_filter] = ACTIONS(1651), - [anon_sym_find] = ACTIONS(1653), - [anon_sym_remove] = ACTIONS(1655), - [anon_sym_reduce] = ACTIONS(1657), - [anon_sym_select] = ACTIONS(1659), - [anon_sym_insert] = ACTIONS(1308), - [anon_sym_async] = ACTIONS(1661), + [anon_sym_match] = ACTIONS(611), + [anon_sym_EQ_GT] = ACTIONS(231), + [anon_sym_while] = ACTIONS(613), + [anon_sym_for] = ACTIONS(615), + [anon_sym_asyncfor] = ACTIONS(617), + [anon_sym_transform] = ACTIONS(619), + [anon_sym_filter] = ACTIONS(621), + [anon_sym_find] = ACTIONS(623), + [anon_sym_remove] = ACTIONS(625), + [anon_sym_reduce] = ACTIONS(627), + [anon_sym_select] = ACTIONS(629), + [anon_sym_insert] = ACTIONS(251), + [anon_sym_async] = ACTIONS(631), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1312), - [anon_sym_assert] = ACTIONS(1314), - [anon_sym_assert_equal] = ACTIONS(1314), - [anon_sym_download] = ACTIONS(1314), - [anon_sym_help] = ACTIONS(1314), - [anon_sym_length] = ACTIONS(1314), - [anon_sym_output] = ACTIONS(1314), - [anon_sym_output_error] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_append] = ACTIONS(1314), - [anon_sym_metadata] = ACTIONS(1314), - [anon_sym_move] = ACTIONS(1314), - [anon_sym_read] = ACTIONS(1314), - [anon_sym_workdir] = ACTIONS(1314), - [anon_sym_write] = ACTIONS(1314), - [anon_sym_from_json] = ACTIONS(1314), - [anon_sym_to_json] = ACTIONS(1314), - [anon_sym_to_string] = ACTIONS(1314), - [anon_sym_to_float] = ACTIONS(1314), - [anon_sym_bash] = ACTIONS(1314), - [anon_sym_fish] = ACTIONS(1314), - [anon_sym_raw] = ACTIONS(1314), - [anon_sym_sh] = ACTIONS(1314), - [anon_sym_zsh] = ACTIONS(1314), - [anon_sym_random] = ACTIONS(1314), - [anon_sym_random_boolean] = ACTIONS(1314), - [anon_sym_random_float] = ACTIONS(1314), - [anon_sym_random_integer] = ACTIONS(1314), - [anon_sym_columns] = ACTIONS(1314), - [anon_sym_rows] = ACTIONS(1314), - [anon_sym_reverse] = ACTIONS(1314), + [anon_sym_table] = ACTIONS(255), + [anon_sym_assert] = ACTIONS(257), + [anon_sym_assert_equal] = ACTIONS(257), + [anon_sym_download] = ACTIONS(257), + [anon_sym_help] = ACTIONS(257), + [anon_sym_length] = ACTIONS(257), + [anon_sym_output] = ACTIONS(257), + [anon_sym_output_error] = ACTIONS(257), + [anon_sym_type] = ACTIONS(257), + [anon_sym_append] = ACTIONS(257), + [anon_sym_metadata] = ACTIONS(257), + [anon_sym_move] = ACTIONS(257), + [anon_sym_read] = ACTIONS(257), + [anon_sym_workdir] = ACTIONS(257), + [anon_sym_write] = ACTIONS(257), + [anon_sym_from_json] = ACTIONS(257), + [anon_sym_to_json] = ACTIONS(257), + [anon_sym_to_string] = ACTIONS(257), + [anon_sym_to_float] = ACTIONS(257), + [anon_sym_bash] = ACTIONS(257), + [anon_sym_fish] = ACTIONS(257), + [anon_sym_raw] = ACTIONS(257), + [anon_sym_sh] = ACTIONS(257), + [anon_sym_zsh] = ACTIONS(257), + [anon_sym_random] = ACTIONS(257), + [anon_sym_random_boolean] = ACTIONS(257), + [anon_sym_random_float] = ACTIONS(257), + [anon_sym_random_integer] = ACTIONS(257), + [anon_sym_columns] = ACTIONS(257), + [anon_sym_rows] = ACTIONS(257), + [anon_sym_reverse] = ACTIONS(257), }, [115] = { - [sym_block] = STATE(624), - [sym_statement] = STATE(21), - [sym_expression] = STATE(593), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(631), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(584), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(1776), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(286), - [aux_sym_block_repeat1] = STATE(21), + [sym_block] = STATE(408), + [sym_statement] = STATE(8), + [sym_expression] = STATE(355), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(346), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1225), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(170), + [aux_sym_block_repeat1] = STATE(8), [sym_identifier] = ACTIONS(55), [sym__comment] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(57), @@ -19230,104 +17397,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(65), [anon_sym_false] = ACTIONS(65), [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(197), - [anon_sym_match] = ACTIONS(199), - [anon_sym_EQ_GT] = ACTIONS(201), - [anon_sym_while] = ACTIONS(203), - [anon_sym_for] = ACTIONS(205), - [anon_sym_asyncfor] = ACTIONS(207), - [anon_sym_transform] = ACTIONS(209), - [anon_sym_filter] = ACTIONS(211), - [anon_sym_find] = ACTIONS(213), - [anon_sym_remove] = ACTIONS(215), - [anon_sym_reduce] = ACTIONS(217), - [anon_sym_select] = ACTIONS(219), - [anon_sym_insert] = ACTIONS(221), - [anon_sym_async] = ACTIONS(223), + [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_asyncfor] = ACTIONS(91), + [anon_sym_transform] = ACTIONS(93), + [anon_sym_filter] = ACTIONS(95), + [anon_sym_find] = ACTIONS(97), + [anon_sym_remove] = ACTIONS(99), + [anon_sym_reduce] = ACTIONS(101), + [anon_sym_select] = ACTIONS(103), + [anon_sym_insert] = ACTIONS(105), + [anon_sym_async] = ACTIONS(107), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(225), - [anon_sym_assert] = ACTIONS(227), - [anon_sym_assert_equal] = ACTIONS(227), - [anon_sym_download] = ACTIONS(227), - [anon_sym_help] = ACTIONS(227), - [anon_sym_length] = ACTIONS(227), - [anon_sym_output] = ACTIONS(227), - [anon_sym_output_error] = ACTIONS(227), - [anon_sym_type] = ACTIONS(227), - [anon_sym_append] = ACTIONS(227), - [anon_sym_metadata] = ACTIONS(227), - [anon_sym_move] = ACTIONS(227), - [anon_sym_read] = ACTIONS(227), - [anon_sym_workdir] = ACTIONS(227), - [anon_sym_write] = ACTIONS(227), - [anon_sym_from_json] = ACTIONS(227), - [anon_sym_to_json] = ACTIONS(227), - [anon_sym_to_string] = ACTIONS(227), - [anon_sym_to_float] = ACTIONS(227), - [anon_sym_bash] = ACTIONS(227), - [anon_sym_fish] = ACTIONS(227), - [anon_sym_raw] = ACTIONS(227), - [anon_sym_sh] = ACTIONS(227), - [anon_sym_zsh] = ACTIONS(227), - [anon_sym_random] = ACTIONS(227), - [anon_sym_random_boolean] = ACTIONS(227), - [anon_sym_random_float] = ACTIONS(227), - [anon_sym_random_integer] = ACTIONS(227), - [anon_sym_columns] = ACTIONS(227), - [anon_sym_rows] = ACTIONS(227), - [anon_sym_reverse] = ACTIONS(227), + [anon_sym_table] = ACTIONS(111), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_assert_equal] = ACTIONS(113), + [anon_sym_download] = ACTIONS(113), + [anon_sym_help] = ACTIONS(113), + [anon_sym_length] = ACTIONS(113), + [anon_sym_output] = ACTIONS(113), + [anon_sym_output_error] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_append] = ACTIONS(113), + [anon_sym_metadata] = ACTIONS(113), + [anon_sym_move] = ACTIONS(113), + [anon_sym_read] = ACTIONS(113), + [anon_sym_workdir] = ACTIONS(113), + [anon_sym_write] = ACTIONS(113), + [anon_sym_from_json] = ACTIONS(113), + [anon_sym_to_json] = ACTIONS(113), + [anon_sym_to_string] = ACTIONS(113), + [anon_sym_to_float] = ACTIONS(113), + [anon_sym_bash] = ACTIONS(113), + [anon_sym_fish] = ACTIONS(113), + [anon_sym_raw] = ACTIONS(113), + [anon_sym_sh] = ACTIONS(113), + [anon_sym_zsh] = ACTIONS(113), + [anon_sym_random] = ACTIONS(113), + [anon_sym_random_boolean] = ACTIONS(113), + [anon_sym_random_float] = ACTIONS(113), + [anon_sym_random_integer] = ACTIONS(113), + [anon_sym_columns] = ACTIONS(113), + [anon_sym_rows] = ACTIONS(113), + [anon_sym_reverse] = ACTIONS(113), }, [116] = { - [sym_block] = STATE(619), - [sym_statement] = STATE(21), - [sym_expression] = STATE(593), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(631), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(584), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(1776), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(286), - [aux_sym_block_repeat1] = STATE(21), - [sym_identifier] = ACTIONS(55), + [sym_block] = STATE(399), + [sym_statement] = STATE(16), + [sym_expression] = STATE(387), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(366), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1210), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(186), + [aux_sym_block_repeat1] = STATE(16), + [sym_identifier] = ACTIONS(151), [sym__comment] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(57), [anon_sym_LPAREN] = ACTIONS(59), @@ -19337,213 +17504,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(65), [anon_sym_false] = ACTIONS(65), [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(197), - [anon_sym_match] = ACTIONS(199), - [anon_sym_EQ_GT] = ACTIONS(201), - [anon_sym_while] = ACTIONS(203), - [anon_sym_for] = ACTIONS(205), - [anon_sym_asyncfor] = ACTIONS(207), - [anon_sym_transform] = ACTIONS(209), - [anon_sym_filter] = ACTIONS(211), - [anon_sym_find] = ACTIONS(213), - [anon_sym_remove] = ACTIONS(215), - [anon_sym_reduce] = ACTIONS(217), - [anon_sym_select] = ACTIONS(219), - [anon_sym_insert] = ACTIONS(221), - [anon_sym_async] = ACTIONS(223), + [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(155), + [anon_sym_match] = ACTIONS(157), + [anon_sym_EQ_GT] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_asyncfor] = ACTIONS(165), + [anon_sym_transform] = ACTIONS(167), + [anon_sym_filter] = ACTIONS(169), + [anon_sym_find] = ACTIONS(171), + [anon_sym_remove] = ACTIONS(173), + [anon_sym_reduce] = ACTIONS(175), + [anon_sym_select] = ACTIONS(177), + [anon_sym_insert] = ACTIONS(179), + [anon_sym_async] = ACTIONS(181), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(225), - [anon_sym_assert] = ACTIONS(227), - [anon_sym_assert_equal] = ACTIONS(227), - [anon_sym_download] = ACTIONS(227), - [anon_sym_help] = ACTIONS(227), - [anon_sym_length] = ACTIONS(227), - [anon_sym_output] = ACTIONS(227), - [anon_sym_output_error] = ACTIONS(227), - [anon_sym_type] = ACTIONS(227), - [anon_sym_append] = ACTIONS(227), - [anon_sym_metadata] = ACTIONS(227), - [anon_sym_move] = ACTIONS(227), - [anon_sym_read] = ACTIONS(227), - [anon_sym_workdir] = ACTIONS(227), - [anon_sym_write] = ACTIONS(227), - [anon_sym_from_json] = ACTIONS(227), - [anon_sym_to_json] = ACTIONS(227), - [anon_sym_to_string] = ACTIONS(227), - [anon_sym_to_float] = ACTIONS(227), - [anon_sym_bash] = ACTIONS(227), - [anon_sym_fish] = ACTIONS(227), - [anon_sym_raw] = ACTIONS(227), - [anon_sym_sh] = ACTIONS(227), - [anon_sym_zsh] = ACTIONS(227), - [anon_sym_random] = ACTIONS(227), - [anon_sym_random_boolean] = ACTIONS(227), - [anon_sym_random_float] = ACTIONS(227), - [anon_sym_random_integer] = ACTIONS(227), - [anon_sym_columns] = ACTIONS(227), - [anon_sym_rows] = ACTIONS(227), - [anon_sym_reverse] = ACTIONS(227), + [anon_sym_table] = ACTIONS(183), + [anon_sym_assert] = ACTIONS(185), + [anon_sym_assert_equal] = ACTIONS(185), + [anon_sym_download] = ACTIONS(185), + [anon_sym_help] = ACTIONS(185), + [anon_sym_length] = ACTIONS(185), + [anon_sym_output] = ACTIONS(185), + [anon_sym_output_error] = ACTIONS(185), + [anon_sym_type] = ACTIONS(185), + [anon_sym_append] = ACTIONS(185), + [anon_sym_metadata] = ACTIONS(185), + [anon_sym_move] = ACTIONS(185), + [anon_sym_read] = ACTIONS(185), + [anon_sym_workdir] = ACTIONS(185), + [anon_sym_write] = ACTIONS(185), + [anon_sym_from_json] = ACTIONS(185), + [anon_sym_to_json] = ACTIONS(185), + [anon_sym_to_string] = ACTIONS(185), + [anon_sym_to_float] = ACTIONS(185), + [anon_sym_bash] = ACTIONS(185), + [anon_sym_fish] = ACTIONS(185), + [anon_sym_raw] = ACTIONS(185), + [anon_sym_sh] = ACTIONS(185), + [anon_sym_zsh] = ACTIONS(185), + [anon_sym_random] = ACTIONS(185), + [anon_sym_random_boolean] = ACTIONS(185), + [anon_sym_random_float] = ACTIONS(185), + [anon_sym_random_integer] = ACTIONS(185), + [anon_sym_columns] = ACTIONS(185), + [anon_sym_rows] = ACTIONS(185), + [anon_sym_reverse] = ACTIONS(185), }, [117] = { - [sym_block] = STATE(589), - [sym_statement] = STATE(21), - [sym_expression] = STATE(593), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(631), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(584), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(1776), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(286), - [aux_sym_block_repeat1] = STATE(21), - [sym_identifier] = ACTIONS(55), + [sym_block] = STATE(643), + [sym_statement] = STATE(225), + [sym_expression] = STATE(547), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(571), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [aux_sym_block_repeat1] = STATE(225), + [sym_identifier] = ACTIONS(941), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(59), - [sym_integer] = ACTIONS(61), - [sym_float] = ACTIONS(63), - [sym_string] = ACTIONS(63), - [anon_sym_true] = ACTIONS(65), - [anon_sym_false] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), + [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(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(197), - [anon_sym_match] = ACTIONS(199), - [anon_sym_EQ_GT] = ACTIONS(201), - [anon_sym_while] = ACTIONS(203), - [anon_sym_for] = ACTIONS(205), - [anon_sym_asyncfor] = ACTIONS(207), - [anon_sym_transform] = ACTIONS(209), - [anon_sym_filter] = ACTIONS(211), - [anon_sym_find] = ACTIONS(213), - [anon_sym_remove] = ACTIONS(215), - [anon_sym_reduce] = ACTIONS(217), - [anon_sym_select] = ACTIONS(219), - [anon_sym_insert] = ACTIONS(221), - [anon_sym_async] = ACTIONS(223), + [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(449), + [anon_sym_match] = ACTIONS(943), + [anon_sym_EQ_GT] = ACTIONS(265), + [anon_sym_while] = ACTIONS(945), + [anon_sym_for] = ACTIONS(947), + [anon_sym_asyncfor] = ACTIONS(949), + [anon_sym_transform] = ACTIONS(951), + [anon_sym_filter] = ACTIONS(953), + [anon_sym_find] = ACTIONS(955), + [anon_sym_remove] = ACTIONS(957), + [anon_sym_reduce] = ACTIONS(959), + [anon_sym_select] = ACTIONS(961), + [anon_sym_insert] = ACTIONS(285), + [anon_sym_async] = ACTIONS(963), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(225), - [anon_sym_assert] = ACTIONS(227), - [anon_sym_assert_equal] = ACTIONS(227), - [anon_sym_download] = ACTIONS(227), - [anon_sym_help] = ACTIONS(227), - [anon_sym_length] = ACTIONS(227), - [anon_sym_output] = ACTIONS(227), - [anon_sym_output_error] = ACTIONS(227), - [anon_sym_type] = ACTIONS(227), - [anon_sym_append] = ACTIONS(227), - [anon_sym_metadata] = ACTIONS(227), - [anon_sym_move] = ACTIONS(227), - [anon_sym_read] = ACTIONS(227), - [anon_sym_workdir] = ACTIONS(227), - [anon_sym_write] = ACTIONS(227), - [anon_sym_from_json] = ACTIONS(227), - [anon_sym_to_json] = ACTIONS(227), - [anon_sym_to_string] = ACTIONS(227), - [anon_sym_to_float] = ACTIONS(227), - [anon_sym_bash] = ACTIONS(227), - [anon_sym_fish] = ACTIONS(227), - [anon_sym_raw] = ACTIONS(227), - [anon_sym_sh] = ACTIONS(227), - [anon_sym_zsh] = ACTIONS(227), - [anon_sym_random] = ACTIONS(227), - [anon_sym_random_boolean] = ACTIONS(227), - [anon_sym_random_float] = ACTIONS(227), - [anon_sym_random_integer] = ACTIONS(227), - [anon_sym_columns] = ACTIONS(227), - [anon_sym_rows] = ACTIONS(227), - [anon_sym_reverse] = ACTIONS(227), + [anon_sym_table] = ACTIONS(289), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_assert_equal] = ACTIONS(291), + [anon_sym_download] = ACTIONS(291), + [anon_sym_help] = ACTIONS(291), + [anon_sym_length] = ACTIONS(291), + [anon_sym_output] = ACTIONS(291), + [anon_sym_output_error] = ACTIONS(291), + [anon_sym_type] = ACTIONS(291), + [anon_sym_append] = ACTIONS(291), + [anon_sym_metadata] = ACTIONS(291), + [anon_sym_move] = ACTIONS(291), + [anon_sym_read] = ACTIONS(291), + [anon_sym_workdir] = ACTIONS(291), + [anon_sym_write] = ACTIONS(291), + [anon_sym_from_json] = ACTIONS(291), + [anon_sym_to_json] = ACTIONS(291), + [anon_sym_to_string] = ACTIONS(291), + [anon_sym_to_float] = ACTIONS(291), + [anon_sym_bash] = ACTIONS(291), + [anon_sym_fish] = ACTIONS(291), + [anon_sym_raw] = ACTIONS(291), + [anon_sym_sh] = ACTIONS(291), + [anon_sym_zsh] = ACTIONS(291), + [anon_sym_random] = ACTIONS(291), + [anon_sym_random_boolean] = ACTIONS(291), + [anon_sym_random_float] = ACTIONS(291), + [anon_sym_random_integer] = ACTIONS(291), + [anon_sym_columns] = ACTIONS(291), + [anon_sym_rows] = ACTIONS(291), + [anon_sym_reverse] = ACTIONS(291), }, [118] = { - [sym_block] = STATE(610), - [sym_statement] = STATE(21), - [sym_expression] = STATE(593), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(631), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(584), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(1776), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(286), - [aux_sym_block_repeat1] = STATE(21), - [sym_identifier] = ACTIONS(55), + [sym_block] = STATE(1007), + [sym_statement] = STATE(210), + [sym_expression] = STATE(460), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(598), + [sym_if_else] = STATE(598), + [sym_if] = STATE(564), + [sym_match] = STATE(598), + [sym_while] = STATE(598), + [sym_for] = STATE(598), + [sym_transform] = STATE(598), + [sym_filter] = STATE(598), + [sym_find] = STATE(598), + [sym_remove] = STATE(598), + [sym_reduce] = STATE(598), + [sym_select] = STATE(598), + [sym_insert] = STATE(598), + [sym_async] = STATE(598), + [sym_identifier_list] = STATE(1100), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(181), + [aux_sym_block_repeat1] = STATE(210), + [sym_identifier] = ACTIONS(445), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACE] = ACTIONS(1311), [anon_sym_LPAREN] = ACTIONS(59), [sym_integer] = ACTIONS(61), [sym_float] = ACTIONS(63), @@ -19551,104 +17718,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(65), [anon_sym_false] = ACTIONS(65), [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(197), - [anon_sym_match] = ACTIONS(199), - [anon_sym_EQ_GT] = ACTIONS(201), - [anon_sym_while] = ACTIONS(203), - [anon_sym_for] = ACTIONS(205), - [anon_sym_asyncfor] = ACTIONS(207), - [anon_sym_transform] = ACTIONS(209), - [anon_sym_filter] = ACTIONS(211), - [anon_sym_find] = ACTIONS(213), - [anon_sym_remove] = ACTIONS(215), - [anon_sym_reduce] = ACTIONS(217), - [anon_sym_select] = ACTIONS(219), - [anon_sym_insert] = ACTIONS(221), - [anon_sym_async] = ACTIONS(223), + [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(449), + [anon_sym_match] = ACTIONS(451), + [anon_sym_EQ_GT] = ACTIONS(123), + [anon_sym_while] = ACTIONS(453), + [anon_sym_for] = ACTIONS(455), + [anon_sym_asyncfor] = ACTIONS(457), + [anon_sym_transform] = ACTIONS(459), + [anon_sym_filter] = ACTIONS(461), + [anon_sym_find] = ACTIONS(463), + [anon_sym_remove] = ACTIONS(465), + [anon_sym_reduce] = ACTIONS(467), + [anon_sym_select] = ACTIONS(469), + [anon_sym_insert] = ACTIONS(143), + [anon_sym_async] = ACTIONS(471), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(225), - [anon_sym_assert] = ACTIONS(227), - [anon_sym_assert_equal] = ACTIONS(227), - [anon_sym_download] = ACTIONS(227), - [anon_sym_help] = ACTIONS(227), - [anon_sym_length] = ACTIONS(227), - [anon_sym_output] = ACTIONS(227), - [anon_sym_output_error] = ACTIONS(227), - [anon_sym_type] = ACTIONS(227), - [anon_sym_append] = ACTIONS(227), - [anon_sym_metadata] = ACTIONS(227), - [anon_sym_move] = ACTIONS(227), - [anon_sym_read] = ACTIONS(227), - [anon_sym_workdir] = ACTIONS(227), - [anon_sym_write] = ACTIONS(227), - [anon_sym_from_json] = ACTIONS(227), - [anon_sym_to_json] = ACTIONS(227), - [anon_sym_to_string] = ACTIONS(227), - [anon_sym_to_float] = ACTIONS(227), - [anon_sym_bash] = ACTIONS(227), - [anon_sym_fish] = ACTIONS(227), - [anon_sym_raw] = ACTIONS(227), - [anon_sym_sh] = ACTIONS(227), - [anon_sym_zsh] = ACTIONS(227), - [anon_sym_random] = ACTIONS(227), - [anon_sym_random_boolean] = ACTIONS(227), - [anon_sym_random_float] = ACTIONS(227), - [anon_sym_random_integer] = ACTIONS(227), - [anon_sym_columns] = ACTIONS(227), - [anon_sym_rows] = ACTIONS(227), - [anon_sym_reverse] = ACTIONS(227), + [anon_sym_table] = ACTIONS(147), + [anon_sym_assert] = ACTIONS(149), + [anon_sym_assert_equal] = ACTIONS(149), + [anon_sym_download] = ACTIONS(149), + [anon_sym_help] = ACTIONS(149), + [anon_sym_length] = ACTIONS(149), + [anon_sym_output] = ACTIONS(149), + [anon_sym_output_error] = ACTIONS(149), + [anon_sym_type] = ACTIONS(149), + [anon_sym_append] = ACTIONS(149), + [anon_sym_metadata] = ACTIONS(149), + [anon_sym_move] = ACTIONS(149), + [anon_sym_read] = ACTIONS(149), + [anon_sym_workdir] = ACTIONS(149), + [anon_sym_write] = ACTIONS(149), + [anon_sym_from_json] = ACTIONS(149), + [anon_sym_to_json] = ACTIONS(149), + [anon_sym_to_string] = ACTIONS(149), + [anon_sym_to_float] = ACTIONS(149), + [anon_sym_bash] = ACTIONS(149), + [anon_sym_fish] = ACTIONS(149), + [anon_sym_raw] = ACTIONS(149), + [anon_sym_sh] = ACTIONS(149), + [anon_sym_zsh] = ACTIONS(149), + [anon_sym_random] = ACTIONS(149), + [anon_sym_random_boolean] = ACTIONS(149), + [anon_sym_random_float] = ACTIONS(149), + [anon_sym_random_integer] = ACTIONS(149), + [anon_sym_columns] = ACTIONS(149), + [anon_sym_rows] = ACTIONS(149), + [anon_sym_reverse] = ACTIONS(149), }, [119] = { - [sym_block] = STATE(608), - [sym_statement] = STATE(21), - [sym_expression] = STATE(593), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(631), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(584), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(1776), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(286), - [aux_sym_block_repeat1] = STATE(21), - [sym_identifier] = ACTIONS(55), + [sym_block] = STATE(403), + [sym_statement] = STATE(16), + [sym_expression] = STATE(387), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(366), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1210), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(186), + [aux_sym_block_repeat1] = STATE(16), + [sym_identifier] = ACTIONS(151), [sym__comment] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(57), [anon_sym_LPAREN] = ACTIONS(59), @@ -19658,106 +17825,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(65), [anon_sym_false] = ACTIONS(65), [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(197), - [anon_sym_match] = ACTIONS(199), - [anon_sym_EQ_GT] = ACTIONS(201), - [anon_sym_while] = ACTIONS(203), - [anon_sym_for] = ACTIONS(205), - [anon_sym_asyncfor] = ACTIONS(207), - [anon_sym_transform] = ACTIONS(209), - [anon_sym_filter] = ACTIONS(211), - [anon_sym_find] = ACTIONS(213), - [anon_sym_remove] = ACTIONS(215), - [anon_sym_reduce] = ACTIONS(217), - [anon_sym_select] = ACTIONS(219), - [anon_sym_insert] = ACTIONS(221), - [anon_sym_async] = ACTIONS(223), + [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(155), + [anon_sym_match] = ACTIONS(157), + [anon_sym_EQ_GT] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_asyncfor] = ACTIONS(165), + [anon_sym_transform] = ACTIONS(167), + [anon_sym_filter] = ACTIONS(169), + [anon_sym_find] = ACTIONS(171), + [anon_sym_remove] = ACTIONS(173), + [anon_sym_reduce] = ACTIONS(175), + [anon_sym_select] = ACTIONS(177), + [anon_sym_insert] = ACTIONS(179), + [anon_sym_async] = ACTIONS(181), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(225), - [anon_sym_assert] = ACTIONS(227), - [anon_sym_assert_equal] = ACTIONS(227), - [anon_sym_download] = ACTIONS(227), - [anon_sym_help] = ACTIONS(227), - [anon_sym_length] = ACTIONS(227), - [anon_sym_output] = ACTIONS(227), - [anon_sym_output_error] = ACTIONS(227), - [anon_sym_type] = ACTIONS(227), - [anon_sym_append] = ACTIONS(227), - [anon_sym_metadata] = ACTIONS(227), - [anon_sym_move] = ACTIONS(227), - [anon_sym_read] = ACTIONS(227), - [anon_sym_workdir] = ACTIONS(227), - [anon_sym_write] = ACTIONS(227), - [anon_sym_from_json] = ACTIONS(227), - [anon_sym_to_json] = ACTIONS(227), - [anon_sym_to_string] = ACTIONS(227), - [anon_sym_to_float] = ACTIONS(227), - [anon_sym_bash] = ACTIONS(227), - [anon_sym_fish] = ACTIONS(227), - [anon_sym_raw] = ACTIONS(227), - [anon_sym_sh] = ACTIONS(227), - [anon_sym_zsh] = ACTIONS(227), - [anon_sym_random] = ACTIONS(227), - [anon_sym_random_boolean] = ACTIONS(227), - [anon_sym_random_float] = ACTIONS(227), - [anon_sym_random_integer] = ACTIONS(227), - [anon_sym_columns] = ACTIONS(227), - [anon_sym_rows] = ACTIONS(227), - [anon_sym_reverse] = ACTIONS(227), + [anon_sym_table] = ACTIONS(183), + [anon_sym_assert] = ACTIONS(185), + [anon_sym_assert_equal] = ACTIONS(185), + [anon_sym_download] = ACTIONS(185), + [anon_sym_help] = ACTIONS(185), + [anon_sym_length] = ACTIONS(185), + [anon_sym_output] = ACTIONS(185), + [anon_sym_output_error] = ACTIONS(185), + [anon_sym_type] = ACTIONS(185), + [anon_sym_append] = ACTIONS(185), + [anon_sym_metadata] = ACTIONS(185), + [anon_sym_move] = ACTIONS(185), + [anon_sym_read] = ACTIONS(185), + [anon_sym_workdir] = ACTIONS(185), + [anon_sym_write] = ACTIONS(185), + [anon_sym_from_json] = ACTIONS(185), + [anon_sym_to_json] = ACTIONS(185), + [anon_sym_to_string] = ACTIONS(185), + [anon_sym_to_float] = ACTIONS(185), + [anon_sym_bash] = ACTIONS(185), + [anon_sym_fish] = ACTIONS(185), + [anon_sym_raw] = ACTIONS(185), + [anon_sym_sh] = ACTIONS(185), + [anon_sym_zsh] = ACTIONS(185), + [anon_sym_random] = ACTIONS(185), + [anon_sym_random_boolean] = ACTIONS(185), + [anon_sym_random_float] = ACTIONS(185), + [anon_sym_random_integer] = ACTIONS(185), + [anon_sym_columns] = ACTIONS(185), + [anon_sym_rows] = ACTIONS(185), + [anon_sym_reverse] = ACTIONS(185), }, [120] = { - [sym_block] = STATE(608), - [sym_statement] = STATE(27), - [sym_expression] = STATE(663), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(631), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(637), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(1998), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(296), - [aux_sym_block_repeat1] = STATE(27), - [sym_identifier] = ACTIONS(55), + [sym_block] = STATE(610), + [sym_statement] = STATE(212), + [sym_expression] = STATE(460), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(598), + [sym_if_else] = STATE(598), + [sym_if] = STATE(564), + [sym_match] = STATE(598), + [sym_while] = STATE(598), + [sym_for] = STATE(598), + [sym_transform] = STATE(598), + [sym_filter] = STATE(598), + [sym_find] = STATE(598), + [sym_remove] = STATE(598), + [sym_reduce] = STATE(598), + [sym_select] = STATE(598), + [sym_insert] = STATE(598), + [sym_async] = STATE(598), + [sym_identifier_list] = STATE(1100), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(181), + [aux_sym_block_repeat1] = STATE(212), + [sym_identifier] = ACTIONS(445), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LPAREN] = ACTIONS(59), [sym_integer] = ACTIONS(61), [sym_float] = ACTIONS(63), @@ -19765,104 +17932,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(65), [anon_sym_false] = ACTIONS(65), [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(311), - [anon_sym_match] = ACTIONS(313), - [anon_sym_EQ_GT] = ACTIONS(315), - [anon_sym_while] = ACTIONS(317), - [anon_sym_for] = ACTIONS(319), - [anon_sym_asyncfor] = ACTIONS(321), - [anon_sym_transform] = ACTIONS(323), - [anon_sym_filter] = ACTIONS(325), - [anon_sym_find] = ACTIONS(327), - [anon_sym_remove] = ACTIONS(329), - [anon_sym_reduce] = ACTIONS(331), - [anon_sym_select] = ACTIONS(333), - [anon_sym_insert] = ACTIONS(335), - [anon_sym_async] = ACTIONS(337), + [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(449), + [anon_sym_match] = ACTIONS(451), + [anon_sym_EQ_GT] = ACTIONS(123), + [anon_sym_while] = ACTIONS(453), + [anon_sym_for] = ACTIONS(455), + [anon_sym_asyncfor] = ACTIONS(457), + [anon_sym_transform] = ACTIONS(459), + [anon_sym_filter] = ACTIONS(461), + [anon_sym_find] = ACTIONS(463), + [anon_sym_remove] = ACTIONS(465), + [anon_sym_reduce] = ACTIONS(467), + [anon_sym_select] = ACTIONS(469), + [anon_sym_insert] = ACTIONS(143), + [anon_sym_async] = ACTIONS(471), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(339), - [anon_sym_assert] = ACTIONS(341), - [anon_sym_assert_equal] = ACTIONS(341), - [anon_sym_download] = ACTIONS(341), - [anon_sym_help] = ACTIONS(341), - [anon_sym_length] = ACTIONS(341), - [anon_sym_output] = ACTIONS(341), - [anon_sym_output_error] = ACTIONS(341), - [anon_sym_type] = ACTIONS(341), - [anon_sym_append] = ACTIONS(341), - [anon_sym_metadata] = ACTIONS(341), - [anon_sym_move] = ACTIONS(341), - [anon_sym_read] = ACTIONS(341), - [anon_sym_workdir] = ACTIONS(341), - [anon_sym_write] = ACTIONS(341), - [anon_sym_from_json] = ACTIONS(341), - [anon_sym_to_json] = ACTIONS(341), - [anon_sym_to_string] = ACTIONS(341), - [anon_sym_to_float] = ACTIONS(341), - [anon_sym_bash] = ACTIONS(341), - [anon_sym_fish] = ACTIONS(341), - [anon_sym_raw] = ACTIONS(341), - [anon_sym_sh] = ACTIONS(341), - [anon_sym_zsh] = ACTIONS(341), - [anon_sym_random] = ACTIONS(341), - [anon_sym_random_boolean] = ACTIONS(341), - [anon_sym_random_float] = ACTIONS(341), - [anon_sym_random_integer] = ACTIONS(341), - [anon_sym_columns] = ACTIONS(341), - [anon_sym_rows] = ACTIONS(341), - [anon_sym_reverse] = ACTIONS(341), + [anon_sym_table] = ACTIONS(147), + [anon_sym_assert] = ACTIONS(149), + [anon_sym_assert_equal] = ACTIONS(149), + [anon_sym_download] = ACTIONS(149), + [anon_sym_help] = ACTIONS(149), + [anon_sym_length] = ACTIONS(149), + [anon_sym_output] = ACTIONS(149), + [anon_sym_output_error] = ACTIONS(149), + [anon_sym_type] = ACTIONS(149), + [anon_sym_append] = ACTIONS(149), + [anon_sym_metadata] = ACTIONS(149), + [anon_sym_move] = ACTIONS(149), + [anon_sym_read] = ACTIONS(149), + [anon_sym_workdir] = ACTIONS(149), + [anon_sym_write] = ACTIONS(149), + [anon_sym_from_json] = ACTIONS(149), + [anon_sym_to_json] = ACTIONS(149), + [anon_sym_to_string] = ACTIONS(149), + [anon_sym_to_float] = ACTIONS(149), + [anon_sym_bash] = ACTIONS(149), + [anon_sym_fish] = ACTIONS(149), + [anon_sym_raw] = ACTIONS(149), + [anon_sym_sh] = ACTIONS(149), + [anon_sym_zsh] = ACTIONS(149), + [anon_sym_random] = ACTIONS(149), + [anon_sym_random_boolean] = ACTIONS(149), + [anon_sym_random_float] = ACTIONS(149), + [anon_sym_random_integer] = ACTIONS(149), + [anon_sym_columns] = ACTIONS(149), + [anon_sym_rows] = ACTIONS(149), + [anon_sym_reverse] = ACTIONS(149), }, [121] = { - [sym_block] = STATE(610), - [sym_statement] = STATE(27), - [sym_expression] = STATE(663), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(631), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(637), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(1998), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(296), - [aux_sym_block_repeat1] = STATE(27), - [sym_identifier] = ACTIONS(55), + [sym_block] = STATE(493), + [sym_statement] = STATE(17), + [sym_expression] = STATE(402), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(348), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1104), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(17), + [sym_identifier] = ACTIONS(187), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(189), + [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(869), + [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(193), + [anon_sym_EQ_GT] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_for] = ACTIONS(199), + [anon_sym_asyncfor] = ACTIONS(201), + [anon_sym_transform] = ACTIONS(203), + [anon_sym_filter] = ACTIONS(205), + [anon_sym_find] = ACTIONS(207), + [anon_sym_remove] = ACTIONS(209), + [anon_sym_reduce] = ACTIONS(211), + [anon_sym_select] = ACTIONS(213), + [anon_sym_insert] = ACTIONS(215), + [anon_sym_async] = ACTIONS(217), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(219), + [anon_sym_assert] = ACTIONS(221), + [anon_sym_assert_equal] = ACTIONS(221), + [anon_sym_download] = ACTIONS(221), + [anon_sym_help] = ACTIONS(221), + [anon_sym_length] = ACTIONS(221), + [anon_sym_output] = ACTIONS(221), + [anon_sym_output_error] = ACTIONS(221), + [anon_sym_type] = ACTIONS(221), + [anon_sym_append] = ACTIONS(221), + [anon_sym_metadata] = ACTIONS(221), + [anon_sym_move] = ACTIONS(221), + [anon_sym_read] = ACTIONS(221), + [anon_sym_workdir] = ACTIONS(221), + [anon_sym_write] = ACTIONS(221), + [anon_sym_from_json] = ACTIONS(221), + [anon_sym_to_json] = ACTIONS(221), + [anon_sym_to_string] = ACTIONS(221), + [anon_sym_to_float] = ACTIONS(221), + [anon_sym_bash] = ACTIONS(221), + [anon_sym_fish] = ACTIONS(221), + [anon_sym_raw] = ACTIONS(221), + [anon_sym_sh] = ACTIONS(221), + [anon_sym_zsh] = ACTIONS(221), + [anon_sym_random] = ACTIONS(221), + [anon_sym_random_boolean] = ACTIONS(221), + [anon_sym_random_float] = ACTIONS(221), + [anon_sym_random_integer] = ACTIONS(221), + [anon_sym_columns] = ACTIONS(221), + [anon_sym_rows] = ACTIONS(221), + [anon_sym_reverse] = ACTIONS(221), + }, + [122] = { + [sym_block] = STATE(408), + [sym_statement] = STATE(16), + [sym_expression] = STATE(387), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(366), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1210), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(186), + [aux_sym_block_repeat1] = STATE(16), + [sym_identifier] = ACTIONS(151), [sym__comment] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(57), [anon_sym_LPAREN] = ACTIONS(59), @@ -19872,210 +18146,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(65), [anon_sym_false] = ACTIONS(65), [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(311), - [anon_sym_match] = ACTIONS(313), - [anon_sym_EQ_GT] = ACTIONS(315), - [anon_sym_while] = ACTIONS(317), - [anon_sym_for] = ACTIONS(319), - [anon_sym_asyncfor] = ACTIONS(321), - [anon_sym_transform] = ACTIONS(323), - [anon_sym_filter] = ACTIONS(325), - [anon_sym_find] = ACTIONS(327), - [anon_sym_remove] = ACTIONS(329), - [anon_sym_reduce] = ACTIONS(331), - [anon_sym_select] = ACTIONS(333), - [anon_sym_insert] = ACTIONS(335), - [anon_sym_async] = ACTIONS(337), + [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(155), + [anon_sym_match] = ACTIONS(157), + [anon_sym_EQ_GT] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_asyncfor] = ACTIONS(165), + [anon_sym_transform] = ACTIONS(167), + [anon_sym_filter] = ACTIONS(169), + [anon_sym_find] = ACTIONS(171), + [anon_sym_remove] = ACTIONS(173), + [anon_sym_reduce] = ACTIONS(175), + [anon_sym_select] = ACTIONS(177), + [anon_sym_insert] = ACTIONS(179), + [anon_sym_async] = ACTIONS(181), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(339), - [anon_sym_assert] = ACTIONS(341), - [anon_sym_assert_equal] = ACTIONS(341), - [anon_sym_download] = ACTIONS(341), - [anon_sym_help] = ACTIONS(341), - [anon_sym_length] = ACTIONS(341), - [anon_sym_output] = ACTIONS(341), - [anon_sym_output_error] = ACTIONS(341), - [anon_sym_type] = ACTIONS(341), - [anon_sym_append] = ACTIONS(341), - [anon_sym_metadata] = ACTIONS(341), - [anon_sym_move] = ACTIONS(341), - [anon_sym_read] = ACTIONS(341), - [anon_sym_workdir] = ACTIONS(341), - [anon_sym_write] = ACTIONS(341), - [anon_sym_from_json] = ACTIONS(341), - [anon_sym_to_json] = ACTIONS(341), - [anon_sym_to_string] = ACTIONS(341), - [anon_sym_to_float] = ACTIONS(341), - [anon_sym_bash] = ACTIONS(341), - [anon_sym_fish] = ACTIONS(341), - [anon_sym_raw] = ACTIONS(341), - [anon_sym_sh] = ACTIONS(341), - [anon_sym_zsh] = ACTIONS(341), - [anon_sym_random] = ACTIONS(341), - [anon_sym_random_boolean] = ACTIONS(341), - [anon_sym_random_float] = ACTIONS(341), - [anon_sym_random_integer] = ACTIONS(341), - [anon_sym_columns] = ACTIONS(341), - [anon_sym_rows] = ACTIONS(341), - [anon_sym_reverse] = ACTIONS(341), - }, - [122] = { - [sym_block] = STATE(733), - [sym_statement] = STATE(35), - [sym_expression] = STATE(701), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(706), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(582), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1866), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(320), - [aux_sym_block_repeat1] = STATE(35), - [sym_identifier] = ACTIONS(149), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(197), - [anon_sym_match] = ACTIONS(497), - [anon_sym_EQ_GT] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_asyncfor] = ACTIONS(505), - [anon_sym_transform] = ACTIONS(507), - [anon_sym_filter] = ACTIONS(509), - [anon_sym_find] = ACTIONS(511), - [anon_sym_remove] = ACTIONS(513), - [anon_sym_reduce] = ACTIONS(515), - [anon_sym_select] = ACTIONS(517), - [anon_sym_insert] = ACTIONS(519), - [anon_sym_async] = ACTIONS(521), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(523), - [anon_sym_assert] = ACTIONS(525), - [anon_sym_assert_equal] = ACTIONS(525), - [anon_sym_download] = ACTIONS(525), - [anon_sym_help] = ACTIONS(525), - [anon_sym_length] = ACTIONS(525), - [anon_sym_output] = ACTIONS(525), - [anon_sym_output_error] = ACTIONS(525), - [anon_sym_type] = ACTIONS(525), - [anon_sym_append] = ACTIONS(525), - [anon_sym_metadata] = ACTIONS(525), - [anon_sym_move] = ACTIONS(525), - [anon_sym_read] = ACTIONS(525), - [anon_sym_workdir] = ACTIONS(525), - [anon_sym_write] = ACTIONS(525), - [anon_sym_from_json] = ACTIONS(525), - [anon_sym_to_json] = ACTIONS(525), - [anon_sym_to_string] = ACTIONS(525), - [anon_sym_to_float] = ACTIONS(525), - [anon_sym_bash] = ACTIONS(525), - [anon_sym_fish] = ACTIONS(525), - [anon_sym_raw] = ACTIONS(525), - [anon_sym_sh] = ACTIONS(525), - [anon_sym_zsh] = ACTIONS(525), - [anon_sym_random] = ACTIONS(525), - [anon_sym_random_boolean] = ACTIONS(525), - [anon_sym_random_float] = ACTIONS(525), - [anon_sym_random_integer] = ACTIONS(525), - [anon_sym_columns] = ACTIONS(525), - [anon_sym_rows] = ACTIONS(525), - [anon_sym_reverse] = ACTIONS(525), + [anon_sym_table] = ACTIONS(183), + [anon_sym_assert] = ACTIONS(185), + [anon_sym_assert_equal] = ACTIONS(185), + [anon_sym_download] = ACTIONS(185), + [anon_sym_help] = ACTIONS(185), + [anon_sym_length] = ACTIONS(185), + [anon_sym_output] = ACTIONS(185), + [anon_sym_output_error] = ACTIONS(185), + [anon_sym_type] = ACTIONS(185), + [anon_sym_append] = ACTIONS(185), + [anon_sym_metadata] = ACTIONS(185), + [anon_sym_move] = ACTIONS(185), + [anon_sym_read] = ACTIONS(185), + [anon_sym_workdir] = ACTIONS(185), + [anon_sym_write] = ACTIONS(185), + [anon_sym_from_json] = ACTIONS(185), + [anon_sym_to_json] = ACTIONS(185), + [anon_sym_to_string] = ACTIONS(185), + [anon_sym_to_float] = ACTIONS(185), + [anon_sym_bash] = ACTIONS(185), + [anon_sym_fish] = ACTIONS(185), + [anon_sym_raw] = ACTIONS(185), + [anon_sym_sh] = ACTIONS(185), + [anon_sym_zsh] = ACTIONS(185), + [anon_sym_random] = ACTIONS(185), + [anon_sym_random_boolean] = ACTIONS(185), + [anon_sym_random_float] = ACTIONS(185), + [anon_sym_random_integer] = ACTIONS(185), + [anon_sym_columns] = ACTIONS(185), + [anon_sym_rows] = ACTIONS(185), + [anon_sym_reverse] = ACTIONS(185), }, [123] = { - [sym_block] = STATE(1060), - [sym_statement] = STATE(381), - [sym_expression] = STATE(925), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(867), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(980), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(381), + [sym_block] = STATE(642), + [sym_statement] = STATE(226), + [sym_expression] = STATE(535), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(561), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [aux_sym_block_repeat1] = STATE(226), [sym_identifier] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(7), @@ -20086,20 +18253,20 @@ 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(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), + [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(19), [anon_sym_match] = ACTIONS(21), [anon_sym_EQ_GT] = ACTIONS(23), @@ -20148,41 +18315,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_reverse] = ACTIONS(51), }, [124] = { - [sym_block] = STATE(1056), - [sym_statement] = STATE(381), - [sym_expression] = STATE(925), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(867), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(980), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(381), + [sym_block] = STATE(643), + [sym_statement] = STATE(226), + [sym_expression] = STATE(535), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(561), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [aux_sym_block_repeat1] = STATE(226), [sym_identifier] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(7), @@ -20193,20 +18360,20 @@ 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(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), + [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(19), [anon_sym_match] = ACTIONS(21), [anon_sym_EQ_GT] = ACTIONS(23), @@ -20255,41 +18422,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_reverse] = ACTIONS(51), }, [125] = { - [sym_block] = STATE(1054), - [sym_statement] = STATE(381), - [sym_expression] = STATE(925), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(867), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(980), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(381), + [sym_block] = STATE(644), + [sym_statement] = STATE(226), + [sym_expression] = STATE(535), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(561), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [aux_sym_block_repeat1] = STATE(226), [sym_identifier] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(7), @@ -20300,20 +18467,20 @@ 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(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), + [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(19), [anon_sym_match] = ACTIONS(21), [anon_sym_EQ_GT] = ACTIONS(23), @@ -20362,148 +18529,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_reverse] = ACTIONS(51), }, [126] = { - [sym_block] = STATE(589), - [sym_statement] = STATE(27), - [sym_expression] = STATE(663), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(631), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(637), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(1998), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(296), - [aux_sym_block_repeat1] = STATE(27), - [sym_identifier] = ACTIONS(55), + [sym_block] = STATE(1015), + [sym_statement] = STATE(221), + [sym_expression] = STATE(547), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(571), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [aux_sym_block_repeat1] = STATE(221), + [sym_identifier] = ACTIONS(941), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(59), - [sym_integer] = ACTIONS(61), - [sym_float] = ACTIONS(63), - [sym_string] = ACTIONS(63), - [anon_sym_true] = ACTIONS(65), - [anon_sym_false] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(1013), + [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(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(311), - [anon_sym_match] = ACTIONS(313), - [anon_sym_EQ_GT] = ACTIONS(315), - [anon_sym_while] = ACTIONS(317), - [anon_sym_for] = ACTIONS(319), - [anon_sym_asyncfor] = ACTIONS(321), - [anon_sym_transform] = ACTIONS(323), - [anon_sym_filter] = ACTIONS(325), - [anon_sym_find] = ACTIONS(327), - [anon_sym_remove] = ACTIONS(329), - [anon_sym_reduce] = ACTIONS(331), - [anon_sym_select] = ACTIONS(333), - [anon_sym_insert] = ACTIONS(335), - [anon_sym_async] = ACTIONS(337), + [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(449), + [anon_sym_match] = ACTIONS(943), + [anon_sym_EQ_GT] = ACTIONS(265), + [anon_sym_while] = ACTIONS(945), + [anon_sym_for] = ACTIONS(947), + [anon_sym_asyncfor] = ACTIONS(949), + [anon_sym_transform] = ACTIONS(951), + [anon_sym_filter] = ACTIONS(953), + [anon_sym_find] = ACTIONS(955), + [anon_sym_remove] = ACTIONS(957), + [anon_sym_reduce] = ACTIONS(959), + [anon_sym_select] = ACTIONS(961), + [anon_sym_insert] = ACTIONS(285), + [anon_sym_async] = ACTIONS(963), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(339), - [anon_sym_assert] = ACTIONS(341), - [anon_sym_assert_equal] = ACTIONS(341), - [anon_sym_download] = ACTIONS(341), - [anon_sym_help] = ACTIONS(341), - [anon_sym_length] = ACTIONS(341), - [anon_sym_output] = ACTIONS(341), - [anon_sym_output_error] = ACTIONS(341), - [anon_sym_type] = ACTIONS(341), - [anon_sym_append] = ACTIONS(341), - [anon_sym_metadata] = ACTIONS(341), - [anon_sym_move] = ACTIONS(341), - [anon_sym_read] = ACTIONS(341), - [anon_sym_workdir] = ACTIONS(341), - [anon_sym_write] = ACTIONS(341), - [anon_sym_from_json] = ACTIONS(341), - [anon_sym_to_json] = ACTIONS(341), - [anon_sym_to_string] = ACTIONS(341), - [anon_sym_to_float] = ACTIONS(341), - [anon_sym_bash] = ACTIONS(341), - [anon_sym_fish] = ACTIONS(341), - [anon_sym_raw] = ACTIONS(341), - [anon_sym_sh] = ACTIONS(341), - [anon_sym_zsh] = ACTIONS(341), - [anon_sym_random] = ACTIONS(341), - [anon_sym_random_boolean] = ACTIONS(341), - [anon_sym_random_float] = ACTIONS(341), - [anon_sym_random_integer] = ACTIONS(341), - [anon_sym_columns] = ACTIONS(341), - [anon_sym_rows] = ACTIONS(341), - [anon_sym_reverse] = ACTIONS(341), + [anon_sym_table] = ACTIONS(289), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_assert_equal] = ACTIONS(291), + [anon_sym_download] = ACTIONS(291), + [anon_sym_help] = ACTIONS(291), + [anon_sym_length] = ACTIONS(291), + [anon_sym_output] = ACTIONS(291), + [anon_sym_output_error] = ACTIONS(291), + [anon_sym_type] = ACTIONS(291), + [anon_sym_append] = ACTIONS(291), + [anon_sym_metadata] = ACTIONS(291), + [anon_sym_move] = ACTIONS(291), + [anon_sym_read] = ACTIONS(291), + [anon_sym_workdir] = ACTIONS(291), + [anon_sym_write] = ACTIONS(291), + [anon_sym_from_json] = ACTIONS(291), + [anon_sym_to_json] = ACTIONS(291), + [anon_sym_to_string] = ACTIONS(291), + [anon_sym_to_float] = ACTIONS(291), + [anon_sym_bash] = ACTIONS(291), + [anon_sym_fish] = ACTIONS(291), + [anon_sym_raw] = ACTIONS(291), + [anon_sym_sh] = ACTIONS(291), + [anon_sym_zsh] = ACTIONS(291), + [anon_sym_random] = ACTIONS(291), + [anon_sym_random_boolean] = ACTIONS(291), + [anon_sym_random_float] = ACTIONS(291), + [anon_sym_random_integer] = ACTIONS(291), + [anon_sym_columns] = ACTIONS(291), + [anon_sym_rows] = ACTIONS(291), + [anon_sym_reverse] = ACTIONS(291), }, [127] = { - [sym_block] = STATE(1053), - [sym_statement] = STATE(381), - [sym_expression] = STATE(925), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(867), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(980), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(381), + [sym_block] = STATE(645), + [sym_statement] = STATE(226), + [sym_expression] = STATE(535), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(561), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [aux_sym_block_repeat1] = STATE(226), [sym_identifier] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(7), @@ -20514,20 +18681,20 @@ 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(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), + [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(19), [anon_sym_match] = ACTIONS(21), [anon_sym_EQ_GT] = ACTIONS(23), @@ -20576,41 +18743,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_reverse] = ACTIONS(51), }, [128] = { - [sym_block] = STATE(1062), - [sym_statement] = STATE(381), - [sym_expression] = STATE(925), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(867), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(980), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(381), + [sym_block] = STATE(646), + [sym_statement] = STATE(226), + [sym_expression] = STATE(535), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(561), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [aux_sym_block_repeat1] = STATE(226), [sym_identifier] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(7), @@ -20621,20 +18788,20 @@ 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(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), + [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(19), [anon_sym_match] = ACTIONS(21), [anon_sym_EQ_GT] = ACTIONS(23), @@ -20683,362 +18850,362 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_reverse] = ACTIONS(51), }, [129] = { - [sym_block] = STATE(619), - [sym_statement] = STATE(27), - [sym_expression] = STATE(663), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(631), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(637), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(1998), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(296), - [aux_sym_block_repeat1] = STATE(27), - [sym_identifier] = ACTIONS(55), + [sym_block] = STATE(499), + [sym_statement] = STATE(17), + [sym_expression] = STATE(402), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(348), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1104), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(17), + [sym_identifier] = ACTIONS(187), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(59), - [sym_integer] = ACTIONS(61), - [sym_float] = ACTIONS(63), - [sym_string] = ACTIONS(63), - [anon_sym_true] = ACTIONS(65), - [anon_sym_false] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(189), + [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(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(311), - [anon_sym_match] = ACTIONS(313), - [anon_sym_EQ_GT] = ACTIONS(315), - [anon_sym_while] = ACTIONS(317), - [anon_sym_for] = ACTIONS(319), - [anon_sym_asyncfor] = ACTIONS(321), - [anon_sym_transform] = ACTIONS(323), - [anon_sym_filter] = ACTIONS(325), - [anon_sym_find] = ACTIONS(327), - [anon_sym_remove] = ACTIONS(329), - [anon_sym_reduce] = ACTIONS(331), - [anon_sym_select] = ACTIONS(333), - [anon_sym_insert] = ACTIONS(335), - [anon_sym_async] = ACTIONS(337), + [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(193), + [anon_sym_EQ_GT] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_for] = ACTIONS(199), + [anon_sym_asyncfor] = ACTIONS(201), + [anon_sym_transform] = ACTIONS(203), + [anon_sym_filter] = ACTIONS(205), + [anon_sym_find] = ACTIONS(207), + [anon_sym_remove] = ACTIONS(209), + [anon_sym_reduce] = ACTIONS(211), + [anon_sym_select] = ACTIONS(213), + [anon_sym_insert] = ACTIONS(215), + [anon_sym_async] = ACTIONS(217), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(339), - [anon_sym_assert] = ACTIONS(341), - [anon_sym_assert_equal] = ACTIONS(341), - [anon_sym_download] = ACTIONS(341), - [anon_sym_help] = ACTIONS(341), - [anon_sym_length] = ACTIONS(341), - [anon_sym_output] = ACTIONS(341), - [anon_sym_output_error] = ACTIONS(341), - [anon_sym_type] = ACTIONS(341), - [anon_sym_append] = ACTIONS(341), - [anon_sym_metadata] = ACTIONS(341), - [anon_sym_move] = ACTIONS(341), - [anon_sym_read] = ACTIONS(341), - [anon_sym_workdir] = ACTIONS(341), - [anon_sym_write] = ACTIONS(341), - [anon_sym_from_json] = ACTIONS(341), - [anon_sym_to_json] = ACTIONS(341), - [anon_sym_to_string] = ACTIONS(341), - [anon_sym_to_float] = ACTIONS(341), - [anon_sym_bash] = ACTIONS(341), - [anon_sym_fish] = ACTIONS(341), - [anon_sym_raw] = ACTIONS(341), - [anon_sym_sh] = ACTIONS(341), - [anon_sym_zsh] = ACTIONS(341), - [anon_sym_random] = ACTIONS(341), - [anon_sym_random_boolean] = ACTIONS(341), - [anon_sym_random_float] = ACTIONS(341), - [anon_sym_random_integer] = ACTIONS(341), - [anon_sym_columns] = ACTIONS(341), - [anon_sym_rows] = ACTIONS(341), - [anon_sym_reverse] = ACTIONS(341), + [anon_sym_table] = ACTIONS(219), + [anon_sym_assert] = ACTIONS(221), + [anon_sym_assert_equal] = ACTIONS(221), + [anon_sym_download] = ACTIONS(221), + [anon_sym_help] = ACTIONS(221), + [anon_sym_length] = ACTIONS(221), + [anon_sym_output] = ACTIONS(221), + [anon_sym_output_error] = ACTIONS(221), + [anon_sym_type] = ACTIONS(221), + [anon_sym_append] = ACTIONS(221), + [anon_sym_metadata] = ACTIONS(221), + [anon_sym_move] = ACTIONS(221), + [anon_sym_read] = ACTIONS(221), + [anon_sym_workdir] = ACTIONS(221), + [anon_sym_write] = ACTIONS(221), + [anon_sym_from_json] = ACTIONS(221), + [anon_sym_to_json] = ACTIONS(221), + [anon_sym_to_string] = ACTIONS(221), + [anon_sym_to_float] = ACTIONS(221), + [anon_sym_bash] = ACTIONS(221), + [anon_sym_fish] = ACTIONS(221), + [anon_sym_raw] = ACTIONS(221), + [anon_sym_sh] = ACTIONS(221), + [anon_sym_zsh] = ACTIONS(221), + [anon_sym_random] = ACTIONS(221), + [anon_sym_random_boolean] = ACTIONS(221), + [anon_sym_random_float] = ACTIONS(221), + [anon_sym_random_integer] = ACTIONS(221), + [anon_sym_columns] = ACTIONS(221), + [anon_sym_rows] = ACTIONS(221), + [anon_sym_reverse] = ACTIONS(221), }, [130] = { - [sym_block] = STATE(731), - [sym_statement] = STATE(35), - [sym_expression] = STATE(701), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(706), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(582), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1866), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(320), - [aux_sym_block_repeat1] = STATE(35), - [sym_identifier] = ACTIONS(149), + [sym_block] = STATE(404), + [sym_statement] = STATE(8), + [sym_expression] = STATE(355), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(346), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1225), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(170), + [aux_sym_block_repeat1] = STATE(8), + [sym_identifier] = ACTIONS(55), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(197), - [anon_sym_match] = ACTIONS(497), - [anon_sym_EQ_GT] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_asyncfor] = ACTIONS(505), - [anon_sym_transform] = ACTIONS(507), - [anon_sym_filter] = ACTIONS(509), - [anon_sym_find] = ACTIONS(511), - [anon_sym_remove] = ACTIONS(513), - [anon_sym_reduce] = ACTIONS(515), - [anon_sym_select] = ACTIONS(517), - [anon_sym_insert] = ACTIONS(519), - [anon_sym_async] = ACTIONS(521), + [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_asyncfor] = ACTIONS(91), + [anon_sym_transform] = ACTIONS(93), + [anon_sym_filter] = ACTIONS(95), + [anon_sym_find] = ACTIONS(97), + [anon_sym_remove] = ACTIONS(99), + [anon_sym_reduce] = ACTIONS(101), + [anon_sym_select] = ACTIONS(103), + [anon_sym_insert] = ACTIONS(105), + [anon_sym_async] = ACTIONS(107), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(523), - [anon_sym_assert] = ACTIONS(525), - [anon_sym_assert_equal] = ACTIONS(525), - [anon_sym_download] = ACTIONS(525), - [anon_sym_help] = ACTIONS(525), - [anon_sym_length] = ACTIONS(525), - [anon_sym_output] = ACTIONS(525), - [anon_sym_output_error] = ACTIONS(525), - [anon_sym_type] = ACTIONS(525), - [anon_sym_append] = ACTIONS(525), - [anon_sym_metadata] = ACTIONS(525), - [anon_sym_move] = ACTIONS(525), - [anon_sym_read] = ACTIONS(525), - [anon_sym_workdir] = ACTIONS(525), - [anon_sym_write] = ACTIONS(525), - [anon_sym_from_json] = ACTIONS(525), - [anon_sym_to_json] = ACTIONS(525), - [anon_sym_to_string] = ACTIONS(525), - [anon_sym_to_float] = ACTIONS(525), - [anon_sym_bash] = ACTIONS(525), - [anon_sym_fish] = ACTIONS(525), - [anon_sym_raw] = ACTIONS(525), - [anon_sym_sh] = ACTIONS(525), - [anon_sym_zsh] = ACTIONS(525), - [anon_sym_random] = ACTIONS(525), - [anon_sym_random_boolean] = ACTIONS(525), - [anon_sym_random_float] = ACTIONS(525), - [anon_sym_random_integer] = ACTIONS(525), - [anon_sym_columns] = ACTIONS(525), - [anon_sym_rows] = ACTIONS(525), - [anon_sym_reverse] = ACTIONS(525), + [anon_sym_table] = ACTIONS(111), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_assert_equal] = ACTIONS(113), + [anon_sym_download] = ACTIONS(113), + [anon_sym_help] = ACTIONS(113), + [anon_sym_length] = ACTIONS(113), + [anon_sym_output] = ACTIONS(113), + [anon_sym_output_error] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_append] = ACTIONS(113), + [anon_sym_metadata] = ACTIONS(113), + [anon_sym_move] = ACTIONS(113), + [anon_sym_read] = ACTIONS(113), + [anon_sym_workdir] = ACTIONS(113), + [anon_sym_write] = ACTIONS(113), + [anon_sym_from_json] = ACTIONS(113), + [anon_sym_to_json] = ACTIONS(113), + [anon_sym_to_string] = ACTIONS(113), + [anon_sym_to_float] = ACTIONS(113), + [anon_sym_bash] = ACTIONS(113), + [anon_sym_fish] = ACTIONS(113), + [anon_sym_raw] = ACTIONS(113), + [anon_sym_sh] = ACTIONS(113), + [anon_sym_zsh] = ACTIONS(113), + [anon_sym_random] = ACTIONS(113), + [anon_sym_random_boolean] = ACTIONS(113), + [anon_sym_random_float] = ACTIONS(113), + [anon_sym_random_integer] = ACTIONS(113), + [anon_sym_columns] = ACTIONS(113), + [anon_sym_rows] = ACTIONS(113), + [anon_sym_reverse] = ACTIONS(113), }, [131] = { - [sym_block] = STATE(636), - [sym_statement] = STATE(27), - [sym_expression] = STATE(663), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(631), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(637), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(1998), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(296), - [aux_sym_block_repeat1] = STATE(27), - [sym_identifier] = ACTIONS(55), + [sym_block] = STATE(499), + [sym_statement] = STATE(22), + [sym_expression] = STATE(449), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(353), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [aux_sym_block_repeat1] = STATE(22), + [sym_identifier] = ACTIONS(259), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(59), - [sym_integer] = ACTIONS(61), - [sym_float] = ACTIONS(63), - [sym_string] = ACTIONS(63), - [anon_sym_true] = ACTIONS(65), - [anon_sym_false] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(189), + [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(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(311), - [anon_sym_match] = ACTIONS(313), - [anon_sym_EQ_GT] = ACTIONS(315), - [anon_sym_while] = ACTIONS(317), - [anon_sym_for] = ACTIONS(319), - [anon_sym_asyncfor] = ACTIONS(321), - [anon_sym_transform] = ACTIONS(323), - [anon_sym_filter] = ACTIONS(325), - [anon_sym_find] = ACTIONS(327), - [anon_sym_remove] = ACTIONS(329), - [anon_sym_reduce] = ACTIONS(331), - [anon_sym_select] = ACTIONS(333), - [anon_sym_insert] = ACTIONS(335), - [anon_sym_async] = ACTIONS(337), + [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(119), + [anon_sym_match] = ACTIONS(263), + [anon_sym_EQ_GT] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_for] = ACTIONS(269), + [anon_sym_asyncfor] = ACTIONS(271), + [anon_sym_transform] = ACTIONS(273), + [anon_sym_filter] = ACTIONS(275), + [anon_sym_find] = ACTIONS(277), + [anon_sym_remove] = ACTIONS(279), + [anon_sym_reduce] = ACTIONS(281), + [anon_sym_select] = ACTIONS(283), + [anon_sym_insert] = ACTIONS(285), + [anon_sym_async] = ACTIONS(287), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(339), - [anon_sym_assert] = ACTIONS(341), - [anon_sym_assert_equal] = ACTIONS(341), - [anon_sym_download] = ACTIONS(341), - [anon_sym_help] = ACTIONS(341), - [anon_sym_length] = ACTIONS(341), - [anon_sym_output] = ACTIONS(341), - [anon_sym_output_error] = ACTIONS(341), - [anon_sym_type] = ACTIONS(341), - [anon_sym_append] = ACTIONS(341), - [anon_sym_metadata] = ACTIONS(341), - [anon_sym_move] = ACTIONS(341), - [anon_sym_read] = ACTIONS(341), - [anon_sym_workdir] = ACTIONS(341), - [anon_sym_write] = ACTIONS(341), - [anon_sym_from_json] = ACTIONS(341), - [anon_sym_to_json] = ACTIONS(341), - [anon_sym_to_string] = ACTIONS(341), - [anon_sym_to_float] = ACTIONS(341), - [anon_sym_bash] = ACTIONS(341), - [anon_sym_fish] = ACTIONS(341), - [anon_sym_raw] = ACTIONS(341), - [anon_sym_sh] = ACTIONS(341), - [anon_sym_zsh] = ACTIONS(341), - [anon_sym_random] = ACTIONS(341), - [anon_sym_random_boolean] = ACTIONS(341), - [anon_sym_random_float] = ACTIONS(341), - [anon_sym_random_integer] = ACTIONS(341), - [anon_sym_columns] = ACTIONS(341), - [anon_sym_rows] = ACTIONS(341), - [anon_sym_reverse] = ACTIONS(341), + [anon_sym_table] = ACTIONS(289), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_assert_equal] = ACTIONS(291), + [anon_sym_download] = ACTIONS(291), + [anon_sym_help] = ACTIONS(291), + [anon_sym_length] = ACTIONS(291), + [anon_sym_output] = ACTIONS(291), + [anon_sym_output_error] = ACTIONS(291), + [anon_sym_type] = ACTIONS(291), + [anon_sym_append] = ACTIONS(291), + [anon_sym_metadata] = ACTIONS(291), + [anon_sym_move] = ACTIONS(291), + [anon_sym_read] = ACTIONS(291), + [anon_sym_workdir] = ACTIONS(291), + [anon_sym_write] = ACTIONS(291), + [anon_sym_from_json] = ACTIONS(291), + [anon_sym_to_json] = ACTIONS(291), + [anon_sym_to_string] = ACTIONS(291), + [anon_sym_to_float] = ACTIONS(291), + [anon_sym_bash] = ACTIONS(291), + [anon_sym_fish] = ACTIONS(291), + [anon_sym_raw] = ACTIONS(291), + [anon_sym_sh] = ACTIONS(291), + [anon_sym_zsh] = ACTIONS(291), + [anon_sym_random] = ACTIONS(291), + [anon_sym_random_boolean] = ACTIONS(291), + [anon_sym_random_float] = ACTIONS(291), + [anon_sym_random_integer] = ACTIONS(291), + [anon_sym_columns] = ACTIONS(291), + [anon_sym_rows] = ACTIONS(291), + [anon_sym_reverse] = ACTIONS(291), }, [132] = { - [sym_block] = STATE(598), - [sym_statement] = STATE(21), - [sym_expression] = STATE(593), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(631), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(584), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(1776), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(286), - [aux_sym_block_repeat1] = STATE(21), + [sym_block] = STATE(431), + [sym_statement] = STATE(8), + [sym_expression] = STATE(355), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(346), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1225), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(170), + [aux_sym_block_repeat1] = STATE(8), [sym_identifier] = ACTIONS(55), [sym__comment] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(57), @@ -21049,1067 +19216,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(65), [anon_sym_false] = ACTIONS(65), [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(197), - [anon_sym_match] = ACTIONS(199), - [anon_sym_EQ_GT] = ACTIONS(201), - [anon_sym_while] = ACTIONS(203), - [anon_sym_for] = ACTIONS(205), - [anon_sym_asyncfor] = ACTIONS(207), - [anon_sym_transform] = ACTIONS(209), - [anon_sym_filter] = ACTIONS(211), - [anon_sym_find] = ACTIONS(213), - [anon_sym_remove] = ACTIONS(215), - [anon_sym_reduce] = ACTIONS(217), - [anon_sym_select] = ACTIONS(219), - [anon_sym_insert] = ACTIONS(221), - [anon_sym_async] = ACTIONS(223), + [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_asyncfor] = ACTIONS(91), + [anon_sym_transform] = ACTIONS(93), + [anon_sym_filter] = ACTIONS(95), + [anon_sym_find] = ACTIONS(97), + [anon_sym_remove] = ACTIONS(99), + [anon_sym_reduce] = ACTIONS(101), + [anon_sym_select] = ACTIONS(103), + [anon_sym_insert] = ACTIONS(105), + [anon_sym_async] = ACTIONS(107), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(225), - [anon_sym_assert] = ACTIONS(227), - [anon_sym_assert_equal] = ACTIONS(227), - [anon_sym_download] = ACTIONS(227), - [anon_sym_help] = ACTIONS(227), - [anon_sym_length] = ACTIONS(227), - [anon_sym_output] = ACTIONS(227), - [anon_sym_output_error] = ACTIONS(227), - [anon_sym_type] = ACTIONS(227), - [anon_sym_append] = ACTIONS(227), - [anon_sym_metadata] = ACTIONS(227), - [anon_sym_move] = ACTIONS(227), - [anon_sym_read] = ACTIONS(227), - [anon_sym_workdir] = ACTIONS(227), - [anon_sym_write] = ACTIONS(227), - [anon_sym_from_json] = ACTIONS(227), - [anon_sym_to_json] = ACTIONS(227), - [anon_sym_to_string] = ACTIONS(227), - [anon_sym_to_float] = ACTIONS(227), - [anon_sym_bash] = ACTIONS(227), - [anon_sym_fish] = ACTIONS(227), - [anon_sym_raw] = ACTIONS(227), - [anon_sym_sh] = ACTIONS(227), - [anon_sym_zsh] = ACTIONS(227), - [anon_sym_random] = ACTIONS(227), - [anon_sym_random_boolean] = ACTIONS(227), - [anon_sym_random_float] = ACTIONS(227), - [anon_sym_random_integer] = ACTIONS(227), - [anon_sym_columns] = ACTIONS(227), - [anon_sym_rows] = ACTIONS(227), - [anon_sym_reverse] = ACTIONS(227), + [anon_sym_table] = ACTIONS(111), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_assert_equal] = ACTIONS(113), + [anon_sym_download] = ACTIONS(113), + [anon_sym_help] = ACTIONS(113), + [anon_sym_length] = ACTIONS(113), + [anon_sym_output] = ACTIONS(113), + [anon_sym_output_error] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_append] = ACTIONS(113), + [anon_sym_metadata] = ACTIONS(113), + [anon_sym_move] = ACTIONS(113), + [anon_sym_read] = ACTIONS(113), + [anon_sym_workdir] = ACTIONS(113), + [anon_sym_write] = ACTIONS(113), + [anon_sym_from_json] = ACTIONS(113), + [anon_sym_to_json] = ACTIONS(113), + [anon_sym_to_string] = ACTIONS(113), + [anon_sym_to_float] = ACTIONS(113), + [anon_sym_bash] = ACTIONS(113), + [anon_sym_fish] = ACTIONS(113), + [anon_sym_raw] = ACTIONS(113), + [anon_sym_sh] = ACTIONS(113), + [anon_sym_zsh] = ACTIONS(113), + [anon_sym_random] = ACTIONS(113), + [anon_sym_random_boolean] = ACTIONS(113), + [anon_sym_random_float] = ACTIONS(113), + [anon_sym_random_integer] = ACTIONS(113), + [anon_sym_columns] = ACTIONS(113), + [anon_sym_rows] = ACTIONS(113), + [anon_sym_reverse] = ACTIONS(113), }, [133] = { - [sym_block] = STATE(813), - [sym_statement] = STATE(51), - [sym_expression] = STATE(817), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(748), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(760), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1926), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(351), - [aux_sym_block_repeat1] = STATE(51), - [sym_identifier] = ACTIONS(1280), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_match] = ACTIONS(1286), - [anon_sym_EQ_GT] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_asyncfor] = ACTIONS(1294), - [anon_sym_transform] = ACTIONS(1296), - [anon_sym_filter] = ACTIONS(1298), - [anon_sym_find] = ACTIONS(1300), - [anon_sym_remove] = ACTIONS(1302), - [anon_sym_reduce] = ACTIONS(1304), - [anon_sym_select] = ACTIONS(1306), - [anon_sym_insert] = ACTIONS(1308), - [anon_sym_async] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1312), - [anon_sym_assert] = ACTIONS(1314), - [anon_sym_assert_equal] = ACTIONS(1314), - [anon_sym_download] = ACTIONS(1314), - [anon_sym_help] = ACTIONS(1314), - [anon_sym_length] = ACTIONS(1314), - [anon_sym_output] = ACTIONS(1314), - [anon_sym_output_error] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_append] = ACTIONS(1314), - [anon_sym_metadata] = ACTIONS(1314), - [anon_sym_move] = ACTIONS(1314), - [anon_sym_read] = ACTIONS(1314), - [anon_sym_workdir] = ACTIONS(1314), - [anon_sym_write] = ACTIONS(1314), - [anon_sym_from_json] = ACTIONS(1314), - [anon_sym_to_json] = ACTIONS(1314), - [anon_sym_to_string] = ACTIONS(1314), - [anon_sym_to_float] = ACTIONS(1314), - [anon_sym_bash] = ACTIONS(1314), - [anon_sym_fish] = ACTIONS(1314), - [anon_sym_raw] = ACTIONS(1314), - [anon_sym_sh] = ACTIONS(1314), - [anon_sym_zsh] = ACTIONS(1314), - [anon_sym_random] = ACTIONS(1314), - [anon_sym_random_boolean] = ACTIONS(1314), - [anon_sym_random_float] = ACTIONS(1314), - [anon_sym_random_integer] = ACTIONS(1314), - [anon_sym_columns] = ACTIONS(1314), - [anon_sym_rows] = ACTIONS(1314), - [anon_sym_reverse] = ACTIONS(1314), - }, - [134] = { - [sym_block] = STATE(812), - [sym_statement] = STATE(51), - [sym_expression] = STATE(817), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(748), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(760), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1926), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(351), - [aux_sym_block_repeat1] = STATE(51), - [sym_identifier] = ACTIONS(1280), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_match] = ACTIONS(1286), - [anon_sym_EQ_GT] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_asyncfor] = ACTIONS(1294), - [anon_sym_transform] = ACTIONS(1296), - [anon_sym_filter] = ACTIONS(1298), - [anon_sym_find] = ACTIONS(1300), - [anon_sym_remove] = ACTIONS(1302), - [anon_sym_reduce] = ACTIONS(1304), - [anon_sym_select] = ACTIONS(1306), - [anon_sym_insert] = ACTIONS(1308), - [anon_sym_async] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1312), - [anon_sym_assert] = ACTIONS(1314), - [anon_sym_assert_equal] = ACTIONS(1314), - [anon_sym_download] = ACTIONS(1314), - [anon_sym_help] = ACTIONS(1314), - [anon_sym_length] = ACTIONS(1314), - [anon_sym_output] = ACTIONS(1314), - [anon_sym_output_error] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_append] = ACTIONS(1314), - [anon_sym_metadata] = ACTIONS(1314), - [anon_sym_move] = ACTIONS(1314), - [anon_sym_read] = ACTIONS(1314), - [anon_sym_workdir] = ACTIONS(1314), - [anon_sym_write] = ACTIONS(1314), - [anon_sym_from_json] = ACTIONS(1314), - [anon_sym_to_json] = ACTIONS(1314), - [anon_sym_to_string] = ACTIONS(1314), - [anon_sym_to_float] = ACTIONS(1314), - [anon_sym_bash] = ACTIONS(1314), - [anon_sym_fish] = ACTIONS(1314), - [anon_sym_raw] = ACTIONS(1314), - [anon_sym_sh] = ACTIONS(1314), - [anon_sym_zsh] = ACTIONS(1314), - [anon_sym_random] = ACTIONS(1314), - [anon_sym_random_boolean] = ACTIONS(1314), - [anon_sym_random_float] = ACTIONS(1314), - [anon_sym_random_integer] = ACTIONS(1314), - [anon_sym_columns] = ACTIONS(1314), - [anon_sym_rows] = ACTIONS(1314), - [anon_sym_reverse] = ACTIONS(1314), - }, - [135] = { - [sym_block] = STATE(1053), - [sym_statement] = STATE(382), - [sym_expression] = STATE(934), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(842), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(983), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [aux_sym_block_repeat1] = STATE(382), - [sym_identifier] = ACTIONS(2162), - [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(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(1570), - [anon_sym_match] = ACTIONS(2166), - [anon_sym_EQ_GT] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(2168), - [anon_sym_for] = ACTIONS(2170), - [anon_sym_asyncfor] = ACTIONS(2172), - [anon_sym_transform] = ACTIONS(2174), - [anon_sym_filter] = ACTIONS(2176), - [anon_sym_find] = ACTIONS(2178), - [anon_sym_remove] = ACTIONS(2180), - [anon_sym_reduce] = ACTIONS(2182), - [anon_sym_select] = ACTIONS(2184), - [anon_sym_insert] = ACTIONS(1224), - [anon_sym_async] = ACTIONS(2186), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1228), - [anon_sym_assert] = ACTIONS(1230), - [anon_sym_assert_equal] = ACTIONS(1230), - [anon_sym_download] = ACTIONS(1230), - [anon_sym_help] = ACTIONS(1230), - [anon_sym_length] = ACTIONS(1230), - [anon_sym_output] = ACTIONS(1230), - [anon_sym_output_error] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_append] = ACTIONS(1230), - [anon_sym_metadata] = ACTIONS(1230), - [anon_sym_move] = ACTIONS(1230), - [anon_sym_read] = ACTIONS(1230), - [anon_sym_workdir] = ACTIONS(1230), - [anon_sym_write] = ACTIONS(1230), - [anon_sym_from_json] = ACTIONS(1230), - [anon_sym_to_json] = ACTIONS(1230), - [anon_sym_to_string] = ACTIONS(1230), - [anon_sym_to_float] = ACTIONS(1230), - [anon_sym_bash] = ACTIONS(1230), - [anon_sym_fish] = ACTIONS(1230), - [anon_sym_raw] = ACTIONS(1230), - [anon_sym_sh] = ACTIONS(1230), - [anon_sym_zsh] = ACTIONS(1230), - [anon_sym_random] = ACTIONS(1230), - [anon_sym_random_boolean] = ACTIONS(1230), - [anon_sym_random_float] = ACTIONS(1230), - [anon_sym_random_integer] = ACTIONS(1230), - [anon_sym_columns] = ACTIONS(1230), - [anon_sym_rows] = ACTIONS(1230), - [anon_sym_reverse] = ACTIONS(1230), - }, - [136] = { - [sym_block] = STATE(810), - [sym_statement] = STATE(51), - [sym_expression] = STATE(817), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(748), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(760), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1926), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(351), - [aux_sym_block_repeat1] = STATE(51), - [sym_identifier] = ACTIONS(1280), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_match] = ACTIONS(1286), - [anon_sym_EQ_GT] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_asyncfor] = ACTIONS(1294), - [anon_sym_transform] = ACTIONS(1296), - [anon_sym_filter] = ACTIONS(1298), - [anon_sym_find] = ACTIONS(1300), - [anon_sym_remove] = ACTIONS(1302), - [anon_sym_reduce] = ACTIONS(1304), - [anon_sym_select] = ACTIONS(1306), - [anon_sym_insert] = ACTIONS(1308), - [anon_sym_async] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1312), - [anon_sym_assert] = ACTIONS(1314), - [anon_sym_assert_equal] = ACTIONS(1314), - [anon_sym_download] = ACTIONS(1314), - [anon_sym_help] = ACTIONS(1314), - [anon_sym_length] = ACTIONS(1314), - [anon_sym_output] = ACTIONS(1314), - [anon_sym_output_error] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_append] = ACTIONS(1314), - [anon_sym_metadata] = ACTIONS(1314), - [anon_sym_move] = ACTIONS(1314), - [anon_sym_read] = ACTIONS(1314), - [anon_sym_workdir] = ACTIONS(1314), - [anon_sym_write] = ACTIONS(1314), - [anon_sym_from_json] = ACTIONS(1314), - [anon_sym_to_json] = ACTIONS(1314), - [anon_sym_to_string] = ACTIONS(1314), - [anon_sym_to_float] = ACTIONS(1314), - [anon_sym_bash] = ACTIONS(1314), - [anon_sym_fish] = ACTIONS(1314), - [anon_sym_raw] = ACTIONS(1314), - [anon_sym_sh] = ACTIONS(1314), - [anon_sym_zsh] = ACTIONS(1314), - [anon_sym_random] = ACTIONS(1314), - [anon_sym_random_boolean] = ACTIONS(1314), - [anon_sym_random_float] = ACTIONS(1314), - [anon_sym_random_integer] = ACTIONS(1314), - [anon_sym_columns] = ACTIONS(1314), - [anon_sym_rows] = ACTIONS(1314), - [anon_sym_reverse] = ACTIONS(1314), - }, - [137] = { - [sym_block] = STATE(809), - [sym_statement] = STATE(51), - [sym_expression] = STATE(817), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(748), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(760), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1926), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(351), - [aux_sym_block_repeat1] = STATE(51), - [sym_identifier] = ACTIONS(1280), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_match] = ACTIONS(1286), - [anon_sym_EQ_GT] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_asyncfor] = ACTIONS(1294), - [anon_sym_transform] = ACTIONS(1296), - [anon_sym_filter] = ACTIONS(1298), - [anon_sym_find] = ACTIONS(1300), - [anon_sym_remove] = ACTIONS(1302), - [anon_sym_reduce] = ACTIONS(1304), - [anon_sym_select] = ACTIONS(1306), - [anon_sym_insert] = ACTIONS(1308), - [anon_sym_async] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1312), - [anon_sym_assert] = ACTIONS(1314), - [anon_sym_assert_equal] = ACTIONS(1314), - [anon_sym_download] = ACTIONS(1314), - [anon_sym_help] = ACTIONS(1314), - [anon_sym_length] = ACTIONS(1314), - [anon_sym_output] = ACTIONS(1314), - [anon_sym_output_error] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_append] = ACTIONS(1314), - [anon_sym_metadata] = ACTIONS(1314), - [anon_sym_move] = ACTIONS(1314), - [anon_sym_read] = ACTIONS(1314), - [anon_sym_workdir] = ACTIONS(1314), - [anon_sym_write] = ACTIONS(1314), - [anon_sym_from_json] = ACTIONS(1314), - [anon_sym_to_json] = ACTIONS(1314), - [anon_sym_to_string] = ACTIONS(1314), - [anon_sym_to_float] = ACTIONS(1314), - [anon_sym_bash] = ACTIONS(1314), - [anon_sym_fish] = ACTIONS(1314), - [anon_sym_raw] = ACTIONS(1314), - [anon_sym_sh] = ACTIONS(1314), - [anon_sym_zsh] = ACTIONS(1314), - [anon_sym_random] = ACTIONS(1314), - [anon_sym_random_boolean] = ACTIONS(1314), - [anon_sym_random_float] = ACTIONS(1314), - [anon_sym_random_integer] = ACTIONS(1314), - [anon_sym_columns] = ACTIONS(1314), - [anon_sym_rows] = ACTIONS(1314), - [anon_sym_reverse] = ACTIONS(1314), - }, - [138] = { - [sym_block] = STATE(1070), - [sym_statement] = STATE(381), - [sym_expression] = STATE(925), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(867), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(980), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(381), - [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(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [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_asyncfor] = 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_async] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(49), - [anon_sym_assert] = ACTIONS(51), - [anon_sym_assert_equal] = ACTIONS(51), - [anon_sym_download] = ACTIONS(51), - [anon_sym_help] = ACTIONS(51), - [anon_sym_length] = ACTIONS(51), - [anon_sym_output] = ACTIONS(51), - [anon_sym_output_error] = ACTIONS(51), - [anon_sym_type] = ACTIONS(51), - [anon_sym_append] = ACTIONS(51), - [anon_sym_metadata] = ACTIONS(51), - [anon_sym_move] = ACTIONS(51), - [anon_sym_read] = ACTIONS(51), - [anon_sym_workdir] = ACTIONS(51), - [anon_sym_write] = ACTIONS(51), - [anon_sym_from_json] = ACTIONS(51), - [anon_sym_to_json] = ACTIONS(51), - [anon_sym_to_string] = ACTIONS(51), - [anon_sym_to_float] = ACTIONS(51), - [anon_sym_bash] = ACTIONS(51), - [anon_sym_fish] = ACTIONS(51), - [anon_sym_raw] = ACTIONS(51), - [anon_sym_sh] = ACTIONS(51), - [anon_sym_zsh] = ACTIONS(51), - [anon_sym_random] = ACTIONS(51), - [anon_sym_random_boolean] = ACTIONS(51), - [anon_sym_random_float] = ACTIONS(51), - [anon_sym_random_integer] = ACTIONS(51), - [anon_sym_columns] = ACTIONS(51), - [anon_sym_rows] = ACTIONS(51), - [anon_sym_reverse] = ACTIONS(51), - }, - [139] = { - [sym_block] = STATE(808), - [sym_statement] = STATE(51), - [sym_expression] = STATE(817), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(748), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(760), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1926), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(351), - [aux_sym_block_repeat1] = STATE(51), - [sym_identifier] = ACTIONS(1280), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_match] = ACTIONS(1286), - [anon_sym_EQ_GT] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_asyncfor] = ACTIONS(1294), - [anon_sym_transform] = ACTIONS(1296), - [anon_sym_filter] = ACTIONS(1298), - [anon_sym_find] = ACTIONS(1300), - [anon_sym_remove] = ACTIONS(1302), - [anon_sym_reduce] = ACTIONS(1304), - [anon_sym_select] = ACTIONS(1306), - [anon_sym_insert] = ACTIONS(1308), - [anon_sym_async] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1312), - [anon_sym_assert] = ACTIONS(1314), - [anon_sym_assert_equal] = ACTIONS(1314), - [anon_sym_download] = ACTIONS(1314), - [anon_sym_help] = ACTIONS(1314), - [anon_sym_length] = ACTIONS(1314), - [anon_sym_output] = ACTIONS(1314), - [anon_sym_output_error] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_append] = ACTIONS(1314), - [anon_sym_metadata] = ACTIONS(1314), - [anon_sym_move] = ACTIONS(1314), - [anon_sym_read] = ACTIONS(1314), - [anon_sym_workdir] = ACTIONS(1314), - [anon_sym_write] = ACTIONS(1314), - [anon_sym_from_json] = ACTIONS(1314), - [anon_sym_to_json] = ACTIONS(1314), - [anon_sym_to_string] = ACTIONS(1314), - [anon_sym_to_float] = ACTIONS(1314), - [anon_sym_bash] = ACTIONS(1314), - [anon_sym_fish] = ACTIONS(1314), - [anon_sym_raw] = ACTIONS(1314), - [anon_sym_sh] = ACTIONS(1314), - [anon_sym_zsh] = ACTIONS(1314), - [anon_sym_random] = ACTIONS(1314), - [anon_sym_random_boolean] = ACTIONS(1314), - [anon_sym_random_float] = ACTIONS(1314), - [anon_sym_random_integer] = ACTIONS(1314), - [anon_sym_columns] = ACTIONS(1314), - [anon_sym_rows] = ACTIONS(1314), - [anon_sym_reverse] = ACTIONS(1314), - }, - [140] = { - [sym_block] = STATE(806), - [sym_statement] = STATE(51), - [sym_expression] = STATE(817), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(748), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(760), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1926), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(351), - [aux_sym_block_repeat1] = STATE(51), - [sym_identifier] = ACTIONS(1280), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_match] = ACTIONS(1286), - [anon_sym_EQ_GT] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_asyncfor] = ACTIONS(1294), - [anon_sym_transform] = ACTIONS(1296), - [anon_sym_filter] = ACTIONS(1298), - [anon_sym_find] = ACTIONS(1300), - [anon_sym_remove] = ACTIONS(1302), - [anon_sym_reduce] = ACTIONS(1304), - [anon_sym_select] = ACTIONS(1306), - [anon_sym_insert] = ACTIONS(1308), - [anon_sym_async] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1312), - [anon_sym_assert] = ACTIONS(1314), - [anon_sym_assert_equal] = ACTIONS(1314), - [anon_sym_download] = ACTIONS(1314), - [anon_sym_help] = ACTIONS(1314), - [anon_sym_length] = ACTIONS(1314), - [anon_sym_output] = ACTIONS(1314), - [anon_sym_output_error] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_append] = ACTIONS(1314), - [anon_sym_metadata] = ACTIONS(1314), - [anon_sym_move] = ACTIONS(1314), - [anon_sym_read] = ACTIONS(1314), - [anon_sym_workdir] = ACTIONS(1314), - [anon_sym_write] = ACTIONS(1314), - [anon_sym_from_json] = ACTIONS(1314), - [anon_sym_to_json] = ACTIONS(1314), - [anon_sym_to_string] = ACTIONS(1314), - [anon_sym_to_float] = ACTIONS(1314), - [anon_sym_bash] = ACTIONS(1314), - [anon_sym_fish] = ACTIONS(1314), - [anon_sym_raw] = ACTIONS(1314), - [anon_sym_sh] = ACTIONS(1314), - [anon_sym_zsh] = ACTIONS(1314), - [anon_sym_random] = ACTIONS(1314), - [anon_sym_random_boolean] = ACTIONS(1314), - [anon_sym_random_float] = ACTIONS(1314), - [anon_sym_random_integer] = ACTIONS(1314), - [anon_sym_columns] = ACTIONS(1314), - [anon_sym_rows] = ACTIONS(1314), - [anon_sym_reverse] = ACTIONS(1314), - }, - [141] = { - [sym_block] = STATE(804), - [sym_statement] = STATE(51), - [sym_expression] = STATE(817), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(748), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(760), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1926), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(351), - [aux_sym_block_repeat1] = STATE(51), - [sym_identifier] = ACTIONS(1280), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_match] = ACTIONS(1286), - [anon_sym_EQ_GT] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_asyncfor] = ACTIONS(1294), - [anon_sym_transform] = ACTIONS(1296), - [anon_sym_filter] = ACTIONS(1298), - [anon_sym_find] = ACTIONS(1300), - [anon_sym_remove] = ACTIONS(1302), - [anon_sym_reduce] = ACTIONS(1304), - [anon_sym_select] = ACTIONS(1306), - [anon_sym_insert] = ACTIONS(1308), - [anon_sym_async] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1312), - [anon_sym_assert] = ACTIONS(1314), - [anon_sym_assert_equal] = ACTIONS(1314), - [anon_sym_download] = ACTIONS(1314), - [anon_sym_help] = ACTIONS(1314), - [anon_sym_length] = ACTIONS(1314), - [anon_sym_output] = ACTIONS(1314), - [anon_sym_output_error] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_append] = ACTIONS(1314), - [anon_sym_metadata] = ACTIONS(1314), - [anon_sym_move] = ACTIONS(1314), - [anon_sym_read] = ACTIONS(1314), - [anon_sym_workdir] = ACTIONS(1314), - [anon_sym_write] = ACTIONS(1314), - [anon_sym_from_json] = ACTIONS(1314), - [anon_sym_to_json] = ACTIONS(1314), - [anon_sym_to_string] = ACTIONS(1314), - [anon_sym_to_float] = ACTIONS(1314), - [anon_sym_bash] = ACTIONS(1314), - [anon_sym_fish] = ACTIONS(1314), - [anon_sym_raw] = ACTIONS(1314), - [anon_sym_sh] = ACTIONS(1314), - [anon_sym_zsh] = ACTIONS(1314), - [anon_sym_random] = ACTIONS(1314), - [anon_sym_random_boolean] = ACTIONS(1314), - [anon_sym_random_float] = ACTIONS(1314), - [anon_sym_random_integer] = ACTIONS(1314), - [anon_sym_columns] = ACTIONS(1314), - [anon_sym_rows] = ACTIONS(1314), - [anon_sym_reverse] = ACTIONS(1314), - }, - [142] = { - [sym_block] = STATE(638), - [sym_statement] = STATE(27), - [sym_expression] = STATE(663), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(631), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(637), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(1998), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(296), - [aux_sym_block_repeat1] = STATE(27), - [sym_identifier] = ACTIONS(55), + [sym_block] = STATE(431), + [sym_statement] = STATE(11), + [sym_expression] = STATE(364), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(349), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1100), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(181), + [aux_sym_block_repeat1] = STATE(11), + [sym_identifier] = ACTIONS(115), [sym__comment] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(57), [anon_sym_LPAREN] = ACTIONS(59), @@ -22119,317 +19323,424 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(65), [anon_sym_false] = ACTIONS(65), [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(311), - [anon_sym_match] = ACTIONS(313), - [anon_sym_EQ_GT] = ACTIONS(315), - [anon_sym_while] = ACTIONS(317), - [anon_sym_for] = ACTIONS(319), - [anon_sym_asyncfor] = ACTIONS(321), - [anon_sym_transform] = ACTIONS(323), - [anon_sym_filter] = ACTIONS(325), - [anon_sym_find] = ACTIONS(327), - [anon_sym_remove] = ACTIONS(329), - [anon_sym_reduce] = ACTIONS(331), - [anon_sym_select] = ACTIONS(333), - [anon_sym_insert] = ACTIONS(335), - [anon_sym_async] = ACTIONS(337), + [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(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_EQ_GT] = ACTIONS(123), + [anon_sym_while] = ACTIONS(125), + [anon_sym_for] = ACTIONS(127), + [anon_sym_asyncfor] = ACTIONS(129), + [anon_sym_transform] = ACTIONS(131), + [anon_sym_filter] = ACTIONS(133), + [anon_sym_find] = ACTIONS(135), + [anon_sym_remove] = ACTIONS(137), + [anon_sym_reduce] = ACTIONS(139), + [anon_sym_select] = ACTIONS(141), + [anon_sym_insert] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(339), - [anon_sym_assert] = ACTIONS(341), - [anon_sym_assert_equal] = ACTIONS(341), - [anon_sym_download] = ACTIONS(341), - [anon_sym_help] = ACTIONS(341), - [anon_sym_length] = ACTIONS(341), - [anon_sym_output] = ACTIONS(341), - [anon_sym_output_error] = ACTIONS(341), - [anon_sym_type] = ACTIONS(341), - [anon_sym_append] = ACTIONS(341), - [anon_sym_metadata] = ACTIONS(341), - [anon_sym_move] = ACTIONS(341), - [anon_sym_read] = ACTIONS(341), - [anon_sym_workdir] = ACTIONS(341), - [anon_sym_write] = ACTIONS(341), - [anon_sym_from_json] = ACTIONS(341), - [anon_sym_to_json] = ACTIONS(341), - [anon_sym_to_string] = ACTIONS(341), - [anon_sym_to_float] = ACTIONS(341), - [anon_sym_bash] = ACTIONS(341), - [anon_sym_fish] = ACTIONS(341), - [anon_sym_raw] = ACTIONS(341), - [anon_sym_sh] = ACTIONS(341), - [anon_sym_zsh] = ACTIONS(341), - [anon_sym_random] = ACTIONS(341), - [anon_sym_random_boolean] = ACTIONS(341), - [anon_sym_random_float] = ACTIONS(341), - [anon_sym_random_integer] = ACTIONS(341), - [anon_sym_columns] = ACTIONS(341), - [anon_sym_rows] = ACTIONS(341), - [anon_sym_reverse] = ACTIONS(341), + [anon_sym_table] = ACTIONS(147), + [anon_sym_assert] = ACTIONS(149), + [anon_sym_assert_equal] = ACTIONS(149), + [anon_sym_download] = ACTIONS(149), + [anon_sym_help] = ACTIONS(149), + [anon_sym_length] = ACTIONS(149), + [anon_sym_output] = ACTIONS(149), + [anon_sym_output_error] = ACTIONS(149), + [anon_sym_type] = ACTIONS(149), + [anon_sym_append] = ACTIONS(149), + [anon_sym_metadata] = ACTIONS(149), + [anon_sym_move] = ACTIONS(149), + [anon_sym_read] = ACTIONS(149), + [anon_sym_workdir] = ACTIONS(149), + [anon_sym_write] = ACTIONS(149), + [anon_sym_from_json] = ACTIONS(149), + [anon_sym_to_json] = ACTIONS(149), + [anon_sym_to_string] = ACTIONS(149), + [anon_sym_to_float] = ACTIONS(149), + [anon_sym_bash] = ACTIONS(149), + [anon_sym_fish] = ACTIONS(149), + [anon_sym_raw] = ACTIONS(149), + [anon_sym_sh] = ACTIONS(149), + [anon_sym_zsh] = ACTIONS(149), + [anon_sym_random] = ACTIONS(149), + [anon_sym_random_boolean] = ACTIONS(149), + [anon_sym_random_float] = ACTIONS(149), + [anon_sym_random_integer] = ACTIONS(149), + [anon_sym_columns] = ACTIONS(149), + [anon_sym_rows] = ACTIONS(149), + [anon_sym_reverse] = ACTIONS(149), }, - [143] = { - [sym_block] = STATE(1651), - [sym_statement] = STATE(371), - [sym_expression] = STATE(934), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(842), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(983), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [aux_sym_block_repeat1] = STATE(371), - [sym_identifier] = ACTIONS(2162), + [134] = { + [sym_block] = STATE(384), + [sym_statement] = STATE(16), + [sym_expression] = STATE(387), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(366), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1210), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(186), + [aux_sym_block_repeat1] = STATE(16), + [sym_identifier] = ACTIONS(151), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2164), - [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(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(1570), - [anon_sym_match] = ACTIONS(2166), - [anon_sym_EQ_GT] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(2168), - [anon_sym_for] = ACTIONS(2170), - [anon_sym_asyncfor] = ACTIONS(2172), - [anon_sym_transform] = ACTIONS(2174), - [anon_sym_filter] = ACTIONS(2176), - [anon_sym_find] = ACTIONS(2178), - [anon_sym_remove] = ACTIONS(2180), - [anon_sym_reduce] = ACTIONS(2182), - [anon_sym_select] = ACTIONS(2184), - [anon_sym_insert] = ACTIONS(1224), - [anon_sym_async] = ACTIONS(2186), + [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(155), + [anon_sym_match] = ACTIONS(157), + [anon_sym_EQ_GT] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_asyncfor] = ACTIONS(165), + [anon_sym_transform] = ACTIONS(167), + [anon_sym_filter] = ACTIONS(169), + [anon_sym_find] = ACTIONS(171), + [anon_sym_remove] = ACTIONS(173), + [anon_sym_reduce] = ACTIONS(175), + [anon_sym_select] = ACTIONS(177), + [anon_sym_insert] = ACTIONS(179), + [anon_sym_async] = ACTIONS(181), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1228), - [anon_sym_assert] = ACTIONS(1230), - [anon_sym_assert_equal] = ACTIONS(1230), - [anon_sym_download] = ACTIONS(1230), - [anon_sym_help] = ACTIONS(1230), - [anon_sym_length] = ACTIONS(1230), - [anon_sym_output] = ACTIONS(1230), - [anon_sym_output_error] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_append] = ACTIONS(1230), - [anon_sym_metadata] = ACTIONS(1230), - [anon_sym_move] = ACTIONS(1230), - [anon_sym_read] = ACTIONS(1230), - [anon_sym_workdir] = ACTIONS(1230), - [anon_sym_write] = ACTIONS(1230), - [anon_sym_from_json] = ACTIONS(1230), - [anon_sym_to_json] = ACTIONS(1230), - [anon_sym_to_string] = ACTIONS(1230), - [anon_sym_to_float] = ACTIONS(1230), - [anon_sym_bash] = ACTIONS(1230), - [anon_sym_fish] = ACTIONS(1230), - [anon_sym_raw] = ACTIONS(1230), - [anon_sym_sh] = ACTIONS(1230), - [anon_sym_zsh] = ACTIONS(1230), - [anon_sym_random] = ACTIONS(1230), - [anon_sym_random_boolean] = ACTIONS(1230), - [anon_sym_random_float] = ACTIONS(1230), - [anon_sym_random_integer] = ACTIONS(1230), - [anon_sym_columns] = ACTIONS(1230), - [anon_sym_rows] = ACTIONS(1230), - [anon_sym_reverse] = ACTIONS(1230), + [anon_sym_table] = ACTIONS(183), + [anon_sym_assert] = ACTIONS(185), + [anon_sym_assert_equal] = ACTIONS(185), + [anon_sym_download] = ACTIONS(185), + [anon_sym_help] = ACTIONS(185), + [anon_sym_length] = ACTIONS(185), + [anon_sym_output] = ACTIONS(185), + [anon_sym_output_error] = ACTIONS(185), + [anon_sym_type] = ACTIONS(185), + [anon_sym_append] = ACTIONS(185), + [anon_sym_metadata] = ACTIONS(185), + [anon_sym_move] = ACTIONS(185), + [anon_sym_read] = ACTIONS(185), + [anon_sym_workdir] = ACTIONS(185), + [anon_sym_write] = ACTIONS(185), + [anon_sym_from_json] = ACTIONS(185), + [anon_sym_to_json] = ACTIONS(185), + [anon_sym_to_string] = ACTIONS(185), + [anon_sym_to_float] = ACTIONS(185), + [anon_sym_bash] = ACTIONS(185), + [anon_sym_fish] = ACTIONS(185), + [anon_sym_raw] = ACTIONS(185), + [anon_sym_sh] = ACTIONS(185), + [anon_sym_zsh] = ACTIONS(185), + [anon_sym_random] = ACTIONS(185), + [anon_sym_random_boolean] = ACTIONS(185), + [anon_sym_random_float] = ACTIONS(185), + [anon_sym_random_integer] = ACTIONS(185), + [anon_sym_columns] = ACTIONS(185), + [anon_sym_rows] = ACTIONS(185), + [anon_sym_reverse] = ACTIONS(185), }, - [144] = { - [sym_block] = STATE(816), - [sym_statement] = STATE(38), - [sym_expression] = STATE(779), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(655), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(724), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1860), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(341), - [aux_sym_block_repeat1] = STATE(38), - [sym_identifier] = ACTIONS(839), + [135] = { + [sym_block] = STATE(385), + [sym_statement] = STATE(16), + [sym_expression] = STATE(387), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(366), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1210), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(186), + [aux_sym_block_repeat1] = STATE(16), + [sym_identifier] = ACTIONS(151), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(843), - [anon_sym_match] = ACTIONS(845), - [anon_sym_EQ_GT] = ACTIONS(847), - [anon_sym_while] = ACTIONS(849), - [anon_sym_for] = ACTIONS(851), - [anon_sym_asyncfor] = 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(867), - [anon_sym_async] = ACTIONS(869), + [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(155), + [anon_sym_match] = ACTIONS(157), + [anon_sym_EQ_GT] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_asyncfor] = ACTIONS(165), + [anon_sym_transform] = ACTIONS(167), + [anon_sym_filter] = ACTIONS(169), + [anon_sym_find] = ACTIONS(171), + [anon_sym_remove] = ACTIONS(173), + [anon_sym_reduce] = ACTIONS(175), + [anon_sym_select] = ACTIONS(177), + [anon_sym_insert] = ACTIONS(179), + [anon_sym_async] = ACTIONS(181), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(871), - [anon_sym_assert] = ACTIONS(873), - [anon_sym_assert_equal] = ACTIONS(873), - [anon_sym_download] = ACTIONS(873), - [anon_sym_help] = ACTIONS(873), - [anon_sym_length] = ACTIONS(873), - [anon_sym_output] = ACTIONS(873), - [anon_sym_output_error] = ACTIONS(873), - [anon_sym_type] = ACTIONS(873), - [anon_sym_append] = ACTIONS(873), - [anon_sym_metadata] = ACTIONS(873), - [anon_sym_move] = ACTIONS(873), - [anon_sym_read] = ACTIONS(873), - [anon_sym_workdir] = ACTIONS(873), - [anon_sym_write] = ACTIONS(873), - [anon_sym_from_json] = ACTIONS(873), - [anon_sym_to_json] = ACTIONS(873), - [anon_sym_to_string] = ACTIONS(873), - [anon_sym_to_float] = ACTIONS(873), - [anon_sym_bash] = ACTIONS(873), - [anon_sym_fish] = ACTIONS(873), - [anon_sym_raw] = ACTIONS(873), - [anon_sym_sh] = ACTIONS(873), - [anon_sym_zsh] = ACTIONS(873), - [anon_sym_random] = ACTIONS(873), - [anon_sym_random_boolean] = ACTIONS(873), - [anon_sym_random_float] = ACTIONS(873), - [anon_sym_random_integer] = ACTIONS(873), - [anon_sym_columns] = ACTIONS(873), - [anon_sym_rows] = ACTIONS(873), - [anon_sym_reverse] = ACTIONS(873), + [anon_sym_table] = ACTIONS(183), + [anon_sym_assert] = ACTIONS(185), + [anon_sym_assert_equal] = ACTIONS(185), + [anon_sym_download] = ACTIONS(185), + [anon_sym_help] = ACTIONS(185), + [anon_sym_length] = ACTIONS(185), + [anon_sym_output] = ACTIONS(185), + [anon_sym_output_error] = ACTIONS(185), + [anon_sym_type] = ACTIONS(185), + [anon_sym_append] = ACTIONS(185), + [anon_sym_metadata] = ACTIONS(185), + [anon_sym_move] = ACTIONS(185), + [anon_sym_read] = ACTIONS(185), + [anon_sym_workdir] = ACTIONS(185), + [anon_sym_write] = ACTIONS(185), + [anon_sym_from_json] = ACTIONS(185), + [anon_sym_to_json] = ACTIONS(185), + [anon_sym_to_string] = ACTIONS(185), + [anon_sym_to_float] = ACTIONS(185), + [anon_sym_bash] = ACTIONS(185), + [anon_sym_fish] = ACTIONS(185), + [anon_sym_raw] = ACTIONS(185), + [anon_sym_sh] = ACTIONS(185), + [anon_sym_zsh] = ACTIONS(185), + [anon_sym_random] = ACTIONS(185), + [anon_sym_random_boolean] = ACTIONS(185), + [anon_sym_random_float] = ACTIONS(185), + [anon_sym_random_integer] = ACTIONS(185), + [anon_sym_columns] = ACTIONS(185), + [anon_sym_rows] = ACTIONS(185), + [anon_sym_reverse] = ACTIONS(185), }, - [145] = { - [sym_block] = STATE(1071), - [sym_statement] = STATE(381), - [sym_expression] = STATE(925), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(867), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(980), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(381), + [136] = { + [sym_block] = STATE(435), + [sym_statement] = STATE(26), + [sym_expression] = STATE(448), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(414), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1085), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(203), + [aux_sym_block_repeat1] = STATE(26), + [sym_identifier] = ACTIONS(223), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(869), + [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(227), + [anon_sym_match] = ACTIONS(229), + [anon_sym_EQ_GT] = ACTIONS(231), + [anon_sym_while] = ACTIONS(233), + [anon_sym_for] = ACTIONS(235), + [anon_sym_asyncfor] = ACTIONS(237), + [anon_sym_transform] = ACTIONS(239), + [anon_sym_filter] = ACTIONS(241), + [anon_sym_find] = ACTIONS(243), + [anon_sym_remove] = ACTIONS(245), + [anon_sym_reduce] = ACTIONS(247), + [anon_sym_select] = ACTIONS(249), + [anon_sym_insert] = ACTIONS(251), + [anon_sym_async] = ACTIONS(253), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(255), + [anon_sym_assert] = ACTIONS(257), + [anon_sym_assert_equal] = ACTIONS(257), + [anon_sym_download] = ACTIONS(257), + [anon_sym_help] = ACTIONS(257), + [anon_sym_length] = ACTIONS(257), + [anon_sym_output] = ACTIONS(257), + [anon_sym_output_error] = ACTIONS(257), + [anon_sym_type] = ACTIONS(257), + [anon_sym_append] = ACTIONS(257), + [anon_sym_metadata] = ACTIONS(257), + [anon_sym_move] = ACTIONS(257), + [anon_sym_read] = ACTIONS(257), + [anon_sym_workdir] = ACTIONS(257), + [anon_sym_write] = ACTIONS(257), + [anon_sym_from_json] = ACTIONS(257), + [anon_sym_to_json] = ACTIONS(257), + [anon_sym_to_string] = ACTIONS(257), + [anon_sym_to_float] = ACTIONS(257), + [anon_sym_bash] = ACTIONS(257), + [anon_sym_fish] = ACTIONS(257), + [anon_sym_raw] = ACTIONS(257), + [anon_sym_sh] = ACTIONS(257), + [anon_sym_zsh] = ACTIONS(257), + [anon_sym_random] = ACTIONS(257), + [anon_sym_random_boolean] = ACTIONS(257), + [anon_sym_random_float] = ACTIONS(257), + [anon_sym_random_integer] = ACTIONS(257), + [anon_sym_columns] = ACTIONS(257), + [anon_sym_rows] = ACTIONS(257), + [anon_sym_reverse] = ACTIONS(257), + }, + [137] = { + [sym_block] = STATE(639), + [sym_statement] = STATE(226), + [sym_expression] = STATE(535), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(561), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [aux_sym_block_repeat1] = STATE(226), [sym_identifier] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(7), @@ -22440,20 +19751,20 @@ 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(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), + [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(19), [anon_sym_match] = ACTIONS(21), [anon_sym_EQ_GT] = ACTIONS(23), @@ -22501,901 +19812,1753 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_rows] = ACTIONS(51), [anon_sym_reverse] = ACTIONS(51), }, - [146] = { - [sym_block] = STATE(816), - [sym_statement] = STATE(51), - [sym_expression] = STATE(817), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(748), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(760), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1926), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(351), - [aux_sym_block_repeat1] = STATE(51), - [sym_identifier] = ACTIONS(1280), + [138] = { + [sym_block] = STATE(420), + [sym_statement] = STATE(26), + [sym_expression] = STATE(448), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(414), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1085), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(203), + [aux_sym_block_repeat1] = STATE(26), + [sym_identifier] = ACTIONS(223), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_match] = ACTIONS(1286), - [anon_sym_EQ_GT] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_asyncfor] = ACTIONS(1294), - [anon_sym_transform] = ACTIONS(1296), - [anon_sym_filter] = ACTIONS(1298), - [anon_sym_find] = ACTIONS(1300), - [anon_sym_remove] = ACTIONS(1302), - [anon_sym_reduce] = ACTIONS(1304), - [anon_sym_select] = ACTIONS(1306), - [anon_sym_insert] = ACTIONS(1308), - [anon_sym_async] = ACTIONS(1310), + [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(227), + [anon_sym_match] = ACTIONS(229), + [anon_sym_EQ_GT] = ACTIONS(231), + [anon_sym_while] = ACTIONS(233), + [anon_sym_for] = ACTIONS(235), + [anon_sym_asyncfor] = ACTIONS(237), + [anon_sym_transform] = ACTIONS(239), + [anon_sym_filter] = ACTIONS(241), + [anon_sym_find] = ACTIONS(243), + [anon_sym_remove] = ACTIONS(245), + [anon_sym_reduce] = ACTIONS(247), + [anon_sym_select] = ACTIONS(249), + [anon_sym_insert] = ACTIONS(251), + [anon_sym_async] = ACTIONS(253), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1312), - [anon_sym_assert] = ACTIONS(1314), - [anon_sym_assert_equal] = ACTIONS(1314), - [anon_sym_download] = ACTIONS(1314), - [anon_sym_help] = ACTIONS(1314), - [anon_sym_length] = ACTIONS(1314), - [anon_sym_output] = ACTIONS(1314), - [anon_sym_output_error] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_append] = ACTIONS(1314), - [anon_sym_metadata] = ACTIONS(1314), - [anon_sym_move] = ACTIONS(1314), - [anon_sym_read] = ACTIONS(1314), - [anon_sym_workdir] = ACTIONS(1314), - [anon_sym_write] = ACTIONS(1314), - [anon_sym_from_json] = ACTIONS(1314), - [anon_sym_to_json] = ACTIONS(1314), - [anon_sym_to_string] = ACTIONS(1314), - [anon_sym_to_float] = ACTIONS(1314), - [anon_sym_bash] = ACTIONS(1314), - [anon_sym_fish] = ACTIONS(1314), - [anon_sym_raw] = ACTIONS(1314), - [anon_sym_sh] = ACTIONS(1314), - [anon_sym_zsh] = ACTIONS(1314), - [anon_sym_random] = ACTIONS(1314), - [anon_sym_random_boolean] = ACTIONS(1314), - [anon_sym_random_float] = ACTIONS(1314), - [anon_sym_random_integer] = ACTIONS(1314), - [anon_sym_columns] = ACTIONS(1314), - [anon_sym_rows] = ACTIONS(1314), - [anon_sym_reverse] = ACTIONS(1314), + [anon_sym_table] = ACTIONS(255), + [anon_sym_assert] = ACTIONS(257), + [anon_sym_assert_equal] = ACTIONS(257), + [anon_sym_download] = ACTIONS(257), + [anon_sym_help] = ACTIONS(257), + [anon_sym_length] = ACTIONS(257), + [anon_sym_output] = ACTIONS(257), + [anon_sym_output_error] = ACTIONS(257), + [anon_sym_type] = ACTIONS(257), + [anon_sym_append] = ACTIONS(257), + [anon_sym_metadata] = ACTIONS(257), + [anon_sym_move] = ACTIONS(257), + [anon_sym_read] = ACTIONS(257), + [anon_sym_workdir] = ACTIONS(257), + [anon_sym_write] = ACTIONS(257), + [anon_sym_from_json] = ACTIONS(257), + [anon_sym_to_json] = ACTIONS(257), + [anon_sym_to_string] = ACTIONS(257), + [anon_sym_to_float] = ACTIONS(257), + [anon_sym_bash] = ACTIONS(257), + [anon_sym_fish] = ACTIONS(257), + [anon_sym_raw] = ACTIONS(257), + [anon_sym_sh] = ACTIONS(257), + [anon_sym_zsh] = ACTIONS(257), + [anon_sym_random] = ACTIONS(257), + [anon_sym_random_boolean] = ACTIONS(257), + [anon_sym_random_float] = ACTIONS(257), + [anon_sym_random_integer] = ACTIONS(257), + [anon_sym_columns] = ACTIONS(257), + [anon_sym_rows] = ACTIONS(257), + [anon_sym_reverse] = ACTIONS(257), + }, + [139] = { + [sym_block] = STATE(642), + [sym_statement] = STATE(225), + [sym_expression] = STATE(547), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(571), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [aux_sym_block_repeat1] = STATE(225), + [sym_identifier] = ACTIONS(941), + [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(869), + [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(449), + [anon_sym_match] = ACTIONS(943), + [anon_sym_EQ_GT] = ACTIONS(265), + [anon_sym_while] = ACTIONS(945), + [anon_sym_for] = ACTIONS(947), + [anon_sym_asyncfor] = ACTIONS(949), + [anon_sym_transform] = ACTIONS(951), + [anon_sym_filter] = ACTIONS(953), + [anon_sym_find] = ACTIONS(955), + [anon_sym_remove] = ACTIONS(957), + [anon_sym_reduce] = ACTIONS(959), + [anon_sym_select] = ACTIONS(961), + [anon_sym_insert] = ACTIONS(285), + [anon_sym_async] = ACTIONS(963), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(289), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_assert_equal] = ACTIONS(291), + [anon_sym_download] = ACTIONS(291), + [anon_sym_help] = ACTIONS(291), + [anon_sym_length] = ACTIONS(291), + [anon_sym_output] = ACTIONS(291), + [anon_sym_output_error] = ACTIONS(291), + [anon_sym_type] = ACTIONS(291), + [anon_sym_append] = ACTIONS(291), + [anon_sym_metadata] = ACTIONS(291), + [anon_sym_move] = ACTIONS(291), + [anon_sym_read] = ACTIONS(291), + [anon_sym_workdir] = ACTIONS(291), + [anon_sym_write] = ACTIONS(291), + [anon_sym_from_json] = ACTIONS(291), + [anon_sym_to_json] = ACTIONS(291), + [anon_sym_to_string] = ACTIONS(291), + [anon_sym_to_float] = ACTIONS(291), + [anon_sym_bash] = ACTIONS(291), + [anon_sym_fish] = ACTIONS(291), + [anon_sym_raw] = ACTIONS(291), + [anon_sym_sh] = ACTIONS(291), + [anon_sym_zsh] = ACTIONS(291), + [anon_sym_random] = ACTIONS(291), + [anon_sym_random_boolean] = ACTIONS(291), + [anon_sym_random_float] = ACTIONS(291), + [anon_sym_random_integer] = ACTIONS(291), + [anon_sym_columns] = ACTIONS(291), + [anon_sym_rows] = ACTIONS(291), + [anon_sym_reverse] = ACTIONS(291), + }, + [140] = { + [sym_block] = STATE(399), + [sym_statement] = STATE(26), + [sym_expression] = STATE(448), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(414), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1085), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(203), + [aux_sym_block_repeat1] = STATE(26), + [sym_identifier] = ACTIONS(223), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(869), + [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(227), + [anon_sym_match] = ACTIONS(229), + [anon_sym_EQ_GT] = ACTIONS(231), + [anon_sym_while] = ACTIONS(233), + [anon_sym_for] = ACTIONS(235), + [anon_sym_asyncfor] = ACTIONS(237), + [anon_sym_transform] = ACTIONS(239), + [anon_sym_filter] = ACTIONS(241), + [anon_sym_find] = ACTIONS(243), + [anon_sym_remove] = ACTIONS(245), + [anon_sym_reduce] = ACTIONS(247), + [anon_sym_select] = ACTIONS(249), + [anon_sym_insert] = ACTIONS(251), + [anon_sym_async] = ACTIONS(253), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(255), + [anon_sym_assert] = ACTIONS(257), + [anon_sym_assert_equal] = ACTIONS(257), + [anon_sym_download] = ACTIONS(257), + [anon_sym_help] = ACTIONS(257), + [anon_sym_length] = ACTIONS(257), + [anon_sym_output] = ACTIONS(257), + [anon_sym_output_error] = ACTIONS(257), + [anon_sym_type] = ACTIONS(257), + [anon_sym_append] = ACTIONS(257), + [anon_sym_metadata] = ACTIONS(257), + [anon_sym_move] = ACTIONS(257), + [anon_sym_read] = ACTIONS(257), + [anon_sym_workdir] = ACTIONS(257), + [anon_sym_write] = ACTIONS(257), + [anon_sym_from_json] = ACTIONS(257), + [anon_sym_to_json] = ACTIONS(257), + [anon_sym_to_string] = ACTIONS(257), + [anon_sym_to_float] = ACTIONS(257), + [anon_sym_bash] = ACTIONS(257), + [anon_sym_fish] = ACTIONS(257), + [anon_sym_raw] = ACTIONS(257), + [anon_sym_sh] = ACTIONS(257), + [anon_sym_zsh] = ACTIONS(257), + [anon_sym_random] = ACTIONS(257), + [anon_sym_random_boolean] = ACTIONS(257), + [anon_sym_random_float] = ACTIONS(257), + [anon_sym_random_integer] = ACTIONS(257), + [anon_sym_columns] = ACTIONS(257), + [anon_sym_rows] = ACTIONS(257), + [anon_sym_reverse] = ACTIONS(257), + }, + [141] = { + [sym_block] = STATE(609), + [sym_statement] = STATE(212), + [sym_expression] = STATE(460), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(598), + [sym_if_else] = STATE(598), + [sym_if] = STATE(564), + [sym_match] = STATE(598), + [sym_while] = STATE(598), + [sym_for] = STATE(598), + [sym_transform] = STATE(598), + [sym_filter] = STATE(598), + [sym_find] = STATE(598), + [sym_remove] = STATE(598), + [sym_reduce] = STATE(598), + [sym_select] = STATE(598), + [sym_insert] = STATE(598), + [sym_async] = STATE(598), + [sym_identifier_list] = STATE(1100), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(181), + [aux_sym_block_repeat1] = STATE(212), + [sym_identifier] = ACTIONS(445), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(447), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(869), + [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(449), + [anon_sym_match] = ACTIONS(451), + [anon_sym_EQ_GT] = ACTIONS(123), + [anon_sym_while] = ACTIONS(453), + [anon_sym_for] = ACTIONS(455), + [anon_sym_asyncfor] = ACTIONS(457), + [anon_sym_transform] = ACTIONS(459), + [anon_sym_filter] = ACTIONS(461), + [anon_sym_find] = ACTIONS(463), + [anon_sym_remove] = ACTIONS(465), + [anon_sym_reduce] = ACTIONS(467), + [anon_sym_select] = ACTIONS(469), + [anon_sym_insert] = ACTIONS(143), + [anon_sym_async] = ACTIONS(471), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(147), + [anon_sym_assert] = ACTIONS(149), + [anon_sym_assert_equal] = ACTIONS(149), + [anon_sym_download] = ACTIONS(149), + [anon_sym_help] = ACTIONS(149), + [anon_sym_length] = ACTIONS(149), + [anon_sym_output] = ACTIONS(149), + [anon_sym_output_error] = ACTIONS(149), + [anon_sym_type] = ACTIONS(149), + [anon_sym_append] = ACTIONS(149), + [anon_sym_metadata] = ACTIONS(149), + [anon_sym_move] = ACTIONS(149), + [anon_sym_read] = ACTIONS(149), + [anon_sym_workdir] = ACTIONS(149), + [anon_sym_write] = ACTIONS(149), + [anon_sym_from_json] = ACTIONS(149), + [anon_sym_to_json] = ACTIONS(149), + [anon_sym_to_string] = ACTIONS(149), + [anon_sym_to_float] = ACTIONS(149), + [anon_sym_bash] = ACTIONS(149), + [anon_sym_fish] = ACTIONS(149), + [anon_sym_raw] = ACTIONS(149), + [anon_sym_sh] = ACTIONS(149), + [anon_sym_zsh] = ACTIONS(149), + [anon_sym_random] = ACTIONS(149), + [anon_sym_random_boolean] = ACTIONS(149), + [anon_sym_random_float] = ACTIONS(149), + [anon_sym_random_integer] = ACTIONS(149), + [anon_sym_columns] = ACTIONS(149), + [anon_sym_rows] = ACTIONS(149), + [anon_sym_reverse] = ACTIONS(149), + }, + [142] = { + [sym_block] = STATE(403), + [sym_statement] = STATE(26), + [sym_expression] = STATE(448), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(414), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1085), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(203), + [aux_sym_block_repeat1] = STATE(26), + [sym_identifier] = ACTIONS(223), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(869), + [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(227), + [anon_sym_match] = ACTIONS(229), + [anon_sym_EQ_GT] = ACTIONS(231), + [anon_sym_while] = ACTIONS(233), + [anon_sym_for] = ACTIONS(235), + [anon_sym_asyncfor] = ACTIONS(237), + [anon_sym_transform] = ACTIONS(239), + [anon_sym_filter] = ACTIONS(241), + [anon_sym_find] = ACTIONS(243), + [anon_sym_remove] = ACTIONS(245), + [anon_sym_reduce] = ACTIONS(247), + [anon_sym_select] = ACTIONS(249), + [anon_sym_insert] = ACTIONS(251), + [anon_sym_async] = ACTIONS(253), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(255), + [anon_sym_assert] = ACTIONS(257), + [anon_sym_assert_equal] = ACTIONS(257), + [anon_sym_download] = ACTIONS(257), + [anon_sym_help] = ACTIONS(257), + [anon_sym_length] = ACTIONS(257), + [anon_sym_output] = ACTIONS(257), + [anon_sym_output_error] = ACTIONS(257), + [anon_sym_type] = ACTIONS(257), + [anon_sym_append] = ACTIONS(257), + [anon_sym_metadata] = ACTIONS(257), + [anon_sym_move] = ACTIONS(257), + [anon_sym_read] = ACTIONS(257), + [anon_sym_workdir] = ACTIONS(257), + [anon_sym_write] = ACTIONS(257), + [anon_sym_from_json] = ACTIONS(257), + [anon_sym_to_json] = ACTIONS(257), + [anon_sym_to_string] = ACTIONS(257), + [anon_sym_to_float] = ACTIONS(257), + [anon_sym_bash] = ACTIONS(257), + [anon_sym_fish] = ACTIONS(257), + [anon_sym_raw] = ACTIONS(257), + [anon_sym_sh] = ACTIONS(257), + [anon_sym_zsh] = ACTIONS(257), + [anon_sym_random] = ACTIONS(257), + [anon_sym_random_boolean] = ACTIONS(257), + [anon_sym_random_float] = ACTIONS(257), + [anon_sym_random_integer] = ACTIONS(257), + [anon_sym_columns] = ACTIONS(257), + [anon_sym_rows] = ACTIONS(257), + [anon_sym_reverse] = ACTIONS(257), + }, + [143] = { + [sym_block] = STATE(1017), + [sym_statement] = STATE(221), + [sym_expression] = STATE(547), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(571), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [aux_sym_block_repeat1] = STATE(221), + [sym_identifier] = ACTIONS(941), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1013), + [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(869), + [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(449), + [anon_sym_match] = ACTIONS(943), + [anon_sym_EQ_GT] = ACTIONS(265), + [anon_sym_while] = ACTIONS(945), + [anon_sym_for] = ACTIONS(947), + [anon_sym_asyncfor] = ACTIONS(949), + [anon_sym_transform] = ACTIONS(951), + [anon_sym_filter] = ACTIONS(953), + [anon_sym_find] = ACTIONS(955), + [anon_sym_remove] = ACTIONS(957), + [anon_sym_reduce] = ACTIONS(959), + [anon_sym_select] = ACTIONS(961), + [anon_sym_insert] = ACTIONS(285), + [anon_sym_async] = ACTIONS(963), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(289), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_assert_equal] = ACTIONS(291), + [anon_sym_download] = ACTIONS(291), + [anon_sym_help] = ACTIONS(291), + [anon_sym_length] = ACTIONS(291), + [anon_sym_output] = ACTIONS(291), + [anon_sym_output_error] = ACTIONS(291), + [anon_sym_type] = ACTIONS(291), + [anon_sym_append] = ACTIONS(291), + [anon_sym_metadata] = ACTIONS(291), + [anon_sym_move] = ACTIONS(291), + [anon_sym_read] = ACTIONS(291), + [anon_sym_workdir] = ACTIONS(291), + [anon_sym_write] = ACTIONS(291), + [anon_sym_from_json] = ACTIONS(291), + [anon_sym_to_json] = ACTIONS(291), + [anon_sym_to_string] = ACTIONS(291), + [anon_sym_to_float] = ACTIONS(291), + [anon_sym_bash] = ACTIONS(291), + [anon_sym_fish] = ACTIONS(291), + [anon_sym_raw] = ACTIONS(291), + [anon_sym_sh] = ACTIONS(291), + [anon_sym_zsh] = ACTIONS(291), + [anon_sym_random] = ACTIONS(291), + [anon_sym_random_boolean] = ACTIONS(291), + [anon_sym_random_float] = ACTIONS(291), + [anon_sym_random_integer] = ACTIONS(291), + [anon_sym_columns] = ACTIONS(291), + [anon_sym_rows] = ACTIONS(291), + [anon_sym_reverse] = ACTIONS(291), + }, + [144] = { + [sym_block] = STATE(636), + [sym_statement] = STATE(226), + [sym_expression] = STATE(535), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(561), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [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(869), + [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(19), + [anon_sym_match] = ACTIONS(21), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(25), + [anon_sym_for] = ACTIONS(27), + [anon_sym_asyncfor] = 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_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), + }, + [145] = { + [sym_block] = STATE(623), + [sym_statement] = STATE(225), + [sym_expression] = STATE(547), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(468), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(571), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [aux_sym_block_repeat1] = STATE(225), + [sym_identifier] = ACTIONS(941), + [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(869), + [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(449), + [anon_sym_match] = ACTIONS(943), + [anon_sym_EQ_GT] = ACTIONS(265), + [anon_sym_while] = ACTIONS(945), + [anon_sym_for] = ACTIONS(947), + [anon_sym_asyncfor] = ACTIONS(949), + [anon_sym_transform] = ACTIONS(951), + [anon_sym_filter] = ACTIONS(953), + [anon_sym_find] = ACTIONS(955), + [anon_sym_remove] = ACTIONS(957), + [anon_sym_reduce] = ACTIONS(959), + [anon_sym_select] = ACTIONS(961), + [anon_sym_insert] = ACTIONS(285), + [anon_sym_async] = ACTIONS(963), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(289), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_assert_equal] = ACTIONS(291), + [anon_sym_download] = ACTIONS(291), + [anon_sym_help] = ACTIONS(291), + [anon_sym_length] = ACTIONS(291), + [anon_sym_output] = ACTIONS(291), + [anon_sym_output_error] = ACTIONS(291), + [anon_sym_type] = ACTIONS(291), + [anon_sym_append] = ACTIONS(291), + [anon_sym_metadata] = ACTIONS(291), + [anon_sym_move] = ACTIONS(291), + [anon_sym_read] = ACTIONS(291), + [anon_sym_workdir] = ACTIONS(291), + [anon_sym_write] = ACTIONS(291), + [anon_sym_from_json] = ACTIONS(291), + [anon_sym_to_json] = ACTIONS(291), + [anon_sym_to_string] = ACTIONS(291), + [anon_sym_to_float] = ACTIONS(291), + [anon_sym_bash] = ACTIONS(291), + [anon_sym_fish] = ACTIONS(291), + [anon_sym_raw] = ACTIONS(291), + [anon_sym_sh] = ACTIONS(291), + [anon_sym_zsh] = ACTIONS(291), + [anon_sym_random] = ACTIONS(291), + [anon_sym_random_boolean] = ACTIONS(291), + [anon_sym_random_float] = ACTIONS(291), + [anon_sym_random_integer] = ACTIONS(291), + [anon_sym_columns] = ACTIONS(291), + [anon_sym_rows] = ACTIONS(291), + [anon_sym_reverse] = ACTIONS(291), + }, + [146] = { + [sym_statement] = STATE(20), + [sym_expression] = STATE(449), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(353), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [aux_sym_block_repeat1] = STATE(20), + [sym_identifier] = ACTIONS(965), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_RBRACE] = ACTIONS(293), + [anon_sym_SEMI] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_COMMA] = ACTIONS(293), + [sym_integer] = ACTIONS(11), + [sym_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(293), + [anon_sym_PLUS] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(316), + [anon_sym_STAR] = ACTIONS(293), + [anon_sym_SLASH] = ACTIONS(293), + [anon_sym_PERCENT] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_AMP_AMP] = ACTIONS(293), + [anon_sym_PIPE_PIPE] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(316), + [anon_sym_LT] = ACTIONS(316), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(263), + [anon_sym_EQ_GT] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_for] = ACTIONS(269), + [anon_sym_asyncfor] = ACTIONS(271), + [anon_sym_transform] = ACTIONS(273), + [anon_sym_filter] = ACTIONS(275), + [anon_sym_find] = ACTIONS(277), + [anon_sym_remove] = ACTIONS(279), + [anon_sym_reduce] = ACTIONS(281), + [anon_sym_select] = ACTIONS(283), + [anon_sym_insert] = ACTIONS(285), + [anon_sym_async] = ACTIONS(287), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(289), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_assert_equal] = ACTIONS(291), + [anon_sym_download] = ACTIONS(291), + [anon_sym_help] = ACTIONS(291), + [anon_sym_length] = ACTIONS(291), + [anon_sym_output] = ACTIONS(291), + [anon_sym_output_error] = ACTIONS(291), + [anon_sym_type] = ACTIONS(291), + [anon_sym_append] = ACTIONS(291), + [anon_sym_metadata] = ACTIONS(291), + [anon_sym_move] = ACTIONS(291), + [anon_sym_read] = ACTIONS(291), + [anon_sym_workdir] = ACTIONS(291), + [anon_sym_write] = ACTIONS(291), + [anon_sym_from_json] = ACTIONS(291), + [anon_sym_to_json] = ACTIONS(291), + [anon_sym_to_string] = ACTIONS(291), + [anon_sym_to_float] = ACTIONS(291), + [anon_sym_bash] = ACTIONS(291), + [anon_sym_fish] = ACTIONS(291), + [anon_sym_raw] = ACTIONS(291), + [anon_sym_sh] = ACTIONS(291), + [anon_sym_zsh] = ACTIONS(291), + [anon_sym_random] = ACTIONS(291), + [anon_sym_random_boolean] = ACTIONS(291), + [anon_sym_random_float] = ACTIONS(291), + [anon_sym_random_integer] = ACTIONS(291), + [anon_sym_columns] = ACTIONS(291), + [anon_sym_rows] = ACTIONS(291), + [anon_sym_reverse] = ACTIONS(291), }, [147] = { - [sym_block] = STATE(1655), - [sym_statement] = STATE(371), - [sym_expression] = STATE(934), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(842), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(983), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [aux_sym_block_repeat1] = STATE(371), - [sym_identifier] = ACTIONS(2162), + [sym_block] = STATE(385), + [sym_statement] = STATE(26), + [sym_expression] = STATE(448), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(414), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1085), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(203), + [aux_sym_block_repeat1] = STATE(26), + [sym_identifier] = ACTIONS(223), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2164), - [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(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(1570), - [anon_sym_match] = ACTIONS(2166), - [anon_sym_EQ_GT] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(2168), - [anon_sym_for] = ACTIONS(2170), - [anon_sym_asyncfor] = ACTIONS(2172), - [anon_sym_transform] = ACTIONS(2174), - [anon_sym_filter] = ACTIONS(2176), - [anon_sym_find] = ACTIONS(2178), - [anon_sym_remove] = ACTIONS(2180), - [anon_sym_reduce] = ACTIONS(2182), - [anon_sym_select] = ACTIONS(2184), - [anon_sym_insert] = ACTIONS(1224), - [anon_sym_async] = ACTIONS(2186), + [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(227), + [anon_sym_match] = ACTIONS(229), + [anon_sym_EQ_GT] = ACTIONS(231), + [anon_sym_while] = ACTIONS(233), + [anon_sym_for] = ACTIONS(235), + [anon_sym_asyncfor] = ACTIONS(237), + [anon_sym_transform] = ACTIONS(239), + [anon_sym_filter] = ACTIONS(241), + [anon_sym_find] = ACTIONS(243), + [anon_sym_remove] = ACTIONS(245), + [anon_sym_reduce] = ACTIONS(247), + [anon_sym_select] = ACTIONS(249), + [anon_sym_insert] = ACTIONS(251), + [anon_sym_async] = ACTIONS(253), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1228), - [anon_sym_assert] = ACTIONS(1230), - [anon_sym_assert_equal] = ACTIONS(1230), - [anon_sym_download] = ACTIONS(1230), - [anon_sym_help] = ACTIONS(1230), - [anon_sym_length] = ACTIONS(1230), - [anon_sym_output] = ACTIONS(1230), - [anon_sym_output_error] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_append] = ACTIONS(1230), - [anon_sym_metadata] = ACTIONS(1230), - [anon_sym_move] = ACTIONS(1230), - [anon_sym_read] = ACTIONS(1230), - [anon_sym_workdir] = ACTIONS(1230), - [anon_sym_write] = ACTIONS(1230), - [anon_sym_from_json] = ACTIONS(1230), - [anon_sym_to_json] = ACTIONS(1230), - [anon_sym_to_string] = ACTIONS(1230), - [anon_sym_to_float] = ACTIONS(1230), - [anon_sym_bash] = ACTIONS(1230), - [anon_sym_fish] = ACTIONS(1230), - [anon_sym_raw] = ACTIONS(1230), - [anon_sym_sh] = ACTIONS(1230), - [anon_sym_zsh] = ACTIONS(1230), - [anon_sym_random] = ACTIONS(1230), - [anon_sym_random_boolean] = ACTIONS(1230), - [anon_sym_random_float] = ACTIONS(1230), - [anon_sym_random_integer] = ACTIONS(1230), - [anon_sym_columns] = ACTIONS(1230), - [anon_sym_rows] = ACTIONS(1230), - [anon_sym_reverse] = ACTIONS(1230), + [anon_sym_table] = ACTIONS(255), + [anon_sym_assert] = ACTIONS(257), + [anon_sym_assert_equal] = ACTIONS(257), + [anon_sym_download] = ACTIONS(257), + [anon_sym_help] = ACTIONS(257), + [anon_sym_length] = ACTIONS(257), + [anon_sym_output] = ACTIONS(257), + [anon_sym_output_error] = ACTIONS(257), + [anon_sym_type] = ACTIONS(257), + [anon_sym_append] = ACTIONS(257), + [anon_sym_metadata] = ACTIONS(257), + [anon_sym_move] = ACTIONS(257), + [anon_sym_read] = ACTIONS(257), + [anon_sym_workdir] = ACTIONS(257), + [anon_sym_write] = ACTIONS(257), + [anon_sym_from_json] = ACTIONS(257), + [anon_sym_to_json] = ACTIONS(257), + [anon_sym_to_string] = ACTIONS(257), + [anon_sym_to_float] = ACTIONS(257), + [anon_sym_bash] = ACTIONS(257), + [anon_sym_fish] = ACTIONS(257), + [anon_sym_raw] = ACTIONS(257), + [anon_sym_sh] = ACTIONS(257), + [anon_sym_zsh] = ACTIONS(257), + [anon_sym_random] = ACTIONS(257), + [anon_sym_random_boolean] = ACTIONS(257), + [anon_sym_random_float] = ACTIONS(257), + [anon_sym_random_integer] = ACTIONS(257), + [anon_sym_columns] = ACTIONS(257), + [anon_sym_rows] = ACTIONS(257), + [anon_sym_reverse] = ACTIONS(257), }, [148] = { - [sym_block] = STATE(879), - [sym_statement] = STATE(61), - [sym_expression] = STATE(888), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(822), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(787), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(61), - [sym_identifier] = ACTIONS(1846), + [sym_block] = STATE(591), + [sym_statement] = STATE(212), + [sym_expression] = STATE(460), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(598), + [sym_if_else] = STATE(598), + [sym_if] = STATE(564), + [sym_match] = STATE(598), + [sym_while] = STATE(598), + [sym_for] = STATE(598), + [sym_transform] = STATE(598), + [sym_filter] = STATE(598), + [sym_find] = STATE(598), + [sym_remove] = STATE(598), + [sym_reduce] = STATE(598), + [sym_select] = STATE(598), + [sym_insert] = STATE(598), + [sym_async] = STATE(598), + [sym_identifier_list] = STATE(1100), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(181), + [aux_sym_block_repeat1] = STATE(212), + [sym_identifier] = ACTIONS(445), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(877), - [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(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(447), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_match] = ACTIONS(1850), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(1852), - [anon_sym_for] = ACTIONS(1854), - [anon_sym_asyncfor] = ACTIONS(1856), - [anon_sym_transform] = ACTIONS(1858), - [anon_sym_filter] = ACTIONS(1860), - [anon_sym_find] = ACTIONS(1862), - [anon_sym_remove] = ACTIONS(1864), - [anon_sym_reduce] = ACTIONS(1866), - [anon_sym_select] = ACTIONS(1868), - [anon_sym_insert] = ACTIONS(43), - [anon_sym_async] = ACTIONS(1870), + [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(449), + [anon_sym_match] = ACTIONS(451), + [anon_sym_EQ_GT] = ACTIONS(123), + [anon_sym_while] = ACTIONS(453), + [anon_sym_for] = ACTIONS(455), + [anon_sym_asyncfor] = ACTIONS(457), + [anon_sym_transform] = ACTIONS(459), + [anon_sym_filter] = ACTIONS(461), + [anon_sym_find] = ACTIONS(463), + [anon_sym_remove] = ACTIONS(465), + [anon_sym_reduce] = ACTIONS(467), + [anon_sym_select] = ACTIONS(469), + [anon_sym_insert] = ACTIONS(143), + [anon_sym_async] = ACTIONS(471), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(49), - [anon_sym_assert] = ACTIONS(51), - [anon_sym_assert_equal] = ACTIONS(51), - [anon_sym_download] = ACTIONS(51), - [anon_sym_help] = ACTIONS(51), - [anon_sym_length] = ACTIONS(51), - [anon_sym_output] = ACTIONS(51), - [anon_sym_output_error] = ACTIONS(51), - [anon_sym_type] = ACTIONS(51), - [anon_sym_append] = ACTIONS(51), - [anon_sym_metadata] = ACTIONS(51), - [anon_sym_move] = ACTIONS(51), - [anon_sym_read] = ACTIONS(51), - [anon_sym_workdir] = ACTIONS(51), - [anon_sym_write] = ACTIONS(51), - [anon_sym_from_json] = ACTIONS(51), - [anon_sym_to_json] = ACTIONS(51), - [anon_sym_to_string] = ACTIONS(51), - [anon_sym_to_float] = ACTIONS(51), - [anon_sym_bash] = ACTIONS(51), - [anon_sym_fish] = ACTIONS(51), - [anon_sym_raw] = ACTIONS(51), - [anon_sym_sh] = ACTIONS(51), - [anon_sym_zsh] = ACTIONS(51), - [anon_sym_random] = ACTIONS(51), - [anon_sym_random_boolean] = ACTIONS(51), - [anon_sym_random_float] = ACTIONS(51), - [anon_sym_random_integer] = ACTIONS(51), - [anon_sym_columns] = ACTIONS(51), - [anon_sym_rows] = ACTIONS(51), - [anon_sym_reverse] = ACTIONS(51), + [anon_sym_table] = ACTIONS(147), + [anon_sym_assert] = ACTIONS(149), + [anon_sym_assert_equal] = ACTIONS(149), + [anon_sym_download] = ACTIONS(149), + [anon_sym_help] = ACTIONS(149), + [anon_sym_length] = ACTIONS(149), + [anon_sym_output] = ACTIONS(149), + [anon_sym_output_error] = ACTIONS(149), + [anon_sym_type] = ACTIONS(149), + [anon_sym_append] = ACTIONS(149), + [anon_sym_metadata] = ACTIONS(149), + [anon_sym_move] = ACTIONS(149), + [anon_sym_read] = ACTIONS(149), + [anon_sym_workdir] = ACTIONS(149), + [anon_sym_write] = ACTIONS(149), + [anon_sym_from_json] = ACTIONS(149), + [anon_sym_to_json] = ACTIONS(149), + [anon_sym_to_string] = ACTIONS(149), + [anon_sym_to_float] = ACTIONS(149), + [anon_sym_bash] = ACTIONS(149), + [anon_sym_fish] = ACTIONS(149), + [anon_sym_raw] = ACTIONS(149), + [anon_sym_sh] = ACTIONS(149), + [anon_sym_zsh] = ACTIONS(149), + [anon_sym_random] = ACTIONS(149), + [anon_sym_random_boolean] = ACTIONS(149), + [anon_sym_random_float] = ACTIONS(149), + [anon_sym_random_integer] = ACTIONS(149), + [anon_sym_columns] = ACTIONS(149), + [anon_sym_rows] = ACTIONS(149), + [anon_sym_reverse] = ACTIONS(149), }, [149] = { - [sym_block] = STATE(840), - [sym_statement] = STATE(61), - [sym_expression] = STATE(888), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(822), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(787), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(61), - [sym_identifier] = ACTIONS(1846), + [sym_block] = STATE(408), + [sym_statement] = STATE(26), + [sym_expression] = STATE(448), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(414), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1085), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(203), + [aux_sym_block_repeat1] = STATE(26), + [sym_identifier] = ACTIONS(223), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(877), - [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(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_match] = ACTIONS(1850), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(1852), - [anon_sym_for] = ACTIONS(1854), - [anon_sym_asyncfor] = ACTIONS(1856), - [anon_sym_transform] = ACTIONS(1858), - [anon_sym_filter] = ACTIONS(1860), - [anon_sym_find] = ACTIONS(1862), - [anon_sym_remove] = ACTIONS(1864), - [anon_sym_reduce] = ACTIONS(1866), - [anon_sym_select] = ACTIONS(1868), - [anon_sym_insert] = ACTIONS(43), - [anon_sym_async] = ACTIONS(1870), + [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(227), + [anon_sym_match] = ACTIONS(229), + [anon_sym_EQ_GT] = ACTIONS(231), + [anon_sym_while] = ACTIONS(233), + [anon_sym_for] = ACTIONS(235), + [anon_sym_asyncfor] = ACTIONS(237), + [anon_sym_transform] = ACTIONS(239), + [anon_sym_filter] = ACTIONS(241), + [anon_sym_find] = ACTIONS(243), + [anon_sym_remove] = ACTIONS(245), + [anon_sym_reduce] = ACTIONS(247), + [anon_sym_select] = ACTIONS(249), + [anon_sym_insert] = ACTIONS(251), + [anon_sym_async] = ACTIONS(253), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(49), - [anon_sym_assert] = ACTIONS(51), - [anon_sym_assert_equal] = ACTIONS(51), - [anon_sym_download] = ACTIONS(51), - [anon_sym_help] = ACTIONS(51), - [anon_sym_length] = ACTIONS(51), - [anon_sym_output] = ACTIONS(51), - [anon_sym_output_error] = ACTIONS(51), - [anon_sym_type] = ACTIONS(51), - [anon_sym_append] = ACTIONS(51), - [anon_sym_metadata] = ACTIONS(51), - [anon_sym_move] = ACTIONS(51), - [anon_sym_read] = ACTIONS(51), - [anon_sym_workdir] = ACTIONS(51), - [anon_sym_write] = ACTIONS(51), - [anon_sym_from_json] = ACTIONS(51), - [anon_sym_to_json] = ACTIONS(51), - [anon_sym_to_string] = ACTIONS(51), - [anon_sym_to_float] = ACTIONS(51), - [anon_sym_bash] = ACTIONS(51), - [anon_sym_fish] = ACTIONS(51), - [anon_sym_raw] = ACTIONS(51), - [anon_sym_sh] = ACTIONS(51), - [anon_sym_zsh] = ACTIONS(51), - [anon_sym_random] = ACTIONS(51), - [anon_sym_random_boolean] = ACTIONS(51), - [anon_sym_random_float] = ACTIONS(51), - [anon_sym_random_integer] = ACTIONS(51), - [anon_sym_columns] = ACTIONS(51), - [anon_sym_rows] = ACTIONS(51), - [anon_sym_reverse] = ACTIONS(51), + [anon_sym_table] = ACTIONS(255), + [anon_sym_assert] = ACTIONS(257), + [anon_sym_assert_equal] = ACTIONS(257), + [anon_sym_download] = ACTIONS(257), + [anon_sym_help] = ACTIONS(257), + [anon_sym_length] = ACTIONS(257), + [anon_sym_output] = ACTIONS(257), + [anon_sym_output_error] = ACTIONS(257), + [anon_sym_type] = ACTIONS(257), + [anon_sym_append] = ACTIONS(257), + [anon_sym_metadata] = ACTIONS(257), + [anon_sym_move] = ACTIONS(257), + [anon_sym_read] = ACTIONS(257), + [anon_sym_workdir] = ACTIONS(257), + [anon_sym_write] = ACTIONS(257), + [anon_sym_from_json] = ACTIONS(257), + [anon_sym_to_json] = ACTIONS(257), + [anon_sym_to_string] = ACTIONS(257), + [anon_sym_to_float] = ACTIONS(257), + [anon_sym_bash] = ACTIONS(257), + [anon_sym_fish] = ACTIONS(257), + [anon_sym_raw] = ACTIONS(257), + [anon_sym_sh] = ACTIONS(257), + [anon_sym_zsh] = ACTIONS(257), + [anon_sym_random] = ACTIONS(257), + [anon_sym_random_boolean] = ACTIONS(257), + [anon_sym_random_float] = ACTIONS(257), + [anon_sym_random_integer] = ACTIONS(257), + [anon_sym_columns] = ACTIONS(257), + [anon_sym_rows] = ACTIONS(257), + [anon_sym_reverse] = ACTIONS(257), }, [150] = { - [sym_block] = STATE(1652), - [sym_statement] = STATE(371), - [sym_expression] = STATE(934), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(842), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(983), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [aux_sym_block_repeat1] = STATE(371), - [sym_identifier] = ACTIONS(2162), + [sym_block] = STATE(611), + [sym_statement] = STATE(212), + [sym_expression] = STATE(460), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(598), + [sym_if_else] = STATE(598), + [sym_if] = STATE(564), + [sym_match] = STATE(598), + [sym_while] = STATE(598), + [sym_for] = STATE(598), + [sym_transform] = STATE(598), + [sym_filter] = STATE(598), + [sym_find] = STATE(598), + [sym_remove] = STATE(598), + [sym_reduce] = STATE(598), + [sym_select] = STATE(598), + [sym_insert] = STATE(598), + [sym_async] = STATE(598), + [sym_identifier_list] = STATE(1100), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(181), + [aux_sym_block_repeat1] = STATE(212), + [sym_identifier] = ACTIONS(445), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2164), - [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(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(447), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(1570), - [anon_sym_match] = ACTIONS(2166), - [anon_sym_EQ_GT] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(2168), - [anon_sym_for] = ACTIONS(2170), - [anon_sym_asyncfor] = ACTIONS(2172), - [anon_sym_transform] = ACTIONS(2174), - [anon_sym_filter] = ACTIONS(2176), - [anon_sym_find] = ACTIONS(2178), - [anon_sym_remove] = ACTIONS(2180), - [anon_sym_reduce] = ACTIONS(2182), - [anon_sym_select] = ACTIONS(2184), - [anon_sym_insert] = ACTIONS(1224), - [anon_sym_async] = ACTIONS(2186), + [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(449), + [anon_sym_match] = ACTIONS(451), + [anon_sym_EQ_GT] = ACTIONS(123), + [anon_sym_while] = ACTIONS(453), + [anon_sym_for] = ACTIONS(455), + [anon_sym_asyncfor] = ACTIONS(457), + [anon_sym_transform] = ACTIONS(459), + [anon_sym_filter] = ACTIONS(461), + [anon_sym_find] = ACTIONS(463), + [anon_sym_remove] = ACTIONS(465), + [anon_sym_reduce] = ACTIONS(467), + [anon_sym_select] = ACTIONS(469), + [anon_sym_insert] = ACTIONS(143), + [anon_sym_async] = ACTIONS(471), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1228), - [anon_sym_assert] = ACTIONS(1230), - [anon_sym_assert_equal] = ACTIONS(1230), - [anon_sym_download] = ACTIONS(1230), - [anon_sym_help] = ACTIONS(1230), - [anon_sym_length] = ACTIONS(1230), - [anon_sym_output] = ACTIONS(1230), - [anon_sym_output_error] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_append] = ACTIONS(1230), - [anon_sym_metadata] = ACTIONS(1230), - [anon_sym_move] = ACTIONS(1230), - [anon_sym_read] = ACTIONS(1230), - [anon_sym_workdir] = ACTIONS(1230), - [anon_sym_write] = ACTIONS(1230), - [anon_sym_from_json] = ACTIONS(1230), - [anon_sym_to_json] = ACTIONS(1230), - [anon_sym_to_string] = ACTIONS(1230), - [anon_sym_to_float] = ACTIONS(1230), - [anon_sym_bash] = ACTIONS(1230), - [anon_sym_fish] = ACTIONS(1230), - [anon_sym_raw] = ACTIONS(1230), - [anon_sym_sh] = ACTIONS(1230), - [anon_sym_zsh] = ACTIONS(1230), - [anon_sym_random] = ACTIONS(1230), - [anon_sym_random_boolean] = ACTIONS(1230), - [anon_sym_random_float] = ACTIONS(1230), - [anon_sym_random_integer] = ACTIONS(1230), - [anon_sym_columns] = ACTIONS(1230), - [anon_sym_rows] = ACTIONS(1230), - [anon_sym_reverse] = ACTIONS(1230), + [anon_sym_table] = ACTIONS(147), + [anon_sym_assert] = ACTIONS(149), + [anon_sym_assert_equal] = ACTIONS(149), + [anon_sym_download] = ACTIONS(149), + [anon_sym_help] = ACTIONS(149), + [anon_sym_length] = ACTIONS(149), + [anon_sym_output] = ACTIONS(149), + [anon_sym_output_error] = ACTIONS(149), + [anon_sym_type] = ACTIONS(149), + [anon_sym_append] = ACTIONS(149), + [anon_sym_metadata] = ACTIONS(149), + [anon_sym_move] = ACTIONS(149), + [anon_sym_read] = ACTIONS(149), + [anon_sym_workdir] = ACTIONS(149), + [anon_sym_write] = ACTIONS(149), + [anon_sym_from_json] = ACTIONS(149), + [anon_sym_to_json] = ACTIONS(149), + [anon_sym_to_string] = ACTIONS(149), + [anon_sym_to_float] = ACTIONS(149), + [anon_sym_bash] = ACTIONS(149), + [anon_sym_fish] = ACTIONS(149), + [anon_sym_raw] = ACTIONS(149), + [anon_sym_sh] = ACTIONS(149), + [anon_sym_zsh] = ACTIONS(149), + [anon_sym_random] = ACTIONS(149), + [anon_sym_random_boolean] = ACTIONS(149), + [anon_sym_random_float] = ACTIONS(149), + [anon_sym_random_integer] = ACTIONS(149), + [anon_sym_columns] = ACTIONS(149), + [anon_sym_rows] = ACTIONS(149), + [anon_sym_reverse] = ACTIONS(149), }, [151] = { - [sym_block] = STATE(880), - [sym_statement] = STATE(61), - [sym_expression] = STATE(888), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(822), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(787), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(61), - [sym_identifier] = ACTIONS(1846), + [sym_block] = STATE(384), + [sym_statement] = STATE(26), + [sym_expression] = STATE(448), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(414), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1085), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(203), + [aux_sym_block_repeat1] = STATE(26), + [sym_identifier] = ACTIONS(223), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(877), - [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(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_match] = ACTIONS(1850), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(1852), - [anon_sym_for] = ACTIONS(1854), - [anon_sym_asyncfor] = ACTIONS(1856), - [anon_sym_transform] = ACTIONS(1858), - [anon_sym_filter] = ACTIONS(1860), - [anon_sym_find] = ACTIONS(1862), - [anon_sym_remove] = ACTIONS(1864), - [anon_sym_reduce] = ACTIONS(1866), - [anon_sym_select] = ACTIONS(1868), - [anon_sym_insert] = ACTIONS(43), - [anon_sym_async] = ACTIONS(1870), + [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(227), + [anon_sym_match] = ACTIONS(229), + [anon_sym_EQ_GT] = ACTIONS(231), + [anon_sym_while] = ACTIONS(233), + [anon_sym_for] = ACTIONS(235), + [anon_sym_asyncfor] = ACTIONS(237), + [anon_sym_transform] = ACTIONS(239), + [anon_sym_filter] = ACTIONS(241), + [anon_sym_find] = ACTIONS(243), + [anon_sym_remove] = ACTIONS(245), + [anon_sym_reduce] = ACTIONS(247), + [anon_sym_select] = ACTIONS(249), + [anon_sym_insert] = ACTIONS(251), + [anon_sym_async] = ACTIONS(253), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(49), - [anon_sym_assert] = ACTIONS(51), - [anon_sym_assert_equal] = ACTIONS(51), - [anon_sym_download] = ACTIONS(51), - [anon_sym_help] = ACTIONS(51), - [anon_sym_length] = ACTIONS(51), - [anon_sym_output] = ACTIONS(51), - [anon_sym_output_error] = ACTIONS(51), - [anon_sym_type] = ACTIONS(51), - [anon_sym_append] = ACTIONS(51), - [anon_sym_metadata] = ACTIONS(51), - [anon_sym_move] = ACTIONS(51), - [anon_sym_read] = ACTIONS(51), - [anon_sym_workdir] = ACTIONS(51), - [anon_sym_write] = ACTIONS(51), - [anon_sym_from_json] = ACTIONS(51), - [anon_sym_to_json] = ACTIONS(51), - [anon_sym_to_string] = ACTIONS(51), - [anon_sym_to_float] = ACTIONS(51), - [anon_sym_bash] = ACTIONS(51), - [anon_sym_fish] = ACTIONS(51), - [anon_sym_raw] = ACTIONS(51), - [anon_sym_sh] = ACTIONS(51), - [anon_sym_zsh] = ACTIONS(51), - [anon_sym_random] = ACTIONS(51), - [anon_sym_random_boolean] = ACTIONS(51), - [anon_sym_random_float] = ACTIONS(51), - [anon_sym_random_integer] = ACTIONS(51), - [anon_sym_columns] = ACTIONS(51), - [anon_sym_rows] = ACTIONS(51), - [anon_sym_reverse] = ACTIONS(51), + [anon_sym_table] = ACTIONS(255), + [anon_sym_assert] = ACTIONS(257), + [anon_sym_assert_equal] = ACTIONS(257), + [anon_sym_download] = ACTIONS(257), + [anon_sym_help] = ACTIONS(257), + [anon_sym_length] = ACTIONS(257), + [anon_sym_output] = ACTIONS(257), + [anon_sym_output_error] = ACTIONS(257), + [anon_sym_type] = ACTIONS(257), + [anon_sym_append] = ACTIONS(257), + [anon_sym_metadata] = ACTIONS(257), + [anon_sym_move] = ACTIONS(257), + [anon_sym_read] = ACTIONS(257), + [anon_sym_workdir] = ACTIONS(257), + [anon_sym_write] = ACTIONS(257), + [anon_sym_from_json] = ACTIONS(257), + [anon_sym_to_json] = ACTIONS(257), + [anon_sym_to_string] = ACTIONS(257), + [anon_sym_to_float] = ACTIONS(257), + [anon_sym_bash] = ACTIONS(257), + [anon_sym_fish] = ACTIONS(257), + [anon_sym_raw] = ACTIONS(257), + [anon_sym_sh] = ACTIONS(257), + [anon_sym_zsh] = ACTIONS(257), + [anon_sym_random] = ACTIONS(257), + [anon_sym_random_boolean] = ACTIONS(257), + [anon_sym_random_float] = ACTIONS(257), + [anon_sym_random_integer] = ACTIONS(257), + [anon_sym_columns] = ACTIONS(257), + [anon_sym_rows] = ACTIONS(257), + [anon_sym_reverse] = ACTIONS(257), }, [152] = { - [sym_block] = STATE(873), - [sym_statement] = STATE(61), - [sym_expression] = STATE(888), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(822), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(787), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(61), - [sym_identifier] = ACTIONS(1846), + [sym_block] = STATE(603), + [sym_statement] = STATE(199), + [sym_expression] = STATE(473), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_math_operator] = STATE(851), + [sym_logic] = STATE(415), + [sym_logic_operator] = STATE(857), + [sym_assignment] = STATE(598), + [sym_if_else] = STATE(598), + [sym_if] = STATE(565), + [sym_match] = STATE(598), + [sym_while] = STATE(598), + [sym_for] = STATE(598), + [sym_transform] = STATE(598), + [sym_filter] = STATE(598), + [sym_find] = STATE(598), + [sym_remove] = STATE(598), + [sym_reduce] = STATE(598), + [sym_select] = STATE(598), + [sym_insert] = STATE(598), + [sym_async] = STATE(598), + [sym_identifier_list] = STATE(1085), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(203), + [aux_sym_block_repeat1] = STATE(199), + [sym_identifier] = ACTIONS(609), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(877), - [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(1848), - [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(447), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(71), [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_match] = ACTIONS(1850), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(1852), - [anon_sym_for] = ACTIONS(1854), - [anon_sym_asyncfor] = ACTIONS(1856), - [anon_sym_transform] = ACTIONS(1858), - [anon_sym_filter] = ACTIONS(1860), - [anon_sym_find] = ACTIONS(1862), - [anon_sym_remove] = ACTIONS(1864), - [anon_sym_reduce] = ACTIONS(1866), - [anon_sym_select] = ACTIONS(1868), - [anon_sym_insert] = ACTIONS(43), - [anon_sym_async] = ACTIONS(1870), + [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(19), + [anon_sym_match] = ACTIONS(611), + [anon_sym_EQ_GT] = ACTIONS(231), + [anon_sym_while] = ACTIONS(613), + [anon_sym_for] = ACTIONS(615), + [anon_sym_asyncfor] = ACTIONS(617), + [anon_sym_transform] = ACTIONS(619), + [anon_sym_filter] = ACTIONS(621), + [anon_sym_find] = ACTIONS(623), + [anon_sym_remove] = ACTIONS(625), + [anon_sym_reduce] = ACTIONS(627), + [anon_sym_select] = ACTIONS(629), + [anon_sym_insert] = ACTIONS(251), + [anon_sym_async] = ACTIONS(631), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(49), - [anon_sym_assert] = ACTIONS(51), - [anon_sym_assert_equal] = ACTIONS(51), - [anon_sym_download] = ACTIONS(51), - [anon_sym_help] = ACTIONS(51), - [anon_sym_length] = ACTIONS(51), - [anon_sym_output] = ACTIONS(51), - [anon_sym_output_error] = ACTIONS(51), - [anon_sym_type] = ACTIONS(51), - [anon_sym_append] = ACTIONS(51), - [anon_sym_metadata] = ACTIONS(51), - [anon_sym_move] = ACTIONS(51), - [anon_sym_read] = ACTIONS(51), - [anon_sym_workdir] = ACTIONS(51), - [anon_sym_write] = ACTIONS(51), - [anon_sym_from_json] = ACTIONS(51), - [anon_sym_to_json] = ACTIONS(51), - [anon_sym_to_string] = ACTIONS(51), - [anon_sym_to_float] = ACTIONS(51), - [anon_sym_bash] = ACTIONS(51), - [anon_sym_fish] = ACTIONS(51), - [anon_sym_raw] = ACTIONS(51), - [anon_sym_sh] = ACTIONS(51), - [anon_sym_zsh] = ACTIONS(51), - [anon_sym_random] = ACTIONS(51), - [anon_sym_random_boolean] = ACTIONS(51), - [anon_sym_random_float] = ACTIONS(51), - [anon_sym_random_integer] = ACTIONS(51), - [anon_sym_columns] = ACTIONS(51), - [anon_sym_rows] = ACTIONS(51), - [anon_sym_reverse] = ACTIONS(51), + [anon_sym_table] = ACTIONS(255), + [anon_sym_assert] = ACTIONS(257), + [anon_sym_assert_equal] = ACTIONS(257), + [anon_sym_download] = ACTIONS(257), + [anon_sym_help] = ACTIONS(257), + [anon_sym_length] = ACTIONS(257), + [anon_sym_output] = ACTIONS(257), + [anon_sym_output_error] = ACTIONS(257), + [anon_sym_type] = ACTIONS(257), + [anon_sym_append] = ACTIONS(257), + [anon_sym_metadata] = ACTIONS(257), + [anon_sym_move] = ACTIONS(257), + [anon_sym_read] = ACTIONS(257), + [anon_sym_workdir] = ACTIONS(257), + [anon_sym_write] = ACTIONS(257), + [anon_sym_from_json] = ACTIONS(257), + [anon_sym_to_json] = ACTIONS(257), + [anon_sym_to_string] = ACTIONS(257), + [anon_sym_to_float] = ACTIONS(257), + [anon_sym_bash] = ACTIONS(257), + [anon_sym_fish] = ACTIONS(257), + [anon_sym_raw] = ACTIONS(257), + [anon_sym_sh] = ACTIONS(257), + [anon_sym_zsh] = ACTIONS(257), + [anon_sym_random] = ACTIONS(257), + [anon_sym_random_boolean] = ACTIONS(257), + [anon_sym_random_float] = ACTIONS(257), + [anon_sym_random_integer] = ACTIONS(257), + [anon_sym_columns] = ACTIONS(257), + [anon_sym_rows] = ACTIONS(257), + [anon_sym_reverse] = ACTIONS(257), }, [153] = { - [sym_block] = STATE(879), - [sym_statement] = STATE(39), - [sym_expression] = STATE(756), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(657), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(627), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1752), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(338), - [aux_sym_block_repeat1] = STATE(39), - [sym_identifier] = ACTIONS(875), + [sym_statement] = STATE(30), + [sym_expression] = STATE(479), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(365), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1119), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(218), + [aux_sym_block_repeat1] = STATE(30), + [sym_identifier] = ACTIONS(524), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(1309), [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_RPAREN] = ACTIONS(293), [sym_integer] = ACTIONS(11), [sym_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(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(245), - [anon_sym_match] = ACTIONS(881), - [anon_sym_EQ_GT] = ACTIONS(883), - [anon_sym_while] = ACTIONS(885), - [anon_sym_for] = ACTIONS(887), - [anon_sym_asyncfor] = ACTIONS(889), - [anon_sym_transform] = ACTIONS(891), - [anon_sym_filter] = ACTIONS(893), - [anon_sym_find] = ACTIONS(895), - [anon_sym_remove] = ACTIONS(897), - [anon_sym_reduce] = ACTIONS(899), - [anon_sym_select] = ACTIONS(901), - [anon_sym_insert] = ACTIONS(903), - [anon_sym_async] = ACTIONS(905), + [anon_sym_COLON] = ACTIONS(293), + [anon_sym_DOT_DOT] = ACTIONS(293), + [anon_sym_PLUS] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(316), + [anon_sym_STAR] = ACTIONS(293), + [anon_sym_SLASH] = ACTIONS(293), + [anon_sym_PERCENT] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_AMP_AMP] = ACTIONS(293), + [anon_sym_PIPE_PIPE] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(316), + [anon_sym_LT] = ACTIONS(316), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_if] = ACTIONS(155), + [anon_sym_match] = ACTIONS(528), + [anon_sym_EQ_GT] = ACTIONS(530), + [anon_sym_while] = ACTIONS(532), + [anon_sym_for] = ACTIONS(534), + [anon_sym_asyncfor] = ACTIONS(536), + [anon_sym_transform] = ACTIONS(538), + [anon_sym_filter] = ACTIONS(540), + [anon_sym_find] = ACTIONS(542), + [anon_sym_remove] = ACTIONS(544), + [anon_sym_reduce] = ACTIONS(546), + [anon_sym_select] = ACTIONS(548), + [anon_sym_insert] = ACTIONS(550), + [anon_sym_async] = ACTIONS(552), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(907), - [anon_sym_assert] = ACTIONS(909), - [anon_sym_assert_equal] = ACTIONS(909), - [anon_sym_download] = ACTIONS(909), - [anon_sym_help] = ACTIONS(909), - [anon_sym_length] = ACTIONS(909), - [anon_sym_output] = ACTIONS(909), - [anon_sym_output_error] = ACTIONS(909), - [anon_sym_type] = ACTIONS(909), - [anon_sym_append] = ACTIONS(909), - [anon_sym_metadata] = ACTIONS(909), - [anon_sym_move] = ACTIONS(909), - [anon_sym_read] = ACTIONS(909), - [anon_sym_workdir] = ACTIONS(909), - [anon_sym_write] = ACTIONS(909), - [anon_sym_from_json] = ACTIONS(909), - [anon_sym_to_json] = ACTIONS(909), - [anon_sym_to_string] = ACTIONS(909), - [anon_sym_to_float] = ACTIONS(909), - [anon_sym_bash] = ACTIONS(909), - [anon_sym_fish] = ACTIONS(909), - [anon_sym_raw] = ACTIONS(909), - [anon_sym_sh] = ACTIONS(909), - [anon_sym_zsh] = ACTIONS(909), - [anon_sym_random] = ACTIONS(909), - [anon_sym_random_boolean] = ACTIONS(909), - [anon_sym_random_float] = ACTIONS(909), - [anon_sym_random_integer] = ACTIONS(909), - [anon_sym_columns] = ACTIONS(909), - [anon_sym_rows] = ACTIONS(909), - [anon_sym_reverse] = ACTIONS(909), + [anon_sym_table] = ACTIONS(554), + [anon_sym_assert] = ACTIONS(556), + [anon_sym_assert_equal] = ACTIONS(556), + [anon_sym_download] = ACTIONS(556), + [anon_sym_help] = ACTIONS(556), + [anon_sym_length] = ACTIONS(556), + [anon_sym_output] = ACTIONS(556), + [anon_sym_output_error] = ACTIONS(556), + [anon_sym_type] = ACTIONS(556), + [anon_sym_append] = ACTIONS(556), + [anon_sym_metadata] = ACTIONS(556), + [anon_sym_move] = ACTIONS(556), + [anon_sym_read] = ACTIONS(556), + [anon_sym_workdir] = ACTIONS(556), + [anon_sym_write] = ACTIONS(556), + [anon_sym_from_json] = ACTIONS(556), + [anon_sym_to_json] = ACTIONS(556), + [anon_sym_to_string] = ACTIONS(556), + [anon_sym_to_float] = ACTIONS(556), + [anon_sym_bash] = ACTIONS(556), + [anon_sym_fish] = ACTIONS(556), + [anon_sym_raw] = ACTIONS(556), + [anon_sym_sh] = ACTIONS(556), + [anon_sym_zsh] = ACTIONS(556), + [anon_sym_random] = ACTIONS(556), + [anon_sym_random_boolean] = ACTIONS(556), + [anon_sym_random_float] = ACTIONS(556), + [anon_sym_random_integer] = ACTIONS(556), + [anon_sym_columns] = ACTIONS(556), + [anon_sym_rows] = ACTIONS(556), + [anon_sym_reverse] = ACTIONS(556), }, [154] = { - [sym_block] = STATE(871), - [sym_statement] = STATE(61), - [sym_expression] = STATE(888), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(822), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(787), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(61), - [sym_identifier] = ACTIONS(1846), + [sym_statement] = STATE(30), + [sym_expression] = STATE(479), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(365), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1119), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(218), + [aux_sym_block_repeat1] = STATE(30), + [sym_identifier] = ACTIONS(524), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(1309), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -23403,141 +21566,140 @@ 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(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_match] = ACTIONS(1850), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(1852), - [anon_sym_for] = ACTIONS(1854), - [anon_sym_asyncfor] = ACTIONS(1856), - [anon_sym_transform] = ACTIONS(1858), - [anon_sym_filter] = ACTIONS(1860), - [anon_sym_find] = ACTIONS(1862), - [anon_sym_remove] = ACTIONS(1864), - [anon_sym_reduce] = ACTIONS(1866), - [anon_sym_select] = ACTIONS(1868), - [anon_sym_insert] = ACTIONS(43), - [anon_sym_async] = ACTIONS(1870), + [anon_sym_COLON] = ACTIONS(293), + [anon_sym_DOT_DOT] = ACTIONS(293), + [anon_sym_PLUS] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(316), + [anon_sym_STAR] = ACTIONS(293), + [anon_sym_SLASH] = ACTIONS(293), + [anon_sym_PERCENT] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_AMP_AMP] = ACTIONS(293), + [anon_sym_PIPE_PIPE] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(316), + [anon_sym_LT] = ACTIONS(316), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_if] = ACTIONS(155), + [anon_sym_match] = ACTIONS(528), + [anon_sym_EQ_GT] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(532), + [anon_sym_for] = ACTIONS(534), + [anon_sym_asyncfor] = ACTIONS(536), + [anon_sym_transform] = ACTIONS(538), + [anon_sym_filter] = ACTIONS(540), + [anon_sym_find] = ACTIONS(542), + [anon_sym_remove] = ACTIONS(544), + [anon_sym_reduce] = ACTIONS(546), + [anon_sym_select] = ACTIONS(548), + [anon_sym_insert] = ACTIONS(550), + [anon_sym_async] = ACTIONS(552), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(49), - [anon_sym_assert] = ACTIONS(51), - [anon_sym_assert_equal] = ACTIONS(51), - [anon_sym_download] = ACTIONS(51), - [anon_sym_help] = ACTIONS(51), - [anon_sym_length] = ACTIONS(51), - [anon_sym_output] = ACTIONS(51), - [anon_sym_output_error] = ACTIONS(51), - [anon_sym_type] = ACTIONS(51), - [anon_sym_append] = ACTIONS(51), - [anon_sym_metadata] = ACTIONS(51), - [anon_sym_move] = ACTIONS(51), - [anon_sym_read] = ACTIONS(51), - [anon_sym_workdir] = ACTIONS(51), - [anon_sym_write] = ACTIONS(51), - [anon_sym_from_json] = ACTIONS(51), - [anon_sym_to_json] = ACTIONS(51), - [anon_sym_to_string] = ACTIONS(51), - [anon_sym_to_float] = ACTIONS(51), - [anon_sym_bash] = ACTIONS(51), - [anon_sym_fish] = ACTIONS(51), - [anon_sym_raw] = ACTIONS(51), - [anon_sym_sh] = ACTIONS(51), - [anon_sym_zsh] = ACTIONS(51), - [anon_sym_random] = ACTIONS(51), - [anon_sym_random_boolean] = ACTIONS(51), - [anon_sym_random_float] = ACTIONS(51), - [anon_sym_random_integer] = ACTIONS(51), - [anon_sym_columns] = ACTIONS(51), - [anon_sym_rows] = ACTIONS(51), - [anon_sym_reverse] = ACTIONS(51), + [anon_sym_table] = ACTIONS(554), + [anon_sym_assert] = ACTIONS(556), + [anon_sym_assert_equal] = ACTIONS(556), + [anon_sym_download] = ACTIONS(556), + [anon_sym_help] = ACTIONS(556), + [anon_sym_length] = ACTIONS(556), + [anon_sym_output] = ACTIONS(556), + [anon_sym_output_error] = ACTIONS(556), + [anon_sym_type] = ACTIONS(556), + [anon_sym_append] = ACTIONS(556), + [anon_sym_metadata] = ACTIONS(556), + [anon_sym_move] = ACTIONS(556), + [anon_sym_read] = ACTIONS(556), + [anon_sym_workdir] = ACTIONS(556), + [anon_sym_write] = ACTIONS(556), + [anon_sym_from_json] = ACTIONS(556), + [anon_sym_to_json] = ACTIONS(556), + [anon_sym_to_string] = ACTIONS(556), + [anon_sym_to_float] = ACTIONS(556), + [anon_sym_bash] = ACTIONS(556), + [anon_sym_fish] = ACTIONS(556), + [anon_sym_raw] = ACTIONS(556), + [anon_sym_sh] = ACTIONS(556), + [anon_sym_zsh] = ACTIONS(556), + [anon_sym_random] = ACTIONS(556), + [anon_sym_random_boolean] = ACTIONS(556), + [anon_sym_random_float] = ACTIONS(556), + [anon_sym_random_integer] = ACTIONS(556), + [anon_sym_columns] = ACTIONS(556), + [anon_sym_rows] = ACTIONS(556), + [anon_sym_reverse] = ACTIONS(556), }, [155] = { - [sym_block] = STATE(864), - [sym_statement] = STATE(61), - [sym_expression] = STATE(888), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(822), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(787), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(61), - [sym_identifier] = ACTIONS(1846), + [sym_statement] = STATE(31), + [sym_expression] = STATE(516), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(433), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [aux_sym_block_repeat1] = STATE(31), + [sym_identifier] = ACTIONS(867), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(1309), [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_RPAREN] = ACTIONS(293), [sym_integer] = ACTIONS(11), [sym_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(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_match] = ACTIONS(1850), + [anon_sym_COLON] = ACTIONS(293), + [anon_sym_PLUS] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(316), + [anon_sym_STAR] = ACTIONS(293), + [anon_sym_SLASH] = ACTIONS(293), + [anon_sym_PERCENT] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_AMP_AMP] = ACTIONS(293), + [anon_sym_PIPE_PIPE] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(316), + [anon_sym_LT] = ACTIONS(316), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_if] = ACTIONS(227), + [anon_sym_match] = ACTIONS(871), [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(1852), - [anon_sym_for] = ACTIONS(1854), - [anon_sym_asyncfor] = ACTIONS(1856), - [anon_sym_transform] = ACTIONS(1858), - [anon_sym_filter] = ACTIONS(1860), - [anon_sym_find] = ACTIONS(1862), - [anon_sym_remove] = ACTIONS(1864), - [anon_sym_reduce] = ACTIONS(1866), - [anon_sym_select] = ACTIONS(1868), + [anon_sym_while] = ACTIONS(873), + [anon_sym_for] = ACTIONS(875), + [anon_sym_asyncfor] = ACTIONS(877), + [anon_sym_transform] = ACTIONS(879), + [anon_sym_filter] = ACTIONS(881), + [anon_sym_find] = ACTIONS(883), + [anon_sym_remove] = ACTIONS(885), + [anon_sym_reduce] = ACTIONS(887), + [anon_sym_select] = ACTIONS(889), [anon_sym_insert] = ACTIONS(43), - [anon_sym_async] = ACTIONS(1870), + [anon_sym_async] = ACTIONS(891), [anon_sym_PIPE] = ACTIONS(109), [anon_sym_table] = ACTIONS(49), [anon_sym_assert] = ACTIONS(51), @@ -23572,258 +21734,251 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_reverse] = ACTIONS(51), }, [156] = { - [sym_block] = STATE(863), - [sym_statement] = STATE(61), - [sym_expression] = STATE(888), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(822), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(787), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(61), - [sym_identifier] = ACTIONS(1846), + [sym_statement] = STATE(30), + [sym_expression] = STATE(479), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(365), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1119), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(218), + [aux_sym_block_repeat1] = STATE(30), + [sym_identifier] = ACTIONS(1117), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(877), - [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(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_match] = ACTIONS(1850), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(1852), - [anon_sym_for] = ACTIONS(1854), - [anon_sym_asyncfor] = ACTIONS(1856), - [anon_sym_transform] = ACTIONS(1858), - [anon_sym_filter] = ACTIONS(1860), - [anon_sym_find] = ACTIONS(1862), - [anon_sym_remove] = ACTIONS(1864), - [anon_sym_reduce] = ACTIONS(1866), - [anon_sym_select] = ACTIONS(1868), - [anon_sym_insert] = ACTIONS(43), - [anon_sym_async] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(49), - [anon_sym_assert] = ACTIONS(51), - [anon_sym_assert_equal] = ACTIONS(51), - [anon_sym_download] = ACTIONS(51), - [anon_sym_help] = ACTIONS(51), - [anon_sym_length] = ACTIONS(51), - [anon_sym_output] = ACTIONS(51), - [anon_sym_output_error] = ACTIONS(51), - [anon_sym_type] = ACTIONS(51), - [anon_sym_append] = ACTIONS(51), - [anon_sym_metadata] = ACTIONS(51), - [anon_sym_move] = ACTIONS(51), - [anon_sym_read] = ACTIONS(51), - [anon_sym_workdir] = ACTIONS(51), - [anon_sym_write] = ACTIONS(51), - [anon_sym_from_json] = ACTIONS(51), - [anon_sym_to_json] = ACTIONS(51), - [anon_sym_to_string] = ACTIONS(51), - [anon_sym_to_float] = ACTIONS(51), - [anon_sym_bash] = ACTIONS(51), - [anon_sym_fish] = ACTIONS(51), - [anon_sym_raw] = ACTIONS(51), - [anon_sym_sh] = ACTIONS(51), - [anon_sym_zsh] = ACTIONS(51), - [anon_sym_random] = ACTIONS(51), - [anon_sym_random_boolean] = ACTIONS(51), - [anon_sym_random_float] = ACTIONS(51), - [anon_sym_random_integer] = ACTIONS(51), - [anon_sym_columns] = ACTIONS(51), - [anon_sym_rows] = ACTIONS(51), - [anon_sym_reverse] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_LPAREN] = ACTIONS(741), + [sym_integer] = ACTIONS(744), + [sym_float] = ACTIONS(747), + [sym_string] = ACTIONS(747), + [anon_sym_true] = ACTIONS(750), + [anon_sym_false] = ACTIONS(750), + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_COLON] = ACTIONS(293), + [anon_sym_DOT_DOT] = ACTIONS(293), + [anon_sym_PLUS] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(316), + [anon_sym_STAR] = ACTIONS(293), + [anon_sym_SLASH] = ACTIONS(293), + [anon_sym_PERCENT] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_AMP_AMP] = ACTIONS(293), + [anon_sym_PIPE_PIPE] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(316), + [anon_sym_LT] = ACTIONS(316), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_if] = ACTIONS(155), + [anon_sym_match] = ACTIONS(528), + [anon_sym_EQ_GT] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(532), + [anon_sym_for] = ACTIONS(534), + [anon_sym_asyncfor] = ACTIONS(536), + [anon_sym_transform] = ACTIONS(538), + [anon_sym_filter] = ACTIONS(540), + [anon_sym_find] = ACTIONS(542), + [anon_sym_remove] = ACTIONS(544), + [anon_sym_reduce] = ACTIONS(546), + [anon_sym_select] = ACTIONS(548), + [anon_sym_insert] = ACTIONS(550), + [anon_sym_async] = ACTIONS(552), + [anon_sym_PIPE] = ACTIONS(360), + [anon_sym_table] = ACTIONS(1159), + [anon_sym_assert] = ACTIONS(1162), + [anon_sym_assert_equal] = ACTIONS(1162), + [anon_sym_download] = ACTIONS(1162), + [anon_sym_help] = ACTIONS(1162), + [anon_sym_length] = ACTIONS(1162), + [anon_sym_output] = ACTIONS(1162), + [anon_sym_output_error] = ACTIONS(1162), + [anon_sym_type] = ACTIONS(1162), + [anon_sym_append] = ACTIONS(1162), + [anon_sym_metadata] = ACTIONS(1162), + [anon_sym_move] = ACTIONS(1162), + [anon_sym_read] = ACTIONS(1162), + [anon_sym_workdir] = ACTIONS(1162), + [anon_sym_write] = ACTIONS(1162), + [anon_sym_from_json] = ACTIONS(1162), + [anon_sym_to_json] = ACTIONS(1162), + [anon_sym_to_string] = ACTIONS(1162), + [anon_sym_to_float] = ACTIONS(1162), + [anon_sym_bash] = ACTIONS(1162), + [anon_sym_fish] = ACTIONS(1162), + [anon_sym_raw] = ACTIONS(1162), + [anon_sym_sh] = ACTIONS(1162), + [anon_sym_zsh] = ACTIONS(1162), + [anon_sym_random] = ACTIONS(1162), + [anon_sym_random_boolean] = ACTIONS(1162), + [anon_sym_random_float] = ACTIONS(1162), + [anon_sym_random_integer] = ACTIONS(1162), + [anon_sym_columns] = ACTIONS(1162), + [anon_sym_rows] = ACTIONS(1162), + [anon_sym_reverse] = ACTIONS(1162), }, [157] = { - [sym_block] = STATE(762), - [sym_statement] = STATE(51), - [sym_expression] = STATE(817), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(748), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(760), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1926), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(351), - [aux_sym_block_repeat1] = STATE(51), - [sym_identifier] = ACTIONS(1280), + [sym_statement] = STATE(30), + [sym_expression] = STATE(479), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(365), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1119), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(218), + [aux_sym_block_repeat1] = STATE(30), + [sym_identifier] = ACTIONS(1117), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_match] = ACTIONS(1286), - [anon_sym_EQ_GT] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_asyncfor] = ACTIONS(1294), - [anon_sym_transform] = ACTIONS(1296), - [anon_sym_filter] = ACTIONS(1298), - [anon_sym_find] = ACTIONS(1300), - [anon_sym_remove] = ACTIONS(1302), - [anon_sym_reduce] = ACTIONS(1304), - [anon_sym_select] = ACTIONS(1306), - [anon_sym_insert] = ACTIONS(1308), - [anon_sym_async] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1309), + [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(293), + [anon_sym_DOT_DOT] = ACTIONS(293), + [anon_sym_PLUS] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(316), + [anon_sym_STAR] = ACTIONS(293), + [anon_sym_SLASH] = ACTIONS(293), + [anon_sym_PERCENT] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_AMP_AMP] = ACTIONS(293), + [anon_sym_PIPE_PIPE] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(316), + [anon_sym_LT] = ACTIONS(316), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_if] = ACTIONS(155), + [anon_sym_match] = ACTIONS(528), + [anon_sym_EQ_GT] = ACTIONS(530), + [anon_sym_while] = ACTIONS(532), + [anon_sym_for] = ACTIONS(534), + [anon_sym_asyncfor] = ACTIONS(536), + [anon_sym_transform] = ACTIONS(538), + [anon_sym_filter] = ACTIONS(540), + [anon_sym_find] = ACTIONS(542), + [anon_sym_remove] = ACTIONS(544), + [anon_sym_reduce] = ACTIONS(546), + [anon_sym_select] = ACTIONS(548), + [anon_sym_insert] = ACTIONS(550), + [anon_sym_async] = ACTIONS(552), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1312), - [anon_sym_assert] = ACTIONS(1314), - [anon_sym_assert_equal] = ACTIONS(1314), - [anon_sym_download] = ACTIONS(1314), - [anon_sym_help] = ACTIONS(1314), - [anon_sym_length] = ACTIONS(1314), - [anon_sym_output] = ACTIONS(1314), - [anon_sym_output_error] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_append] = ACTIONS(1314), - [anon_sym_metadata] = ACTIONS(1314), - [anon_sym_move] = ACTIONS(1314), - [anon_sym_read] = ACTIONS(1314), - [anon_sym_workdir] = ACTIONS(1314), - [anon_sym_write] = ACTIONS(1314), - [anon_sym_from_json] = ACTIONS(1314), - [anon_sym_to_json] = ACTIONS(1314), - [anon_sym_to_string] = ACTIONS(1314), - [anon_sym_to_float] = ACTIONS(1314), - [anon_sym_bash] = ACTIONS(1314), - [anon_sym_fish] = ACTIONS(1314), - [anon_sym_raw] = ACTIONS(1314), - [anon_sym_sh] = ACTIONS(1314), - [anon_sym_zsh] = ACTIONS(1314), - [anon_sym_random] = ACTIONS(1314), - [anon_sym_random_boolean] = ACTIONS(1314), - [anon_sym_random_float] = ACTIONS(1314), - [anon_sym_random_integer] = ACTIONS(1314), - [anon_sym_columns] = ACTIONS(1314), - [anon_sym_rows] = ACTIONS(1314), - [anon_sym_reverse] = ACTIONS(1314), + [anon_sym_table] = ACTIONS(554), + [anon_sym_assert] = ACTIONS(556), + [anon_sym_assert_equal] = ACTIONS(556), + [anon_sym_download] = ACTIONS(556), + [anon_sym_help] = ACTIONS(556), + [anon_sym_length] = ACTIONS(556), + [anon_sym_output] = ACTIONS(556), + [anon_sym_output_error] = ACTIONS(556), + [anon_sym_type] = ACTIONS(556), + [anon_sym_append] = ACTIONS(556), + [anon_sym_metadata] = ACTIONS(556), + [anon_sym_move] = ACTIONS(556), + [anon_sym_read] = ACTIONS(556), + [anon_sym_workdir] = ACTIONS(556), + [anon_sym_write] = ACTIONS(556), + [anon_sym_from_json] = ACTIONS(556), + [anon_sym_to_json] = ACTIONS(556), + [anon_sym_to_string] = ACTIONS(556), + [anon_sym_to_float] = ACTIONS(556), + [anon_sym_bash] = ACTIONS(556), + [anon_sym_fish] = ACTIONS(556), + [anon_sym_raw] = ACTIONS(556), + [anon_sym_sh] = ACTIONS(556), + [anon_sym_zsh] = ACTIONS(556), + [anon_sym_random] = ACTIONS(556), + [anon_sym_random_boolean] = ACTIONS(556), + [anon_sym_random_float] = ACTIONS(556), + [anon_sym_random_integer] = ACTIONS(556), + [anon_sym_columns] = ACTIONS(556), + [anon_sym_rows] = ACTIONS(556), + [anon_sym_reverse] = ACTIONS(556), }, [158] = { - [sym_block] = STATE(1656), - [sym_statement] = STATE(371), - [sym_expression] = STATE(934), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(842), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(983), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [aux_sym_block_repeat1] = STATE(371), - [sym_identifier] = ACTIONS(2162), + [sym_statement] = STATE(31), + [sym_expression] = STATE(516), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(433), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [aux_sym_block_repeat1] = STATE(31), + [sym_identifier] = ACTIONS(1261), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2164), + [anon_sym_LBRACE] = ACTIONS(1309), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -23831,106 +21986,103 @@ 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(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(1570), - [anon_sym_match] = ACTIONS(2166), - [anon_sym_EQ_GT] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(2168), - [anon_sym_for] = ACTIONS(2170), - [anon_sym_asyncfor] = ACTIONS(2172), - [anon_sym_transform] = ACTIONS(2174), - [anon_sym_filter] = ACTIONS(2176), - [anon_sym_find] = ACTIONS(2178), - [anon_sym_remove] = ACTIONS(2180), - [anon_sym_reduce] = ACTIONS(2182), - [anon_sym_select] = ACTIONS(2184), - [anon_sym_insert] = ACTIONS(1224), - [anon_sym_async] = ACTIONS(2186), + [anon_sym_COLON] = ACTIONS(293), + [anon_sym_PLUS] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(316), + [anon_sym_STAR] = ACTIONS(293), + [anon_sym_SLASH] = ACTIONS(293), + [anon_sym_PERCENT] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_AMP_AMP] = ACTIONS(293), + [anon_sym_PIPE_PIPE] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(316), + [anon_sym_LT] = ACTIONS(316), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_if] = ACTIONS(227), + [anon_sym_match] = ACTIONS(871), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(873), + [anon_sym_for] = ACTIONS(875), + [anon_sym_asyncfor] = ACTIONS(877), + [anon_sym_transform] = ACTIONS(879), + [anon_sym_filter] = ACTIONS(881), + [anon_sym_find] = ACTIONS(883), + [anon_sym_remove] = ACTIONS(885), + [anon_sym_reduce] = ACTIONS(887), + [anon_sym_select] = ACTIONS(889), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(891), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1228), - [anon_sym_assert] = ACTIONS(1230), - [anon_sym_assert_equal] = ACTIONS(1230), - [anon_sym_download] = ACTIONS(1230), - [anon_sym_help] = ACTIONS(1230), - [anon_sym_length] = ACTIONS(1230), - [anon_sym_output] = ACTIONS(1230), - [anon_sym_output_error] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_append] = ACTIONS(1230), - [anon_sym_metadata] = ACTIONS(1230), - [anon_sym_move] = ACTIONS(1230), - [anon_sym_read] = ACTIONS(1230), - [anon_sym_workdir] = ACTIONS(1230), - [anon_sym_write] = ACTIONS(1230), - [anon_sym_from_json] = ACTIONS(1230), - [anon_sym_to_json] = ACTIONS(1230), - [anon_sym_to_string] = ACTIONS(1230), - [anon_sym_to_float] = ACTIONS(1230), - [anon_sym_bash] = ACTIONS(1230), - [anon_sym_fish] = ACTIONS(1230), - [anon_sym_raw] = ACTIONS(1230), - [anon_sym_sh] = ACTIONS(1230), - [anon_sym_zsh] = ACTIONS(1230), - [anon_sym_random] = ACTIONS(1230), - [anon_sym_random_boolean] = ACTIONS(1230), - [anon_sym_random_float] = ACTIONS(1230), - [anon_sym_random_integer] = ACTIONS(1230), - [anon_sym_columns] = ACTIONS(1230), - [anon_sym_rows] = ACTIONS(1230), - [anon_sym_reverse] = ACTIONS(1230), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [159] = { - [sym_block] = STATE(1658), - [sym_statement] = STATE(371), - [sym_expression] = STATE(934), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(842), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(983), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [aux_sym_block_repeat1] = STATE(371), - [sym_identifier] = ACTIONS(2162), + [sym_statement] = STATE(31), + [sym_expression] = STATE(516), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(433), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [aux_sym_block_repeat1] = STATE(31), + [sym_identifier] = ACTIONS(867), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2164), + [anon_sym_LBRACE] = ACTIONS(1309), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -23938,8345 +22090,7475 @@ 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(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(1570), - [anon_sym_match] = ACTIONS(2166), - [anon_sym_EQ_GT] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(2168), - [anon_sym_for] = ACTIONS(2170), - [anon_sym_asyncfor] = ACTIONS(2172), - [anon_sym_transform] = ACTIONS(2174), - [anon_sym_filter] = ACTIONS(2176), - [anon_sym_find] = ACTIONS(2178), - [anon_sym_remove] = ACTIONS(2180), - [anon_sym_reduce] = ACTIONS(2182), - [anon_sym_select] = ACTIONS(2184), - [anon_sym_insert] = ACTIONS(1224), - [anon_sym_async] = ACTIONS(2186), + [anon_sym_COLON] = ACTIONS(293), + [anon_sym_PLUS] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(316), + [anon_sym_STAR] = ACTIONS(293), + [anon_sym_SLASH] = ACTIONS(293), + [anon_sym_PERCENT] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_AMP_AMP] = ACTIONS(293), + [anon_sym_PIPE_PIPE] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(316), + [anon_sym_LT] = ACTIONS(316), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_if] = ACTIONS(227), + [anon_sym_match] = ACTIONS(871), + [anon_sym_EQ_GT] = ACTIONS(1267), + [anon_sym_while] = ACTIONS(873), + [anon_sym_for] = ACTIONS(875), + [anon_sym_asyncfor] = ACTIONS(877), + [anon_sym_transform] = ACTIONS(879), + [anon_sym_filter] = ACTIONS(881), + [anon_sym_find] = ACTIONS(883), + [anon_sym_remove] = ACTIONS(885), + [anon_sym_reduce] = ACTIONS(887), + [anon_sym_select] = ACTIONS(889), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(891), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1228), - [anon_sym_assert] = ACTIONS(1230), - [anon_sym_assert_equal] = ACTIONS(1230), - [anon_sym_download] = ACTIONS(1230), - [anon_sym_help] = ACTIONS(1230), - [anon_sym_length] = ACTIONS(1230), - [anon_sym_output] = ACTIONS(1230), - [anon_sym_output_error] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_append] = ACTIONS(1230), - [anon_sym_metadata] = ACTIONS(1230), - [anon_sym_move] = ACTIONS(1230), - [anon_sym_read] = ACTIONS(1230), - [anon_sym_workdir] = ACTIONS(1230), - [anon_sym_write] = ACTIONS(1230), - [anon_sym_from_json] = ACTIONS(1230), - [anon_sym_to_json] = ACTIONS(1230), - [anon_sym_to_string] = ACTIONS(1230), - [anon_sym_to_float] = ACTIONS(1230), - [anon_sym_bash] = ACTIONS(1230), - [anon_sym_fish] = ACTIONS(1230), - [anon_sym_raw] = ACTIONS(1230), - [anon_sym_sh] = ACTIONS(1230), - [anon_sym_zsh] = ACTIONS(1230), - [anon_sym_random] = ACTIONS(1230), - [anon_sym_random_boolean] = ACTIONS(1230), - [anon_sym_random_float] = ACTIONS(1230), - [anon_sym_random_integer] = ACTIONS(1230), - [anon_sym_columns] = ACTIONS(1230), - [anon_sym_rows] = ACTIONS(1230), - [anon_sym_reverse] = ACTIONS(1230), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [160] = { - [sym_block] = STATE(1029), - [sym_statement] = STATE(358), - [sym_expression] = STATE(859), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(754), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(1023), - [sym_if_else] = STATE(1023), - [sym_if] = STATE(985), - [sym_match] = STATE(1023), - [sym_while] = STATE(1023), - [sym_for] = STATE(1023), - [sym_transform] = STATE(1023), - [sym_filter] = STATE(1023), - [sym_find] = STATE(1023), - [sym_remove] = STATE(1023), - [sym_reduce] = STATE(1023), - [sym_select] = STATE(1023), - [sym_insert] = STATE(1023), - [sym_async] = STATE(1023), - [sym_identifier_list] = STATE(1841), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(315), - [aux_sym_block_repeat1] = STATE(358), - [sym_identifier] = ACTIONS(1566), + [sym_statement] = STATE(31), + [sym_expression] = STATE(516), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(433), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [aux_sym_block_repeat1] = STATE(31), + [sym_identifier] = ACTIONS(1261), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(1570), - [anon_sym_match] = ACTIONS(1572), - [anon_sym_EQ_GT] = ACTIONS(631), - [anon_sym_while] = ACTIONS(1574), - [anon_sym_for] = ACTIONS(1576), - [anon_sym_asyncfor] = ACTIONS(1578), - [anon_sym_transform] = ACTIONS(1580), - [anon_sym_filter] = ACTIONS(1582), - [anon_sym_find] = ACTIONS(1584), - [anon_sym_remove] = ACTIONS(1586), - [anon_sym_reduce] = ACTIONS(1588), - [anon_sym_select] = ACTIONS(1590), - [anon_sym_insert] = ACTIONS(651), - [anon_sym_async] = ACTIONS(1592), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(655), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_assert_equal] = ACTIONS(657), - [anon_sym_download] = ACTIONS(657), - [anon_sym_help] = ACTIONS(657), - [anon_sym_length] = ACTIONS(657), - [anon_sym_output] = ACTIONS(657), - [anon_sym_output_error] = ACTIONS(657), - [anon_sym_type] = ACTIONS(657), - [anon_sym_append] = ACTIONS(657), - [anon_sym_metadata] = ACTIONS(657), - [anon_sym_move] = ACTIONS(657), - [anon_sym_read] = ACTIONS(657), - [anon_sym_workdir] = ACTIONS(657), - [anon_sym_write] = ACTIONS(657), - [anon_sym_from_json] = ACTIONS(657), - [anon_sym_to_json] = ACTIONS(657), - [anon_sym_to_string] = ACTIONS(657), - [anon_sym_to_float] = ACTIONS(657), - [anon_sym_bash] = ACTIONS(657), - [anon_sym_fish] = ACTIONS(657), - [anon_sym_raw] = ACTIONS(657), - [anon_sym_sh] = ACTIONS(657), - [anon_sym_zsh] = ACTIONS(657), - [anon_sym_random] = ACTIONS(657), - [anon_sym_random_boolean] = ACTIONS(657), - [anon_sym_random_float] = ACTIONS(657), - [anon_sym_random_integer] = ACTIONS(657), - [anon_sym_columns] = ACTIONS(657), - [anon_sym_rows] = ACTIONS(657), - [anon_sym_reverse] = ACTIONS(657), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_LPAREN] = ACTIONS(741), + [sym_integer] = ACTIONS(744), + [sym_float] = ACTIONS(747), + [sym_string] = ACTIONS(747), + [anon_sym_true] = ACTIONS(750), + [anon_sym_false] = ACTIONS(750), + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_COLON] = ACTIONS(293), + [anon_sym_PLUS] = ACTIONS(293), + [anon_sym_DASH] = ACTIONS(316), + [anon_sym_STAR] = ACTIONS(293), + [anon_sym_SLASH] = ACTIONS(293), + [anon_sym_PERCENT] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(293), + [anon_sym_AMP_AMP] = ACTIONS(293), + [anon_sym_PIPE_PIPE] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(316), + [anon_sym_LT] = ACTIONS(316), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_if] = ACTIONS(227), + [anon_sym_match] = ACTIONS(871), + [anon_sym_EQ_GT] = ACTIONS(1267), + [anon_sym_while] = ACTIONS(873), + [anon_sym_for] = ACTIONS(875), + [anon_sym_asyncfor] = ACTIONS(877), + [anon_sym_transform] = ACTIONS(879), + [anon_sym_filter] = ACTIONS(881), + [anon_sym_find] = ACTIONS(883), + [anon_sym_remove] = ACTIONS(885), + [anon_sym_reduce] = ACTIONS(887), + [anon_sym_select] = ACTIONS(889), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(891), + [anon_sym_PIPE] = ACTIONS(360), + [anon_sym_table] = ACTIONS(1303), + [anon_sym_assert] = ACTIONS(1306), + [anon_sym_assert_equal] = ACTIONS(1306), + [anon_sym_download] = ACTIONS(1306), + [anon_sym_help] = ACTIONS(1306), + [anon_sym_length] = ACTIONS(1306), + [anon_sym_output] = ACTIONS(1306), + [anon_sym_output_error] = ACTIONS(1306), + [anon_sym_type] = ACTIONS(1306), + [anon_sym_append] = ACTIONS(1306), + [anon_sym_metadata] = ACTIONS(1306), + [anon_sym_move] = ACTIONS(1306), + [anon_sym_read] = ACTIONS(1306), + [anon_sym_workdir] = ACTIONS(1306), + [anon_sym_write] = ACTIONS(1306), + [anon_sym_from_json] = ACTIONS(1306), + [anon_sym_to_json] = ACTIONS(1306), + [anon_sym_to_string] = ACTIONS(1306), + [anon_sym_to_float] = ACTIONS(1306), + [anon_sym_bash] = ACTIONS(1306), + [anon_sym_fish] = ACTIONS(1306), + [anon_sym_raw] = ACTIONS(1306), + [anon_sym_sh] = ACTIONS(1306), + [anon_sym_zsh] = ACTIONS(1306), + [anon_sym_random] = ACTIONS(1306), + [anon_sym_random_boolean] = ACTIONS(1306), + [anon_sym_random_float] = ACTIONS(1306), + [anon_sym_random_integer] = ACTIONS(1306), + [anon_sym_columns] = ACTIONS(1306), + [anon_sym_rows] = ACTIONS(1306), + [anon_sym_reverse] = ACTIONS(1306), }, [161] = { - [sym_block] = STATE(1648), - [sym_statement] = STATE(371), - [sym_expression] = STATE(934), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(842), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(983), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [aux_sym_block_repeat1] = STATE(371), - [sym_identifier] = ACTIONS(2162), + [sym_expression] = STATE(354), + [sym__expression_kind] = STATE(415), + [aux_sym__expression_list] = STATE(169), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_assignment_operator] = STATE(339), + [sym_identifier_list] = STATE(1225), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(170), + [ts_builtin_sym_end] = ACTIONS(1313), + [sym_identifier] = ACTIONS(1315), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2164), - [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(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(1570), - [anon_sym_match] = ACTIONS(2166), - [anon_sym_EQ_GT] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(2168), - [anon_sym_for] = ACTIONS(2170), - [anon_sym_asyncfor] = ACTIONS(2172), - [anon_sym_transform] = ACTIONS(2174), - [anon_sym_filter] = ACTIONS(2176), - [anon_sym_find] = ACTIONS(2178), - [anon_sym_remove] = ACTIONS(2180), - [anon_sym_reduce] = ACTIONS(2182), - [anon_sym_select] = ACTIONS(2184), - [anon_sym_insert] = ACTIONS(1224), - [anon_sym_async] = ACTIONS(2186), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1228), - [anon_sym_assert] = ACTIONS(1230), - [anon_sym_assert_equal] = ACTIONS(1230), - [anon_sym_download] = ACTIONS(1230), - [anon_sym_help] = ACTIONS(1230), - [anon_sym_length] = ACTIONS(1230), - [anon_sym_output] = ACTIONS(1230), - [anon_sym_output_error] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_append] = ACTIONS(1230), - [anon_sym_metadata] = ACTIONS(1230), - [anon_sym_move] = ACTIONS(1230), - [anon_sym_read] = ACTIONS(1230), - [anon_sym_workdir] = ACTIONS(1230), - [anon_sym_write] = ACTIONS(1230), - [anon_sym_from_json] = ACTIONS(1230), - [anon_sym_to_json] = ACTIONS(1230), - [anon_sym_to_string] = ACTIONS(1230), - [anon_sym_to_float] = ACTIONS(1230), - [anon_sym_bash] = ACTIONS(1230), - [anon_sym_fish] = ACTIONS(1230), - [anon_sym_raw] = ACTIONS(1230), - [anon_sym_sh] = ACTIONS(1230), - [anon_sym_zsh] = ACTIONS(1230), - [anon_sym_random] = ACTIONS(1230), - [anon_sym_random_boolean] = ACTIONS(1230), - [anon_sym_random_float] = ACTIONS(1230), - [anon_sym_random_integer] = ACTIONS(1230), - [anon_sym_columns] = ACTIONS(1230), - [anon_sym_rows] = ACTIONS(1230), - [anon_sym_reverse] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1313), + [anon_sym_RBRACE] = ACTIONS(1313), + [anon_sym_SEMI] = ACTIONS(1313), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_RPAREN] = ACTIONS(1313), + [anon_sym_COMMA] = ACTIONS(1313), + [sym_integer] = ACTIONS(1315), + [sym_float] = ACTIONS(1313), + [sym_string] = ACTIONS(1313), + [anon_sym_true] = ACTIONS(1315), + [anon_sym_false] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1313), + [anon_sym_RBRACK] = ACTIONS(1313), + [anon_sym_EQ] = ACTIONS(1317), + [anon_sym_COLON] = ACTIONS(1313), + [anon_sym_DOT_DOT] = ACTIONS(1313), + [anon_sym_PLUS] = ACTIONS(1315), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_PERCENT] = ACTIONS(1313), + [anon_sym_EQ_EQ] = ACTIONS(1313), + [anon_sym_BANG_EQ] = ACTIONS(1313), + [anon_sym_AMP_AMP] = ACTIONS(1313), + [anon_sym_PIPE_PIPE] = ACTIONS(1313), + [anon_sym_GT] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(1315), + [anon_sym_GT_EQ] = ACTIONS(1313), + [anon_sym_LT_EQ] = ACTIONS(1313), + [anon_sym_PLUS_EQ] = ACTIONS(1319), + [anon_sym_DASH_EQ] = ACTIONS(1319), + [anon_sym_if] = ACTIONS(1315), + [anon_sym_elseif] = ACTIONS(1313), + [anon_sym_else] = ACTIONS(1315), + [anon_sym_match] = ACTIONS(1315), + [anon_sym_EQ_GT] = ACTIONS(1313), + [anon_sym_while] = ACTIONS(1315), + [anon_sym_for] = ACTIONS(1315), + [anon_sym_asyncfor] = ACTIONS(1313), + [anon_sym_transform] = ACTIONS(1315), + [anon_sym_filter] = ACTIONS(1315), + [anon_sym_find] = ACTIONS(1315), + [anon_sym_remove] = ACTIONS(1315), + [anon_sym_reduce] = ACTIONS(1315), + [anon_sym_select] = ACTIONS(1315), + [anon_sym_insert] = ACTIONS(1315), + [anon_sym_async] = ACTIONS(1315), + [anon_sym_PIPE] = ACTIONS(1315), + [anon_sym_table] = ACTIONS(1315), + [anon_sym_assert] = ACTIONS(1315), + [anon_sym_assert_equal] = ACTIONS(1315), + [anon_sym_download] = ACTIONS(1315), + [anon_sym_help] = ACTIONS(1315), + [anon_sym_length] = ACTIONS(1315), + [anon_sym_output] = ACTIONS(1315), + [anon_sym_output_error] = ACTIONS(1315), + [anon_sym_type] = ACTIONS(1315), + [anon_sym_append] = ACTIONS(1315), + [anon_sym_metadata] = ACTIONS(1315), + [anon_sym_move] = ACTIONS(1315), + [anon_sym_read] = ACTIONS(1315), + [anon_sym_workdir] = ACTIONS(1315), + [anon_sym_write] = ACTIONS(1315), + [anon_sym_from_json] = ACTIONS(1315), + [anon_sym_to_json] = ACTIONS(1315), + [anon_sym_to_string] = ACTIONS(1315), + [anon_sym_to_float] = ACTIONS(1315), + [anon_sym_bash] = ACTIONS(1315), + [anon_sym_fish] = ACTIONS(1315), + [anon_sym_raw] = ACTIONS(1315), + [anon_sym_sh] = ACTIONS(1315), + [anon_sym_zsh] = ACTIONS(1315), + [anon_sym_random] = ACTIONS(1315), + [anon_sym_random_boolean] = ACTIONS(1315), + [anon_sym_random_float] = ACTIONS(1315), + [anon_sym_random_integer] = ACTIONS(1315), + [anon_sym_columns] = ACTIONS(1315), + [anon_sym_rows] = ACTIONS(1315), + [anon_sym_reverse] = ACTIONS(1315), }, [162] = { - [sym_block] = STATE(1015), - [sym_statement] = STATE(358), - [sym_expression] = STATE(859), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(754), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(1023), - [sym_if_else] = STATE(1023), - [sym_if] = STATE(985), - [sym_match] = STATE(1023), - [sym_while] = STATE(1023), - [sym_for] = STATE(1023), - [sym_transform] = STATE(1023), - [sym_filter] = STATE(1023), - [sym_find] = STATE(1023), - [sym_remove] = STATE(1023), - [sym_reduce] = STATE(1023), - [sym_select] = STATE(1023), - [sym_insert] = STATE(1023), - [sym_async] = STATE(1023), - [sym_identifier_list] = STATE(1841), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(315), - [aux_sym_block_repeat1] = STATE(358), - [sym_identifier] = ACTIONS(1566), + [sym_expression] = STATE(377), + [sym__expression_kind] = STATE(415), + [aux_sym__expression_list] = STATE(180), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_assignment_operator] = STATE(343), + [sym_identifier_list] = STATE(1100), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(181), + [ts_builtin_sym_end] = ACTIONS(1313), + [sym_identifier] = ACTIONS(1315), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(1570), - [anon_sym_match] = ACTIONS(1572), - [anon_sym_EQ_GT] = ACTIONS(631), - [anon_sym_while] = ACTIONS(1574), - [anon_sym_for] = ACTIONS(1576), - [anon_sym_asyncfor] = ACTIONS(1578), - [anon_sym_transform] = ACTIONS(1580), - [anon_sym_filter] = ACTIONS(1582), - [anon_sym_find] = ACTIONS(1584), - [anon_sym_remove] = ACTIONS(1586), - [anon_sym_reduce] = ACTIONS(1588), - [anon_sym_select] = ACTIONS(1590), - [anon_sym_insert] = ACTIONS(651), - [anon_sym_async] = ACTIONS(1592), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(655), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_assert_equal] = ACTIONS(657), - [anon_sym_download] = ACTIONS(657), - [anon_sym_help] = ACTIONS(657), - [anon_sym_length] = ACTIONS(657), - [anon_sym_output] = ACTIONS(657), - [anon_sym_output_error] = ACTIONS(657), - [anon_sym_type] = ACTIONS(657), - [anon_sym_append] = ACTIONS(657), - [anon_sym_metadata] = ACTIONS(657), - [anon_sym_move] = ACTIONS(657), - [anon_sym_read] = ACTIONS(657), - [anon_sym_workdir] = ACTIONS(657), - [anon_sym_write] = ACTIONS(657), - [anon_sym_from_json] = ACTIONS(657), - [anon_sym_to_json] = ACTIONS(657), - [anon_sym_to_string] = ACTIONS(657), - [anon_sym_to_float] = ACTIONS(657), - [anon_sym_bash] = ACTIONS(657), - [anon_sym_fish] = ACTIONS(657), - [anon_sym_raw] = ACTIONS(657), - [anon_sym_sh] = ACTIONS(657), - [anon_sym_zsh] = ACTIONS(657), - [anon_sym_random] = ACTIONS(657), - [anon_sym_random_boolean] = ACTIONS(657), - [anon_sym_random_float] = ACTIONS(657), - [anon_sym_random_integer] = ACTIONS(657), - [anon_sym_columns] = ACTIONS(657), - [anon_sym_rows] = ACTIONS(657), - [anon_sym_reverse] = ACTIONS(657), + [anon_sym_LBRACE] = ACTIONS(1313), + [anon_sym_RBRACE] = ACTIONS(1313), + [anon_sym_SEMI] = ACTIONS(1313), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_RPAREN] = ACTIONS(1313), + [anon_sym_COMMA] = ACTIONS(1313), + [sym_integer] = ACTIONS(1315), + [sym_float] = ACTIONS(1313), + [sym_string] = ACTIONS(1313), + [anon_sym_true] = ACTIONS(1315), + [anon_sym_false] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1313), + [anon_sym_RBRACK] = ACTIONS(1313), + [anon_sym_EQ] = ACTIONS(1317), + [anon_sym_COLON] = ACTIONS(1313), + [anon_sym_PLUS] = ACTIONS(1315), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_PERCENT] = ACTIONS(1313), + [anon_sym_EQ_EQ] = ACTIONS(1313), + [anon_sym_BANG_EQ] = ACTIONS(1313), + [anon_sym_AMP_AMP] = ACTIONS(1313), + [anon_sym_PIPE_PIPE] = ACTIONS(1313), + [anon_sym_GT] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(1315), + [anon_sym_GT_EQ] = ACTIONS(1313), + [anon_sym_LT_EQ] = ACTIONS(1313), + [anon_sym_PLUS_EQ] = ACTIONS(1319), + [anon_sym_DASH_EQ] = ACTIONS(1319), + [anon_sym_if] = ACTIONS(1315), + [anon_sym_elseif] = ACTIONS(1313), + [anon_sym_else] = ACTIONS(1315), + [anon_sym_match] = ACTIONS(1315), + [anon_sym_EQ_GT] = ACTIONS(1313), + [anon_sym_while] = ACTIONS(1315), + [anon_sym_for] = ACTIONS(1315), + [anon_sym_asyncfor] = ACTIONS(1313), + [anon_sym_transform] = ACTIONS(1315), + [anon_sym_filter] = ACTIONS(1315), + [anon_sym_find] = ACTIONS(1315), + [anon_sym_remove] = ACTIONS(1315), + [anon_sym_reduce] = ACTIONS(1315), + [anon_sym_select] = ACTIONS(1315), + [anon_sym_insert] = ACTIONS(1315), + [anon_sym_async] = ACTIONS(1315), + [anon_sym_PIPE] = ACTIONS(1315), + [anon_sym_table] = ACTIONS(1315), + [anon_sym_assert] = ACTIONS(1315), + [anon_sym_assert_equal] = ACTIONS(1315), + [anon_sym_download] = ACTIONS(1315), + [anon_sym_help] = ACTIONS(1315), + [anon_sym_length] = ACTIONS(1315), + [anon_sym_output] = ACTIONS(1315), + [anon_sym_output_error] = ACTIONS(1315), + [anon_sym_type] = ACTIONS(1315), + [anon_sym_append] = ACTIONS(1315), + [anon_sym_metadata] = ACTIONS(1315), + [anon_sym_move] = ACTIONS(1315), + [anon_sym_read] = ACTIONS(1315), + [anon_sym_workdir] = ACTIONS(1315), + [anon_sym_write] = ACTIONS(1315), + [anon_sym_from_json] = ACTIONS(1315), + [anon_sym_to_json] = ACTIONS(1315), + [anon_sym_to_string] = ACTIONS(1315), + [anon_sym_to_float] = ACTIONS(1315), + [anon_sym_bash] = ACTIONS(1315), + [anon_sym_fish] = ACTIONS(1315), + [anon_sym_raw] = ACTIONS(1315), + [anon_sym_sh] = ACTIONS(1315), + [anon_sym_zsh] = ACTIONS(1315), + [anon_sym_random] = ACTIONS(1315), + [anon_sym_random_boolean] = ACTIONS(1315), + [anon_sym_random_float] = ACTIONS(1315), + [anon_sym_random_integer] = ACTIONS(1315), + [anon_sym_columns] = ACTIONS(1315), + [anon_sym_rows] = ACTIONS(1315), + [anon_sym_reverse] = ACTIONS(1315), }, [163] = { - [sym_block] = STATE(767), - [sym_statement] = STATE(22), - [sym_expression] = STATE(685), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(576), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(647), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1984), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(302), - [aux_sym_block_repeat1] = STATE(22), - [sym_identifier] = ACTIONS(229), + [sym_expression] = STATE(396), + [sym__expression_kind] = STATE(468), + [aux_sym__expression_list] = STATE(196), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment_operator] = STATE(333), + [sym_identifier_list] = STATE(1104), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [ts_builtin_sym_end] = ACTIONS(1313), + [sym_identifier] = ACTIONS(1315), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(245), - [anon_sym_match] = ACTIONS(247), - [anon_sym_EQ_GT] = ACTIONS(249), - [anon_sym_while] = ACTIONS(251), - [anon_sym_for] = ACTIONS(253), - [anon_sym_asyncfor] = ACTIONS(255), - [anon_sym_transform] = ACTIONS(257), - [anon_sym_filter] = ACTIONS(259), - [anon_sym_find] = ACTIONS(261), - [anon_sym_remove] = ACTIONS(263), - [anon_sym_reduce] = ACTIONS(265), - [anon_sym_select] = ACTIONS(267), - [anon_sym_insert] = ACTIONS(269), - [anon_sym_async] = ACTIONS(271), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(275), - [anon_sym_assert_equal] = ACTIONS(275), - [anon_sym_download] = ACTIONS(275), - [anon_sym_help] = ACTIONS(275), - [anon_sym_length] = ACTIONS(275), - [anon_sym_output] = ACTIONS(275), - [anon_sym_output_error] = ACTIONS(275), - [anon_sym_type] = ACTIONS(275), - [anon_sym_append] = ACTIONS(275), - [anon_sym_metadata] = ACTIONS(275), - [anon_sym_move] = ACTIONS(275), - [anon_sym_read] = ACTIONS(275), - [anon_sym_workdir] = ACTIONS(275), - [anon_sym_write] = ACTIONS(275), - [anon_sym_from_json] = ACTIONS(275), - [anon_sym_to_json] = ACTIONS(275), - [anon_sym_to_string] = ACTIONS(275), - [anon_sym_to_float] = ACTIONS(275), - [anon_sym_bash] = ACTIONS(275), - [anon_sym_fish] = ACTIONS(275), - [anon_sym_raw] = ACTIONS(275), - [anon_sym_sh] = ACTIONS(275), - [anon_sym_zsh] = ACTIONS(275), - [anon_sym_random] = ACTIONS(275), - [anon_sym_random_boolean] = ACTIONS(275), - [anon_sym_random_float] = ACTIONS(275), - [anon_sym_random_integer] = ACTIONS(275), - [anon_sym_columns] = ACTIONS(275), - [anon_sym_rows] = ACTIONS(275), - [anon_sym_reverse] = ACTIONS(275), + [anon_sym_LBRACE] = ACTIONS(1313), + [anon_sym_RBRACE] = ACTIONS(1313), + [anon_sym_SEMI] = ACTIONS(1313), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_RPAREN] = ACTIONS(1313), + [anon_sym_COMMA] = ACTIONS(1313), + [sym_integer] = ACTIONS(1315), + [sym_float] = ACTIONS(1313), + [sym_string] = ACTIONS(1313), + [anon_sym_true] = ACTIONS(1315), + [anon_sym_false] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1313), + [anon_sym_RBRACK] = ACTIONS(1313), + [anon_sym_EQ] = ACTIONS(1317), + [anon_sym_COLON] = ACTIONS(1313), + [anon_sym_DOT_DOT] = ACTIONS(1313), + [anon_sym_PLUS] = ACTIONS(1315), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_PERCENT] = ACTIONS(1313), + [anon_sym_EQ_EQ] = ACTIONS(1313), + [anon_sym_BANG_EQ] = ACTIONS(1313), + [anon_sym_AMP_AMP] = ACTIONS(1313), + [anon_sym_PIPE_PIPE] = ACTIONS(1313), + [anon_sym_GT] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(1315), + [anon_sym_GT_EQ] = ACTIONS(1313), + [anon_sym_LT_EQ] = ACTIONS(1313), + [anon_sym_PLUS_EQ] = ACTIONS(1319), + [anon_sym_DASH_EQ] = ACTIONS(1319), + [anon_sym_if] = ACTIONS(1315), + [anon_sym_match] = ACTIONS(1315), + [anon_sym_EQ_GT] = ACTIONS(1313), + [anon_sym_while] = ACTIONS(1315), + [anon_sym_for] = ACTIONS(1315), + [anon_sym_asyncfor] = ACTIONS(1313), + [anon_sym_transform] = ACTIONS(1315), + [anon_sym_filter] = ACTIONS(1315), + [anon_sym_find] = ACTIONS(1315), + [anon_sym_remove] = ACTIONS(1315), + [anon_sym_reduce] = ACTIONS(1315), + [anon_sym_select] = ACTIONS(1315), + [anon_sym_insert] = ACTIONS(1315), + [anon_sym_async] = ACTIONS(1315), + [anon_sym_PIPE] = ACTIONS(1315), + [anon_sym_table] = ACTIONS(1315), + [anon_sym_assert] = ACTIONS(1315), + [anon_sym_assert_equal] = ACTIONS(1315), + [anon_sym_download] = ACTIONS(1315), + [anon_sym_help] = ACTIONS(1315), + [anon_sym_length] = ACTIONS(1315), + [anon_sym_output] = ACTIONS(1315), + [anon_sym_output_error] = ACTIONS(1315), + [anon_sym_type] = ACTIONS(1315), + [anon_sym_append] = ACTIONS(1315), + [anon_sym_metadata] = ACTIONS(1315), + [anon_sym_move] = ACTIONS(1315), + [anon_sym_read] = ACTIONS(1315), + [anon_sym_workdir] = ACTIONS(1315), + [anon_sym_write] = ACTIONS(1315), + [anon_sym_from_json] = ACTIONS(1315), + [anon_sym_to_json] = ACTIONS(1315), + [anon_sym_to_string] = ACTIONS(1315), + [anon_sym_to_float] = ACTIONS(1315), + [anon_sym_bash] = ACTIONS(1315), + [anon_sym_fish] = ACTIONS(1315), + [anon_sym_raw] = ACTIONS(1315), + [anon_sym_sh] = ACTIONS(1315), + [anon_sym_zsh] = ACTIONS(1315), + [anon_sym_random] = ACTIONS(1315), + [anon_sym_random_boolean] = ACTIONS(1315), + [anon_sym_random_float] = ACTIONS(1315), + [anon_sym_random_integer] = ACTIONS(1315), + [anon_sym_columns] = ACTIONS(1315), + [anon_sym_rows] = ACTIONS(1315), + [anon_sym_reverse] = ACTIONS(1315), }, [164] = { - [sym_block] = STATE(762), - [sym_statement] = STATE(22), - [sym_expression] = STATE(685), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(576), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(647), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1984), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(302), - [aux_sym_block_repeat1] = STATE(22), - [sym_identifier] = ACTIONS(229), + [sym_expression] = STATE(379), + [sym__expression_kind] = STATE(415), + [aux_sym__expression_list] = STATE(187), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_assignment_operator] = STATE(341), + [sym_identifier_list] = STATE(1225), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(170), + [ts_builtin_sym_end] = ACTIONS(1313), + [sym_identifier] = ACTIONS(1315), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(245), - [anon_sym_match] = ACTIONS(247), - [anon_sym_EQ_GT] = ACTIONS(249), - [anon_sym_while] = ACTIONS(251), - [anon_sym_for] = ACTIONS(253), - [anon_sym_asyncfor] = ACTIONS(255), - [anon_sym_transform] = ACTIONS(257), - [anon_sym_filter] = ACTIONS(259), - [anon_sym_find] = ACTIONS(261), - [anon_sym_remove] = ACTIONS(263), - [anon_sym_reduce] = ACTIONS(265), - [anon_sym_select] = ACTIONS(267), - [anon_sym_insert] = ACTIONS(269), - [anon_sym_async] = ACTIONS(271), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(275), - [anon_sym_assert_equal] = ACTIONS(275), - [anon_sym_download] = ACTIONS(275), - [anon_sym_help] = ACTIONS(275), - [anon_sym_length] = ACTIONS(275), - [anon_sym_output] = ACTIONS(275), - [anon_sym_output_error] = ACTIONS(275), - [anon_sym_type] = ACTIONS(275), - [anon_sym_append] = ACTIONS(275), - [anon_sym_metadata] = ACTIONS(275), - [anon_sym_move] = ACTIONS(275), - [anon_sym_read] = ACTIONS(275), - [anon_sym_workdir] = ACTIONS(275), - [anon_sym_write] = ACTIONS(275), - [anon_sym_from_json] = ACTIONS(275), - [anon_sym_to_json] = ACTIONS(275), - [anon_sym_to_string] = ACTIONS(275), - [anon_sym_to_float] = ACTIONS(275), - [anon_sym_bash] = ACTIONS(275), - [anon_sym_fish] = ACTIONS(275), - [anon_sym_raw] = ACTIONS(275), - [anon_sym_sh] = ACTIONS(275), - [anon_sym_zsh] = ACTIONS(275), - [anon_sym_random] = ACTIONS(275), - [anon_sym_random_boolean] = ACTIONS(275), - [anon_sym_random_float] = ACTIONS(275), - [anon_sym_random_integer] = ACTIONS(275), - [anon_sym_columns] = ACTIONS(275), - [anon_sym_rows] = ACTIONS(275), - [anon_sym_reverse] = ACTIONS(275), + [anon_sym_LBRACE] = ACTIONS(1313), + [anon_sym_RBRACE] = ACTIONS(1313), + [anon_sym_SEMI] = ACTIONS(1313), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_RPAREN] = ACTIONS(1313), + [sym_integer] = ACTIONS(1315), + [sym_float] = ACTIONS(1313), + [sym_string] = ACTIONS(1313), + [anon_sym_true] = ACTIONS(1315), + [anon_sym_false] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1313), + [anon_sym_EQ] = ACTIONS(1317), + [anon_sym_COLON] = ACTIONS(1313), + [anon_sym_DOT_DOT] = ACTIONS(1313), + [anon_sym_PLUS] = ACTIONS(1315), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_PERCENT] = ACTIONS(1313), + [anon_sym_EQ_EQ] = ACTIONS(1313), + [anon_sym_BANG_EQ] = ACTIONS(1313), + [anon_sym_AMP_AMP] = ACTIONS(1313), + [anon_sym_PIPE_PIPE] = ACTIONS(1313), + [anon_sym_GT] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(1315), + [anon_sym_GT_EQ] = ACTIONS(1313), + [anon_sym_LT_EQ] = ACTIONS(1313), + [anon_sym_PLUS_EQ] = ACTIONS(1319), + [anon_sym_DASH_EQ] = ACTIONS(1319), + [anon_sym_if] = ACTIONS(1315), + [anon_sym_elseif] = ACTIONS(1313), + [anon_sym_else] = ACTIONS(1315), + [anon_sym_match] = ACTIONS(1315), + [anon_sym_EQ_GT] = ACTIONS(1313), + [anon_sym_while] = ACTIONS(1315), + [anon_sym_for] = ACTIONS(1315), + [anon_sym_asyncfor] = ACTIONS(1313), + [anon_sym_transform] = ACTIONS(1315), + [anon_sym_filter] = ACTIONS(1315), + [anon_sym_find] = ACTIONS(1315), + [anon_sym_remove] = ACTIONS(1315), + [anon_sym_reduce] = ACTIONS(1315), + [anon_sym_select] = ACTIONS(1315), + [anon_sym_insert] = ACTIONS(1315), + [anon_sym_async] = ACTIONS(1315), + [anon_sym_PIPE] = ACTIONS(1315), + [anon_sym_table] = ACTIONS(1315), + [anon_sym_assert] = ACTIONS(1315), + [anon_sym_assert_equal] = ACTIONS(1315), + [anon_sym_download] = ACTIONS(1315), + [anon_sym_help] = ACTIONS(1315), + [anon_sym_length] = ACTIONS(1315), + [anon_sym_output] = ACTIONS(1315), + [anon_sym_output_error] = ACTIONS(1315), + [anon_sym_type] = ACTIONS(1315), + [anon_sym_append] = ACTIONS(1315), + [anon_sym_metadata] = ACTIONS(1315), + [anon_sym_move] = ACTIONS(1315), + [anon_sym_read] = ACTIONS(1315), + [anon_sym_workdir] = ACTIONS(1315), + [anon_sym_write] = ACTIONS(1315), + [anon_sym_from_json] = ACTIONS(1315), + [anon_sym_to_json] = ACTIONS(1315), + [anon_sym_to_string] = ACTIONS(1315), + [anon_sym_to_float] = ACTIONS(1315), + [anon_sym_bash] = ACTIONS(1315), + [anon_sym_fish] = ACTIONS(1315), + [anon_sym_raw] = ACTIONS(1315), + [anon_sym_sh] = ACTIONS(1315), + [anon_sym_zsh] = ACTIONS(1315), + [anon_sym_random] = ACTIONS(1315), + [anon_sym_random_boolean] = ACTIONS(1315), + [anon_sym_random_float] = ACTIONS(1315), + [anon_sym_random_integer] = ACTIONS(1315), + [anon_sym_columns] = ACTIONS(1315), + [anon_sym_rows] = ACTIONS(1315), + [anon_sym_reverse] = ACTIONS(1315), }, [165] = { - [sym_block] = STATE(846), - [sym_statement] = STATE(61), - [sym_expression] = STATE(888), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(822), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(787), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(61), - [sym_identifier] = ACTIONS(1846), + [sym_expression] = STATE(443), + [sym__expression_kind] = STATE(468), + [aux_sym__expression_list] = STATE(207), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment_operator] = STATE(337), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [ts_builtin_sym_end] = ACTIONS(1313), + [sym_identifier] = ACTIONS(1315), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(877), - [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(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_match] = ACTIONS(1850), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(1852), - [anon_sym_for] = ACTIONS(1854), - [anon_sym_asyncfor] = ACTIONS(1856), - [anon_sym_transform] = ACTIONS(1858), - [anon_sym_filter] = ACTIONS(1860), - [anon_sym_find] = ACTIONS(1862), - [anon_sym_remove] = ACTIONS(1864), - [anon_sym_reduce] = ACTIONS(1866), - [anon_sym_select] = ACTIONS(1868), - [anon_sym_insert] = ACTIONS(43), - [anon_sym_async] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(49), - [anon_sym_assert] = ACTIONS(51), - [anon_sym_assert_equal] = ACTIONS(51), - [anon_sym_download] = ACTIONS(51), - [anon_sym_help] = ACTIONS(51), - [anon_sym_length] = ACTIONS(51), - [anon_sym_output] = ACTIONS(51), - [anon_sym_output_error] = ACTIONS(51), - [anon_sym_type] = ACTIONS(51), - [anon_sym_append] = ACTIONS(51), - [anon_sym_metadata] = ACTIONS(51), - [anon_sym_move] = ACTIONS(51), - [anon_sym_read] = ACTIONS(51), - [anon_sym_workdir] = ACTIONS(51), - [anon_sym_write] = ACTIONS(51), - [anon_sym_from_json] = ACTIONS(51), - [anon_sym_to_json] = ACTIONS(51), - [anon_sym_to_string] = ACTIONS(51), - [anon_sym_to_float] = ACTIONS(51), - [anon_sym_bash] = ACTIONS(51), - [anon_sym_fish] = ACTIONS(51), - [anon_sym_raw] = ACTIONS(51), - [anon_sym_sh] = ACTIONS(51), - [anon_sym_zsh] = ACTIONS(51), - [anon_sym_random] = ACTIONS(51), - [anon_sym_random_boolean] = ACTIONS(51), - [anon_sym_random_float] = ACTIONS(51), - [anon_sym_random_integer] = ACTIONS(51), - [anon_sym_columns] = ACTIONS(51), - [anon_sym_rows] = ACTIONS(51), - [anon_sym_reverse] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(1313), + [anon_sym_RBRACE] = ACTIONS(1313), + [anon_sym_SEMI] = ACTIONS(1313), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_RPAREN] = ACTIONS(1313), + [anon_sym_COMMA] = ACTIONS(1313), + [sym_integer] = ACTIONS(1315), + [sym_float] = ACTIONS(1313), + [sym_string] = ACTIONS(1313), + [anon_sym_true] = ACTIONS(1315), + [anon_sym_false] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1313), + [anon_sym_RBRACK] = ACTIONS(1313), + [anon_sym_EQ] = ACTIONS(1317), + [anon_sym_COLON] = ACTIONS(1313), + [anon_sym_PLUS] = ACTIONS(1315), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_PERCENT] = ACTIONS(1313), + [anon_sym_EQ_EQ] = ACTIONS(1313), + [anon_sym_BANG_EQ] = ACTIONS(1313), + [anon_sym_AMP_AMP] = ACTIONS(1313), + [anon_sym_PIPE_PIPE] = ACTIONS(1313), + [anon_sym_GT] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(1315), + [anon_sym_GT_EQ] = ACTIONS(1313), + [anon_sym_LT_EQ] = ACTIONS(1313), + [anon_sym_PLUS_EQ] = ACTIONS(1319), + [anon_sym_DASH_EQ] = ACTIONS(1319), + [anon_sym_if] = ACTIONS(1315), + [anon_sym_match] = ACTIONS(1315), + [anon_sym_EQ_GT] = ACTIONS(1313), + [anon_sym_while] = ACTIONS(1315), + [anon_sym_for] = ACTIONS(1315), + [anon_sym_asyncfor] = ACTIONS(1313), + [anon_sym_transform] = ACTIONS(1315), + [anon_sym_filter] = ACTIONS(1315), + [anon_sym_find] = ACTIONS(1315), + [anon_sym_remove] = ACTIONS(1315), + [anon_sym_reduce] = ACTIONS(1315), + [anon_sym_select] = ACTIONS(1315), + [anon_sym_insert] = ACTIONS(1315), + [anon_sym_async] = ACTIONS(1315), + [anon_sym_PIPE] = ACTIONS(1315), + [anon_sym_table] = ACTIONS(1315), + [anon_sym_assert] = ACTIONS(1315), + [anon_sym_assert_equal] = ACTIONS(1315), + [anon_sym_download] = ACTIONS(1315), + [anon_sym_help] = ACTIONS(1315), + [anon_sym_length] = ACTIONS(1315), + [anon_sym_output] = ACTIONS(1315), + [anon_sym_output_error] = ACTIONS(1315), + [anon_sym_type] = ACTIONS(1315), + [anon_sym_append] = ACTIONS(1315), + [anon_sym_metadata] = ACTIONS(1315), + [anon_sym_move] = ACTIONS(1315), + [anon_sym_read] = ACTIONS(1315), + [anon_sym_workdir] = ACTIONS(1315), + [anon_sym_write] = ACTIONS(1315), + [anon_sym_from_json] = ACTIONS(1315), + [anon_sym_to_json] = ACTIONS(1315), + [anon_sym_to_string] = ACTIONS(1315), + [anon_sym_to_float] = ACTIONS(1315), + [anon_sym_bash] = ACTIONS(1315), + [anon_sym_fish] = ACTIONS(1315), + [anon_sym_raw] = ACTIONS(1315), + [anon_sym_sh] = ACTIONS(1315), + [anon_sym_zsh] = ACTIONS(1315), + [anon_sym_random] = ACTIONS(1315), + [anon_sym_random_boolean] = ACTIONS(1315), + [anon_sym_random_float] = ACTIONS(1315), + [anon_sym_random_integer] = ACTIONS(1315), + [anon_sym_columns] = ACTIONS(1315), + [anon_sym_rows] = ACTIONS(1315), + [anon_sym_reverse] = ACTIONS(1315), }, [166] = { - [sym_block] = STATE(1029), - [sym_statement] = STATE(352), - [sym_expression] = STATE(877), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(782), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(1023), - [sym_if_else] = STATE(1023), - [sym_if] = STATE(978), - [sym_match] = STATE(1023), - [sym_while] = STATE(1023), - [sym_for] = STATE(1023), - [sym_transform] = STATE(1023), - [sym_filter] = STATE(1023), - [sym_find] = STATE(1023), - [sym_remove] = STATE(1023), - [sym_reduce] = STATE(1023), - [sym_select] = STATE(1023), - [sym_insert] = STATE(1023), - [sym_async] = STATE(1023), - [sym_identifier_list] = STATE(1926), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(351), - [aux_sym_block_repeat1] = STATE(352), - [sym_identifier] = ACTIONS(1639), + [sym_expression] = STATE(416), + [sym__expression_kind] = STATE(415), + [aux_sym__expression_list] = STATE(202), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_assignment_operator] = STATE(331), + [sym_identifier_list] = STATE(1100), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(181), + [ts_builtin_sym_end] = ACTIONS(1313), + [sym_identifier] = ACTIONS(1315), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(1641), - [anon_sym_EQ_GT] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1643), - [anon_sym_for] = ACTIONS(1645), - [anon_sym_asyncfor] = ACTIONS(1647), - [anon_sym_transform] = ACTIONS(1649), - [anon_sym_filter] = ACTIONS(1651), - [anon_sym_find] = ACTIONS(1653), - [anon_sym_remove] = ACTIONS(1655), - [anon_sym_reduce] = ACTIONS(1657), - [anon_sym_select] = ACTIONS(1659), - [anon_sym_insert] = ACTIONS(1308), - [anon_sym_async] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1312), - [anon_sym_assert] = ACTIONS(1314), - [anon_sym_assert_equal] = ACTIONS(1314), - [anon_sym_download] = ACTIONS(1314), - [anon_sym_help] = ACTIONS(1314), - [anon_sym_length] = ACTIONS(1314), - [anon_sym_output] = ACTIONS(1314), - [anon_sym_output_error] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_append] = ACTIONS(1314), - [anon_sym_metadata] = ACTIONS(1314), - [anon_sym_move] = ACTIONS(1314), - [anon_sym_read] = ACTIONS(1314), - [anon_sym_workdir] = ACTIONS(1314), - [anon_sym_write] = ACTIONS(1314), - [anon_sym_from_json] = ACTIONS(1314), - [anon_sym_to_json] = ACTIONS(1314), - [anon_sym_to_string] = ACTIONS(1314), - [anon_sym_to_float] = ACTIONS(1314), - [anon_sym_bash] = ACTIONS(1314), - [anon_sym_fish] = ACTIONS(1314), - [anon_sym_raw] = ACTIONS(1314), - [anon_sym_sh] = ACTIONS(1314), - [anon_sym_zsh] = ACTIONS(1314), - [anon_sym_random] = ACTIONS(1314), - [anon_sym_random_boolean] = ACTIONS(1314), - [anon_sym_random_float] = ACTIONS(1314), - [anon_sym_random_integer] = ACTIONS(1314), - [anon_sym_columns] = ACTIONS(1314), - [anon_sym_rows] = ACTIONS(1314), - [anon_sym_reverse] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1313), + [anon_sym_RBRACE] = ACTIONS(1313), + [anon_sym_SEMI] = ACTIONS(1313), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_RPAREN] = ACTIONS(1313), + [sym_integer] = ACTIONS(1315), + [sym_float] = ACTIONS(1313), + [sym_string] = ACTIONS(1313), + [anon_sym_true] = ACTIONS(1315), + [anon_sym_false] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1313), + [anon_sym_EQ] = ACTIONS(1317), + [anon_sym_COLON] = ACTIONS(1313), + [anon_sym_PLUS] = ACTIONS(1315), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_PERCENT] = ACTIONS(1313), + [anon_sym_EQ_EQ] = ACTIONS(1313), + [anon_sym_BANG_EQ] = ACTIONS(1313), + [anon_sym_AMP_AMP] = ACTIONS(1313), + [anon_sym_PIPE_PIPE] = ACTIONS(1313), + [anon_sym_GT] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(1315), + [anon_sym_GT_EQ] = ACTIONS(1313), + [anon_sym_LT_EQ] = ACTIONS(1313), + [anon_sym_PLUS_EQ] = ACTIONS(1319), + [anon_sym_DASH_EQ] = ACTIONS(1319), + [anon_sym_if] = ACTIONS(1315), + [anon_sym_elseif] = ACTIONS(1313), + [anon_sym_else] = ACTIONS(1315), + [anon_sym_match] = ACTIONS(1315), + [anon_sym_EQ_GT] = ACTIONS(1313), + [anon_sym_while] = ACTIONS(1315), + [anon_sym_for] = ACTIONS(1315), + [anon_sym_asyncfor] = ACTIONS(1313), + [anon_sym_transform] = ACTIONS(1315), + [anon_sym_filter] = ACTIONS(1315), + [anon_sym_find] = ACTIONS(1315), + [anon_sym_remove] = ACTIONS(1315), + [anon_sym_reduce] = ACTIONS(1315), + [anon_sym_select] = ACTIONS(1315), + [anon_sym_insert] = ACTIONS(1315), + [anon_sym_async] = ACTIONS(1315), + [anon_sym_PIPE] = ACTIONS(1315), + [anon_sym_table] = ACTIONS(1315), + [anon_sym_assert] = ACTIONS(1315), + [anon_sym_assert_equal] = ACTIONS(1315), + [anon_sym_download] = ACTIONS(1315), + [anon_sym_help] = ACTIONS(1315), + [anon_sym_length] = ACTIONS(1315), + [anon_sym_output] = ACTIONS(1315), + [anon_sym_output_error] = ACTIONS(1315), + [anon_sym_type] = ACTIONS(1315), + [anon_sym_append] = ACTIONS(1315), + [anon_sym_metadata] = ACTIONS(1315), + [anon_sym_move] = ACTIONS(1315), + [anon_sym_read] = ACTIONS(1315), + [anon_sym_workdir] = ACTIONS(1315), + [anon_sym_write] = ACTIONS(1315), + [anon_sym_from_json] = ACTIONS(1315), + [anon_sym_to_json] = ACTIONS(1315), + [anon_sym_to_string] = ACTIONS(1315), + [anon_sym_to_float] = ACTIONS(1315), + [anon_sym_bash] = ACTIONS(1315), + [anon_sym_fish] = ACTIONS(1315), + [anon_sym_raw] = ACTIONS(1315), + [anon_sym_sh] = ACTIONS(1315), + [anon_sym_zsh] = ACTIONS(1315), + [anon_sym_random] = ACTIONS(1315), + [anon_sym_random_boolean] = ACTIONS(1315), + [anon_sym_random_float] = ACTIONS(1315), + [anon_sym_random_integer] = ACTIONS(1315), + [anon_sym_columns] = ACTIONS(1315), + [anon_sym_rows] = ACTIONS(1315), + [anon_sym_reverse] = ACTIONS(1315), }, [167] = { - [sym_block] = STATE(767), - [sym_statement] = STATE(51), - [sym_expression] = STATE(817), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(748), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(760), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1926), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(351), - [aux_sym_block_repeat1] = STATE(51), - [sym_identifier] = ACTIONS(1280), + [sym_expression] = STATE(354), + [sym__expression_kind] = STATE(415), + [aux_sym__expression_list] = STATE(173), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_identifier_list] = STATE(1225), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(170), + [ts_builtin_sym_end] = ACTIONS(1321), + [sym_identifier] = ACTIONS(1323), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_match] = ACTIONS(1286), - [anon_sym_EQ_GT] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_asyncfor] = ACTIONS(1294), - [anon_sym_transform] = ACTIONS(1296), - [anon_sym_filter] = ACTIONS(1298), - [anon_sym_find] = ACTIONS(1300), - [anon_sym_remove] = ACTIONS(1302), - [anon_sym_reduce] = ACTIONS(1304), - [anon_sym_select] = ACTIONS(1306), - [anon_sym_insert] = ACTIONS(1308), - [anon_sym_async] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_RBRACE] = ACTIONS(1321), + [anon_sym_SEMI] = ACTIONS(1321), + [anon_sym_LPAREN] = ACTIONS(59), + [anon_sym_RPAREN] = ACTIONS(1321), + [anon_sym_COMMA] = ACTIONS(1321), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_RBRACK] = ACTIONS(1321), + [anon_sym_COLON] = ACTIONS(1321), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_PLUS] = ACTIONS(1321), + [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_STAR] = ACTIONS(1321), + [anon_sym_SLASH] = ACTIONS(1321), + [anon_sym_PERCENT] = ACTIONS(1321), + [anon_sym_EQ_EQ] = ACTIONS(1321), + [anon_sym_BANG_EQ] = ACTIONS(1321), + [anon_sym_AMP_AMP] = ACTIONS(1321), + [anon_sym_PIPE_PIPE] = ACTIONS(1321), + [anon_sym_GT] = ACTIONS(1327), + [anon_sym_LT] = ACTIONS(1327), + [anon_sym_GT_EQ] = ACTIONS(1321), + [anon_sym_LT_EQ] = ACTIONS(1321), + [anon_sym_if] = ACTIONS(1327), + [anon_sym_elseif] = ACTIONS(1321), + [anon_sym_else] = ACTIONS(1327), + [anon_sym_match] = ACTIONS(1327), + [anon_sym_EQ_GT] = ACTIONS(85), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_for] = ACTIONS(1327), + [anon_sym_asyncfor] = ACTIONS(1321), + [anon_sym_transform] = ACTIONS(1327), + [anon_sym_filter] = ACTIONS(1327), + [anon_sym_find] = ACTIONS(1327), + [anon_sym_remove] = ACTIONS(1327), + [anon_sym_reduce] = ACTIONS(1327), + [anon_sym_select] = ACTIONS(1327), + [anon_sym_insert] = ACTIONS(1327), + [anon_sym_async] = ACTIONS(1327), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1312), - [anon_sym_assert] = ACTIONS(1314), - [anon_sym_assert_equal] = ACTIONS(1314), - [anon_sym_download] = ACTIONS(1314), - [anon_sym_help] = ACTIONS(1314), - [anon_sym_length] = ACTIONS(1314), - [anon_sym_output] = ACTIONS(1314), - [anon_sym_output_error] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_append] = ACTIONS(1314), - [anon_sym_metadata] = ACTIONS(1314), - [anon_sym_move] = ACTIONS(1314), - [anon_sym_read] = ACTIONS(1314), - [anon_sym_workdir] = ACTIONS(1314), - [anon_sym_write] = ACTIONS(1314), - [anon_sym_from_json] = ACTIONS(1314), - [anon_sym_to_json] = ACTIONS(1314), - [anon_sym_to_string] = ACTIONS(1314), - [anon_sym_to_float] = ACTIONS(1314), - [anon_sym_bash] = ACTIONS(1314), - [anon_sym_fish] = ACTIONS(1314), - [anon_sym_raw] = ACTIONS(1314), - [anon_sym_sh] = ACTIONS(1314), - [anon_sym_zsh] = ACTIONS(1314), - [anon_sym_random] = ACTIONS(1314), - [anon_sym_random_boolean] = ACTIONS(1314), - [anon_sym_random_float] = ACTIONS(1314), - [anon_sym_random_integer] = ACTIONS(1314), - [anon_sym_columns] = ACTIONS(1314), - [anon_sym_rows] = ACTIONS(1314), - [anon_sym_reverse] = ACTIONS(1314), + [anon_sym_table] = ACTIONS(111), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_assert_equal] = ACTIONS(113), + [anon_sym_download] = ACTIONS(113), + [anon_sym_help] = ACTIONS(113), + [anon_sym_length] = ACTIONS(113), + [anon_sym_output] = ACTIONS(113), + [anon_sym_output_error] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_append] = ACTIONS(113), + [anon_sym_metadata] = ACTIONS(113), + [anon_sym_move] = ACTIONS(113), + [anon_sym_read] = ACTIONS(113), + [anon_sym_workdir] = ACTIONS(113), + [anon_sym_write] = ACTIONS(113), + [anon_sym_from_json] = ACTIONS(113), + [anon_sym_to_json] = ACTIONS(113), + [anon_sym_to_string] = ACTIONS(113), + [anon_sym_to_float] = ACTIONS(113), + [anon_sym_bash] = ACTIONS(113), + [anon_sym_fish] = ACTIONS(113), + [anon_sym_raw] = ACTIONS(113), + [anon_sym_sh] = ACTIONS(113), + [anon_sym_zsh] = ACTIONS(113), + [anon_sym_random] = ACTIONS(113), + [anon_sym_random_boolean] = ACTIONS(113), + [anon_sym_random_float] = ACTIONS(113), + [anon_sym_random_integer] = ACTIONS(113), + [anon_sym_columns] = ACTIONS(113), + [anon_sym_rows] = ACTIONS(113), + [anon_sym_reverse] = ACTIONS(113), }, [168] = { - [sym_block] = STATE(816), - [sym_statement] = STATE(22), - [sym_expression] = STATE(685), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(576), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(647), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1984), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(302), - [aux_sym_block_repeat1] = STATE(22), - [sym_identifier] = ACTIONS(229), + [sym_expression] = STATE(377), + [sym__expression_kind] = STATE(415), + [aux_sym__expression_list] = STATE(180), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_assignment_operator] = STATE(332), + [sym_identifier_list] = STATE(1100), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(181), + [sym_identifier] = ACTIONS(1315), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(245), - [anon_sym_match] = ACTIONS(247), - [anon_sym_EQ_GT] = ACTIONS(249), - [anon_sym_while] = ACTIONS(251), - [anon_sym_for] = ACTIONS(253), - [anon_sym_asyncfor] = ACTIONS(255), - [anon_sym_transform] = ACTIONS(257), - [anon_sym_filter] = ACTIONS(259), - [anon_sym_find] = ACTIONS(261), - [anon_sym_remove] = ACTIONS(263), - [anon_sym_reduce] = ACTIONS(265), - [anon_sym_select] = ACTIONS(267), - [anon_sym_insert] = ACTIONS(269), - [anon_sym_async] = ACTIONS(271), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(275), - [anon_sym_assert_equal] = ACTIONS(275), - [anon_sym_download] = ACTIONS(275), - [anon_sym_help] = ACTIONS(275), - [anon_sym_length] = ACTIONS(275), - [anon_sym_output] = ACTIONS(275), - [anon_sym_output_error] = ACTIONS(275), - [anon_sym_type] = ACTIONS(275), - [anon_sym_append] = ACTIONS(275), - [anon_sym_metadata] = ACTIONS(275), - [anon_sym_move] = ACTIONS(275), - [anon_sym_read] = ACTIONS(275), - [anon_sym_workdir] = ACTIONS(275), - [anon_sym_write] = ACTIONS(275), - [anon_sym_from_json] = ACTIONS(275), - [anon_sym_to_json] = ACTIONS(275), - [anon_sym_to_string] = ACTIONS(275), - [anon_sym_to_float] = ACTIONS(275), - [anon_sym_bash] = ACTIONS(275), - [anon_sym_fish] = ACTIONS(275), - [anon_sym_raw] = ACTIONS(275), - [anon_sym_sh] = ACTIONS(275), - [anon_sym_zsh] = ACTIONS(275), - [anon_sym_random] = ACTIONS(275), - [anon_sym_random_boolean] = ACTIONS(275), - [anon_sym_random_float] = ACTIONS(275), - [anon_sym_random_integer] = ACTIONS(275), - [anon_sym_columns] = ACTIONS(275), - [anon_sym_rows] = ACTIONS(275), - [anon_sym_reverse] = ACTIONS(275), + [anon_sym_LBRACE] = ACTIONS(1313), + [anon_sym_RBRACE] = ACTIONS(1313), + [anon_sym_SEMI] = ACTIONS(1313), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_COMMA] = ACTIONS(1313), + [sym_integer] = ACTIONS(1315), + [sym_float] = ACTIONS(1313), + [sym_string] = ACTIONS(1313), + [anon_sym_true] = ACTIONS(1315), + [anon_sym_false] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1313), + [anon_sym_EQ] = ACTIONS(1317), + [anon_sym_COLON] = ACTIONS(1313), + [anon_sym_PLUS] = ACTIONS(1315), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_PERCENT] = ACTIONS(1313), + [anon_sym_EQ_EQ] = ACTIONS(1313), + [anon_sym_BANG_EQ] = ACTIONS(1313), + [anon_sym_AMP_AMP] = ACTIONS(1313), + [anon_sym_PIPE_PIPE] = ACTIONS(1313), + [anon_sym_GT] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(1315), + [anon_sym_GT_EQ] = ACTIONS(1313), + [anon_sym_LT_EQ] = ACTIONS(1313), + [anon_sym_PLUS_EQ] = ACTIONS(1319), + [anon_sym_DASH_EQ] = ACTIONS(1319), + [anon_sym_if] = ACTIONS(1315), + [anon_sym_elseif] = ACTIONS(1313), + [anon_sym_else] = ACTIONS(1315), + [anon_sym_match] = ACTIONS(1315), + [anon_sym_EQ_GT] = ACTIONS(1313), + [anon_sym_while] = ACTIONS(1315), + [anon_sym_for] = ACTIONS(1315), + [anon_sym_asyncfor] = ACTIONS(1313), + [anon_sym_transform] = ACTIONS(1315), + [anon_sym_filter] = ACTIONS(1315), + [anon_sym_find] = ACTIONS(1315), + [anon_sym_remove] = ACTIONS(1315), + [anon_sym_reduce] = ACTIONS(1315), + [anon_sym_select] = ACTIONS(1315), + [anon_sym_insert] = ACTIONS(1315), + [anon_sym_async] = ACTIONS(1315), + [anon_sym_PIPE] = ACTIONS(1315), + [anon_sym_table] = ACTIONS(1315), + [anon_sym_assert] = ACTIONS(1315), + [anon_sym_assert_equal] = ACTIONS(1315), + [anon_sym_download] = ACTIONS(1315), + [anon_sym_help] = ACTIONS(1315), + [anon_sym_length] = ACTIONS(1315), + [anon_sym_output] = ACTIONS(1315), + [anon_sym_output_error] = ACTIONS(1315), + [anon_sym_type] = ACTIONS(1315), + [anon_sym_append] = ACTIONS(1315), + [anon_sym_metadata] = ACTIONS(1315), + [anon_sym_move] = ACTIONS(1315), + [anon_sym_read] = ACTIONS(1315), + [anon_sym_workdir] = ACTIONS(1315), + [anon_sym_write] = ACTIONS(1315), + [anon_sym_from_json] = ACTIONS(1315), + [anon_sym_to_json] = ACTIONS(1315), + [anon_sym_to_string] = ACTIONS(1315), + [anon_sym_to_float] = ACTIONS(1315), + [anon_sym_bash] = ACTIONS(1315), + [anon_sym_fish] = ACTIONS(1315), + [anon_sym_raw] = ACTIONS(1315), + [anon_sym_sh] = ACTIONS(1315), + [anon_sym_zsh] = ACTIONS(1315), + [anon_sym_random] = ACTIONS(1315), + [anon_sym_random_boolean] = ACTIONS(1315), + [anon_sym_random_float] = ACTIONS(1315), + [anon_sym_random_integer] = ACTIONS(1315), + [anon_sym_columns] = ACTIONS(1315), + [anon_sym_rows] = ACTIONS(1315), + [anon_sym_reverse] = ACTIONS(1315), }, [169] = { - [sym_block] = STATE(804), - [sym_statement] = STATE(22), - [sym_expression] = STATE(685), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(576), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(647), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1984), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(302), - [aux_sym_block_repeat1] = STATE(22), - [sym_identifier] = ACTIONS(229), + [sym_expression] = STATE(354), + [sym__expression_kind] = STATE(415), + [aux_sym__expression_list] = STATE(173), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_identifier_list] = STATE(1225), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(170), + [ts_builtin_sym_end] = ACTIONS(1329), + [sym_identifier] = ACTIONS(1323), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(245), - [anon_sym_match] = ACTIONS(247), - [anon_sym_EQ_GT] = ACTIONS(249), - [anon_sym_while] = ACTIONS(251), - [anon_sym_for] = ACTIONS(253), - [anon_sym_asyncfor] = ACTIONS(255), - [anon_sym_transform] = ACTIONS(257), - [anon_sym_filter] = ACTIONS(259), - [anon_sym_find] = ACTIONS(261), - [anon_sym_remove] = ACTIONS(263), - [anon_sym_reduce] = ACTIONS(265), - [anon_sym_select] = ACTIONS(267), - [anon_sym_insert] = ACTIONS(269), - [anon_sym_async] = ACTIONS(271), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_RBRACE] = ACTIONS(1329), + [anon_sym_SEMI] = ACTIONS(1329), + [anon_sym_LPAREN] = ACTIONS(59), + [anon_sym_RPAREN] = ACTIONS(1329), + [anon_sym_COMMA] = ACTIONS(1329), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_RBRACK] = ACTIONS(1329), + [anon_sym_COLON] = ACTIONS(1329), + [anon_sym_DOT_DOT] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1331), + [anon_sym_STAR] = ACTIONS(1329), + [anon_sym_SLASH] = ACTIONS(1329), + [anon_sym_PERCENT] = ACTIONS(1329), + [anon_sym_EQ_EQ] = ACTIONS(1329), + [anon_sym_BANG_EQ] = ACTIONS(1329), + [anon_sym_AMP_AMP] = ACTIONS(1329), + [anon_sym_PIPE_PIPE] = ACTIONS(1329), + [anon_sym_GT] = ACTIONS(1331), + [anon_sym_LT] = ACTIONS(1331), + [anon_sym_GT_EQ] = ACTIONS(1329), + [anon_sym_LT_EQ] = ACTIONS(1329), + [anon_sym_if] = ACTIONS(1331), + [anon_sym_elseif] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1331), + [anon_sym_match] = ACTIONS(1331), + [anon_sym_EQ_GT] = ACTIONS(85), + [anon_sym_while] = ACTIONS(1331), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_asyncfor] = ACTIONS(1329), + [anon_sym_transform] = ACTIONS(1331), + [anon_sym_filter] = ACTIONS(1331), + [anon_sym_find] = ACTIONS(1331), + [anon_sym_remove] = ACTIONS(1331), + [anon_sym_reduce] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1331), + [anon_sym_insert] = ACTIONS(1331), + [anon_sym_async] = ACTIONS(1331), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(275), - [anon_sym_assert_equal] = ACTIONS(275), - [anon_sym_download] = ACTIONS(275), - [anon_sym_help] = ACTIONS(275), - [anon_sym_length] = ACTIONS(275), - [anon_sym_output] = ACTIONS(275), - [anon_sym_output_error] = ACTIONS(275), - [anon_sym_type] = ACTIONS(275), - [anon_sym_append] = ACTIONS(275), - [anon_sym_metadata] = ACTIONS(275), - [anon_sym_move] = ACTIONS(275), - [anon_sym_read] = ACTIONS(275), - [anon_sym_workdir] = ACTIONS(275), - [anon_sym_write] = ACTIONS(275), - [anon_sym_from_json] = ACTIONS(275), - [anon_sym_to_json] = ACTIONS(275), - [anon_sym_to_string] = ACTIONS(275), - [anon_sym_to_float] = ACTIONS(275), - [anon_sym_bash] = ACTIONS(275), - [anon_sym_fish] = ACTIONS(275), - [anon_sym_raw] = ACTIONS(275), - [anon_sym_sh] = ACTIONS(275), - [anon_sym_zsh] = ACTIONS(275), - [anon_sym_random] = ACTIONS(275), - [anon_sym_random_boolean] = ACTIONS(275), - [anon_sym_random_float] = ACTIONS(275), - [anon_sym_random_integer] = ACTIONS(275), - [anon_sym_columns] = ACTIONS(275), - [anon_sym_rows] = ACTIONS(275), - [anon_sym_reverse] = ACTIONS(275), + [anon_sym_table] = ACTIONS(111), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_assert_equal] = ACTIONS(113), + [anon_sym_download] = ACTIONS(113), + [anon_sym_help] = ACTIONS(113), + [anon_sym_length] = ACTIONS(113), + [anon_sym_output] = ACTIONS(113), + [anon_sym_output_error] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_append] = ACTIONS(113), + [anon_sym_metadata] = ACTIONS(113), + [anon_sym_move] = ACTIONS(113), + [anon_sym_read] = ACTIONS(113), + [anon_sym_workdir] = ACTIONS(113), + [anon_sym_write] = ACTIONS(113), + [anon_sym_from_json] = ACTIONS(113), + [anon_sym_to_json] = ACTIONS(113), + [anon_sym_to_string] = ACTIONS(113), + [anon_sym_to_float] = ACTIONS(113), + [anon_sym_bash] = ACTIONS(113), + [anon_sym_fish] = ACTIONS(113), + [anon_sym_raw] = ACTIONS(113), + [anon_sym_sh] = ACTIONS(113), + [anon_sym_zsh] = ACTIONS(113), + [anon_sym_random] = ACTIONS(113), + [anon_sym_random_boolean] = ACTIONS(113), + [anon_sym_random_float] = ACTIONS(113), + [anon_sym_random_integer] = ACTIONS(113), + [anon_sym_columns] = ACTIONS(113), + [anon_sym_rows] = ACTIONS(113), + [anon_sym_reverse] = ACTIONS(113), }, [170] = { - [sym_block] = STATE(806), - [sym_statement] = STATE(22), - [sym_expression] = STATE(685), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(576), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(647), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1984), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(302), - [aux_sym_block_repeat1] = STATE(22), - [sym_identifier] = ACTIONS(229), + [sym_expression] = STATE(354), + [sym__expression_kind] = STATE(415), + [aux_sym__expression_list] = STATE(167), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_identifier_list] = STATE(1225), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(170), + [ts_builtin_sym_end] = ACTIONS(1333), + [sym_identifier] = ACTIONS(1323), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(245), - [anon_sym_match] = ACTIONS(247), - [anon_sym_EQ_GT] = ACTIONS(249), - [anon_sym_while] = ACTIONS(251), - [anon_sym_for] = ACTIONS(253), - [anon_sym_asyncfor] = ACTIONS(255), - [anon_sym_transform] = ACTIONS(257), - [anon_sym_filter] = ACTIONS(259), - [anon_sym_find] = ACTIONS(261), - [anon_sym_remove] = ACTIONS(263), - [anon_sym_reduce] = ACTIONS(265), - [anon_sym_select] = ACTIONS(267), - [anon_sym_insert] = ACTIONS(269), - [anon_sym_async] = ACTIONS(271), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_RBRACE] = ACTIONS(1333), + [anon_sym_SEMI] = ACTIONS(1333), + [anon_sym_LPAREN] = ACTIONS(59), + [anon_sym_RPAREN] = ACTIONS(1333), + [anon_sym_COMMA] = ACTIONS(1333), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_RBRACK] = ACTIONS(1333), + [anon_sym_COLON] = ACTIONS(1333), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1333), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_SLASH] = ACTIONS(1333), + [anon_sym_PERCENT] = ACTIONS(1333), + [anon_sym_EQ_EQ] = ACTIONS(1333), + [anon_sym_BANG_EQ] = ACTIONS(1333), + [anon_sym_AMP_AMP] = ACTIONS(1333), + [anon_sym_PIPE_PIPE] = ACTIONS(1333), + [anon_sym_GT] = ACTIONS(1335), + [anon_sym_LT] = ACTIONS(1335), + [anon_sym_GT_EQ] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1333), + [anon_sym_if] = ACTIONS(1335), + [anon_sym_elseif] = ACTIONS(1333), + [anon_sym_else] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1335), + [anon_sym_EQ_GT] = ACTIONS(85), + [anon_sym_while] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1335), + [anon_sym_asyncfor] = ACTIONS(1333), + [anon_sym_transform] = ACTIONS(1335), + [anon_sym_filter] = ACTIONS(1335), + [anon_sym_find] = ACTIONS(1335), + [anon_sym_remove] = ACTIONS(1335), + [anon_sym_reduce] = ACTIONS(1335), + [anon_sym_select] = ACTIONS(1335), + [anon_sym_insert] = ACTIONS(1335), + [anon_sym_async] = ACTIONS(1335), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(275), - [anon_sym_assert_equal] = ACTIONS(275), - [anon_sym_download] = ACTIONS(275), - [anon_sym_help] = ACTIONS(275), - [anon_sym_length] = ACTIONS(275), - [anon_sym_output] = ACTIONS(275), - [anon_sym_output_error] = ACTIONS(275), - [anon_sym_type] = ACTIONS(275), - [anon_sym_append] = ACTIONS(275), - [anon_sym_metadata] = ACTIONS(275), - [anon_sym_move] = ACTIONS(275), - [anon_sym_read] = ACTIONS(275), - [anon_sym_workdir] = ACTIONS(275), - [anon_sym_write] = ACTIONS(275), - [anon_sym_from_json] = ACTIONS(275), - [anon_sym_to_json] = ACTIONS(275), - [anon_sym_to_string] = ACTIONS(275), - [anon_sym_to_float] = ACTIONS(275), - [anon_sym_bash] = ACTIONS(275), - [anon_sym_fish] = ACTIONS(275), - [anon_sym_raw] = ACTIONS(275), - [anon_sym_sh] = ACTIONS(275), - [anon_sym_zsh] = ACTIONS(275), - [anon_sym_random] = ACTIONS(275), - [anon_sym_random_boolean] = ACTIONS(275), - [anon_sym_random_float] = ACTIONS(275), - [anon_sym_random_integer] = ACTIONS(275), - [anon_sym_columns] = ACTIONS(275), - [anon_sym_rows] = ACTIONS(275), - [anon_sym_reverse] = ACTIONS(275), + [anon_sym_table] = ACTIONS(111), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_assert_equal] = ACTIONS(113), + [anon_sym_download] = ACTIONS(113), + [anon_sym_help] = ACTIONS(113), + [anon_sym_length] = ACTIONS(113), + [anon_sym_output] = ACTIONS(113), + [anon_sym_output_error] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_append] = ACTIONS(113), + [anon_sym_metadata] = ACTIONS(113), + [anon_sym_move] = ACTIONS(113), + [anon_sym_read] = ACTIONS(113), + [anon_sym_workdir] = ACTIONS(113), + [anon_sym_write] = ACTIONS(113), + [anon_sym_from_json] = ACTIONS(113), + [anon_sym_to_json] = ACTIONS(113), + [anon_sym_to_string] = ACTIONS(113), + [anon_sym_to_float] = ACTIONS(113), + [anon_sym_bash] = ACTIONS(113), + [anon_sym_fish] = ACTIONS(113), + [anon_sym_raw] = ACTIONS(113), + [anon_sym_sh] = ACTIONS(113), + [anon_sym_zsh] = ACTIONS(113), + [anon_sym_random] = ACTIONS(113), + [anon_sym_random_boolean] = ACTIONS(113), + [anon_sym_random_float] = ACTIONS(113), + [anon_sym_random_integer] = ACTIONS(113), + [anon_sym_columns] = ACTIONS(113), + [anon_sym_rows] = ACTIONS(113), + [anon_sym_reverse] = ACTIONS(113), }, [171] = { - [sym_block] = STATE(808), - [sym_statement] = STATE(22), - [sym_expression] = STATE(685), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(576), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(647), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1984), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(302), - [aux_sym_block_repeat1] = STATE(22), - [sym_identifier] = ACTIONS(229), + [sym_expression] = STATE(416), + [sym__expression_kind] = STATE(415), + [aux_sym__expression_list] = STATE(202), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_assignment_operator] = STATE(330), + [sym_identifier_list] = STATE(1100), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(181), + [ts_builtin_sym_end] = ACTIONS(1313), + [sym_identifier] = ACTIONS(1315), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(245), - [anon_sym_match] = ACTIONS(247), - [anon_sym_EQ_GT] = ACTIONS(249), - [anon_sym_while] = ACTIONS(251), - [anon_sym_for] = ACTIONS(253), - [anon_sym_asyncfor] = ACTIONS(255), - [anon_sym_transform] = ACTIONS(257), - [anon_sym_filter] = ACTIONS(259), - [anon_sym_find] = ACTIONS(261), - [anon_sym_remove] = ACTIONS(263), - [anon_sym_reduce] = ACTIONS(265), - [anon_sym_select] = ACTIONS(267), - [anon_sym_insert] = ACTIONS(269), - [anon_sym_async] = ACTIONS(271), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(275), - [anon_sym_assert_equal] = ACTIONS(275), - [anon_sym_download] = ACTIONS(275), - [anon_sym_help] = ACTIONS(275), - [anon_sym_length] = ACTIONS(275), - [anon_sym_output] = ACTIONS(275), - [anon_sym_output_error] = ACTIONS(275), - [anon_sym_type] = ACTIONS(275), - [anon_sym_append] = ACTIONS(275), - [anon_sym_metadata] = ACTIONS(275), - [anon_sym_move] = ACTIONS(275), - [anon_sym_read] = ACTIONS(275), - [anon_sym_workdir] = ACTIONS(275), - [anon_sym_write] = ACTIONS(275), - [anon_sym_from_json] = ACTIONS(275), - [anon_sym_to_json] = ACTIONS(275), - [anon_sym_to_string] = ACTIONS(275), - [anon_sym_to_float] = ACTIONS(275), - [anon_sym_bash] = ACTIONS(275), - [anon_sym_fish] = ACTIONS(275), - [anon_sym_raw] = ACTIONS(275), - [anon_sym_sh] = ACTIONS(275), - [anon_sym_zsh] = ACTIONS(275), - [anon_sym_random] = ACTIONS(275), - [anon_sym_random_boolean] = ACTIONS(275), - [anon_sym_random_float] = ACTIONS(275), - [anon_sym_random_integer] = ACTIONS(275), - [anon_sym_columns] = ACTIONS(275), - [anon_sym_rows] = ACTIONS(275), - [anon_sym_reverse] = ACTIONS(275), + [anon_sym_LBRACE] = ACTIONS(1313), + [anon_sym_RBRACE] = ACTIONS(1313), + [anon_sym_SEMI] = ACTIONS(1313), + [anon_sym_LPAREN] = ACTIONS(1313), + [sym_integer] = ACTIONS(1315), + [sym_float] = ACTIONS(1313), + [sym_string] = ACTIONS(1313), + [anon_sym_true] = ACTIONS(1315), + [anon_sym_false] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1313), + [anon_sym_EQ] = ACTIONS(1317), + [anon_sym_COLON] = ACTIONS(1313), + [anon_sym_PLUS] = ACTIONS(1315), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_PERCENT] = ACTIONS(1313), + [anon_sym_EQ_EQ] = ACTIONS(1313), + [anon_sym_BANG_EQ] = ACTIONS(1313), + [anon_sym_AMP_AMP] = ACTIONS(1313), + [anon_sym_PIPE_PIPE] = ACTIONS(1313), + [anon_sym_GT] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(1315), + [anon_sym_GT_EQ] = ACTIONS(1313), + [anon_sym_LT_EQ] = ACTIONS(1313), + [anon_sym_PLUS_EQ] = ACTIONS(1319), + [anon_sym_DASH_EQ] = ACTIONS(1319), + [anon_sym_if] = ACTIONS(1315), + [anon_sym_elseif] = ACTIONS(1313), + [anon_sym_else] = ACTIONS(1315), + [anon_sym_match] = ACTIONS(1315), + [anon_sym_EQ_GT] = ACTIONS(1313), + [anon_sym_while] = ACTIONS(1315), + [anon_sym_for] = ACTIONS(1315), + [anon_sym_asyncfor] = ACTIONS(1313), + [anon_sym_transform] = ACTIONS(1315), + [anon_sym_filter] = ACTIONS(1315), + [anon_sym_find] = ACTIONS(1315), + [anon_sym_remove] = ACTIONS(1315), + [anon_sym_reduce] = ACTIONS(1315), + [anon_sym_select] = ACTIONS(1315), + [anon_sym_insert] = ACTIONS(1315), + [anon_sym_async] = ACTIONS(1315), + [anon_sym_PIPE] = ACTIONS(1315), + [anon_sym_table] = ACTIONS(1315), + [anon_sym_assert] = ACTIONS(1315), + [anon_sym_assert_equal] = ACTIONS(1315), + [anon_sym_download] = ACTIONS(1315), + [anon_sym_help] = ACTIONS(1315), + [anon_sym_length] = ACTIONS(1315), + [anon_sym_output] = ACTIONS(1315), + [anon_sym_output_error] = ACTIONS(1315), + [anon_sym_type] = ACTIONS(1315), + [anon_sym_append] = ACTIONS(1315), + [anon_sym_metadata] = ACTIONS(1315), + [anon_sym_move] = ACTIONS(1315), + [anon_sym_read] = ACTIONS(1315), + [anon_sym_workdir] = ACTIONS(1315), + [anon_sym_write] = ACTIONS(1315), + [anon_sym_from_json] = ACTIONS(1315), + [anon_sym_to_json] = ACTIONS(1315), + [anon_sym_to_string] = ACTIONS(1315), + [anon_sym_to_float] = ACTIONS(1315), + [anon_sym_bash] = ACTIONS(1315), + [anon_sym_fish] = ACTIONS(1315), + [anon_sym_raw] = ACTIONS(1315), + [anon_sym_sh] = ACTIONS(1315), + [anon_sym_zsh] = ACTIONS(1315), + [anon_sym_random] = ACTIONS(1315), + [anon_sym_random_boolean] = ACTIONS(1315), + [anon_sym_random_float] = ACTIONS(1315), + [anon_sym_random_integer] = ACTIONS(1315), + [anon_sym_columns] = ACTIONS(1315), + [anon_sym_rows] = ACTIONS(1315), + [anon_sym_reverse] = ACTIONS(1315), }, [172] = { - [sym_block] = STATE(1014), - [sym_statement] = STATE(358), - [sym_expression] = STATE(859), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(754), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(1023), - [sym_if_else] = STATE(1023), - [sym_if] = STATE(985), - [sym_match] = STATE(1023), - [sym_while] = STATE(1023), - [sym_for] = STATE(1023), - [sym_transform] = STATE(1023), - [sym_filter] = STATE(1023), - [sym_find] = STATE(1023), - [sym_remove] = STATE(1023), - [sym_reduce] = STATE(1023), - [sym_select] = STATE(1023), - [sym_insert] = STATE(1023), - [sym_async] = STATE(1023), - [sym_identifier_list] = STATE(1841), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(315), - [aux_sym_block_repeat1] = STATE(358), - [sym_identifier] = ACTIONS(1566), + [sym_expression] = STATE(972), + [sym__expression_kind] = STATE(919), + [sym_value] = STATE(919), + [sym_boolean] = STATE(936), + [sym_list] = STATE(936), + [sym_map] = STATE(936), + [sym_index] = STATE(919), + [sym_math] = STATE(919), + [sym_logic] = STATE(919), + [sym_identifier_list] = STATE(1086), + [sym_table] = STATE(936), + [sym_function] = STATE(936), + [sym_function_call] = STATE(919), + [sym__context_defined_function] = STATE(934), + [sym_built_in_function] = STATE(934), + [sym__built_in_function_name] = STATE(550), + [aux_sym_match_repeat1] = STATE(175), + [ts_builtin_sym_end] = ACTIONS(1337), + [sym_identifier] = ACTIONS(1339), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(1570), - [anon_sym_match] = ACTIONS(1572), - [anon_sym_EQ_GT] = ACTIONS(631), - [anon_sym_while] = ACTIONS(1574), - [anon_sym_for] = ACTIONS(1576), - [anon_sym_asyncfor] = ACTIONS(1578), - [anon_sym_transform] = ACTIONS(1580), - [anon_sym_filter] = ACTIONS(1582), - [anon_sym_find] = ACTIONS(1584), - [anon_sym_remove] = ACTIONS(1586), - [anon_sym_reduce] = ACTIONS(1588), - [anon_sym_select] = ACTIONS(1590), - [anon_sym_insert] = ACTIONS(651), - [anon_sym_async] = ACTIONS(1592), + [anon_sym_LBRACE] = ACTIONS(1341), + [anon_sym_RBRACE] = ACTIONS(1337), + [anon_sym_SEMI] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(1343), + [anon_sym_RPAREN] = ACTIONS(1337), + [anon_sym_COMMA] = ACTIONS(1337), + [sym_integer] = ACTIONS(1345), + [sym_float] = ACTIONS(1347), + [sym_string] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1349), + [anon_sym_false] = ACTIONS(1349), + [anon_sym_LBRACK] = ACTIONS(1351), + [anon_sym_RBRACK] = ACTIONS(1337), + [anon_sym_COLON] = ACTIONS(1337), + [anon_sym_DOT_DOT] = ACTIONS(1337), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_STAR] = ACTIONS(1337), + [anon_sym_SLASH] = ACTIONS(1337), + [anon_sym_PERCENT] = ACTIONS(1337), + [anon_sym_EQ_EQ] = ACTIONS(1337), + [anon_sym_BANG_EQ] = ACTIONS(1337), + [anon_sym_AMP_AMP] = ACTIONS(1337), + [anon_sym_PIPE_PIPE] = ACTIONS(1337), + [anon_sym_GT] = ACTIONS(1353), + [anon_sym_LT] = ACTIONS(1353), + [anon_sym_GT_EQ] = ACTIONS(1337), + [anon_sym_LT_EQ] = ACTIONS(1337), + [anon_sym_if] = ACTIONS(1353), + [anon_sym_elseif] = ACTIONS(1337), + [anon_sym_else] = ACTIONS(1353), + [anon_sym_match] = ACTIONS(1353), + [anon_sym_EQ_GT] = ACTIONS(1355), + [anon_sym_while] = ACTIONS(1353), + [anon_sym_for] = ACTIONS(1353), + [anon_sym_asyncfor] = ACTIONS(1337), + [anon_sym_transform] = ACTIONS(1353), + [anon_sym_filter] = ACTIONS(1353), + [anon_sym_find] = ACTIONS(1353), + [anon_sym_remove] = ACTIONS(1353), + [anon_sym_reduce] = ACTIONS(1353), + [anon_sym_select] = ACTIONS(1353), + [anon_sym_insert] = ACTIONS(1353), + [anon_sym_async] = ACTIONS(1353), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(655), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_assert_equal] = ACTIONS(657), - [anon_sym_download] = ACTIONS(657), - [anon_sym_help] = ACTIONS(657), - [anon_sym_length] = ACTIONS(657), - [anon_sym_output] = ACTIONS(657), - [anon_sym_output_error] = ACTIONS(657), - [anon_sym_type] = ACTIONS(657), - [anon_sym_append] = ACTIONS(657), - [anon_sym_metadata] = ACTIONS(657), - [anon_sym_move] = ACTIONS(657), - [anon_sym_read] = ACTIONS(657), - [anon_sym_workdir] = ACTIONS(657), - [anon_sym_write] = ACTIONS(657), - [anon_sym_from_json] = ACTIONS(657), - [anon_sym_to_json] = ACTIONS(657), - [anon_sym_to_string] = ACTIONS(657), - [anon_sym_to_float] = ACTIONS(657), - [anon_sym_bash] = ACTIONS(657), - [anon_sym_fish] = ACTIONS(657), - [anon_sym_raw] = ACTIONS(657), - [anon_sym_sh] = ACTIONS(657), - [anon_sym_zsh] = ACTIONS(657), - [anon_sym_random] = ACTIONS(657), - [anon_sym_random_boolean] = ACTIONS(657), - [anon_sym_random_float] = ACTIONS(657), - [anon_sym_random_integer] = ACTIONS(657), - [anon_sym_columns] = ACTIONS(657), - [anon_sym_rows] = ACTIONS(657), - [anon_sym_reverse] = ACTIONS(657), + [anon_sym_table] = ACTIONS(1357), + [anon_sym_assert] = ACTIONS(1359), + [anon_sym_assert_equal] = ACTIONS(1359), + [anon_sym_download] = ACTIONS(1359), + [anon_sym_help] = ACTIONS(1359), + [anon_sym_length] = ACTIONS(1359), + [anon_sym_output] = ACTIONS(1359), + [anon_sym_output_error] = ACTIONS(1359), + [anon_sym_type] = ACTIONS(1359), + [anon_sym_append] = ACTIONS(1359), + [anon_sym_metadata] = ACTIONS(1359), + [anon_sym_move] = ACTIONS(1359), + [anon_sym_read] = ACTIONS(1359), + [anon_sym_workdir] = ACTIONS(1359), + [anon_sym_write] = ACTIONS(1359), + [anon_sym_from_json] = ACTIONS(1359), + [anon_sym_to_json] = ACTIONS(1359), + [anon_sym_to_string] = ACTIONS(1359), + [anon_sym_to_float] = ACTIONS(1359), + [anon_sym_bash] = ACTIONS(1359), + [anon_sym_fish] = ACTIONS(1359), + [anon_sym_raw] = ACTIONS(1359), + [anon_sym_sh] = ACTIONS(1359), + [anon_sym_zsh] = ACTIONS(1359), + [anon_sym_random] = ACTIONS(1359), + [anon_sym_random_boolean] = ACTIONS(1359), + [anon_sym_random_float] = ACTIONS(1359), + [anon_sym_random_integer] = ACTIONS(1359), + [anon_sym_columns] = ACTIONS(1359), + [anon_sym_rows] = ACTIONS(1359), + [anon_sym_reverse] = ACTIONS(1359), }, [173] = { - [sym_block] = STATE(1012), - [sym_statement] = STATE(358), - [sym_expression] = STATE(859), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(754), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(1023), - [sym_if_else] = STATE(1023), - [sym_if] = STATE(985), - [sym_match] = STATE(1023), - [sym_while] = STATE(1023), - [sym_for] = STATE(1023), - [sym_transform] = STATE(1023), - [sym_filter] = STATE(1023), - [sym_find] = STATE(1023), - [sym_remove] = STATE(1023), - [sym_reduce] = STATE(1023), - [sym_select] = STATE(1023), - [sym_insert] = STATE(1023), - [sym_async] = STATE(1023), - [sym_identifier_list] = STATE(1841), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(315), - [aux_sym_block_repeat1] = STATE(358), - [sym_identifier] = ACTIONS(1566), + [sym_expression] = STATE(354), + [sym__expression_kind] = STATE(415), + [aux_sym__expression_list] = STATE(173), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_identifier_list] = STATE(1225), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(170), + [ts_builtin_sym_end] = ACTIONS(1361), + [sym_identifier] = ACTIONS(1363), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(1570), - [anon_sym_match] = ACTIONS(1572), - [anon_sym_EQ_GT] = ACTIONS(631), - [anon_sym_while] = ACTIONS(1574), - [anon_sym_for] = ACTIONS(1576), - [anon_sym_asyncfor] = ACTIONS(1578), - [anon_sym_transform] = ACTIONS(1580), - [anon_sym_filter] = ACTIONS(1582), - [anon_sym_find] = ACTIONS(1584), - [anon_sym_remove] = ACTIONS(1586), - [anon_sym_reduce] = ACTIONS(1588), - [anon_sym_select] = ACTIONS(1590), - [anon_sym_insert] = ACTIONS(651), - [anon_sym_async] = ACTIONS(1592), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(655), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_assert_equal] = ACTIONS(657), - [anon_sym_download] = ACTIONS(657), - [anon_sym_help] = ACTIONS(657), - [anon_sym_length] = ACTIONS(657), - [anon_sym_output] = ACTIONS(657), - [anon_sym_output_error] = ACTIONS(657), - [anon_sym_type] = ACTIONS(657), - [anon_sym_append] = ACTIONS(657), - [anon_sym_metadata] = ACTIONS(657), - [anon_sym_move] = ACTIONS(657), - [anon_sym_read] = ACTIONS(657), - [anon_sym_workdir] = ACTIONS(657), - [anon_sym_write] = ACTIONS(657), - [anon_sym_from_json] = ACTIONS(657), - [anon_sym_to_json] = ACTIONS(657), - [anon_sym_to_string] = ACTIONS(657), - [anon_sym_to_float] = ACTIONS(657), - [anon_sym_bash] = ACTIONS(657), - [anon_sym_fish] = ACTIONS(657), - [anon_sym_raw] = ACTIONS(657), - [anon_sym_sh] = ACTIONS(657), - [anon_sym_zsh] = ACTIONS(657), - [anon_sym_random] = ACTIONS(657), - [anon_sym_random_boolean] = ACTIONS(657), - [anon_sym_random_float] = ACTIONS(657), - [anon_sym_random_integer] = ACTIONS(657), - [anon_sym_columns] = ACTIONS(657), - [anon_sym_rows] = ACTIONS(657), - [anon_sym_reverse] = ACTIONS(657), + [anon_sym_LBRACE] = ACTIONS(1366), + [anon_sym_RBRACE] = ACTIONS(1361), + [anon_sym_SEMI] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_RPAREN] = ACTIONS(1361), + [anon_sym_COMMA] = ACTIONS(1361), + [sym_integer] = ACTIONS(1372), + [sym_float] = ACTIONS(1375), + [sym_string] = ACTIONS(1375), + [anon_sym_true] = ACTIONS(1378), + [anon_sym_false] = ACTIONS(1378), + [anon_sym_LBRACK] = ACTIONS(1381), + [anon_sym_RBRACK] = ACTIONS(1361), + [anon_sym_COLON] = ACTIONS(1361), + [anon_sym_DOT_DOT] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1361), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_SLASH] = ACTIONS(1361), + [anon_sym_PERCENT] = ACTIONS(1361), + [anon_sym_EQ_EQ] = ACTIONS(1361), + [anon_sym_BANG_EQ] = ACTIONS(1361), + [anon_sym_AMP_AMP] = ACTIONS(1361), + [anon_sym_PIPE_PIPE] = ACTIONS(1361), + [anon_sym_GT] = ACTIONS(1384), + [anon_sym_LT] = ACTIONS(1384), + [anon_sym_GT_EQ] = ACTIONS(1361), + [anon_sym_LT_EQ] = ACTIONS(1361), + [anon_sym_if] = ACTIONS(1384), + [anon_sym_elseif] = ACTIONS(1361), + [anon_sym_else] = ACTIONS(1384), + [anon_sym_match] = ACTIONS(1384), + [anon_sym_EQ_GT] = ACTIONS(1386), + [anon_sym_while] = ACTIONS(1384), + [anon_sym_for] = ACTIONS(1384), + [anon_sym_asyncfor] = ACTIONS(1361), + [anon_sym_transform] = ACTIONS(1384), + [anon_sym_filter] = ACTIONS(1384), + [anon_sym_find] = ACTIONS(1384), + [anon_sym_remove] = ACTIONS(1384), + [anon_sym_reduce] = ACTIONS(1384), + [anon_sym_select] = ACTIONS(1384), + [anon_sym_insert] = ACTIONS(1384), + [anon_sym_async] = ACTIONS(1384), + [anon_sym_PIPE] = ACTIONS(1389), + [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), }, [174] = { - [sym_block] = STATE(809), - [sym_statement] = STATE(22), - [sym_expression] = STATE(685), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(576), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(647), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1984), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(302), - [aux_sym_block_repeat1] = STATE(22), - [sym_identifier] = ACTIONS(229), + [sym_expression] = STATE(458), + [sym__expression_kind] = STATE(468), + [aux_sym__expression_list] = STATE(220), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment_operator] = STATE(336), + [sym_identifier_list] = STATE(1104), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [ts_builtin_sym_end] = ACTIONS(1313), + [sym_identifier] = ACTIONS(1315), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(245), - [anon_sym_match] = ACTIONS(247), - [anon_sym_EQ_GT] = ACTIONS(249), - [anon_sym_while] = ACTIONS(251), - [anon_sym_for] = ACTIONS(253), - [anon_sym_asyncfor] = ACTIONS(255), - [anon_sym_transform] = ACTIONS(257), - [anon_sym_filter] = ACTIONS(259), - [anon_sym_find] = ACTIONS(261), - [anon_sym_remove] = ACTIONS(263), - [anon_sym_reduce] = ACTIONS(265), - [anon_sym_select] = ACTIONS(267), - [anon_sym_insert] = ACTIONS(269), - [anon_sym_async] = ACTIONS(271), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(275), - [anon_sym_assert_equal] = ACTIONS(275), - [anon_sym_download] = ACTIONS(275), - [anon_sym_help] = ACTIONS(275), - [anon_sym_length] = ACTIONS(275), - [anon_sym_output] = ACTIONS(275), - [anon_sym_output_error] = ACTIONS(275), - [anon_sym_type] = ACTIONS(275), - [anon_sym_append] = ACTIONS(275), - [anon_sym_metadata] = ACTIONS(275), - [anon_sym_move] = ACTIONS(275), - [anon_sym_read] = ACTIONS(275), - [anon_sym_workdir] = ACTIONS(275), - [anon_sym_write] = ACTIONS(275), - [anon_sym_from_json] = ACTIONS(275), - [anon_sym_to_json] = ACTIONS(275), - [anon_sym_to_string] = ACTIONS(275), - [anon_sym_to_float] = ACTIONS(275), - [anon_sym_bash] = ACTIONS(275), - [anon_sym_fish] = ACTIONS(275), - [anon_sym_raw] = ACTIONS(275), - [anon_sym_sh] = ACTIONS(275), - [anon_sym_zsh] = ACTIONS(275), - [anon_sym_random] = ACTIONS(275), - [anon_sym_random_boolean] = ACTIONS(275), - [anon_sym_random_float] = ACTIONS(275), - [anon_sym_random_integer] = ACTIONS(275), - [anon_sym_columns] = ACTIONS(275), - [anon_sym_rows] = ACTIONS(275), - [anon_sym_reverse] = ACTIONS(275), + [anon_sym_LBRACE] = ACTIONS(1313), + [anon_sym_RBRACE] = ACTIONS(1313), + [anon_sym_SEMI] = ACTIONS(1313), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_RPAREN] = ACTIONS(1313), + [sym_integer] = ACTIONS(1315), + [sym_float] = ACTIONS(1313), + [sym_string] = ACTIONS(1313), + [anon_sym_true] = ACTIONS(1315), + [anon_sym_false] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1313), + [anon_sym_EQ] = ACTIONS(1317), + [anon_sym_COLON] = ACTIONS(1313), + [anon_sym_DOT_DOT] = ACTIONS(1313), + [anon_sym_PLUS] = ACTIONS(1315), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_PERCENT] = ACTIONS(1313), + [anon_sym_EQ_EQ] = ACTIONS(1313), + [anon_sym_BANG_EQ] = ACTIONS(1313), + [anon_sym_AMP_AMP] = ACTIONS(1313), + [anon_sym_PIPE_PIPE] = ACTIONS(1313), + [anon_sym_GT] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(1315), + [anon_sym_GT_EQ] = ACTIONS(1313), + [anon_sym_LT_EQ] = ACTIONS(1313), + [anon_sym_PLUS_EQ] = ACTIONS(1319), + [anon_sym_DASH_EQ] = ACTIONS(1319), + [anon_sym_if] = ACTIONS(1315), + [anon_sym_match] = ACTIONS(1315), + [anon_sym_EQ_GT] = ACTIONS(1313), + [anon_sym_while] = ACTIONS(1315), + [anon_sym_for] = ACTIONS(1315), + [anon_sym_asyncfor] = ACTIONS(1313), + [anon_sym_transform] = ACTIONS(1315), + [anon_sym_filter] = ACTIONS(1315), + [anon_sym_find] = ACTIONS(1315), + [anon_sym_remove] = ACTIONS(1315), + [anon_sym_reduce] = ACTIONS(1315), + [anon_sym_select] = ACTIONS(1315), + [anon_sym_insert] = ACTIONS(1315), + [anon_sym_async] = ACTIONS(1315), + [anon_sym_PIPE] = ACTIONS(1315), + [anon_sym_table] = ACTIONS(1315), + [anon_sym_assert] = ACTIONS(1315), + [anon_sym_assert_equal] = ACTIONS(1315), + [anon_sym_download] = ACTIONS(1315), + [anon_sym_help] = ACTIONS(1315), + [anon_sym_length] = ACTIONS(1315), + [anon_sym_output] = ACTIONS(1315), + [anon_sym_output_error] = ACTIONS(1315), + [anon_sym_type] = ACTIONS(1315), + [anon_sym_append] = ACTIONS(1315), + [anon_sym_metadata] = ACTIONS(1315), + [anon_sym_move] = ACTIONS(1315), + [anon_sym_read] = ACTIONS(1315), + [anon_sym_workdir] = ACTIONS(1315), + [anon_sym_write] = ACTIONS(1315), + [anon_sym_from_json] = ACTIONS(1315), + [anon_sym_to_json] = ACTIONS(1315), + [anon_sym_to_string] = ACTIONS(1315), + [anon_sym_to_float] = ACTIONS(1315), + [anon_sym_bash] = ACTIONS(1315), + [anon_sym_fish] = ACTIONS(1315), + [anon_sym_raw] = ACTIONS(1315), + [anon_sym_sh] = ACTIONS(1315), + [anon_sym_zsh] = ACTIONS(1315), + [anon_sym_random] = ACTIONS(1315), + [anon_sym_random_boolean] = ACTIONS(1315), + [anon_sym_random_float] = ACTIONS(1315), + [anon_sym_random_integer] = ACTIONS(1315), + [anon_sym_columns] = ACTIONS(1315), + [anon_sym_rows] = ACTIONS(1315), + [anon_sym_reverse] = ACTIONS(1315), }, [175] = { - [sym_block] = STATE(1019), - [sym_statement] = STATE(358), - [sym_expression] = STATE(859), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(754), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(1023), - [sym_if_else] = STATE(1023), - [sym_if] = STATE(985), - [sym_match] = STATE(1023), - [sym_while] = STATE(1023), - [sym_for] = STATE(1023), - [sym_transform] = STATE(1023), - [sym_filter] = STATE(1023), - [sym_find] = STATE(1023), - [sym_remove] = STATE(1023), - [sym_reduce] = STATE(1023), - [sym_select] = STATE(1023), - [sym_insert] = STATE(1023), - [sym_async] = STATE(1023), - [sym_identifier_list] = STATE(1841), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(315), - [aux_sym_block_repeat1] = STATE(358), - [sym_identifier] = ACTIONS(1566), + [sym_expression] = STATE(972), + [sym__expression_kind] = STATE(919), + [sym_value] = STATE(919), + [sym_boolean] = STATE(936), + [sym_list] = STATE(936), + [sym_map] = STATE(936), + [sym_index] = STATE(919), + [sym_math] = STATE(919), + [sym_logic] = STATE(919), + [sym_identifier_list] = STATE(1086), + [sym_table] = STATE(936), + [sym_function] = STATE(936), + [sym_function_call] = STATE(919), + [sym__context_defined_function] = STATE(934), + [sym_built_in_function] = STATE(934), + [sym__built_in_function_name] = STATE(550), + [aux_sym_match_repeat1] = STATE(175), + [ts_builtin_sym_end] = ACTIONS(1398), + [sym_identifier] = ACTIONS(1400), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(1570), - [anon_sym_match] = ACTIONS(1572), - [anon_sym_EQ_GT] = ACTIONS(631), - [anon_sym_while] = ACTIONS(1574), - [anon_sym_for] = ACTIONS(1576), - [anon_sym_asyncfor] = ACTIONS(1578), - [anon_sym_transform] = ACTIONS(1580), - [anon_sym_filter] = ACTIONS(1582), - [anon_sym_find] = ACTIONS(1584), - [anon_sym_remove] = ACTIONS(1586), - [anon_sym_reduce] = ACTIONS(1588), - [anon_sym_select] = ACTIONS(1590), - [anon_sym_insert] = ACTIONS(651), - [anon_sym_async] = ACTIONS(1592), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(655), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_assert_equal] = ACTIONS(657), - [anon_sym_download] = ACTIONS(657), - [anon_sym_help] = ACTIONS(657), - [anon_sym_length] = ACTIONS(657), - [anon_sym_output] = ACTIONS(657), - [anon_sym_output_error] = ACTIONS(657), - [anon_sym_type] = ACTIONS(657), - [anon_sym_append] = ACTIONS(657), - [anon_sym_metadata] = ACTIONS(657), - [anon_sym_move] = ACTIONS(657), - [anon_sym_read] = ACTIONS(657), - [anon_sym_workdir] = ACTIONS(657), - [anon_sym_write] = ACTIONS(657), - [anon_sym_from_json] = ACTIONS(657), - [anon_sym_to_json] = ACTIONS(657), - [anon_sym_to_string] = ACTIONS(657), - [anon_sym_to_float] = ACTIONS(657), - [anon_sym_bash] = ACTIONS(657), - [anon_sym_fish] = ACTIONS(657), - [anon_sym_raw] = ACTIONS(657), - [anon_sym_sh] = ACTIONS(657), - [anon_sym_zsh] = ACTIONS(657), - [anon_sym_random] = ACTIONS(657), - [anon_sym_random_boolean] = ACTIONS(657), - [anon_sym_random_float] = ACTIONS(657), - [anon_sym_random_integer] = ACTIONS(657), - [anon_sym_columns] = ACTIONS(657), - [anon_sym_rows] = ACTIONS(657), - [anon_sym_reverse] = ACTIONS(657), + [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_RBRACE] = ACTIONS(1398), + [anon_sym_SEMI] = ACTIONS(1398), + [anon_sym_LPAREN] = ACTIONS(1406), + [anon_sym_RPAREN] = ACTIONS(1398), + [anon_sym_COMMA] = ACTIONS(1398), + [sym_integer] = ACTIONS(1409), + [sym_float] = ACTIONS(1412), + [sym_string] = ACTIONS(1412), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_LBRACK] = ACTIONS(1418), + [anon_sym_RBRACK] = ACTIONS(1398), + [anon_sym_COLON] = ACTIONS(1398), + [anon_sym_DOT_DOT] = ACTIONS(1398), + [anon_sym_PLUS] = ACTIONS(1398), + [anon_sym_DASH] = ACTIONS(1421), + [anon_sym_STAR] = ACTIONS(1398), + [anon_sym_SLASH] = ACTIONS(1398), + [anon_sym_PERCENT] = ACTIONS(1398), + [anon_sym_EQ_EQ] = ACTIONS(1398), + [anon_sym_BANG_EQ] = ACTIONS(1398), + [anon_sym_AMP_AMP] = ACTIONS(1398), + [anon_sym_PIPE_PIPE] = ACTIONS(1398), + [anon_sym_GT] = ACTIONS(1421), + [anon_sym_LT] = ACTIONS(1421), + [anon_sym_GT_EQ] = ACTIONS(1398), + [anon_sym_LT_EQ] = ACTIONS(1398), + [anon_sym_if] = ACTIONS(1421), + [anon_sym_elseif] = ACTIONS(1398), + [anon_sym_else] = ACTIONS(1421), + [anon_sym_match] = ACTIONS(1421), + [anon_sym_EQ_GT] = ACTIONS(1423), + [anon_sym_while] = ACTIONS(1421), + [anon_sym_for] = ACTIONS(1421), + [anon_sym_asyncfor] = ACTIONS(1398), + [anon_sym_transform] = ACTIONS(1421), + [anon_sym_filter] = ACTIONS(1421), + [anon_sym_find] = ACTIONS(1421), + [anon_sym_remove] = ACTIONS(1421), + [anon_sym_reduce] = ACTIONS(1421), + [anon_sym_select] = ACTIONS(1421), + [anon_sym_insert] = ACTIONS(1421), + [anon_sym_async] = ACTIONS(1421), + [anon_sym_PIPE] = ACTIONS(1426), + [anon_sym_table] = ACTIONS(1429), + [anon_sym_assert] = ACTIONS(1432), + [anon_sym_assert_equal] = ACTIONS(1432), + [anon_sym_download] = ACTIONS(1432), + [anon_sym_help] = ACTIONS(1432), + [anon_sym_length] = ACTIONS(1432), + [anon_sym_output] = ACTIONS(1432), + [anon_sym_output_error] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_append] = ACTIONS(1432), + [anon_sym_metadata] = ACTIONS(1432), + [anon_sym_move] = ACTIONS(1432), + [anon_sym_read] = ACTIONS(1432), + [anon_sym_workdir] = ACTIONS(1432), + [anon_sym_write] = ACTIONS(1432), + [anon_sym_from_json] = ACTIONS(1432), + [anon_sym_to_json] = ACTIONS(1432), + [anon_sym_to_string] = ACTIONS(1432), + [anon_sym_to_float] = ACTIONS(1432), + [anon_sym_bash] = ACTIONS(1432), + [anon_sym_fish] = ACTIONS(1432), + [anon_sym_raw] = ACTIONS(1432), + [anon_sym_sh] = ACTIONS(1432), + [anon_sym_zsh] = ACTIONS(1432), + [anon_sym_random] = ACTIONS(1432), + [anon_sym_random_boolean] = ACTIONS(1432), + [anon_sym_random_float] = ACTIONS(1432), + [anon_sym_random_integer] = ACTIONS(1432), + [anon_sym_columns] = ACTIONS(1432), + [anon_sym_rows] = ACTIONS(1432), + [anon_sym_reverse] = ACTIONS(1432), }, [176] = { - [sym_block] = STATE(810), - [sym_statement] = STATE(22), - [sym_expression] = STATE(685), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(576), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(647), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1984), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(302), - [aux_sym_block_repeat1] = STATE(22), - [sym_identifier] = ACTIONS(229), + [sym_expression] = STATE(377), + [sym__expression_kind] = STATE(415), + [aux_sym__expression_list] = STATE(176), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_identifier_list] = STATE(1100), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(181), + [ts_builtin_sym_end] = ACTIONS(1361), + [sym_identifier] = ACTIONS(1363), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(245), - [anon_sym_match] = ACTIONS(247), - [anon_sym_EQ_GT] = ACTIONS(249), - [anon_sym_while] = ACTIONS(251), - [anon_sym_for] = ACTIONS(253), - [anon_sym_asyncfor] = ACTIONS(255), - [anon_sym_transform] = ACTIONS(257), - [anon_sym_filter] = ACTIONS(259), - [anon_sym_find] = ACTIONS(261), - [anon_sym_remove] = ACTIONS(263), - [anon_sym_reduce] = ACTIONS(265), - [anon_sym_select] = ACTIONS(267), - [anon_sym_insert] = ACTIONS(269), - [anon_sym_async] = ACTIONS(271), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(275), - [anon_sym_assert_equal] = ACTIONS(275), - [anon_sym_download] = ACTIONS(275), - [anon_sym_help] = ACTIONS(275), - [anon_sym_length] = ACTIONS(275), - [anon_sym_output] = ACTIONS(275), - [anon_sym_output_error] = ACTIONS(275), - [anon_sym_type] = ACTIONS(275), - [anon_sym_append] = ACTIONS(275), - [anon_sym_metadata] = ACTIONS(275), - [anon_sym_move] = ACTIONS(275), - [anon_sym_read] = ACTIONS(275), - [anon_sym_workdir] = ACTIONS(275), - [anon_sym_write] = ACTIONS(275), - [anon_sym_from_json] = ACTIONS(275), - [anon_sym_to_json] = ACTIONS(275), - [anon_sym_to_string] = ACTIONS(275), - [anon_sym_to_float] = ACTIONS(275), - [anon_sym_bash] = ACTIONS(275), - [anon_sym_fish] = ACTIONS(275), - [anon_sym_raw] = ACTIONS(275), - [anon_sym_sh] = ACTIONS(275), - [anon_sym_zsh] = ACTIONS(275), - [anon_sym_random] = ACTIONS(275), - [anon_sym_random_boolean] = ACTIONS(275), - [anon_sym_random_float] = ACTIONS(275), - [anon_sym_random_integer] = ACTIONS(275), - [anon_sym_columns] = ACTIONS(275), - [anon_sym_rows] = ACTIONS(275), - [anon_sym_reverse] = ACTIONS(275), + [anon_sym_LBRACE] = ACTIONS(1366), + [anon_sym_RBRACE] = ACTIONS(1361), + [anon_sym_SEMI] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_RPAREN] = ACTIONS(1361), + [anon_sym_COMMA] = ACTIONS(1361), + [sym_integer] = ACTIONS(1372), + [sym_float] = ACTIONS(1375), + [sym_string] = ACTIONS(1375), + [anon_sym_true] = ACTIONS(1378), + [anon_sym_false] = ACTIONS(1378), + [anon_sym_LBRACK] = ACTIONS(1381), + [anon_sym_RBRACK] = ACTIONS(1361), + [anon_sym_COLON] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1361), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_SLASH] = ACTIONS(1361), + [anon_sym_PERCENT] = ACTIONS(1361), + [anon_sym_EQ_EQ] = ACTIONS(1361), + [anon_sym_BANG_EQ] = ACTIONS(1361), + [anon_sym_AMP_AMP] = ACTIONS(1361), + [anon_sym_PIPE_PIPE] = ACTIONS(1361), + [anon_sym_GT] = ACTIONS(1384), + [anon_sym_LT] = ACTIONS(1384), + [anon_sym_GT_EQ] = ACTIONS(1361), + [anon_sym_LT_EQ] = ACTIONS(1361), + [anon_sym_if] = ACTIONS(1384), + [anon_sym_elseif] = ACTIONS(1361), + [anon_sym_else] = ACTIONS(1384), + [anon_sym_match] = ACTIONS(1384), + [anon_sym_EQ_GT] = ACTIONS(1435), + [anon_sym_while] = ACTIONS(1384), + [anon_sym_for] = ACTIONS(1384), + [anon_sym_asyncfor] = ACTIONS(1361), + [anon_sym_transform] = ACTIONS(1384), + [anon_sym_filter] = ACTIONS(1384), + [anon_sym_find] = ACTIONS(1384), + [anon_sym_remove] = ACTIONS(1384), + [anon_sym_reduce] = ACTIONS(1384), + [anon_sym_select] = ACTIONS(1384), + [anon_sym_insert] = ACTIONS(1384), + [anon_sym_async] = ACTIONS(1384), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_table] = ACTIONS(1438), + [anon_sym_assert] = ACTIONS(1441), + [anon_sym_assert_equal] = ACTIONS(1441), + [anon_sym_download] = ACTIONS(1441), + [anon_sym_help] = ACTIONS(1441), + [anon_sym_length] = ACTIONS(1441), + [anon_sym_output] = ACTIONS(1441), + [anon_sym_output_error] = ACTIONS(1441), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_append] = ACTIONS(1441), + [anon_sym_metadata] = ACTIONS(1441), + [anon_sym_move] = ACTIONS(1441), + [anon_sym_read] = ACTIONS(1441), + [anon_sym_workdir] = ACTIONS(1441), + [anon_sym_write] = ACTIONS(1441), + [anon_sym_from_json] = ACTIONS(1441), + [anon_sym_to_json] = ACTIONS(1441), + [anon_sym_to_string] = ACTIONS(1441), + [anon_sym_to_float] = ACTIONS(1441), + [anon_sym_bash] = ACTIONS(1441), + [anon_sym_fish] = ACTIONS(1441), + [anon_sym_raw] = ACTIONS(1441), + [anon_sym_sh] = ACTIONS(1441), + [anon_sym_zsh] = ACTIONS(1441), + [anon_sym_random] = ACTIONS(1441), + [anon_sym_random_boolean] = ACTIONS(1441), + [anon_sym_random_float] = ACTIONS(1441), + [anon_sym_random_integer] = ACTIONS(1441), + [anon_sym_columns] = ACTIONS(1441), + [anon_sym_rows] = ACTIONS(1441), + [anon_sym_reverse] = ACTIONS(1441), }, [177] = { - [sym_block] = STATE(1024), - [sym_statement] = STATE(358), - [sym_expression] = STATE(859), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(754), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(1023), - [sym_if_else] = STATE(1023), - [sym_if] = STATE(985), - [sym_match] = STATE(1023), - [sym_while] = STATE(1023), - [sym_for] = STATE(1023), - [sym_transform] = STATE(1023), - [sym_filter] = STATE(1023), - [sym_find] = STATE(1023), - [sym_remove] = STATE(1023), - [sym_reduce] = STATE(1023), - [sym_select] = STATE(1023), - [sym_insert] = STATE(1023), - [sym_async] = STATE(1023), - [sym_identifier_list] = STATE(1841), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(315), - [aux_sym_block_repeat1] = STATE(358), - [sym_identifier] = ACTIONS(1566), + [sym_expression] = STATE(377), + [sym__expression_kind] = STATE(415), + [aux_sym__expression_list] = STATE(176), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_identifier_list] = STATE(1100), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(181), + [ts_builtin_sym_end] = ACTIONS(1321), + [sym_identifier] = ACTIONS(1323), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(1570), - [anon_sym_match] = ACTIONS(1572), - [anon_sym_EQ_GT] = ACTIONS(631), - [anon_sym_while] = ACTIONS(1574), - [anon_sym_for] = ACTIONS(1576), - [anon_sym_asyncfor] = ACTIONS(1578), - [anon_sym_transform] = ACTIONS(1580), - [anon_sym_filter] = ACTIONS(1582), - [anon_sym_find] = ACTIONS(1584), - [anon_sym_remove] = ACTIONS(1586), - [anon_sym_reduce] = ACTIONS(1588), - [anon_sym_select] = ACTIONS(1590), - [anon_sym_insert] = ACTIONS(651), - [anon_sym_async] = ACTIONS(1592), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_RBRACE] = ACTIONS(1321), + [anon_sym_SEMI] = ACTIONS(1321), + [anon_sym_LPAREN] = ACTIONS(59), + [anon_sym_RPAREN] = ACTIONS(1321), + [anon_sym_COMMA] = ACTIONS(1321), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_RBRACK] = ACTIONS(1321), + [anon_sym_COLON] = ACTIONS(1321), + [anon_sym_PLUS] = ACTIONS(1321), + [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_STAR] = ACTIONS(1321), + [anon_sym_SLASH] = ACTIONS(1321), + [anon_sym_PERCENT] = ACTIONS(1321), + [anon_sym_EQ_EQ] = ACTIONS(1321), + [anon_sym_BANG_EQ] = ACTIONS(1321), + [anon_sym_AMP_AMP] = ACTIONS(1321), + [anon_sym_PIPE_PIPE] = ACTIONS(1321), + [anon_sym_GT] = ACTIONS(1327), + [anon_sym_LT] = ACTIONS(1327), + [anon_sym_GT_EQ] = ACTIONS(1321), + [anon_sym_LT_EQ] = ACTIONS(1321), + [anon_sym_if] = ACTIONS(1327), + [anon_sym_elseif] = ACTIONS(1321), + [anon_sym_else] = ACTIONS(1327), + [anon_sym_match] = ACTIONS(1327), + [anon_sym_EQ_GT] = ACTIONS(123), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_for] = ACTIONS(1327), + [anon_sym_asyncfor] = ACTIONS(1321), + [anon_sym_transform] = ACTIONS(1327), + [anon_sym_filter] = ACTIONS(1327), + [anon_sym_find] = ACTIONS(1327), + [anon_sym_remove] = ACTIONS(1327), + [anon_sym_reduce] = ACTIONS(1327), + [anon_sym_select] = ACTIONS(1327), + [anon_sym_insert] = ACTIONS(1327), + [anon_sym_async] = ACTIONS(1327), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(655), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_assert_equal] = ACTIONS(657), - [anon_sym_download] = ACTIONS(657), - [anon_sym_help] = ACTIONS(657), - [anon_sym_length] = ACTIONS(657), - [anon_sym_output] = ACTIONS(657), - [anon_sym_output_error] = ACTIONS(657), - [anon_sym_type] = ACTIONS(657), - [anon_sym_append] = ACTIONS(657), - [anon_sym_metadata] = ACTIONS(657), - [anon_sym_move] = ACTIONS(657), - [anon_sym_read] = ACTIONS(657), - [anon_sym_workdir] = ACTIONS(657), - [anon_sym_write] = ACTIONS(657), - [anon_sym_from_json] = ACTIONS(657), - [anon_sym_to_json] = ACTIONS(657), - [anon_sym_to_string] = ACTIONS(657), - [anon_sym_to_float] = ACTIONS(657), - [anon_sym_bash] = ACTIONS(657), - [anon_sym_fish] = ACTIONS(657), - [anon_sym_raw] = ACTIONS(657), - [anon_sym_sh] = ACTIONS(657), - [anon_sym_zsh] = ACTIONS(657), - [anon_sym_random] = ACTIONS(657), - [anon_sym_random_boolean] = ACTIONS(657), - [anon_sym_random_float] = ACTIONS(657), - [anon_sym_random_integer] = ACTIONS(657), - [anon_sym_columns] = ACTIONS(657), - [anon_sym_rows] = ACTIONS(657), - [anon_sym_reverse] = ACTIONS(657), + [anon_sym_table] = ACTIONS(147), + [anon_sym_assert] = ACTIONS(149), + [anon_sym_assert_equal] = ACTIONS(149), + [anon_sym_download] = ACTIONS(149), + [anon_sym_help] = ACTIONS(149), + [anon_sym_length] = ACTIONS(149), + [anon_sym_output] = ACTIONS(149), + [anon_sym_output_error] = ACTIONS(149), + [anon_sym_type] = ACTIONS(149), + [anon_sym_append] = ACTIONS(149), + [anon_sym_metadata] = ACTIONS(149), + [anon_sym_move] = ACTIONS(149), + [anon_sym_read] = ACTIONS(149), + [anon_sym_workdir] = ACTIONS(149), + [anon_sym_write] = ACTIONS(149), + [anon_sym_from_json] = ACTIONS(149), + [anon_sym_to_json] = ACTIONS(149), + [anon_sym_to_string] = ACTIONS(149), + [anon_sym_to_float] = ACTIONS(149), + [anon_sym_bash] = ACTIONS(149), + [anon_sym_fish] = ACTIONS(149), + [anon_sym_raw] = ACTIONS(149), + [anon_sym_sh] = ACTIONS(149), + [anon_sym_zsh] = ACTIONS(149), + [anon_sym_random] = ACTIONS(149), + [anon_sym_random_boolean] = ACTIONS(149), + [anon_sym_random_float] = ACTIONS(149), + [anon_sym_random_integer] = ACTIONS(149), + [anon_sym_columns] = ACTIONS(149), + [anon_sym_rows] = ACTIONS(149), + [anon_sym_reverse] = ACTIONS(149), }, [178] = { - [sym_block] = STATE(639), - [sym_statement] = STATE(10), - [sym_expression] = STATE(571), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(631), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(558), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(1817), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(265), - [aux_sym_block_repeat1] = STATE(10), - [sym_identifier] = ACTIONS(55), + [sym_expression] = STATE(965), + [sym__expression_kind] = STATE(919), + [sym_value] = STATE(919), + [sym_boolean] = STATE(936), + [sym_list] = STATE(936), + [sym_map] = STATE(936), + [sym_index] = STATE(919), + [sym_math] = STATE(919), + [sym_logic] = STATE(919), + [sym_identifier_list] = STATE(1086), + [sym_table] = STATE(936), + [sym_function] = STATE(936), + [sym_function_call] = STATE(919), + [sym__context_defined_function] = STATE(934), + [sym_built_in_function] = STATE(934), + [sym__built_in_function_name] = STATE(550), + [aux_sym_match_repeat1] = STATE(182), + [ts_builtin_sym_end] = ACTIONS(1337), + [sym_identifier] = ACTIONS(1339), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(59), - [sym_integer] = ACTIONS(61), - [sym_float] = ACTIONS(63), - [sym_string] = ACTIONS(63), - [anon_sym_true] = ACTIONS(65), - [anon_sym_false] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = 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_asyncfor] = ACTIONS(91), - [anon_sym_transform] = ACTIONS(93), - [anon_sym_filter] = ACTIONS(95), - [anon_sym_find] = ACTIONS(97), - [anon_sym_remove] = ACTIONS(99), - [anon_sym_reduce] = ACTIONS(101), - [anon_sym_select] = ACTIONS(103), - [anon_sym_insert] = ACTIONS(105), - [anon_sym_async] = ACTIONS(107), + [anon_sym_LBRACE] = ACTIONS(1341), + [anon_sym_RBRACE] = ACTIONS(1337), + [anon_sym_SEMI] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(1343), + [anon_sym_RPAREN] = ACTIONS(1337), + [anon_sym_COMMA] = ACTIONS(1337), + [sym_integer] = ACTIONS(1345), + [sym_float] = ACTIONS(1347), + [sym_string] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1349), + [anon_sym_false] = ACTIONS(1349), + [anon_sym_LBRACK] = ACTIONS(1351), + [anon_sym_RBRACK] = ACTIONS(1337), + [anon_sym_COLON] = ACTIONS(1337), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_STAR] = ACTIONS(1337), + [anon_sym_SLASH] = ACTIONS(1337), + [anon_sym_PERCENT] = ACTIONS(1337), + [anon_sym_EQ_EQ] = ACTIONS(1337), + [anon_sym_BANG_EQ] = ACTIONS(1337), + [anon_sym_AMP_AMP] = ACTIONS(1337), + [anon_sym_PIPE_PIPE] = ACTIONS(1337), + [anon_sym_GT] = ACTIONS(1353), + [anon_sym_LT] = ACTIONS(1353), + [anon_sym_GT_EQ] = ACTIONS(1337), + [anon_sym_LT_EQ] = ACTIONS(1337), + [anon_sym_if] = ACTIONS(1353), + [anon_sym_elseif] = ACTIONS(1337), + [anon_sym_else] = ACTIONS(1353), + [anon_sym_match] = ACTIONS(1353), + [anon_sym_EQ_GT] = ACTIONS(1355), + [anon_sym_while] = ACTIONS(1353), + [anon_sym_for] = ACTIONS(1353), + [anon_sym_asyncfor] = ACTIONS(1337), + [anon_sym_transform] = ACTIONS(1353), + [anon_sym_filter] = ACTIONS(1353), + [anon_sym_find] = ACTIONS(1353), + [anon_sym_remove] = ACTIONS(1353), + [anon_sym_reduce] = ACTIONS(1353), + [anon_sym_select] = ACTIONS(1353), + [anon_sym_insert] = ACTIONS(1353), + [anon_sym_async] = ACTIONS(1353), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(111), - [anon_sym_assert] = ACTIONS(113), - [anon_sym_assert_equal] = ACTIONS(113), - [anon_sym_download] = ACTIONS(113), - [anon_sym_help] = ACTIONS(113), - [anon_sym_length] = ACTIONS(113), - [anon_sym_output] = ACTIONS(113), - [anon_sym_output_error] = ACTIONS(113), - [anon_sym_type] = ACTIONS(113), - [anon_sym_append] = ACTIONS(113), - [anon_sym_metadata] = ACTIONS(113), - [anon_sym_move] = ACTIONS(113), - [anon_sym_read] = ACTIONS(113), - [anon_sym_workdir] = ACTIONS(113), - [anon_sym_write] = ACTIONS(113), - [anon_sym_from_json] = ACTIONS(113), - [anon_sym_to_json] = ACTIONS(113), - [anon_sym_to_string] = ACTIONS(113), - [anon_sym_to_float] = ACTIONS(113), - [anon_sym_bash] = ACTIONS(113), - [anon_sym_fish] = ACTIONS(113), - [anon_sym_raw] = ACTIONS(113), - [anon_sym_sh] = ACTIONS(113), - [anon_sym_zsh] = ACTIONS(113), - [anon_sym_random] = ACTIONS(113), - [anon_sym_random_boolean] = ACTIONS(113), - [anon_sym_random_float] = ACTIONS(113), - [anon_sym_random_integer] = ACTIONS(113), - [anon_sym_columns] = ACTIONS(113), - [anon_sym_rows] = ACTIONS(113), - [anon_sym_reverse] = ACTIONS(113), + [anon_sym_table] = ACTIONS(1357), + [anon_sym_assert] = ACTIONS(1359), + [anon_sym_assert_equal] = ACTIONS(1359), + [anon_sym_download] = ACTIONS(1359), + [anon_sym_help] = ACTIONS(1359), + [anon_sym_length] = ACTIONS(1359), + [anon_sym_output] = ACTIONS(1359), + [anon_sym_output_error] = ACTIONS(1359), + [anon_sym_type] = ACTIONS(1359), + [anon_sym_append] = ACTIONS(1359), + [anon_sym_metadata] = ACTIONS(1359), + [anon_sym_move] = ACTIONS(1359), + [anon_sym_read] = ACTIONS(1359), + [anon_sym_workdir] = ACTIONS(1359), + [anon_sym_write] = ACTIONS(1359), + [anon_sym_from_json] = ACTIONS(1359), + [anon_sym_to_json] = ACTIONS(1359), + [anon_sym_to_string] = ACTIONS(1359), + [anon_sym_to_float] = ACTIONS(1359), + [anon_sym_bash] = ACTIONS(1359), + [anon_sym_fish] = ACTIONS(1359), + [anon_sym_raw] = ACTIONS(1359), + [anon_sym_sh] = ACTIONS(1359), + [anon_sym_zsh] = ACTIONS(1359), + [anon_sym_random] = ACTIONS(1359), + [anon_sym_random_boolean] = ACTIONS(1359), + [anon_sym_random_float] = ACTIONS(1359), + [anon_sym_random_integer] = ACTIONS(1359), + [anon_sym_columns] = ACTIONS(1359), + [anon_sym_rows] = ACTIONS(1359), + [anon_sym_reverse] = ACTIONS(1359), }, [179] = { - [sym_block] = STATE(1026), - [sym_statement] = STATE(358), - [sym_expression] = STATE(859), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(754), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(1023), - [sym_if_else] = STATE(1023), - [sym_if] = STATE(985), - [sym_match] = STATE(1023), - [sym_while] = STATE(1023), - [sym_for] = STATE(1023), - [sym_transform] = STATE(1023), - [sym_filter] = STATE(1023), - [sym_find] = STATE(1023), - [sym_remove] = STATE(1023), - [sym_reduce] = STATE(1023), - [sym_select] = STATE(1023), - [sym_insert] = STATE(1023), - [sym_async] = STATE(1023), - [sym_identifier_list] = STATE(1841), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(315), - [aux_sym_block_repeat1] = STATE(358), - [sym_identifier] = ACTIONS(1566), + [sym_expression] = STATE(472), + [sym__expression_kind] = STATE(468), + [aux_sym__expression_list] = STATE(224), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment_operator] = STATE(335), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [ts_builtin_sym_end] = ACTIONS(1313), + [sym_identifier] = ACTIONS(1315), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(1570), - [anon_sym_match] = ACTIONS(1572), - [anon_sym_EQ_GT] = ACTIONS(631), - [anon_sym_while] = ACTIONS(1574), - [anon_sym_for] = ACTIONS(1576), - [anon_sym_asyncfor] = ACTIONS(1578), - [anon_sym_transform] = ACTIONS(1580), - [anon_sym_filter] = ACTIONS(1582), - [anon_sym_find] = ACTIONS(1584), - [anon_sym_remove] = ACTIONS(1586), - [anon_sym_reduce] = ACTIONS(1588), - [anon_sym_select] = ACTIONS(1590), - [anon_sym_insert] = ACTIONS(651), - [anon_sym_async] = ACTIONS(1592), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(655), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_assert_equal] = ACTIONS(657), - [anon_sym_download] = ACTIONS(657), - [anon_sym_help] = ACTIONS(657), - [anon_sym_length] = ACTIONS(657), - [anon_sym_output] = ACTIONS(657), - [anon_sym_output_error] = ACTIONS(657), - [anon_sym_type] = ACTIONS(657), - [anon_sym_append] = ACTIONS(657), - [anon_sym_metadata] = ACTIONS(657), - [anon_sym_move] = ACTIONS(657), - [anon_sym_read] = ACTIONS(657), - [anon_sym_workdir] = ACTIONS(657), - [anon_sym_write] = ACTIONS(657), - [anon_sym_from_json] = ACTIONS(657), - [anon_sym_to_json] = ACTIONS(657), - [anon_sym_to_string] = ACTIONS(657), - [anon_sym_to_float] = ACTIONS(657), - [anon_sym_bash] = ACTIONS(657), - [anon_sym_fish] = ACTIONS(657), - [anon_sym_raw] = ACTIONS(657), - [anon_sym_sh] = ACTIONS(657), - [anon_sym_zsh] = ACTIONS(657), - [anon_sym_random] = ACTIONS(657), - [anon_sym_random_boolean] = ACTIONS(657), - [anon_sym_random_float] = ACTIONS(657), - [anon_sym_random_integer] = ACTIONS(657), - [anon_sym_columns] = ACTIONS(657), - [anon_sym_rows] = ACTIONS(657), - [anon_sym_reverse] = ACTIONS(657), + [anon_sym_LBRACE] = ACTIONS(1313), + [anon_sym_RBRACE] = ACTIONS(1313), + [anon_sym_SEMI] = ACTIONS(1313), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_RPAREN] = ACTIONS(1313), + [sym_integer] = ACTIONS(1315), + [sym_float] = ACTIONS(1313), + [sym_string] = ACTIONS(1313), + [anon_sym_true] = ACTIONS(1315), + [anon_sym_false] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1313), + [anon_sym_EQ] = ACTIONS(1317), + [anon_sym_COLON] = ACTIONS(1313), + [anon_sym_PLUS] = ACTIONS(1315), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_PERCENT] = ACTIONS(1313), + [anon_sym_EQ_EQ] = ACTIONS(1313), + [anon_sym_BANG_EQ] = ACTIONS(1313), + [anon_sym_AMP_AMP] = ACTIONS(1313), + [anon_sym_PIPE_PIPE] = ACTIONS(1313), + [anon_sym_GT] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(1315), + [anon_sym_GT_EQ] = ACTIONS(1313), + [anon_sym_LT_EQ] = ACTIONS(1313), + [anon_sym_PLUS_EQ] = ACTIONS(1319), + [anon_sym_DASH_EQ] = ACTIONS(1319), + [anon_sym_if] = ACTIONS(1315), + [anon_sym_match] = ACTIONS(1315), + [anon_sym_EQ_GT] = ACTIONS(1313), + [anon_sym_while] = ACTIONS(1315), + [anon_sym_for] = ACTIONS(1315), + [anon_sym_asyncfor] = ACTIONS(1313), + [anon_sym_transform] = ACTIONS(1315), + [anon_sym_filter] = ACTIONS(1315), + [anon_sym_find] = ACTIONS(1315), + [anon_sym_remove] = ACTIONS(1315), + [anon_sym_reduce] = ACTIONS(1315), + [anon_sym_select] = ACTIONS(1315), + [anon_sym_insert] = ACTIONS(1315), + [anon_sym_async] = ACTIONS(1315), + [anon_sym_PIPE] = ACTIONS(1315), + [anon_sym_table] = ACTIONS(1315), + [anon_sym_assert] = ACTIONS(1315), + [anon_sym_assert_equal] = ACTIONS(1315), + [anon_sym_download] = ACTIONS(1315), + [anon_sym_help] = ACTIONS(1315), + [anon_sym_length] = ACTIONS(1315), + [anon_sym_output] = ACTIONS(1315), + [anon_sym_output_error] = ACTIONS(1315), + [anon_sym_type] = ACTIONS(1315), + [anon_sym_append] = ACTIONS(1315), + [anon_sym_metadata] = ACTIONS(1315), + [anon_sym_move] = ACTIONS(1315), + [anon_sym_read] = ACTIONS(1315), + [anon_sym_workdir] = ACTIONS(1315), + [anon_sym_write] = ACTIONS(1315), + [anon_sym_from_json] = ACTIONS(1315), + [anon_sym_to_json] = ACTIONS(1315), + [anon_sym_to_string] = ACTIONS(1315), + [anon_sym_to_float] = ACTIONS(1315), + [anon_sym_bash] = ACTIONS(1315), + [anon_sym_fish] = ACTIONS(1315), + [anon_sym_raw] = ACTIONS(1315), + [anon_sym_sh] = ACTIONS(1315), + [anon_sym_zsh] = ACTIONS(1315), + [anon_sym_random] = ACTIONS(1315), + [anon_sym_random_boolean] = ACTIONS(1315), + [anon_sym_random_float] = ACTIONS(1315), + [anon_sym_random_integer] = ACTIONS(1315), + [anon_sym_columns] = ACTIONS(1315), + [anon_sym_rows] = ACTIONS(1315), + [anon_sym_reverse] = ACTIONS(1315), }, [180] = { - [sym_block] = STATE(1071), - [sym_statement] = STATE(382), - [sym_expression] = STATE(934), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(842), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(983), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [aux_sym_block_repeat1] = STATE(382), - [sym_identifier] = ACTIONS(2162), + [sym_expression] = STATE(377), + [sym__expression_kind] = STATE(415), + [aux_sym__expression_list] = STATE(176), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_identifier_list] = STATE(1100), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(181), + [ts_builtin_sym_end] = ACTIONS(1329), + [sym_identifier] = ACTIONS(1323), [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(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(1570), - [anon_sym_match] = ACTIONS(2166), - [anon_sym_EQ_GT] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(2168), - [anon_sym_for] = ACTIONS(2170), - [anon_sym_asyncfor] = ACTIONS(2172), - [anon_sym_transform] = ACTIONS(2174), - [anon_sym_filter] = ACTIONS(2176), - [anon_sym_find] = ACTIONS(2178), - [anon_sym_remove] = ACTIONS(2180), - [anon_sym_reduce] = ACTIONS(2182), - [anon_sym_select] = ACTIONS(2184), - [anon_sym_insert] = ACTIONS(1224), - [anon_sym_async] = ACTIONS(2186), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_RBRACE] = ACTIONS(1329), + [anon_sym_SEMI] = ACTIONS(1329), + [anon_sym_LPAREN] = ACTIONS(59), + [anon_sym_RPAREN] = ACTIONS(1329), + [anon_sym_COMMA] = ACTIONS(1329), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_RBRACK] = ACTIONS(1329), + [anon_sym_COLON] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1331), + [anon_sym_STAR] = ACTIONS(1329), + [anon_sym_SLASH] = ACTIONS(1329), + [anon_sym_PERCENT] = ACTIONS(1329), + [anon_sym_EQ_EQ] = ACTIONS(1329), + [anon_sym_BANG_EQ] = ACTIONS(1329), + [anon_sym_AMP_AMP] = ACTIONS(1329), + [anon_sym_PIPE_PIPE] = ACTIONS(1329), + [anon_sym_GT] = ACTIONS(1331), + [anon_sym_LT] = ACTIONS(1331), + [anon_sym_GT_EQ] = ACTIONS(1329), + [anon_sym_LT_EQ] = ACTIONS(1329), + [anon_sym_if] = ACTIONS(1331), + [anon_sym_elseif] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1331), + [anon_sym_match] = ACTIONS(1331), + [anon_sym_EQ_GT] = ACTIONS(123), + [anon_sym_while] = ACTIONS(1331), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_asyncfor] = ACTIONS(1329), + [anon_sym_transform] = ACTIONS(1331), + [anon_sym_filter] = ACTIONS(1331), + [anon_sym_find] = ACTIONS(1331), + [anon_sym_remove] = ACTIONS(1331), + [anon_sym_reduce] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1331), + [anon_sym_insert] = ACTIONS(1331), + [anon_sym_async] = ACTIONS(1331), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1228), - [anon_sym_assert] = ACTIONS(1230), - [anon_sym_assert_equal] = ACTIONS(1230), - [anon_sym_download] = ACTIONS(1230), - [anon_sym_help] = ACTIONS(1230), - [anon_sym_length] = ACTIONS(1230), - [anon_sym_output] = ACTIONS(1230), - [anon_sym_output_error] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_append] = ACTIONS(1230), - [anon_sym_metadata] = ACTIONS(1230), - [anon_sym_move] = ACTIONS(1230), - [anon_sym_read] = ACTIONS(1230), - [anon_sym_workdir] = ACTIONS(1230), - [anon_sym_write] = ACTIONS(1230), - [anon_sym_from_json] = ACTIONS(1230), - [anon_sym_to_json] = ACTIONS(1230), - [anon_sym_to_string] = ACTIONS(1230), - [anon_sym_to_float] = ACTIONS(1230), - [anon_sym_bash] = ACTIONS(1230), - [anon_sym_fish] = ACTIONS(1230), - [anon_sym_raw] = ACTIONS(1230), - [anon_sym_sh] = ACTIONS(1230), - [anon_sym_zsh] = ACTIONS(1230), - [anon_sym_random] = ACTIONS(1230), - [anon_sym_random_boolean] = ACTIONS(1230), - [anon_sym_random_float] = ACTIONS(1230), - [anon_sym_random_integer] = ACTIONS(1230), - [anon_sym_columns] = ACTIONS(1230), - [anon_sym_rows] = ACTIONS(1230), - [anon_sym_reverse] = ACTIONS(1230), + [anon_sym_table] = ACTIONS(147), + [anon_sym_assert] = ACTIONS(149), + [anon_sym_assert_equal] = ACTIONS(149), + [anon_sym_download] = ACTIONS(149), + [anon_sym_help] = ACTIONS(149), + [anon_sym_length] = ACTIONS(149), + [anon_sym_output] = ACTIONS(149), + [anon_sym_output_error] = ACTIONS(149), + [anon_sym_type] = ACTIONS(149), + [anon_sym_append] = ACTIONS(149), + [anon_sym_metadata] = ACTIONS(149), + [anon_sym_move] = ACTIONS(149), + [anon_sym_read] = ACTIONS(149), + [anon_sym_workdir] = ACTIONS(149), + [anon_sym_write] = ACTIONS(149), + [anon_sym_from_json] = ACTIONS(149), + [anon_sym_to_json] = ACTIONS(149), + [anon_sym_to_string] = ACTIONS(149), + [anon_sym_to_float] = ACTIONS(149), + [anon_sym_bash] = ACTIONS(149), + [anon_sym_fish] = ACTIONS(149), + [anon_sym_raw] = ACTIONS(149), + [anon_sym_sh] = ACTIONS(149), + [anon_sym_zsh] = ACTIONS(149), + [anon_sym_random] = ACTIONS(149), + [anon_sym_random_boolean] = ACTIONS(149), + [anon_sym_random_float] = ACTIONS(149), + [anon_sym_random_integer] = ACTIONS(149), + [anon_sym_columns] = ACTIONS(149), + [anon_sym_rows] = ACTIONS(149), + [anon_sym_reverse] = ACTIONS(149), }, [181] = { - [sym_block] = STATE(812), - [sym_statement] = STATE(22), - [sym_expression] = STATE(685), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(576), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(647), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1984), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(302), - [aux_sym_block_repeat1] = STATE(22), - [sym_identifier] = ACTIONS(229), + [sym_expression] = STATE(377), + [sym__expression_kind] = STATE(415), + [aux_sym__expression_list] = STATE(177), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_identifier_list] = STATE(1100), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(181), + [ts_builtin_sym_end] = ACTIONS(1333), + [sym_identifier] = ACTIONS(1323), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(245), - [anon_sym_match] = ACTIONS(247), - [anon_sym_EQ_GT] = ACTIONS(249), - [anon_sym_while] = ACTIONS(251), - [anon_sym_for] = ACTIONS(253), - [anon_sym_asyncfor] = ACTIONS(255), - [anon_sym_transform] = ACTIONS(257), - [anon_sym_filter] = ACTIONS(259), - [anon_sym_find] = ACTIONS(261), - [anon_sym_remove] = ACTIONS(263), - [anon_sym_reduce] = ACTIONS(265), - [anon_sym_select] = ACTIONS(267), - [anon_sym_insert] = ACTIONS(269), - [anon_sym_async] = ACTIONS(271), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_RBRACE] = ACTIONS(1333), + [anon_sym_SEMI] = ACTIONS(1333), + [anon_sym_LPAREN] = ACTIONS(59), + [anon_sym_RPAREN] = ACTIONS(1333), + [anon_sym_COMMA] = ACTIONS(1333), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_RBRACK] = ACTIONS(1333), + [anon_sym_COLON] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1333), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_SLASH] = ACTIONS(1333), + [anon_sym_PERCENT] = ACTIONS(1333), + [anon_sym_EQ_EQ] = ACTIONS(1333), + [anon_sym_BANG_EQ] = ACTIONS(1333), + [anon_sym_AMP_AMP] = ACTIONS(1333), + [anon_sym_PIPE_PIPE] = ACTIONS(1333), + [anon_sym_GT] = ACTIONS(1335), + [anon_sym_LT] = ACTIONS(1335), + [anon_sym_GT_EQ] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1333), + [anon_sym_if] = ACTIONS(1335), + [anon_sym_elseif] = ACTIONS(1333), + [anon_sym_else] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1335), + [anon_sym_EQ_GT] = ACTIONS(123), + [anon_sym_while] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1335), + [anon_sym_asyncfor] = ACTIONS(1333), + [anon_sym_transform] = ACTIONS(1335), + [anon_sym_filter] = ACTIONS(1335), + [anon_sym_find] = ACTIONS(1335), + [anon_sym_remove] = ACTIONS(1335), + [anon_sym_reduce] = ACTIONS(1335), + [anon_sym_select] = ACTIONS(1335), + [anon_sym_insert] = ACTIONS(1335), + [anon_sym_async] = ACTIONS(1335), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(275), - [anon_sym_assert_equal] = ACTIONS(275), - [anon_sym_download] = ACTIONS(275), - [anon_sym_help] = ACTIONS(275), - [anon_sym_length] = ACTIONS(275), - [anon_sym_output] = ACTIONS(275), - [anon_sym_output_error] = ACTIONS(275), - [anon_sym_type] = ACTIONS(275), - [anon_sym_append] = ACTIONS(275), - [anon_sym_metadata] = ACTIONS(275), - [anon_sym_move] = ACTIONS(275), - [anon_sym_read] = ACTIONS(275), - [anon_sym_workdir] = ACTIONS(275), - [anon_sym_write] = ACTIONS(275), - [anon_sym_from_json] = ACTIONS(275), - [anon_sym_to_json] = ACTIONS(275), - [anon_sym_to_string] = ACTIONS(275), - [anon_sym_to_float] = ACTIONS(275), - [anon_sym_bash] = ACTIONS(275), - [anon_sym_fish] = ACTIONS(275), - [anon_sym_raw] = ACTIONS(275), - [anon_sym_sh] = ACTIONS(275), - [anon_sym_zsh] = ACTIONS(275), - [anon_sym_random] = ACTIONS(275), - [anon_sym_random_boolean] = ACTIONS(275), - [anon_sym_random_float] = ACTIONS(275), - [anon_sym_random_integer] = ACTIONS(275), - [anon_sym_columns] = ACTIONS(275), - [anon_sym_rows] = ACTIONS(275), - [anon_sym_reverse] = ACTIONS(275), + [anon_sym_table] = ACTIONS(147), + [anon_sym_assert] = ACTIONS(149), + [anon_sym_assert_equal] = ACTIONS(149), + [anon_sym_download] = ACTIONS(149), + [anon_sym_help] = ACTIONS(149), + [anon_sym_length] = ACTIONS(149), + [anon_sym_output] = ACTIONS(149), + [anon_sym_output_error] = ACTIONS(149), + [anon_sym_type] = ACTIONS(149), + [anon_sym_append] = ACTIONS(149), + [anon_sym_metadata] = ACTIONS(149), + [anon_sym_move] = ACTIONS(149), + [anon_sym_read] = ACTIONS(149), + [anon_sym_workdir] = ACTIONS(149), + [anon_sym_write] = ACTIONS(149), + [anon_sym_from_json] = ACTIONS(149), + [anon_sym_to_json] = ACTIONS(149), + [anon_sym_to_string] = ACTIONS(149), + [anon_sym_to_float] = ACTIONS(149), + [anon_sym_bash] = ACTIONS(149), + [anon_sym_fish] = ACTIONS(149), + [anon_sym_raw] = ACTIONS(149), + [anon_sym_sh] = ACTIONS(149), + [anon_sym_zsh] = ACTIONS(149), + [anon_sym_random] = ACTIONS(149), + [anon_sym_random_boolean] = ACTIONS(149), + [anon_sym_random_float] = ACTIONS(149), + [anon_sym_random_integer] = ACTIONS(149), + [anon_sym_columns] = ACTIONS(149), + [anon_sym_rows] = ACTIONS(149), + [anon_sym_reverse] = ACTIONS(149), }, [182] = { - [sym_block] = STATE(813), - [sym_statement] = STATE(22), - [sym_expression] = STATE(685), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(576), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(647), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1984), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(302), - [aux_sym_block_repeat1] = STATE(22), - [sym_identifier] = ACTIONS(229), + [sym_expression] = STATE(965), + [sym__expression_kind] = STATE(919), + [sym_value] = STATE(919), + [sym_boolean] = STATE(936), + [sym_list] = STATE(936), + [sym_map] = STATE(936), + [sym_index] = STATE(919), + [sym_math] = STATE(919), + [sym_logic] = STATE(919), + [sym_identifier_list] = STATE(1086), + [sym_table] = STATE(936), + [sym_function] = STATE(936), + [sym_function_call] = STATE(919), + [sym__context_defined_function] = STATE(934), + [sym_built_in_function] = STATE(934), + [sym__built_in_function_name] = STATE(550), + [aux_sym_match_repeat1] = STATE(182), + [ts_builtin_sym_end] = ACTIONS(1398), + [sym_identifier] = ACTIONS(1400), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(245), - [anon_sym_match] = ACTIONS(247), - [anon_sym_EQ_GT] = ACTIONS(249), - [anon_sym_while] = ACTIONS(251), - [anon_sym_for] = ACTIONS(253), - [anon_sym_asyncfor] = ACTIONS(255), - [anon_sym_transform] = ACTIONS(257), - [anon_sym_filter] = ACTIONS(259), - [anon_sym_find] = ACTIONS(261), - [anon_sym_remove] = ACTIONS(263), - [anon_sym_reduce] = ACTIONS(265), - [anon_sym_select] = ACTIONS(267), - [anon_sym_insert] = ACTIONS(269), - [anon_sym_async] = ACTIONS(271), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(275), - [anon_sym_assert_equal] = ACTIONS(275), - [anon_sym_download] = ACTIONS(275), - [anon_sym_help] = ACTIONS(275), - [anon_sym_length] = ACTIONS(275), - [anon_sym_output] = ACTIONS(275), - [anon_sym_output_error] = ACTIONS(275), - [anon_sym_type] = ACTIONS(275), - [anon_sym_append] = ACTIONS(275), - [anon_sym_metadata] = ACTIONS(275), - [anon_sym_move] = ACTIONS(275), - [anon_sym_read] = ACTIONS(275), - [anon_sym_workdir] = ACTIONS(275), - [anon_sym_write] = ACTIONS(275), - [anon_sym_from_json] = ACTIONS(275), - [anon_sym_to_json] = ACTIONS(275), - [anon_sym_to_string] = ACTIONS(275), - [anon_sym_to_float] = ACTIONS(275), - [anon_sym_bash] = ACTIONS(275), - [anon_sym_fish] = ACTIONS(275), - [anon_sym_raw] = ACTIONS(275), - [anon_sym_sh] = ACTIONS(275), - [anon_sym_zsh] = ACTIONS(275), - [anon_sym_random] = ACTIONS(275), - [anon_sym_random_boolean] = ACTIONS(275), - [anon_sym_random_float] = ACTIONS(275), - [anon_sym_random_integer] = ACTIONS(275), - [anon_sym_columns] = ACTIONS(275), - [anon_sym_rows] = ACTIONS(275), - [anon_sym_reverse] = ACTIONS(275), + [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_RBRACE] = ACTIONS(1398), + [anon_sym_SEMI] = ACTIONS(1398), + [anon_sym_LPAREN] = ACTIONS(1406), + [anon_sym_RPAREN] = ACTIONS(1398), + [anon_sym_COMMA] = ACTIONS(1398), + [sym_integer] = ACTIONS(1409), + [sym_float] = ACTIONS(1412), + [sym_string] = ACTIONS(1412), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_LBRACK] = ACTIONS(1418), + [anon_sym_RBRACK] = ACTIONS(1398), + [anon_sym_COLON] = ACTIONS(1398), + [anon_sym_PLUS] = ACTIONS(1398), + [anon_sym_DASH] = ACTIONS(1421), + [anon_sym_STAR] = ACTIONS(1398), + [anon_sym_SLASH] = ACTIONS(1398), + [anon_sym_PERCENT] = ACTIONS(1398), + [anon_sym_EQ_EQ] = ACTIONS(1398), + [anon_sym_BANG_EQ] = ACTIONS(1398), + [anon_sym_AMP_AMP] = ACTIONS(1398), + [anon_sym_PIPE_PIPE] = ACTIONS(1398), + [anon_sym_GT] = ACTIONS(1421), + [anon_sym_LT] = ACTIONS(1421), + [anon_sym_GT_EQ] = ACTIONS(1398), + [anon_sym_LT_EQ] = ACTIONS(1398), + [anon_sym_if] = ACTIONS(1421), + [anon_sym_elseif] = ACTIONS(1398), + [anon_sym_else] = ACTIONS(1421), + [anon_sym_match] = ACTIONS(1421), + [anon_sym_EQ_GT] = ACTIONS(1423), + [anon_sym_while] = ACTIONS(1421), + [anon_sym_for] = ACTIONS(1421), + [anon_sym_asyncfor] = ACTIONS(1398), + [anon_sym_transform] = ACTIONS(1421), + [anon_sym_filter] = ACTIONS(1421), + [anon_sym_find] = ACTIONS(1421), + [anon_sym_remove] = ACTIONS(1421), + [anon_sym_reduce] = ACTIONS(1421), + [anon_sym_select] = ACTIONS(1421), + [anon_sym_insert] = ACTIONS(1421), + [anon_sym_async] = ACTIONS(1421), + [anon_sym_PIPE] = ACTIONS(1426), + [anon_sym_table] = ACTIONS(1429), + [anon_sym_assert] = ACTIONS(1432), + [anon_sym_assert_equal] = ACTIONS(1432), + [anon_sym_download] = ACTIONS(1432), + [anon_sym_help] = ACTIONS(1432), + [anon_sym_length] = ACTIONS(1432), + [anon_sym_output] = ACTIONS(1432), + [anon_sym_output_error] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_append] = ACTIONS(1432), + [anon_sym_metadata] = ACTIONS(1432), + [anon_sym_move] = ACTIONS(1432), + [anon_sym_read] = ACTIONS(1432), + [anon_sym_workdir] = ACTIONS(1432), + [anon_sym_write] = ACTIONS(1432), + [anon_sym_from_json] = ACTIONS(1432), + [anon_sym_to_json] = ACTIONS(1432), + [anon_sym_to_string] = ACTIONS(1432), + [anon_sym_to_float] = ACTIONS(1432), + [anon_sym_bash] = ACTIONS(1432), + [anon_sym_fish] = ACTIONS(1432), + [anon_sym_raw] = ACTIONS(1432), + [anon_sym_sh] = ACTIONS(1432), + [anon_sym_zsh] = ACTIONS(1432), + [anon_sym_random] = ACTIONS(1432), + [anon_sym_random_boolean] = ACTIONS(1432), + [anon_sym_random_float] = ACTIONS(1432), + [anon_sym_random_integer] = ACTIONS(1432), + [anon_sym_columns] = ACTIONS(1432), + [anon_sym_rows] = ACTIONS(1432), + [anon_sym_reverse] = ACTIONS(1432), }, [183] = { - [sym_block] = STATE(840), - [sym_statement] = STATE(39), - [sym_expression] = STATE(756), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(657), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(627), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1752), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(338), - [aux_sym_block_repeat1] = STATE(39), - [sym_identifier] = ACTIONS(875), + [sym_expression] = STATE(983), + [sym__expression_kind] = STATE(919), + [sym_value] = STATE(919), + [sym_boolean] = STATE(936), + [sym_list] = STATE(936), + [sym_map] = STATE(936), + [sym_index] = STATE(919), + [sym_math] = STATE(919), + [sym_logic] = STATE(919), + [sym_identifier_list] = STATE(1086), + [sym_table] = STATE(936), + [sym_function] = STATE(936), + [sym_function_call] = STATE(919), + [sym__context_defined_function] = STATE(934), + [sym_built_in_function] = STATE(934), + [sym__built_in_function_name] = STATE(550), + [aux_sym_match_repeat1] = STATE(184), + [ts_builtin_sym_end] = ACTIONS(1337), + [sym_identifier] = ACTIONS(1339), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(877), - [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(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(245), - [anon_sym_match] = ACTIONS(881), - [anon_sym_EQ_GT] = ACTIONS(883), - [anon_sym_while] = ACTIONS(885), - [anon_sym_for] = ACTIONS(887), - [anon_sym_asyncfor] = ACTIONS(889), - [anon_sym_transform] = ACTIONS(891), - [anon_sym_filter] = ACTIONS(893), - [anon_sym_find] = ACTIONS(895), - [anon_sym_remove] = ACTIONS(897), - [anon_sym_reduce] = ACTIONS(899), - [anon_sym_select] = ACTIONS(901), - [anon_sym_insert] = ACTIONS(903), - [anon_sym_async] = ACTIONS(905), + [anon_sym_LBRACE] = ACTIONS(1341), + [anon_sym_RBRACE] = ACTIONS(1337), + [anon_sym_SEMI] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(1343), + [anon_sym_RPAREN] = ACTIONS(1337), + [anon_sym_COMMA] = ACTIONS(1337), + [sym_integer] = ACTIONS(1345), + [sym_float] = ACTIONS(1347), + [sym_string] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1349), + [anon_sym_false] = ACTIONS(1349), + [anon_sym_LBRACK] = ACTIONS(1351), + [anon_sym_RBRACK] = ACTIONS(1337), + [anon_sym_COLON] = ACTIONS(1337), + [anon_sym_DOT_DOT] = ACTIONS(1337), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_STAR] = ACTIONS(1337), + [anon_sym_SLASH] = ACTIONS(1337), + [anon_sym_PERCENT] = ACTIONS(1337), + [anon_sym_EQ_EQ] = ACTIONS(1337), + [anon_sym_BANG_EQ] = ACTIONS(1337), + [anon_sym_AMP_AMP] = ACTIONS(1337), + [anon_sym_PIPE_PIPE] = ACTIONS(1337), + [anon_sym_GT] = ACTIONS(1353), + [anon_sym_LT] = ACTIONS(1353), + [anon_sym_GT_EQ] = ACTIONS(1337), + [anon_sym_LT_EQ] = ACTIONS(1337), + [anon_sym_if] = ACTIONS(1353), + [anon_sym_match] = ACTIONS(1353), + [anon_sym_EQ_GT] = ACTIONS(1355), + [anon_sym_while] = ACTIONS(1353), + [anon_sym_for] = ACTIONS(1353), + [anon_sym_asyncfor] = ACTIONS(1337), + [anon_sym_transform] = ACTIONS(1353), + [anon_sym_filter] = ACTIONS(1353), + [anon_sym_find] = ACTIONS(1353), + [anon_sym_remove] = ACTIONS(1353), + [anon_sym_reduce] = ACTIONS(1353), + [anon_sym_select] = ACTIONS(1353), + [anon_sym_insert] = ACTIONS(1353), + [anon_sym_async] = ACTIONS(1353), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(907), - [anon_sym_assert] = ACTIONS(909), - [anon_sym_assert_equal] = ACTIONS(909), - [anon_sym_download] = ACTIONS(909), - [anon_sym_help] = ACTIONS(909), - [anon_sym_length] = ACTIONS(909), - [anon_sym_output] = ACTIONS(909), - [anon_sym_output_error] = ACTIONS(909), - [anon_sym_type] = ACTIONS(909), - [anon_sym_append] = ACTIONS(909), - [anon_sym_metadata] = ACTIONS(909), - [anon_sym_move] = ACTIONS(909), - [anon_sym_read] = ACTIONS(909), - [anon_sym_workdir] = ACTIONS(909), - [anon_sym_write] = ACTIONS(909), - [anon_sym_from_json] = ACTIONS(909), - [anon_sym_to_json] = ACTIONS(909), - [anon_sym_to_string] = ACTIONS(909), - [anon_sym_to_float] = ACTIONS(909), - [anon_sym_bash] = ACTIONS(909), - [anon_sym_fish] = ACTIONS(909), - [anon_sym_raw] = ACTIONS(909), - [anon_sym_sh] = ACTIONS(909), - [anon_sym_zsh] = ACTIONS(909), - [anon_sym_random] = ACTIONS(909), - [anon_sym_random_boolean] = ACTIONS(909), - [anon_sym_random_float] = ACTIONS(909), - [anon_sym_random_integer] = ACTIONS(909), - [anon_sym_columns] = ACTIONS(909), - [anon_sym_rows] = ACTIONS(909), - [anon_sym_reverse] = ACTIONS(909), + [anon_sym_table] = ACTIONS(1357), + [anon_sym_assert] = ACTIONS(1359), + [anon_sym_assert_equal] = ACTIONS(1359), + [anon_sym_download] = ACTIONS(1359), + [anon_sym_help] = ACTIONS(1359), + [anon_sym_length] = ACTIONS(1359), + [anon_sym_output] = ACTIONS(1359), + [anon_sym_output_error] = ACTIONS(1359), + [anon_sym_type] = ACTIONS(1359), + [anon_sym_append] = ACTIONS(1359), + [anon_sym_metadata] = ACTIONS(1359), + [anon_sym_move] = ACTIONS(1359), + [anon_sym_read] = ACTIONS(1359), + [anon_sym_workdir] = ACTIONS(1359), + [anon_sym_write] = ACTIONS(1359), + [anon_sym_from_json] = ACTIONS(1359), + [anon_sym_to_json] = ACTIONS(1359), + [anon_sym_to_string] = ACTIONS(1359), + [anon_sym_to_float] = ACTIONS(1359), + [anon_sym_bash] = ACTIONS(1359), + [anon_sym_fish] = ACTIONS(1359), + [anon_sym_raw] = ACTIONS(1359), + [anon_sym_sh] = ACTIONS(1359), + [anon_sym_zsh] = ACTIONS(1359), + [anon_sym_random] = ACTIONS(1359), + [anon_sym_random_boolean] = ACTIONS(1359), + [anon_sym_random_float] = ACTIONS(1359), + [anon_sym_random_integer] = ACTIONS(1359), + [anon_sym_columns] = ACTIONS(1359), + [anon_sym_rows] = ACTIONS(1359), + [anon_sym_reverse] = ACTIONS(1359), }, [184] = { - [sym_block] = STATE(846), - [sym_statement] = STATE(57), - [sym_expression] = STATE(853), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(776), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(710), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1823), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(366), - [aux_sym_block_repeat1] = STATE(57), - [sym_identifier] = ACTIONS(1436), + [sym_expression] = STATE(983), + [sym__expression_kind] = STATE(919), + [sym_value] = STATE(919), + [sym_boolean] = STATE(936), + [sym_list] = STATE(936), + [sym_map] = STATE(936), + [sym_index] = STATE(919), + [sym_math] = STATE(919), + [sym_logic] = STATE(919), + [sym_identifier_list] = STATE(1086), + [sym_table] = STATE(936), + [sym_function] = STATE(936), + [sym_function_call] = STATE(919), + [sym__context_defined_function] = STATE(934), + [sym_built_in_function] = STATE(934), + [sym__built_in_function_name] = STATE(550), + [aux_sym_match_repeat1] = STATE(184), + [ts_builtin_sym_end] = ACTIONS(1398), + [sym_identifier] = ACTIONS(1400), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(877), - [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(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(843), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_EQ_GT] = ACTIONS(1442), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_for] = ACTIONS(1446), - [anon_sym_asyncfor] = ACTIONS(1448), - [anon_sym_transform] = ACTIONS(1450), - [anon_sym_filter] = ACTIONS(1452), - [anon_sym_find] = ACTIONS(1454), - [anon_sym_remove] = ACTIONS(1456), - [anon_sym_reduce] = ACTIONS(1458), - [anon_sym_select] = ACTIONS(1460), - [anon_sym_insert] = ACTIONS(1462), - [anon_sym_async] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1466), - [anon_sym_assert] = ACTIONS(1468), - [anon_sym_assert_equal] = ACTIONS(1468), - [anon_sym_download] = ACTIONS(1468), - [anon_sym_help] = ACTIONS(1468), - [anon_sym_length] = ACTIONS(1468), - [anon_sym_output] = ACTIONS(1468), - [anon_sym_output_error] = ACTIONS(1468), - [anon_sym_type] = ACTIONS(1468), - [anon_sym_append] = ACTIONS(1468), - [anon_sym_metadata] = ACTIONS(1468), - [anon_sym_move] = ACTIONS(1468), - [anon_sym_read] = ACTIONS(1468), - [anon_sym_workdir] = ACTIONS(1468), - [anon_sym_write] = ACTIONS(1468), - [anon_sym_from_json] = ACTIONS(1468), - [anon_sym_to_json] = ACTIONS(1468), - [anon_sym_to_string] = ACTIONS(1468), - [anon_sym_to_float] = ACTIONS(1468), - [anon_sym_bash] = ACTIONS(1468), - [anon_sym_fish] = ACTIONS(1468), - [anon_sym_raw] = ACTIONS(1468), - [anon_sym_sh] = ACTIONS(1468), - [anon_sym_zsh] = ACTIONS(1468), - [anon_sym_random] = ACTIONS(1468), - [anon_sym_random_boolean] = ACTIONS(1468), - [anon_sym_random_float] = ACTIONS(1468), - [anon_sym_random_integer] = ACTIONS(1468), - [anon_sym_columns] = ACTIONS(1468), - [anon_sym_rows] = ACTIONS(1468), - [anon_sym_reverse] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_RBRACE] = ACTIONS(1398), + [anon_sym_SEMI] = ACTIONS(1398), + [anon_sym_LPAREN] = ACTIONS(1406), + [anon_sym_RPAREN] = ACTIONS(1398), + [anon_sym_COMMA] = ACTIONS(1398), + [sym_integer] = ACTIONS(1409), + [sym_float] = ACTIONS(1412), + [sym_string] = ACTIONS(1412), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_LBRACK] = ACTIONS(1418), + [anon_sym_RBRACK] = ACTIONS(1398), + [anon_sym_COLON] = ACTIONS(1398), + [anon_sym_DOT_DOT] = ACTIONS(1398), + [anon_sym_PLUS] = ACTIONS(1398), + [anon_sym_DASH] = ACTIONS(1421), + [anon_sym_STAR] = ACTIONS(1398), + [anon_sym_SLASH] = ACTIONS(1398), + [anon_sym_PERCENT] = ACTIONS(1398), + [anon_sym_EQ_EQ] = ACTIONS(1398), + [anon_sym_BANG_EQ] = ACTIONS(1398), + [anon_sym_AMP_AMP] = ACTIONS(1398), + [anon_sym_PIPE_PIPE] = ACTIONS(1398), + [anon_sym_GT] = ACTIONS(1421), + [anon_sym_LT] = ACTIONS(1421), + [anon_sym_GT_EQ] = ACTIONS(1398), + [anon_sym_LT_EQ] = ACTIONS(1398), + [anon_sym_if] = ACTIONS(1421), + [anon_sym_match] = ACTIONS(1421), + [anon_sym_EQ_GT] = ACTIONS(1423), + [anon_sym_while] = ACTIONS(1421), + [anon_sym_for] = ACTIONS(1421), + [anon_sym_asyncfor] = ACTIONS(1398), + [anon_sym_transform] = ACTIONS(1421), + [anon_sym_filter] = ACTIONS(1421), + [anon_sym_find] = ACTIONS(1421), + [anon_sym_remove] = ACTIONS(1421), + [anon_sym_reduce] = ACTIONS(1421), + [anon_sym_select] = ACTIONS(1421), + [anon_sym_insert] = ACTIONS(1421), + [anon_sym_async] = ACTIONS(1421), + [anon_sym_PIPE] = ACTIONS(1426), + [anon_sym_table] = ACTIONS(1429), + [anon_sym_assert] = ACTIONS(1432), + [anon_sym_assert_equal] = ACTIONS(1432), + [anon_sym_download] = ACTIONS(1432), + [anon_sym_help] = ACTIONS(1432), + [anon_sym_length] = ACTIONS(1432), + [anon_sym_output] = ACTIONS(1432), + [anon_sym_output_error] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_append] = ACTIONS(1432), + [anon_sym_metadata] = ACTIONS(1432), + [anon_sym_move] = ACTIONS(1432), + [anon_sym_read] = ACTIONS(1432), + [anon_sym_workdir] = ACTIONS(1432), + [anon_sym_write] = ACTIONS(1432), + [anon_sym_from_json] = ACTIONS(1432), + [anon_sym_to_json] = ACTIONS(1432), + [anon_sym_to_string] = ACTIONS(1432), + [anon_sym_to_float] = ACTIONS(1432), + [anon_sym_bash] = ACTIONS(1432), + [anon_sym_fish] = ACTIONS(1432), + [anon_sym_raw] = ACTIONS(1432), + [anon_sym_sh] = ACTIONS(1432), + [anon_sym_zsh] = ACTIONS(1432), + [anon_sym_random] = ACTIONS(1432), + [anon_sym_random_boolean] = ACTIONS(1432), + [anon_sym_random_float] = ACTIONS(1432), + [anon_sym_random_integer] = ACTIONS(1432), + [anon_sym_columns] = ACTIONS(1432), + [anon_sym_rows] = ACTIONS(1432), + [anon_sym_reverse] = ACTIONS(1432), }, [185] = { - [sym_block] = STATE(598), - [sym_statement] = STATE(12), - [sym_expression] = STATE(583), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(631), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(567), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(2030), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(271), - [aux_sym_block_repeat1] = STATE(12), - [sym_identifier] = ACTIONS(55), + [sym_expression] = STATE(443), + [sym__expression_kind] = STATE(468), + [aux_sym__expression_list] = STATE(207), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment_operator] = STATE(340), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [sym_identifier] = ACTIONS(1315), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(59), - [sym_integer] = ACTIONS(61), - [sym_float] = ACTIONS(63), - [sym_string] = ACTIONS(63), - [anon_sym_true] = ACTIONS(65), - [anon_sym_false] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [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_asyncfor] = ACTIONS(127), - [anon_sym_transform] = ACTIONS(129), - [anon_sym_filter] = ACTIONS(131), - [anon_sym_find] = ACTIONS(133), - [anon_sym_remove] = ACTIONS(135), - [anon_sym_reduce] = ACTIONS(137), - [anon_sym_select] = ACTIONS(139), - [anon_sym_insert] = ACTIONS(141), - [anon_sym_async] = ACTIONS(143), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(147), - [anon_sym_assert_equal] = ACTIONS(147), - [anon_sym_download] = ACTIONS(147), - [anon_sym_help] = ACTIONS(147), - [anon_sym_length] = ACTIONS(147), - [anon_sym_output] = ACTIONS(147), - [anon_sym_output_error] = ACTIONS(147), - [anon_sym_type] = ACTIONS(147), - [anon_sym_append] = ACTIONS(147), - [anon_sym_metadata] = ACTIONS(147), - [anon_sym_move] = ACTIONS(147), - [anon_sym_read] = ACTIONS(147), - [anon_sym_workdir] = ACTIONS(147), - [anon_sym_write] = ACTIONS(147), - [anon_sym_from_json] = ACTIONS(147), - [anon_sym_to_json] = ACTIONS(147), - [anon_sym_to_string] = ACTIONS(147), - [anon_sym_to_float] = ACTIONS(147), - [anon_sym_bash] = ACTIONS(147), - [anon_sym_fish] = ACTIONS(147), - [anon_sym_raw] = ACTIONS(147), - [anon_sym_sh] = ACTIONS(147), - [anon_sym_zsh] = ACTIONS(147), - [anon_sym_random] = ACTIONS(147), - [anon_sym_random_boolean] = ACTIONS(147), - [anon_sym_random_float] = ACTIONS(147), - [anon_sym_random_integer] = ACTIONS(147), - [anon_sym_columns] = ACTIONS(147), - [anon_sym_rows] = ACTIONS(147), - [anon_sym_reverse] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(1313), + [anon_sym_RBRACE] = ACTIONS(1313), + [anon_sym_SEMI] = ACTIONS(1313), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_COMMA] = ACTIONS(1313), + [sym_integer] = ACTIONS(1315), + [sym_float] = ACTIONS(1313), + [sym_string] = ACTIONS(1313), + [anon_sym_true] = ACTIONS(1315), + [anon_sym_false] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1313), + [anon_sym_EQ] = ACTIONS(1317), + [anon_sym_COLON] = ACTIONS(1313), + [anon_sym_PLUS] = ACTIONS(1315), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_PERCENT] = ACTIONS(1313), + [anon_sym_EQ_EQ] = ACTIONS(1313), + [anon_sym_BANG_EQ] = ACTIONS(1313), + [anon_sym_AMP_AMP] = ACTIONS(1313), + [anon_sym_PIPE_PIPE] = ACTIONS(1313), + [anon_sym_GT] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(1315), + [anon_sym_GT_EQ] = ACTIONS(1313), + [anon_sym_LT_EQ] = ACTIONS(1313), + [anon_sym_PLUS_EQ] = ACTIONS(1319), + [anon_sym_DASH_EQ] = ACTIONS(1319), + [anon_sym_if] = ACTIONS(1315), + [anon_sym_match] = ACTIONS(1315), + [anon_sym_EQ_GT] = ACTIONS(1313), + [anon_sym_while] = ACTIONS(1315), + [anon_sym_for] = ACTIONS(1315), + [anon_sym_asyncfor] = ACTIONS(1313), + [anon_sym_transform] = ACTIONS(1315), + [anon_sym_filter] = ACTIONS(1315), + [anon_sym_find] = ACTIONS(1315), + [anon_sym_remove] = ACTIONS(1315), + [anon_sym_reduce] = ACTIONS(1315), + [anon_sym_select] = ACTIONS(1315), + [anon_sym_insert] = ACTIONS(1315), + [anon_sym_async] = ACTIONS(1315), + [anon_sym_PIPE] = ACTIONS(1315), + [anon_sym_table] = ACTIONS(1315), + [anon_sym_assert] = ACTIONS(1315), + [anon_sym_assert_equal] = ACTIONS(1315), + [anon_sym_download] = ACTIONS(1315), + [anon_sym_help] = ACTIONS(1315), + [anon_sym_length] = ACTIONS(1315), + [anon_sym_output] = ACTIONS(1315), + [anon_sym_output_error] = ACTIONS(1315), + [anon_sym_type] = ACTIONS(1315), + [anon_sym_append] = ACTIONS(1315), + [anon_sym_metadata] = ACTIONS(1315), + [anon_sym_move] = ACTIONS(1315), + [anon_sym_read] = ACTIONS(1315), + [anon_sym_workdir] = ACTIONS(1315), + [anon_sym_write] = ACTIONS(1315), + [anon_sym_from_json] = ACTIONS(1315), + [anon_sym_to_json] = ACTIONS(1315), + [anon_sym_to_string] = ACTIONS(1315), + [anon_sym_to_float] = ACTIONS(1315), + [anon_sym_bash] = ACTIONS(1315), + [anon_sym_fish] = ACTIONS(1315), + [anon_sym_raw] = ACTIONS(1315), + [anon_sym_sh] = ACTIONS(1315), + [anon_sym_zsh] = ACTIONS(1315), + [anon_sym_random] = ACTIONS(1315), + [anon_sym_random_boolean] = ACTIONS(1315), + [anon_sym_random_float] = ACTIONS(1315), + [anon_sym_random_integer] = ACTIONS(1315), + [anon_sym_columns] = ACTIONS(1315), + [anon_sym_rows] = ACTIONS(1315), + [anon_sym_reverse] = ACTIONS(1315), }, [186] = { - [sym_block] = STATE(738), - [sym_statement] = STATE(17), - [sym_expression] = STATE(601), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(706), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(557), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1910), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(284), - [aux_sym_block_repeat1] = STATE(17), - [sym_identifier] = ACTIONS(149), + [sym_expression] = STATE(379), + [sym__expression_kind] = STATE(415), + [aux_sym__expression_list] = STATE(191), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_identifier_list] = STATE(1225), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(170), + [ts_builtin_sym_end] = ACTIONS(1333), + [sym_identifier] = ACTIONS(1323), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(81), - [anon_sym_match] = ACTIONS(165), - [anon_sym_EQ_GT] = ACTIONS(167), - [anon_sym_while] = ACTIONS(169), - [anon_sym_for] = ACTIONS(171), - [anon_sym_asyncfor] = ACTIONS(173), - [anon_sym_transform] = ACTIONS(175), - [anon_sym_filter] = ACTIONS(177), - [anon_sym_find] = ACTIONS(179), - [anon_sym_remove] = ACTIONS(181), - [anon_sym_reduce] = ACTIONS(183), - [anon_sym_select] = ACTIONS(185), - [anon_sym_insert] = ACTIONS(187), - [anon_sym_async] = ACTIONS(189), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_RBRACE] = ACTIONS(1333), + [anon_sym_SEMI] = ACTIONS(1333), + [anon_sym_LPAREN] = ACTIONS(59), + [anon_sym_RPAREN] = ACTIONS(1333), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(1333), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1333), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_SLASH] = ACTIONS(1333), + [anon_sym_PERCENT] = ACTIONS(1333), + [anon_sym_EQ_EQ] = ACTIONS(1333), + [anon_sym_BANG_EQ] = ACTIONS(1333), + [anon_sym_AMP_AMP] = ACTIONS(1333), + [anon_sym_PIPE_PIPE] = ACTIONS(1333), + [anon_sym_GT] = ACTIONS(1335), + [anon_sym_LT] = ACTIONS(1335), + [anon_sym_GT_EQ] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1333), + [anon_sym_if] = ACTIONS(1335), + [anon_sym_elseif] = ACTIONS(1333), + [anon_sym_else] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1335), + [anon_sym_EQ_GT] = ACTIONS(85), + [anon_sym_while] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1335), + [anon_sym_asyncfor] = ACTIONS(1333), + [anon_sym_transform] = ACTIONS(1335), + [anon_sym_filter] = ACTIONS(1335), + [anon_sym_find] = ACTIONS(1335), + [anon_sym_remove] = ACTIONS(1335), + [anon_sym_reduce] = ACTIONS(1335), + [anon_sym_select] = ACTIONS(1335), + [anon_sym_insert] = ACTIONS(1335), + [anon_sym_async] = ACTIONS(1335), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(191), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_assert_equal] = ACTIONS(193), - [anon_sym_download] = ACTIONS(193), - [anon_sym_help] = ACTIONS(193), - [anon_sym_length] = ACTIONS(193), - [anon_sym_output] = ACTIONS(193), - [anon_sym_output_error] = ACTIONS(193), - [anon_sym_type] = ACTIONS(193), - [anon_sym_append] = ACTIONS(193), - [anon_sym_metadata] = ACTIONS(193), - [anon_sym_move] = ACTIONS(193), - [anon_sym_read] = ACTIONS(193), - [anon_sym_workdir] = ACTIONS(193), - [anon_sym_write] = ACTIONS(193), - [anon_sym_from_json] = ACTIONS(193), - [anon_sym_to_json] = ACTIONS(193), - [anon_sym_to_string] = ACTIONS(193), - [anon_sym_to_float] = ACTIONS(193), - [anon_sym_bash] = ACTIONS(193), - [anon_sym_fish] = ACTIONS(193), - [anon_sym_raw] = ACTIONS(193), - [anon_sym_sh] = ACTIONS(193), - [anon_sym_zsh] = ACTIONS(193), - [anon_sym_random] = ACTIONS(193), - [anon_sym_random_boolean] = ACTIONS(193), - [anon_sym_random_float] = ACTIONS(193), - [anon_sym_random_integer] = ACTIONS(193), - [anon_sym_columns] = ACTIONS(193), - [anon_sym_rows] = ACTIONS(193), - [anon_sym_reverse] = ACTIONS(193), + [anon_sym_table] = ACTIONS(111), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_assert_equal] = ACTIONS(113), + [anon_sym_download] = ACTIONS(113), + [anon_sym_help] = ACTIONS(113), + [anon_sym_length] = ACTIONS(113), + [anon_sym_output] = ACTIONS(113), + [anon_sym_output_error] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_append] = ACTIONS(113), + [anon_sym_metadata] = ACTIONS(113), + [anon_sym_move] = ACTIONS(113), + [anon_sym_read] = ACTIONS(113), + [anon_sym_workdir] = ACTIONS(113), + [anon_sym_write] = ACTIONS(113), + [anon_sym_from_json] = ACTIONS(113), + [anon_sym_to_json] = ACTIONS(113), + [anon_sym_to_string] = ACTIONS(113), + [anon_sym_to_float] = ACTIONS(113), + [anon_sym_bash] = ACTIONS(113), + [anon_sym_fish] = ACTIONS(113), + [anon_sym_raw] = ACTIONS(113), + [anon_sym_sh] = ACTIONS(113), + [anon_sym_zsh] = ACTIONS(113), + [anon_sym_random] = ACTIONS(113), + [anon_sym_random_boolean] = ACTIONS(113), + [anon_sym_random_float] = ACTIONS(113), + [anon_sym_random_integer] = ACTIONS(113), + [anon_sym_columns] = ACTIONS(113), + [anon_sym_rows] = ACTIONS(113), + [anon_sym_reverse] = ACTIONS(113), }, [187] = { - [sym_block] = STATE(608), - [sym_statement] = STATE(12), - [sym_expression] = STATE(583), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(631), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(567), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(2030), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(271), - [aux_sym_block_repeat1] = STATE(12), - [sym_identifier] = ACTIONS(55), + [sym_expression] = STATE(379), + [sym__expression_kind] = STATE(415), + [aux_sym__expression_list] = STATE(195), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_identifier_list] = STATE(1225), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(170), + [ts_builtin_sym_end] = ACTIONS(1329), + [sym_identifier] = ACTIONS(1323), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_RBRACE] = ACTIONS(1329), + [anon_sym_SEMI] = ACTIONS(1329), [anon_sym_LPAREN] = ACTIONS(59), + [anon_sym_RPAREN] = ACTIONS(1329), [sym_integer] = ACTIONS(61), [sym_float] = ACTIONS(63), [sym_string] = ACTIONS(63), [anon_sym_true] = ACTIONS(65), [anon_sym_false] = ACTIONS(65), [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [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_asyncfor] = ACTIONS(127), - [anon_sym_transform] = ACTIONS(129), - [anon_sym_filter] = ACTIONS(131), - [anon_sym_find] = ACTIONS(133), - [anon_sym_remove] = ACTIONS(135), - [anon_sym_reduce] = ACTIONS(137), - [anon_sym_select] = ACTIONS(139), - [anon_sym_insert] = ACTIONS(141), - [anon_sym_async] = ACTIONS(143), + [anon_sym_COLON] = ACTIONS(1329), + [anon_sym_DOT_DOT] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1331), + [anon_sym_STAR] = ACTIONS(1329), + [anon_sym_SLASH] = ACTIONS(1329), + [anon_sym_PERCENT] = ACTIONS(1329), + [anon_sym_EQ_EQ] = ACTIONS(1329), + [anon_sym_BANG_EQ] = ACTIONS(1329), + [anon_sym_AMP_AMP] = ACTIONS(1329), + [anon_sym_PIPE_PIPE] = ACTIONS(1329), + [anon_sym_GT] = ACTIONS(1331), + [anon_sym_LT] = ACTIONS(1331), + [anon_sym_GT_EQ] = ACTIONS(1329), + [anon_sym_LT_EQ] = ACTIONS(1329), + [anon_sym_if] = ACTIONS(1331), + [anon_sym_elseif] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1331), + [anon_sym_match] = ACTIONS(1331), + [anon_sym_EQ_GT] = ACTIONS(85), + [anon_sym_while] = ACTIONS(1331), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_asyncfor] = ACTIONS(1329), + [anon_sym_transform] = ACTIONS(1331), + [anon_sym_filter] = ACTIONS(1331), + [anon_sym_find] = ACTIONS(1331), + [anon_sym_remove] = ACTIONS(1331), + [anon_sym_reduce] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1331), + [anon_sym_insert] = ACTIONS(1331), + [anon_sym_async] = ACTIONS(1331), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(147), - [anon_sym_assert_equal] = ACTIONS(147), - [anon_sym_download] = ACTIONS(147), - [anon_sym_help] = ACTIONS(147), - [anon_sym_length] = ACTIONS(147), - [anon_sym_output] = ACTIONS(147), - [anon_sym_output_error] = ACTIONS(147), - [anon_sym_type] = ACTIONS(147), - [anon_sym_append] = ACTIONS(147), - [anon_sym_metadata] = ACTIONS(147), - [anon_sym_move] = ACTIONS(147), - [anon_sym_read] = ACTIONS(147), - [anon_sym_workdir] = ACTIONS(147), - [anon_sym_write] = ACTIONS(147), - [anon_sym_from_json] = ACTIONS(147), - [anon_sym_to_json] = ACTIONS(147), - [anon_sym_to_string] = ACTIONS(147), - [anon_sym_to_float] = ACTIONS(147), - [anon_sym_bash] = ACTIONS(147), - [anon_sym_fish] = ACTIONS(147), - [anon_sym_raw] = ACTIONS(147), - [anon_sym_sh] = ACTIONS(147), - [anon_sym_zsh] = ACTIONS(147), - [anon_sym_random] = ACTIONS(147), - [anon_sym_random_boolean] = ACTIONS(147), - [anon_sym_random_float] = ACTIONS(147), - [anon_sym_random_integer] = ACTIONS(147), - [anon_sym_columns] = ACTIONS(147), - [anon_sym_rows] = ACTIONS(147), - [anon_sym_reverse] = ACTIONS(147), + [anon_sym_table] = ACTIONS(111), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_assert_equal] = ACTIONS(113), + [anon_sym_download] = ACTIONS(113), + [anon_sym_help] = ACTIONS(113), + [anon_sym_length] = ACTIONS(113), + [anon_sym_output] = ACTIONS(113), + [anon_sym_output_error] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_append] = ACTIONS(113), + [anon_sym_metadata] = ACTIONS(113), + [anon_sym_move] = ACTIONS(113), + [anon_sym_read] = ACTIONS(113), + [anon_sym_workdir] = ACTIONS(113), + [anon_sym_write] = ACTIONS(113), + [anon_sym_from_json] = ACTIONS(113), + [anon_sym_to_json] = ACTIONS(113), + [anon_sym_to_string] = ACTIONS(113), + [anon_sym_to_float] = ACTIONS(113), + [anon_sym_bash] = ACTIONS(113), + [anon_sym_fish] = ACTIONS(113), + [anon_sym_raw] = ACTIONS(113), + [anon_sym_sh] = ACTIONS(113), + [anon_sym_zsh] = ACTIONS(113), + [anon_sym_random] = ACTIONS(113), + [anon_sym_random_boolean] = ACTIONS(113), + [anon_sym_random_float] = ACTIONS(113), + [anon_sym_random_integer] = ACTIONS(113), + [anon_sym_columns] = ACTIONS(113), + [anon_sym_rows] = ACTIONS(113), + [anon_sym_reverse] = ACTIONS(113), }, [188] = { - [sym_block] = STATE(737), - [sym_statement] = STATE(17), - [sym_expression] = STATE(601), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(706), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(557), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1910), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(284), - [aux_sym_block_repeat1] = STATE(17), - [sym_identifier] = ACTIONS(149), + [sym_expression] = STATE(982), + [sym__expression_kind] = STATE(919), + [sym_value] = STATE(919), + [sym_boolean] = STATE(936), + [sym_list] = STATE(936), + [sym_map] = STATE(936), + [sym_index] = STATE(919), + [sym_math] = STATE(919), + [sym_logic] = STATE(919), + [sym_identifier_list] = STATE(1086), + [sym_table] = STATE(936), + [sym_function] = STATE(936), + [sym_function_call] = STATE(919), + [sym__context_defined_function] = STATE(934), + [sym_built_in_function] = STATE(934), + [sym__built_in_function_name] = STATE(550), + [aux_sym_match_repeat1] = STATE(188), + [ts_builtin_sym_end] = ACTIONS(1398), + [sym_identifier] = ACTIONS(1400), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(81), - [anon_sym_match] = ACTIONS(165), - [anon_sym_EQ_GT] = ACTIONS(167), - [anon_sym_while] = ACTIONS(169), - [anon_sym_for] = ACTIONS(171), - [anon_sym_asyncfor] = ACTIONS(173), - [anon_sym_transform] = ACTIONS(175), - [anon_sym_filter] = ACTIONS(177), - [anon_sym_find] = ACTIONS(179), - [anon_sym_remove] = ACTIONS(181), - [anon_sym_reduce] = ACTIONS(183), - [anon_sym_select] = ACTIONS(185), - [anon_sym_insert] = ACTIONS(187), - [anon_sym_async] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(191), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_assert_equal] = ACTIONS(193), - [anon_sym_download] = ACTIONS(193), - [anon_sym_help] = ACTIONS(193), - [anon_sym_length] = ACTIONS(193), - [anon_sym_output] = ACTIONS(193), - [anon_sym_output_error] = ACTIONS(193), - [anon_sym_type] = ACTIONS(193), - [anon_sym_append] = ACTIONS(193), - [anon_sym_metadata] = ACTIONS(193), - [anon_sym_move] = ACTIONS(193), - [anon_sym_read] = ACTIONS(193), - [anon_sym_workdir] = ACTIONS(193), - [anon_sym_write] = ACTIONS(193), - [anon_sym_from_json] = ACTIONS(193), - [anon_sym_to_json] = ACTIONS(193), - [anon_sym_to_string] = ACTIONS(193), - [anon_sym_to_float] = ACTIONS(193), - [anon_sym_bash] = ACTIONS(193), - [anon_sym_fish] = ACTIONS(193), - [anon_sym_raw] = ACTIONS(193), - [anon_sym_sh] = ACTIONS(193), - [anon_sym_zsh] = ACTIONS(193), - [anon_sym_random] = ACTIONS(193), - [anon_sym_random_boolean] = ACTIONS(193), - [anon_sym_random_float] = ACTIONS(193), - [anon_sym_random_integer] = ACTIONS(193), - [anon_sym_columns] = ACTIONS(193), - [anon_sym_rows] = ACTIONS(193), - [anon_sym_reverse] = ACTIONS(193), + [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_RBRACE] = ACTIONS(1398), + [anon_sym_SEMI] = ACTIONS(1398), + [anon_sym_LPAREN] = ACTIONS(1406), + [anon_sym_RPAREN] = ACTIONS(1398), + [sym_integer] = ACTIONS(1409), + [sym_float] = ACTIONS(1412), + [sym_string] = ACTIONS(1412), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_LBRACK] = ACTIONS(1418), + [anon_sym_COLON] = ACTIONS(1398), + [anon_sym_DOT_DOT] = ACTIONS(1398), + [anon_sym_PLUS] = ACTIONS(1398), + [anon_sym_DASH] = ACTIONS(1421), + [anon_sym_STAR] = ACTIONS(1398), + [anon_sym_SLASH] = ACTIONS(1398), + [anon_sym_PERCENT] = ACTIONS(1398), + [anon_sym_EQ_EQ] = ACTIONS(1398), + [anon_sym_BANG_EQ] = ACTIONS(1398), + [anon_sym_AMP_AMP] = ACTIONS(1398), + [anon_sym_PIPE_PIPE] = ACTIONS(1398), + [anon_sym_GT] = ACTIONS(1421), + [anon_sym_LT] = ACTIONS(1421), + [anon_sym_GT_EQ] = ACTIONS(1398), + [anon_sym_LT_EQ] = ACTIONS(1398), + [anon_sym_if] = ACTIONS(1421), + [anon_sym_elseif] = ACTIONS(1398), + [anon_sym_else] = ACTIONS(1421), + [anon_sym_match] = ACTIONS(1421), + [anon_sym_EQ_GT] = ACTIONS(1423), + [anon_sym_while] = ACTIONS(1421), + [anon_sym_for] = ACTIONS(1421), + [anon_sym_asyncfor] = ACTIONS(1398), + [anon_sym_transform] = ACTIONS(1421), + [anon_sym_filter] = ACTIONS(1421), + [anon_sym_find] = ACTIONS(1421), + [anon_sym_remove] = ACTIONS(1421), + [anon_sym_reduce] = ACTIONS(1421), + [anon_sym_select] = ACTIONS(1421), + [anon_sym_insert] = ACTIONS(1421), + [anon_sym_async] = ACTIONS(1421), + [anon_sym_PIPE] = ACTIONS(1426), + [anon_sym_table] = ACTIONS(1429), + [anon_sym_assert] = ACTIONS(1432), + [anon_sym_assert_equal] = ACTIONS(1432), + [anon_sym_download] = ACTIONS(1432), + [anon_sym_help] = ACTIONS(1432), + [anon_sym_length] = ACTIONS(1432), + [anon_sym_output] = ACTIONS(1432), + [anon_sym_output_error] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_append] = ACTIONS(1432), + [anon_sym_metadata] = ACTIONS(1432), + [anon_sym_move] = ACTIONS(1432), + [anon_sym_read] = ACTIONS(1432), + [anon_sym_workdir] = ACTIONS(1432), + [anon_sym_write] = ACTIONS(1432), + [anon_sym_from_json] = ACTIONS(1432), + [anon_sym_to_json] = ACTIONS(1432), + [anon_sym_to_string] = ACTIONS(1432), + [anon_sym_to_float] = ACTIONS(1432), + [anon_sym_bash] = ACTIONS(1432), + [anon_sym_fish] = ACTIONS(1432), + [anon_sym_raw] = ACTIONS(1432), + [anon_sym_sh] = ACTIONS(1432), + [anon_sym_zsh] = ACTIONS(1432), + [anon_sym_random] = ACTIONS(1432), + [anon_sym_random_boolean] = ACTIONS(1432), + [anon_sym_random_float] = ACTIONS(1432), + [anon_sym_random_integer] = ACTIONS(1432), + [anon_sym_columns] = ACTIONS(1432), + [anon_sym_rows] = ACTIONS(1432), + [anon_sym_reverse] = ACTIONS(1432), }, [189] = { - [sym_block] = STATE(610), - [sym_statement] = STATE(12), - [sym_expression] = STATE(583), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(631), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(567), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(2030), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(271), - [aux_sym_block_repeat1] = STATE(12), - [sym_identifier] = ACTIONS(55), + [sym_expression] = STATE(396), + [sym__expression_kind] = STATE(468), + [aux_sym__expression_list] = STATE(194), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_identifier_list] = STATE(1104), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [ts_builtin_sym_end] = ACTIONS(1333), + [sym_identifier] = ACTIONS(1444), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(59), - [sym_integer] = ACTIONS(61), - [sym_float] = ACTIONS(63), - [sym_string] = ACTIONS(63), - [anon_sym_true] = ACTIONS(65), - [anon_sym_false] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [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_asyncfor] = ACTIONS(127), - [anon_sym_transform] = ACTIONS(129), - [anon_sym_filter] = ACTIONS(131), - [anon_sym_find] = ACTIONS(133), - [anon_sym_remove] = ACTIONS(135), - [anon_sym_reduce] = ACTIONS(137), - [anon_sym_select] = ACTIONS(139), - [anon_sym_insert] = ACTIONS(141), - [anon_sym_async] = ACTIONS(143), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_RBRACE] = ACTIONS(1333), + [anon_sym_SEMI] = ACTIONS(1333), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_RPAREN] = ACTIONS(1333), + [anon_sym_COMMA] = ACTIONS(1333), + [sym_integer] = ACTIONS(11), + [sym_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(1333), + [anon_sym_COLON] = ACTIONS(1333), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1333), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_SLASH] = ACTIONS(1333), + [anon_sym_PERCENT] = ACTIONS(1333), + [anon_sym_EQ_EQ] = ACTIONS(1333), + [anon_sym_BANG_EQ] = ACTIONS(1333), + [anon_sym_AMP_AMP] = ACTIONS(1333), + [anon_sym_PIPE_PIPE] = ACTIONS(1333), + [anon_sym_GT] = ACTIONS(1335), + [anon_sym_LT] = ACTIONS(1335), + [anon_sym_GT_EQ] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1333), + [anon_sym_if] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1335), + [anon_sym_EQ_GT] = ACTIONS(195), + [anon_sym_while] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1335), + [anon_sym_asyncfor] = ACTIONS(1333), + [anon_sym_transform] = ACTIONS(1335), + [anon_sym_filter] = ACTIONS(1335), + [anon_sym_find] = ACTIONS(1335), + [anon_sym_remove] = ACTIONS(1335), + [anon_sym_reduce] = ACTIONS(1335), + [anon_sym_select] = ACTIONS(1335), + [anon_sym_insert] = ACTIONS(1335), + [anon_sym_async] = ACTIONS(1335), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(147), - [anon_sym_assert_equal] = ACTIONS(147), - [anon_sym_download] = ACTIONS(147), - [anon_sym_help] = ACTIONS(147), - [anon_sym_length] = ACTIONS(147), - [anon_sym_output] = ACTIONS(147), - [anon_sym_output_error] = ACTIONS(147), - [anon_sym_type] = ACTIONS(147), - [anon_sym_append] = ACTIONS(147), - [anon_sym_metadata] = ACTIONS(147), - [anon_sym_move] = ACTIONS(147), - [anon_sym_read] = ACTIONS(147), - [anon_sym_workdir] = ACTIONS(147), - [anon_sym_write] = ACTIONS(147), - [anon_sym_from_json] = ACTIONS(147), - [anon_sym_to_json] = ACTIONS(147), - [anon_sym_to_string] = ACTIONS(147), - [anon_sym_to_float] = ACTIONS(147), - [anon_sym_bash] = ACTIONS(147), - [anon_sym_fish] = ACTIONS(147), - [anon_sym_raw] = ACTIONS(147), - [anon_sym_sh] = ACTIONS(147), - [anon_sym_zsh] = ACTIONS(147), - [anon_sym_random] = ACTIONS(147), - [anon_sym_random_boolean] = ACTIONS(147), - [anon_sym_random_float] = ACTIONS(147), - [anon_sym_random_integer] = ACTIONS(147), - [anon_sym_columns] = ACTIONS(147), - [anon_sym_rows] = ACTIONS(147), - [anon_sym_reverse] = ACTIONS(147), + [anon_sym_table] = ACTIONS(219), + [anon_sym_assert] = ACTIONS(221), + [anon_sym_assert_equal] = ACTIONS(221), + [anon_sym_download] = ACTIONS(221), + [anon_sym_help] = ACTIONS(221), + [anon_sym_length] = ACTIONS(221), + [anon_sym_output] = ACTIONS(221), + [anon_sym_output_error] = ACTIONS(221), + [anon_sym_type] = ACTIONS(221), + [anon_sym_append] = ACTIONS(221), + [anon_sym_metadata] = ACTIONS(221), + [anon_sym_move] = ACTIONS(221), + [anon_sym_read] = ACTIONS(221), + [anon_sym_workdir] = ACTIONS(221), + [anon_sym_write] = ACTIONS(221), + [anon_sym_from_json] = ACTIONS(221), + [anon_sym_to_json] = ACTIONS(221), + [anon_sym_to_string] = ACTIONS(221), + [anon_sym_to_float] = ACTIONS(221), + [anon_sym_bash] = ACTIONS(221), + [anon_sym_fish] = ACTIONS(221), + [anon_sym_raw] = ACTIONS(221), + [anon_sym_sh] = ACTIONS(221), + [anon_sym_zsh] = ACTIONS(221), + [anon_sym_random] = ACTIONS(221), + [anon_sym_random_boolean] = ACTIONS(221), + [anon_sym_random_float] = ACTIONS(221), + [anon_sym_random_integer] = ACTIONS(221), + [anon_sym_columns] = ACTIONS(221), + [anon_sym_rows] = ACTIONS(221), + [anon_sym_reverse] = ACTIONS(221), }, [190] = { - [sym_block] = STATE(589), - [sym_statement] = STATE(12), - [sym_expression] = STATE(583), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(631), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(567), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(2030), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(271), - [aux_sym_block_repeat1] = STATE(12), - [sym_identifier] = ACTIONS(55), + [sym_expression] = STATE(982), + [sym__expression_kind] = STATE(919), + [sym_value] = STATE(919), + [sym_boolean] = STATE(936), + [sym_list] = STATE(936), + [sym_map] = STATE(936), + [sym_index] = STATE(919), + [sym_math] = STATE(919), + [sym_logic] = STATE(919), + [sym_identifier_list] = STATE(1086), + [sym_table] = STATE(936), + [sym_function] = STATE(936), + [sym_function_call] = STATE(919), + [sym__context_defined_function] = STATE(934), + [sym_built_in_function] = STATE(934), + [sym__built_in_function_name] = STATE(550), + [aux_sym_match_repeat1] = STATE(188), + [ts_builtin_sym_end] = ACTIONS(1337), + [sym_identifier] = ACTIONS(1339), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(59), - [sym_integer] = ACTIONS(61), - [sym_float] = ACTIONS(63), - [sym_string] = ACTIONS(63), - [anon_sym_true] = ACTIONS(65), - [anon_sym_false] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [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_asyncfor] = ACTIONS(127), - [anon_sym_transform] = ACTIONS(129), - [anon_sym_filter] = ACTIONS(131), - [anon_sym_find] = ACTIONS(133), - [anon_sym_remove] = ACTIONS(135), - [anon_sym_reduce] = ACTIONS(137), - [anon_sym_select] = ACTIONS(139), - [anon_sym_insert] = ACTIONS(141), - [anon_sym_async] = ACTIONS(143), + [anon_sym_LBRACE] = ACTIONS(1341), + [anon_sym_RBRACE] = ACTIONS(1337), + [anon_sym_SEMI] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(1343), + [anon_sym_RPAREN] = ACTIONS(1337), + [sym_integer] = ACTIONS(1345), + [sym_float] = ACTIONS(1347), + [sym_string] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1349), + [anon_sym_false] = ACTIONS(1349), + [anon_sym_LBRACK] = ACTIONS(1351), + [anon_sym_COLON] = ACTIONS(1337), + [anon_sym_DOT_DOT] = ACTIONS(1337), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_STAR] = ACTIONS(1337), + [anon_sym_SLASH] = ACTIONS(1337), + [anon_sym_PERCENT] = ACTIONS(1337), + [anon_sym_EQ_EQ] = ACTIONS(1337), + [anon_sym_BANG_EQ] = ACTIONS(1337), + [anon_sym_AMP_AMP] = ACTIONS(1337), + [anon_sym_PIPE_PIPE] = ACTIONS(1337), + [anon_sym_GT] = ACTIONS(1353), + [anon_sym_LT] = ACTIONS(1353), + [anon_sym_GT_EQ] = ACTIONS(1337), + [anon_sym_LT_EQ] = ACTIONS(1337), + [anon_sym_if] = ACTIONS(1353), + [anon_sym_elseif] = ACTIONS(1337), + [anon_sym_else] = ACTIONS(1353), + [anon_sym_match] = ACTIONS(1353), + [anon_sym_EQ_GT] = ACTIONS(1355), + [anon_sym_while] = ACTIONS(1353), + [anon_sym_for] = ACTIONS(1353), + [anon_sym_asyncfor] = ACTIONS(1337), + [anon_sym_transform] = ACTIONS(1353), + [anon_sym_filter] = ACTIONS(1353), + [anon_sym_find] = ACTIONS(1353), + [anon_sym_remove] = ACTIONS(1353), + [anon_sym_reduce] = ACTIONS(1353), + [anon_sym_select] = ACTIONS(1353), + [anon_sym_insert] = ACTIONS(1353), + [anon_sym_async] = ACTIONS(1353), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(147), - [anon_sym_assert_equal] = ACTIONS(147), - [anon_sym_download] = ACTIONS(147), - [anon_sym_help] = ACTIONS(147), - [anon_sym_length] = ACTIONS(147), - [anon_sym_output] = ACTIONS(147), - [anon_sym_output_error] = ACTIONS(147), - [anon_sym_type] = ACTIONS(147), - [anon_sym_append] = ACTIONS(147), - [anon_sym_metadata] = ACTIONS(147), - [anon_sym_move] = ACTIONS(147), - [anon_sym_read] = ACTIONS(147), - [anon_sym_workdir] = ACTIONS(147), - [anon_sym_write] = ACTIONS(147), - [anon_sym_from_json] = ACTIONS(147), - [anon_sym_to_json] = ACTIONS(147), - [anon_sym_to_string] = ACTIONS(147), - [anon_sym_to_float] = ACTIONS(147), - [anon_sym_bash] = ACTIONS(147), - [anon_sym_fish] = ACTIONS(147), - [anon_sym_raw] = ACTIONS(147), - [anon_sym_sh] = ACTIONS(147), - [anon_sym_zsh] = ACTIONS(147), - [anon_sym_random] = ACTIONS(147), - [anon_sym_random_boolean] = ACTIONS(147), - [anon_sym_random_float] = ACTIONS(147), - [anon_sym_random_integer] = ACTIONS(147), - [anon_sym_columns] = ACTIONS(147), - [anon_sym_rows] = ACTIONS(147), - [anon_sym_reverse] = ACTIONS(147), + [anon_sym_table] = ACTIONS(1357), + [anon_sym_assert] = ACTIONS(1359), + [anon_sym_assert_equal] = ACTIONS(1359), + [anon_sym_download] = ACTIONS(1359), + [anon_sym_help] = ACTIONS(1359), + [anon_sym_length] = ACTIONS(1359), + [anon_sym_output] = ACTIONS(1359), + [anon_sym_output_error] = ACTIONS(1359), + [anon_sym_type] = ACTIONS(1359), + [anon_sym_append] = ACTIONS(1359), + [anon_sym_metadata] = ACTIONS(1359), + [anon_sym_move] = ACTIONS(1359), + [anon_sym_read] = ACTIONS(1359), + [anon_sym_workdir] = ACTIONS(1359), + [anon_sym_write] = ACTIONS(1359), + [anon_sym_from_json] = ACTIONS(1359), + [anon_sym_to_json] = ACTIONS(1359), + [anon_sym_to_string] = ACTIONS(1359), + [anon_sym_to_float] = ACTIONS(1359), + [anon_sym_bash] = ACTIONS(1359), + [anon_sym_fish] = ACTIONS(1359), + [anon_sym_raw] = ACTIONS(1359), + [anon_sym_sh] = ACTIONS(1359), + [anon_sym_zsh] = ACTIONS(1359), + [anon_sym_random] = ACTIONS(1359), + [anon_sym_random_boolean] = ACTIONS(1359), + [anon_sym_random_float] = ACTIONS(1359), + [anon_sym_random_integer] = ACTIONS(1359), + [anon_sym_columns] = ACTIONS(1359), + [anon_sym_rows] = ACTIONS(1359), + [anon_sym_reverse] = ACTIONS(1359), }, [191] = { - [sym_block] = STATE(738), - [sym_statement] = STATE(24), - [sym_expression] = STATE(683), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(706), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(573), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1813), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(311), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(149), + [sym_expression] = STATE(379), + [sym__expression_kind] = STATE(415), + [aux_sym__expression_list] = STATE(195), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_identifier_list] = STATE(1225), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(170), + [ts_builtin_sym_end] = ACTIONS(1321), + [sym_identifier] = ACTIONS(1323), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(117), - [anon_sym_match] = ACTIONS(279), - [anon_sym_EQ_GT] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_for] = ACTIONS(285), - [anon_sym_asyncfor] = ACTIONS(287), - [anon_sym_transform] = ACTIONS(289), - [anon_sym_filter] = ACTIONS(291), - [anon_sym_find] = ACTIONS(293), - [anon_sym_remove] = ACTIONS(295), - [anon_sym_reduce] = ACTIONS(297), - [anon_sym_select] = ACTIONS(299), - [anon_sym_insert] = ACTIONS(301), - [anon_sym_async] = ACTIONS(303), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_RBRACE] = ACTIONS(1321), + [anon_sym_SEMI] = ACTIONS(1321), + [anon_sym_LPAREN] = ACTIONS(59), + [anon_sym_RPAREN] = ACTIONS(1321), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(1321), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_PLUS] = ACTIONS(1321), + [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_STAR] = ACTIONS(1321), + [anon_sym_SLASH] = ACTIONS(1321), + [anon_sym_PERCENT] = ACTIONS(1321), + [anon_sym_EQ_EQ] = ACTIONS(1321), + [anon_sym_BANG_EQ] = ACTIONS(1321), + [anon_sym_AMP_AMP] = ACTIONS(1321), + [anon_sym_PIPE_PIPE] = ACTIONS(1321), + [anon_sym_GT] = ACTIONS(1327), + [anon_sym_LT] = ACTIONS(1327), + [anon_sym_GT_EQ] = ACTIONS(1321), + [anon_sym_LT_EQ] = ACTIONS(1321), + [anon_sym_if] = ACTIONS(1327), + [anon_sym_elseif] = ACTIONS(1321), + [anon_sym_else] = ACTIONS(1327), + [anon_sym_match] = ACTIONS(1327), + [anon_sym_EQ_GT] = ACTIONS(85), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_for] = ACTIONS(1327), + [anon_sym_asyncfor] = ACTIONS(1321), + [anon_sym_transform] = ACTIONS(1327), + [anon_sym_filter] = ACTIONS(1327), + [anon_sym_find] = ACTIONS(1327), + [anon_sym_remove] = ACTIONS(1327), + [anon_sym_reduce] = ACTIONS(1327), + [anon_sym_select] = ACTIONS(1327), + [anon_sym_insert] = ACTIONS(1327), + [anon_sym_async] = ACTIONS(1327), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(305), - [anon_sym_assert] = ACTIONS(307), - [anon_sym_assert_equal] = ACTIONS(307), - [anon_sym_download] = ACTIONS(307), - [anon_sym_help] = ACTIONS(307), - [anon_sym_length] = ACTIONS(307), - [anon_sym_output] = ACTIONS(307), - [anon_sym_output_error] = ACTIONS(307), - [anon_sym_type] = ACTIONS(307), - [anon_sym_append] = ACTIONS(307), - [anon_sym_metadata] = ACTIONS(307), - [anon_sym_move] = ACTIONS(307), - [anon_sym_read] = ACTIONS(307), - [anon_sym_workdir] = ACTIONS(307), - [anon_sym_write] = ACTIONS(307), - [anon_sym_from_json] = ACTIONS(307), - [anon_sym_to_json] = ACTIONS(307), - [anon_sym_to_string] = ACTIONS(307), - [anon_sym_to_float] = ACTIONS(307), - [anon_sym_bash] = ACTIONS(307), - [anon_sym_fish] = ACTIONS(307), - [anon_sym_raw] = ACTIONS(307), - [anon_sym_sh] = ACTIONS(307), - [anon_sym_zsh] = ACTIONS(307), - [anon_sym_random] = ACTIONS(307), - [anon_sym_random_boolean] = ACTIONS(307), - [anon_sym_random_float] = ACTIONS(307), - [anon_sym_random_integer] = ACTIONS(307), - [anon_sym_columns] = ACTIONS(307), - [anon_sym_rows] = ACTIONS(307), - [anon_sym_reverse] = ACTIONS(307), + [anon_sym_table] = ACTIONS(111), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_assert_equal] = ACTIONS(113), + [anon_sym_download] = ACTIONS(113), + [anon_sym_help] = ACTIONS(113), + [anon_sym_length] = ACTIONS(113), + [anon_sym_output] = ACTIONS(113), + [anon_sym_output_error] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_append] = ACTIONS(113), + [anon_sym_metadata] = ACTIONS(113), + [anon_sym_move] = ACTIONS(113), + [anon_sym_read] = ACTIONS(113), + [anon_sym_workdir] = ACTIONS(113), + [anon_sym_write] = ACTIONS(113), + [anon_sym_from_json] = ACTIONS(113), + [anon_sym_to_json] = ACTIONS(113), + [anon_sym_to_string] = ACTIONS(113), + [anon_sym_to_float] = ACTIONS(113), + [anon_sym_bash] = ACTIONS(113), + [anon_sym_fish] = ACTIONS(113), + [anon_sym_raw] = ACTIONS(113), + [anon_sym_sh] = ACTIONS(113), + [anon_sym_zsh] = ACTIONS(113), + [anon_sym_random] = ACTIONS(113), + [anon_sym_random_boolean] = ACTIONS(113), + [anon_sym_random_float] = ACTIONS(113), + [anon_sym_random_integer] = ACTIONS(113), + [anon_sym_columns] = ACTIONS(113), + [anon_sym_rows] = ACTIONS(113), + [anon_sym_reverse] = ACTIONS(113), }, [192] = { - [sym_block] = STATE(737), - [sym_statement] = STATE(24), - [sym_expression] = STATE(683), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(706), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(573), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1813), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(311), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(149), + [sym_expression] = STATE(472), + [sym__expression_kind] = STATE(468), + [aux_sym__expression_list] = STATE(224), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment_operator] = STATE(334), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [ts_builtin_sym_end] = ACTIONS(1313), + [sym_identifier] = ACTIONS(1315), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(117), - [anon_sym_match] = ACTIONS(279), - [anon_sym_EQ_GT] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_for] = ACTIONS(285), - [anon_sym_asyncfor] = ACTIONS(287), - [anon_sym_transform] = ACTIONS(289), - [anon_sym_filter] = ACTIONS(291), - [anon_sym_find] = ACTIONS(293), - [anon_sym_remove] = ACTIONS(295), - [anon_sym_reduce] = ACTIONS(297), - [anon_sym_select] = ACTIONS(299), - [anon_sym_insert] = ACTIONS(301), - [anon_sym_async] = ACTIONS(303), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(305), - [anon_sym_assert] = ACTIONS(307), - [anon_sym_assert_equal] = ACTIONS(307), - [anon_sym_download] = ACTIONS(307), - [anon_sym_help] = ACTIONS(307), - [anon_sym_length] = ACTIONS(307), - [anon_sym_output] = ACTIONS(307), - [anon_sym_output_error] = ACTIONS(307), - [anon_sym_type] = ACTIONS(307), - [anon_sym_append] = ACTIONS(307), - [anon_sym_metadata] = ACTIONS(307), - [anon_sym_move] = ACTIONS(307), - [anon_sym_read] = ACTIONS(307), - [anon_sym_workdir] = ACTIONS(307), - [anon_sym_write] = ACTIONS(307), - [anon_sym_from_json] = ACTIONS(307), - [anon_sym_to_json] = ACTIONS(307), - [anon_sym_to_string] = ACTIONS(307), - [anon_sym_to_float] = ACTIONS(307), - [anon_sym_bash] = ACTIONS(307), - [anon_sym_fish] = ACTIONS(307), - [anon_sym_raw] = ACTIONS(307), - [anon_sym_sh] = ACTIONS(307), - [anon_sym_zsh] = ACTIONS(307), - [anon_sym_random] = ACTIONS(307), - [anon_sym_random_boolean] = ACTIONS(307), - [anon_sym_random_float] = ACTIONS(307), - [anon_sym_random_integer] = ACTIONS(307), - [anon_sym_columns] = ACTIONS(307), - [anon_sym_rows] = ACTIONS(307), - [anon_sym_reverse] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(1313), + [anon_sym_RBRACE] = ACTIONS(1313), + [anon_sym_SEMI] = ACTIONS(1313), + [anon_sym_LPAREN] = ACTIONS(1313), + [sym_integer] = ACTIONS(1315), + [sym_float] = ACTIONS(1313), + [sym_string] = ACTIONS(1313), + [anon_sym_true] = ACTIONS(1315), + [anon_sym_false] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1313), + [anon_sym_EQ] = ACTIONS(1317), + [anon_sym_COLON] = ACTIONS(1313), + [anon_sym_PLUS] = ACTIONS(1315), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_PERCENT] = ACTIONS(1313), + [anon_sym_EQ_EQ] = ACTIONS(1313), + [anon_sym_BANG_EQ] = ACTIONS(1313), + [anon_sym_AMP_AMP] = ACTIONS(1313), + [anon_sym_PIPE_PIPE] = ACTIONS(1313), + [anon_sym_GT] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(1315), + [anon_sym_GT_EQ] = ACTIONS(1313), + [anon_sym_LT_EQ] = ACTIONS(1313), + [anon_sym_PLUS_EQ] = ACTIONS(1319), + [anon_sym_DASH_EQ] = ACTIONS(1319), + [anon_sym_if] = ACTIONS(1315), + [anon_sym_match] = ACTIONS(1315), + [anon_sym_EQ_GT] = ACTIONS(1313), + [anon_sym_while] = ACTIONS(1315), + [anon_sym_for] = ACTIONS(1315), + [anon_sym_asyncfor] = ACTIONS(1313), + [anon_sym_transform] = ACTIONS(1315), + [anon_sym_filter] = ACTIONS(1315), + [anon_sym_find] = ACTIONS(1315), + [anon_sym_remove] = ACTIONS(1315), + [anon_sym_reduce] = ACTIONS(1315), + [anon_sym_select] = ACTIONS(1315), + [anon_sym_insert] = ACTIONS(1315), + [anon_sym_async] = ACTIONS(1315), + [anon_sym_PIPE] = ACTIONS(1315), + [anon_sym_table] = ACTIONS(1315), + [anon_sym_assert] = ACTIONS(1315), + [anon_sym_assert_equal] = ACTIONS(1315), + [anon_sym_download] = ACTIONS(1315), + [anon_sym_help] = ACTIONS(1315), + [anon_sym_length] = ACTIONS(1315), + [anon_sym_output] = ACTIONS(1315), + [anon_sym_output_error] = ACTIONS(1315), + [anon_sym_type] = ACTIONS(1315), + [anon_sym_append] = ACTIONS(1315), + [anon_sym_metadata] = ACTIONS(1315), + [anon_sym_move] = ACTIONS(1315), + [anon_sym_read] = ACTIONS(1315), + [anon_sym_workdir] = ACTIONS(1315), + [anon_sym_write] = ACTIONS(1315), + [anon_sym_from_json] = ACTIONS(1315), + [anon_sym_to_json] = ACTIONS(1315), + [anon_sym_to_string] = ACTIONS(1315), + [anon_sym_to_float] = ACTIONS(1315), + [anon_sym_bash] = ACTIONS(1315), + [anon_sym_fish] = ACTIONS(1315), + [anon_sym_raw] = ACTIONS(1315), + [anon_sym_sh] = ACTIONS(1315), + [anon_sym_zsh] = ACTIONS(1315), + [anon_sym_random] = ACTIONS(1315), + [anon_sym_random_boolean] = ACTIONS(1315), + [anon_sym_random_float] = ACTIONS(1315), + [anon_sym_random_integer] = ACTIONS(1315), + [anon_sym_columns] = ACTIONS(1315), + [anon_sym_rows] = ACTIONS(1315), + [anon_sym_reverse] = ACTIONS(1315), }, [193] = { - [sym_block] = STATE(734), - [sym_statement] = STATE(24), - [sym_expression] = STATE(683), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(706), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(573), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1813), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(311), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(149), + [sym_expression] = STATE(396), + [sym__expression_kind] = STATE(468), + [aux_sym__expression_list] = STATE(193), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_identifier_list] = STATE(1104), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [ts_builtin_sym_end] = ACTIONS(1361), + [sym_identifier] = ACTIONS(1446), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(117), - [anon_sym_match] = ACTIONS(279), - [anon_sym_EQ_GT] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_for] = ACTIONS(285), - [anon_sym_asyncfor] = ACTIONS(287), - [anon_sym_transform] = ACTIONS(289), - [anon_sym_filter] = ACTIONS(291), - [anon_sym_find] = ACTIONS(293), - [anon_sym_remove] = ACTIONS(295), - [anon_sym_reduce] = ACTIONS(297), - [anon_sym_select] = ACTIONS(299), - [anon_sym_insert] = ACTIONS(301), - [anon_sym_async] = ACTIONS(303), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(305), - [anon_sym_assert] = ACTIONS(307), - [anon_sym_assert_equal] = ACTIONS(307), - [anon_sym_download] = ACTIONS(307), - [anon_sym_help] = ACTIONS(307), - [anon_sym_length] = ACTIONS(307), - [anon_sym_output] = ACTIONS(307), - [anon_sym_output_error] = ACTIONS(307), - [anon_sym_type] = ACTIONS(307), - [anon_sym_append] = ACTIONS(307), - [anon_sym_metadata] = ACTIONS(307), - [anon_sym_move] = ACTIONS(307), - [anon_sym_read] = ACTIONS(307), - [anon_sym_workdir] = ACTIONS(307), - [anon_sym_write] = ACTIONS(307), - [anon_sym_from_json] = ACTIONS(307), - [anon_sym_to_json] = ACTIONS(307), - [anon_sym_to_string] = ACTIONS(307), - [anon_sym_to_float] = ACTIONS(307), - [anon_sym_bash] = ACTIONS(307), - [anon_sym_fish] = ACTIONS(307), - [anon_sym_raw] = ACTIONS(307), - [anon_sym_sh] = ACTIONS(307), - [anon_sym_zsh] = ACTIONS(307), - [anon_sym_random] = ACTIONS(307), - [anon_sym_random_boolean] = ACTIONS(307), - [anon_sym_random_float] = ACTIONS(307), - [anon_sym_random_integer] = ACTIONS(307), - [anon_sym_columns] = ACTIONS(307), - [anon_sym_rows] = ACTIONS(307), - [anon_sym_reverse] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_RBRACE] = ACTIONS(1361), + [anon_sym_SEMI] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(1452), + [anon_sym_RPAREN] = ACTIONS(1361), + [anon_sym_COMMA] = ACTIONS(1361), + [sym_integer] = ACTIONS(1455), + [sym_float] = ACTIONS(1458), + [sym_string] = ACTIONS(1458), + [anon_sym_true] = ACTIONS(1461), + [anon_sym_false] = ACTIONS(1461), + [anon_sym_LBRACK] = ACTIONS(1464), + [anon_sym_RBRACK] = ACTIONS(1361), + [anon_sym_COLON] = ACTIONS(1361), + [anon_sym_DOT_DOT] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1361), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_SLASH] = ACTIONS(1361), + [anon_sym_PERCENT] = ACTIONS(1361), + [anon_sym_EQ_EQ] = ACTIONS(1361), + [anon_sym_BANG_EQ] = ACTIONS(1361), + [anon_sym_AMP_AMP] = ACTIONS(1361), + [anon_sym_PIPE_PIPE] = ACTIONS(1361), + [anon_sym_GT] = ACTIONS(1384), + [anon_sym_LT] = ACTIONS(1384), + [anon_sym_GT_EQ] = ACTIONS(1361), + [anon_sym_LT_EQ] = ACTIONS(1361), + [anon_sym_if] = ACTIONS(1384), + [anon_sym_match] = ACTIONS(1384), + [anon_sym_EQ_GT] = ACTIONS(1467), + [anon_sym_while] = ACTIONS(1384), + [anon_sym_for] = ACTIONS(1384), + [anon_sym_asyncfor] = ACTIONS(1361), + [anon_sym_transform] = ACTIONS(1384), + [anon_sym_filter] = ACTIONS(1384), + [anon_sym_find] = ACTIONS(1384), + [anon_sym_remove] = ACTIONS(1384), + [anon_sym_reduce] = ACTIONS(1384), + [anon_sym_select] = ACTIONS(1384), + [anon_sym_insert] = ACTIONS(1384), + [anon_sym_async] = ACTIONS(1384), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_table] = ACTIONS(1470), + [anon_sym_assert] = ACTIONS(1473), + [anon_sym_assert_equal] = ACTIONS(1473), + [anon_sym_download] = ACTIONS(1473), + [anon_sym_help] = ACTIONS(1473), + [anon_sym_length] = ACTIONS(1473), + [anon_sym_output] = ACTIONS(1473), + [anon_sym_output_error] = ACTIONS(1473), + [anon_sym_type] = ACTIONS(1473), + [anon_sym_append] = ACTIONS(1473), + [anon_sym_metadata] = ACTIONS(1473), + [anon_sym_move] = ACTIONS(1473), + [anon_sym_read] = ACTIONS(1473), + [anon_sym_workdir] = ACTIONS(1473), + [anon_sym_write] = ACTIONS(1473), + [anon_sym_from_json] = ACTIONS(1473), + [anon_sym_to_json] = ACTIONS(1473), + [anon_sym_to_string] = ACTIONS(1473), + [anon_sym_to_float] = ACTIONS(1473), + [anon_sym_bash] = ACTIONS(1473), + [anon_sym_fish] = ACTIONS(1473), + [anon_sym_raw] = ACTIONS(1473), + [anon_sym_sh] = ACTIONS(1473), + [anon_sym_zsh] = ACTIONS(1473), + [anon_sym_random] = ACTIONS(1473), + [anon_sym_random_boolean] = ACTIONS(1473), + [anon_sym_random_float] = ACTIONS(1473), + [anon_sym_random_integer] = ACTIONS(1473), + [anon_sym_columns] = ACTIONS(1473), + [anon_sym_rows] = ACTIONS(1473), + [anon_sym_reverse] = ACTIONS(1473), }, [194] = { - [sym_block] = STATE(733), - [sym_statement] = STATE(24), - [sym_expression] = STATE(683), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(706), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(573), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1813), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(311), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(149), + [sym_expression] = STATE(396), + [sym__expression_kind] = STATE(468), + [aux_sym__expression_list] = STATE(193), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_identifier_list] = STATE(1104), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [ts_builtin_sym_end] = ACTIONS(1321), + [sym_identifier] = ACTIONS(1444), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(117), - [anon_sym_match] = ACTIONS(279), - [anon_sym_EQ_GT] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_for] = ACTIONS(285), - [anon_sym_asyncfor] = ACTIONS(287), - [anon_sym_transform] = ACTIONS(289), - [anon_sym_filter] = ACTIONS(291), - [anon_sym_find] = ACTIONS(293), - [anon_sym_remove] = ACTIONS(295), - [anon_sym_reduce] = ACTIONS(297), - [anon_sym_select] = ACTIONS(299), - [anon_sym_insert] = ACTIONS(301), - [anon_sym_async] = ACTIONS(303), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_RBRACE] = ACTIONS(1321), + [anon_sym_SEMI] = ACTIONS(1321), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_RPAREN] = ACTIONS(1321), + [anon_sym_COMMA] = ACTIONS(1321), + [sym_integer] = ACTIONS(11), + [sym_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(1321), + [anon_sym_COLON] = ACTIONS(1321), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_PLUS] = ACTIONS(1321), + [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_STAR] = ACTIONS(1321), + [anon_sym_SLASH] = ACTIONS(1321), + [anon_sym_PERCENT] = ACTIONS(1321), + [anon_sym_EQ_EQ] = ACTIONS(1321), + [anon_sym_BANG_EQ] = ACTIONS(1321), + [anon_sym_AMP_AMP] = ACTIONS(1321), + [anon_sym_PIPE_PIPE] = ACTIONS(1321), + [anon_sym_GT] = ACTIONS(1327), + [anon_sym_LT] = ACTIONS(1327), + [anon_sym_GT_EQ] = ACTIONS(1321), + [anon_sym_LT_EQ] = ACTIONS(1321), + [anon_sym_if] = ACTIONS(1327), + [anon_sym_match] = ACTIONS(1327), + [anon_sym_EQ_GT] = ACTIONS(195), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_for] = ACTIONS(1327), + [anon_sym_asyncfor] = ACTIONS(1321), + [anon_sym_transform] = ACTIONS(1327), + [anon_sym_filter] = ACTIONS(1327), + [anon_sym_find] = ACTIONS(1327), + [anon_sym_remove] = ACTIONS(1327), + [anon_sym_reduce] = ACTIONS(1327), + [anon_sym_select] = ACTIONS(1327), + [anon_sym_insert] = ACTIONS(1327), + [anon_sym_async] = ACTIONS(1327), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(305), - [anon_sym_assert] = ACTIONS(307), - [anon_sym_assert_equal] = ACTIONS(307), - [anon_sym_download] = ACTIONS(307), - [anon_sym_help] = ACTIONS(307), - [anon_sym_length] = ACTIONS(307), - [anon_sym_output] = ACTIONS(307), - [anon_sym_output_error] = ACTIONS(307), - [anon_sym_type] = ACTIONS(307), - [anon_sym_append] = ACTIONS(307), - [anon_sym_metadata] = ACTIONS(307), - [anon_sym_move] = ACTIONS(307), - [anon_sym_read] = ACTIONS(307), - [anon_sym_workdir] = ACTIONS(307), - [anon_sym_write] = ACTIONS(307), - [anon_sym_from_json] = ACTIONS(307), - [anon_sym_to_json] = ACTIONS(307), - [anon_sym_to_string] = ACTIONS(307), - [anon_sym_to_float] = ACTIONS(307), - [anon_sym_bash] = ACTIONS(307), - [anon_sym_fish] = ACTIONS(307), - [anon_sym_raw] = ACTIONS(307), - [anon_sym_sh] = ACTIONS(307), - [anon_sym_zsh] = ACTIONS(307), - [anon_sym_random] = ACTIONS(307), - [anon_sym_random_boolean] = ACTIONS(307), - [anon_sym_random_float] = ACTIONS(307), - [anon_sym_random_integer] = ACTIONS(307), - [anon_sym_columns] = ACTIONS(307), - [anon_sym_rows] = ACTIONS(307), - [anon_sym_reverse] = ACTIONS(307), + [anon_sym_table] = ACTIONS(219), + [anon_sym_assert] = ACTIONS(221), + [anon_sym_assert_equal] = ACTIONS(221), + [anon_sym_download] = ACTIONS(221), + [anon_sym_help] = ACTIONS(221), + [anon_sym_length] = ACTIONS(221), + [anon_sym_output] = ACTIONS(221), + [anon_sym_output_error] = ACTIONS(221), + [anon_sym_type] = ACTIONS(221), + [anon_sym_append] = ACTIONS(221), + [anon_sym_metadata] = ACTIONS(221), + [anon_sym_move] = ACTIONS(221), + [anon_sym_read] = ACTIONS(221), + [anon_sym_workdir] = ACTIONS(221), + [anon_sym_write] = ACTIONS(221), + [anon_sym_from_json] = ACTIONS(221), + [anon_sym_to_json] = ACTIONS(221), + [anon_sym_to_string] = ACTIONS(221), + [anon_sym_to_float] = ACTIONS(221), + [anon_sym_bash] = ACTIONS(221), + [anon_sym_fish] = ACTIONS(221), + [anon_sym_raw] = ACTIONS(221), + [anon_sym_sh] = ACTIONS(221), + [anon_sym_zsh] = ACTIONS(221), + [anon_sym_random] = ACTIONS(221), + [anon_sym_random_boolean] = ACTIONS(221), + [anon_sym_random_float] = ACTIONS(221), + [anon_sym_random_integer] = ACTIONS(221), + [anon_sym_columns] = ACTIONS(221), + [anon_sym_rows] = ACTIONS(221), + [anon_sym_reverse] = ACTIONS(221), }, [195] = { - [sym_block] = STATE(731), - [sym_statement] = STATE(24), - [sym_expression] = STATE(683), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(706), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(573), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1813), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(311), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(149), + [sym_expression] = STATE(379), + [sym__expression_kind] = STATE(415), + [aux_sym__expression_list] = STATE(195), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_identifier_list] = STATE(1225), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(170), + [ts_builtin_sym_end] = ACTIONS(1361), + [sym_identifier] = ACTIONS(1363), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(117), - [anon_sym_match] = ACTIONS(279), - [anon_sym_EQ_GT] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_for] = ACTIONS(285), - [anon_sym_asyncfor] = ACTIONS(287), - [anon_sym_transform] = ACTIONS(289), - [anon_sym_filter] = ACTIONS(291), - [anon_sym_find] = ACTIONS(293), - [anon_sym_remove] = ACTIONS(295), - [anon_sym_reduce] = ACTIONS(297), - [anon_sym_select] = ACTIONS(299), - [anon_sym_insert] = ACTIONS(301), - [anon_sym_async] = ACTIONS(303), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(305), - [anon_sym_assert] = ACTIONS(307), - [anon_sym_assert_equal] = ACTIONS(307), - [anon_sym_download] = ACTIONS(307), - [anon_sym_help] = ACTIONS(307), - [anon_sym_length] = ACTIONS(307), - [anon_sym_output] = ACTIONS(307), - [anon_sym_output_error] = ACTIONS(307), - [anon_sym_type] = ACTIONS(307), - [anon_sym_append] = ACTIONS(307), - [anon_sym_metadata] = ACTIONS(307), - [anon_sym_move] = ACTIONS(307), - [anon_sym_read] = ACTIONS(307), - [anon_sym_workdir] = ACTIONS(307), - [anon_sym_write] = ACTIONS(307), - [anon_sym_from_json] = ACTIONS(307), - [anon_sym_to_json] = ACTIONS(307), - [anon_sym_to_string] = ACTIONS(307), - [anon_sym_to_float] = ACTIONS(307), - [anon_sym_bash] = ACTIONS(307), - [anon_sym_fish] = ACTIONS(307), - [anon_sym_raw] = ACTIONS(307), - [anon_sym_sh] = ACTIONS(307), - [anon_sym_zsh] = ACTIONS(307), - [anon_sym_random] = ACTIONS(307), - [anon_sym_random_boolean] = ACTIONS(307), - [anon_sym_random_float] = ACTIONS(307), - [anon_sym_random_integer] = ACTIONS(307), - [anon_sym_columns] = ACTIONS(307), - [anon_sym_rows] = ACTIONS(307), - [anon_sym_reverse] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(1366), + [anon_sym_RBRACE] = ACTIONS(1361), + [anon_sym_SEMI] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_RPAREN] = ACTIONS(1361), + [sym_integer] = ACTIONS(1372), + [sym_float] = ACTIONS(1375), + [sym_string] = ACTIONS(1375), + [anon_sym_true] = ACTIONS(1378), + [anon_sym_false] = ACTIONS(1378), + [anon_sym_LBRACK] = ACTIONS(1381), + [anon_sym_COLON] = ACTIONS(1361), + [anon_sym_DOT_DOT] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1361), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_SLASH] = ACTIONS(1361), + [anon_sym_PERCENT] = ACTIONS(1361), + [anon_sym_EQ_EQ] = ACTIONS(1361), + [anon_sym_BANG_EQ] = ACTIONS(1361), + [anon_sym_AMP_AMP] = ACTIONS(1361), + [anon_sym_PIPE_PIPE] = ACTIONS(1361), + [anon_sym_GT] = ACTIONS(1384), + [anon_sym_LT] = ACTIONS(1384), + [anon_sym_GT_EQ] = ACTIONS(1361), + [anon_sym_LT_EQ] = ACTIONS(1361), + [anon_sym_if] = ACTIONS(1384), + [anon_sym_elseif] = ACTIONS(1361), + [anon_sym_else] = ACTIONS(1384), + [anon_sym_match] = ACTIONS(1384), + [anon_sym_EQ_GT] = ACTIONS(1386), + [anon_sym_while] = ACTIONS(1384), + [anon_sym_for] = ACTIONS(1384), + [anon_sym_asyncfor] = ACTIONS(1361), + [anon_sym_transform] = ACTIONS(1384), + [anon_sym_filter] = ACTIONS(1384), + [anon_sym_find] = ACTIONS(1384), + [anon_sym_remove] = ACTIONS(1384), + [anon_sym_reduce] = ACTIONS(1384), + [anon_sym_select] = ACTIONS(1384), + [anon_sym_insert] = ACTIONS(1384), + [anon_sym_async] = ACTIONS(1384), + [anon_sym_PIPE] = ACTIONS(1389), + [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), }, [196] = { - [sym_block] = STATE(729), - [sym_statement] = STATE(24), - [sym_expression] = STATE(683), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(706), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(573), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1813), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(311), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(149), + [sym_expression] = STATE(396), + [sym__expression_kind] = STATE(468), + [aux_sym__expression_list] = STATE(193), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_identifier_list] = STATE(1104), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [ts_builtin_sym_end] = ACTIONS(1329), + [sym_identifier] = ACTIONS(1444), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(117), - [anon_sym_match] = ACTIONS(279), - [anon_sym_EQ_GT] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_for] = ACTIONS(285), - [anon_sym_asyncfor] = ACTIONS(287), - [anon_sym_transform] = ACTIONS(289), - [anon_sym_filter] = ACTIONS(291), - [anon_sym_find] = ACTIONS(293), - [anon_sym_remove] = ACTIONS(295), - [anon_sym_reduce] = ACTIONS(297), - [anon_sym_select] = ACTIONS(299), - [anon_sym_insert] = ACTIONS(301), - [anon_sym_async] = ACTIONS(303), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_RBRACE] = ACTIONS(1329), + [anon_sym_SEMI] = ACTIONS(1329), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_RPAREN] = ACTIONS(1329), + [anon_sym_COMMA] = ACTIONS(1329), + [sym_integer] = ACTIONS(11), + [sym_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(1329), + [anon_sym_COLON] = ACTIONS(1329), + [anon_sym_DOT_DOT] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1331), + [anon_sym_STAR] = ACTIONS(1329), + [anon_sym_SLASH] = ACTIONS(1329), + [anon_sym_PERCENT] = ACTIONS(1329), + [anon_sym_EQ_EQ] = ACTIONS(1329), + [anon_sym_BANG_EQ] = ACTIONS(1329), + [anon_sym_AMP_AMP] = ACTIONS(1329), + [anon_sym_PIPE_PIPE] = ACTIONS(1329), + [anon_sym_GT] = ACTIONS(1331), + [anon_sym_LT] = ACTIONS(1331), + [anon_sym_GT_EQ] = ACTIONS(1329), + [anon_sym_LT_EQ] = ACTIONS(1329), + [anon_sym_if] = ACTIONS(1331), + [anon_sym_match] = ACTIONS(1331), + [anon_sym_EQ_GT] = ACTIONS(195), + [anon_sym_while] = ACTIONS(1331), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_asyncfor] = ACTIONS(1329), + [anon_sym_transform] = ACTIONS(1331), + [anon_sym_filter] = ACTIONS(1331), + [anon_sym_find] = ACTIONS(1331), + [anon_sym_remove] = ACTIONS(1331), + [anon_sym_reduce] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1331), + [anon_sym_insert] = ACTIONS(1331), + [anon_sym_async] = ACTIONS(1331), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(305), - [anon_sym_assert] = ACTIONS(307), - [anon_sym_assert_equal] = ACTIONS(307), - [anon_sym_download] = ACTIONS(307), - [anon_sym_help] = ACTIONS(307), - [anon_sym_length] = ACTIONS(307), - [anon_sym_output] = ACTIONS(307), - [anon_sym_output_error] = ACTIONS(307), - [anon_sym_type] = ACTIONS(307), - [anon_sym_append] = ACTIONS(307), - [anon_sym_metadata] = ACTIONS(307), - [anon_sym_move] = ACTIONS(307), - [anon_sym_read] = ACTIONS(307), - [anon_sym_workdir] = ACTIONS(307), - [anon_sym_write] = ACTIONS(307), - [anon_sym_from_json] = ACTIONS(307), - [anon_sym_to_json] = ACTIONS(307), - [anon_sym_to_string] = ACTIONS(307), - [anon_sym_to_float] = ACTIONS(307), - [anon_sym_bash] = ACTIONS(307), - [anon_sym_fish] = ACTIONS(307), - [anon_sym_raw] = ACTIONS(307), - [anon_sym_sh] = ACTIONS(307), - [anon_sym_zsh] = ACTIONS(307), - [anon_sym_random] = ACTIONS(307), - [anon_sym_random_boolean] = ACTIONS(307), - [anon_sym_random_float] = ACTIONS(307), - [anon_sym_random_integer] = ACTIONS(307), - [anon_sym_columns] = ACTIONS(307), - [anon_sym_rows] = ACTIONS(307), - [anon_sym_reverse] = ACTIONS(307), + [anon_sym_table] = ACTIONS(219), + [anon_sym_assert] = ACTIONS(221), + [anon_sym_assert_equal] = ACTIONS(221), + [anon_sym_download] = ACTIONS(221), + [anon_sym_help] = ACTIONS(221), + [anon_sym_length] = ACTIONS(221), + [anon_sym_output] = ACTIONS(221), + [anon_sym_output_error] = ACTIONS(221), + [anon_sym_type] = ACTIONS(221), + [anon_sym_append] = ACTIONS(221), + [anon_sym_metadata] = ACTIONS(221), + [anon_sym_move] = ACTIONS(221), + [anon_sym_read] = ACTIONS(221), + [anon_sym_workdir] = ACTIONS(221), + [anon_sym_write] = ACTIONS(221), + [anon_sym_from_json] = ACTIONS(221), + [anon_sym_to_json] = ACTIONS(221), + [anon_sym_to_string] = ACTIONS(221), + [anon_sym_to_float] = ACTIONS(221), + [anon_sym_bash] = ACTIONS(221), + [anon_sym_fish] = ACTIONS(221), + [anon_sym_raw] = ACTIONS(221), + [anon_sym_sh] = ACTIONS(221), + [anon_sym_zsh] = ACTIONS(221), + [anon_sym_random] = ACTIONS(221), + [anon_sym_random_boolean] = ACTIONS(221), + [anon_sym_random_float] = ACTIONS(221), + [anon_sym_random_integer] = ACTIONS(221), + [anon_sym_columns] = ACTIONS(221), + [anon_sym_rows] = ACTIONS(221), + [anon_sym_reverse] = ACTIONS(221), }, [197] = { - [sym_block] = STATE(619), - [sym_statement] = STATE(12), - [sym_expression] = STATE(583), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(631), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(567), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(2030), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(271), - [aux_sym_block_repeat1] = STATE(12), - [sym_identifier] = ACTIONS(55), + [sym_expression] = STATE(443), + [sym__expression_kind] = STATE(468), + [aux_sym__expression_list] = STATE(204), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [ts_builtin_sym_end] = ACTIONS(1321), + [sym_identifier] = ACTIONS(1444), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(59), - [sym_integer] = ACTIONS(61), - [sym_float] = ACTIONS(63), - [sym_string] = ACTIONS(63), - [anon_sym_true] = ACTIONS(65), - [anon_sym_false] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [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_asyncfor] = ACTIONS(127), - [anon_sym_transform] = ACTIONS(129), - [anon_sym_filter] = ACTIONS(131), - [anon_sym_find] = ACTIONS(133), - [anon_sym_remove] = ACTIONS(135), - [anon_sym_reduce] = ACTIONS(137), - [anon_sym_select] = ACTIONS(139), - [anon_sym_insert] = ACTIONS(141), - [anon_sym_async] = ACTIONS(143), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_RBRACE] = ACTIONS(1321), + [anon_sym_SEMI] = ACTIONS(1321), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_RPAREN] = ACTIONS(1321), + [anon_sym_COMMA] = ACTIONS(1321), + [sym_integer] = ACTIONS(11), + [sym_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(1321), + [anon_sym_COLON] = ACTIONS(1321), + [anon_sym_PLUS] = ACTIONS(1321), + [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_STAR] = ACTIONS(1321), + [anon_sym_SLASH] = ACTIONS(1321), + [anon_sym_PERCENT] = ACTIONS(1321), + [anon_sym_EQ_EQ] = ACTIONS(1321), + [anon_sym_BANG_EQ] = ACTIONS(1321), + [anon_sym_AMP_AMP] = ACTIONS(1321), + [anon_sym_PIPE_PIPE] = ACTIONS(1321), + [anon_sym_GT] = ACTIONS(1327), + [anon_sym_LT] = ACTIONS(1327), + [anon_sym_GT_EQ] = ACTIONS(1321), + [anon_sym_LT_EQ] = ACTIONS(1321), + [anon_sym_if] = ACTIONS(1327), + [anon_sym_match] = ACTIONS(1327), + [anon_sym_EQ_GT] = ACTIONS(265), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_for] = ACTIONS(1327), + [anon_sym_asyncfor] = ACTIONS(1321), + [anon_sym_transform] = ACTIONS(1327), + [anon_sym_filter] = ACTIONS(1327), + [anon_sym_find] = ACTIONS(1327), + [anon_sym_remove] = ACTIONS(1327), + [anon_sym_reduce] = ACTIONS(1327), + [anon_sym_select] = ACTIONS(1327), + [anon_sym_insert] = ACTIONS(1327), + [anon_sym_async] = ACTIONS(1327), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(147), - [anon_sym_assert_equal] = ACTIONS(147), - [anon_sym_download] = ACTIONS(147), - [anon_sym_help] = ACTIONS(147), - [anon_sym_length] = ACTIONS(147), - [anon_sym_output] = ACTIONS(147), - [anon_sym_output_error] = ACTIONS(147), - [anon_sym_type] = ACTIONS(147), - [anon_sym_append] = ACTIONS(147), - [anon_sym_metadata] = ACTIONS(147), - [anon_sym_move] = ACTIONS(147), - [anon_sym_read] = ACTIONS(147), - [anon_sym_workdir] = ACTIONS(147), - [anon_sym_write] = ACTIONS(147), - [anon_sym_from_json] = ACTIONS(147), - [anon_sym_to_json] = ACTIONS(147), - [anon_sym_to_string] = ACTIONS(147), - [anon_sym_to_float] = ACTIONS(147), - [anon_sym_bash] = ACTIONS(147), - [anon_sym_fish] = ACTIONS(147), - [anon_sym_raw] = ACTIONS(147), - [anon_sym_sh] = ACTIONS(147), - [anon_sym_zsh] = ACTIONS(147), - [anon_sym_random] = ACTIONS(147), - [anon_sym_random_boolean] = ACTIONS(147), - [anon_sym_random_float] = ACTIONS(147), - [anon_sym_random_integer] = ACTIONS(147), - [anon_sym_columns] = ACTIONS(147), - [anon_sym_rows] = ACTIONS(147), - [anon_sym_reverse] = ACTIONS(147), + [anon_sym_table] = ACTIONS(289), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_assert_equal] = ACTIONS(291), + [anon_sym_download] = ACTIONS(291), + [anon_sym_help] = ACTIONS(291), + [anon_sym_length] = ACTIONS(291), + [anon_sym_output] = ACTIONS(291), + [anon_sym_output_error] = ACTIONS(291), + [anon_sym_type] = ACTIONS(291), + [anon_sym_append] = ACTIONS(291), + [anon_sym_metadata] = ACTIONS(291), + [anon_sym_move] = ACTIONS(291), + [anon_sym_read] = ACTIONS(291), + [anon_sym_workdir] = ACTIONS(291), + [anon_sym_write] = ACTIONS(291), + [anon_sym_from_json] = ACTIONS(291), + [anon_sym_to_json] = ACTIONS(291), + [anon_sym_to_string] = ACTIONS(291), + [anon_sym_to_float] = ACTIONS(291), + [anon_sym_bash] = ACTIONS(291), + [anon_sym_fish] = ACTIONS(291), + [anon_sym_raw] = ACTIONS(291), + [anon_sym_sh] = ACTIONS(291), + [anon_sym_zsh] = ACTIONS(291), + [anon_sym_random] = ACTIONS(291), + [anon_sym_random_boolean] = ACTIONS(291), + [anon_sym_random_float] = ACTIONS(291), + [anon_sym_random_integer] = ACTIONS(291), + [anon_sym_columns] = ACTIONS(291), + [anon_sym_rows] = ACTIONS(291), + [anon_sym_reverse] = ACTIONS(291), }, [198] = { - [sym_block] = STATE(734), - [sym_statement] = STATE(17), - [sym_expression] = STATE(601), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(706), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(557), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1910), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(284), - [aux_sym_block_repeat1] = STATE(17), - [sym_identifier] = ACTIONS(149), + [sym_expression] = STATE(998), + [sym__expression_kind] = STATE(919), + [sym_value] = STATE(919), + [sym_boolean] = STATE(936), + [sym_list] = STATE(936), + [sym_map] = STATE(936), + [sym_index] = STATE(919), + [sym_math] = STATE(919), + [sym_logic] = STATE(919), + [sym_identifier_list] = STATE(1086), + [sym_table] = STATE(936), + [sym_function] = STATE(936), + [sym_function_call] = STATE(919), + [sym__context_defined_function] = STATE(934), + [sym_built_in_function] = STATE(934), + [sym__built_in_function_name] = STATE(550), + [aux_sym_match_repeat1] = STATE(205), + [ts_builtin_sym_end] = ACTIONS(1337), + [sym_identifier] = ACTIONS(1339), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(81), - [anon_sym_match] = ACTIONS(165), - [anon_sym_EQ_GT] = ACTIONS(167), - [anon_sym_while] = ACTIONS(169), - [anon_sym_for] = ACTIONS(171), - [anon_sym_asyncfor] = ACTIONS(173), - [anon_sym_transform] = ACTIONS(175), - [anon_sym_filter] = ACTIONS(177), - [anon_sym_find] = ACTIONS(179), - [anon_sym_remove] = ACTIONS(181), - [anon_sym_reduce] = ACTIONS(183), - [anon_sym_select] = ACTIONS(185), - [anon_sym_insert] = ACTIONS(187), - [anon_sym_async] = ACTIONS(189), + [anon_sym_LBRACE] = ACTIONS(1341), + [anon_sym_RBRACE] = ACTIONS(1337), + [anon_sym_SEMI] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(1343), + [anon_sym_RPAREN] = ACTIONS(1337), + [sym_integer] = ACTIONS(1345), + [sym_float] = ACTIONS(1347), + [sym_string] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1349), + [anon_sym_false] = ACTIONS(1349), + [anon_sym_LBRACK] = ACTIONS(1351), + [anon_sym_COLON] = ACTIONS(1337), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_STAR] = ACTIONS(1337), + [anon_sym_SLASH] = ACTIONS(1337), + [anon_sym_PERCENT] = ACTIONS(1337), + [anon_sym_EQ_EQ] = ACTIONS(1337), + [anon_sym_BANG_EQ] = ACTIONS(1337), + [anon_sym_AMP_AMP] = ACTIONS(1337), + [anon_sym_PIPE_PIPE] = ACTIONS(1337), + [anon_sym_GT] = ACTIONS(1353), + [anon_sym_LT] = ACTIONS(1353), + [anon_sym_GT_EQ] = ACTIONS(1337), + [anon_sym_LT_EQ] = ACTIONS(1337), + [anon_sym_if] = ACTIONS(1353), + [anon_sym_elseif] = ACTIONS(1337), + [anon_sym_else] = ACTIONS(1353), + [anon_sym_match] = ACTIONS(1353), + [anon_sym_EQ_GT] = ACTIONS(1355), + [anon_sym_while] = ACTIONS(1353), + [anon_sym_for] = ACTIONS(1353), + [anon_sym_asyncfor] = ACTIONS(1337), + [anon_sym_transform] = ACTIONS(1353), + [anon_sym_filter] = ACTIONS(1353), + [anon_sym_find] = ACTIONS(1353), + [anon_sym_remove] = ACTIONS(1353), + [anon_sym_reduce] = ACTIONS(1353), + [anon_sym_select] = ACTIONS(1353), + [anon_sym_insert] = ACTIONS(1353), + [anon_sym_async] = ACTIONS(1353), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(191), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_assert_equal] = ACTIONS(193), - [anon_sym_download] = ACTIONS(193), - [anon_sym_help] = ACTIONS(193), - [anon_sym_length] = ACTIONS(193), - [anon_sym_output] = ACTIONS(193), - [anon_sym_output_error] = ACTIONS(193), - [anon_sym_type] = ACTIONS(193), - [anon_sym_append] = ACTIONS(193), - [anon_sym_metadata] = ACTIONS(193), - [anon_sym_move] = ACTIONS(193), - [anon_sym_read] = ACTIONS(193), - [anon_sym_workdir] = ACTIONS(193), - [anon_sym_write] = ACTIONS(193), - [anon_sym_from_json] = ACTIONS(193), - [anon_sym_to_json] = ACTIONS(193), - [anon_sym_to_string] = ACTIONS(193), - [anon_sym_to_float] = ACTIONS(193), - [anon_sym_bash] = ACTIONS(193), - [anon_sym_fish] = ACTIONS(193), - [anon_sym_raw] = ACTIONS(193), - [anon_sym_sh] = ACTIONS(193), - [anon_sym_zsh] = ACTIONS(193), - [anon_sym_random] = ACTIONS(193), - [anon_sym_random_boolean] = ACTIONS(193), - [anon_sym_random_float] = ACTIONS(193), - [anon_sym_random_integer] = ACTIONS(193), - [anon_sym_columns] = ACTIONS(193), - [anon_sym_rows] = ACTIONS(193), - [anon_sym_reverse] = ACTIONS(193), + [anon_sym_table] = ACTIONS(1357), + [anon_sym_assert] = ACTIONS(1359), + [anon_sym_assert_equal] = ACTIONS(1359), + [anon_sym_download] = ACTIONS(1359), + [anon_sym_help] = ACTIONS(1359), + [anon_sym_length] = ACTIONS(1359), + [anon_sym_output] = ACTIONS(1359), + [anon_sym_output_error] = ACTIONS(1359), + [anon_sym_type] = ACTIONS(1359), + [anon_sym_append] = ACTIONS(1359), + [anon_sym_metadata] = ACTIONS(1359), + [anon_sym_move] = ACTIONS(1359), + [anon_sym_read] = ACTIONS(1359), + [anon_sym_workdir] = ACTIONS(1359), + [anon_sym_write] = ACTIONS(1359), + [anon_sym_from_json] = ACTIONS(1359), + [anon_sym_to_json] = ACTIONS(1359), + [anon_sym_to_string] = ACTIONS(1359), + [anon_sym_to_float] = ACTIONS(1359), + [anon_sym_bash] = ACTIONS(1359), + [anon_sym_fish] = ACTIONS(1359), + [anon_sym_raw] = ACTIONS(1359), + [anon_sym_sh] = ACTIONS(1359), + [anon_sym_zsh] = ACTIONS(1359), + [anon_sym_random] = ACTIONS(1359), + [anon_sym_random_boolean] = ACTIONS(1359), + [anon_sym_random_float] = ACTIONS(1359), + [anon_sym_random_integer] = ACTIONS(1359), + [anon_sym_columns] = ACTIONS(1359), + [anon_sym_rows] = ACTIONS(1359), + [anon_sym_reverse] = ACTIONS(1359), }, [199] = { - [sym_block] = STATE(624), - [sym_statement] = STATE(12), - [sym_expression] = STATE(583), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(631), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(567), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(2030), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(271), - [aux_sym_block_repeat1] = STATE(12), - [sym_identifier] = ACTIONS(55), + [sym_statement] = STATE(200), + [sym_expression] = STATE(473), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_assignment] = STATE(598), + [sym_if_else] = STATE(598), + [sym_if] = STATE(565), + [sym_match] = STATE(598), + [sym_while] = STATE(598), + [sym_for] = STATE(598), + [sym_transform] = STATE(598), + [sym_filter] = STATE(598), + [sym_find] = STATE(598), + [sym_remove] = STATE(598), + [sym_reduce] = STATE(598), + [sym_select] = STATE(598), + [sym_insert] = STATE(598), + [sym_async] = STATE(598), + [sym_identifier_list] = STATE(1085), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(203), + [aux_sym_block_repeat1] = STATE(200), + [ts_builtin_sym_end] = ACTIONS(293), + [sym_identifier] = ACTIONS(1476), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(59), - [sym_integer] = ACTIONS(61), - [sym_float] = ACTIONS(63), - [sym_string] = ACTIONS(63), - [anon_sym_true] = ACTIONS(65), - [anon_sym_false] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [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_asyncfor] = ACTIONS(127), - [anon_sym_transform] = ACTIONS(129), - [anon_sym_filter] = ACTIONS(131), - [anon_sym_find] = ACTIONS(133), - [anon_sym_remove] = ACTIONS(135), - [anon_sym_reduce] = ACTIONS(137), - [anon_sym_select] = ACTIONS(139), - [anon_sym_insert] = ACTIONS(141), - [anon_sym_async] = ACTIONS(143), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(147), - [anon_sym_assert_equal] = ACTIONS(147), - [anon_sym_download] = ACTIONS(147), - [anon_sym_help] = ACTIONS(147), - [anon_sym_length] = ACTIONS(147), - [anon_sym_output] = ACTIONS(147), - [anon_sym_output_error] = ACTIONS(147), - [anon_sym_type] = ACTIONS(147), - [anon_sym_append] = ACTIONS(147), - [anon_sym_metadata] = ACTIONS(147), - [anon_sym_move] = ACTIONS(147), - [anon_sym_read] = ACTIONS(147), - [anon_sym_workdir] = ACTIONS(147), - [anon_sym_write] = ACTIONS(147), - [anon_sym_from_json] = ACTIONS(147), - [anon_sym_to_json] = ACTIONS(147), - [anon_sym_to_string] = ACTIONS(147), - [anon_sym_to_float] = ACTIONS(147), - [anon_sym_bash] = ACTIONS(147), - [anon_sym_fish] = ACTIONS(147), - [anon_sym_raw] = ACTIONS(147), - [anon_sym_sh] = ACTIONS(147), - [anon_sym_zsh] = ACTIONS(147), - [anon_sym_random] = ACTIONS(147), - [anon_sym_random_boolean] = ACTIONS(147), - [anon_sym_random_float] = ACTIONS(147), - [anon_sym_random_integer] = ACTIONS(147), - [anon_sym_columns] = ACTIONS(147), - [anon_sym_rows] = ACTIONS(147), - [anon_sym_reverse] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(298), + [anon_sym_RBRACE] = ACTIONS(293), + [anon_sym_SEMI] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(301), + [sym_integer] = ACTIONS(304), + [sym_float] = ACTIONS(307), + [sym_string] = ACTIONS(307), + [anon_sym_true] = ACTIONS(310), + [anon_sym_false] = ACTIONS(310), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_elseif] = ACTIONS(293), + [anon_sym_else] = ACTIONS(316), + [anon_sym_match] = ACTIONS(1482), + [anon_sym_EQ_GT] = ACTIONS(1075), + [anon_sym_while] = ACTIONS(1485), + [anon_sym_for] = ACTIONS(1488), + [anon_sym_asyncfor] = ACTIONS(1491), + [anon_sym_transform] = ACTIONS(1494), + [anon_sym_filter] = ACTIONS(1497), + [anon_sym_find] = ACTIONS(1500), + [anon_sym_remove] = ACTIONS(1503), + [anon_sym_reduce] = ACTIONS(1506), + [anon_sym_select] = ACTIONS(1509), + [anon_sym_insert] = ACTIONS(1105), + [anon_sym_async] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1515), + [anon_sym_table] = ACTIONS(1111), + [anon_sym_assert] = ACTIONS(1114), + [anon_sym_assert_equal] = ACTIONS(1114), + [anon_sym_download] = ACTIONS(1114), + [anon_sym_help] = ACTIONS(1114), + [anon_sym_length] = ACTIONS(1114), + [anon_sym_output] = ACTIONS(1114), + [anon_sym_output_error] = ACTIONS(1114), + [anon_sym_type] = ACTIONS(1114), + [anon_sym_append] = ACTIONS(1114), + [anon_sym_metadata] = ACTIONS(1114), + [anon_sym_move] = ACTIONS(1114), + [anon_sym_read] = ACTIONS(1114), + [anon_sym_workdir] = ACTIONS(1114), + [anon_sym_write] = ACTIONS(1114), + [anon_sym_from_json] = ACTIONS(1114), + [anon_sym_to_json] = ACTIONS(1114), + [anon_sym_to_string] = ACTIONS(1114), + [anon_sym_to_float] = ACTIONS(1114), + [anon_sym_bash] = ACTIONS(1114), + [anon_sym_fish] = ACTIONS(1114), + [anon_sym_raw] = ACTIONS(1114), + [anon_sym_sh] = ACTIONS(1114), + [anon_sym_zsh] = ACTIONS(1114), + [anon_sym_random] = ACTIONS(1114), + [anon_sym_random_boolean] = ACTIONS(1114), + [anon_sym_random_float] = ACTIONS(1114), + [anon_sym_random_integer] = ACTIONS(1114), + [anon_sym_columns] = ACTIONS(1114), + [anon_sym_rows] = ACTIONS(1114), + [anon_sym_reverse] = ACTIONS(1114), }, [200] = { - [sym_block] = STATE(728), - [sym_statement] = STATE(24), - [sym_expression] = STATE(683), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(706), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(573), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1813), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(311), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(149), + [sym_statement] = STATE(200), + [sym_expression] = STATE(473), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_assignment] = STATE(598), + [sym_if_else] = STATE(598), + [sym_if] = STATE(565), + [sym_match] = STATE(598), + [sym_while] = STATE(598), + [sym_for] = STATE(598), + [sym_transform] = STATE(598), + [sym_filter] = STATE(598), + [sym_find] = STATE(598), + [sym_remove] = STATE(598), + [sym_reduce] = STATE(598), + [sym_select] = STATE(598), + [sym_insert] = STATE(598), + [sym_async] = STATE(598), + [sym_identifier_list] = STATE(1085), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(203), + [aux_sym_block_repeat1] = STATE(200), + [ts_builtin_sym_end] = ACTIONS(369), + [sym_identifier] = ACTIONS(1518), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(117), - [anon_sym_match] = ACTIONS(279), - [anon_sym_EQ_GT] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_for] = ACTIONS(285), - [anon_sym_asyncfor] = ACTIONS(287), - [anon_sym_transform] = ACTIONS(289), - [anon_sym_filter] = ACTIONS(291), - [anon_sym_find] = ACTIONS(293), - [anon_sym_remove] = ACTIONS(295), - [anon_sym_reduce] = ACTIONS(297), - [anon_sym_select] = ACTIONS(299), - [anon_sym_insert] = ACTIONS(301), - [anon_sym_async] = ACTIONS(303), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(305), - [anon_sym_assert] = ACTIONS(307), - [anon_sym_assert_equal] = ACTIONS(307), - [anon_sym_download] = ACTIONS(307), - [anon_sym_help] = ACTIONS(307), - [anon_sym_length] = ACTIONS(307), - [anon_sym_output] = ACTIONS(307), - [anon_sym_output_error] = ACTIONS(307), - [anon_sym_type] = ACTIONS(307), - [anon_sym_append] = ACTIONS(307), - [anon_sym_metadata] = ACTIONS(307), - [anon_sym_move] = ACTIONS(307), - [anon_sym_read] = ACTIONS(307), - [anon_sym_workdir] = ACTIONS(307), - [anon_sym_write] = ACTIONS(307), - [anon_sym_from_json] = ACTIONS(307), - [anon_sym_to_json] = ACTIONS(307), - [anon_sym_to_string] = ACTIONS(307), - [anon_sym_to_float] = ACTIONS(307), - [anon_sym_bash] = ACTIONS(307), - [anon_sym_fish] = ACTIONS(307), - [anon_sym_raw] = ACTIONS(307), - [anon_sym_sh] = ACTIONS(307), - [anon_sym_zsh] = ACTIONS(307), - [anon_sym_random] = ACTIONS(307), - [anon_sym_random_boolean] = ACTIONS(307), - [anon_sym_random_float] = ACTIONS(307), - [anon_sym_random_integer] = ACTIONS(307), - [anon_sym_columns] = ACTIONS(307), - [anon_sym_rows] = ACTIONS(307), - [anon_sym_reverse] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(374), + [anon_sym_RBRACE] = ACTIONS(369), + [anon_sym_SEMI] = ACTIONS(369), + [anon_sym_LPAREN] = ACTIONS(377), + [sym_integer] = ACTIONS(380), + [sym_float] = ACTIONS(383), + [sym_string] = ACTIONS(383), + [anon_sym_true] = ACTIONS(386), + [anon_sym_false] = ACTIONS(386), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_if] = ACTIONS(1521), + [anon_sym_elseif] = ACTIONS(369), + [anon_sym_else] = ACTIONS(392), + [anon_sym_match] = ACTIONS(1524), + [anon_sym_EQ_GT] = ACTIONS(1024), + [anon_sym_while] = ACTIONS(1527), + [anon_sym_for] = ACTIONS(1530), + [anon_sym_asyncfor] = ACTIONS(1533), + [anon_sym_transform] = ACTIONS(1536), + [anon_sym_filter] = ACTIONS(1539), + [anon_sym_find] = ACTIONS(1542), + [anon_sym_remove] = ACTIONS(1545), + [anon_sym_reduce] = ACTIONS(1548), + [anon_sym_select] = ACTIONS(1551), + [anon_sym_insert] = ACTIONS(1054), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_PIPE] = ACTIONS(1557), + [anon_sym_table] = ACTIONS(1060), + [anon_sym_assert] = ACTIONS(1063), + [anon_sym_assert_equal] = ACTIONS(1063), + [anon_sym_download] = ACTIONS(1063), + [anon_sym_help] = ACTIONS(1063), + [anon_sym_length] = ACTIONS(1063), + [anon_sym_output] = ACTIONS(1063), + [anon_sym_output_error] = ACTIONS(1063), + [anon_sym_type] = ACTIONS(1063), + [anon_sym_append] = ACTIONS(1063), + [anon_sym_metadata] = ACTIONS(1063), + [anon_sym_move] = ACTIONS(1063), + [anon_sym_read] = ACTIONS(1063), + [anon_sym_workdir] = ACTIONS(1063), + [anon_sym_write] = ACTIONS(1063), + [anon_sym_from_json] = ACTIONS(1063), + [anon_sym_to_json] = ACTIONS(1063), + [anon_sym_to_string] = ACTIONS(1063), + [anon_sym_to_float] = ACTIONS(1063), + [anon_sym_bash] = ACTIONS(1063), + [anon_sym_fish] = ACTIONS(1063), + [anon_sym_raw] = ACTIONS(1063), + [anon_sym_sh] = ACTIONS(1063), + [anon_sym_zsh] = ACTIONS(1063), + [anon_sym_random] = ACTIONS(1063), + [anon_sym_random_boolean] = ACTIONS(1063), + [anon_sym_random_float] = ACTIONS(1063), + [anon_sym_random_integer] = ACTIONS(1063), + [anon_sym_columns] = ACTIONS(1063), + [anon_sym_rows] = ACTIONS(1063), + [anon_sym_reverse] = ACTIONS(1063), }, [201] = { - [sym_block] = STATE(636), - [sym_statement] = STATE(12), - [sym_expression] = STATE(583), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(631), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(567), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(2030), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(271), - [aux_sym_block_repeat1] = STATE(12), - [sym_identifier] = ACTIONS(55), + [sym_expression] = STATE(416), + [sym__expression_kind] = STATE(415), + [aux_sym__expression_list] = STATE(211), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_identifier_list] = STATE(1100), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(181), + [ts_builtin_sym_end] = ACTIONS(1321), + [sym_identifier] = ACTIONS(1323), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_RBRACE] = ACTIONS(1321), + [anon_sym_SEMI] = ACTIONS(1321), [anon_sym_LPAREN] = ACTIONS(59), + [anon_sym_RPAREN] = ACTIONS(1321), [sym_integer] = ACTIONS(61), [sym_float] = ACTIONS(63), [sym_string] = ACTIONS(63), [anon_sym_true] = ACTIONS(65), [anon_sym_false] = ACTIONS(65), [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [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_asyncfor] = ACTIONS(127), - [anon_sym_transform] = ACTIONS(129), - [anon_sym_filter] = ACTIONS(131), - [anon_sym_find] = ACTIONS(133), - [anon_sym_remove] = ACTIONS(135), - [anon_sym_reduce] = ACTIONS(137), - [anon_sym_select] = ACTIONS(139), - [anon_sym_insert] = ACTIONS(141), - [anon_sym_async] = ACTIONS(143), + [anon_sym_COLON] = ACTIONS(1321), + [anon_sym_PLUS] = ACTIONS(1321), + [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_STAR] = ACTIONS(1321), + [anon_sym_SLASH] = ACTIONS(1321), + [anon_sym_PERCENT] = ACTIONS(1321), + [anon_sym_EQ_EQ] = ACTIONS(1321), + [anon_sym_BANG_EQ] = ACTIONS(1321), + [anon_sym_AMP_AMP] = ACTIONS(1321), + [anon_sym_PIPE_PIPE] = ACTIONS(1321), + [anon_sym_GT] = ACTIONS(1327), + [anon_sym_LT] = ACTIONS(1327), + [anon_sym_GT_EQ] = ACTIONS(1321), + [anon_sym_LT_EQ] = ACTIONS(1321), + [anon_sym_if] = ACTIONS(1327), + [anon_sym_elseif] = ACTIONS(1321), + [anon_sym_else] = ACTIONS(1327), + [anon_sym_match] = ACTIONS(1327), + [anon_sym_EQ_GT] = ACTIONS(123), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_for] = ACTIONS(1327), + [anon_sym_asyncfor] = ACTIONS(1321), + [anon_sym_transform] = ACTIONS(1327), + [anon_sym_filter] = ACTIONS(1327), + [anon_sym_find] = ACTIONS(1327), + [anon_sym_remove] = ACTIONS(1327), + [anon_sym_reduce] = ACTIONS(1327), + [anon_sym_select] = ACTIONS(1327), + [anon_sym_insert] = ACTIONS(1327), + [anon_sym_async] = ACTIONS(1327), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(147), - [anon_sym_assert_equal] = ACTIONS(147), - [anon_sym_download] = ACTIONS(147), - [anon_sym_help] = ACTIONS(147), - [anon_sym_length] = ACTIONS(147), - [anon_sym_output] = ACTIONS(147), - [anon_sym_output_error] = ACTIONS(147), - [anon_sym_type] = ACTIONS(147), - [anon_sym_append] = ACTIONS(147), - [anon_sym_metadata] = ACTIONS(147), - [anon_sym_move] = ACTIONS(147), - [anon_sym_read] = ACTIONS(147), - [anon_sym_workdir] = ACTIONS(147), - [anon_sym_write] = ACTIONS(147), - [anon_sym_from_json] = ACTIONS(147), - [anon_sym_to_json] = ACTIONS(147), - [anon_sym_to_string] = ACTIONS(147), - [anon_sym_to_float] = ACTIONS(147), - [anon_sym_bash] = ACTIONS(147), - [anon_sym_fish] = ACTIONS(147), - [anon_sym_raw] = ACTIONS(147), - [anon_sym_sh] = ACTIONS(147), - [anon_sym_zsh] = ACTIONS(147), - [anon_sym_random] = ACTIONS(147), - [anon_sym_random_boolean] = ACTIONS(147), - [anon_sym_random_float] = ACTIONS(147), - [anon_sym_random_integer] = ACTIONS(147), - [anon_sym_columns] = ACTIONS(147), - [anon_sym_rows] = ACTIONS(147), - [anon_sym_reverse] = ACTIONS(147), + [anon_sym_table] = ACTIONS(147), + [anon_sym_assert] = ACTIONS(149), + [anon_sym_assert_equal] = ACTIONS(149), + [anon_sym_download] = ACTIONS(149), + [anon_sym_help] = ACTIONS(149), + [anon_sym_length] = ACTIONS(149), + [anon_sym_output] = ACTIONS(149), + [anon_sym_output_error] = ACTIONS(149), + [anon_sym_type] = ACTIONS(149), + [anon_sym_append] = ACTIONS(149), + [anon_sym_metadata] = ACTIONS(149), + [anon_sym_move] = ACTIONS(149), + [anon_sym_read] = ACTIONS(149), + [anon_sym_workdir] = ACTIONS(149), + [anon_sym_write] = ACTIONS(149), + [anon_sym_from_json] = ACTIONS(149), + [anon_sym_to_json] = ACTIONS(149), + [anon_sym_to_string] = ACTIONS(149), + [anon_sym_to_float] = ACTIONS(149), + [anon_sym_bash] = ACTIONS(149), + [anon_sym_fish] = ACTIONS(149), + [anon_sym_raw] = ACTIONS(149), + [anon_sym_sh] = ACTIONS(149), + [anon_sym_zsh] = ACTIONS(149), + [anon_sym_random] = ACTIONS(149), + [anon_sym_random_boolean] = ACTIONS(149), + [anon_sym_random_float] = ACTIONS(149), + [anon_sym_random_integer] = ACTIONS(149), + [anon_sym_columns] = ACTIONS(149), + [anon_sym_rows] = ACTIONS(149), + [anon_sym_reverse] = ACTIONS(149), }, [202] = { - [sym_block] = STATE(638), - [sym_statement] = STATE(12), - [sym_expression] = STATE(583), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(631), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(567), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(2030), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(271), - [aux_sym_block_repeat1] = STATE(12), - [sym_identifier] = ACTIONS(55), + [sym_expression] = STATE(416), + [sym__expression_kind] = STATE(415), + [aux_sym__expression_list] = STATE(211), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_identifier_list] = STATE(1100), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(181), + [ts_builtin_sym_end] = ACTIONS(1329), + [sym_identifier] = ACTIONS(1323), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_RBRACE] = ACTIONS(1329), + [anon_sym_SEMI] = ACTIONS(1329), [anon_sym_LPAREN] = ACTIONS(59), + [anon_sym_RPAREN] = ACTIONS(1329), [sym_integer] = ACTIONS(61), [sym_float] = ACTIONS(63), [sym_string] = ACTIONS(63), [anon_sym_true] = ACTIONS(65), [anon_sym_false] = ACTIONS(65), [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [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_asyncfor] = ACTIONS(127), - [anon_sym_transform] = ACTIONS(129), - [anon_sym_filter] = ACTIONS(131), - [anon_sym_find] = ACTIONS(133), - [anon_sym_remove] = ACTIONS(135), - [anon_sym_reduce] = ACTIONS(137), - [anon_sym_select] = ACTIONS(139), - [anon_sym_insert] = ACTIONS(141), - [anon_sym_async] = ACTIONS(143), + [anon_sym_COLON] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1331), + [anon_sym_STAR] = ACTIONS(1329), + [anon_sym_SLASH] = ACTIONS(1329), + [anon_sym_PERCENT] = ACTIONS(1329), + [anon_sym_EQ_EQ] = ACTIONS(1329), + [anon_sym_BANG_EQ] = ACTIONS(1329), + [anon_sym_AMP_AMP] = ACTIONS(1329), + [anon_sym_PIPE_PIPE] = ACTIONS(1329), + [anon_sym_GT] = ACTIONS(1331), + [anon_sym_LT] = ACTIONS(1331), + [anon_sym_GT_EQ] = ACTIONS(1329), + [anon_sym_LT_EQ] = ACTIONS(1329), + [anon_sym_if] = ACTIONS(1331), + [anon_sym_elseif] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1331), + [anon_sym_match] = ACTIONS(1331), + [anon_sym_EQ_GT] = ACTIONS(123), + [anon_sym_while] = ACTIONS(1331), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_asyncfor] = ACTIONS(1329), + [anon_sym_transform] = ACTIONS(1331), + [anon_sym_filter] = ACTIONS(1331), + [anon_sym_find] = ACTIONS(1331), + [anon_sym_remove] = ACTIONS(1331), + [anon_sym_reduce] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1331), + [anon_sym_insert] = ACTIONS(1331), + [anon_sym_async] = ACTIONS(1331), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(147), - [anon_sym_assert_equal] = ACTIONS(147), - [anon_sym_download] = ACTIONS(147), - [anon_sym_help] = ACTIONS(147), - [anon_sym_length] = ACTIONS(147), - [anon_sym_output] = ACTIONS(147), - [anon_sym_output_error] = ACTIONS(147), - [anon_sym_type] = ACTIONS(147), - [anon_sym_append] = ACTIONS(147), - [anon_sym_metadata] = ACTIONS(147), - [anon_sym_move] = ACTIONS(147), - [anon_sym_read] = ACTIONS(147), - [anon_sym_workdir] = ACTIONS(147), - [anon_sym_write] = ACTIONS(147), - [anon_sym_from_json] = ACTIONS(147), - [anon_sym_to_json] = ACTIONS(147), - [anon_sym_to_string] = ACTIONS(147), - [anon_sym_to_float] = ACTIONS(147), - [anon_sym_bash] = ACTIONS(147), - [anon_sym_fish] = ACTIONS(147), - [anon_sym_raw] = ACTIONS(147), - [anon_sym_sh] = ACTIONS(147), - [anon_sym_zsh] = ACTIONS(147), - [anon_sym_random] = ACTIONS(147), - [anon_sym_random_boolean] = ACTIONS(147), - [anon_sym_random_float] = ACTIONS(147), - [anon_sym_random_integer] = ACTIONS(147), - [anon_sym_columns] = ACTIONS(147), - [anon_sym_rows] = ACTIONS(147), - [anon_sym_reverse] = ACTIONS(147), + [anon_sym_table] = ACTIONS(147), + [anon_sym_assert] = ACTIONS(149), + [anon_sym_assert_equal] = ACTIONS(149), + [anon_sym_download] = ACTIONS(149), + [anon_sym_help] = ACTIONS(149), + [anon_sym_length] = ACTIONS(149), + [anon_sym_output] = ACTIONS(149), + [anon_sym_output_error] = ACTIONS(149), + [anon_sym_type] = ACTIONS(149), + [anon_sym_append] = ACTIONS(149), + [anon_sym_metadata] = ACTIONS(149), + [anon_sym_move] = ACTIONS(149), + [anon_sym_read] = ACTIONS(149), + [anon_sym_workdir] = ACTIONS(149), + [anon_sym_write] = ACTIONS(149), + [anon_sym_from_json] = ACTIONS(149), + [anon_sym_to_json] = ACTIONS(149), + [anon_sym_to_string] = ACTIONS(149), + [anon_sym_to_float] = ACTIONS(149), + [anon_sym_bash] = ACTIONS(149), + [anon_sym_fish] = ACTIONS(149), + [anon_sym_raw] = ACTIONS(149), + [anon_sym_sh] = ACTIONS(149), + [anon_sym_zsh] = ACTIONS(149), + [anon_sym_random] = ACTIONS(149), + [anon_sym_random_boolean] = ACTIONS(149), + [anon_sym_random_float] = ACTIONS(149), + [anon_sym_random_integer] = ACTIONS(149), + [anon_sym_columns] = ACTIONS(149), + [anon_sym_rows] = ACTIONS(149), + [anon_sym_reverse] = ACTIONS(149), }, [203] = { - [sym_block] = STATE(1016), - [sym_statement] = STATE(352), - [sym_expression] = STATE(877), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(782), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(1023), - [sym_if_else] = STATE(1023), - [sym_if] = STATE(978), - [sym_match] = STATE(1023), - [sym_while] = STATE(1023), - [sym_for] = STATE(1023), - [sym_transform] = STATE(1023), - [sym_filter] = STATE(1023), - [sym_find] = STATE(1023), - [sym_remove] = STATE(1023), - [sym_reduce] = STATE(1023), - [sym_select] = STATE(1023), - [sym_insert] = STATE(1023), - [sym_async] = STATE(1023), - [sym_identifier_list] = STATE(1926), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(351), - [aux_sym_block_repeat1] = STATE(352), - [sym_identifier] = ACTIONS(1639), + [sym_expression] = STATE(416), + [sym__expression_kind] = STATE(415), + [aux_sym__expression_list] = STATE(201), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_identifier_list] = STATE(1100), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(181), + [ts_builtin_sym_end] = ACTIONS(1333), + [sym_identifier] = ACTIONS(1323), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(1641), - [anon_sym_EQ_GT] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1643), - [anon_sym_for] = ACTIONS(1645), - [anon_sym_asyncfor] = ACTIONS(1647), - [anon_sym_transform] = ACTIONS(1649), - [anon_sym_filter] = ACTIONS(1651), - [anon_sym_find] = ACTIONS(1653), - [anon_sym_remove] = ACTIONS(1655), - [anon_sym_reduce] = ACTIONS(1657), - [anon_sym_select] = ACTIONS(1659), - [anon_sym_insert] = ACTIONS(1308), - [anon_sym_async] = ACTIONS(1661), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_RBRACE] = ACTIONS(1333), + [anon_sym_SEMI] = ACTIONS(1333), + [anon_sym_LPAREN] = ACTIONS(59), + [anon_sym_RPAREN] = ACTIONS(1333), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1333), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_SLASH] = ACTIONS(1333), + [anon_sym_PERCENT] = ACTIONS(1333), + [anon_sym_EQ_EQ] = ACTIONS(1333), + [anon_sym_BANG_EQ] = ACTIONS(1333), + [anon_sym_AMP_AMP] = ACTIONS(1333), + [anon_sym_PIPE_PIPE] = ACTIONS(1333), + [anon_sym_GT] = ACTIONS(1335), + [anon_sym_LT] = ACTIONS(1335), + [anon_sym_GT_EQ] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1333), + [anon_sym_if] = ACTIONS(1335), + [anon_sym_elseif] = ACTIONS(1333), + [anon_sym_else] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1335), + [anon_sym_EQ_GT] = ACTIONS(123), + [anon_sym_while] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1335), + [anon_sym_asyncfor] = ACTIONS(1333), + [anon_sym_transform] = ACTIONS(1335), + [anon_sym_filter] = ACTIONS(1335), + [anon_sym_find] = ACTIONS(1335), + [anon_sym_remove] = ACTIONS(1335), + [anon_sym_reduce] = ACTIONS(1335), + [anon_sym_select] = ACTIONS(1335), + [anon_sym_insert] = ACTIONS(1335), + [anon_sym_async] = ACTIONS(1335), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1312), - [anon_sym_assert] = ACTIONS(1314), - [anon_sym_assert_equal] = ACTIONS(1314), - [anon_sym_download] = ACTIONS(1314), - [anon_sym_help] = ACTIONS(1314), - [anon_sym_length] = ACTIONS(1314), - [anon_sym_output] = ACTIONS(1314), - [anon_sym_output_error] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_append] = ACTIONS(1314), - [anon_sym_metadata] = ACTIONS(1314), - [anon_sym_move] = ACTIONS(1314), - [anon_sym_read] = ACTIONS(1314), - [anon_sym_workdir] = ACTIONS(1314), - [anon_sym_write] = ACTIONS(1314), - [anon_sym_from_json] = ACTIONS(1314), - [anon_sym_to_json] = ACTIONS(1314), - [anon_sym_to_string] = ACTIONS(1314), - [anon_sym_to_float] = ACTIONS(1314), - [anon_sym_bash] = ACTIONS(1314), - [anon_sym_fish] = ACTIONS(1314), - [anon_sym_raw] = ACTIONS(1314), - [anon_sym_sh] = ACTIONS(1314), - [anon_sym_zsh] = ACTIONS(1314), - [anon_sym_random] = ACTIONS(1314), - [anon_sym_random_boolean] = ACTIONS(1314), - [anon_sym_random_float] = ACTIONS(1314), - [anon_sym_random_integer] = ACTIONS(1314), - [anon_sym_columns] = ACTIONS(1314), - [anon_sym_rows] = ACTIONS(1314), - [anon_sym_reverse] = ACTIONS(1314), + [anon_sym_table] = ACTIONS(147), + [anon_sym_assert] = ACTIONS(149), + [anon_sym_assert_equal] = ACTIONS(149), + [anon_sym_download] = ACTIONS(149), + [anon_sym_help] = ACTIONS(149), + [anon_sym_length] = ACTIONS(149), + [anon_sym_output] = ACTIONS(149), + [anon_sym_output_error] = ACTIONS(149), + [anon_sym_type] = ACTIONS(149), + [anon_sym_append] = ACTIONS(149), + [anon_sym_metadata] = ACTIONS(149), + [anon_sym_move] = ACTIONS(149), + [anon_sym_read] = ACTIONS(149), + [anon_sym_workdir] = ACTIONS(149), + [anon_sym_write] = ACTIONS(149), + [anon_sym_from_json] = ACTIONS(149), + [anon_sym_to_json] = ACTIONS(149), + [anon_sym_to_string] = ACTIONS(149), + [anon_sym_to_float] = ACTIONS(149), + [anon_sym_bash] = ACTIONS(149), + [anon_sym_fish] = ACTIONS(149), + [anon_sym_raw] = ACTIONS(149), + [anon_sym_sh] = ACTIONS(149), + [anon_sym_zsh] = ACTIONS(149), + [anon_sym_random] = ACTIONS(149), + [anon_sym_random_boolean] = ACTIONS(149), + [anon_sym_random_float] = ACTIONS(149), + [anon_sym_random_integer] = ACTIONS(149), + [anon_sym_columns] = ACTIONS(149), + [anon_sym_rows] = ACTIONS(149), + [anon_sym_reverse] = ACTIONS(149), }, [204] = { - [sym_block] = STATE(1015), - [sym_statement] = STATE(352), - [sym_expression] = STATE(877), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(782), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(1023), - [sym_if_else] = STATE(1023), - [sym_if] = STATE(978), - [sym_match] = STATE(1023), - [sym_while] = STATE(1023), - [sym_for] = STATE(1023), - [sym_transform] = STATE(1023), - [sym_filter] = STATE(1023), - [sym_find] = STATE(1023), - [sym_remove] = STATE(1023), - [sym_reduce] = STATE(1023), - [sym_select] = STATE(1023), - [sym_insert] = STATE(1023), - [sym_async] = STATE(1023), - [sym_identifier_list] = STATE(1926), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(351), - [aux_sym_block_repeat1] = STATE(352), - [sym_identifier] = ACTIONS(1639), + [sym_expression] = STATE(443), + [sym__expression_kind] = STATE(468), + [aux_sym__expression_list] = STATE(204), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [ts_builtin_sym_end] = ACTIONS(1361), + [sym_identifier] = ACTIONS(1446), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(1641), - [anon_sym_EQ_GT] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1643), - [anon_sym_for] = ACTIONS(1645), - [anon_sym_asyncfor] = ACTIONS(1647), - [anon_sym_transform] = ACTIONS(1649), - [anon_sym_filter] = ACTIONS(1651), - [anon_sym_find] = ACTIONS(1653), - [anon_sym_remove] = ACTIONS(1655), - [anon_sym_reduce] = ACTIONS(1657), - [anon_sym_select] = ACTIONS(1659), - [anon_sym_insert] = ACTIONS(1308), - [anon_sym_async] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1312), - [anon_sym_assert] = ACTIONS(1314), - [anon_sym_assert_equal] = ACTIONS(1314), - [anon_sym_download] = ACTIONS(1314), - [anon_sym_help] = ACTIONS(1314), - [anon_sym_length] = ACTIONS(1314), - [anon_sym_output] = ACTIONS(1314), - [anon_sym_output_error] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_append] = ACTIONS(1314), - [anon_sym_metadata] = ACTIONS(1314), - [anon_sym_move] = ACTIONS(1314), - [anon_sym_read] = ACTIONS(1314), - [anon_sym_workdir] = ACTIONS(1314), - [anon_sym_write] = ACTIONS(1314), - [anon_sym_from_json] = ACTIONS(1314), - [anon_sym_to_json] = ACTIONS(1314), - [anon_sym_to_string] = ACTIONS(1314), - [anon_sym_to_float] = ACTIONS(1314), - [anon_sym_bash] = ACTIONS(1314), - [anon_sym_fish] = ACTIONS(1314), - [anon_sym_raw] = ACTIONS(1314), - [anon_sym_sh] = ACTIONS(1314), - [anon_sym_zsh] = ACTIONS(1314), - [anon_sym_random] = ACTIONS(1314), - [anon_sym_random_boolean] = ACTIONS(1314), - [anon_sym_random_float] = ACTIONS(1314), - [anon_sym_random_integer] = ACTIONS(1314), - [anon_sym_columns] = ACTIONS(1314), - [anon_sym_rows] = ACTIONS(1314), - [anon_sym_reverse] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_RBRACE] = ACTIONS(1361), + [anon_sym_SEMI] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(1452), + [anon_sym_RPAREN] = ACTIONS(1361), + [anon_sym_COMMA] = ACTIONS(1361), + [sym_integer] = ACTIONS(1455), + [sym_float] = ACTIONS(1458), + [sym_string] = ACTIONS(1458), + [anon_sym_true] = ACTIONS(1461), + [anon_sym_false] = ACTIONS(1461), + [anon_sym_LBRACK] = ACTIONS(1464), + [anon_sym_RBRACK] = ACTIONS(1361), + [anon_sym_COLON] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1361), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_SLASH] = ACTIONS(1361), + [anon_sym_PERCENT] = ACTIONS(1361), + [anon_sym_EQ_EQ] = ACTIONS(1361), + [anon_sym_BANG_EQ] = ACTIONS(1361), + [anon_sym_AMP_AMP] = ACTIONS(1361), + [anon_sym_PIPE_PIPE] = ACTIONS(1361), + [anon_sym_GT] = ACTIONS(1384), + [anon_sym_LT] = ACTIONS(1384), + [anon_sym_GT_EQ] = ACTIONS(1361), + [anon_sym_LT_EQ] = ACTIONS(1361), + [anon_sym_if] = ACTIONS(1384), + [anon_sym_match] = ACTIONS(1384), + [anon_sym_EQ_GT] = ACTIONS(1560), + [anon_sym_while] = ACTIONS(1384), + [anon_sym_for] = ACTIONS(1384), + [anon_sym_asyncfor] = ACTIONS(1361), + [anon_sym_transform] = ACTIONS(1384), + [anon_sym_filter] = ACTIONS(1384), + [anon_sym_find] = ACTIONS(1384), + [anon_sym_remove] = ACTIONS(1384), + [anon_sym_reduce] = ACTIONS(1384), + [anon_sym_select] = ACTIONS(1384), + [anon_sym_insert] = ACTIONS(1384), + [anon_sym_async] = ACTIONS(1384), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_table] = ACTIONS(1563), + [anon_sym_assert] = ACTIONS(1566), + [anon_sym_assert_equal] = ACTIONS(1566), + [anon_sym_download] = ACTIONS(1566), + [anon_sym_help] = ACTIONS(1566), + [anon_sym_length] = ACTIONS(1566), + [anon_sym_output] = ACTIONS(1566), + [anon_sym_output_error] = ACTIONS(1566), + [anon_sym_type] = ACTIONS(1566), + [anon_sym_append] = ACTIONS(1566), + [anon_sym_metadata] = ACTIONS(1566), + [anon_sym_move] = ACTIONS(1566), + [anon_sym_read] = ACTIONS(1566), + [anon_sym_workdir] = ACTIONS(1566), + [anon_sym_write] = ACTIONS(1566), + [anon_sym_from_json] = ACTIONS(1566), + [anon_sym_to_json] = ACTIONS(1566), + [anon_sym_to_string] = ACTIONS(1566), + [anon_sym_to_float] = ACTIONS(1566), + [anon_sym_bash] = ACTIONS(1566), + [anon_sym_fish] = ACTIONS(1566), + [anon_sym_raw] = ACTIONS(1566), + [anon_sym_sh] = ACTIONS(1566), + [anon_sym_zsh] = ACTIONS(1566), + [anon_sym_random] = ACTIONS(1566), + [anon_sym_random_boolean] = ACTIONS(1566), + [anon_sym_random_float] = ACTIONS(1566), + [anon_sym_random_integer] = ACTIONS(1566), + [anon_sym_columns] = ACTIONS(1566), + [anon_sym_rows] = ACTIONS(1566), + [anon_sym_reverse] = ACTIONS(1566), }, [205] = { - [sym_block] = STATE(1014), - [sym_statement] = STATE(352), - [sym_expression] = STATE(877), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(782), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(1023), - [sym_if_else] = STATE(1023), - [sym_if] = STATE(978), - [sym_match] = STATE(1023), - [sym_while] = STATE(1023), - [sym_for] = STATE(1023), - [sym_transform] = STATE(1023), - [sym_filter] = STATE(1023), - [sym_find] = STATE(1023), - [sym_remove] = STATE(1023), - [sym_reduce] = STATE(1023), - [sym_select] = STATE(1023), - [sym_insert] = STATE(1023), - [sym_async] = STATE(1023), - [sym_identifier_list] = STATE(1926), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(351), - [aux_sym_block_repeat1] = STATE(352), - [sym_identifier] = ACTIONS(1639), + [sym_expression] = STATE(998), + [sym__expression_kind] = STATE(919), + [sym_value] = STATE(919), + [sym_boolean] = STATE(936), + [sym_list] = STATE(936), + [sym_map] = STATE(936), + [sym_index] = STATE(919), + [sym_math] = STATE(919), + [sym_logic] = STATE(919), + [sym_identifier_list] = STATE(1086), + [sym_table] = STATE(936), + [sym_function] = STATE(936), + [sym_function_call] = STATE(919), + [sym__context_defined_function] = STATE(934), + [sym_built_in_function] = STATE(934), + [sym__built_in_function_name] = STATE(550), + [aux_sym_match_repeat1] = STATE(205), + [ts_builtin_sym_end] = ACTIONS(1398), + [sym_identifier] = ACTIONS(1400), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(1641), - [anon_sym_EQ_GT] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1643), - [anon_sym_for] = ACTIONS(1645), - [anon_sym_asyncfor] = ACTIONS(1647), - [anon_sym_transform] = ACTIONS(1649), - [anon_sym_filter] = ACTIONS(1651), - [anon_sym_find] = ACTIONS(1653), - [anon_sym_remove] = ACTIONS(1655), - [anon_sym_reduce] = ACTIONS(1657), - [anon_sym_select] = ACTIONS(1659), - [anon_sym_insert] = ACTIONS(1308), - [anon_sym_async] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1312), - [anon_sym_assert] = ACTIONS(1314), - [anon_sym_assert_equal] = ACTIONS(1314), - [anon_sym_download] = ACTIONS(1314), - [anon_sym_help] = ACTIONS(1314), - [anon_sym_length] = ACTIONS(1314), - [anon_sym_output] = ACTIONS(1314), - [anon_sym_output_error] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_append] = ACTIONS(1314), - [anon_sym_metadata] = ACTIONS(1314), - [anon_sym_move] = ACTIONS(1314), - [anon_sym_read] = ACTIONS(1314), - [anon_sym_workdir] = ACTIONS(1314), - [anon_sym_write] = ACTIONS(1314), - [anon_sym_from_json] = ACTIONS(1314), - [anon_sym_to_json] = ACTIONS(1314), - [anon_sym_to_string] = ACTIONS(1314), - [anon_sym_to_float] = ACTIONS(1314), - [anon_sym_bash] = ACTIONS(1314), - [anon_sym_fish] = ACTIONS(1314), - [anon_sym_raw] = ACTIONS(1314), - [anon_sym_sh] = ACTIONS(1314), - [anon_sym_zsh] = ACTIONS(1314), - [anon_sym_random] = ACTIONS(1314), - [anon_sym_random_boolean] = ACTIONS(1314), - [anon_sym_random_float] = ACTIONS(1314), - [anon_sym_random_integer] = ACTIONS(1314), - [anon_sym_columns] = ACTIONS(1314), - [anon_sym_rows] = ACTIONS(1314), - [anon_sym_reverse] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_RBRACE] = ACTIONS(1398), + [anon_sym_SEMI] = ACTIONS(1398), + [anon_sym_LPAREN] = ACTIONS(1406), + [anon_sym_RPAREN] = ACTIONS(1398), + [sym_integer] = ACTIONS(1409), + [sym_float] = ACTIONS(1412), + [sym_string] = ACTIONS(1412), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_LBRACK] = ACTIONS(1418), + [anon_sym_COLON] = ACTIONS(1398), + [anon_sym_PLUS] = ACTIONS(1398), + [anon_sym_DASH] = ACTIONS(1421), + [anon_sym_STAR] = ACTIONS(1398), + [anon_sym_SLASH] = ACTIONS(1398), + [anon_sym_PERCENT] = ACTIONS(1398), + [anon_sym_EQ_EQ] = ACTIONS(1398), + [anon_sym_BANG_EQ] = ACTIONS(1398), + [anon_sym_AMP_AMP] = ACTIONS(1398), + [anon_sym_PIPE_PIPE] = ACTIONS(1398), + [anon_sym_GT] = ACTIONS(1421), + [anon_sym_LT] = ACTIONS(1421), + [anon_sym_GT_EQ] = ACTIONS(1398), + [anon_sym_LT_EQ] = ACTIONS(1398), + [anon_sym_if] = ACTIONS(1421), + [anon_sym_elseif] = ACTIONS(1398), + [anon_sym_else] = ACTIONS(1421), + [anon_sym_match] = ACTIONS(1421), + [anon_sym_EQ_GT] = ACTIONS(1423), + [anon_sym_while] = ACTIONS(1421), + [anon_sym_for] = ACTIONS(1421), + [anon_sym_asyncfor] = ACTIONS(1398), + [anon_sym_transform] = ACTIONS(1421), + [anon_sym_filter] = ACTIONS(1421), + [anon_sym_find] = ACTIONS(1421), + [anon_sym_remove] = ACTIONS(1421), + [anon_sym_reduce] = ACTIONS(1421), + [anon_sym_select] = ACTIONS(1421), + [anon_sym_insert] = ACTIONS(1421), + [anon_sym_async] = ACTIONS(1421), + [anon_sym_PIPE] = ACTIONS(1426), + [anon_sym_table] = ACTIONS(1429), + [anon_sym_assert] = ACTIONS(1432), + [anon_sym_assert_equal] = ACTIONS(1432), + [anon_sym_download] = ACTIONS(1432), + [anon_sym_help] = ACTIONS(1432), + [anon_sym_length] = ACTIONS(1432), + [anon_sym_output] = ACTIONS(1432), + [anon_sym_output_error] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_append] = ACTIONS(1432), + [anon_sym_metadata] = ACTIONS(1432), + [anon_sym_move] = ACTIONS(1432), + [anon_sym_read] = ACTIONS(1432), + [anon_sym_workdir] = ACTIONS(1432), + [anon_sym_write] = ACTIONS(1432), + [anon_sym_from_json] = ACTIONS(1432), + [anon_sym_to_json] = ACTIONS(1432), + [anon_sym_to_string] = ACTIONS(1432), + [anon_sym_to_float] = ACTIONS(1432), + [anon_sym_bash] = ACTIONS(1432), + [anon_sym_fish] = ACTIONS(1432), + [anon_sym_raw] = ACTIONS(1432), + [anon_sym_sh] = ACTIONS(1432), + [anon_sym_zsh] = ACTIONS(1432), + [anon_sym_random] = ACTIONS(1432), + [anon_sym_random_boolean] = ACTIONS(1432), + [anon_sym_random_float] = ACTIONS(1432), + [anon_sym_random_integer] = ACTIONS(1432), + [anon_sym_columns] = ACTIONS(1432), + [anon_sym_rows] = ACTIONS(1432), + [anon_sym_reverse] = ACTIONS(1432), }, [206] = { - [sym_block] = STATE(1012), - [sym_statement] = STATE(352), - [sym_expression] = STATE(877), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(782), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(1023), - [sym_if_else] = STATE(1023), - [sym_if] = STATE(978), - [sym_match] = STATE(1023), - [sym_while] = STATE(1023), - [sym_for] = STATE(1023), - [sym_transform] = STATE(1023), - [sym_filter] = STATE(1023), - [sym_find] = STATE(1023), - [sym_remove] = STATE(1023), - [sym_reduce] = STATE(1023), - [sym_select] = STATE(1023), - [sym_insert] = STATE(1023), - [sym_async] = STATE(1023), - [sym_identifier_list] = STATE(1926), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(351), - [aux_sym_block_repeat1] = STATE(352), - [sym_identifier] = ACTIONS(1639), + [sym_expression] = STATE(961), + [sym__expression_kind] = STATE(919), + [sym_value] = STATE(919), + [sym_boolean] = STATE(936), + [sym_list] = STATE(936), + [sym_map] = STATE(936), + [sym_index] = STATE(919), + [sym_math] = STATE(919), + [sym_logic] = STATE(919), + [sym_identifier_list] = STATE(1086), + [sym_table] = STATE(936), + [sym_function] = STATE(936), + [sym_function_call] = STATE(919), + [sym__context_defined_function] = STATE(934), + [sym_built_in_function] = STATE(934), + [sym__built_in_function_name] = STATE(550), + [aux_sym_match_repeat1] = STATE(213), + [ts_builtin_sym_end] = ACTIONS(1337), + [sym_identifier] = ACTIONS(1339), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(1641), - [anon_sym_EQ_GT] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1643), - [anon_sym_for] = ACTIONS(1645), - [anon_sym_asyncfor] = ACTIONS(1647), - [anon_sym_transform] = ACTIONS(1649), - [anon_sym_filter] = ACTIONS(1651), - [anon_sym_find] = ACTIONS(1653), - [anon_sym_remove] = ACTIONS(1655), - [anon_sym_reduce] = ACTIONS(1657), - [anon_sym_select] = ACTIONS(1659), - [anon_sym_insert] = ACTIONS(1308), - [anon_sym_async] = ACTIONS(1661), + [anon_sym_LBRACE] = ACTIONS(1341), + [anon_sym_RBRACE] = ACTIONS(1337), + [anon_sym_SEMI] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(1343), + [anon_sym_RPAREN] = ACTIONS(1337), + [anon_sym_COMMA] = ACTIONS(1337), + [sym_integer] = ACTIONS(1345), + [sym_float] = ACTIONS(1347), + [sym_string] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1349), + [anon_sym_false] = ACTIONS(1349), + [anon_sym_LBRACK] = ACTIONS(1351), + [anon_sym_RBRACK] = ACTIONS(1337), + [anon_sym_COLON] = ACTIONS(1337), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_STAR] = ACTIONS(1337), + [anon_sym_SLASH] = ACTIONS(1337), + [anon_sym_PERCENT] = ACTIONS(1337), + [anon_sym_EQ_EQ] = ACTIONS(1337), + [anon_sym_BANG_EQ] = ACTIONS(1337), + [anon_sym_AMP_AMP] = ACTIONS(1337), + [anon_sym_PIPE_PIPE] = ACTIONS(1337), + [anon_sym_GT] = ACTIONS(1353), + [anon_sym_LT] = ACTIONS(1353), + [anon_sym_GT_EQ] = ACTIONS(1337), + [anon_sym_LT_EQ] = ACTIONS(1337), + [anon_sym_if] = ACTIONS(1353), + [anon_sym_match] = ACTIONS(1353), + [anon_sym_EQ_GT] = ACTIONS(1355), + [anon_sym_while] = ACTIONS(1353), + [anon_sym_for] = ACTIONS(1353), + [anon_sym_asyncfor] = ACTIONS(1337), + [anon_sym_transform] = ACTIONS(1353), + [anon_sym_filter] = ACTIONS(1353), + [anon_sym_find] = ACTIONS(1353), + [anon_sym_remove] = ACTIONS(1353), + [anon_sym_reduce] = ACTIONS(1353), + [anon_sym_select] = ACTIONS(1353), + [anon_sym_insert] = ACTIONS(1353), + [anon_sym_async] = ACTIONS(1353), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1312), - [anon_sym_assert] = ACTIONS(1314), - [anon_sym_assert_equal] = ACTIONS(1314), - [anon_sym_download] = ACTIONS(1314), - [anon_sym_help] = ACTIONS(1314), - [anon_sym_length] = ACTIONS(1314), - [anon_sym_output] = ACTIONS(1314), - [anon_sym_output_error] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_append] = ACTIONS(1314), - [anon_sym_metadata] = ACTIONS(1314), - [anon_sym_move] = ACTIONS(1314), - [anon_sym_read] = ACTIONS(1314), - [anon_sym_workdir] = ACTIONS(1314), - [anon_sym_write] = ACTIONS(1314), - [anon_sym_from_json] = ACTIONS(1314), - [anon_sym_to_json] = ACTIONS(1314), - [anon_sym_to_string] = ACTIONS(1314), - [anon_sym_to_float] = ACTIONS(1314), - [anon_sym_bash] = ACTIONS(1314), - [anon_sym_fish] = ACTIONS(1314), - [anon_sym_raw] = ACTIONS(1314), - [anon_sym_sh] = ACTIONS(1314), - [anon_sym_zsh] = ACTIONS(1314), - [anon_sym_random] = ACTIONS(1314), - [anon_sym_random_boolean] = ACTIONS(1314), - [anon_sym_random_float] = ACTIONS(1314), - [anon_sym_random_integer] = ACTIONS(1314), - [anon_sym_columns] = ACTIONS(1314), - [anon_sym_rows] = ACTIONS(1314), - [anon_sym_reverse] = ACTIONS(1314), + [anon_sym_table] = ACTIONS(1357), + [anon_sym_assert] = ACTIONS(1359), + [anon_sym_assert_equal] = ACTIONS(1359), + [anon_sym_download] = ACTIONS(1359), + [anon_sym_help] = ACTIONS(1359), + [anon_sym_length] = ACTIONS(1359), + [anon_sym_output] = ACTIONS(1359), + [anon_sym_output_error] = ACTIONS(1359), + [anon_sym_type] = ACTIONS(1359), + [anon_sym_append] = ACTIONS(1359), + [anon_sym_metadata] = ACTIONS(1359), + [anon_sym_move] = ACTIONS(1359), + [anon_sym_read] = ACTIONS(1359), + [anon_sym_workdir] = ACTIONS(1359), + [anon_sym_write] = ACTIONS(1359), + [anon_sym_from_json] = ACTIONS(1359), + [anon_sym_to_json] = ACTIONS(1359), + [anon_sym_to_string] = ACTIONS(1359), + [anon_sym_to_float] = ACTIONS(1359), + [anon_sym_bash] = ACTIONS(1359), + [anon_sym_fish] = ACTIONS(1359), + [anon_sym_raw] = ACTIONS(1359), + [anon_sym_sh] = ACTIONS(1359), + [anon_sym_zsh] = ACTIONS(1359), + [anon_sym_random] = ACTIONS(1359), + [anon_sym_random_boolean] = ACTIONS(1359), + [anon_sym_random_float] = ACTIONS(1359), + [anon_sym_random_integer] = ACTIONS(1359), + [anon_sym_columns] = ACTIONS(1359), + [anon_sym_rows] = ACTIONS(1359), + [anon_sym_reverse] = ACTIONS(1359), }, [207] = { - [sym_block] = STATE(1019), - [sym_statement] = STATE(352), - [sym_expression] = STATE(877), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(782), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(1023), - [sym_if_else] = STATE(1023), - [sym_if] = STATE(978), - [sym_match] = STATE(1023), - [sym_while] = STATE(1023), - [sym_for] = STATE(1023), - [sym_transform] = STATE(1023), - [sym_filter] = STATE(1023), - [sym_find] = STATE(1023), - [sym_remove] = STATE(1023), - [sym_reduce] = STATE(1023), - [sym_select] = STATE(1023), - [sym_insert] = STATE(1023), - [sym_async] = STATE(1023), - [sym_identifier_list] = STATE(1926), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(351), - [aux_sym_block_repeat1] = STATE(352), - [sym_identifier] = ACTIONS(1639), + [sym_expression] = STATE(443), + [sym__expression_kind] = STATE(468), + [aux_sym__expression_list] = STATE(204), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [ts_builtin_sym_end] = ACTIONS(1329), + [sym_identifier] = ACTIONS(1444), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(1641), - [anon_sym_EQ_GT] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1643), - [anon_sym_for] = ACTIONS(1645), - [anon_sym_asyncfor] = ACTIONS(1647), - [anon_sym_transform] = ACTIONS(1649), - [anon_sym_filter] = ACTIONS(1651), - [anon_sym_find] = ACTIONS(1653), - [anon_sym_remove] = ACTIONS(1655), - [anon_sym_reduce] = ACTIONS(1657), - [anon_sym_select] = ACTIONS(1659), - [anon_sym_insert] = ACTIONS(1308), - [anon_sym_async] = ACTIONS(1661), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_RBRACE] = ACTIONS(1329), + [anon_sym_SEMI] = ACTIONS(1329), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_RPAREN] = ACTIONS(1329), + [anon_sym_COMMA] = ACTIONS(1329), + [sym_integer] = ACTIONS(11), + [sym_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(1329), + [anon_sym_COLON] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1331), + [anon_sym_STAR] = ACTIONS(1329), + [anon_sym_SLASH] = ACTIONS(1329), + [anon_sym_PERCENT] = ACTIONS(1329), + [anon_sym_EQ_EQ] = ACTIONS(1329), + [anon_sym_BANG_EQ] = ACTIONS(1329), + [anon_sym_AMP_AMP] = ACTIONS(1329), + [anon_sym_PIPE_PIPE] = ACTIONS(1329), + [anon_sym_GT] = ACTIONS(1331), + [anon_sym_LT] = ACTIONS(1331), + [anon_sym_GT_EQ] = ACTIONS(1329), + [anon_sym_LT_EQ] = ACTIONS(1329), + [anon_sym_if] = ACTIONS(1331), + [anon_sym_match] = ACTIONS(1331), + [anon_sym_EQ_GT] = ACTIONS(265), + [anon_sym_while] = ACTIONS(1331), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_asyncfor] = ACTIONS(1329), + [anon_sym_transform] = ACTIONS(1331), + [anon_sym_filter] = ACTIONS(1331), + [anon_sym_find] = ACTIONS(1331), + [anon_sym_remove] = ACTIONS(1331), + [anon_sym_reduce] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1331), + [anon_sym_insert] = ACTIONS(1331), + [anon_sym_async] = ACTIONS(1331), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1312), - [anon_sym_assert] = ACTIONS(1314), - [anon_sym_assert_equal] = ACTIONS(1314), - [anon_sym_download] = ACTIONS(1314), - [anon_sym_help] = ACTIONS(1314), - [anon_sym_length] = ACTIONS(1314), - [anon_sym_output] = ACTIONS(1314), - [anon_sym_output_error] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_append] = ACTIONS(1314), - [anon_sym_metadata] = ACTIONS(1314), - [anon_sym_move] = ACTIONS(1314), - [anon_sym_read] = ACTIONS(1314), - [anon_sym_workdir] = ACTIONS(1314), - [anon_sym_write] = ACTIONS(1314), - [anon_sym_from_json] = ACTIONS(1314), - [anon_sym_to_json] = ACTIONS(1314), - [anon_sym_to_string] = ACTIONS(1314), - [anon_sym_to_float] = ACTIONS(1314), - [anon_sym_bash] = ACTIONS(1314), - [anon_sym_fish] = ACTIONS(1314), - [anon_sym_raw] = ACTIONS(1314), - [anon_sym_sh] = ACTIONS(1314), - [anon_sym_zsh] = ACTIONS(1314), - [anon_sym_random] = ACTIONS(1314), - [anon_sym_random_boolean] = ACTIONS(1314), - [anon_sym_random_float] = ACTIONS(1314), - [anon_sym_random_integer] = ACTIONS(1314), - [anon_sym_columns] = ACTIONS(1314), - [anon_sym_rows] = ACTIONS(1314), - [anon_sym_reverse] = ACTIONS(1314), + [anon_sym_table] = ACTIONS(289), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_assert_equal] = ACTIONS(291), + [anon_sym_download] = ACTIONS(291), + [anon_sym_help] = ACTIONS(291), + [anon_sym_length] = ACTIONS(291), + [anon_sym_output] = ACTIONS(291), + [anon_sym_output_error] = ACTIONS(291), + [anon_sym_type] = ACTIONS(291), + [anon_sym_append] = ACTIONS(291), + [anon_sym_metadata] = ACTIONS(291), + [anon_sym_move] = ACTIONS(291), + [anon_sym_read] = ACTIONS(291), + [anon_sym_workdir] = ACTIONS(291), + [anon_sym_write] = ACTIONS(291), + [anon_sym_from_json] = ACTIONS(291), + [anon_sym_to_json] = ACTIONS(291), + [anon_sym_to_string] = ACTIONS(291), + [anon_sym_to_float] = ACTIONS(291), + [anon_sym_bash] = ACTIONS(291), + [anon_sym_fish] = ACTIONS(291), + [anon_sym_raw] = ACTIONS(291), + [anon_sym_sh] = ACTIONS(291), + [anon_sym_zsh] = ACTIONS(291), + [anon_sym_random] = ACTIONS(291), + [anon_sym_random_boolean] = ACTIONS(291), + [anon_sym_random_float] = ACTIONS(291), + [anon_sym_random_integer] = ACTIONS(291), + [anon_sym_columns] = ACTIONS(291), + [anon_sym_rows] = ACTIONS(291), + [anon_sym_reverse] = ACTIONS(291), }, [208] = { - [sym_block] = STATE(733), - [sym_statement] = STATE(17), - [sym_expression] = STATE(601), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(706), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(557), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1910), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(284), - [aux_sym_block_repeat1] = STATE(17), - [sym_identifier] = ACTIONS(149), + [sym_expression] = STATE(443), + [sym__expression_kind] = STATE(468), + [aux_sym__expression_list] = STATE(197), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [ts_builtin_sym_end] = ACTIONS(1333), + [sym_identifier] = ACTIONS(1444), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(81), - [anon_sym_match] = ACTIONS(165), - [anon_sym_EQ_GT] = ACTIONS(167), - [anon_sym_while] = ACTIONS(169), - [anon_sym_for] = ACTIONS(171), - [anon_sym_asyncfor] = ACTIONS(173), - [anon_sym_transform] = ACTIONS(175), - [anon_sym_filter] = ACTIONS(177), - [anon_sym_find] = ACTIONS(179), - [anon_sym_remove] = ACTIONS(181), - [anon_sym_reduce] = ACTIONS(183), - [anon_sym_select] = ACTIONS(185), - [anon_sym_insert] = ACTIONS(187), - [anon_sym_async] = ACTIONS(189), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_RBRACE] = ACTIONS(1333), + [anon_sym_SEMI] = ACTIONS(1333), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_RPAREN] = ACTIONS(1333), + [anon_sym_COMMA] = ACTIONS(1333), + [sym_integer] = ACTIONS(11), + [sym_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(1333), + [anon_sym_COLON] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1333), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_SLASH] = ACTIONS(1333), + [anon_sym_PERCENT] = ACTIONS(1333), + [anon_sym_EQ_EQ] = ACTIONS(1333), + [anon_sym_BANG_EQ] = ACTIONS(1333), + [anon_sym_AMP_AMP] = ACTIONS(1333), + [anon_sym_PIPE_PIPE] = ACTIONS(1333), + [anon_sym_GT] = ACTIONS(1335), + [anon_sym_LT] = ACTIONS(1335), + [anon_sym_GT_EQ] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1333), + [anon_sym_if] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1335), + [anon_sym_EQ_GT] = ACTIONS(265), + [anon_sym_while] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1335), + [anon_sym_asyncfor] = ACTIONS(1333), + [anon_sym_transform] = ACTIONS(1335), + [anon_sym_filter] = ACTIONS(1335), + [anon_sym_find] = ACTIONS(1335), + [anon_sym_remove] = ACTIONS(1335), + [anon_sym_reduce] = ACTIONS(1335), + [anon_sym_select] = ACTIONS(1335), + [anon_sym_insert] = ACTIONS(1335), + [anon_sym_async] = ACTIONS(1335), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(191), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_assert_equal] = ACTIONS(193), - [anon_sym_download] = ACTIONS(193), - [anon_sym_help] = ACTIONS(193), - [anon_sym_length] = ACTIONS(193), - [anon_sym_output] = ACTIONS(193), - [anon_sym_output_error] = ACTIONS(193), - [anon_sym_type] = ACTIONS(193), - [anon_sym_append] = ACTIONS(193), - [anon_sym_metadata] = ACTIONS(193), - [anon_sym_move] = ACTIONS(193), - [anon_sym_read] = ACTIONS(193), - [anon_sym_workdir] = ACTIONS(193), - [anon_sym_write] = ACTIONS(193), - [anon_sym_from_json] = ACTIONS(193), - [anon_sym_to_json] = ACTIONS(193), - [anon_sym_to_string] = ACTIONS(193), - [anon_sym_to_float] = ACTIONS(193), - [anon_sym_bash] = ACTIONS(193), - [anon_sym_fish] = ACTIONS(193), - [anon_sym_raw] = ACTIONS(193), - [anon_sym_sh] = ACTIONS(193), - [anon_sym_zsh] = ACTIONS(193), - [anon_sym_random] = ACTIONS(193), - [anon_sym_random_boolean] = ACTIONS(193), - [anon_sym_random_float] = ACTIONS(193), - [anon_sym_random_integer] = ACTIONS(193), - [anon_sym_columns] = ACTIONS(193), - [anon_sym_rows] = ACTIONS(193), - [anon_sym_reverse] = ACTIONS(193), + [anon_sym_table] = ACTIONS(289), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_assert_equal] = ACTIONS(291), + [anon_sym_download] = ACTIONS(291), + [anon_sym_help] = ACTIONS(291), + [anon_sym_length] = ACTIONS(291), + [anon_sym_output] = ACTIONS(291), + [anon_sym_output_error] = ACTIONS(291), + [anon_sym_type] = ACTIONS(291), + [anon_sym_append] = ACTIONS(291), + [anon_sym_metadata] = ACTIONS(291), + [anon_sym_move] = ACTIONS(291), + [anon_sym_read] = ACTIONS(291), + [anon_sym_workdir] = ACTIONS(291), + [anon_sym_write] = ACTIONS(291), + [anon_sym_from_json] = ACTIONS(291), + [anon_sym_to_json] = ACTIONS(291), + [anon_sym_to_string] = ACTIONS(291), + [anon_sym_to_float] = ACTIONS(291), + [anon_sym_bash] = ACTIONS(291), + [anon_sym_fish] = ACTIONS(291), + [anon_sym_raw] = ACTIONS(291), + [anon_sym_sh] = ACTIONS(291), + [anon_sym_zsh] = ACTIONS(291), + [anon_sym_random] = ACTIONS(291), + [anon_sym_random_boolean] = ACTIONS(291), + [anon_sym_random_float] = ACTIONS(291), + [anon_sym_random_integer] = ACTIONS(291), + [anon_sym_columns] = ACTIONS(291), + [anon_sym_rows] = ACTIONS(291), + [anon_sym_reverse] = ACTIONS(291), }, [209] = { - [sym_block] = STATE(734), - [sym_statement] = STATE(35), - [sym_expression] = STATE(701), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(706), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(582), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1866), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(320), - [aux_sym_block_repeat1] = STATE(35), - [sym_identifier] = ACTIONS(149), + [sym_statement] = STATE(209), + [sym_expression] = STATE(460), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_assignment] = STATE(598), + [sym_if_else] = STATE(598), + [sym_if] = STATE(564), + [sym_match] = STATE(598), + [sym_while] = STATE(598), + [sym_for] = STATE(598), + [sym_transform] = STATE(598), + [sym_filter] = STATE(598), + [sym_find] = STATE(598), + [sym_remove] = STATE(598), + [sym_reduce] = STATE(598), + [sym_select] = STATE(598), + [sym_insert] = STATE(598), + [sym_async] = STATE(598), + [sym_identifier_list] = STATE(1100), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(181), + [aux_sym_block_repeat1] = STATE(209), + [sym_identifier] = ACTIONS(1569), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(197), - [anon_sym_match] = ACTIONS(497), - [anon_sym_EQ_GT] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_asyncfor] = ACTIONS(505), - [anon_sym_transform] = ACTIONS(507), - [anon_sym_filter] = ACTIONS(509), - [anon_sym_find] = ACTIONS(511), - [anon_sym_remove] = ACTIONS(513), - [anon_sym_reduce] = ACTIONS(515), - [anon_sym_select] = ACTIONS(517), - [anon_sym_insert] = ACTIONS(519), - [anon_sym_async] = ACTIONS(521), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(523), - [anon_sym_assert] = ACTIONS(525), - [anon_sym_assert_equal] = ACTIONS(525), - [anon_sym_download] = ACTIONS(525), - [anon_sym_help] = ACTIONS(525), - [anon_sym_length] = ACTIONS(525), - [anon_sym_output] = ACTIONS(525), - [anon_sym_output_error] = ACTIONS(525), - [anon_sym_type] = ACTIONS(525), - [anon_sym_append] = ACTIONS(525), - [anon_sym_metadata] = ACTIONS(525), - [anon_sym_move] = ACTIONS(525), - [anon_sym_read] = ACTIONS(525), - [anon_sym_workdir] = ACTIONS(525), - [anon_sym_write] = ACTIONS(525), - [anon_sym_from_json] = ACTIONS(525), - [anon_sym_to_json] = ACTIONS(525), - [anon_sym_to_string] = ACTIONS(525), - [anon_sym_to_float] = ACTIONS(525), - [anon_sym_bash] = ACTIONS(525), - [anon_sym_fish] = ACTIONS(525), - [anon_sym_raw] = ACTIONS(525), - [anon_sym_sh] = ACTIONS(525), - [anon_sym_zsh] = ACTIONS(525), - [anon_sym_random] = ACTIONS(525), - [anon_sym_random_boolean] = ACTIONS(525), - [anon_sym_random_float] = ACTIONS(525), - [anon_sym_random_integer] = ACTIONS(525), - [anon_sym_columns] = ACTIONS(525), - [anon_sym_rows] = ACTIONS(525), - [anon_sym_reverse] = ACTIONS(525), + [anon_sym_LBRACE] = ACTIONS(374), + [anon_sym_RBRACE] = ACTIONS(369), + [anon_sym_SEMI] = ACTIONS(369), + [anon_sym_LPAREN] = ACTIONS(377), + [anon_sym_COMMA] = ACTIONS(369), + [sym_integer] = ACTIONS(380), + [sym_float] = ACTIONS(383), + [sym_string] = ACTIONS(383), + [anon_sym_true] = ACTIONS(386), + [anon_sym_false] = ACTIONS(386), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_if] = ACTIONS(1572), + [anon_sym_elseif] = ACTIONS(369), + [anon_sym_else] = ACTIONS(392), + [anon_sym_match] = ACTIONS(1575), + [anon_sym_EQ_GT] = ACTIONS(567), + [anon_sym_while] = ACTIONS(1578), + [anon_sym_for] = ACTIONS(1581), + [anon_sym_asyncfor] = ACTIONS(1584), + [anon_sym_transform] = ACTIONS(1587), + [anon_sym_filter] = ACTIONS(1590), + [anon_sym_find] = ACTIONS(1593), + [anon_sym_remove] = ACTIONS(1596), + [anon_sym_reduce] = ACTIONS(1599), + [anon_sym_select] = ACTIONS(1602), + [anon_sym_insert] = ACTIONS(597), + [anon_sym_async] = ACTIONS(1605), + [anon_sym_PIPE] = ACTIONS(1557), + [anon_sym_table] = ACTIONS(603), + [anon_sym_assert] = ACTIONS(606), + [anon_sym_assert_equal] = ACTIONS(606), + [anon_sym_download] = ACTIONS(606), + [anon_sym_help] = ACTIONS(606), + [anon_sym_length] = ACTIONS(606), + [anon_sym_output] = ACTIONS(606), + [anon_sym_output_error] = ACTIONS(606), + [anon_sym_type] = ACTIONS(606), + [anon_sym_append] = ACTIONS(606), + [anon_sym_metadata] = ACTIONS(606), + [anon_sym_move] = ACTIONS(606), + [anon_sym_read] = ACTIONS(606), + [anon_sym_workdir] = ACTIONS(606), + [anon_sym_write] = ACTIONS(606), + [anon_sym_from_json] = ACTIONS(606), + [anon_sym_to_json] = ACTIONS(606), + [anon_sym_to_string] = ACTIONS(606), + [anon_sym_to_float] = ACTIONS(606), + [anon_sym_bash] = ACTIONS(606), + [anon_sym_fish] = ACTIONS(606), + [anon_sym_raw] = ACTIONS(606), + [anon_sym_sh] = ACTIONS(606), + [anon_sym_zsh] = ACTIONS(606), + [anon_sym_random] = ACTIONS(606), + [anon_sym_random_boolean] = ACTIONS(606), + [anon_sym_random_float] = ACTIONS(606), + [anon_sym_random_integer] = ACTIONS(606), + [anon_sym_columns] = ACTIONS(606), + [anon_sym_rows] = ACTIONS(606), + [anon_sym_reverse] = ACTIONS(606), }, [210] = { - [sym_block] = STATE(630), - [sym_statement] = STATE(10), - [sym_expression] = STATE(571), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(631), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(558), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(1817), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(265), - [aux_sym_block_repeat1] = STATE(10), - [sym_identifier] = ACTIONS(55), + [sym_statement] = STATE(209), + [sym_expression] = STATE(460), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_assignment] = STATE(598), + [sym_if_else] = STATE(598), + [sym_if] = STATE(564), + [sym_match] = STATE(598), + [sym_while] = STATE(598), + [sym_for] = STATE(598), + [sym_transform] = STATE(598), + [sym_filter] = STATE(598), + [sym_find] = STATE(598), + [sym_remove] = STATE(598), + [sym_reduce] = STATE(598), + [sym_select] = STATE(598), + [sym_insert] = STATE(598), + [sym_async] = STATE(598), + [sym_identifier_list] = STATE(1100), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(181), + [aux_sym_block_repeat1] = STATE(209), + [sym_identifier] = ACTIONS(1608), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_RBRACE] = ACTIONS(293), + [anon_sym_SEMI] = ACTIONS(293), [anon_sym_LPAREN] = ACTIONS(59), + [anon_sym_COMMA] = ACTIONS(293), [sym_integer] = ACTIONS(61), [sym_float] = ACTIONS(63), [sym_string] = ACTIONS(63), [anon_sym_true] = ACTIONS(65), [anon_sym_false] = ACTIONS(65), [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = 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_asyncfor] = ACTIONS(91), - [anon_sym_transform] = ACTIONS(93), - [anon_sym_filter] = ACTIONS(95), - [anon_sym_find] = ACTIONS(97), - [anon_sym_remove] = ACTIONS(99), - [anon_sym_reduce] = ACTIONS(101), - [anon_sym_select] = ACTIONS(103), - [anon_sym_insert] = ACTIONS(105), - [anon_sym_async] = ACTIONS(107), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(111), - [anon_sym_assert] = ACTIONS(113), - [anon_sym_assert_equal] = ACTIONS(113), - [anon_sym_download] = ACTIONS(113), - [anon_sym_help] = ACTIONS(113), - [anon_sym_length] = ACTIONS(113), - [anon_sym_output] = ACTIONS(113), - [anon_sym_output_error] = ACTIONS(113), - [anon_sym_type] = ACTIONS(113), - [anon_sym_append] = ACTIONS(113), - [anon_sym_metadata] = ACTIONS(113), - [anon_sym_move] = ACTIONS(113), - [anon_sym_read] = ACTIONS(113), - [anon_sym_workdir] = ACTIONS(113), - [anon_sym_write] = ACTIONS(113), - [anon_sym_from_json] = ACTIONS(113), - [anon_sym_to_json] = ACTIONS(113), - [anon_sym_to_string] = ACTIONS(113), - [anon_sym_to_float] = ACTIONS(113), - [anon_sym_bash] = ACTIONS(113), - [anon_sym_fish] = ACTIONS(113), - [anon_sym_raw] = ACTIONS(113), - [anon_sym_sh] = ACTIONS(113), - [anon_sym_zsh] = ACTIONS(113), - [anon_sym_random] = ACTIONS(113), - [anon_sym_random_boolean] = ACTIONS(113), - [anon_sym_random_float] = ACTIONS(113), - [anon_sym_random_integer] = ACTIONS(113), - [anon_sym_columns] = ACTIONS(113), - [anon_sym_rows] = ACTIONS(113), - [anon_sym_reverse] = ACTIONS(113), + [anon_sym_if] = ACTIONS(449), + [anon_sym_elseif] = ACTIONS(293), + [anon_sym_else] = ACTIONS(316), + [anon_sym_match] = ACTIONS(451), + [anon_sym_EQ_GT] = ACTIONS(123), + [anon_sym_while] = ACTIONS(453), + [anon_sym_for] = ACTIONS(455), + [anon_sym_asyncfor] = ACTIONS(457), + [anon_sym_transform] = ACTIONS(459), + [anon_sym_filter] = ACTIONS(461), + [anon_sym_find] = ACTIONS(463), + [anon_sym_remove] = ACTIONS(465), + [anon_sym_reduce] = ACTIONS(467), + [anon_sym_select] = ACTIONS(469), + [anon_sym_insert] = ACTIONS(143), + [anon_sym_async] = ACTIONS(471), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(147), + [anon_sym_assert] = ACTIONS(149), + [anon_sym_assert_equal] = ACTIONS(149), + [anon_sym_download] = ACTIONS(149), + [anon_sym_help] = ACTIONS(149), + [anon_sym_length] = ACTIONS(149), + [anon_sym_output] = ACTIONS(149), + [anon_sym_output_error] = ACTIONS(149), + [anon_sym_type] = ACTIONS(149), + [anon_sym_append] = ACTIONS(149), + [anon_sym_metadata] = ACTIONS(149), + [anon_sym_move] = ACTIONS(149), + [anon_sym_read] = ACTIONS(149), + [anon_sym_workdir] = ACTIONS(149), + [anon_sym_write] = ACTIONS(149), + [anon_sym_from_json] = ACTIONS(149), + [anon_sym_to_json] = ACTIONS(149), + [anon_sym_to_string] = ACTIONS(149), + [anon_sym_to_float] = ACTIONS(149), + [anon_sym_bash] = ACTIONS(149), + [anon_sym_fish] = ACTIONS(149), + [anon_sym_raw] = ACTIONS(149), + [anon_sym_sh] = ACTIONS(149), + [anon_sym_zsh] = ACTIONS(149), + [anon_sym_random] = ACTIONS(149), + [anon_sym_random_boolean] = ACTIONS(149), + [anon_sym_random_float] = ACTIONS(149), + [anon_sym_random_integer] = ACTIONS(149), + [anon_sym_columns] = ACTIONS(149), + [anon_sym_rows] = ACTIONS(149), + [anon_sym_reverse] = ACTIONS(149), }, [211] = { - [sym_block] = STATE(863), - [sym_statement] = STATE(57), - [sym_expression] = STATE(853), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(776), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(710), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1823), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(366), - [aux_sym_block_repeat1] = STATE(57), - [sym_identifier] = ACTIONS(1436), + [sym_expression] = STATE(416), + [sym__expression_kind] = STATE(415), + [aux_sym__expression_list] = STATE(211), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_identifier_list] = STATE(1100), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(181), + [ts_builtin_sym_end] = ACTIONS(1361), + [sym_identifier] = ACTIONS(1363), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(877), - [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(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(843), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_EQ_GT] = ACTIONS(1442), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_for] = ACTIONS(1446), - [anon_sym_asyncfor] = ACTIONS(1448), - [anon_sym_transform] = ACTIONS(1450), - [anon_sym_filter] = ACTIONS(1452), - [anon_sym_find] = ACTIONS(1454), - [anon_sym_remove] = ACTIONS(1456), - [anon_sym_reduce] = ACTIONS(1458), - [anon_sym_select] = ACTIONS(1460), - [anon_sym_insert] = ACTIONS(1462), - [anon_sym_async] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1466), - [anon_sym_assert] = ACTIONS(1468), - [anon_sym_assert_equal] = ACTIONS(1468), - [anon_sym_download] = ACTIONS(1468), - [anon_sym_help] = ACTIONS(1468), - [anon_sym_length] = ACTIONS(1468), - [anon_sym_output] = ACTIONS(1468), - [anon_sym_output_error] = ACTIONS(1468), - [anon_sym_type] = ACTIONS(1468), - [anon_sym_append] = ACTIONS(1468), - [anon_sym_metadata] = ACTIONS(1468), - [anon_sym_move] = ACTIONS(1468), - [anon_sym_read] = ACTIONS(1468), - [anon_sym_workdir] = ACTIONS(1468), - [anon_sym_write] = ACTIONS(1468), - [anon_sym_from_json] = ACTIONS(1468), - [anon_sym_to_json] = ACTIONS(1468), - [anon_sym_to_string] = ACTIONS(1468), - [anon_sym_to_float] = ACTIONS(1468), - [anon_sym_bash] = ACTIONS(1468), - [anon_sym_fish] = ACTIONS(1468), - [anon_sym_raw] = ACTIONS(1468), - [anon_sym_sh] = ACTIONS(1468), - [anon_sym_zsh] = ACTIONS(1468), - [anon_sym_random] = ACTIONS(1468), - [anon_sym_random_boolean] = ACTIONS(1468), - [anon_sym_random_float] = ACTIONS(1468), - [anon_sym_random_integer] = ACTIONS(1468), - [anon_sym_columns] = ACTIONS(1468), - [anon_sym_rows] = ACTIONS(1468), - [anon_sym_reverse] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1366), + [anon_sym_RBRACE] = ACTIONS(1361), + [anon_sym_SEMI] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_RPAREN] = ACTIONS(1361), + [sym_integer] = ACTIONS(1372), + [sym_float] = ACTIONS(1375), + [sym_string] = ACTIONS(1375), + [anon_sym_true] = ACTIONS(1378), + [anon_sym_false] = ACTIONS(1378), + [anon_sym_LBRACK] = ACTIONS(1381), + [anon_sym_COLON] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1361), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_SLASH] = ACTIONS(1361), + [anon_sym_PERCENT] = ACTIONS(1361), + [anon_sym_EQ_EQ] = ACTIONS(1361), + [anon_sym_BANG_EQ] = ACTIONS(1361), + [anon_sym_AMP_AMP] = ACTIONS(1361), + [anon_sym_PIPE_PIPE] = ACTIONS(1361), + [anon_sym_GT] = ACTIONS(1384), + [anon_sym_LT] = ACTIONS(1384), + [anon_sym_GT_EQ] = ACTIONS(1361), + [anon_sym_LT_EQ] = ACTIONS(1361), + [anon_sym_if] = ACTIONS(1384), + [anon_sym_elseif] = ACTIONS(1361), + [anon_sym_else] = ACTIONS(1384), + [anon_sym_match] = ACTIONS(1384), + [anon_sym_EQ_GT] = ACTIONS(1435), + [anon_sym_while] = ACTIONS(1384), + [anon_sym_for] = ACTIONS(1384), + [anon_sym_asyncfor] = ACTIONS(1361), + [anon_sym_transform] = ACTIONS(1384), + [anon_sym_filter] = ACTIONS(1384), + [anon_sym_find] = ACTIONS(1384), + [anon_sym_remove] = ACTIONS(1384), + [anon_sym_reduce] = ACTIONS(1384), + [anon_sym_select] = ACTIONS(1384), + [anon_sym_insert] = ACTIONS(1384), + [anon_sym_async] = ACTIONS(1384), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_table] = ACTIONS(1438), + [anon_sym_assert] = ACTIONS(1441), + [anon_sym_assert_equal] = ACTIONS(1441), + [anon_sym_download] = ACTIONS(1441), + [anon_sym_help] = ACTIONS(1441), + [anon_sym_length] = ACTIONS(1441), + [anon_sym_output] = ACTIONS(1441), + [anon_sym_output_error] = ACTIONS(1441), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_append] = ACTIONS(1441), + [anon_sym_metadata] = ACTIONS(1441), + [anon_sym_move] = ACTIONS(1441), + [anon_sym_read] = ACTIONS(1441), + [anon_sym_workdir] = ACTIONS(1441), + [anon_sym_write] = ACTIONS(1441), + [anon_sym_from_json] = ACTIONS(1441), + [anon_sym_to_json] = ACTIONS(1441), + [anon_sym_to_string] = ACTIONS(1441), + [anon_sym_to_float] = ACTIONS(1441), + [anon_sym_bash] = ACTIONS(1441), + [anon_sym_fish] = ACTIONS(1441), + [anon_sym_raw] = ACTIONS(1441), + [anon_sym_sh] = ACTIONS(1441), + [anon_sym_zsh] = ACTIONS(1441), + [anon_sym_random] = ACTIONS(1441), + [anon_sym_random_boolean] = ACTIONS(1441), + [anon_sym_random_float] = ACTIONS(1441), + [anon_sym_random_integer] = ACTIONS(1441), + [anon_sym_columns] = ACTIONS(1441), + [anon_sym_rows] = ACTIONS(1441), + [anon_sym_reverse] = ACTIONS(1441), }, [212] = { - [sym_block] = STATE(864), - [sym_statement] = STATE(57), - [sym_expression] = STATE(853), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(776), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(710), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1823), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(366), - [aux_sym_block_repeat1] = STATE(57), - [sym_identifier] = ACTIONS(1436), + [sym_statement] = STATE(209), + [sym_expression] = STATE(460), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_assignment] = STATE(598), + [sym_if_else] = STATE(598), + [sym_if] = STATE(564), + [sym_match] = STATE(598), + [sym_while] = STATE(598), + [sym_for] = STATE(598), + [sym_transform] = STATE(598), + [sym_filter] = STATE(598), + [sym_find] = STATE(598), + [sym_remove] = STATE(598), + [sym_reduce] = STATE(598), + [sym_select] = STATE(598), + [sym_insert] = STATE(598), + [sym_async] = STATE(598), + [sym_identifier_list] = STATE(1100), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(181), + [aux_sym_block_repeat1] = STATE(209), + [sym_identifier] = ACTIONS(1608), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(877), - [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(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(843), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_EQ_GT] = ACTIONS(1442), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_for] = ACTIONS(1446), - [anon_sym_asyncfor] = ACTIONS(1448), - [anon_sym_transform] = ACTIONS(1450), - [anon_sym_filter] = ACTIONS(1452), - [anon_sym_find] = ACTIONS(1454), - [anon_sym_remove] = ACTIONS(1456), - [anon_sym_reduce] = ACTIONS(1458), - [anon_sym_select] = ACTIONS(1460), - [anon_sym_insert] = ACTIONS(1462), - [anon_sym_async] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1466), - [anon_sym_assert] = ACTIONS(1468), - [anon_sym_assert_equal] = ACTIONS(1468), - [anon_sym_download] = ACTIONS(1468), - [anon_sym_help] = ACTIONS(1468), - [anon_sym_length] = ACTIONS(1468), - [anon_sym_output] = ACTIONS(1468), - [anon_sym_output_error] = ACTIONS(1468), - [anon_sym_type] = ACTIONS(1468), - [anon_sym_append] = ACTIONS(1468), - [anon_sym_metadata] = ACTIONS(1468), - [anon_sym_move] = ACTIONS(1468), - [anon_sym_read] = ACTIONS(1468), - [anon_sym_workdir] = ACTIONS(1468), - [anon_sym_write] = ACTIONS(1468), - [anon_sym_from_json] = ACTIONS(1468), - [anon_sym_to_json] = ACTIONS(1468), - [anon_sym_to_string] = ACTIONS(1468), - [anon_sym_to_float] = ACTIONS(1468), - [anon_sym_bash] = ACTIONS(1468), - [anon_sym_fish] = ACTIONS(1468), - [anon_sym_raw] = ACTIONS(1468), - [anon_sym_sh] = ACTIONS(1468), - [anon_sym_zsh] = ACTIONS(1468), - [anon_sym_random] = ACTIONS(1468), - [anon_sym_random_boolean] = ACTIONS(1468), - [anon_sym_random_float] = ACTIONS(1468), - [anon_sym_random_integer] = ACTIONS(1468), - [anon_sym_columns] = ACTIONS(1468), - [anon_sym_rows] = ACTIONS(1468), - [anon_sym_reverse] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(298), + [anon_sym_RBRACE] = ACTIONS(293), + [anon_sym_SEMI] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_COMMA] = ACTIONS(293), + [sym_integer] = ACTIONS(304), + [sym_float] = ACTIONS(307), + [sym_string] = ACTIONS(307), + [anon_sym_true] = ACTIONS(310), + [anon_sym_false] = ACTIONS(310), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_if] = ACTIONS(1611), + [anon_sym_elseif] = ACTIONS(293), + [anon_sym_else] = ACTIONS(316), + [anon_sym_match] = ACTIONS(1614), + [anon_sym_EQ_GT] = ACTIONS(482), + [anon_sym_while] = ACTIONS(1617), + [anon_sym_for] = ACTIONS(1620), + [anon_sym_asyncfor] = ACTIONS(1623), + [anon_sym_transform] = ACTIONS(1626), + [anon_sym_filter] = ACTIONS(1629), + [anon_sym_find] = ACTIONS(1632), + [anon_sym_remove] = ACTIONS(1635), + [anon_sym_reduce] = ACTIONS(1638), + [anon_sym_select] = ACTIONS(1641), + [anon_sym_insert] = ACTIONS(512), + [anon_sym_async] = ACTIONS(1644), + [anon_sym_PIPE] = ACTIONS(1515), + [anon_sym_table] = ACTIONS(518), + [anon_sym_assert] = ACTIONS(521), + [anon_sym_assert_equal] = ACTIONS(521), + [anon_sym_download] = ACTIONS(521), + [anon_sym_help] = ACTIONS(521), + [anon_sym_length] = ACTIONS(521), + [anon_sym_output] = ACTIONS(521), + [anon_sym_output_error] = ACTIONS(521), + [anon_sym_type] = ACTIONS(521), + [anon_sym_append] = ACTIONS(521), + [anon_sym_metadata] = ACTIONS(521), + [anon_sym_move] = ACTIONS(521), + [anon_sym_read] = ACTIONS(521), + [anon_sym_workdir] = ACTIONS(521), + [anon_sym_write] = ACTIONS(521), + [anon_sym_from_json] = ACTIONS(521), + [anon_sym_to_json] = ACTIONS(521), + [anon_sym_to_string] = ACTIONS(521), + [anon_sym_to_float] = ACTIONS(521), + [anon_sym_bash] = ACTIONS(521), + [anon_sym_fish] = ACTIONS(521), + [anon_sym_raw] = ACTIONS(521), + [anon_sym_sh] = ACTIONS(521), + [anon_sym_zsh] = ACTIONS(521), + [anon_sym_random] = ACTIONS(521), + [anon_sym_random_boolean] = ACTIONS(521), + [anon_sym_random_float] = ACTIONS(521), + [anon_sym_random_integer] = ACTIONS(521), + [anon_sym_columns] = ACTIONS(521), + [anon_sym_rows] = ACTIONS(521), + [anon_sym_reverse] = ACTIONS(521), }, [213] = { - [sym_block] = STATE(639), - [sym_statement] = STATE(27), - [sym_expression] = STATE(663), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(631), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(637), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(1998), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(296), - [aux_sym_block_repeat1] = STATE(27), - [sym_identifier] = ACTIONS(55), + [sym_expression] = STATE(961), + [sym__expression_kind] = STATE(919), + [sym_value] = STATE(919), + [sym_boolean] = STATE(936), + [sym_list] = STATE(936), + [sym_map] = STATE(936), + [sym_index] = STATE(919), + [sym_math] = STATE(919), + [sym_logic] = STATE(919), + [sym_identifier_list] = STATE(1086), + [sym_table] = STATE(936), + [sym_function] = STATE(936), + [sym_function_call] = STATE(919), + [sym__context_defined_function] = STATE(934), + [sym_built_in_function] = STATE(934), + [sym__built_in_function_name] = STATE(550), + [aux_sym_match_repeat1] = STATE(213), + [ts_builtin_sym_end] = ACTIONS(1398), + [sym_identifier] = ACTIONS(1400), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(59), - [sym_integer] = ACTIONS(61), - [sym_float] = ACTIONS(63), - [sym_string] = ACTIONS(63), - [anon_sym_true] = ACTIONS(65), - [anon_sym_false] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(311), - [anon_sym_match] = ACTIONS(313), - [anon_sym_EQ_GT] = ACTIONS(315), - [anon_sym_while] = ACTIONS(317), - [anon_sym_for] = ACTIONS(319), - [anon_sym_asyncfor] = ACTIONS(321), - [anon_sym_transform] = ACTIONS(323), - [anon_sym_filter] = ACTIONS(325), - [anon_sym_find] = ACTIONS(327), - [anon_sym_remove] = ACTIONS(329), - [anon_sym_reduce] = ACTIONS(331), - [anon_sym_select] = ACTIONS(333), - [anon_sym_insert] = ACTIONS(335), - [anon_sym_async] = ACTIONS(337), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(339), - [anon_sym_assert] = ACTIONS(341), - [anon_sym_assert_equal] = ACTIONS(341), - [anon_sym_download] = ACTIONS(341), - [anon_sym_help] = ACTIONS(341), - [anon_sym_length] = ACTIONS(341), - [anon_sym_output] = ACTIONS(341), - [anon_sym_output_error] = ACTIONS(341), - [anon_sym_type] = ACTIONS(341), - [anon_sym_append] = ACTIONS(341), - [anon_sym_metadata] = ACTIONS(341), - [anon_sym_move] = ACTIONS(341), - [anon_sym_read] = ACTIONS(341), - [anon_sym_workdir] = ACTIONS(341), - [anon_sym_write] = ACTIONS(341), - [anon_sym_from_json] = ACTIONS(341), - [anon_sym_to_json] = ACTIONS(341), - [anon_sym_to_string] = ACTIONS(341), - [anon_sym_to_float] = ACTIONS(341), - [anon_sym_bash] = ACTIONS(341), - [anon_sym_fish] = ACTIONS(341), - [anon_sym_raw] = ACTIONS(341), - [anon_sym_sh] = ACTIONS(341), - [anon_sym_zsh] = ACTIONS(341), - [anon_sym_random] = ACTIONS(341), - [anon_sym_random_boolean] = ACTIONS(341), - [anon_sym_random_float] = ACTIONS(341), - [anon_sym_random_integer] = ACTIONS(341), - [anon_sym_columns] = ACTIONS(341), - [anon_sym_rows] = ACTIONS(341), - [anon_sym_reverse] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_RBRACE] = ACTIONS(1398), + [anon_sym_SEMI] = ACTIONS(1398), + [anon_sym_LPAREN] = ACTIONS(1406), + [anon_sym_RPAREN] = ACTIONS(1398), + [anon_sym_COMMA] = ACTIONS(1398), + [sym_integer] = ACTIONS(1409), + [sym_float] = ACTIONS(1412), + [sym_string] = ACTIONS(1412), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_LBRACK] = ACTIONS(1418), + [anon_sym_RBRACK] = ACTIONS(1398), + [anon_sym_COLON] = ACTIONS(1398), + [anon_sym_PLUS] = ACTIONS(1398), + [anon_sym_DASH] = ACTIONS(1421), + [anon_sym_STAR] = ACTIONS(1398), + [anon_sym_SLASH] = ACTIONS(1398), + [anon_sym_PERCENT] = ACTIONS(1398), + [anon_sym_EQ_EQ] = ACTIONS(1398), + [anon_sym_BANG_EQ] = ACTIONS(1398), + [anon_sym_AMP_AMP] = ACTIONS(1398), + [anon_sym_PIPE_PIPE] = ACTIONS(1398), + [anon_sym_GT] = ACTIONS(1421), + [anon_sym_LT] = ACTIONS(1421), + [anon_sym_GT_EQ] = ACTIONS(1398), + [anon_sym_LT_EQ] = ACTIONS(1398), + [anon_sym_if] = ACTIONS(1421), + [anon_sym_match] = ACTIONS(1421), + [anon_sym_EQ_GT] = ACTIONS(1423), + [anon_sym_while] = ACTIONS(1421), + [anon_sym_for] = ACTIONS(1421), + [anon_sym_asyncfor] = ACTIONS(1398), + [anon_sym_transform] = ACTIONS(1421), + [anon_sym_filter] = ACTIONS(1421), + [anon_sym_find] = ACTIONS(1421), + [anon_sym_remove] = ACTIONS(1421), + [anon_sym_reduce] = ACTIONS(1421), + [anon_sym_select] = ACTIONS(1421), + [anon_sym_insert] = ACTIONS(1421), + [anon_sym_async] = ACTIONS(1421), + [anon_sym_PIPE] = ACTIONS(1426), + [anon_sym_table] = ACTIONS(1429), + [anon_sym_assert] = ACTIONS(1432), + [anon_sym_assert_equal] = ACTIONS(1432), + [anon_sym_download] = ACTIONS(1432), + [anon_sym_help] = ACTIONS(1432), + [anon_sym_length] = ACTIONS(1432), + [anon_sym_output] = ACTIONS(1432), + [anon_sym_output_error] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_append] = ACTIONS(1432), + [anon_sym_metadata] = ACTIONS(1432), + [anon_sym_move] = ACTIONS(1432), + [anon_sym_read] = ACTIONS(1432), + [anon_sym_workdir] = ACTIONS(1432), + [anon_sym_write] = ACTIONS(1432), + [anon_sym_from_json] = ACTIONS(1432), + [anon_sym_to_json] = ACTIONS(1432), + [anon_sym_to_string] = ACTIONS(1432), + [anon_sym_to_float] = ACTIONS(1432), + [anon_sym_bash] = ACTIONS(1432), + [anon_sym_fish] = ACTIONS(1432), + [anon_sym_raw] = ACTIONS(1432), + [anon_sym_sh] = ACTIONS(1432), + [anon_sym_zsh] = ACTIONS(1432), + [anon_sym_random] = ACTIONS(1432), + [anon_sym_random_boolean] = ACTIONS(1432), + [anon_sym_random_float] = ACTIONS(1432), + [anon_sym_random_integer] = ACTIONS(1432), + [anon_sym_columns] = ACTIONS(1432), + [anon_sym_rows] = ACTIONS(1432), + [anon_sym_reverse] = ACTIONS(1432), }, [214] = { - [sym_block] = STATE(630), - [sym_statement] = STATE(27), - [sym_expression] = STATE(663), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(631), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(637), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(1998), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(296), - [aux_sym_block_repeat1] = STATE(27), - [sym_identifier] = ACTIONS(55), + [sym_expression] = STATE(472), + [sym__expression_kind] = STATE(468), + [aux_sym__expression_list] = STATE(224), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment_operator] = STATE(334), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [sym_identifier] = ACTIONS(1315), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(59), - [sym_integer] = ACTIONS(61), - [sym_float] = ACTIONS(63), - [sym_string] = ACTIONS(63), - [anon_sym_true] = ACTIONS(65), - [anon_sym_false] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(311), - [anon_sym_match] = ACTIONS(313), - [anon_sym_EQ_GT] = ACTIONS(315), - [anon_sym_while] = ACTIONS(317), - [anon_sym_for] = ACTIONS(319), - [anon_sym_asyncfor] = ACTIONS(321), - [anon_sym_transform] = ACTIONS(323), - [anon_sym_filter] = ACTIONS(325), - [anon_sym_find] = ACTIONS(327), - [anon_sym_remove] = ACTIONS(329), - [anon_sym_reduce] = ACTIONS(331), - [anon_sym_select] = ACTIONS(333), - [anon_sym_insert] = ACTIONS(335), - [anon_sym_async] = ACTIONS(337), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(339), - [anon_sym_assert] = ACTIONS(341), - [anon_sym_assert_equal] = ACTIONS(341), - [anon_sym_download] = ACTIONS(341), - [anon_sym_help] = ACTIONS(341), - [anon_sym_length] = ACTIONS(341), - [anon_sym_output] = ACTIONS(341), - [anon_sym_output_error] = ACTIONS(341), - [anon_sym_type] = ACTIONS(341), - [anon_sym_append] = ACTIONS(341), - [anon_sym_metadata] = ACTIONS(341), - [anon_sym_move] = ACTIONS(341), - [anon_sym_read] = ACTIONS(341), - [anon_sym_workdir] = ACTIONS(341), - [anon_sym_write] = ACTIONS(341), - [anon_sym_from_json] = ACTIONS(341), - [anon_sym_to_json] = ACTIONS(341), - [anon_sym_to_string] = ACTIONS(341), - [anon_sym_to_float] = ACTIONS(341), - [anon_sym_bash] = ACTIONS(341), - [anon_sym_fish] = ACTIONS(341), - [anon_sym_raw] = ACTIONS(341), - [anon_sym_sh] = ACTIONS(341), - [anon_sym_zsh] = ACTIONS(341), - [anon_sym_random] = ACTIONS(341), - [anon_sym_random_boolean] = ACTIONS(341), - [anon_sym_random_float] = ACTIONS(341), - [anon_sym_random_integer] = ACTIONS(341), - [anon_sym_columns] = ACTIONS(341), - [anon_sym_rows] = ACTIONS(341), - [anon_sym_reverse] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1313), + [anon_sym_RBRACE] = ACTIONS(1313), + [anon_sym_SEMI] = ACTIONS(1313), + [anon_sym_LPAREN] = ACTIONS(1313), + [sym_integer] = ACTIONS(1315), + [sym_float] = ACTIONS(1313), + [sym_string] = ACTIONS(1313), + [anon_sym_true] = ACTIONS(1315), + [anon_sym_false] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1313), + [anon_sym_EQ] = ACTIONS(1647), + [anon_sym_COLON] = ACTIONS(1313), + [anon_sym_PLUS] = ACTIONS(1315), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_PERCENT] = ACTIONS(1313), + [anon_sym_EQ_EQ] = ACTIONS(1313), + [anon_sym_BANG_EQ] = ACTIONS(1313), + [anon_sym_AMP_AMP] = ACTIONS(1313), + [anon_sym_PIPE_PIPE] = ACTIONS(1313), + [anon_sym_GT] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(1315), + [anon_sym_GT_EQ] = ACTIONS(1313), + [anon_sym_LT_EQ] = ACTIONS(1313), + [anon_sym_PLUS_EQ] = ACTIONS(1319), + [anon_sym_DASH_EQ] = ACTIONS(1319), + [anon_sym_if] = ACTIONS(1315), + [anon_sym_match] = ACTIONS(1315), + [anon_sym_EQ_GT] = ACTIONS(1313), + [anon_sym_while] = ACTIONS(1315), + [anon_sym_for] = ACTIONS(1315), + [anon_sym_asyncfor] = ACTIONS(1313), + [anon_sym_transform] = ACTIONS(1315), + [anon_sym_filter] = ACTIONS(1315), + [anon_sym_find] = ACTIONS(1315), + [anon_sym_remove] = ACTIONS(1315), + [anon_sym_reduce] = ACTIONS(1315), + [anon_sym_select] = ACTIONS(1315), + [anon_sym_insert] = ACTIONS(1315), + [anon_sym_async] = ACTIONS(1315), + [anon_sym_PIPE] = ACTIONS(1315), + [anon_sym_table] = ACTIONS(1315), + [anon_sym_assert] = ACTIONS(1315), + [anon_sym_assert_equal] = ACTIONS(1315), + [anon_sym_download] = ACTIONS(1315), + [anon_sym_help] = ACTIONS(1315), + [anon_sym_length] = ACTIONS(1315), + [anon_sym_output] = ACTIONS(1315), + [anon_sym_output_error] = ACTIONS(1315), + [anon_sym_type] = ACTIONS(1315), + [anon_sym_append] = ACTIONS(1315), + [anon_sym_metadata] = ACTIONS(1315), + [anon_sym_move] = ACTIONS(1315), + [anon_sym_read] = ACTIONS(1315), + [anon_sym_workdir] = ACTIONS(1315), + [anon_sym_write] = ACTIONS(1315), + [anon_sym_from_json] = ACTIONS(1315), + [anon_sym_to_json] = ACTIONS(1315), + [anon_sym_to_string] = ACTIONS(1315), + [anon_sym_to_float] = ACTIONS(1315), + [anon_sym_bash] = ACTIONS(1315), + [anon_sym_fish] = ACTIONS(1315), + [anon_sym_raw] = ACTIONS(1315), + [anon_sym_sh] = ACTIONS(1315), + [anon_sym_zsh] = ACTIONS(1315), + [anon_sym_random] = ACTIONS(1315), + [anon_sym_random_boolean] = ACTIONS(1315), + [anon_sym_random_float] = ACTIONS(1315), + [anon_sym_random_integer] = ACTIONS(1315), + [anon_sym_columns] = ACTIONS(1315), + [anon_sym_rows] = ACTIONS(1315), + [anon_sym_reverse] = ACTIONS(1315), }, [215] = { - [sym_block] = STATE(639), - [sym_statement] = STATE(12), - [sym_expression] = STATE(583), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(631), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(567), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(2030), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(271), - [aux_sym_block_repeat1] = STATE(12), - [sym_identifier] = ACTIONS(55), + [sym_expression] = STATE(984), + [sym__expression_kind] = STATE(919), + [sym_value] = STATE(919), + [sym_boolean] = STATE(936), + [sym_list] = STATE(936), + [sym_map] = STATE(936), + [sym_index] = STATE(919), + [sym_math] = STATE(919), + [sym_logic] = STATE(919), + [sym_identifier_list] = STATE(1086), + [sym_table] = STATE(936), + [sym_function] = STATE(936), + [sym_function_call] = STATE(919), + [sym__context_defined_function] = STATE(934), + [sym_built_in_function] = STATE(934), + [sym__built_in_function_name] = STATE(550), + [aux_sym_match_repeat1] = STATE(217), + [ts_builtin_sym_end] = ACTIONS(1337), + [sym_identifier] = ACTIONS(1339), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(59), - [sym_integer] = ACTIONS(61), - [sym_float] = ACTIONS(63), - [sym_string] = ACTIONS(63), - [anon_sym_true] = ACTIONS(65), - [anon_sym_false] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [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_asyncfor] = ACTIONS(127), - [anon_sym_transform] = ACTIONS(129), - [anon_sym_filter] = ACTIONS(131), - [anon_sym_find] = ACTIONS(133), - [anon_sym_remove] = ACTIONS(135), - [anon_sym_reduce] = ACTIONS(137), - [anon_sym_select] = ACTIONS(139), - [anon_sym_insert] = ACTIONS(141), - [anon_sym_async] = ACTIONS(143), + [anon_sym_LBRACE] = ACTIONS(1341), + [anon_sym_RBRACE] = ACTIONS(1337), + [anon_sym_SEMI] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(1343), + [anon_sym_RPAREN] = ACTIONS(1337), + [sym_integer] = ACTIONS(1345), + [sym_float] = ACTIONS(1347), + [sym_string] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1349), + [anon_sym_false] = ACTIONS(1349), + [anon_sym_LBRACK] = ACTIONS(1351), + [anon_sym_COLON] = ACTIONS(1337), + [anon_sym_DOT_DOT] = ACTIONS(1337), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_STAR] = ACTIONS(1337), + [anon_sym_SLASH] = ACTIONS(1337), + [anon_sym_PERCENT] = ACTIONS(1337), + [anon_sym_EQ_EQ] = ACTIONS(1337), + [anon_sym_BANG_EQ] = ACTIONS(1337), + [anon_sym_AMP_AMP] = ACTIONS(1337), + [anon_sym_PIPE_PIPE] = ACTIONS(1337), + [anon_sym_GT] = ACTIONS(1353), + [anon_sym_LT] = ACTIONS(1353), + [anon_sym_GT_EQ] = ACTIONS(1337), + [anon_sym_LT_EQ] = ACTIONS(1337), + [anon_sym_if] = ACTIONS(1353), + [anon_sym_match] = ACTIONS(1353), + [anon_sym_EQ_GT] = ACTIONS(1355), + [anon_sym_while] = ACTIONS(1353), + [anon_sym_for] = ACTIONS(1353), + [anon_sym_asyncfor] = ACTIONS(1337), + [anon_sym_transform] = ACTIONS(1353), + [anon_sym_filter] = ACTIONS(1353), + [anon_sym_find] = ACTIONS(1353), + [anon_sym_remove] = ACTIONS(1353), + [anon_sym_reduce] = ACTIONS(1353), + [anon_sym_select] = ACTIONS(1353), + [anon_sym_insert] = ACTIONS(1353), + [anon_sym_async] = ACTIONS(1353), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(147), - [anon_sym_assert_equal] = ACTIONS(147), - [anon_sym_download] = ACTIONS(147), - [anon_sym_help] = ACTIONS(147), - [anon_sym_length] = ACTIONS(147), - [anon_sym_output] = ACTIONS(147), - [anon_sym_output_error] = ACTIONS(147), - [anon_sym_type] = ACTIONS(147), - [anon_sym_append] = ACTIONS(147), - [anon_sym_metadata] = ACTIONS(147), - [anon_sym_move] = ACTIONS(147), - [anon_sym_read] = ACTIONS(147), - [anon_sym_workdir] = ACTIONS(147), - [anon_sym_write] = ACTIONS(147), - [anon_sym_from_json] = ACTIONS(147), - [anon_sym_to_json] = ACTIONS(147), - [anon_sym_to_string] = ACTIONS(147), - [anon_sym_to_float] = ACTIONS(147), - [anon_sym_bash] = ACTIONS(147), - [anon_sym_fish] = ACTIONS(147), - [anon_sym_raw] = ACTIONS(147), - [anon_sym_sh] = ACTIONS(147), - [anon_sym_zsh] = ACTIONS(147), - [anon_sym_random] = ACTIONS(147), - [anon_sym_random_boolean] = ACTIONS(147), - [anon_sym_random_float] = ACTIONS(147), - [anon_sym_random_integer] = ACTIONS(147), - [anon_sym_columns] = ACTIONS(147), - [anon_sym_rows] = ACTIONS(147), - [anon_sym_reverse] = ACTIONS(147), + [anon_sym_table] = ACTIONS(1357), + [anon_sym_assert] = ACTIONS(1359), + [anon_sym_assert_equal] = ACTIONS(1359), + [anon_sym_download] = ACTIONS(1359), + [anon_sym_help] = ACTIONS(1359), + [anon_sym_length] = ACTIONS(1359), + [anon_sym_output] = ACTIONS(1359), + [anon_sym_output_error] = ACTIONS(1359), + [anon_sym_type] = ACTIONS(1359), + [anon_sym_append] = ACTIONS(1359), + [anon_sym_metadata] = ACTIONS(1359), + [anon_sym_move] = ACTIONS(1359), + [anon_sym_read] = ACTIONS(1359), + [anon_sym_workdir] = ACTIONS(1359), + [anon_sym_write] = ACTIONS(1359), + [anon_sym_from_json] = ACTIONS(1359), + [anon_sym_to_json] = ACTIONS(1359), + [anon_sym_to_string] = ACTIONS(1359), + [anon_sym_to_float] = ACTIONS(1359), + [anon_sym_bash] = ACTIONS(1359), + [anon_sym_fish] = ACTIONS(1359), + [anon_sym_raw] = ACTIONS(1359), + [anon_sym_sh] = ACTIONS(1359), + [anon_sym_zsh] = ACTIONS(1359), + [anon_sym_random] = ACTIONS(1359), + [anon_sym_random_boolean] = ACTIONS(1359), + [anon_sym_random_float] = ACTIONS(1359), + [anon_sym_random_integer] = ACTIONS(1359), + [anon_sym_columns] = ACTIONS(1359), + [anon_sym_rows] = ACTIONS(1359), + [anon_sym_reverse] = ACTIONS(1359), }, [216] = { - [sym_block] = STATE(1024), - [sym_statement] = STATE(352), - [sym_expression] = STATE(877), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(782), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(1023), - [sym_if_else] = STATE(1023), - [sym_if] = STATE(978), - [sym_match] = STATE(1023), - [sym_while] = STATE(1023), - [sym_for] = STATE(1023), - [sym_transform] = STATE(1023), - [sym_filter] = STATE(1023), - [sym_find] = STATE(1023), - [sym_remove] = STATE(1023), - [sym_reduce] = STATE(1023), - [sym_select] = STATE(1023), - [sym_insert] = STATE(1023), - [sym_async] = STATE(1023), - [sym_identifier_list] = STATE(1926), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(351), - [aux_sym_block_repeat1] = STATE(352), - [sym_identifier] = ACTIONS(1639), + [sym_expression] = STATE(458), + [sym__expression_kind] = STATE(468), + [aux_sym__expression_list] = STATE(219), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_identifier_list] = STATE(1104), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [ts_builtin_sym_end] = ACTIONS(1321), + [sym_identifier] = ACTIONS(1444), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(1641), - [anon_sym_EQ_GT] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1643), - [anon_sym_for] = ACTIONS(1645), - [anon_sym_asyncfor] = ACTIONS(1647), - [anon_sym_transform] = ACTIONS(1649), - [anon_sym_filter] = ACTIONS(1651), - [anon_sym_find] = ACTIONS(1653), - [anon_sym_remove] = ACTIONS(1655), - [anon_sym_reduce] = ACTIONS(1657), - [anon_sym_select] = ACTIONS(1659), - [anon_sym_insert] = ACTIONS(1308), - [anon_sym_async] = ACTIONS(1661), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_RBRACE] = ACTIONS(1321), + [anon_sym_SEMI] = ACTIONS(1321), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_RPAREN] = ACTIONS(1321), + [sym_integer] = ACTIONS(11), + [sym_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(1321), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_PLUS] = ACTIONS(1321), + [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_STAR] = ACTIONS(1321), + [anon_sym_SLASH] = ACTIONS(1321), + [anon_sym_PERCENT] = ACTIONS(1321), + [anon_sym_EQ_EQ] = ACTIONS(1321), + [anon_sym_BANG_EQ] = ACTIONS(1321), + [anon_sym_AMP_AMP] = ACTIONS(1321), + [anon_sym_PIPE_PIPE] = ACTIONS(1321), + [anon_sym_GT] = ACTIONS(1327), + [anon_sym_LT] = ACTIONS(1327), + [anon_sym_GT_EQ] = ACTIONS(1321), + [anon_sym_LT_EQ] = ACTIONS(1321), + [anon_sym_if] = ACTIONS(1327), + [anon_sym_match] = ACTIONS(1327), + [anon_sym_EQ_GT] = ACTIONS(195), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_for] = ACTIONS(1327), + [anon_sym_asyncfor] = ACTIONS(1321), + [anon_sym_transform] = ACTIONS(1327), + [anon_sym_filter] = ACTIONS(1327), + [anon_sym_find] = ACTIONS(1327), + [anon_sym_remove] = ACTIONS(1327), + [anon_sym_reduce] = ACTIONS(1327), + [anon_sym_select] = ACTIONS(1327), + [anon_sym_insert] = ACTIONS(1327), + [anon_sym_async] = ACTIONS(1327), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1312), - [anon_sym_assert] = ACTIONS(1314), - [anon_sym_assert_equal] = ACTIONS(1314), - [anon_sym_download] = ACTIONS(1314), - [anon_sym_help] = ACTIONS(1314), - [anon_sym_length] = ACTIONS(1314), - [anon_sym_output] = ACTIONS(1314), - [anon_sym_output_error] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_append] = ACTIONS(1314), - [anon_sym_metadata] = ACTIONS(1314), - [anon_sym_move] = ACTIONS(1314), - [anon_sym_read] = ACTIONS(1314), - [anon_sym_workdir] = ACTIONS(1314), - [anon_sym_write] = ACTIONS(1314), - [anon_sym_from_json] = ACTIONS(1314), - [anon_sym_to_json] = ACTIONS(1314), - [anon_sym_to_string] = ACTIONS(1314), - [anon_sym_to_float] = ACTIONS(1314), - [anon_sym_bash] = ACTIONS(1314), - [anon_sym_fish] = ACTIONS(1314), - [anon_sym_raw] = ACTIONS(1314), - [anon_sym_sh] = ACTIONS(1314), - [anon_sym_zsh] = ACTIONS(1314), - [anon_sym_random] = ACTIONS(1314), - [anon_sym_random_boolean] = ACTIONS(1314), - [anon_sym_random_float] = ACTIONS(1314), - [anon_sym_random_integer] = ACTIONS(1314), - [anon_sym_columns] = ACTIONS(1314), - [anon_sym_rows] = ACTIONS(1314), - [anon_sym_reverse] = ACTIONS(1314), + [anon_sym_table] = ACTIONS(219), + [anon_sym_assert] = ACTIONS(221), + [anon_sym_assert_equal] = ACTIONS(221), + [anon_sym_download] = ACTIONS(221), + [anon_sym_help] = ACTIONS(221), + [anon_sym_length] = ACTIONS(221), + [anon_sym_output] = ACTIONS(221), + [anon_sym_output_error] = ACTIONS(221), + [anon_sym_type] = ACTIONS(221), + [anon_sym_append] = ACTIONS(221), + [anon_sym_metadata] = ACTIONS(221), + [anon_sym_move] = ACTIONS(221), + [anon_sym_read] = ACTIONS(221), + [anon_sym_workdir] = ACTIONS(221), + [anon_sym_write] = ACTIONS(221), + [anon_sym_from_json] = ACTIONS(221), + [anon_sym_to_json] = ACTIONS(221), + [anon_sym_to_string] = ACTIONS(221), + [anon_sym_to_float] = ACTIONS(221), + [anon_sym_bash] = ACTIONS(221), + [anon_sym_fish] = ACTIONS(221), + [anon_sym_raw] = ACTIONS(221), + [anon_sym_sh] = ACTIONS(221), + [anon_sym_zsh] = ACTIONS(221), + [anon_sym_random] = ACTIONS(221), + [anon_sym_random_boolean] = ACTIONS(221), + [anon_sym_random_float] = ACTIONS(221), + [anon_sym_random_integer] = ACTIONS(221), + [anon_sym_columns] = ACTIONS(221), + [anon_sym_rows] = ACTIONS(221), + [anon_sym_reverse] = ACTIONS(221), }, [217] = { - [sym_block] = STATE(630), - [sym_statement] = STATE(12), - [sym_expression] = STATE(583), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(631), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(567), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(2030), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(271), - [aux_sym_block_repeat1] = STATE(12), - [sym_identifier] = ACTIONS(55), + [sym_expression] = STATE(984), + [sym__expression_kind] = STATE(919), + [sym_value] = STATE(919), + [sym_boolean] = STATE(936), + [sym_list] = STATE(936), + [sym_map] = STATE(936), + [sym_index] = STATE(919), + [sym_math] = STATE(919), + [sym_logic] = STATE(919), + [sym_identifier_list] = STATE(1086), + [sym_table] = STATE(936), + [sym_function] = STATE(936), + [sym_function_call] = STATE(919), + [sym__context_defined_function] = STATE(934), + [sym_built_in_function] = STATE(934), + [sym__built_in_function_name] = STATE(550), + [aux_sym_match_repeat1] = STATE(217), + [ts_builtin_sym_end] = ACTIONS(1398), + [sym_identifier] = ACTIONS(1400), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(59), - [sym_integer] = ACTIONS(61), - [sym_float] = ACTIONS(63), - [sym_string] = ACTIONS(63), - [anon_sym_true] = ACTIONS(65), - [anon_sym_false] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [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_asyncfor] = ACTIONS(127), - [anon_sym_transform] = ACTIONS(129), - [anon_sym_filter] = ACTIONS(131), - [anon_sym_find] = ACTIONS(133), - [anon_sym_remove] = ACTIONS(135), - [anon_sym_reduce] = ACTIONS(137), - [anon_sym_select] = ACTIONS(139), - [anon_sym_insert] = ACTIONS(141), - [anon_sym_async] = ACTIONS(143), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(147), - [anon_sym_assert_equal] = ACTIONS(147), - [anon_sym_download] = ACTIONS(147), - [anon_sym_help] = ACTIONS(147), - [anon_sym_length] = ACTIONS(147), - [anon_sym_output] = ACTIONS(147), - [anon_sym_output_error] = ACTIONS(147), - [anon_sym_type] = ACTIONS(147), - [anon_sym_append] = ACTIONS(147), - [anon_sym_metadata] = ACTIONS(147), - [anon_sym_move] = ACTIONS(147), - [anon_sym_read] = ACTIONS(147), - [anon_sym_workdir] = ACTIONS(147), - [anon_sym_write] = ACTIONS(147), - [anon_sym_from_json] = ACTIONS(147), - [anon_sym_to_json] = ACTIONS(147), - [anon_sym_to_string] = ACTIONS(147), - [anon_sym_to_float] = ACTIONS(147), - [anon_sym_bash] = ACTIONS(147), - [anon_sym_fish] = ACTIONS(147), - [anon_sym_raw] = ACTIONS(147), - [anon_sym_sh] = ACTIONS(147), - [anon_sym_zsh] = ACTIONS(147), - [anon_sym_random] = ACTIONS(147), - [anon_sym_random_boolean] = ACTIONS(147), - [anon_sym_random_float] = ACTIONS(147), - [anon_sym_random_integer] = ACTIONS(147), - [anon_sym_columns] = ACTIONS(147), - [anon_sym_rows] = ACTIONS(147), - [anon_sym_reverse] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_RBRACE] = ACTIONS(1398), + [anon_sym_SEMI] = ACTIONS(1398), + [anon_sym_LPAREN] = ACTIONS(1406), + [anon_sym_RPAREN] = ACTIONS(1398), + [sym_integer] = ACTIONS(1409), + [sym_float] = ACTIONS(1412), + [sym_string] = ACTIONS(1412), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_LBRACK] = ACTIONS(1418), + [anon_sym_COLON] = ACTIONS(1398), + [anon_sym_DOT_DOT] = ACTIONS(1398), + [anon_sym_PLUS] = ACTIONS(1398), + [anon_sym_DASH] = ACTIONS(1421), + [anon_sym_STAR] = ACTIONS(1398), + [anon_sym_SLASH] = ACTIONS(1398), + [anon_sym_PERCENT] = ACTIONS(1398), + [anon_sym_EQ_EQ] = ACTIONS(1398), + [anon_sym_BANG_EQ] = ACTIONS(1398), + [anon_sym_AMP_AMP] = ACTIONS(1398), + [anon_sym_PIPE_PIPE] = ACTIONS(1398), + [anon_sym_GT] = ACTIONS(1421), + [anon_sym_LT] = ACTIONS(1421), + [anon_sym_GT_EQ] = ACTIONS(1398), + [anon_sym_LT_EQ] = ACTIONS(1398), + [anon_sym_if] = ACTIONS(1421), + [anon_sym_match] = ACTIONS(1421), + [anon_sym_EQ_GT] = ACTIONS(1423), + [anon_sym_while] = ACTIONS(1421), + [anon_sym_for] = ACTIONS(1421), + [anon_sym_asyncfor] = ACTIONS(1398), + [anon_sym_transform] = ACTIONS(1421), + [anon_sym_filter] = ACTIONS(1421), + [anon_sym_find] = ACTIONS(1421), + [anon_sym_remove] = ACTIONS(1421), + [anon_sym_reduce] = ACTIONS(1421), + [anon_sym_select] = ACTIONS(1421), + [anon_sym_insert] = ACTIONS(1421), + [anon_sym_async] = ACTIONS(1421), + [anon_sym_PIPE] = ACTIONS(1426), + [anon_sym_table] = ACTIONS(1429), + [anon_sym_assert] = ACTIONS(1432), + [anon_sym_assert_equal] = ACTIONS(1432), + [anon_sym_download] = ACTIONS(1432), + [anon_sym_help] = ACTIONS(1432), + [anon_sym_length] = ACTIONS(1432), + [anon_sym_output] = ACTIONS(1432), + [anon_sym_output_error] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_append] = ACTIONS(1432), + [anon_sym_metadata] = ACTIONS(1432), + [anon_sym_move] = ACTIONS(1432), + [anon_sym_read] = ACTIONS(1432), + [anon_sym_workdir] = ACTIONS(1432), + [anon_sym_write] = ACTIONS(1432), + [anon_sym_from_json] = ACTIONS(1432), + [anon_sym_to_json] = ACTIONS(1432), + [anon_sym_to_string] = ACTIONS(1432), + [anon_sym_to_float] = ACTIONS(1432), + [anon_sym_bash] = ACTIONS(1432), + [anon_sym_fish] = ACTIONS(1432), + [anon_sym_raw] = ACTIONS(1432), + [anon_sym_sh] = ACTIONS(1432), + [anon_sym_zsh] = ACTIONS(1432), + [anon_sym_random] = ACTIONS(1432), + [anon_sym_random_boolean] = ACTIONS(1432), + [anon_sym_random_float] = ACTIONS(1432), + [anon_sym_random_integer] = ACTIONS(1432), + [anon_sym_columns] = ACTIONS(1432), + [anon_sym_rows] = ACTIONS(1432), + [anon_sym_reverse] = ACTIONS(1432), }, [218] = { - [sym_block] = STATE(731), - [sym_statement] = STATE(17), - [sym_expression] = STATE(601), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(706), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(557), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1910), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(284), - [aux_sym_block_repeat1] = STATE(17), - [sym_identifier] = ACTIONS(149), + [sym_expression] = STATE(458), + [sym__expression_kind] = STATE(468), + [aux_sym__expression_list] = STATE(216), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_identifier_list] = STATE(1104), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [ts_builtin_sym_end] = ACTIONS(1333), + [sym_identifier] = ACTIONS(1444), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(81), - [anon_sym_match] = ACTIONS(165), - [anon_sym_EQ_GT] = ACTIONS(167), - [anon_sym_while] = ACTIONS(169), - [anon_sym_for] = ACTIONS(171), - [anon_sym_asyncfor] = ACTIONS(173), - [anon_sym_transform] = ACTIONS(175), - [anon_sym_filter] = ACTIONS(177), - [anon_sym_find] = ACTIONS(179), - [anon_sym_remove] = ACTIONS(181), - [anon_sym_reduce] = ACTIONS(183), - [anon_sym_select] = ACTIONS(185), - [anon_sym_insert] = ACTIONS(187), - [anon_sym_async] = ACTIONS(189), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_RBRACE] = ACTIONS(1333), + [anon_sym_SEMI] = ACTIONS(1333), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_RPAREN] = ACTIONS(1333), + [sym_integer] = ACTIONS(11), + [sym_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(1333), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1333), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_SLASH] = ACTIONS(1333), + [anon_sym_PERCENT] = ACTIONS(1333), + [anon_sym_EQ_EQ] = ACTIONS(1333), + [anon_sym_BANG_EQ] = ACTIONS(1333), + [anon_sym_AMP_AMP] = ACTIONS(1333), + [anon_sym_PIPE_PIPE] = ACTIONS(1333), + [anon_sym_GT] = ACTIONS(1335), + [anon_sym_LT] = ACTIONS(1335), + [anon_sym_GT_EQ] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1333), + [anon_sym_if] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1335), + [anon_sym_EQ_GT] = ACTIONS(195), + [anon_sym_while] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1335), + [anon_sym_asyncfor] = ACTIONS(1333), + [anon_sym_transform] = ACTIONS(1335), + [anon_sym_filter] = ACTIONS(1335), + [anon_sym_find] = ACTIONS(1335), + [anon_sym_remove] = ACTIONS(1335), + [anon_sym_reduce] = ACTIONS(1335), + [anon_sym_select] = ACTIONS(1335), + [anon_sym_insert] = ACTIONS(1335), + [anon_sym_async] = ACTIONS(1335), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(191), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_assert_equal] = ACTIONS(193), - [anon_sym_download] = ACTIONS(193), - [anon_sym_help] = ACTIONS(193), - [anon_sym_length] = ACTIONS(193), - [anon_sym_output] = ACTIONS(193), - [anon_sym_output_error] = ACTIONS(193), - [anon_sym_type] = ACTIONS(193), - [anon_sym_append] = ACTIONS(193), - [anon_sym_metadata] = ACTIONS(193), - [anon_sym_move] = ACTIONS(193), - [anon_sym_read] = ACTIONS(193), - [anon_sym_workdir] = ACTIONS(193), - [anon_sym_write] = ACTIONS(193), - [anon_sym_from_json] = ACTIONS(193), - [anon_sym_to_json] = ACTIONS(193), - [anon_sym_to_string] = ACTIONS(193), - [anon_sym_to_float] = ACTIONS(193), - [anon_sym_bash] = ACTIONS(193), - [anon_sym_fish] = ACTIONS(193), - [anon_sym_raw] = ACTIONS(193), - [anon_sym_sh] = ACTIONS(193), - [anon_sym_zsh] = ACTIONS(193), - [anon_sym_random] = ACTIONS(193), - [anon_sym_random_boolean] = ACTIONS(193), - [anon_sym_random_float] = ACTIONS(193), - [anon_sym_random_integer] = ACTIONS(193), - [anon_sym_columns] = ACTIONS(193), - [anon_sym_rows] = ACTIONS(193), - [anon_sym_reverse] = ACTIONS(193), + [anon_sym_table] = ACTIONS(219), + [anon_sym_assert] = ACTIONS(221), + [anon_sym_assert_equal] = ACTIONS(221), + [anon_sym_download] = ACTIONS(221), + [anon_sym_help] = ACTIONS(221), + [anon_sym_length] = ACTIONS(221), + [anon_sym_output] = ACTIONS(221), + [anon_sym_output_error] = ACTIONS(221), + [anon_sym_type] = ACTIONS(221), + [anon_sym_append] = ACTIONS(221), + [anon_sym_metadata] = ACTIONS(221), + [anon_sym_move] = ACTIONS(221), + [anon_sym_read] = ACTIONS(221), + [anon_sym_workdir] = ACTIONS(221), + [anon_sym_write] = ACTIONS(221), + [anon_sym_from_json] = ACTIONS(221), + [anon_sym_to_json] = ACTIONS(221), + [anon_sym_to_string] = ACTIONS(221), + [anon_sym_to_float] = ACTIONS(221), + [anon_sym_bash] = ACTIONS(221), + [anon_sym_fish] = ACTIONS(221), + [anon_sym_raw] = ACTIONS(221), + [anon_sym_sh] = ACTIONS(221), + [anon_sym_zsh] = ACTIONS(221), + [anon_sym_random] = ACTIONS(221), + [anon_sym_random_boolean] = ACTIONS(221), + [anon_sym_random_float] = ACTIONS(221), + [anon_sym_random_integer] = ACTIONS(221), + [anon_sym_columns] = ACTIONS(221), + [anon_sym_rows] = ACTIONS(221), + [anon_sym_reverse] = ACTIONS(221), }, [219] = { - [sym_block] = STATE(871), - [sym_statement] = STATE(57), - [sym_expression] = STATE(853), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(776), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(710), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1823), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(366), - [aux_sym_block_repeat1] = STATE(57), - [sym_identifier] = ACTIONS(1436), + [sym_expression] = STATE(458), + [sym__expression_kind] = STATE(468), + [aux_sym__expression_list] = STATE(219), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_identifier_list] = STATE(1104), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [ts_builtin_sym_end] = ACTIONS(1361), + [sym_identifier] = ACTIONS(1446), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(877), - [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(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(843), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_EQ_GT] = ACTIONS(1442), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_for] = ACTIONS(1446), - [anon_sym_asyncfor] = ACTIONS(1448), - [anon_sym_transform] = ACTIONS(1450), - [anon_sym_filter] = ACTIONS(1452), - [anon_sym_find] = ACTIONS(1454), - [anon_sym_remove] = ACTIONS(1456), - [anon_sym_reduce] = ACTIONS(1458), - [anon_sym_select] = ACTIONS(1460), - [anon_sym_insert] = ACTIONS(1462), - [anon_sym_async] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1466), - [anon_sym_assert] = ACTIONS(1468), - [anon_sym_assert_equal] = ACTIONS(1468), - [anon_sym_download] = ACTIONS(1468), - [anon_sym_help] = ACTIONS(1468), - [anon_sym_length] = ACTIONS(1468), - [anon_sym_output] = ACTIONS(1468), - [anon_sym_output_error] = ACTIONS(1468), - [anon_sym_type] = ACTIONS(1468), - [anon_sym_append] = ACTIONS(1468), - [anon_sym_metadata] = ACTIONS(1468), - [anon_sym_move] = ACTIONS(1468), - [anon_sym_read] = ACTIONS(1468), - [anon_sym_workdir] = ACTIONS(1468), - [anon_sym_write] = ACTIONS(1468), - [anon_sym_from_json] = ACTIONS(1468), - [anon_sym_to_json] = ACTIONS(1468), - [anon_sym_to_string] = ACTIONS(1468), - [anon_sym_to_float] = ACTIONS(1468), - [anon_sym_bash] = ACTIONS(1468), - [anon_sym_fish] = ACTIONS(1468), - [anon_sym_raw] = ACTIONS(1468), - [anon_sym_sh] = ACTIONS(1468), - [anon_sym_zsh] = ACTIONS(1468), - [anon_sym_random] = ACTIONS(1468), - [anon_sym_random_boolean] = ACTIONS(1468), - [anon_sym_random_float] = ACTIONS(1468), - [anon_sym_random_integer] = ACTIONS(1468), - [anon_sym_columns] = ACTIONS(1468), - [anon_sym_rows] = ACTIONS(1468), - [anon_sym_reverse] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_RBRACE] = ACTIONS(1361), + [anon_sym_SEMI] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(1452), + [anon_sym_RPAREN] = ACTIONS(1361), + [sym_integer] = ACTIONS(1455), + [sym_float] = ACTIONS(1458), + [sym_string] = ACTIONS(1458), + [anon_sym_true] = ACTIONS(1461), + [anon_sym_false] = ACTIONS(1461), + [anon_sym_LBRACK] = ACTIONS(1464), + [anon_sym_COLON] = ACTIONS(1361), + [anon_sym_DOT_DOT] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1361), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_SLASH] = ACTIONS(1361), + [anon_sym_PERCENT] = ACTIONS(1361), + [anon_sym_EQ_EQ] = ACTIONS(1361), + [anon_sym_BANG_EQ] = ACTIONS(1361), + [anon_sym_AMP_AMP] = ACTIONS(1361), + [anon_sym_PIPE_PIPE] = ACTIONS(1361), + [anon_sym_GT] = ACTIONS(1384), + [anon_sym_LT] = ACTIONS(1384), + [anon_sym_GT_EQ] = ACTIONS(1361), + [anon_sym_LT_EQ] = ACTIONS(1361), + [anon_sym_if] = ACTIONS(1384), + [anon_sym_match] = ACTIONS(1384), + [anon_sym_EQ_GT] = ACTIONS(1467), + [anon_sym_while] = ACTIONS(1384), + [anon_sym_for] = ACTIONS(1384), + [anon_sym_asyncfor] = ACTIONS(1361), + [anon_sym_transform] = ACTIONS(1384), + [anon_sym_filter] = ACTIONS(1384), + [anon_sym_find] = ACTIONS(1384), + [anon_sym_remove] = ACTIONS(1384), + [anon_sym_reduce] = ACTIONS(1384), + [anon_sym_select] = ACTIONS(1384), + [anon_sym_insert] = ACTIONS(1384), + [anon_sym_async] = ACTIONS(1384), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_table] = ACTIONS(1470), + [anon_sym_assert] = ACTIONS(1473), + [anon_sym_assert_equal] = ACTIONS(1473), + [anon_sym_download] = ACTIONS(1473), + [anon_sym_help] = ACTIONS(1473), + [anon_sym_length] = ACTIONS(1473), + [anon_sym_output] = ACTIONS(1473), + [anon_sym_output_error] = ACTIONS(1473), + [anon_sym_type] = ACTIONS(1473), + [anon_sym_append] = ACTIONS(1473), + [anon_sym_metadata] = ACTIONS(1473), + [anon_sym_move] = ACTIONS(1473), + [anon_sym_read] = ACTIONS(1473), + [anon_sym_workdir] = ACTIONS(1473), + [anon_sym_write] = ACTIONS(1473), + [anon_sym_from_json] = ACTIONS(1473), + [anon_sym_to_json] = ACTIONS(1473), + [anon_sym_to_string] = ACTIONS(1473), + [anon_sym_to_float] = ACTIONS(1473), + [anon_sym_bash] = ACTIONS(1473), + [anon_sym_fish] = ACTIONS(1473), + [anon_sym_raw] = ACTIONS(1473), + [anon_sym_sh] = ACTIONS(1473), + [anon_sym_zsh] = ACTIONS(1473), + [anon_sym_random] = ACTIONS(1473), + [anon_sym_random_boolean] = ACTIONS(1473), + [anon_sym_random_float] = ACTIONS(1473), + [anon_sym_random_integer] = ACTIONS(1473), + [anon_sym_columns] = ACTIONS(1473), + [anon_sym_rows] = ACTIONS(1473), + [anon_sym_reverse] = ACTIONS(1473), }, [220] = { - [sym_block] = STATE(639), - [sym_statement] = STATE(21), - [sym_expression] = STATE(593), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(631), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(584), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(1776), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(286), - [aux_sym_block_repeat1] = STATE(21), - [sym_identifier] = ACTIONS(55), + [sym_expression] = STATE(458), + [sym__expression_kind] = STATE(468), + [aux_sym__expression_list] = STATE(219), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_identifier_list] = STATE(1104), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [ts_builtin_sym_end] = ACTIONS(1329), + [sym_identifier] = ACTIONS(1444), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(59), - [sym_integer] = ACTIONS(61), - [sym_float] = ACTIONS(63), - [sym_string] = ACTIONS(63), - [anon_sym_true] = ACTIONS(65), - [anon_sym_false] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(197), - [anon_sym_match] = ACTIONS(199), - [anon_sym_EQ_GT] = ACTIONS(201), - [anon_sym_while] = ACTIONS(203), - [anon_sym_for] = ACTIONS(205), - [anon_sym_asyncfor] = ACTIONS(207), - [anon_sym_transform] = ACTIONS(209), - [anon_sym_filter] = ACTIONS(211), - [anon_sym_find] = ACTIONS(213), - [anon_sym_remove] = ACTIONS(215), - [anon_sym_reduce] = ACTIONS(217), - [anon_sym_select] = ACTIONS(219), - [anon_sym_insert] = ACTIONS(221), - [anon_sym_async] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_RBRACE] = ACTIONS(1329), + [anon_sym_SEMI] = ACTIONS(1329), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_RPAREN] = ACTIONS(1329), + [sym_integer] = ACTIONS(11), + [sym_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(1329), + [anon_sym_DOT_DOT] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1331), + [anon_sym_STAR] = ACTIONS(1329), + [anon_sym_SLASH] = ACTIONS(1329), + [anon_sym_PERCENT] = ACTIONS(1329), + [anon_sym_EQ_EQ] = ACTIONS(1329), + [anon_sym_BANG_EQ] = ACTIONS(1329), + [anon_sym_AMP_AMP] = ACTIONS(1329), + [anon_sym_PIPE_PIPE] = ACTIONS(1329), + [anon_sym_GT] = ACTIONS(1331), + [anon_sym_LT] = ACTIONS(1331), + [anon_sym_GT_EQ] = ACTIONS(1329), + [anon_sym_LT_EQ] = ACTIONS(1329), + [anon_sym_if] = ACTIONS(1331), + [anon_sym_match] = ACTIONS(1331), + [anon_sym_EQ_GT] = ACTIONS(195), + [anon_sym_while] = ACTIONS(1331), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_asyncfor] = ACTIONS(1329), + [anon_sym_transform] = ACTIONS(1331), + [anon_sym_filter] = ACTIONS(1331), + [anon_sym_find] = ACTIONS(1331), + [anon_sym_remove] = ACTIONS(1331), + [anon_sym_reduce] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1331), + [anon_sym_insert] = ACTIONS(1331), + [anon_sym_async] = ACTIONS(1331), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(225), - [anon_sym_assert] = ACTIONS(227), - [anon_sym_assert_equal] = ACTIONS(227), - [anon_sym_download] = ACTIONS(227), - [anon_sym_help] = ACTIONS(227), - [anon_sym_length] = ACTIONS(227), - [anon_sym_output] = ACTIONS(227), - [anon_sym_output_error] = ACTIONS(227), - [anon_sym_type] = ACTIONS(227), - [anon_sym_append] = ACTIONS(227), - [anon_sym_metadata] = ACTIONS(227), - [anon_sym_move] = ACTIONS(227), - [anon_sym_read] = ACTIONS(227), - [anon_sym_workdir] = ACTIONS(227), - [anon_sym_write] = ACTIONS(227), - [anon_sym_from_json] = ACTIONS(227), - [anon_sym_to_json] = ACTIONS(227), - [anon_sym_to_string] = ACTIONS(227), - [anon_sym_to_float] = ACTIONS(227), - [anon_sym_bash] = ACTIONS(227), - [anon_sym_fish] = ACTIONS(227), - [anon_sym_raw] = ACTIONS(227), - [anon_sym_sh] = ACTIONS(227), - [anon_sym_zsh] = ACTIONS(227), - [anon_sym_random] = ACTIONS(227), - [anon_sym_random_boolean] = ACTIONS(227), - [anon_sym_random_float] = ACTIONS(227), - [anon_sym_random_integer] = ACTIONS(227), - [anon_sym_columns] = ACTIONS(227), - [anon_sym_rows] = ACTIONS(227), - [anon_sym_reverse] = ACTIONS(227), + [anon_sym_table] = ACTIONS(219), + [anon_sym_assert] = ACTIONS(221), + [anon_sym_assert_equal] = ACTIONS(221), + [anon_sym_download] = ACTIONS(221), + [anon_sym_help] = ACTIONS(221), + [anon_sym_length] = ACTIONS(221), + [anon_sym_output] = ACTIONS(221), + [anon_sym_output_error] = ACTIONS(221), + [anon_sym_type] = ACTIONS(221), + [anon_sym_append] = ACTIONS(221), + [anon_sym_metadata] = ACTIONS(221), + [anon_sym_move] = ACTIONS(221), + [anon_sym_read] = ACTIONS(221), + [anon_sym_workdir] = ACTIONS(221), + [anon_sym_write] = ACTIONS(221), + [anon_sym_from_json] = ACTIONS(221), + [anon_sym_to_json] = ACTIONS(221), + [anon_sym_to_string] = ACTIONS(221), + [anon_sym_to_float] = ACTIONS(221), + [anon_sym_bash] = ACTIONS(221), + [anon_sym_fish] = ACTIONS(221), + [anon_sym_raw] = ACTIONS(221), + [anon_sym_sh] = ACTIONS(221), + [anon_sym_zsh] = ACTIONS(221), + [anon_sym_random] = ACTIONS(221), + [anon_sym_random_boolean] = ACTIONS(221), + [anon_sym_random_float] = ACTIONS(221), + [anon_sym_random_integer] = ACTIONS(221), + [anon_sym_columns] = ACTIONS(221), + [anon_sym_rows] = ACTIONS(221), + [anon_sym_reverse] = ACTIONS(221), }, [221] = { - [sym_block] = STATE(1056), - [sym_statement] = STATE(382), - [sym_expression] = STATE(934), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(842), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(983), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [aux_sym_block_repeat1] = STATE(382), - [sym_identifier] = ACTIONS(2162), + [sym_statement] = STATE(229), + [sym_expression] = STATE(547), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(571), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [aux_sym_block_repeat1] = STATE(229), + [sym_identifier] = ACTIONS(1649), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_RBRACE] = ACTIONS(293), + [anon_sym_SEMI] = ACTIONS(293), [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_COMMA] = ACTIONS(293), [sym_integer] = ACTIONS(11), [sym_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(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(1570), - [anon_sym_match] = ACTIONS(2166), - [anon_sym_EQ_GT] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(2168), - [anon_sym_for] = ACTIONS(2170), - [anon_sym_asyncfor] = ACTIONS(2172), - [anon_sym_transform] = ACTIONS(2174), - [anon_sym_filter] = ACTIONS(2176), - [anon_sym_find] = ACTIONS(2178), - [anon_sym_remove] = ACTIONS(2180), - [anon_sym_reduce] = ACTIONS(2182), - [anon_sym_select] = ACTIONS(2184), - [anon_sym_insert] = ACTIONS(1224), - [anon_sym_async] = ACTIONS(2186), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1228), - [anon_sym_assert] = ACTIONS(1230), - [anon_sym_assert_equal] = ACTIONS(1230), - [anon_sym_download] = ACTIONS(1230), - [anon_sym_help] = ACTIONS(1230), - [anon_sym_length] = ACTIONS(1230), - [anon_sym_output] = ACTIONS(1230), - [anon_sym_output_error] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_append] = ACTIONS(1230), - [anon_sym_metadata] = ACTIONS(1230), - [anon_sym_move] = ACTIONS(1230), - [anon_sym_read] = ACTIONS(1230), - [anon_sym_workdir] = ACTIONS(1230), - [anon_sym_write] = ACTIONS(1230), - [anon_sym_from_json] = ACTIONS(1230), - [anon_sym_to_json] = ACTIONS(1230), - [anon_sym_to_string] = ACTIONS(1230), - [anon_sym_to_float] = ACTIONS(1230), - [anon_sym_bash] = ACTIONS(1230), - [anon_sym_fish] = ACTIONS(1230), - [anon_sym_raw] = ACTIONS(1230), - [anon_sym_sh] = ACTIONS(1230), - [anon_sym_zsh] = ACTIONS(1230), - [anon_sym_random] = ACTIONS(1230), - [anon_sym_random_boolean] = ACTIONS(1230), - [anon_sym_random_float] = ACTIONS(1230), - [anon_sym_random_integer] = ACTIONS(1230), - [anon_sym_columns] = ACTIONS(1230), - [anon_sym_rows] = ACTIONS(1230), - [anon_sym_reverse] = ACTIONS(1230), + [anon_sym_if] = ACTIONS(449), + [anon_sym_match] = ACTIONS(943), + [anon_sym_EQ_GT] = ACTIONS(265), + [anon_sym_while] = ACTIONS(945), + [anon_sym_for] = ACTIONS(947), + [anon_sym_asyncfor] = ACTIONS(949), + [anon_sym_transform] = ACTIONS(951), + [anon_sym_filter] = ACTIONS(953), + [anon_sym_find] = ACTIONS(955), + [anon_sym_remove] = ACTIONS(957), + [anon_sym_reduce] = ACTIONS(959), + [anon_sym_select] = ACTIONS(961), + [anon_sym_insert] = ACTIONS(285), + [anon_sym_async] = ACTIONS(963), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(289), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_assert_equal] = ACTIONS(291), + [anon_sym_download] = ACTIONS(291), + [anon_sym_help] = ACTIONS(291), + [anon_sym_length] = ACTIONS(291), + [anon_sym_output] = ACTIONS(291), + [anon_sym_output_error] = ACTIONS(291), + [anon_sym_type] = ACTIONS(291), + [anon_sym_append] = ACTIONS(291), + [anon_sym_metadata] = ACTIONS(291), + [anon_sym_move] = ACTIONS(291), + [anon_sym_read] = ACTIONS(291), + [anon_sym_workdir] = ACTIONS(291), + [anon_sym_write] = ACTIONS(291), + [anon_sym_from_json] = ACTIONS(291), + [anon_sym_to_json] = ACTIONS(291), + [anon_sym_to_string] = ACTIONS(291), + [anon_sym_to_float] = ACTIONS(291), + [anon_sym_bash] = ACTIONS(291), + [anon_sym_fish] = ACTIONS(291), + [anon_sym_raw] = ACTIONS(291), + [anon_sym_sh] = ACTIONS(291), + [anon_sym_zsh] = ACTIONS(291), + [anon_sym_random] = ACTIONS(291), + [anon_sym_random_boolean] = ACTIONS(291), + [anon_sym_random_float] = ACTIONS(291), + [anon_sym_random_integer] = ACTIONS(291), + [anon_sym_columns] = ACTIONS(291), + [anon_sym_rows] = ACTIONS(291), + [anon_sym_reverse] = ACTIONS(291), }, [222] = { - [sym_block] = STATE(1026), - [sym_statement] = STATE(352), - [sym_expression] = STATE(877), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(782), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(1023), - [sym_if_else] = STATE(1023), - [sym_if] = STATE(978), - [sym_match] = STATE(1023), - [sym_while] = STATE(1023), - [sym_for] = STATE(1023), - [sym_transform] = STATE(1023), - [sym_filter] = STATE(1023), - [sym_find] = STATE(1023), - [sym_remove] = STATE(1023), - [sym_reduce] = STATE(1023), - [sym_select] = STATE(1023), - [sym_insert] = STATE(1023), - [sym_async] = STATE(1023), - [sym_identifier_list] = STATE(1926), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(351), - [aux_sym_block_repeat1] = STATE(352), - [sym_identifier] = ACTIONS(1639), + [sym_expression] = STATE(472), + [sym__expression_kind] = STATE(468), + [aux_sym__expression_list] = STATE(233), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [ts_builtin_sym_end] = ACTIONS(1333), + [sym_identifier] = ACTIONS(1444), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(1641), - [anon_sym_EQ_GT] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1643), - [anon_sym_for] = ACTIONS(1645), - [anon_sym_asyncfor] = ACTIONS(1647), - [anon_sym_transform] = ACTIONS(1649), - [anon_sym_filter] = ACTIONS(1651), - [anon_sym_find] = ACTIONS(1653), - [anon_sym_remove] = ACTIONS(1655), - [anon_sym_reduce] = ACTIONS(1657), - [anon_sym_select] = ACTIONS(1659), - [anon_sym_insert] = ACTIONS(1308), - [anon_sym_async] = ACTIONS(1661), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_RBRACE] = ACTIONS(1333), + [anon_sym_SEMI] = ACTIONS(1333), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_RPAREN] = ACTIONS(1333), + [sym_integer] = ACTIONS(11), + [sym_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(1333), + [anon_sym_PLUS] = ACTIONS(1333), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_SLASH] = ACTIONS(1333), + [anon_sym_PERCENT] = ACTIONS(1333), + [anon_sym_EQ_EQ] = ACTIONS(1333), + [anon_sym_BANG_EQ] = ACTIONS(1333), + [anon_sym_AMP_AMP] = ACTIONS(1333), + [anon_sym_PIPE_PIPE] = ACTIONS(1333), + [anon_sym_GT] = ACTIONS(1335), + [anon_sym_LT] = ACTIONS(1335), + [anon_sym_GT_EQ] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1333), + [anon_sym_if] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1335), + [anon_sym_EQ_GT] = ACTIONS(265), + [anon_sym_while] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1335), + [anon_sym_asyncfor] = ACTIONS(1333), + [anon_sym_transform] = ACTIONS(1335), + [anon_sym_filter] = ACTIONS(1335), + [anon_sym_find] = ACTIONS(1335), + [anon_sym_remove] = ACTIONS(1335), + [anon_sym_reduce] = ACTIONS(1335), + [anon_sym_select] = ACTIONS(1335), + [anon_sym_insert] = ACTIONS(1335), + [anon_sym_async] = ACTIONS(1335), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1312), - [anon_sym_assert] = ACTIONS(1314), - [anon_sym_assert_equal] = ACTIONS(1314), - [anon_sym_download] = ACTIONS(1314), - [anon_sym_help] = ACTIONS(1314), - [anon_sym_length] = ACTIONS(1314), - [anon_sym_output] = ACTIONS(1314), - [anon_sym_output_error] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_append] = ACTIONS(1314), - [anon_sym_metadata] = ACTIONS(1314), - [anon_sym_move] = ACTIONS(1314), - [anon_sym_read] = ACTIONS(1314), - [anon_sym_workdir] = ACTIONS(1314), - [anon_sym_write] = ACTIONS(1314), - [anon_sym_from_json] = ACTIONS(1314), - [anon_sym_to_json] = ACTIONS(1314), - [anon_sym_to_string] = ACTIONS(1314), - [anon_sym_to_float] = ACTIONS(1314), - [anon_sym_bash] = ACTIONS(1314), - [anon_sym_fish] = ACTIONS(1314), - [anon_sym_raw] = ACTIONS(1314), - [anon_sym_sh] = ACTIONS(1314), - [anon_sym_zsh] = ACTIONS(1314), - [anon_sym_random] = ACTIONS(1314), - [anon_sym_random_boolean] = ACTIONS(1314), - [anon_sym_random_float] = ACTIONS(1314), - [anon_sym_random_integer] = ACTIONS(1314), - [anon_sym_columns] = ACTIONS(1314), - [anon_sym_rows] = ACTIONS(1314), - [anon_sym_reverse] = ACTIONS(1314), + [anon_sym_table] = ACTIONS(289), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_assert_equal] = ACTIONS(291), + [anon_sym_download] = ACTIONS(291), + [anon_sym_help] = ACTIONS(291), + [anon_sym_length] = ACTIONS(291), + [anon_sym_output] = ACTIONS(291), + [anon_sym_output_error] = ACTIONS(291), + [anon_sym_type] = ACTIONS(291), + [anon_sym_append] = ACTIONS(291), + [anon_sym_metadata] = ACTIONS(291), + [anon_sym_move] = ACTIONS(291), + [anon_sym_read] = ACTIONS(291), + [anon_sym_workdir] = ACTIONS(291), + [anon_sym_write] = ACTIONS(291), + [anon_sym_from_json] = ACTIONS(291), + [anon_sym_to_json] = ACTIONS(291), + [anon_sym_to_string] = ACTIONS(291), + [anon_sym_to_float] = ACTIONS(291), + [anon_sym_bash] = ACTIONS(291), + [anon_sym_fish] = ACTIONS(291), + [anon_sym_raw] = ACTIONS(291), + [anon_sym_sh] = ACTIONS(291), + [anon_sym_zsh] = ACTIONS(291), + [anon_sym_random] = ACTIONS(291), + [anon_sym_random_boolean] = ACTIONS(291), + [anon_sym_random_float] = ACTIONS(291), + [anon_sym_random_integer] = ACTIONS(291), + [anon_sym_columns] = ACTIONS(291), + [anon_sym_rows] = ACTIONS(291), + [anon_sym_reverse] = ACTIONS(291), }, [223] = { - [sym_block] = STATE(1061), - [sym_statement] = STATE(382), - [sym_expression] = STATE(934), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(842), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(983), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [aux_sym_block_repeat1] = STATE(382), - [sym_identifier] = ACTIONS(2162), + [sym_expression] = STATE(981), + [sym__expression_kind] = STATE(919), + [sym_value] = STATE(919), + [sym_boolean] = STATE(936), + [sym_list] = STATE(936), + [sym_map] = STATE(936), + [sym_index] = STATE(919), + [sym_math] = STATE(919), + [sym_logic] = STATE(919), + [sym_identifier_list] = STATE(1086), + [sym_table] = STATE(936), + [sym_function] = STATE(936), + [sym_function_call] = STATE(919), + [sym__context_defined_function] = STATE(934), + [sym_built_in_function] = STATE(934), + [sym__built_in_function_name] = STATE(550), + [aux_sym_match_repeat1] = STATE(223), + [ts_builtin_sym_end] = ACTIONS(1398), + [sym_identifier] = ACTIONS(1400), [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(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(1570), - [anon_sym_match] = ACTIONS(2166), - [anon_sym_EQ_GT] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(2168), - [anon_sym_for] = ACTIONS(2170), - [anon_sym_asyncfor] = ACTIONS(2172), - [anon_sym_transform] = ACTIONS(2174), - [anon_sym_filter] = ACTIONS(2176), - [anon_sym_find] = ACTIONS(2178), - [anon_sym_remove] = ACTIONS(2180), - [anon_sym_reduce] = ACTIONS(2182), - [anon_sym_select] = ACTIONS(2184), - [anon_sym_insert] = ACTIONS(1224), - [anon_sym_async] = ACTIONS(2186), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1228), - [anon_sym_assert] = ACTIONS(1230), - [anon_sym_assert_equal] = ACTIONS(1230), - [anon_sym_download] = ACTIONS(1230), - [anon_sym_help] = ACTIONS(1230), - [anon_sym_length] = ACTIONS(1230), - [anon_sym_output] = ACTIONS(1230), - [anon_sym_output_error] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_append] = ACTIONS(1230), - [anon_sym_metadata] = ACTIONS(1230), - [anon_sym_move] = ACTIONS(1230), - [anon_sym_read] = ACTIONS(1230), - [anon_sym_workdir] = ACTIONS(1230), - [anon_sym_write] = ACTIONS(1230), - [anon_sym_from_json] = ACTIONS(1230), - [anon_sym_to_json] = ACTIONS(1230), - [anon_sym_to_string] = ACTIONS(1230), - [anon_sym_to_float] = ACTIONS(1230), - [anon_sym_bash] = ACTIONS(1230), - [anon_sym_fish] = ACTIONS(1230), - [anon_sym_raw] = ACTIONS(1230), - [anon_sym_sh] = ACTIONS(1230), - [anon_sym_zsh] = ACTIONS(1230), - [anon_sym_random] = ACTIONS(1230), - [anon_sym_random_boolean] = ACTIONS(1230), - [anon_sym_random_float] = ACTIONS(1230), - [anon_sym_random_integer] = ACTIONS(1230), - [anon_sym_columns] = ACTIONS(1230), - [anon_sym_rows] = ACTIONS(1230), - [anon_sym_reverse] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_RBRACE] = ACTIONS(1398), + [anon_sym_SEMI] = ACTIONS(1398), + [anon_sym_LPAREN] = ACTIONS(1406), + [anon_sym_RPAREN] = ACTIONS(1398), + [sym_integer] = ACTIONS(1409), + [sym_float] = ACTIONS(1412), + [sym_string] = ACTIONS(1412), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_LBRACK] = ACTIONS(1418), + [anon_sym_COLON] = ACTIONS(1398), + [anon_sym_PLUS] = ACTIONS(1398), + [anon_sym_DASH] = ACTIONS(1421), + [anon_sym_STAR] = ACTIONS(1398), + [anon_sym_SLASH] = ACTIONS(1398), + [anon_sym_PERCENT] = ACTIONS(1398), + [anon_sym_EQ_EQ] = ACTIONS(1398), + [anon_sym_BANG_EQ] = ACTIONS(1398), + [anon_sym_AMP_AMP] = ACTIONS(1398), + [anon_sym_PIPE_PIPE] = ACTIONS(1398), + [anon_sym_GT] = ACTIONS(1421), + [anon_sym_LT] = ACTIONS(1421), + [anon_sym_GT_EQ] = ACTIONS(1398), + [anon_sym_LT_EQ] = ACTIONS(1398), + [anon_sym_if] = ACTIONS(1421), + [anon_sym_match] = ACTIONS(1421), + [anon_sym_EQ_GT] = ACTIONS(1423), + [anon_sym_while] = ACTIONS(1421), + [anon_sym_for] = ACTIONS(1421), + [anon_sym_asyncfor] = ACTIONS(1398), + [anon_sym_transform] = ACTIONS(1421), + [anon_sym_filter] = ACTIONS(1421), + [anon_sym_find] = ACTIONS(1421), + [anon_sym_remove] = ACTIONS(1421), + [anon_sym_reduce] = ACTIONS(1421), + [anon_sym_select] = ACTIONS(1421), + [anon_sym_insert] = ACTIONS(1421), + [anon_sym_async] = ACTIONS(1421), + [anon_sym_PIPE] = ACTIONS(1426), + [anon_sym_table] = ACTIONS(1429), + [anon_sym_assert] = ACTIONS(1432), + [anon_sym_assert_equal] = ACTIONS(1432), + [anon_sym_download] = ACTIONS(1432), + [anon_sym_help] = ACTIONS(1432), + [anon_sym_length] = ACTIONS(1432), + [anon_sym_output] = ACTIONS(1432), + [anon_sym_output_error] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_append] = ACTIONS(1432), + [anon_sym_metadata] = ACTIONS(1432), + [anon_sym_move] = ACTIONS(1432), + [anon_sym_read] = ACTIONS(1432), + [anon_sym_workdir] = ACTIONS(1432), + [anon_sym_write] = ACTIONS(1432), + [anon_sym_from_json] = ACTIONS(1432), + [anon_sym_to_json] = ACTIONS(1432), + [anon_sym_to_string] = ACTIONS(1432), + [anon_sym_to_float] = ACTIONS(1432), + [anon_sym_bash] = ACTIONS(1432), + [anon_sym_fish] = ACTIONS(1432), + [anon_sym_raw] = ACTIONS(1432), + [anon_sym_sh] = ACTIONS(1432), + [anon_sym_zsh] = ACTIONS(1432), + [anon_sym_random] = ACTIONS(1432), + [anon_sym_random_boolean] = ACTIONS(1432), + [anon_sym_random_float] = ACTIONS(1432), + [anon_sym_random_integer] = ACTIONS(1432), + [anon_sym_columns] = ACTIONS(1432), + [anon_sym_rows] = ACTIONS(1432), + [anon_sym_reverse] = ACTIONS(1432), }, [224] = { - [sym_block] = STATE(719), - [sym_statement] = STATE(45), - [sym_expression] = STATE(795), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(706), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(611), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(2015), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(325), - [aux_sym_block_repeat1] = STATE(45), - [sym_identifier] = ACTIONS(149), + [sym_expression] = STATE(472), + [sym__expression_kind] = STATE(468), + [aux_sym__expression_list] = STATE(234), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [ts_builtin_sym_end] = ACTIONS(1329), + [sym_identifier] = ACTIONS(1444), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(311), - [anon_sym_match] = ACTIONS(913), - [anon_sym_EQ_GT] = ACTIONS(915), - [anon_sym_while] = ACTIONS(917), - [anon_sym_for] = ACTIONS(919), - [anon_sym_asyncfor] = ACTIONS(921), - [anon_sym_transform] = ACTIONS(923), - [anon_sym_filter] = ACTIONS(925), - [anon_sym_find] = ACTIONS(927), - [anon_sym_remove] = ACTIONS(929), - [anon_sym_reduce] = ACTIONS(931), - [anon_sym_select] = ACTIONS(933), - [anon_sym_insert] = ACTIONS(935), - [anon_sym_async] = ACTIONS(937), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_RBRACE] = ACTIONS(1329), + [anon_sym_SEMI] = ACTIONS(1329), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_RPAREN] = ACTIONS(1329), + [sym_integer] = ACTIONS(11), + [sym_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(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1331), + [anon_sym_STAR] = ACTIONS(1329), + [anon_sym_SLASH] = ACTIONS(1329), + [anon_sym_PERCENT] = ACTIONS(1329), + [anon_sym_EQ_EQ] = ACTIONS(1329), + [anon_sym_BANG_EQ] = ACTIONS(1329), + [anon_sym_AMP_AMP] = ACTIONS(1329), + [anon_sym_PIPE_PIPE] = ACTIONS(1329), + [anon_sym_GT] = ACTIONS(1331), + [anon_sym_LT] = ACTIONS(1331), + [anon_sym_GT_EQ] = ACTIONS(1329), + [anon_sym_LT_EQ] = ACTIONS(1329), + [anon_sym_if] = ACTIONS(1331), + [anon_sym_match] = ACTIONS(1331), + [anon_sym_EQ_GT] = ACTIONS(265), + [anon_sym_while] = ACTIONS(1331), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_asyncfor] = ACTIONS(1329), + [anon_sym_transform] = ACTIONS(1331), + [anon_sym_filter] = ACTIONS(1331), + [anon_sym_find] = ACTIONS(1331), + [anon_sym_remove] = ACTIONS(1331), + [anon_sym_reduce] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1331), + [anon_sym_insert] = ACTIONS(1331), + [anon_sym_async] = ACTIONS(1331), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(939), - [anon_sym_assert] = ACTIONS(941), - [anon_sym_assert_equal] = ACTIONS(941), - [anon_sym_download] = ACTIONS(941), - [anon_sym_help] = ACTIONS(941), - [anon_sym_length] = ACTIONS(941), - [anon_sym_output] = ACTIONS(941), - [anon_sym_output_error] = ACTIONS(941), - [anon_sym_type] = ACTIONS(941), - [anon_sym_append] = ACTIONS(941), - [anon_sym_metadata] = ACTIONS(941), - [anon_sym_move] = ACTIONS(941), - [anon_sym_read] = ACTIONS(941), - [anon_sym_workdir] = ACTIONS(941), - [anon_sym_write] = ACTIONS(941), - [anon_sym_from_json] = ACTIONS(941), - [anon_sym_to_json] = ACTIONS(941), - [anon_sym_to_string] = ACTIONS(941), - [anon_sym_to_float] = ACTIONS(941), - [anon_sym_bash] = ACTIONS(941), - [anon_sym_fish] = ACTIONS(941), - [anon_sym_raw] = ACTIONS(941), - [anon_sym_sh] = ACTIONS(941), - [anon_sym_zsh] = ACTIONS(941), - [anon_sym_random] = ACTIONS(941), - [anon_sym_random_boolean] = ACTIONS(941), - [anon_sym_random_float] = ACTIONS(941), - [anon_sym_random_integer] = ACTIONS(941), - [anon_sym_columns] = ACTIONS(941), - [anon_sym_rows] = ACTIONS(941), - [anon_sym_reverse] = ACTIONS(941), + [anon_sym_table] = ACTIONS(289), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_assert_equal] = ACTIONS(291), + [anon_sym_download] = ACTIONS(291), + [anon_sym_help] = ACTIONS(291), + [anon_sym_length] = ACTIONS(291), + [anon_sym_output] = ACTIONS(291), + [anon_sym_output_error] = ACTIONS(291), + [anon_sym_type] = ACTIONS(291), + [anon_sym_append] = ACTIONS(291), + [anon_sym_metadata] = ACTIONS(291), + [anon_sym_move] = ACTIONS(291), + [anon_sym_read] = ACTIONS(291), + [anon_sym_workdir] = ACTIONS(291), + [anon_sym_write] = ACTIONS(291), + [anon_sym_from_json] = ACTIONS(291), + [anon_sym_to_json] = ACTIONS(291), + [anon_sym_to_string] = ACTIONS(291), + [anon_sym_to_float] = ACTIONS(291), + [anon_sym_bash] = ACTIONS(291), + [anon_sym_fish] = ACTIONS(291), + [anon_sym_raw] = ACTIONS(291), + [anon_sym_sh] = ACTIONS(291), + [anon_sym_zsh] = ACTIONS(291), + [anon_sym_random] = ACTIONS(291), + [anon_sym_random_boolean] = ACTIONS(291), + [anon_sym_random_float] = ACTIONS(291), + [anon_sym_random_integer] = ACTIONS(291), + [anon_sym_columns] = ACTIONS(291), + [anon_sym_rows] = ACTIONS(291), + [anon_sym_reverse] = ACTIONS(291), }, [225] = { - [sym_block] = STATE(729), - [sym_statement] = STATE(17), - [sym_expression] = STATE(601), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(706), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(557), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1910), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(284), - [aux_sym_block_repeat1] = STATE(17), - [sym_identifier] = ACTIONS(149), + [sym_statement] = STATE(229), + [sym_expression] = STATE(547), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(571), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [aux_sym_block_repeat1] = STATE(229), + [sym_identifier] = ACTIONS(1649), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(81), - [anon_sym_match] = ACTIONS(165), - [anon_sym_EQ_GT] = ACTIONS(167), - [anon_sym_while] = ACTIONS(169), - [anon_sym_for] = ACTIONS(171), - [anon_sym_asyncfor] = ACTIONS(173), - [anon_sym_transform] = ACTIONS(175), - [anon_sym_filter] = ACTIONS(177), - [anon_sym_find] = ACTIONS(179), - [anon_sym_remove] = ACTIONS(181), - [anon_sym_reduce] = ACTIONS(183), - [anon_sym_select] = ACTIONS(185), - [anon_sym_insert] = ACTIONS(187), - [anon_sym_async] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(191), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_assert_equal] = ACTIONS(193), - [anon_sym_download] = ACTIONS(193), - [anon_sym_help] = ACTIONS(193), - [anon_sym_length] = ACTIONS(193), - [anon_sym_output] = ACTIONS(193), - [anon_sym_output_error] = ACTIONS(193), - [anon_sym_type] = ACTIONS(193), - [anon_sym_append] = ACTIONS(193), - [anon_sym_metadata] = ACTIONS(193), - [anon_sym_move] = ACTIONS(193), - [anon_sym_read] = ACTIONS(193), - [anon_sym_workdir] = ACTIONS(193), - [anon_sym_write] = ACTIONS(193), - [anon_sym_from_json] = ACTIONS(193), - [anon_sym_to_json] = ACTIONS(193), - [anon_sym_to_string] = ACTIONS(193), - [anon_sym_to_float] = ACTIONS(193), - [anon_sym_bash] = ACTIONS(193), - [anon_sym_fish] = ACTIONS(193), - [anon_sym_raw] = ACTIONS(193), - [anon_sym_sh] = ACTIONS(193), - [anon_sym_zsh] = ACTIONS(193), - [anon_sym_random] = ACTIONS(193), - [anon_sym_random_boolean] = ACTIONS(193), - [anon_sym_random_float] = ACTIONS(193), - [anon_sym_random_integer] = ACTIONS(193), - [anon_sym_columns] = ACTIONS(193), - [anon_sym_rows] = ACTIONS(193), - [anon_sym_reverse] = ACTIONS(193), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(293), + [anon_sym_SEMI] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(741), + [anon_sym_COMMA] = ACTIONS(293), + [sym_integer] = ACTIONS(744), + [sym_float] = ACTIONS(747), + [sym_string] = ACTIONS(747), + [anon_sym_true] = ACTIONS(750), + [anon_sym_false] = ACTIONS(750), + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_if] = ACTIONS(1611), + [anon_sym_match] = ACTIONS(1652), + [anon_sym_EQ_GT] = ACTIONS(971), + [anon_sym_while] = ACTIONS(1655), + [anon_sym_for] = ACTIONS(1658), + [anon_sym_asyncfor] = ACTIONS(1661), + [anon_sym_transform] = ACTIONS(1664), + [anon_sym_filter] = ACTIONS(1667), + [anon_sym_find] = ACTIONS(1670), + [anon_sym_remove] = ACTIONS(1673), + [anon_sym_reduce] = ACTIONS(1676), + [anon_sym_select] = ACTIONS(1679), + [anon_sym_insert] = ACTIONS(1001), + [anon_sym_async] = ACTIONS(1682), + [anon_sym_PIPE] = ACTIONS(1515), + [anon_sym_table] = ACTIONS(1007), + [anon_sym_assert] = ACTIONS(1010), + [anon_sym_assert_equal] = ACTIONS(1010), + [anon_sym_download] = ACTIONS(1010), + [anon_sym_help] = ACTIONS(1010), + [anon_sym_length] = ACTIONS(1010), + [anon_sym_output] = ACTIONS(1010), + [anon_sym_output_error] = ACTIONS(1010), + [anon_sym_type] = ACTIONS(1010), + [anon_sym_append] = ACTIONS(1010), + [anon_sym_metadata] = ACTIONS(1010), + [anon_sym_move] = ACTIONS(1010), + [anon_sym_read] = ACTIONS(1010), + [anon_sym_workdir] = ACTIONS(1010), + [anon_sym_write] = ACTIONS(1010), + [anon_sym_from_json] = ACTIONS(1010), + [anon_sym_to_json] = ACTIONS(1010), + [anon_sym_to_string] = ACTIONS(1010), + [anon_sym_to_float] = ACTIONS(1010), + [anon_sym_bash] = ACTIONS(1010), + [anon_sym_fish] = ACTIONS(1010), + [anon_sym_raw] = ACTIONS(1010), + [anon_sym_sh] = ACTIONS(1010), + [anon_sym_zsh] = ACTIONS(1010), + [anon_sym_random] = ACTIONS(1010), + [anon_sym_random_boolean] = ACTIONS(1010), + [anon_sym_random_float] = ACTIONS(1010), + [anon_sym_random_integer] = ACTIONS(1010), + [anon_sym_columns] = ACTIONS(1010), + [anon_sym_rows] = ACTIONS(1010), + [anon_sym_reverse] = ACTIONS(1010), }, [226] = { - [sym_block] = STATE(880), - [sym_statement] = STATE(39), - [sym_expression] = STATE(756), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(657), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(627), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1752), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(338), - [aux_sym_block_repeat1] = STATE(39), - [sym_identifier] = ACTIONS(875), + [sym_statement] = STATE(228), + [sym_expression] = STATE(535), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(561), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [aux_sym_block_repeat1] = STATE(228), + [ts_builtin_sym_end] = ACTIONS(293), + [sym_identifier] = ACTIONS(1685), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(877), - [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(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(245), - [anon_sym_match] = ACTIONS(881), - [anon_sym_EQ_GT] = ACTIONS(883), - [anon_sym_while] = ACTIONS(885), - [anon_sym_for] = ACTIONS(887), - [anon_sym_asyncfor] = ACTIONS(889), - [anon_sym_transform] = ACTIONS(891), - [anon_sym_filter] = ACTIONS(893), - [anon_sym_find] = ACTIONS(895), - [anon_sym_remove] = ACTIONS(897), - [anon_sym_reduce] = ACTIONS(899), - [anon_sym_select] = ACTIONS(901), - [anon_sym_insert] = ACTIONS(903), - [anon_sym_async] = ACTIONS(905), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(907), - [anon_sym_assert] = ACTIONS(909), - [anon_sym_assert_equal] = ACTIONS(909), - [anon_sym_download] = ACTIONS(909), - [anon_sym_help] = ACTIONS(909), - [anon_sym_length] = ACTIONS(909), - [anon_sym_output] = ACTIONS(909), - [anon_sym_output_error] = ACTIONS(909), - [anon_sym_type] = ACTIONS(909), - [anon_sym_append] = ACTIONS(909), - [anon_sym_metadata] = ACTIONS(909), - [anon_sym_move] = ACTIONS(909), - [anon_sym_read] = ACTIONS(909), - [anon_sym_workdir] = ACTIONS(909), - [anon_sym_write] = ACTIONS(909), - [anon_sym_from_json] = ACTIONS(909), - [anon_sym_to_json] = ACTIONS(909), - [anon_sym_to_string] = ACTIONS(909), - [anon_sym_to_float] = ACTIONS(909), - [anon_sym_bash] = ACTIONS(909), - [anon_sym_fish] = ACTIONS(909), - [anon_sym_raw] = ACTIONS(909), - [anon_sym_sh] = ACTIONS(909), - [anon_sym_zsh] = ACTIONS(909), - [anon_sym_random] = ACTIONS(909), - [anon_sym_random_boolean] = ACTIONS(909), - [anon_sym_random_float] = ACTIONS(909), - [anon_sym_random_integer] = ACTIONS(909), - [anon_sym_columns] = ACTIONS(909), - [anon_sym_rows] = ACTIONS(909), - [anon_sym_reverse] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(293), + [anon_sym_SEMI] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(741), + [sym_integer] = ACTIONS(744), + [sym_float] = ACTIONS(747), + [sym_string] = ACTIONS(747), + [anon_sym_true] = ACTIONS(750), + [anon_sym_false] = ACTIONS(750), + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_match] = ACTIONS(1688), + [anon_sym_EQ_GT] = ACTIONS(1267), + [anon_sym_while] = ACTIONS(1691), + [anon_sym_for] = ACTIONS(1694), + [anon_sym_asyncfor] = ACTIONS(1697), + [anon_sym_transform] = ACTIONS(1700), + [anon_sym_filter] = ACTIONS(1703), + [anon_sym_find] = ACTIONS(1706), + [anon_sym_remove] = ACTIONS(1709), + [anon_sym_reduce] = ACTIONS(1712), + [anon_sym_select] = ACTIONS(1715), + [anon_sym_insert] = ACTIONS(1297), + [anon_sym_async] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1515), + [anon_sym_table] = ACTIONS(1303), + [anon_sym_assert] = ACTIONS(1306), + [anon_sym_assert_equal] = ACTIONS(1306), + [anon_sym_download] = ACTIONS(1306), + [anon_sym_help] = ACTIONS(1306), + [anon_sym_length] = ACTIONS(1306), + [anon_sym_output] = ACTIONS(1306), + [anon_sym_output_error] = ACTIONS(1306), + [anon_sym_type] = ACTIONS(1306), + [anon_sym_append] = ACTIONS(1306), + [anon_sym_metadata] = ACTIONS(1306), + [anon_sym_move] = ACTIONS(1306), + [anon_sym_read] = ACTIONS(1306), + [anon_sym_workdir] = ACTIONS(1306), + [anon_sym_write] = ACTIONS(1306), + [anon_sym_from_json] = ACTIONS(1306), + [anon_sym_to_json] = ACTIONS(1306), + [anon_sym_to_string] = ACTIONS(1306), + [anon_sym_to_float] = ACTIONS(1306), + [anon_sym_bash] = ACTIONS(1306), + [anon_sym_fish] = ACTIONS(1306), + [anon_sym_raw] = ACTIONS(1306), + [anon_sym_sh] = ACTIONS(1306), + [anon_sym_zsh] = ACTIONS(1306), + [anon_sym_random] = ACTIONS(1306), + [anon_sym_random_boolean] = ACTIONS(1306), + [anon_sym_random_float] = ACTIONS(1306), + [anon_sym_random_integer] = ACTIONS(1306), + [anon_sym_columns] = ACTIONS(1306), + [anon_sym_rows] = ACTIONS(1306), + [anon_sym_reverse] = ACTIONS(1306), }, [227] = { - [sym_block] = STATE(728), - [sym_statement] = STATE(45), - [sym_expression] = STATE(795), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(706), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(611), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(2015), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(325), - [aux_sym_block_repeat1] = STATE(45), - [sym_identifier] = ACTIONS(149), + [sym_statement] = STATE(229), + [sym_expression] = STATE(547), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(571), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [aux_sym_block_repeat1] = STATE(229), + [sym_identifier] = ACTIONS(1649), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(311), - [anon_sym_match] = ACTIONS(913), - [anon_sym_EQ_GT] = ACTIONS(915), - [anon_sym_while] = ACTIONS(917), - [anon_sym_for] = ACTIONS(919), - [anon_sym_asyncfor] = ACTIONS(921), - [anon_sym_transform] = ACTIONS(923), - [anon_sym_filter] = ACTIONS(925), - [anon_sym_find] = ACTIONS(927), - [anon_sym_remove] = ACTIONS(929), - [anon_sym_reduce] = ACTIONS(931), - [anon_sym_select] = ACTIONS(933), - [anon_sym_insert] = ACTIONS(935), - [anon_sym_async] = ACTIONS(937), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(939), - [anon_sym_assert] = ACTIONS(941), - [anon_sym_assert_equal] = ACTIONS(941), - [anon_sym_download] = ACTIONS(941), - [anon_sym_help] = ACTIONS(941), - [anon_sym_length] = ACTIONS(941), - [anon_sym_output] = ACTIONS(941), - [anon_sym_output_error] = ACTIONS(941), - [anon_sym_type] = ACTIONS(941), - [anon_sym_append] = ACTIONS(941), - [anon_sym_metadata] = ACTIONS(941), - [anon_sym_move] = ACTIONS(941), - [anon_sym_read] = ACTIONS(941), - [anon_sym_workdir] = ACTIONS(941), - [anon_sym_write] = ACTIONS(941), - [anon_sym_from_json] = ACTIONS(941), - [anon_sym_to_json] = ACTIONS(941), - [anon_sym_to_string] = ACTIONS(941), - [anon_sym_to_float] = ACTIONS(941), - [anon_sym_bash] = ACTIONS(941), - [anon_sym_fish] = ACTIONS(941), - [anon_sym_raw] = ACTIONS(941), - [anon_sym_sh] = ACTIONS(941), - [anon_sym_zsh] = ACTIONS(941), - [anon_sym_random] = ACTIONS(941), - [anon_sym_random_boolean] = ACTIONS(941), - [anon_sym_random_float] = ACTIONS(941), - [anon_sym_random_integer] = ACTIONS(941), - [anon_sym_columns] = ACTIONS(941), - [anon_sym_rows] = ACTIONS(941), - [anon_sym_reverse] = ACTIONS(941), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(293), + [anon_sym_SEMI] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(741), + [anon_sym_COMMA] = ACTIONS(293), + [sym_integer] = ACTIONS(744), + [sym_float] = ACTIONS(747), + [sym_string] = ACTIONS(747), + [anon_sym_true] = ACTIONS(750), + [anon_sym_false] = ACTIONS(750), + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_if] = ACTIONS(449), + [anon_sym_match] = ACTIONS(943), + [anon_sym_EQ_GT] = ACTIONS(971), + [anon_sym_while] = ACTIONS(945), + [anon_sym_for] = ACTIONS(947), + [anon_sym_asyncfor] = ACTIONS(949), + [anon_sym_transform] = ACTIONS(951), + [anon_sym_filter] = ACTIONS(953), + [anon_sym_find] = ACTIONS(955), + [anon_sym_remove] = ACTIONS(957), + [anon_sym_reduce] = ACTIONS(959), + [anon_sym_select] = ACTIONS(961), + [anon_sym_insert] = ACTIONS(285), + [anon_sym_async] = ACTIONS(963), + [anon_sym_PIPE] = ACTIONS(1515), + [anon_sym_table] = ACTIONS(1007), + [anon_sym_assert] = ACTIONS(1010), + [anon_sym_assert_equal] = ACTIONS(1010), + [anon_sym_download] = ACTIONS(1010), + [anon_sym_help] = ACTIONS(1010), + [anon_sym_length] = ACTIONS(1010), + [anon_sym_output] = ACTIONS(1010), + [anon_sym_output_error] = ACTIONS(1010), + [anon_sym_type] = ACTIONS(1010), + [anon_sym_append] = ACTIONS(1010), + [anon_sym_metadata] = ACTIONS(1010), + [anon_sym_move] = ACTIONS(1010), + [anon_sym_read] = ACTIONS(1010), + [anon_sym_workdir] = ACTIONS(1010), + [anon_sym_write] = ACTIONS(1010), + [anon_sym_from_json] = ACTIONS(1010), + [anon_sym_to_json] = ACTIONS(1010), + [anon_sym_to_string] = ACTIONS(1010), + [anon_sym_to_float] = ACTIONS(1010), + [anon_sym_bash] = ACTIONS(1010), + [anon_sym_fish] = ACTIONS(1010), + [anon_sym_raw] = ACTIONS(1010), + [anon_sym_sh] = ACTIONS(1010), + [anon_sym_zsh] = ACTIONS(1010), + [anon_sym_random] = ACTIONS(1010), + [anon_sym_random_boolean] = ACTIONS(1010), + [anon_sym_random_float] = ACTIONS(1010), + [anon_sym_random_integer] = ACTIONS(1010), + [anon_sym_columns] = ACTIONS(1010), + [anon_sym_rows] = ACTIONS(1010), + [anon_sym_reverse] = ACTIONS(1010), }, [228] = { - [sym_block] = STATE(729), - [sym_statement] = STATE(45), - [sym_expression] = STATE(795), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(706), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(611), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(2015), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(325), - [aux_sym_block_repeat1] = STATE(45), - [sym_identifier] = ACTIONS(149), + [sym_statement] = STATE(228), + [sym_expression] = STATE(535), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(561), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [aux_sym_block_repeat1] = STATE(228), + [ts_builtin_sym_end] = ACTIONS(369), + [sym_identifier] = ACTIONS(1721), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(311), - [anon_sym_match] = ACTIONS(913), - [anon_sym_EQ_GT] = ACTIONS(915), - [anon_sym_while] = ACTIONS(917), - [anon_sym_for] = ACTIONS(919), - [anon_sym_asyncfor] = ACTIONS(921), - [anon_sym_transform] = ACTIONS(923), - [anon_sym_filter] = ACTIONS(925), - [anon_sym_find] = ACTIONS(927), - [anon_sym_remove] = ACTIONS(929), - [anon_sym_reduce] = ACTIONS(931), - [anon_sym_select] = ACTIONS(933), - [anon_sym_insert] = ACTIONS(935), - [anon_sym_async] = ACTIONS(937), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(939), - [anon_sym_assert] = ACTIONS(941), - [anon_sym_assert_equal] = ACTIONS(941), - [anon_sym_download] = ACTIONS(941), - [anon_sym_help] = ACTIONS(941), - [anon_sym_length] = ACTIONS(941), - [anon_sym_output] = ACTIONS(941), - [anon_sym_output_error] = ACTIONS(941), - [anon_sym_type] = ACTIONS(941), - [anon_sym_append] = ACTIONS(941), - [anon_sym_metadata] = ACTIONS(941), - [anon_sym_move] = ACTIONS(941), - [anon_sym_read] = ACTIONS(941), - [anon_sym_workdir] = ACTIONS(941), - [anon_sym_write] = ACTIONS(941), - [anon_sym_from_json] = ACTIONS(941), - [anon_sym_to_json] = ACTIONS(941), - [anon_sym_to_string] = ACTIONS(941), - [anon_sym_to_float] = ACTIONS(941), - [anon_sym_bash] = ACTIONS(941), - [anon_sym_fish] = ACTIONS(941), - [anon_sym_raw] = ACTIONS(941), - [anon_sym_sh] = ACTIONS(941), - [anon_sym_zsh] = ACTIONS(941), - [anon_sym_random] = ACTIONS(941), - [anon_sym_random_boolean] = ACTIONS(941), - [anon_sym_random_float] = ACTIONS(941), - [anon_sym_random_integer] = ACTIONS(941), - [anon_sym_columns] = ACTIONS(941), - [anon_sym_rows] = ACTIONS(941), - [anon_sym_reverse] = ACTIONS(941), + [anon_sym_LBRACE] = ACTIONS(804), + [anon_sym_RBRACE] = ACTIONS(369), + [anon_sym_SEMI] = ACTIONS(369), + [anon_sym_LPAREN] = ACTIONS(807), + [sym_integer] = ACTIONS(810), + [sym_float] = ACTIONS(813), + [sym_string] = ACTIONS(813), + [anon_sym_true] = ACTIONS(816), + [anon_sym_false] = ACTIONS(816), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_if] = ACTIONS(1521), + [anon_sym_match] = ACTIONS(1724), + [anon_sym_EQ_GT] = ACTIONS(1219), + [anon_sym_while] = ACTIONS(1727), + [anon_sym_for] = ACTIONS(1730), + [anon_sym_asyncfor] = ACTIONS(1733), + [anon_sym_transform] = ACTIONS(1736), + [anon_sym_filter] = ACTIONS(1739), + [anon_sym_find] = ACTIONS(1742), + [anon_sym_remove] = ACTIONS(1745), + [anon_sym_reduce] = ACTIONS(1748), + [anon_sym_select] = ACTIONS(1751), + [anon_sym_insert] = ACTIONS(1249), + [anon_sym_async] = ACTIONS(1754), + [anon_sym_PIPE] = ACTIONS(1557), + [anon_sym_table] = ACTIONS(1255), + [anon_sym_assert] = ACTIONS(1258), + [anon_sym_assert_equal] = ACTIONS(1258), + [anon_sym_download] = ACTIONS(1258), + [anon_sym_help] = ACTIONS(1258), + [anon_sym_length] = ACTIONS(1258), + [anon_sym_output] = ACTIONS(1258), + [anon_sym_output_error] = ACTIONS(1258), + [anon_sym_type] = ACTIONS(1258), + [anon_sym_append] = ACTIONS(1258), + [anon_sym_metadata] = ACTIONS(1258), + [anon_sym_move] = ACTIONS(1258), + [anon_sym_read] = ACTIONS(1258), + [anon_sym_workdir] = ACTIONS(1258), + [anon_sym_write] = ACTIONS(1258), + [anon_sym_from_json] = ACTIONS(1258), + [anon_sym_to_json] = ACTIONS(1258), + [anon_sym_to_string] = ACTIONS(1258), + [anon_sym_to_float] = ACTIONS(1258), + [anon_sym_bash] = ACTIONS(1258), + [anon_sym_fish] = ACTIONS(1258), + [anon_sym_raw] = ACTIONS(1258), + [anon_sym_sh] = ACTIONS(1258), + [anon_sym_zsh] = ACTIONS(1258), + [anon_sym_random] = ACTIONS(1258), + [anon_sym_random_boolean] = ACTIONS(1258), + [anon_sym_random_float] = ACTIONS(1258), + [anon_sym_random_integer] = ACTIONS(1258), + [anon_sym_columns] = ACTIONS(1258), + [anon_sym_rows] = ACTIONS(1258), + [anon_sym_reverse] = ACTIONS(1258), }, [229] = { - [sym_block] = STATE(873), - [sym_statement] = STATE(57), - [sym_expression] = STATE(853), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(776), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(710), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1823), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(366), - [aux_sym_block_repeat1] = STATE(57), - [sym_identifier] = ACTIONS(1436), + [sym_statement] = STATE(229), + [sym_expression] = STATE(547), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(571), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [aux_sym_block_repeat1] = STATE(229), + [sym_identifier] = ACTIONS(1757), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(877), - [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(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(843), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_EQ_GT] = ACTIONS(1442), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_for] = ACTIONS(1446), - [anon_sym_asyncfor] = ACTIONS(1448), - [anon_sym_transform] = ACTIONS(1450), - [anon_sym_filter] = ACTIONS(1452), - [anon_sym_find] = ACTIONS(1454), - [anon_sym_remove] = ACTIONS(1456), - [anon_sym_reduce] = ACTIONS(1458), - [anon_sym_select] = ACTIONS(1460), - [anon_sym_insert] = ACTIONS(1462), - [anon_sym_async] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1466), - [anon_sym_assert] = ACTIONS(1468), - [anon_sym_assert_equal] = ACTIONS(1468), - [anon_sym_download] = ACTIONS(1468), - [anon_sym_help] = ACTIONS(1468), - [anon_sym_length] = ACTIONS(1468), - [anon_sym_output] = ACTIONS(1468), - [anon_sym_output_error] = ACTIONS(1468), - [anon_sym_type] = ACTIONS(1468), - [anon_sym_append] = ACTIONS(1468), - [anon_sym_metadata] = ACTIONS(1468), - [anon_sym_move] = ACTIONS(1468), - [anon_sym_read] = ACTIONS(1468), - [anon_sym_workdir] = ACTIONS(1468), - [anon_sym_write] = ACTIONS(1468), - [anon_sym_from_json] = ACTIONS(1468), - [anon_sym_to_json] = ACTIONS(1468), - [anon_sym_to_string] = ACTIONS(1468), - [anon_sym_to_float] = ACTIONS(1468), - [anon_sym_bash] = ACTIONS(1468), - [anon_sym_fish] = ACTIONS(1468), - [anon_sym_raw] = ACTIONS(1468), - [anon_sym_sh] = ACTIONS(1468), - [anon_sym_zsh] = ACTIONS(1468), - [anon_sym_random] = ACTIONS(1468), - [anon_sym_random_boolean] = ACTIONS(1468), - [anon_sym_random_float] = ACTIONS(1468), - [anon_sym_random_integer] = ACTIONS(1468), - [anon_sym_columns] = ACTIONS(1468), - [anon_sym_rows] = ACTIONS(1468), - [anon_sym_reverse] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(804), + [anon_sym_RBRACE] = ACTIONS(369), + [anon_sym_SEMI] = ACTIONS(369), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_COMMA] = ACTIONS(369), + [sym_integer] = ACTIONS(810), + [sym_float] = ACTIONS(813), + [sym_string] = ACTIONS(813), + [anon_sym_true] = ACTIONS(816), + [anon_sym_false] = ACTIONS(816), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_if] = ACTIONS(1572), + [anon_sym_match] = ACTIONS(1760), + [anon_sym_EQ_GT] = ACTIONS(899), + [anon_sym_while] = ACTIONS(1763), + [anon_sym_for] = ACTIONS(1766), + [anon_sym_asyncfor] = ACTIONS(1769), + [anon_sym_transform] = ACTIONS(1772), + [anon_sym_filter] = ACTIONS(1775), + [anon_sym_find] = ACTIONS(1778), + [anon_sym_remove] = ACTIONS(1781), + [anon_sym_reduce] = ACTIONS(1784), + [anon_sym_select] = ACTIONS(1787), + [anon_sym_insert] = ACTIONS(929), + [anon_sym_async] = ACTIONS(1790), + [anon_sym_PIPE] = ACTIONS(1557), + [anon_sym_table] = ACTIONS(935), + [anon_sym_assert] = ACTIONS(938), + [anon_sym_assert_equal] = ACTIONS(938), + [anon_sym_download] = ACTIONS(938), + [anon_sym_help] = ACTIONS(938), + [anon_sym_length] = ACTIONS(938), + [anon_sym_output] = ACTIONS(938), + [anon_sym_output_error] = ACTIONS(938), + [anon_sym_type] = ACTIONS(938), + [anon_sym_append] = ACTIONS(938), + [anon_sym_metadata] = ACTIONS(938), + [anon_sym_move] = ACTIONS(938), + [anon_sym_read] = ACTIONS(938), + [anon_sym_workdir] = ACTIONS(938), + [anon_sym_write] = ACTIONS(938), + [anon_sym_from_json] = ACTIONS(938), + [anon_sym_to_json] = ACTIONS(938), + [anon_sym_to_string] = ACTIONS(938), + [anon_sym_to_float] = ACTIONS(938), + [anon_sym_bash] = ACTIONS(938), + [anon_sym_fish] = ACTIONS(938), + [anon_sym_raw] = ACTIONS(938), + [anon_sym_sh] = ACTIONS(938), + [anon_sym_zsh] = ACTIONS(938), + [anon_sym_random] = ACTIONS(938), + [anon_sym_random_boolean] = ACTIONS(938), + [anon_sym_random_float] = ACTIONS(938), + [anon_sym_random_integer] = ACTIONS(938), + [anon_sym_columns] = ACTIONS(938), + [anon_sym_rows] = ACTIONS(938), + [anon_sym_reverse] = ACTIONS(938), }, [230] = { - [sym_block] = STATE(719), - [sym_statement] = STATE(24), - [sym_expression] = STATE(683), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(706), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(573), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1813), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(311), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(149), + [sym_block] = STATE(230), + [sym_statement] = STATE(226), + [sym_expression] = STATE(535), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(561), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [aux_sym_root_repeat1] = STATE(230), + [aux_sym_block_repeat1] = STATE(226), + [ts_builtin_sym_end] = ACTIONS(1793), + [sym_identifier] = ACTIONS(1795), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(117), - [anon_sym_match] = ACTIONS(279), - [anon_sym_EQ_GT] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_for] = ACTIONS(285), - [anon_sym_asyncfor] = ACTIONS(287), - [anon_sym_transform] = ACTIONS(289), - [anon_sym_filter] = ACTIONS(291), - [anon_sym_find] = ACTIONS(293), - [anon_sym_remove] = ACTIONS(295), - [anon_sym_reduce] = ACTIONS(297), - [anon_sym_select] = ACTIONS(299), - [anon_sym_insert] = ACTIONS(301), - [anon_sym_async] = ACTIONS(303), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(305), - [anon_sym_assert] = ACTIONS(307), - [anon_sym_assert_equal] = ACTIONS(307), - [anon_sym_download] = ACTIONS(307), - [anon_sym_help] = ACTIONS(307), - [anon_sym_length] = ACTIONS(307), - [anon_sym_output] = ACTIONS(307), - [anon_sym_output_error] = ACTIONS(307), - [anon_sym_type] = ACTIONS(307), - [anon_sym_append] = ACTIONS(307), - [anon_sym_metadata] = ACTIONS(307), - [anon_sym_move] = ACTIONS(307), - [anon_sym_read] = ACTIONS(307), - [anon_sym_workdir] = ACTIONS(307), - [anon_sym_write] = ACTIONS(307), - [anon_sym_from_json] = ACTIONS(307), - [anon_sym_to_json] = ACTIONS(307), - [anon_sym_to_string] = ACTIONS(307), - [anon_sym_to_float] = ACTIONS(307), - [anon_sym_bash] = ACTIONS(307), - [anon_sym_fish] = ACTIONS(307), - [anon_sym_raw] = ACTIONS(307), - [anon_sym_sh] = ACTIONS(307), - [anon_sym_zsh] = ACTIONS(307), - [anon_sym_random] = ACTIONS(307), - [anon_sym_random_boolean] = ACTIONS(307), - [anon_sym_random_float] = ACTIONS(307), - [anon_sym_random_integer] = ACTIONS(307), - [anon_sym_columns] = ACTIONS(307), - [anon_sym_rows] = ACTIONS(307), - [anon_sym_reverse] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1801), + [sym_integer] = ACTIONS(1804), + [sym_float] = ACTIONS(1807), + [sym_string] = ACTIONS(1807), + [anon_sym_true] = ACTIONS(1810), + [anon_sym_false] = ACTIONS(1810), + [anon_sym_LBRACK] = ACTIONS(1813), + [anon_sym_if] = ACTIONS(1816), + [anon_sym_match] = ACTIONS(1819), + [anon_sym_EQ_GT] = ACTIONS(1822), + [anon_sym_while] = ACTIONS(1825), + [anon_sym_for] = ACTIONS(1828), + [anon_sym_asyncfor] = ACTIONS(1831), + [anon_sym_transform] = ACTIONS(1834), + [anon_sym_filter] = ACTIONS(1837), + [anon_sym_find] = ACTIONS(1840), + [anon_sym_remove] = ACTIONS(1843), + [anon_sym_reduce] = ACTIONS(1846), + [anon_sym_select] = ACTIONS(1849), + [anon_sym_insert] = ACTIONS(1852), + [anon_sym_async] = ACTIONS(1855), + [anon_sym_PIPE] = ACTIONS(1858), + [anon_sym_table] = ACTIONS(1861), + [anon_sym_assert] = ACTIONS(1864), + [anon_sym_assert_equal] = ACTIONS(1864), + [anon_sym_download] = ACTIONS(1864), + [anon_sym_help] = ACTIONS(1864), + [anon_sym_length] = ACTIONS(1864), + [anon_sym_output] = ACTIONS(1864), + [anon_sym_output_error] = ACTIONS(1864), + [anon_sym_type] = ACTIONS(1864), + [anon_sym_append] = ACTIONS(1864), + [anon_sym_metadata] = ACTIONS(1864), + [anon_sym_move] = ACTIONS(1864), + [anon_sym_read] = ACTIONS(1864), + [anon_sym_workdir] = ACTIONS(1864), + [anon_sym_write] = ACTIONS(1864), + [anon_sym_from_json] = ACTIONS(1864), + [anon_sym_to_json] = ACTIONS(1864), + [anon_sym_to_string] = ACTIONS(1864), + [anon_sym_to_float] = ACTIONS(1864), + [anon_sym_bash] = ACTIONS(1864), + [anon_sym_fish] = ACTIONS(1864), + [anon_sym_raw] = ACTIONS(1864), + [anon_sym_sh] = ACTIONS(1864), + [anon_sym_zsh] = ACTIONS(1864), + [anon_sym_random] = ACTIONS(1864), + [anon_sym_random_boolean] = ACTIONS(1864), + [anon_sym_random_float] = ACTIONS(1864), + [anon_sym_random_integer] = ACTIONS(1864), + [anon_sym_columns] = ACTIONS(1864), + [anon_sym_rows] = ACTIONS(1864), + [anon_sym_reverse] = ACTIONS(1864), }, [231] = { - [sym_block] = STATE(731), - [sym_statement] = STATE(45), - [sym_expression] = STATE(795), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(706), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(611), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(2015), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(325), - [aux_sym_block_repeat1] = STATE(45), - [sym_identifier] = ACTIONS(149), + [sym_block] = STATE(230), + [sym_statement] = STATE(226), + [sym_expression] = STATE(535), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(561), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [aux_sym_root_repeat1] = STATE(230), + [aux_sym_block_repeat1] = STATE(226), + [ts_builtin_sym_end] = ACTIONS(1867), + [sym_identifier] = ACTIONS(5), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(311), - [anon_sym_match] = ACTIONS(913), - [anon_sym_EQ_GT] = ACTIONS(915), - [anon_sym_while] = ACTIONS(917), - [anon_sym_for] = ACTIONS(919), - [anon_sym_asyncfor] = ACTIONS(921), - [anon_sym_transform] = ACTIONS(923), - [anon_sym_filter] = ACTIONS(925), - [anon_sym_find] = ACTIONS(927), - [anon_sym_remove] = ACTIONS(929), - [anon_sym_reduce] = ACTIONS(931), - [anon_sym_select] = ACTIONS(933), - [anon_sym_insert] = ACTIONS(935), - [anon_sym_async] = ACTIONS(937), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(939), - [anon_sym_assert] = ACTIONS(941), - [anon_sym_assert_equal] = ACTIONS(941), - [anon_sym_download] = ACTIONS(941), - [anon_sym_help] = ACTIONS(941), - [anon_sym_length] = ACTIONS(941), - [anon_sym_output] = ACTIONS(941), - [anon_sym_output_error] = ACTIONS(941), - [anon_sym_type] = ACTIONS(941), - [anon_sym_append] = ACTIONS(941), - [anon_sym_metadata] = ACTIONS(941), - [anon_sym_move] = ACTIONS(941), - [anon_sym_read] = ACTIONS(941), - [anon_sym_workdir] = ACTIONS(941), - [anon_sym_write] = ACTIONS(941), - [anon_sym_from_json] = ACTIONS(941), - [anon_sym_to_json] = ACTIONS(941), - [anon_sym_to_string] = ACTIONS(941), - [anon_sym_to_float] = ACTIONS(941), - [anon_sym_bash] = ACTIONS(941), - [anon_sym_fish] = ACTIONS(941), - [anon_sym_raw] = ACTIONS(941), - [anon_sym_sh] = ACTIONS(941), - [anon_sym_zsh] = ACTIONS(941), - [anon_sym_random] = ACTIONS(941), - [anon_sym_random_boolean] = ACTIONS(941), - [anon_sym_random_float] = ACTIONS(941), - [anon_sym_random_integer] = ACTIONS(941), - [anon_sym_columns] = ACTIONS(941), - [anon_sym_rows] = ACTIONS(941), - [anon_sym_reverse] = ACTIONS(941), + [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_asyncfor] = 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_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [232] = { - [sym_block] = STATE(873), - [sym_statement] = STATE(39), - [sym_expression] = STATE(756), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(657), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(627), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1752), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(338), - [aux_sym_block_repeat1] = STATE(39), - [sym_identifier] = ACTIONS(875), + [sym_expression] = STATE(981), + [sym__expression_kind] = STATE(919), + [sym_value] = STATE(919), + [sym_boolean] = STATE(936), + [sym_list] = STATE(936), + [sym_map] = STATE(936), + [sym_index] = STATE(919), + [sym_math] = STATE(919), + [sym_logic] = STATE(919), + [sym_identifier_list] = STATE(1086), + [sym_table] = STATE(936), + [sym_function] = STATE(936), + [sym_function_call] = STATE(919), + [sym__context_defined_function] = STATE(934), + [sym_built_in_function] = STATE(934), + [sym__built_in_function_name] = STATE(550), + [aux_sym_match_repeat1] = STATE(223), + [ts_builtin_sym_end] = ACTIONS(1337), + [sym_identifier] = ACTIONS(1339), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(877), - [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(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(245), - [anon_sym_match] = ACTIONS(881), - [anon_sym_EQ_GT] = ACTIONS(883), - [anon_sym_while] = ACTIONS(885), - [anon_sym_for] = ACTIONS(887), - [anon_sym_asyncfor] = ACTIONS(889), - [anon_sym_transform] = ACTIONS(891), - [anon_sym_filter] = ACTIONS(893), - [anon_sym_find] = ACTIONS(895), - [anon_sym_remove] = ACTIONS(897), - [anon_sym_reduce] = ACTIONS(899), - [anon_sym_select] = ACTIONS(901), - [anon_sym_insert] = ACTIONS(903), - [anon_sym_async] = ACTIONS(905), + [anon_sym_LBRACE] = ACTIONS(1341), + [anon_sym_RBRACE] = ACTIONS(1337), + [anon_sym_SEMI] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(1343), + [anon_sym_RPAREN] = ACTIONS(1337), + [sym_integer] = ACTIONS(1345), + [sym_float] = ACTIONS(1347), + [sym_string] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1349), + [anon_sym_false] = ACTIONS(1349), + [anon_sym_LBRACK] = ACTIONS(1351), + [anon_sym_COLON] = ACTIONS(1337), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_STAR] = ACTIONS(1337), + [anon_sym_SLASH] = ACTIONS(1337), + [anon_sym_PERCENT] = ACTIONS(1337), + [anon_sym_EQ_EQ] = ACTIONS(1337), + [anon_sym_BANG_EQ] = ACTIONS(1337), + [anon_sym_AMP_AMP] = ACTIONS(1337), + [anon_sym_PIPE_PIPE] = ACTIONS(1337), + [anon_sym_GT] = ACTIONS(1353), + [anon_sym_LT] = ACTIONS(1353), + [anon_sym_GT_EQ] = ACTIONS(1337), + [anon_sym_LT_EQ] = ACTIONS(1337), + [anon_sym_if] = ACTIONS(1353), + [anon_sym_match] = ACTIONS(1353), + [anon_sym_EQ_GT] = ACTIONS(1355), + [anon_sym_while] = ACTIONS(1353), + [anon_sym_for] = ACTIONS(1353), + [anon_sym_asyncfor] = ACTIONS(1337), + [anon_sym_transform] = ACTIONS(1353), + [anon_sym_filter] = ACTIONS(1353), + [anon_sym_find] = ACTIONS(1353), + [anon_sym_remove] = ACTIONS(1353), + [anon_sym_reduce] = ACTIONS(1353), + [anon_sym_select] = ACTIONS(1353), + [anon_sym_insert] = ACTIONS(1353), + [anon_sym_async] = ACTIONS(1353), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(907), - [anon_sym_assert] = ACTIONS(909), - [anon_sym_assert_equal] = ACTIONS(909), - [anon_sym_download] = ACTIONS(909), - [anon_sym_help] = ACTIONS(909), - [anon_sym_length] = ACTIONS(909), - [anon_sym_output] = ACTIONS(909), - [anon_sym_output_error] = ACTIONS(909), - [anon_sym_type] = ACTIONS(909), - [anon_sym_append] = ACTIONS(909), - [anon_sym_metadata] = ACTIONS(909), - [anon_sym_move] = ACTIONS(909), - [anon_sym_read] = ACTIONS(909), - [anon_sym_workdir] = ACTIONS(909), - [anon_sym_write] = ACTIONS(909), - [anon_sym_from_json] = ACTIONS(909), - [anon_sym_to_json] = ACTIONS(909), - [anon_sym_to_string] = ACTIONS(909), - [anon_sym_to_float] = ACTIONS(909), - [anon_sym_bash] = ACTIONS(909), - [anon_sym_fish] = ACTIONS(909), - [anon_sym_raw] = ACTIONS(909), - [anon_sym_sh] = ACTIONS(909), - [anon_sym_zsh] = ACTIONS(909), - [anon_sym_random] = ACTIONS(909), - [anon_sym_random_boolean] = ACTIONS(909), - [anon_sym_random_float] = ACTIONS(909), - [anon_sym_random_integer] = ACTIONS(909), - [anon_sym_columns] = ACTIONS(909), - [anon_sym_rows] = ACTIONS(909), - [anon_sym_reverse] = ACTIONS(909), + [anon_sym_table] = ACTIONS(1357), + [anon_sym_assert] = ACTIONS(1359), + [anon_sym_assert_equal] = ACTIONS(1359), + [anon_sym_download] = ACTIONS(1359), + [anon_sym_help] = ACTIONS(1359), + [anon_sym_length] = ACTIONS(1359), + [anon_sym_output] = ACTIONS(1359), + [anon_sym_output_error] = ACTIONS(1359), + [anon_sym_type] = ACTIONS(1359), + [anon_sym_append] = ACTIONS(1359), + [anon_sym_metadata] = ACTIONS(1359), + [anon_sym_move] = ACTIONS(1359), + [anon_sym_read] = ACTIONS(1359), + [anon_sym_workdir] = ACTIONS(1359), + [anon_sym_write] = ACTIONS(1359), + [anon_sym_from_json] = ACTIONS(1359), + [anon_sym_to_json] = ACTIONS(1359), + [anon_sym_to_string] = ACTIONS(1359), + [anon_sym_to_float] = ACTIONS(1359), + [anon_sym_bash] = ACTIONS(1359), + [anon_sym_fish] = ACTIONS(1359), + [anon_sym_raw] = ACTIONS(1359), + [anon_sym_sh] = ACTIONS(1359), + [anon_sym_zsh] = ACTIONS(1359), + [anon_sym_random] = ACTIONS(1359), + [anon_sym_random_boolean] = ACTIONS(1359), + [anon_sym_random_float] = ACTIONS(1359), + [anon_sym_random_integer] = ACTIONS(1359), + [anon_sym_columns] = ACTIONS(1359), + [anon_sym_rows] = ACTIONS(1359), + [anon_sym_reverse] = ACTIONS(1359), }, [233] = { - [sym_block] = STATE(733), - [sym_statement] = STATE(45), - [sym_expression] = STATE(795), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(706), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(611), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(2015), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(325), - [aux_sym_block_repeat1] = STATE(45), - [sym_identifier] = ACTIONS(149), + [sym_expression] = STATE(472), + [sym__expression_kind] = STATE(468), + [aux_sym__expression_list] = STATE(234), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [ts_builtin_sym_end] = ACTIONS(1321), + [sym_identifier] = ACTIONS(1444), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(311), - [anon_sym_match] = ACTIONS(913), - [anon_sym_EQ_GT] = ACTIONS(915), - [anon_sym_while] = ACTIONS(917), - [anon_sym_for] = ACTIONS(919), - [anon_sym_asyncfor] = ACTIONS(921), - [anon_sym_transform] = ACTIONS(923), - [anon_sym_filter] = ACTIONS(925), - [anon_sym_find] = ACTIONS(927), - [anon_sym_remove] = ACTIONS(929), - [anon_sym_reduce] = ACTIONS(931), - [anon_sym_select] = ACTIONS(933), - [anon_sym_insert] = ACTIONS(935), - [anon_sym_async] = ACTIONS(937), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_RBRACE] = ACTIONS(1321), + [anon_sym_SEMI] = ACTIONS(1321), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_RPAREN] = ACTIONS(1321), + [sym_integer] = ACTIONS(11), + [sym_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(1321), + [anon_sym_PLUS] = ACTIONS(1321), + [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_STAR] = ACTIONS(1321), + [anon_sym_SLASH] = ACTIONS(1321), + [anon_sym_PERCENT] = ACTIONS(1321), + [anon_sym_EQ_EQ] = ACTIONS(1321), + [anon_sym_BANG_EQ] = ACTIONS(1321), + [anon_sym_AMP_AMP] = ACTIONS(1321), + [anon_sym_PIPE_PIPE] = ACTIONS(1321), + [anon_sym_GT] = ACTIONS(1327), + [anon_sym_LT] = ACTIONS(1327), + [anon_sym_GT_EQ] = ACTIONS(1321), + [anon_sym_LT_EQ] = ACTIONS(1321), + [anon_sym_if] = ACTIONS(1327), + [anon_sym_match] = ACTIONS(1327), + [anon_sym_EQ_GT] = ACTIONS(265), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_for] = ACTIONS(1327), + [anon_sym_asyncfor] = ACTIONS(1321), + [anon_sym_transform] = ACTIONS(1327), + [anon_sym_filter] = ACTIONS(1327), + [anon_sym_find] = ACTIONS(1327), + [anon_sym_remove] = ACTIONS(1327), + [anon_sym_reduce] = ACTIONS(1327), + [anon_sym_select] = ACTIONS(1327), + [anon_sym_insert] = ACTIONS(1327), + [anon_sym_async] = ACTIONS(1327), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(939), - [anon_sym_assert] = ACTIONS(941), - [anon_sym_assert_equal] = ACTIONS(941), - [anon_sym_download] = ACTIONS(941), - [anon_sym_help] = ACTIONS(941), - [anon_sym_length] = ACTIONS(941), - [anon_sym_output] = ACTIONS(941), - [anon_sym_output_error] = ACTIONS(941), - [anon_sym_type] = ACTIONS(941), - [anon_sym_append] = ACTIONS(941), - [anon_sym_metadata] = ACTIONS(941), - [anon_sym_move] = ACTIONS(941), - [anon_sym_read] = ACTIONS(941), - [anon_sym_workdir] = ACTIONS(941), - [anon_sym_write] = ACTIONS(941), - [anon_sym_from_json] = ACTIONS(941), - [anon_sym_to_json] = ACTIONS(941), - [anon_sym_to_string] = ACTIONS(941), - [anon_sym_to_float] = ACTIONS(941), - [anon_sym_bash] = ACTIONS(941), - [anon_sym_fish] = ACTIONS(941), - [anon_sym_raw] = ACTIONS(941), - [anon_sym_sh] = ACTIONS(941), - [anon_sym_zsh] = ACTIONS(941), - [anon_sym_random] = ACTIONS(941), - [anon_sym_random_boolean] = ACTIONS(941), - [anon_sym_random_float] = ACTIONS(941), - [anon_sym_random_integer] = ACTIONS(941), - [anon_sym_columns] = ACTIONS(941), - [anon_sym_rows] = ACTIONS(941), - [anon_sym_reverse] = ACTIONS(941), + [anon_sym_table] = ACTIONS(289), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_assert_equal] = ACTIONS(291), + [anon_sym_download] = ACTIONS(291), + [anon_sym_help] = ACTIONS(291), + [anon_sym_length] = ACTIONS(291), + [anon_sym_output] = ACTIONS(291), + [anon_sym_output_error] = ACTIONS(291), + [anon_sym_type] = ACTIONS(291), + [anon_sym_append] = ACTIONS(291), + [anon_sym_metadata] = ACTIONS(291), + [anon_sym_move] = ACTIONS(291), + [anon_sym_read] = ACTIONS(291), + [anon_sym_workdir] = ACTIONS(291), + [anon_sym_write] = ACTIONS(291), + [anon_sym_from_json] = ACTIONS(291), + [anon_sym_to_json] = ACTIONS(291), + [anon_sym_to_string] = ACTIONS(291), + [anon_sym_to_float] = ACTIONS(291), + [anon_sym_bash] = ACTIONS(291), + [anon_sym_fish] = ACTIONS(291), + [anon_sym_raw] = ACTIONS(291), + [anon_sym_sh] = ACTIONS(291), + [anon_sym_zsh] = ACTIONS(291), + [anon_sym_random] = ACTIONS(291), + [anon_sym_random_boolean] = ACTIONS(291), + [anon_sym_random_float] = ACTIONS(291), + [anon_sym_random_integer] = ACTIONS(291), + [anon_sym_columns] = ACTIONS(291), + [anon_sym_rows] = ACTIONS(291), + [anon_sym_reverse] = ACTIONS(291), }, [234] = { - [sym_block] = STATE(734), - [sym_statement] = STATE(45), - [sym_expression] = STATE(795), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(706), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(611), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(2015), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(325), - [aux_sym_block_repeat1] = STATE(45), - [sym_identifier] = ACTIONS(149), + [sym_expression] = STATE(472), + [sym__expression_kind] = STATE(468), + [aux_sym__expression_list] = STATE(234), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [ts_builtin_sym_end] = ACTIONS(1361), + [sym_identifier] = ACTIONS(1446), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(311), - [anon_sym_match] = ACTIONS(913), - [anon_sym_EQ_GT] = ACTIONS(915), - [anon_sym_while] = ACTIONS(917), - [anon_sym_for] = ACTIONS(919), - [anon_sym_asyncfor] = ACTIONS(921), - [anon_sym_transform] = ACTIONS(923), - [anon_sym_filter] = ACTIONS(925), - [anon_sym_find] = ACTIONS(927), - [anon_sym_remove] = ACTIONS(929), - [anon_sym_reduce] = ACTIONS(931), - [anon_sym_select] = ACTIONS(933), - [anon_sym_insert] = ACTIONS(935), - [anon_sym_async] = ACTIONS(937), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(939), - [anon_sym_assert] = ACTIONS(941), - [anon_sym_assert_equal] = ACTIONS(941), - [anon_sym_download] = ACTIONS(941), - [anon_sym_help] = ACTIONS(941), - [anon_sym_length] = ACTIONS(941), - [anon_sym_output] = ACTIONS(941), - [anon_sym_output_error] = ACTIONS(941), - [anon_sym_type] = ACTIONS(941), - [anon_sym_append] = ACTIONS(941), - [anon_sym_metadata] = ACTIONS(941), - [anon_sym_move] = ACTIONS(941), - [anon_sym_read] = ACTIONS(941), - [anon_sym_workdir] = ACTIONS(941), - [anon_sym_write] = ACTIONS(941), - [anon_sym_from_json] = ACTIONS(941), - [anon_sym_to_json] = ACTIONS(941), - [anon_sym_to_string] = ACTIONS(941), - [anon_sym_to_float] = ACTIONS(941), - [anon_sym_bash] = ACTIONS(941), - [anon_sym_fish] = ACTIONS(941), - [anon_sym_raw] = ACTIONS(941), - [anon_sym_sh] = ACTIONS(941), - [anon_sym_zsh] = ACTIONS(941), - [anon_sym_random] = ACTIONS(941), - [anon_sym_random_boolean] = ACTIONS(941), - [anon_sym_random_float] = ACTIONS(941), - [anon_sym_random_integer] = ACTIONS(941), - [anon_sym_columns] = ACTIONS(941), - [anon_sym_rows] = ACTIONS(941), - [anon_sym_reverse] = ACTIONS(941), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_RBRACE] = ACTIONS(1361), + [anon_sym_SEMI] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(1452), + [anon_sym_RPAREN] = ACTIONS(1361), + [sym_integer] = ACTIONS(1455), + [sym_float] = ACTIONS(1458), + [sym_string] = ACTIONS(1458), + [anon_sym_true] = ACTIONS(1461), + [anon_sym_false] = ACTIONS(1461), + [anon_sym_LBRACK] = ACTIONS(1464), + [anon_sym_COLON] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1361), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_SLASH] = ACTIONS(1361), + [anon_sym_PERCENT] = ACTIONS(1361), + [anon_sym_EQ_EQ] = ACTIONS(1361), + [anon_sym_BANG_EQ] = ACTIONS(1361), + [anon_sym_AMP_AMP] = ACTIONS(1361), + [anon_sym_PIPE_PIPE] = ACTIONS(1361), + [anon_sym_GT] = ACTIONS(1384), + [anon_sym_LT] = ACTIONS(1384), + [anon_sym_GT_EQ] = ACTIONS(1361), + [anon_sym_LT_EQ] = ACTIONS(1361), + [anon_sym_if] = ACTIONS(1384), + [anon_sym_match] = ACTIONS(1384), + [anon_sym_EQ_GT] = ACTIONS(1560), + [anon_sym_while] = ACTIONS(1384), + [anon_sym_for] = ACTIONS(1384), + [anon_sym_asyncfor] = ACTIONS(1361), + [anon_sym_transform] = ACTIONS(1384), + [anon_sym_filter] = ACTIONS(1384), + [anon_sym_find] = ACTIONS(1384), + [anon_sym_remove] = ACTIONS(1384), + [anon_sym_reduce] = ACTIONS(1384), + [anon_sym_select] = ACTIONS(1384), + [anon_sym_insert] = ACTIONS(1384), + [anon_sym_async] = ACTIONS(1384), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_table] = ACTIONS(1563), + [anon_sym_assert] = ACTIONS(1566), + [anon_sym_assert_equal] = ACTIONS(1566), + [anon_sym_download] = ACTIONS(1566), + [anon_sym_help] = ACTIONS(1566), + [anon_sym_length] = ACTIONS(1566), + [anon_sym_output] = ACTIONS(1566), + [anon_sym_output_error] = ACTIONS(1566), + [anon_sym_type] = ACTIONS(1566), + [anon_sym_append] = ACTIONS(1566), + [anon_sym_metadata] = ACTIONS(1566), + [anon_sym_move] = ACTIONS(1566), + [anon_sym_read] = ACTIONS(1566), + [anon_sym_workdir] = ACTIONS(1566), + [anon_sym_write] = ACTIONS(1566), + [anon_sym_from_json] = ACTIONS(1566), + [anon_sym_to_json] = ACTIONS(1566), + [anon_sym_to_string] = ACTIONS(1566), + [anon_sym_to_float] = ACTIONS(1566), + [anon_sym_bash] = ACTIONS(1566), + [anon_sym_fish] = ACTIONS(1566), + [anon_sym_raw] = ACTIONS(1566), + [anon_sym_sh] = ACTIONS(1566), + [anon_sym_zsh] = ACTIONS(1566), + [anon_sym_random] = ACTIONS(1566), + [anon_sym_random_boolean] = ACTIONS(1566), + [anon_sym_random_float] = ACTIONS(1566), + [anon_sym_random_integer] = ACTIONS(1566), + [anon_sym_columns] = ACTIONS(1566), + [anon_sym_rows] = ACTIONS(1566), + [anon_sym_reverse] = ACTIONS(1566), }, [235] = { - [sym_block] = STATE(737), - [sym_statement] = STATE(45), - [sym_expression] = STATE(795), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(706), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(611), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(2015), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(325), - [aux_sym_block_repeat1] = STATE(45), - [sym_identifier] = ACTIONS(149), + [sym_statement] = STATE(296), + [sym_expression] = STATE(535), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(561), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [aux_sym_block_repeat1] = STATE(296), + [aux_sym_map_repeat1] = STATE(1041), + [sym_identifier] = ACTIONS(1869), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(311), - [anon_sym_match] = ACTIONS(913), - [anon_sym_EQ_GT] = ACTIONS(915), - [anon_sym_while] = ACTIONS(917), - [anon_sym_for] = ACTIONS(919), - [anon_sym_asyncfor] = ACTIONS(921), - [anon_sym_transform] = ACTIONS(923), - [anon_sym_filter] = ACTIONS(925), - [anon_sym_find] = ACTIONS(927), - [anon_sym_remove] = ACTIONS(929), - [anon_sym_reduce] = ACTIONS(931), - [anon_sym_select] = ACTIONS(933), - [anon_sym_insert] = ACTIONS(935), - [anon_sym_async] = ACTIONS(937), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(939), - [anon_sym_assert] = ACTIONS(941), - [anon_sym_assert_equal] = ACTIONS(941), - [anon_sym_download] = ACTIONS(941), - [anon_sym_help] = ACTIONS(941), - [anon_sym_length] = ACTIONS(941), - [anon_sym_output] = ACTIONS(941), - [anon_sym_output_error] = ACTIONS(941), - [anon_sym_type] = ACTIONS(941), - [anon_sym_append] = ACTIONS(941), - [anon_sym_metadata] = ACTIONS(941), - [anon_sym_move] = ACTIONS(941), - [anon_sym_read] = ACTIONS(941), - [anon_sym_workdir] = ACTIONS(941), - [anon_sym_write] = ACTIONS(941), - [anon_sym_from_json] = ACTIONS(941), - [anon_sym_to_json] = ACTIONS(941), - [anon_sym_to_string] = ACTIONS(941), - [anon_sym_to_float] = ACTIONS(941), - [anon_sym_bash] = ACTIONS(941), - [anon_sym_fish] = ACTIONS(941), - [anon_sym_raw] = ACTIONS(941), - [anon_sym_sh] = ACTIONS(941), - [anon_sym_zsh] = ACTIONS(941), - [anon_sym_random] = ACTIONS(941), - [anon_sym_random_boolean] = ACTIONS(941), - [anon_sym_random_float] = ACTIONS(941), - [anon_sym_random_integer] = ACTIONS(941), - [anon_sym_columns] = ACTIONS(941), - [anon_sym_rows] = ACTIONS(941), - [anon_sym_reverse] = ACTIONS(941), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_RBRACE] = ACTIONS(1871), + [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_asyncfor] = 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_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [236] = { - [sym_block] = STATE(1031), - [sym_statement] = STATE(358), - [sym_expression] = STATE(859), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(754), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(1023), - [sym_if_else] = STATE(1023), - [sym_if] = STATE(985), - [sym_match] = STATE(1023), - [sym_while] = STATE(1023), - [sym_for] = STATE(1023), - [sym_transform] = STATE(1023), - [sym_filter] = STATE(1023), - [sym_find] = STATE(1023), - [sym_remove] = STATE(1023), - [sym_reduce] = STATE(1023), - [sym_select] = STATE(1023), - [sym_insert] = STATE(1023), - [sym_async] = STATE(1023), - [sym_identifier_list] = STATE(1841), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(315), - [aux_sym_block_repeat1] = STATE(358), - [sym_identifier] = ACTIONS(1566), + [sym_statement] = STATE(274), + [sym_expression] = STATE(535), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(561), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [aux_sym_block_repeat1] = STATE(274), + [aux_sym_map_repeat1] = STATE(1041), + [sym_identifier] = ACTIONS(1869), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(1570), - [anon_sym_match] = ACTIONS(1572), - [anon_sym_EQ_GT] = ACTIONS(631), - [anon_sym_while] = ACTIONS(1574), - [anon_sym_for] = ACTIONS(1576), - [anon_sym_asyncfor] = ACTIONS(1578), - [anon_sym_transform] = ACTIONS(1580), - [anon_sym_filter] = ACTIONS(1582), - [anon_sym_find] = ACTIONS(1584), - [anon_sym_remove] = ACTIONS(1586), - [anon_sym_reduce] = ACTIONS(1588), - [anon_sym_select] = ACTIONS(1590), - [anon_sym_insert] = ACTIONS(651), - [anon_sym_async] = ACTIONS(1592), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(655), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_assert_equal] = ACTIONS(657), - [anon_sym_download] = ACTIONS(657), - [anon_sym_help] = ACTIONS(657), - [anon_sym_length] = ACTIONS(657), - [anon_sym_output] = ACTIONS(657), - [anon_sym_output_error] = ACTIONS(657), - [anon_sym_type] = ACTIONS(657), - [anon_sym_append] = ACTIONS(657), - [anon_sym_metadata] = ACTIONS(657), - [anon_sym_move] = ACTIONS(657), - [anon_sym_read] = ACTIONS(657), - [anon_sym_workdir] = ACTIONS(657), - [anon_sym_write] = ACTIONS(657), - [anon_sym_from_json] = ACTIONS(657), - [anon_sym_to_json] = ACTIONS(657), - [anon_sym_to_string] = ACTIONS(657), - [anon_sym_to_float] = ACTIONS(657), - [anon_sym_bash] = ACTIONS(657), - [anon_sym_fish] = ACTIONS(657), - [anon_sym_raw] = ACTIONS(657), - [anon_sym_sh] = ACTIONS(657), - [anon_sym_zsh] = ACTIONS(657), - [anon_sym_random] = ACTIONS(657), - [anon_sym_random_boolean] = ACTIONS(657), - [anon_sym_random_float] = ACTIONS(657), - [anon_sym_random_integer] = ACTIONS(657), - [anon_sym_columns] = ACTIONS(657), - [anon_sym_rows] = ACTIONS(657), - [anon_sym_reverse] = ACTIONS(657), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_RBRACE] = ACTIONS(1871), + [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_asyncfor] = 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_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [237] = { - [sym_block] = STATE(871), - [sym_statement] = STATE(39), - [sym_expression] = STATE(756), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(657), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(627), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1752), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(338), - [aux_sym_block_repeat1] = STATE(39), - [sym_identifier] = ACTIONS(875), + [sym_statement] = STATE(266), + [sym_expression] = STATE(535), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(561), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [aux_sym_block_repeat1] = STATE(266), + [aux_sym_map_repeat1] = STATE(1030), + [sym_identifier] = ACTIONS(1869), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_RBRACE] = ACTIONS(1873), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -32284,320 +29566,275 @@ 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(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(245), - [anon_sym_match] = ACTIONS(881), - [anon_sym_EQ_GT] = ACTIONS(883), - [anon_sym_while] = ACTIONS(885), - [anon_sym_for] = ACTIONS(887), - [anon_sym_asyncfor] = ACTIONS(889), - [anon_sym_transform] = ACTIONS(891), - [anon_sym_filter] = ACTIONS(893), - [anon_sym_find] = ACTIONS(895), - [anon_sym_remove] = ACTIONS(897), - [anon_sym_reduce] = ACTIONS(899), - [anon_sym_select] = ACTIONS(901), - [anon_sym_insert] = ACTIONS(903), - [anon_sym_async] = ACTIONS(905), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(907), - [anon_sym_assert] = ACTIONS(909), - [anon_sym_assert_equal] = ACTIONS(909), - [anon_sym_download] = ACTIONS(909), - [anon_sym_help] = ACTIONS(909), - [anon_sym_length] = ACTIONS(909), - [anon_sym_output] = ACTIONS(909), - [anon_sym_output_error] = ACTIONS(909), - [anon_sym_type] = ACTIONS(909), - [anon_sym_append] = ACTIONS(909), - [anon_sym_metadata] = ACTIONS(909), - [anon_sym_move] = ACTIONS(909), - [anon_sym_read] = ACTIONS(909), - [anon_sym_workdir] = ACTIONS(909), - [anon_sym_write] = ACTIONS(909), - [anon_sym_from_json] = ACTIONS(909), - [anon_sym_to_json] = ACTIONS(909), - [anon_sym_to_string] = ACTIONS(909), - [anon_sym_to_float] = ACTIONS(909), - [anon_sym_bash] = ACTIONS(909), - [anon_sym_fish] = ACTIONS(909), - [anon_sym_raw] = ACTIONS(909), - [anon_sym_sh] = ACTIONS(909), - [anon_sym_zsh] = ACTIONS(909), - [anon_sym_random] = ACTIONS(909), - [anon_sym_random_boolean] = ACTIONS(909), - [anon_sym_random_float] = ACTIONS(909), - [anon_sym_random_integer] = ACTIONS(909), - [anon_sym_columns] = ACTIONS(909), - [anon_sym_rows] = ACTIONS(909), - [anon_sym_reverse] = ACTIONS(909), + [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_asyncfor] = 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_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [238] = { - [sym_block] = STATE(738), - [sym_statement] = STATE(45), - [sym_expression] = STATE(795), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(706), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(611), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(2015), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(325), - [aux_sym_block_repeat1] = STATE(45), - [sym_identifier] = ACTIONS(149), + [sym_statement] = STATE(304), + [sym_expression] = STATE(535), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(561), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [aux_sym_block_repeat1] = STATE(304), + [aux_sym_map_repeat1] = STATE(1030), + [sym_identifier] = ACTIONS(1869), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(311), - [anon_sym_match] = ACTIONS(913), - [anon_sym_EQ_GT] = ACTIONS(915), - [anon_sym_while] = ACTIONS(917), - [anon_sym_for] = ACTIONS(919), - [anon_sym_asyncfor] = ACTIONS(921), - [anon_sym_transform] = ACTIONS(923), - [anon_sym_filter] = ACTIONS(925), - [anon_sym_find] = ACTIONS(927), - [anon_sym_remove] = ACTIONS(929), - [anon_sym_reduce] = ACTIONS(931), - [anon_sym_select] = ACTIONS(933), - [anon_sym_insert] = ACTIONS(935), - [anon_sym_async] = ACTIONS(937), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(939), - [anon_sym_assert] = ACTIONS(941), - [anon_sym_assert_equal] = ACTIONS(941), - [anon_sym_download] = ACTIONS(941), - [anon_sym_help] = ACTIONS(941), - [anon_sym_length] = ACTIONS(941), - [anon_sym_output] = ACTIONS(941), - [anon_sym_output_error] = ACTIONS(941), - [anon_sym_type] = ACTIONS(941), - [anon_sym_append] = ACTIONS(941), - [anon_sym_metadata] = ACTIONS(941), - [anon_sym_move] = ACTIONS(941), - [anon_sym_read] = ACTIONS(941), - [anon_sym_workdir] = ACTIONS(941), - [anon_sym_write] = ACTIONS(941), - [anon_sym_from_json] = ACTIONS(941), - [anon_sym_to_json] = ACTIONS(941), - [anon_sym_to_string] = ACTIONS(941), - [anon_sym_to_float] = ACTIONS(941), - [anon_sym_bash] = ACTIONS(941), - [anon_sym_fish] = ACTIONS(941), - [anon_sym_raw] = ACTIONS(941), - [anon_sym_sh] = ACTIONS(941), - [anon_sym_zsh] = ACTIONS(941), - [anon_sym_random] = ACTIONS(941), - [anon_sym_random_boolean] = ACTIONS(941), - [anon_sym_random_float] = ACTIONS(941), - [anon_sym_random_integer] = ACTIONS(941), - [anon_sym_columns] = ACTIONS(941), - [anon_sym_rows] = ACTIONS(941), - [anon_sym_reverse] = ACTIONS(941), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_RBRACE] = ACTIONS(1873), + [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_asyncfor] = 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_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [239] = { - [sym_block] = STATE(728), - [sym_statement] = STATE(17), - [sym_expression] = STATE(601), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(706), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(557), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1910), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(284), - [aux_sym_block_repeat1] = STATE(17), - [sym_identifier] = ACTIONS(149), + [sym_statement] = STATE(305), + [sym_expression] = STATE(535), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(561), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [aux_sym_block_repeat1] = STATE(305), + [aux_sym_map_repeat1] = STATE(1041), + [sym_identifier] = ACTIONS(1869), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(81), - [anon_sym_match] = ACTIONS(165), - [anon_sym_EQ_GT] = ACTIONS(167), - [anon_sym_while] = ACTIONS(169), - [anon_sym_for] = ACTIONS(171), - [anon_sym_asyncfor] = ACTIONS(173), - [anon_sym_transform] = ACTIONS(175), - [anon_sym_filter] = ACTIONS(177), - [anon_sym_find] = ACTIONS(179), - [anon_sym_remove] = ACTIONS(181), - [anon_sym_reduce] = ACTIONS(183), - [anon_sym_select] = ACTIONS(185), - [anon_sym_insert] = ACTIONS(187), - [anon_sym_async] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(191), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_assert_equal] = ACTIONS(193), - [anon_sym_download] = ACTIONS(193), - [anon_sym_help] = ACTIONS(193), - [anon_sym_length] = ACTIONS(193), - [anon_sym_output] = ACTIONS(193), - [anon_sym_output_error] = ACTIONS(193), - [anon_sym_type] = ACTIONS(193), - [anon_sym_append] = ACTIONS(193), - [anon_sym_metadata] = ACTIONS(193), - [anon_sym_move] = ACTIONS(193), - [anon_sym_read] = ACTIONS(193), - [anon_sym_workdir] = ACTIONS(193), - [anon_sym_write] = ACTIONS(193), - [anon_sym_from_json] = ACTIONS(193), - [anon_sym_to_json] = ACTIONS(193), - [anon_sym_to_string] = ACTIONS(193), - [anon_sym_to_float] = ACTIONS(193), - [anon_sym_bash] = ACTIONS(193), - [anon_sym_fish] = ACTIONS(193), - [anon_sym_raw] = ACTIONS(193), - [anon_sym_sh] = ACTIONS(193), - [anon_sym_zsh] = ACTIONS(193), - [anon_sym_random] = ACTIONS(193), - [anon_sym_random_boolean] = ACTIONS(193), - [anon_sym_random_float] = ACTIONS(193), - [anon_sym_random_integer] = ACTIONS(193), - [anon_sym_columns] = ACTIONS(193), - [anon_sym_rows] = ACTIONS(193), - [anon_sym_reverse] = ACTIONS(193), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_RBRACE] = ACTIONS(1871), + [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_asyncfor] = 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_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [240] = { - [sym_block] = STATE(1070), - [sym_statement] = STATE(382), - [sym_expression] = STATE(934), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(842), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(983), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [aux_sym_block_repeat1] = STATE(382), - [sym_identifier] = ACTIONS(2162), + [sym_statement] = STATE(284), + [sym_expression] = STATE(535), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(561), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [aux_sym_block_repeat1] = STATE(284), + [aux_sym_map_repeat1] = STATE(1030), + [sym_identifier] = ACTIONS(1869), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_RBRACE] = ACTIONS(1873), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -32605,106 +29842,91 @@ 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(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(1570), - [anon_sym_match] = ACTIONS(2166), - [anon_sym_EQ_GT] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(2168), - [anon_sym_for] = ACTIONS(2170), - [anon_sym_asyncfor] = ACTIONS(2172), - [anon_sym_transform] = ACTIONS(2174), - [anon_sym_filter] = ACTIONS(2176), - [anon_sym_find] = ACTIONS(2178), - [anon_sym_remove] = ACTIONS(2180), - [anon_sym_reduce] = ACTIONS(2182), - [anon_sym_select] = ACTIONS(2184), - [anon_sym_insert] = ACTIONS(1224), - [anon_sym_async] = ACTIONS(2186), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1228), - [anon_sym_assert] = ACTIONS(1230), - [anon_sym_assert_equal] = ACTIONS(1230), - [anon_sym_download] = ACTIONS(1230), - [anon_sym_help] = ACTIONS(1230), - [anon_sym_length] = ACTIONS(1230), - [anon_sym_output] = ACTIONS(1230), - [anon_sym_output_error] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_append] = ACTIONS(1230), - [anon_sym_metadata] = ACTIONS(1230), - [anon_sym_move] = ACTIONS(1230), - [anon_sym_read] = ACTIONS(1230), - [anon_sym_workdir] = ACTIONS(1230), - [anon_sym_write] = ACTIONS(1230), - [anon_sym_from_json] = ACTIONS(1230), - [anon_sym_to_json] = ACTIONS(1230), - [anon_sym_to_string] = ACTIONS(1230), - [anon_sym_to_float] = ACTIONS(1230), - [anon_sym_bash] = ACTIONS(1230), - [anon_sym_fish] = ACTIONS(1230), - [anon_sym_raw] = ACTIONS(1230), - [anon_sym_sh] = ACTIONS(1230), - [anon_sym_zsh] = ACTIONS(1230), - [anon_sym_random] = ACTIONS(1230), - [anon_sym_random_boolean] = ACTIONS(1230), - [anon_sym_random_float] = ACTIONS(1230), - [anon_sym_random_integer] = ACTIONS(1230), - [anon_sym_columns] = ACTIONS(1230), - [anon_sym_rows] = ACTIONS(1230), - [anon_sym_reverse] = ACTIONS(1230), + [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_asyncfor] = 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_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [241] = { - [sym_block] = STATE(864), - [sym_statement] = STATE(39), - [sym_expression] = STATE(756), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(657), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(627), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1752), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(338), - [aux_sym_block_repeat1] = STATE(39), - [sym_identifier] = ACTIONS(875), + [sym_statement] = STATE(246), + [sym_expression] = STATE(535), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(561), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [aux_sym_block_repeat1] = STATE(246), + [aux_sym_map_repeat1] = STATE(1041), + [sym_identifier] = ACTIONS(1869), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_RBRACE] = ACTIONS(1871), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -32712,106 +29934,91 @@ 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(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(245), - [anon_sym_match] = ACTIONS(881), - [anon_sym_EQ_GT] = ACTIONS(883), - [anon_sym_while] = ACTIONS(885), - [anon_sym_for] = ACTIONS(887), - [anon_sym_asyncfor] = ACTIONS(889), - [anon_sym_transform] = ACTIONS(891), - [anon_sym_filter] = ACTIONS(893), - [anon_sym_find] = ACTIONS(895), - [anon_sym_remove] = ACTIONS(897), - [anon_sym_reduce] = ACTIONS(899), - [anon_sym_select] = ACTIONS(901), - [anon_sym_insert] = ACTIONS(903), - [anon_sym_async] = ACTIONS(905), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(907), - [anon_sym_assert] = ACTIONS(909), - [anon_sym_assert_equal] = ACTIONS(909), - [anon_sym_download] = ACTIONS(909), - [anon_sym_help] = ACTIONS(909), - [anon_sym_length] = ACTIONS(909), - [anon_sym_output] = ACTIONS(909), - [anon_sym_output_error] = ACTIONS(909), - [anon_sym_type] = ACTIONS(909), - [anon_sym_append] = ACTIONS(909), - [anon_sym_metadata] = ACTIONS(909), - [anon_sym_move] = ACTIONS(909), - [anon_sym_read] = ACTIONS(909), - [anon_sym_workdir] = ACTIONS(909), - [anon_sym_write] = ACTIONS(909), - [anon_sym_from_json] = ACTIONS(909), - [anon_sym_to_json] = ACTIONS(909), - [anon_sym_to_string] = ACTIONS(909), - [anon_sym_to_float] = ACTIONS(909), - [anon_sym_bash] = ACTIONS(909), - [anon_sym_fish] = ACTIONS(909), - [anon_sym_raw] = ACTIONS(909), - [anon_sym_sh] = ACTIONS(909), - [anon_sym_zsh] = ACTIONS(909), - [anon_sym_random] = ACTIONS(909), - [anon_sym_random_boolean] = ACTIONS(909), - [anon_sym_random_float] = ACTIONS(909), - [anon_sym_random_integer] = ACTIONS(909), - [anon_sym_columns] = ACTIONS(909), - [anon_sym_rows] = ACTIONS(909), - [anon_sym_reverse] = ACTIONS(909), + [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_asyncfor] = 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_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [242] = { - [sym_block] = STATE(863), - [sym_statement] = STATE(39), - [sym_expression] = STATE(756), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(657), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(627), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1752), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(338), - [aux_sym_block_repeat1] = STATE(39), - [sym_identifier] = ACTIONS(875), + [sym_statement] = STATE(312), + [sym_expression] = STATE(535), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(561), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [aux_sym_block_repeat1] = STATE(312), + [aux_sym_map_repeat1] = STATE(1041), + [sym_identifier] = ACTIONS(1869), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_RBRACE] = ACTIONS(1871), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -32819,213 +30026,181 @@ 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(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(245), - [anon_sym_match] = ACTIONS(881), - [anon_sym_EQ_GT] = ACTIONS(883), - [anon_sym_while] = ACTIONS(885), - [anon_sym_for] = ACTIONS(887), - [anon_sym_asyncfor] = ACTIONS(889), - [anon_sym_transform] = ACTIONS(891), - [anon_sym_filter] = ACTIONS(893), - [anon_sym_find] = ACTIONS(895), - [anon_sym_remove] = ACTIONS(897), - [anon_sym_reduce] = ACTIONS(899), - [anon_sym_select] = ACTIONS(901), - [anon_sym_insert] = ACTIONS(903), - [anon_sym_async] = ACTIONS(905), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(907), - [anon_sym_assert] = ACTIONS(909), - [anon_sym_assert_equal] = ACTIONS(909), - [anon_sym_download] = ACTIONS(909), - [anon_sym_help] = ACTIONS(909), - [anon_sym_length] = ACTIONS(909), - [anon_sym_output] = ACTIONS(909), - [anon_sym_output_error] = ACTIONS(909), - [anon_sym_type] = ACTIONS(909), - [anon_sym_append] = ACTIONS(909), - [anon_sym_metadata] = ACTIONS(909), - [anon_sym_move] = ACTIONS(909), - [anon_sym_read] = ACTIONS(909), - [anon_sym_workdir] = ACTIONS(909), - [anon_sym_write] = ACTIONS(909), - [anon_sym_from_json] = ACTIONS(909), - [anon_sym_to_json] = ACTIONS(909), - [anon_sym_to_string] = ACTIONS(909), - [anon_sym_to_float] = ACTIONS(909), - [anon_sym_bash] = ACTIONS(909), - [anon_sym_fish] = ACTIONS(909), - [anon_sym_raw] = ACTIONS(909), - [anon_sym_sh] = ACTIONS(909), - [anon_sym_zsh] = ACTIONS(909), - [anon_sym_random] = ACTIONS(909), - [anon_sym_random_boolean] = ACTIONS(909), - [anon_sym_random_float] = ACTIONS(909), - [anon_sym_random_integer] = ACTIONS(909), - [anon_sym_columns] = ACTIONS(909), - [anon_sym_rows] = ACTIONS(909), - [anon_sym_reverse] = ACTIONS(909), + [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_asyncfor] = 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_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [243] = { - [sym_block] = STATE(719), - [sym_statement] = STATE(35), - [sym_expression] = STATE(701), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(706), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(582), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1866), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(320), - [aux_sym_block_repeat1] = STATE(35), - [sym_identifier] = ACTIONS(149), + [sym_block] = STATE(407), + [sym_statement] = STATE(8), + [sym_expression] = STATE(355), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(346), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1225), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(170), + [aux_sym_block_repeat1] = STATE(8), + [sym_identifier] = ACTIONS(55), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(197), - [anon_sym_match] = ACTIONS(497), - [anon_sym_EQ_GT] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_asyncfor] = ACTIONS(505), - [anon_sym_transform] = ACTIONS(507), - [anon_sym_filter] = ACTIONS(509), - [anon_sym_find] = ACTIONS(511), - [anon_sym_remove] = ACTIONS(513), - [anon_sym_reduce] = ACTIONS(515), - [anon_sym_select] = ACTIONS(517), - [anon_sym_insert] = ACTIONS(519), - [anon_sym_async] = ACTIONS(521), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(523), - [anon_sym_assert] = ACTIONS(525), - [anon_sym_assert_equal] = ACTIONS(525), - [anon_sym_download] = ACTIONS(525), - [anon_sym_help] = ACTIONS(525), - [anon_sym_length] = ACTIONS(525), - [anon_sym_output] = ACTIONS(525), - [anon_sym_output_error] = ACTIONS(525), - [anon_sym_type] = ACTIONS(525), - [anon_sym_append] = ACTIONS(525), - [anon_sym_metadata] = ACTIONS(525), - [anon_sym_move] = ACTIONS(525), - [anon_sym_read] = ACTIONS(525), - [anon_sym_workdir] = ACTIONS(525), - [anon_sym_write] = ACTIONS(525), - [anon_sym_from_json] = ACTIONS(525), - [anon_sym_to_json] = ACTIONS(525), - [anon_sym_to_string] = ACTIONS(525), - [anon_sym_to_float] = ACTIONS(525), - [anon_sym_bash] = ACTIONS(525), - [anon_sym_fish] = ACTIONS(525), - [anon_sym_raw] = ACTIONS(525), - [anon_sym_sh] = ACTIONS(525), - [anon_sym_zsh] = ACTIONS(525), - [anon_sym_random] = ACTIONS(525), - [anon_sym_random_boolean] = ACTIONS(525), - [anon_sym_random_float] = ACTIONS(525), - [anon_sym_random_integer] = ACTIONS(525), - [anon_sym_columns] = ACTIONS(525), - [anon_sym_rows] = ACTIONS(525), - [anon_sym_reverse] = ACTIONS(525), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = 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_asyncfor] = ACTIONS(91), + [anon_sym_transform] = ACTIONS(93), + [anon_sym_filter] = ACTIONS(95), + [anon_sym_find] = ACTIONS(97), + [anon_sym_remove] = ACTIONS(99), + [anon_sym_reduce] = ACTIONS(101), + [anon_sym_select] = ACTIONS(103), + [anon_sym_insert] = ACTIONS(105), + [anon_sym_async] = ACTIONS(107), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(111), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_assert_equal] = ACTIONS(113), + [anon_sym_download] = ACTIONS(113), + [anon_sym_help] = ACTIONS(113), + [anon_sym_length] = ACTIONS(113), + [anon_sym_output] = ACTIONS(113), + [anon_sym_output_error] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_append] = ACTIONS(113), + [anon_sym_metadata] = ACTIONS(113), + [anon_sym_move] = ACTIONS(113), + [anon_sym_read] = ACTIONS(113), + [anon_sym_workdir] = ACTIONS(113), + [anon_sym_write] = ACTIONS(113), + [anon_sym_from_json] = ACTIONS(113), + [anon_sym_to_json] = ACTIONS(113), + [anon_sym_to_string] = ACTIONS(113), + [anon_sym_to_float] = ACTIONS(113), + [anon_sym_bash] = ACTIONS(113), + [anon_sym_fish] = ACTIONS(113), + [anon_sym_raw] = ACTIONS(113), + [anon_sym_sh] = ACTIONS(113), + [anon_sym_zsh] = ACTIONS(113), + [anon_sym_random] = ACTIONS(113), + [anon_sym_random_boolean] = ACTIONS(113), + [anon_sym_random_float] = ACTIONS(113), + [anon_sym_random_integer] = ACTIONS(113), + [anon_sym_columns] = ACTIONS(113), + [anon_sym_rows] = ACTIONS(113), + [anon_sym_reverse] = ACTIONS(113), }, [244] = { - [sym_block] = STATE(880), - [sym_statement] = STATE(57), - [sym_expression] = STATE(853), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(776), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(710), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1823), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(366), - [aux_sym_block_repeat1] = STATE(57), - [sym_identifier] = ACTIONS(1436), + [sym_block] = STATE(928), + [sym_statement] = STATE(157), + [sym_expression] = STATE(479), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(365), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1119), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(218), + [aux_sym_block_repeat1] = STATE(157), + [sym_identifier] = ACTIONS(524), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(1013), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -33033,320 +30208,272 @@ 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(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(843), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_EQ_GT] = ACTIONS(1442), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_for] = ACTIONS(1446), - [anon_sym_asyncfor] = ACTIONS(1448), - [anon_sym_transform] = ACTIONS(1450), - [anon_sym_filter] = ACTIONS(1452), - [anon_sym_find] = ACTIONS(1454), - [anon_sym_remove] = ACTIONS(1456), - [anon_sym_reduce] = ACTIONS(1458), - [anon_sym_select] = ACTIONS(1460), - [anon_sym_insert] = ACTIONS(1462), - [anon_sym_async] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1466), - [anon_sym_assert] = ACTIONS(1468), - [anon_sym_assert_equal] = ACTIONS(1468), - [anon_sym_download] = ACTIONS(1468), - [anon_sym_help] = ACTIONS(1468), - [anon_sym_length] = ACTIONS(1468), - [anon_sym_output] = ACTIONS(1468), - [anon_sym_output_error] = ACTIONS(1468), - [anon_sym_type] = ACTIONS(1468), - [anon_sym_append] = ACTIONS(1468), - [anon_sym_metadata] = ACTIONS(1468), - [anon_sym_move] = ACTIONS(1468), - [anon_sym_read] = ACTIONS(1468), - [anon_sym_workdir] = ACTIONS(1468), - [anon_sym_write] = ACTIONS(1468), - [anon_sym_from_json] = ACTIONS(1468), - [anon_sym_to_json] = ACTIONS(1468), - [anon_sym_to_string] = ACTIONS(1468), - [anon_sym_to_float] = ACTIONS(1468), - [anon_sym_bash] = ACTIONS(1468), - [anon_sym_fish] = ACTIONS(1468), - [anon_sym_raw] = ACTIONS(1468), - [anon_sym_sh] = ACTIONS(1468), - [anon_sym_zsh] = ACTIONS(1468), - [anon_sym_random] = ACTIONS(1468), - [anon_sym_random_boolean] = ACTIONS(1468), - [anon_sym_random_float] = ACTIONS(1468), - [anon_sym_random_integer] = ACTIONS(1468), - [anon_sym_columns] = ACTIONS(1468), - [anon_sym_rows] = ACTIONS(1468), - [anon_sym_reverse] = ACTIONS(1468), + [anon_sym_if] = ACTIONS(155), + [anon_sym_match] = ACTIONS(528), + [anon_sym_EQ_GT] = ACTIONS(530), + [anon_sym_while] = ACTIONS(532), + [anon_sym_for] = ACTIONS(534), + [anon_sym_asyncfor] = ACTIONS(536), + [anon_sym_transform] = ACTIONS(538), + [anon_sym_filter] = ACTIONS(540), + [anon_sym_find] = ACTIONS(542), + [anon_sym_remove] = ACTIONS(544), + [anon_sym_reduce] = ACTIONS(546), + [anon_sym_select] = ACTIONS(548), + [anon_sym_insert] = ACTIONS(550), + [anon_sym_async] = ACTIONS(552), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(554), + [anon_sym_assert] = ACTIONS(556), + [anon_sym_assert_equal] = ACTIONS(556), + [anon_sym_download] = ACTIONS(556), + [anon_sym_help] = ACTIONS(556), + [anon_sym_length] = ACTIONS(556), + [anon_sym_output] = ACTIONS(556), + [anon_sym_output_error] = ACTIONS(556), + [anon_sym_type] = ACTIONS(556), + [anon_sym_append] = ACTIONS(556), + [anon_sym_metadata] = ACTIONS(556), + [anon_sym_move] = ACTIONS(556), + [anon_sym_read] = ACTIONS(556), + [anon_sym_workdir] = ACTIONS(556), + [anon_sym_write] = ACTIONS(556), + [anon_sym_from_json] = ACTIONS(556), + [anon_sym_to_json] = ACTIONS(556), + [anon_sym_to_string] = ACTIONS(556), + [anon_sym_to_float] = ACTIONS(556), + [anon_sym_bash] = ACTIONS(556), + [anon_sym_fish] = ACTIONS(556), + [anon_sym_raw] = ACTIONS(556), + [anon_sym_sh] = ACTIONS(556), + [anon_sym_zsh] = ACTIONS(556), + [anon_sym_random] = ACTIONS(556), + [anon_sym_random_boolean] = ACTIONS(556), + [anon_sym_random_float] = ACTIONS(556), + [anon_sym_random_integer] = ACTIONS(556), + [anon_sym_columns] = ACTIONS(556), + [anon_sym_rows] = ACTIONS(556), + [anon_sym_reverse] = ACTIONS(556), }, [245] = { - [sym_block] = STATE(719), - [sym_statement] = STATE(17), - [sym_expression] = STATE(601), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(706), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(557), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1910), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(284), - [aux_sym_block_repeat1] = STATE(17), - [sym_identifier] = ACTIONS(149), + [sym_block] = STATE(434), + [sym_statement] = STATE(26), + [sym_expression] = STATE(448), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(414), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1085), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(203), + [aux_sym_block_repeat1] = STATE(26), + [sym_identifier] = ACTIONS(223), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(81), - [anon_sym_match] = ACTIONS(165), - [anon_sym_EQ_GT] = ACTIONS(167), - [anon_sym_while] = ACTIONS(169), - [anon_sym_for] = ACTIONS(171), - [anon_sym_asyncfor] = ACTIONS(173), - [anon_sym_transform] = ACTIONS(175), - [anon_sym_filter] = ACTIONS(177), - [anon_sym_find] = ACTIONS(179), - [anon_sym_remove] = ACTIONS(181), - [anon_sym_reduce] = ACTIONS(183), - [anon_sym_select] = ACTIONS(185), - [anon_sym_insert] = ACTIONS(187), - [anon_sym_async] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(191), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_assert_equal] = ACTIONS(193), - [anon_sym_download] = ACTIONS(193), - [anon_sym_help] = ACTIONS(193), - [anon_sym_length] = ACTIONS(193), - [anon_sym_output] = ACTIONS(193), - [anon_sym_output_error] = ACTIONS(193), - [anon_sym_type] = ACTIONS(193), - [anon_sym_append] = ACTIONS(193), - [anon_sym_metadata] = ACTIONS(193), - [anon_sym_move] = ACTIONS(193), - [anon_sym_read] = ACTIONS(193), - [anon_sym_workdir] = ACTIONS(193), - [anon_sym_write] = ACTIONS(193), - [anon_sym_from_json] = ACTIONS(193), - [anon_sym_to_json] = ACTIONS(193), - [anon_sym_to_string] = ACTIONS(193), - [anon_sym_to_float] = ACTIONS(193), - [anon_sym_bash] = ACTIONS(193), - [anon_sym_fish] = ACTIONS(193), - [anon_sym_raw] = ACTIONS(193), - [anon_sym_sh] = ACTIONS(193), - [anon_sym_zsh] = ACTIONS(193), - [anon_sym_random] = ACTIONS(193), - [anon_sym_random_boolean] = ACTIONS(193), - [anon_sym_random_float] = ACTIONS(193), - [anon_sym_random_integer] = ACTIONS(193), - [anon_sym_columns] = ACTIONS(193), - [anon_sym_rows] = ACTIONS(193), - [anon_sym_reverse] = ACTIONS(193), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_if] = ACTIONS(227), + [anon_sym_match] = ACTIONS(229), + [anon_sym_EQ_GT] = ACTIONS(231), + [anon_sym_while] = ACTIONS(233), + [anon_sym_for] = ACTIONS(235), + [anon_sym_asyncfor] = ACTIONS(237), + [anon_sym_transform] = ACTIONS(239), + [anon_sym_filter] = ACTIONS(241), + [anon_sym_find] = ACTIONS(243), + [anon_sym_remove] = ACTIONS(245), + [anon_sym_reduce] = ACTIONS(247), + [anon_sym_select] = ACTIONS(249), + [anon_sym_insert] = ACTIONS(251), + [anon_sym_async] = ACTIONS(253), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(255), + [anon_sym_assert] = ACTIONS(257), + [anon_sym_assert_equal] = ACTIONS(257), + [anon_sym_download] = ACTIONS(257), + [anon_sym_help] = ACTIONS(257), + [anon_sym_length] = ACTIONS(257), + [anon_sym_output] = ACTIONS(257), + [anon_sym_output_error] = ACTIONS(257), + [anon_sym_type] = ACTIONS(257), + [anon_sym_append] = ACTIONS(257), + [anon_sym_metadata] = ACTIONS(257), + [anon_sym_move] = ACTIONS(257), + [anon_sym_read] = ACTIONS(257), + [anon_sym_workdir] = ACTIONS(257), + [anon_sym_write] = ACTIONS(257), + [anon_sym_from_json] = ACTIONS(257), + [anon_sym_to_json] = ACTIONS(257), + [anon_sym_to_string] = ACTIONS(257), + [anon_sym_to_float] = ACTIONS(257), + [anon_sym_bash] = ACTIONS(257), + [anon_sym_fish] = ACTIONS(257), + [anon_sym_raw] = ACTIONS(257), + [anon_sym_sh] = ACTIONS(257), + [anon_sym_zsh] = ACTIONS(257), + [anon_sym_random] = ACTIONS(257), + [anon_sym_random_boolean] = ACTIONS(257), + [anon_sym_random_float] = ACTIONS(257), + [anon_sym_random_integer] = ACTIONS(257), + [anon_sym_columns] = ACTIONS(257), + [anon_sym_rows] = ACTIONS(257), + [anon_sym_reverse] = ACTIONS(257), }, [246] = { - [sym_block] = STATE(1018), - [sym_statement] = STATE(358), - [sym_expression] = STATE(859), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(754), - [sym_math] = STATE(759), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(759), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(1023), - [sym_if_else] = STATE(1023), - [sym_if] = STATE(985), - [sym_match] = STATE(1023), - [sym_while] = STATE(1023), - [sym_for] = STATE(1023), - [sym_transform] = STATE(1023), - [sym_filter] = STATE(1023), - [sym_find] = STATE(1023), - [sym_remove] = STATE(1023), - [sym_reduce] = STATE(1023), - [sym_select] = STATE(1023), - [sym_insert] = STATE(1023), - [sym_async] = STATE(1023), - [sym_identifier_list] = STATE(1841), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(315), - [aux_sym_block_repeat1] = STATE(358), - [sym_identifier] = ACTIONS(1566), + [sym_statement] = STATE(228), + [sym_expression] = STATE(535), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(561), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [aux_sym_block_repeat1] = STATE(228), + [sym_identifier] = ACTIONS(5), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(1570), - [anon_sym_match] = ACTIONS(1572), - [anon_sym_EQ_GT] = ACTIONS(631), - [anon_sym_while] = ACTIONS(1574), - [anon_sym_for] = ACTIONS(1576), - [anon_sym_asyncfor] = ACTIONS(1578), - [anon_sym_transform] = ACTIONS(1580), - [anon_sym_filter] = ACTIONS(1582), - [anon_sym_find] = ACTIONS(1584), - [anon_sym_remove] = ACTIONS(1586), - [anon_sym_reduce] = ACTIONS(1588), - [anon_sym_select] = ACTIONS(1590), - [anon_sym_insert] = ACTIONS(651), - [anon_sym_async] = ACTIONS(1592), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(655), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_assert_equal] = ACTIONS(657), - [anon_sym_download] = ACTIONS(657), - [anon_sym_help] = ACTIONS(657), - [anon_sym_length] = ACTIONS(657), - [anon_sym_output] = ACTIONS(657), - [anon_sym_output_error] = ACTIONS(657), - [anon_sym_type] = ACTIONS(657), - [anon_sym_append] = ACTIONS(657), - [anon_sym_metadata] = ACTIONS(657), - [anon_sym_move] = ACTIONS(657), - [anon_sym_read] = ACTIONS(657), - [anon_sym_workdir] = ACTIONS(657), - [anon_sym_write] = ACTIONS(657), - [anon_sym_from_json] = ACTIONS(657), - [anon_sym_to_json] = ACTIONS(657), - [anon_sym_to_string] = ACTIONS(657), - [anon_sym_to_float] = ACTIONS(657), - [anon_sym_bash] = ACTIONS(657), - [anon_sym_fish] = ACTIONS(657), - [anon_sym_raw] = ACTIONS(657), - [anon_sym_sh] = ACTIONS(657), - [anon_sym_zsh] = ACTIONS(657), - [anon_sym_random] = ACTIONS(657), - [anon_sym_random_boolean] = ACTIONS(657), - [anon_sym_random_float] = ACTIONS(657), - [anon_sym_random_integer] = ACTIONS(657), - [anon_sym_columns] = ACTIONS(657), - [anon_sym_rows] = ACTIONS(657), - [anon_sym_reverse] = ACTIONS(657), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_RBRACE] = ACTIONS(1875), + [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_asyncfor] = 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_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [247] = { - [sym_block] = STATE(840), - [sym_statement] = STATE(57), - [sym_expression] = STATE(853), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(776), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(710), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1823), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(366), - [aux_sym_block_repeat1] = STATE(57), - [sym_identifier] = ACTIONS(1436), + [sym_block] = STATE(497), + [sym_statement] = STATE(17), + [sym_expression] = STATE(402), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(348), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1104), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(17), + [sym_identifier] = ACTIONS(187), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -33354,320 +30481,272 @@ 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(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(843), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_EQ_GT] = ACTIONS(1442), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_for] = ACTIONS(1446), - [anon_sym_asyncfor] = ACTIONS(1448), - [anon_sym_transform] = ACTIONS(1450), - [anon_sym_filter] = ACTIONS(1452), - [anon_sym_find] = ACTIONS(1454), - [anon_sym_remove] = ACTIONS(1456), - [anon_sym_reduce] = ACTIONS(1458), - [anon_sym_select] = ACTIONS(1460), - [anon_sym_insert] = ACTIONS(1462), - [anon_sym_async] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1466), - [anon_sym_assert] = ACTIONS(1468), - [anon_sym_assert_equal] = ACTIONS(1468), - [anon_sym_download] = ACTIONS(1468), - [anon_sym_help] = ACTIONS(1468), - [anon_sym_length] = ACTIONS(1468), - [anon_sym_output] = ACTIONS(1468), - [anon_sym_output_error] = ACTIONS(1468), - [anon_sym_type] = ACTIONS(1468), - [anon_sym_append] = ACTIONS(1468), - [anon_sym_metadata] = ACTIONS(1468), - [anon_sym_move] = ACTIONS(1468), - [anon_sym_read] = ACTIONS(1468), - [anon_sym_workdir] = ACTIONS(1468), - [anon_sym_write] = ACTIONS(1468), - [anon_sym_from_json] = ACTIONS(1468), - [anon_sym_to_json] = ACTIONS(1468), - [anon_sym_to_string] = ACTIONS(1468), - [anon_sym_to_float] = ACTIONS(1468), - [anon_sym_bash] = ACTIONS(1468), - [anon_sym_fish] = ACTIONS(1468), - [anon_sym_raw] = ACTIONS(1468), - [anon_sym_sh] = ACTIONS(1468), - [anon_sym_zsh] = ACTIONS(1468), - [anon_sym_random] = ACTIONS(1468), - [anon_sym_random_boolean] = ACTIONS(1468), - [anon_sym_random_float] = ACTIONS(1468), - [anon_sym_random_integer] = ACTIONS(1468), - [anon_sym_columns] = ACTIONS(1468), - [anon_sym_rows] = ACTIONS(1468), - [anon_sym_reverse] = ACTIONS(1468), + [anon_sym_if] = ACTIONS(79), + [anon_sym_match] = ACTIONS(193), + [anon_sym_EQ_GT] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_for] = ACTIONS(199), + [anon_sym_asyncfor] = ACTIONS(201), + [anon_sym_transform] = ACTIONS(203), + [anon_sym_filter] = ACTIONS(205), + [anon_sym_find] = ACTIONS(207), + [anon_sym_remove] = ACTIONS(209), + [anon_sym_reduce] = ACTIONS(211), + [anon_sym_select] = ACTIONS(213), + [anon_sym_insert] = ACTIONS(215), + [anon_sym_async] = ACTIONS(217), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(219), + [anon_sym_assert] = ACTIONS(221), + [anon_sym_assert_equal] = ACTIONS(221), + [anon_sym_download] = ACTIONS(221), + [anon_sym_help] = ACTIONS(221), + [anon_sym_length] = ACTIONS(221), + [anon_sym_output] = ACTIONS(221), + [anon_sym_output_error] = ACTIONS(221), + [anon_sym_type] = ACTIONS(221), + [anon_sym_append] = ACTIONS(221), + [anon_sym_metadata] = ACTIONS(221), + [anon_sym_move] = ACTIONS(221), + [anon_sym_read] = ACTIONS(221), + [anon_sym_workdir] = ACTIONS(221), + [anon_sym_write] = ACTIONS(221), + [anon_sym_from_json] = ACTIONS(221), + [anon_sym_to_json] = ACTIONS(221), + [anon_sym_to_string] = ACTIONS(221), + [anon_sym_to_float] = ACTIONS(221), + [anon_sym_bash] = ACTIONS(221), + [anon_sym_fish] = ACTIONS(221), + [anon_sym_raw] = ACTIONS(221), + [anon_sym_sh] = ACTIONS(221), + [anon_sym_zsh] = ACTIONS(221), + [anon_sym_random] = ACTIONS(221), + [anon_sym_random_boolean] = ACTIONS(221), + [anon_sym_random_float] = ACTIONS(221), + [anon_sym_random_integer] = ACTIONS(221), + [anon_sym_columns] = ACTIONS(221), + [anon_sym_rows] = ACTIONS(221), + [anon_sym_reverse] = ACTIONS(221), }, [248] = { - [sym_block] = STATE(630), - [sym_statement] = STATE(21), - [sym_expression] = STATE(593), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(631), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(584), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(1776), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(286), - [aux_sym_block_repeat1] = STATE(21), - [sym_identifier] = ACTIONS(55), + [sym_block] = STATE(926), + [sym_statement] = STATE(159), + [sym_expression] = STATE(516), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(433), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [aux_sym_block_repeat1] = STATE(159), + [sym_identifier] = ACTIONS(867), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(59), - [sym_integer] = ACTIONS(61), - [sym_float] = ACTIONS(63), - [sym_string] = ACTIONS(63), - [anon_sym_true] = ACTIONS(65), - [anon_sym_false] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(197), - [anon_sym_match] = ACTIONS(199), - [anon_sym_EQ_GT] = ACTIONS(201), - [anon_sym_while] = ACTIONS(203), - [anon_sym_for] = ACTIONS(205), - [anon_sym_asyncfor] = ACTIONS(207), - [anon_sym_transform] = ACTIONS(209), - [anon_sym_filter] = ACTIONS(211), - [anon_sym_find] = ACTIONS(213), - [anon_sym_remove] = ACTIONS(215), - [anon_sym_reduce] = ACTIONS(217), - [anon_sym_select] = ACTIONS(219), - [anon_sym_insert] = ACTIONS(221), - [anon_sym_async] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(225), - [anon_sym_assert] = ACTIONS(227), - [anon_sym_assert_equal] = ACTIONS(227), - [anon_sym_download] = ACTIONS(227), - [anon_sym_help] = ACTIONS(227), - [anon_sym_length] = ACTIONS(227), - [anon_sym_output] = ACTIONS(227), - [anon_sym_output_error] = ACTIONS(227), - [anon_sym_type] = ACTIONS(227), - [anon_sym_append] = ACTIONS(227), - [anon_sym_metadata] = ACTIONS(227), - [anon_sym_move] = ACTIONS(227), - [anon_sym_read] = ACTIONS(227), - [anon_sym_workdir] = ACTIONS(227), - [anon_sym_write] = ACTIONS(227), - [anon_sym_from_json] = ACTIONS(227), - [anon_sym_to_json] = ACTIONS(227), - [anon_sym_to_string] = ACTIONS(227), - [anon_sym_to_float] = ACTIONS(227), - [anon_sym_bash] = ACTIONS(227), - [anon_sym_fish] = ACTIONS(227), - [anon_sym_raw] = ACTIONS(227), - [anon_sym_sh] = ACTIONS(227), - [anon_sym_zsh] = ACTIONS(227), - [anon_sym_random] = ACTIONS(227), - [anon_sym_random_boolean] = ACTIONS(227), - [anon_sym_random_float] = ACTIONS(227), - [anon_sym_random_integer] = ACTIONS(227), - [anon_sym_columns] = ACTIONS(227), - [anon_sym_rows] = ACTIONS(227), - [anon_sym_reverse] = ACTIONS(227), + [anon_sym_LBRACE] = ACTIONS(1013), + [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(227), + [anon_sym_match] = ACTIONS(871), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(873), + [anon_sym_for] = ACTIONS(875), + [anon_sym_asyncfor] = ACTIONS(877), + [anon_sym_transform] = ACTIONS(879), + [anon_sym_filter] = ACTIONS(881), + [anon_sym_find] = ACTIONS(883), + [anon_sym_remove] = ACTIONS(885), + [anon_sym_reduce] = ACTIONS(887), + [anon_sym_select] = ACTIONS(889), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(891), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [249] = { - [sym_block] = STATE(1060), - [sym_statement] = STATE(382), - [sym_expression] = STATE(934), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(842), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(983), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [aux_sym_block_repeat1] = STATE(382), - [sym_identifier] = ACTIONS(2162), + [sym_block] = STATE(418), + [sym_statement] = STATE(8), + [sym_expression] = STATE(355), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(346), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1225), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(170), + [aux_sym_block_repeat1] = STATE(8), + [sym_identifier] = ACTIONS(55), [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(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(1570), - [anon_sym_match] = ACTIONS(2166), - [anon_sym_EQ_GT] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(2168), - [anon_sym_for] = ACTIONS(2170), - [anon_sym_asyncfor] = ACTIONS(2172), - [anon_sym_transform] = ACTIONS(2174), - [anon_sym_filter] = ACTIONS(2176), - [anon_sym_find] = ACTIONS(2178), - [anon_sym_remove] = ACTIONS(2180), - [anon_sym_reduce] = ACTIONS(2182), - [anon_sym_select] = ACTIONS(2184), - [anon_sym_insert] = ACTIONS(1224), - [anon_sym_async] = ACTIONS(2186), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1228), - [anon_sym_assert] = ACTIONS(1230), - [anon_sym_assert_equal] = ACTIONS(1230), - [anon_sym_download] = ACTIONS(1230), - [anon_sym_help] = ACTIONS(1230), - [anon_sym_length] = ACTIONS(1230), - [anon_sym_output] = ACTIONS(1230), - [anon_sym_output_error] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_append] = ACTIONS(1230), - [anon_sym_metadata] = ACTIONS(1230), - [anon_sym_move] = ACTIONS(1230), - [anon_sym_read] = ACTIONS(1230), - [anon_sym_workdir] = ACTIONS(1230), - [anon_sym_write] = ACTIONS(1230), - [anon_sym_from_json] = ACTIONS(1230), - [anon_sym_to_json] = ACTIONS(1230), - [anon_sym_to_string] = ACTIONS(1230), - [anon_sym_to_float] = ACTIONS(1230), - [anon_sym_bash] = ACTIONS(1230), - [anon_sym_fish] = ACTIONS(1230), - [anon_sym_raw] = ACTIONS(1230), - [anon_sym_sh] = ACTIONS(1230), - [anon_sym_zsh] = ACTIONS(1230), - [anon_sym_random] = ACTIONS(1230), - [anon_sym_random_boolean] = ACTIONS(1230), - [anon_sym_random_float] = ACTIONS(1230), - [anon_sym_random_integer] = ACTIONS(1230), - [anon_sym_columns] = ACTIONS(1230), - [anon_sym_rows] = ACTIONS(1230), - [anon_sym_reverse] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = 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_asyncfor] = ACTIONS(91), + [anon_sym_transform] = ACTIONS(93), + [anon_sym_filter] = ACTIONS(95), + [anon_sym_find] = ACTIONS(97), + [anon_sym_remove] = ACTIONS(99), + [anon_sym_reduce] = ACTIONS(101), + [anon_sym_select] = ACTIONS(103), + [anon_sym_insert] = ACTIONS(105), + [anon_sym_async] = ACTIONS(107), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(111), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_assert_equal] = ACTIONS(113), + [anon_sym_download] = ACTIONS(113), + [anon_sym_help] = ACTIONS(113), + [anon_sym_length] = ACTIONS(113), + [anon_sym_output] = ACTIONS(113), + [anon_sym_output_error] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_append] = ACTIONS(113), + [anon_sym_metadata] = ACTIONS(113), + [anon_sym_move] = ACTIONS(113), + [anon_sym_read] = ACTIONS(113), + [anon_sym_workdir] = ACTIONS(113), + [anon_sym_write] = ACTIONS(113), + [anon_sym_from_json] = ACTIONS(113), + [anon_sym_to_json] = ACTIONS(113), + [anon_sym_to_string] = ACTIONS(113), + [anon_sym_to_float] = ACTIONS(113), + [anon_sym_bash] = ACTIONS(113), + [anon_sym_fish] = ACTIONS(113), + [anon_sym_raw] = ACTIONS(113), + [anon_sym_sh] = ACTIONS(113), + [anon_sym_zsh] = ACTIONS(113), + [anon_sym_random] = ACTIONS(113), + [anon_sym_random_boolean] = ACTIONS(113), + [anon_sym_random_float] = ACTIONS(113), + [anon_sym_random_integer] = ACTIONS(113), + [anon_sym_columns] = ACTIONS(113), + [anon_sym_rows] = ACTIONS(113), + [anon_sym_reverse] = ACTIONS(113), }, [250] = { - [sym_block] = STATE(879), - [sym_statement] = STATE(57), - [sym_expression] = STATE(853), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(776), - [sym_math] = STATE(866), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(866), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(710), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1823), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(366), - [aux_sym_block_repeat1] = STATE(57), - [sym_identifier] = ACTIONS(1436), + [sym_block] = STATE(494), + [sym_statement] = STATE(17), + [sym_expression] = STATE(402), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(348), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1104), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(17), + [sym_identifier] = ACTIONS(187), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -33675,528 +30754,454 @@ 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(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(843), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_EQ_GT] = ACTIONS(1442), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_for] = ACTIONS(1446), - [anon_sym_asyncfor] = ACTIONS(1448), - [anon_sym_transform] = ACTIONS(1450), - [anon_sym_filter] = ACTIONS(1452), - [anon_sym_find] = ACTIONS(1454), - [anon_sym_remove] = ACTIONS(1456), - [anon_sym_reduce] = ACTIONS(1458), - [anon_sym_select] = ACTIONS(1460), - [anon_sym_insert] = ACTIONS(1462), - [anon_sym_async] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1466), - [anon_sym_assert] = ACTIONS(1468), - [anon_sym_assert_equal] = ACTIONS(1468), - [anon_sym_download] = ACTIONS(1468), - [anon_sym_help] = ACTIONS(1468), - [anon_sym_length] = ACTIONS(1468), - [anon_sym_output] = ACTIONS(1468), - [anon_sym_output_error] = ACTIONS(1468), - [anon_sym_type] = ACTIONS(1468), - [anon_sym_append] = ACTIONS(1468), - [anon_sym_metadata] = ACTIONS(1468), - [anon_sym_move] = ACTIONS(1468), - [anon_sym_read] = ACTIONS(1468), - [anon_sym_workdir] = ACTIONS(1468), - [anon_sym_write] = ACTIONS(1468), - [anon_sym_from_json] = ACTIONS(1468), - [anon_sym_to_json] = ACTIONS(1468), - [anon_sym_to_string] = ACTIONS(1468), - [anon_sym_to_float] = ACTIONS(1468), - [anon_sym_bash] = ACTIONS(1468), - [anon_sym_fish] = ACTIONS(1468), - [anon_sym_raw] = ACTIONS(1468), - [anon_sym_sh] = ACTIONS(1468), - [anon_sym_zsh] = ACTIONS(1468), - [anon_sym_random] = ACTIONS(1468), - [anon_sym_random_boolean] = ACTIONS(1468), - [anon_sym_random_float] = ACTIONS(1468), - [anon_sym_random_integer] = ACTIONS(1468), - [anon_sym_columns] = ACTIONS(1468), - [anon_sym_rows] = ACTIONS(1468), - [anon_sym_reverse] = ACTIONS(1468), + [anon_sym_if] = ACTIONS(79), + [anon_sym_match] = ACTIONS(193), + [anon_sym_EQ_GT] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_for] = ACTIONS(199), + [anon_sym_asyncfor] = ACTIONS(201), + [anon_sym_transform] = ACTIONS(203), + [anon_sym_filter] = ACTIONS(205), + [anon_sym_find] = ACTIONS(207), + [anon_sym_remove] = ACTIONS(209), + [anon_sym_reduce] = ACTIONS(211), + [anon_sym_select] = ACTIONS(213), + [anon_sym_insert] = ACTIONS(215), + [anon_sym_async] = ACTIONS(217), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(219), + [anon_sym_assert] = ACTIONS(221), + [anon_sym_assert_equal] = ACTIONS(221), + [anon_sym_download] = ACTIONS(221), + [anon_sym_help] = ACTIONS(221), + [anon_sym_length] = ACTIONS(221), + [anon_sym_output] = ACTIONS(221), + [anon_sym_output_error] = ACTIONS(221), + [anon_sym_type] = ACTIONS(221), + [anon_sym_append] = ACTIONS(221), + [anon_sym_metadata] = ACTIONS(221), + [anon_sym_move] = ACTIONS(221), + [anon_sym_read] = ACTIONS(221), + [anon_sym_workdir] = ACTIONS(221), + [anon_sym_write] = ACTIONS(221), + [anon_sym_from_json] = ACTIONS(221), + [anon_sym_to_json] = ACTIONS(221), + [anon_sym_to_string] = ACTIONS(221), + [anon_sym_to_float] = ACTIONS(221), + [anon_sym_bash] = ACTIONS(221), + [anon_sym_fish] = ACTIONS(221), + [anon_sym_raw] = ACTIONS(221), + [anon_sym_sh] = ACTIONS(221), + [anon_sym_zsh] = ACTIONS(221), + [anon_sym_random] = ACTIONS(221), + [anon_sym_random_boolean] = ACTIONS(221), + [anon_sym_random_float] = ACTIONS(221), + [anon_sym_random_integer] = ACTIONS(221), + [anon_sym_columns] = ACTIONS(221), + [anon_sym_rows] = ACTIONS(221), + [anon_sym_reverse] = ACTIONS(221), }, [251] = { - [sym_block] = STATE(738), - [sym_statement] = STATE(35), - [sym_expression] = STATE(701), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(706), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(582), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1866), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(320), - [aux_sym_block_repeat1] = STATE(35), - [sym_identifier] = ACTIONS(149), + [sym_block] = STATE(641), + [sym_statement] = STATE(226), + [sym_expression] = STATE(535), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(561), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [aux_sym_block_repeat1] = STATE(226), + [sym_identifier] = ACTIONS(5), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(197), - [anon_sym_match] = ACTIONS(497), - [anon_sym_EQ_GT] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_asyncfor] = ACTIONS(505), - [anon_sym_transform] = ACTIONS(507), - [anon_sym_filter] = ACTIONS(509), - [anon_sym_find] = ACTIONS(511), - [anon_sym_remove] = ACTIONS(513), - [anon_sym_reduce] = ACTIONS(515), - [anon_sym_select] = ACTIONS(517), - [anon_sym_insert] = ACTIONS(519), - [anon_sym_async] = ACTIONS(521), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(523), - [anon_sym_assert] = ACTIONS(525), - [anon_sym_assert_equal] = ACTIONS(525), - [anon_sym_download] = ACTIONS(525), - [anon_sym_help] = ACTIONS(525), - [anon_sym_length] = ACTIONS(525), - [anon_sym_output] = ACTIONS(525), - [anon_sym_output_error] = ACTIONS(525), - [anon_sym_type] = ACTIONS(525), - [anon_sym_append] = ACTIONS(525), - [anon_sym_metadata] = ACTIONS(525), - [anon_sym_move] = ACTIONS(525), - [anon_sym_read] = ACTIONS(525), - [anon_sym_workdir] = ACTIONS(525), - [anon_sym_write] = ACTIONS(525), - [anon_sym_from_json] = ACTIONS(525), - [anon_sym_to_json] = ACTIONS(525), - [anon_sym_to_string] = ACTIONS(525), - [anon_sym_to_float] = ACTIONS(525), - [anon_sym_bash] = ACTIONS(525), - [anon_sym_fish] = ACTIONS(525), - [anon_sym_raw] = ACTIONS(525), - [anon_sym_sh] = ACTIONS(525), - [anon_sym_zsh] = ACTIONS(525), - [anon_sym_random] = ACTIONS(525), - [anon_sym_random_boolean] = ACTIONS(525), - [anon_sym_random_float] = ACTIONS(525), - [anon_sym_random_integer] = ACTIONS(525), - [anon_sym_columns] = ACTIONS(525), - [anon_sym_rows] = ACTIONS(525), - [anon_sym_reverse] = ACTIONS(525), + [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_asyncfor] = 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_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [252] = { - [sym_block] = STATE(737), - [sym_statement] = STATE(35), - [sym_expression] = STATE(701), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_math_operator] = STATE(1153), - [sym_logic] = STATE(706), - [sym_logic_operator] = STATE(1077), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(582), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1866), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(320), - [aux_sym_block_repeat1] = STATE(35), - [sym_identifier] = ACTIONS(149), + [sym_block] = STATE(497), + [sym_statement] = STATE(22), + [sym_expression] = STATE(449), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(353), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [aux_sym_block_repeat1] = STATE(22), + [sym_identifier] = ACTIONS(259), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(197), - [anon_sym_match] = ACTIONS(497), - [anon_sym_EQ_GT] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_asyncfor] = ACTIONS(505), - [anon_sym_transform] = ACTIONS(507), - [anon_sym_filter] = ACTIONS(509), - [anon_sym_find] = ACTIONS(511), - [anon_sym_remove] = ACTIONS(513), - [anon_sym_reduce] = ACTIONS(515), - [anon_sym_select] = ACTIONS(517), - [anon_sym_insert] = ACTIONS(519), - [anon_sym_async] = ACTIONS(521), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(523), - [anon_sym_assert] = ACTIONS(525), - [anon_sym_assert_equal] = ACTIONS(525), - [anon_sym_download] = ACTIONS(525), - [anon_sym_help] = ACTIONS(525), - [anon_sym_length] = ACTIONS(525), - [anon_sym_output] = ACTIONS(525), - [anon_sym_output_error] = ACTIONS(525), - [anon_sym_type] = ACTIONS(525), - [anon_sym_append] = ACTIONS(525), - [anon_sym_metadata] = ACTIONS(525), - [anon_sym_move] = ACTIONS(525), - [anon_sym_read] = ACTIONS(525), - [anon_sym_workdir] = ACTIONS(525), - [anon_sym_write] = ACTIONS(525), - [anon_sym_from_json] = ACTIONS(525), - [anon_sym_to_json] = ACTIONS(525), - [anon_sym_to_string] = ACTIONS(525), - [anon_sym_to_float] = ACTIONS(525), - [anon_sym_bash] = ACTIONS(525), - [anon_sym_fish] = ACTIONS(525), - [anon_sym_raw] = ACTIONS(525), - [anon_sym_sh] = ACTIONS(525), - [anon_sym_zsh] = ACTIONS(525), - [anon_sym_random] = ACTIONS(525), - [anon_sym_random_boolean] = ACTIONS(525), - [anon_sym_random_float] = ACTIONS(525), - [anon_sym_random_integer] = ACTIONS(525), - [anon_sym_columns] = ACTIONS(525), - [anon_sym_rows] = ACTIONS(525), - [anon_sym_reverse] = ACTIONS(525), + [anon_sym_LBRACE] = ACTIONS(189), + [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(119), + [anon_sym_match] = ACTIONS(263), + [anon_sym_EQ_GT] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_for] = ACTIONS(269), + [anon_sym_asyncfor] = ACTIONS(271), + [anon_sym_transform] = ACTIONS(273), + [anon_sym_filter] = ACTIONS(275), + [anon_sym_find] = ACTIONS(277), + [anon_sym_remove] = ACTIONS(279), + [anon_sym_reduce] = ACTIONS(281), + [anon_sym_select] = ACTIONS(283), + [anon_sym_insert] = ACTIONS(285), + [anon_sym_async] = ACTIONS(287), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(289), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_assert_equal] = ACTIONS(291), + [anon_sym_download] = ACTIONS(291), + [anon_sym_help] = ACTIONS(291), + [anon_sym_length] = ACTIONS(291), + [anon_sym_output] = ACTIONS(291), + [anon_sym_output_error] = ACTIONS(291), + [anon_sym_type] = ACTIONS(291), + [anon_sym_append] = ACTIONS(291), + [anon_sym_metadata] = ACTIONS(291), + [anon_sym_move] = ACTIONS(291), + [anon_sym_read] = ACTIONS(291), + [anon_sym_workdir] = ACTIONS(291), + [anon_sym_write] = ACTIONS(291), + [anon_sym_from_json] = ACTIONS(291), + [anon_sym_to_json] = ACTIONS(291), + [anon_sym_to_string] = ACTIONS(291), + [anon_sym_to_float] = ACTIONS(291), + [anon_sym_bash] = ACTIONS(291), + [anon_sym_fish] = ACTIONS(291), + [anon_sym_raw] = ACTIONS(291), + [anon_sym_sh] = ACTIONS(291), + [anon_sym_zsh] = ACTIONS(291), + [anon_sym_random] = ACTIONS(291), + [anon_sym_random_boolean] = ACTIONS(291), + [anon_sym_random_float] = ACTIONS(291), + [anon_sym_random_integer] = ACTIONS(291), + [anon_sym_columns] = ACTIONS(291), + [anon_sym_rows] = ACTIONS(291), + [anon_sym_reverse] = ACTIONS(291), }, [253] = { - [sym_statement] = STATE(56), - [sym_expression] = STATE(853), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(776), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(710), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1823), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(366), - [aux_sym_block_repeat1] = STATE(56), - [sym_identifier] = ACTIONS(1436), + [sym_block] = STATE(400), + [sym_statement] = STATE(11), + [sym_expression] = STATE(364), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(349), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1100), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(181), + [aux_sym_block_repeat1] = STATE(11), + [sym_identifier] = ACTIONS(115), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(419), - [sym_integer] = ACTIONS(11), - [sym_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(419), - [anon_sym_DOT_DOT] = ACTIONS(419), - [anon_sym_PLUS] = ACTIONS(419), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_STAR] = ACTIONS(419), - [anon_sym_SLASH] = ACTIONS(419), - [anon_sym_PERCENT] = ACTIONS(419), - [anon_sym_EQ_EQ] = ACTIONS(419), - [anon_sym_BANG_EQ] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(442), - [anon_sym_LT] = ACTIONS(442), - [anon_sym_GT_EQ] = ACTIONS(419), - [anon_sym_LT_EQ] = ACTIONS(419), - [anon_sym_if] = ACTIONS(843), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_EQ_GT] = ACTIONS(1442), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_for] = ACTIONS(1446), - [anon_sym_asyncfor] = ACTIONS(1448), - [anon_sym_transform] = ACTIONS(1450), - [anon_sym_filter] = ACTIONS(1452), - [anon_sym_find] = ACTIONS(1454), - [anon_sym_remove] = ACTIONS(1456), - [anon_sym_reduce] = ACTIONS(1458), - [anon_sym_select] = ACTIONS(1460), - [anon_sym_insert] = ACTIONS(1462), - [anon_sym_async] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1466), - [anon_sym_assert] = ACTIONS(1468), - [anon_sym_assert_equal] = ACTIONS(1468), - [anon_sym_download] = ACTIONS(1468), - [anon_sym_help] = ACTIONS(1468), - [anon_sym_length] = ACTIONS(1468), - [anon_sym_output] = ACTIONS(1468), - [anon_sym_output_error] = ACTIONS(1468), - [anon_sym_type] = ACTIONS(1468), - [anon_sym_append] = ACTIONS(1468), - [anon_sym_metadata] = ACTIONS(1468), - [anon_sym_move] = ACTIONS(1468), - [anon_sym_read] = ACTIONS(1468), - [anon_sym_workdir] = ACTIONS(1468), - [anon_sym_write] = ACTIONS(1468), - [anon_sym_from_json] = ACTIONS(1468), - [anon_sym_to_json] = ACTIONS(1468), - [anon_sym_to_string] = ACTIONS(1468), - [anon_sym_to_float] = ACTIONS(1468), - [anon_sym_bash] = ACTIONS(1468), - [anon_sym_fish] = ACTIONS(1468), - [anon_sym_raw] = ACTIONS(1468), - [anon_sym_sh] = ACTIONS(1468), - [anon_sym_zsh] = ACTIONS(1468), - [anon_sym_random] = ACTIONS(1468), - [anon_sym_random_boolean] = ACTIONS(1468), - [anon_sym_random_float] = ACTIONS(1468), - [anon_sym_random_integer] = ACTIONS(1468), - [anon_sym_columns] = ACTIONS(1468), - [anon_sym_rows] = ACTIONS(1468), - [anon_sym_reverse] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_EQ_GT] = ACTIONS(123), + [anon_sym_while] = ACTIONS(125), + [anon_sym_for] = ACTIONS(127), + [anon_sym_asyncfor] = ACTIONS(129), + [anon_sym_transform] = ACTIONS(131), + [anon_sym_filter] = ACTIONS(133), + [anon_sym_find] = ACTIONS(135), + [anon_sym_remove] = ACTIONS(137), + [anon_sym_reduce] = ACTIONS(139), + [anon_sym_select] = ACTIONS(141), + [anon_sym_insert] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(147), + [anon_sym_assert] = ACTIONS(149), + [anon_sym_assert_equal] = ACTIONS(149), + [anon_sym_download] = ACTIONS(149), + [anon_sym_help] = ACTIONS(149), + [anon_sym_length] = ACTIONS(149), + [anon_sym_output] = ACTIONS(149), + [anon_sym_output_error] = ACTIONS(149), + [anon_sym_type] = ACTIONS(149), + [anon_sym_append] = ACTIONS(149), + [anon_sym_metadata] = ACTIONS(149), + [anon_sym_move] = ACTIONS(149), + [anon_sym_read] = ACTIONS(149), + [anon_sym_workdir] = ACTIONS(149), + [anon_sym_write] = ACTIONS(149), + [anon_sym_from_json] = ACTIONS(149), + [anon_sym_to_json] = ACTIONS(149), + [anon_sym_to_string] = ACTIONS(149), + [anon_sym_to_float] = ACTIONS(149), + [anon_sym_bash] = ACTIONS(149), + [anon_sym_fish] = ACTIONS(149), + [anon_sym_raw] = ACTIONS(149), + [anon_sym_sh] = ACTIONS(149), + [anon_sym_zsh] = ACTIONS(149), + [anon_sym_random] = ACTIONS(149), + [anon_sym_random_boolean] = ACTIONS(149), + [anon_sym_random_float] = ACTIONS(149), + [anon_sym_random_integer] = ACTIONS(149), + [anon_sym_columns] = ACTIONS(149), + [anon_sym_rows] = ACTIONS(149), + [anon_sym_reverse] = ACTIONS(149), }, [254] = { - [sym_statement] = STATE(59), - [sym_expression] = STATE(888), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(822), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(787), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(59), - [sym_identifier] = ACTIONS(1846), + [sym_block] = STATE(428), + [sym_statement] = STATE(26), + [sym_expression] = STATE(448), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(414), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1085), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(203), + [aux_sym_block_repeat1] = STATE(26), + [sym_identifier] = ACTIONS(223), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(419), - [sym_integer] = ACTIONS(11), - [sym_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(419), - [anon_sym_PLUS] = ACTIONS(419), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_STAR] = ACTIONS(419), - [anon_sym_SLASH] = ACTIONS(419), - [anon_sym_PERCENT] = ACTIONS(419), - [anon_sym_EQ_EQ] = ACTIONS(419), - [anon_sym_BANG_EQ] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(442), - [anon_sym_LT] = ACTIONS(442), - [anon_sym_GT_EQ] = ACTIONS(419), - [anon_sym_LT_EQ] = ACTIONS(419), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_match] = ACTIONS(1850), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(1852), - [anon_sym_for] = ACTIONS(1854), - [anon_sym_asyncfor] = ACTIONS(1856), - [anon_sym_transform] = ACTIONS(1858), - [anon_sym_filter] = ACTIONS(1860), - [anon_sym_find] = ACTIONS(1862), - [anon_sym_remove] = ACTIONS(1864), - [anon_sym_reduce] = ACTIONS(1866), - [anon_sym_select] = ACTIONS(1868), - [anon_sym_insert] = ACTIONS(43), - [anon_sym_async] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(49), - [anon_sym_assert] = ACTIONS(51), - [anon_sym_assert_equal] = ACTIONS(51), - [anon_sym_download] = ACTIONS(51), - [anon_sym_help] = ACTIONS(51), - [anon_sym_length] = ACTIONS(51), - [anon_sym_output] = ACTIONS(51), - [anon_sym_output_error] = ACTIONS(51), - [anon_sym_type] = ACTIONS(51), - [anon_sym_append] = ACTIONS(51), - [anon_sym_metadata] = ACTIONS(51), - [anon_sym_move] = ACTIONS(51), - [anon_sym_read] = ACTIONS(51), - [anon_sym_workdir] = ACTIONS(51), - [anon_sym_write] = ACTIONS(51), - [anon_sym_from_json] = ACTIONS(51), - [anon_sym_to_json] = ACTIONS(51), - [anon_sym_to_string] = ACTIONS(51), - [anon_sym_to_float] = ACTIONS(51), - [anon_sym_bash] = ACTIONS(51), - [anon_sym_fish] = ACTIONS(51), - [anon_sym_raw] = ACTIONS(51), - [anon_sym_sh] = ACTIONS(51), - [anon_sym_zsh] = ACTIONS(51), - [anon_sym_random] = ACTIONS(51), - [anon_sym_random_boolean] = ACTIONS(51), - [anon_sym_random_float] = ACTIONS(51), - [anon_sym_random_integer] = ACTIONS(51), - [anon_sym_columns] = ACTIONS(51), - [anon_sym_rows] = ACTIONS(51), - [anon_sym_reverse] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_if] = ACTIONS(227), + [anon_sym_match] = ACTIONS(229), + [anon_sym_EQ_GT] = ACTIONS(231), + [anon_sym_while] = ACTIONS(233), + [anon_sym_for] = ACTIONS(235), + [anon_sym_asyncfor] = ACTIONS(237), + [anon_sym_transform] = ACTIONS(239), + [anon_sym_filter] = ACTIONS(241), + [anon_sym_find] = ACTIONS(243), + [anon_sym_remove] = ACTIONS(245), + [anon_sym_reduce] = ACTIONS(247), + [anon_sym_select] = ACTIONS(249), + [anon_sym_insert] = ACTIONS(251), + [anon_sym_async] = ACTIONS(253), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(255), + [anon_sym_assert] = ACTIONS(257), + [anon_sym_assert_equal] = ACTIONS(257), + [anon_sym_download] = ACTIONS(257), + [anon_sym_help] = ACTIONS(257), + [anon_sym_length] = ACTIONS(257), + [anon_sym_output] = ACTIONS(257), + [anon_sym_output_error] = ACTIONS(257), + [anon_sym_type] = ACTIONS(257), + [anon_sym_append] = ACTIONS(257), + [anon_sym_metadata] = ACTIONS(257), + [anon_sym_move] = ACTIONS(257), + [anon_sym_read] = ACTIONS(257), + [anon_sym_workdir] = ACTIONS(257), + [anon_sym_write] = ACTIONS(257), + [anon_sym_from_json] = ACTIONS(257), + [anon_sym_to_json] = ACTIONS(257), + [anon_sym_to_string] = ACTIONS(257), + [anon_sym_to_float] = ACTIONS(257), + [anon_sym_bash] = ACTIONS(257), + [anon_sym_fish] = ACTIONS(257), + [anon_sym_raw] = ACTIONS(257), + [anon_sym_sh] = ACTIONS(257), + [anon_sym_zsh] = ACTIONS(257), + [anon_sym_random] = ACTIONS(257), + [anon_sym_random_boolean] = ACTIONS(257), + [anon_sym_random_float] = ACTIONS(257), + [anon_sym_random_integer] = ACTIONS(257), + [anon_sym_columns] = ACTIONS(257), + [anon_sym_rows] = ACTIONS(257), + [anon_sym_reverse] = ACTIONS(257), }, [255] = { - [sym_statement] = STATE(56), - [sym_expression] = STATE(853), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(776), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(710), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1823), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(366), - [aux_sym_block_repeat1] = STATE(56), - [sym_identifier] = ACTIONS(1436), + [sym_block] = STATE(464), + [sym_statement] = STATE(22), + [sym_expression] = STATE(449), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(353), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [aux_sym_block_repeat1] = STATE(22), + [sym_identifier] = ACTIONS(259), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -34204,314 +31209,272 @@ 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(419), - [anon_sym_DOT_DOT] = ACTIONS(419), - [anon_sym_PLUS] = ACTIONS(419), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_STAR] = ACTIONS(419), - [anon_sym_SLASH] = ACTIONS(419), - [anon_sym_PERCENT] = ACTIONS(419), - [anon_sym_EQ_EQ] = ACTIONS(419), - [anon_sym_BANG_EQ] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(442), - [anon_sym_LT] = ACTIONS(442), - [anon_sym_GT_EQ] = ACTIONS(419), - [anon_sym_LT_EQ] = ACTIONS(419), - [anon_sym_if] = ACTIONS(843), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_EQ_GT] = ACTIONS(2293), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_for] = ACTIONS(1446), - [anon_sym_asyncfor] = ACTIONS(1448), - [anon_sym_transform] = ACTIONS(1450), - [anon_sym_filter] = ACTIONS(1452), - [anon_sym_find] = ACTIONS(1454), - [anon_sym_remove] = ACTIONS(1456), - [anon_sym_reduce] = ACTIONS(1458), - [anon_sym_select] = ACTIONS(1460), - [anon_sym_insert] = ACTIONS(1462), - [anon_sym_async] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1466), - [anon_sym_assert] = ACTIONS(1468), - [anon_sym_assert_equal] = ACTIONS(1468), - [anon_sym_download] = ACTIONS(1468), - [anon_sym_help] = ACTIONS(1468), - [anon_sym_length] = ACTIONS(1468), - [anon_sym_output] = ACTIONS(1468), - [anon_sym_output_error] = ACTIONS(1468), - [anon_sym_type] = ACTIONS(1468), - [anon_sym_append] = ACTIONS(1468), - [anon_sym_metadata] = ACTIONS(1468), - [anon_sym_move] = ACTIONS(1468), - [anon_sym_read] = ACTIONS(1468), - [anon_sym_workdir] = ACTIONS(1468), - [anon_sym_write] = ACTIONS(1468), - [anon_sym_from_json] = ACTIONS(1468), - [anon_sym_to_json] = ACTIONS(1468), - [anon_sym_to_string] = ACTIONS(1468), - [anon_sym_to_float] = ACTIONS(1468), - [anon_sym_bash] = ACTIONS(1468), - [anon_sym_fish] = ACTIONS(1468), - [anon_sym_raw] = ACTIONS(1468), - [anon_sym_sh] = ACTIONS(1468), - [anon_sym_zsh] = ACTIONS(1468), - [anon_sym_random] = ACTIONS(1468), - [anon_sym_random_boolean] = ACTIONS(1468), - [anon_sym_random_float] = ACTIONS(1468), - [anon_sym_random_integer] = ACTIONS(1468), - [anon_sym_columns] = ACTIONS(1468), - [anon_sym_rows] = ACTIONS(1468), - [anon_sym_reverse] = ACTIONS(1468), + [anon_sym_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(263), + [anon_sym_EQ_GT] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_for] = ACTIONS(269), + [anon_sym_asyncfor] = ACTIONS(271), + [anon_sym_transform] = ACTIONS(273), + [anon_sym_filter] = ACTIONS(275), + [anon_sym_find] = ACTIONS(277), + [anon_sym_remove] = ACTIONS(279), + [anon_sym_reduce] = ACTIONS(281), + [anon_sym_select] = ACTIONS(283), + [anon_sym_insert] = ACTIONS(285), + [anon_sym_async] = ACTIONS(287), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(289), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_assert_equal] = ACTIONS(291), + [anon_sym_download] = ACTIONS(291), + [anon_sym_help] = ACTIONS(291), + [anon_sym_length] = ACTIONS(291), + [anon_sym_output] = ACTIONS(291), + [anon_sym_output_error] = ACTIONS(291), + [anon_sym_type] = ACTIONS(291), + [anon_sym_append] = ACTIONS(291), + [anon_sym_metadata] = ACTIONS(291), + [anon_sym_move] = ACTIONS(291), + [anon_sym_read] = ACTIONS(291), + [anon_sym_workdir] = ACTIONS(291), + [anon_sym_write] = ACTIONS(291), + [anon_sym_from_json] = ACTIONS(291), + [anon_sym_to_json] = ACTIONS(291), + [anon_sym_to_string] = ACTIONS(291), + [anon_sym_to_float] = ACTIONS(291), + [anon_sym_bash] = ACTIONS(291), + [anon_sym_fish] = ACTIONS(291), + [anon_sym_raw] = ACTIONS(291), + [anon_sym_sh] = ACTIONS(291), + [anon_sym_zsh] = ACTIONS(291), + [anon_sym_random] = ACTIONS(291), + [anon_sym_random_boolean] = ACTIONS(291), + [anon_sym_random_float] = ACTIONS(291), + [anon_sym_random_integer] = ACTIONS(291), + [anon_sym_columns] = ACTIONS(291), + [anon_sym_rows] = ACTIONS(291), + [anon_sym_reverse] = ACTIONS(291), }, [256] = { - [sym_statement] = STATE(56), - [sym_expression] = STATE(853), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(776), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(710), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1823), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(366), - [aux_sym_block_repeat1] = STATE(56), - [sym_identifier] = ACTIONS(2287), + [sym_block] = STATE(434), + [sym_statement] = STATE(16), + [sym_expression] = STATE(387), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(366), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1210), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(186), + [aux_sym_block_repeat1] = STATE(16), + [sym_identifier] = ACTIONS(151), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(1786), - [sym_integer] = ACTIONS(1789), - [sym_float] = ACTIONS(1792), - [sym_string] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1795), - [anon_sym_false] = ACTIONS(1795), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_COLON] = ACTIONS(419), - [anon_sym_DOT_DOT] = ACTIONS(419), - [anon_sym_PLUS] = ACTIONS(419), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_STAR] = ACTIONS(419), - [anon_sym_SLASH] = ACTIONS(419), - [anon_sym_PERCENT] = ACTIONS(419), - [anon_sym_EQ_EQ] = ACTIONS(419), - [anon_sym_BANG_EQ] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(442), - [anon_sym_LT] = ACTIONS(442), - [anon_sym_GT_EQ] = ACTIONS(419), - [anon_sym_LT_EQ] = ACTIONS(419), - [anon_sym_if] = ACTIONS(843), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_EQ_GT] = ACTIONS(2293), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_for] = ACTIONS(1446), - [anon_sym_asyncfor] = ACTIONS(1448), - [anon_sym_transform] = ACTIONS(1450), - [anon_sym_filter] = ACTIONS(1452), - [anon_sym_find] = ACTIONS(1454), - [anon_sym_remove] = ACTIONS(1456), - [anon_sym_reduce] = ACTIONS(1458), - [anon_sym_select] = ACTIONS(1460), - [anon_sym_insert] = ACTIONS(1462), - [anon_sym_async] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(486), - [anon_sym_table] = ACTIONS(2329), - [anon_sym_assert] = ACTIONS(2332), - [anon_sym_assert_equal] = ACTIONS(2332), - [anon_sym_download] = ACTIONS(2332), - [anon_sym_help] = ACTIONS(2332), - [anon_sym_length] = ACTIONS(2332), - [anon_sym_output] = ACTIONS(2332), - [anon_sym_output_error] = ACTIONS(2332), - [anon_sym_type] = ACTIONS(2332), - [anon_sym_append] = ACTIONS(2332), - [anon_sym_metadata] = ACTIONS(2332), - [anon_sym_move] = ACTIONS(2332), - [anon_sym_read] = ACTIONS(2332), - [anon_sym_workdir] = ACTIONS(2332), - [anon_sym_write] = ACTIONS(2332), - [anon_sym_from_json] = ACTIONS(2332), - [anon_sym_to_json] = ACTIONS(2332), - [anon_sym_to_string] = ACTIONS(2332), - [anon_sym_to_float] = ACTIONS(2332), - [anon_sym_bash] = ACTIONS(2332), - [anon_sym_fish] = ACTIONS(2332), - [anon_sym_raw] = ACTIONS(2332), - [anon_sym_sh] = ACTIONS(2332), - [anon_sym_zsh] = ACTIONS(2332), - [anon_sym_random] = ACTIONS(2332), - [anon_sym_random_boolean] = ACTIONS(2332), - [anon_sym_random_float] = ACTIONS(2332), - [anon_sym_random_integer] = ACTIONS(2332), - [anon_sym_columns] = ACTIONS(2332), - [anon_sym_rows] = ACTIONS(2332), - [anon_sym_reverse] = ACTIONS(2332), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_if] = ACTIONS(155), + [anon_sym_match] = ACTIONS(157), + [anon_sym_EQ_GT] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_asyncfor] = ACTIONS(165), + [anon_sym_transform] = ACTIONS(167), + [anon_sym_filter] = ACTIONS(169), + [anon_sym_find] = ACTIONS(171), + [anon_sym_remove] = ACTIONS(173), + [anon_sym_reduce] = ACTIONS(175), + [anon_sym_select] = ACTIONS(177), + [anon_sym_insert] = ACTIONS(179), + [anon_sym_async] = ACTIONS(181), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(183), + [anon_sym_assert] = ACTIONS(185), + [anon_sym_assert_equal] = ACTIONS(185), + [anon_sym_download] = ACTIONS(185), + [anon_sym_help] = ACTIONS(185), + [anon_sym_length] = ACTIONS(185), + [anon_sym_output] = ACTIONS(185), + [anon_sym_output_error] = ACTIONS(185), + [anon_sym_type] = ACTIONS(185), + [anon_sym_append] = ACTIONS(185), + [anon_sym_metadata] = ACTIONS(185), + [anon_sym_move] = ACTIONS(185), + [anon_sym_read] = ACTIONS(185), + [anon_sym_workdir] = ACTIONS(185), + [anon_sym_write] = ACTIONS(185), + [anon_sym_from_json] = ACTIONS(185), + [anon_sym_to_json] = ACTIONS(185), + [anon_sym_to_string] = ACTIONS(185), + [anon_sym_to_float] = ACTIONS(185), + [anon_sym_bash] = ACTIONS(185), + [anon_sym_fish] = ACTIONS(185), + [anon_sym_raw] = ACTIONS(185), + [anon_sym_sh] = ACTIONS(185), + [anon_sym_zsh] = ACTIONS(185), + [anon_sym_random] = ACTIONS(185), + [anon_sym_random_boolean] = ACTIONS(185), + [anon_sym_random_float] = ACTIONS(185), + [anon_sym_random_integer] = ACTIONS(185), + [anon_sym_columns] = ACTIONS(185), + [anon_sym_rows] = ACTIONS(185), + [anon_sym_reverse] = ACTIONS(185), }, [257] = { - [sym_statement] = STATE(56), - [sym_expression] = STATE(853), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(776), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(710), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1823), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(366), - [aux_sym_block_repeat1] = STATE(56), - [sym_identifier] = ACTIONS(2287), + [sym_block] = STATE(428), + [sym_statement] = STATE(16), + [sym_expression] = STATE(387), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(366), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1210), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(186), + [aux_sym_block_repeat1] = STATE(16), + [sym_identifier] = ACTIONS(151), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2383), - [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(419), - [anon_sym_DOT_DOT] = ACTIONS(419), - [anon_sym_PLUS] = ACTIONS(419), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_STAR] = ACTIONS(419), - [anon_sym_SLASH] = ACTIONS(419), - [anon_sym_PERCENT] = ACTIONS(419), - [anon_sym_EQ_EQ] = ACTIONS(419), - [anon_sym_BANG_EQ] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(442), - [anon_sym_LT] = ACTIONS(442), - [anon_sym_GT_EQ] = ACTIONS(419), - [anon_sym_LT_EQ] = ACTIONS(419), - [anon_sym_if] = ACTIONS(843), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_EQ_GT] = ACTIONS(1442), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_for] = ACTIONS(1446), - [anon_sym_asyncfor] = ACTIONS(1448), - [anon_sym_transform] = ACTIONS(1450), - [anon_sym_filter] = ACTIONS(1452), - [anon_sym_find] = ACTIONS(1454), - [anon_sym_remove] = ACTIONS(1456), - [anon_sym_reduce] = ACTIONS(1458), - [anon_sym_select] = ACTIONS(1460), - [anon_sym_insert] = ACTIONS(1462), - [anon_sym_async] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1466), - [anon_sym_assert] = ACTIONS(1468), - [anon_sym_assert_equal] = ACTIONS(1468), - [anon_sym_download] = ACTIONS(1468), - [anon_sym_help] = ACTIONS(1468), - [anon_sym_length] = ACTIONS(1468), - [anon_sym_output] = ACTIONS(1468), - [anon_sym_output_error] = ACTIONS(1468), - [anon_sym_type] = ACTIONS(1468), - [anon_sym_append] = ACTIONS(1468), - [anon_sym_metadata] = ACTIONS(1468), - [anon_sym_move] = ACTIONS(1468), - [anon_sym_read] = ACTIONS(1468), - [anon_sym_workdir] = ACTIONS(1468), - [anon_sym_write] = ACTIONS(1468), - [anon_sym_from_json] = ACTIONS(1468), - [anon_sym_to_json] = ACTIONS(1468), - [anon_sym_to_string] = ACTIONS(1468), - [anon_sym_to_float] = ACTIONS(1468), - [anon_sym_bash] = ACTIONS(1468), - [anon_sym_fish] = ACTIONS(1468), - [anon_sym_raw] = ACTIONS(1468), - [anon_sym_sh] = ACTIONS(1468), - [anon_sym_zsh] = ACTIONS(1468), - [anon_sym_random] = ACTIONS(1468), - [anon_sym_random_boolean] = ACTIONS(1468), - [anon_sym_random_float] = ACTIONS(1468), - [anon_sym_random_integer] = ACTIONS(1468), - [anon_sym_columns] = ACTIONS(1468), - [anon_sym_rows] = ACTIONS(1468), - [anon_sym_reverse] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_if] = ACTIONS(155), + [anon_sym_match] = ACTIONS(157), + [anon_sym_EQ_GT] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_asyncfor] = ACTIONS(165), + [anon_sym_transform] = ACTIONS(167), + [anon_sym_filter] = ACTIONS(169), + [anon_sym_find] = ACTIONS(171), + [anon_sym_remove] = ACTIONS(173), + [anon_sym_reduce] = ACTIONS(175), + [anon_sym_select] = ACTIONS(177), + [anon_sym_insert] = ACTIONS(179), + [anon_sym_async] = ACTIONS(181), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(183), + [anon_sym_assert] = ACTIONS(185), + [anon_sym_assert_equal] = ACTIONS(185), + [anon_sym_download] = ACTIONS(185), + [anon_sym_help] = ACTIONS(185), + [anon_sym_length] = ACTIONS(185), + [anon_sym_output] = ACTIONS(185), + [anon_sym_output_error] = ACTIONS(185), + [anon_sym_type] = ACTIONS(185), + [anon_sym_append] = ACTIONS(185), + [anon_sym_metadata] = ACTIONS(185), + [anon_sym_move] = ACTIONS(185), + [anon_sym_read] = ACTIONS(185), + [anon_sym_workdir] = ACTIONS(185), + [anon_sym_write] = ACTIONS(185), + [anon_sym_from_json] = ACTIONS(185), + [anon_sym_to_json] = ACTIONS(185), + [anon_sym_to_string] = ACTIONS(185), + [anon_sym_to_float] = ACTIONS(185), + [anon_sym_bash] = ACTIONS(185), + [anon_sym_fish] = ACTIONS(185), + [anon_sym_raw] = ACTIONS(185), + [anon_sym_sh] = ACTIONS(185), + [anon_sym_zsh] = ACTIONS(185), + [anon_sym_random] = ACTIONS(185), + [anon_sym_random_boolean] = ACTIONS(185), + [anon_sym_random_float] = ACTIONS(185), + [anon_sym_random_integer] = ACTIONS(185), + [anon_sym_columns] = ACTIONS(185), + [anon_sym_rows] = ACTIONS(185), + [anon_sym_reverse] = ACTIONS(185), }, [258] = { - [sym_statement] = STATE(59), - [sym_expression] = STATE(888), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(822), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(787), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(59), - [sym_identifier] = ACTIONS(2385), + [sym_block] = STATE(494), + [sym_statement] = STATE(22), + [sym_expression] = STATE(449), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(353), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [aux_sym_block_repeat1] = STATE(22), + [sym_identifier] = ACTIONS(259), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -34519,61117 +31482,25019 @@ 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(419), - [anon_sym_PLUS] = ACTIONS(419), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_STAR] = ACTIONS(419), - [anon_sym_SLASH] = ACTIONS(419), - [anon_sym_PERCENT] = ACTIONS(419), - [anon_sym_EQ_EQ] = ACTIONS(419), - [anon_sym_BANG_EQ] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(442), - [anon_sym_LT] = ACTIONS(442), - [anon_sym_GT_EQ] = ACTIONS(419), - [anon_sym_LT_EQ] = ACTIONS(419), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_match] = ACTIONS(1850), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(1852), - [anon_sym_for] = ACTIONS(1854), - [anon_sym_asyncfor] = ACTIONS(1856), - [anon_sym_transform] = ACTIONS(1858), - [anon_sym_filter] = ACTIONS(1860), - [anon_sym_find] = ACTIONS(1862), - [anon_sym_remove] = ACTIONS(1864), - [anon_sym_reduce] = ACTIONS(1866), - [anon_sym_select] = ACTIONS(1868), - [anon_sym_insert] = ACTIONS(43), - [anon_sym_async] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(49), - [anon_sym_assert] = ACTIONS(51), - [anon_sym_assert_equal] = ACTIONS(51), - [anon_sym_download] = ACTIONS(51), - [anon_sym_help] = ACTIONS(51), - [anon_sym_length] = ACTIONS(51), - [anon_sym_output] = ACTIONS(51), - [anon_sym_output_error] = ACTIONS(51), - [anon_sym_type] = ACTIONS(51), - [anon_sym_append] = ACTIONS(51), - [anon_sym_metadata] = ACTIONS(51), - [anon_sym_move] = ACTIONS(51), - [anon_sym_read] = ACTIONS(51), - [anon_sym_workdir] = ACTIONS(51), - [anon_sym_write] = ACTIONS(51), - [anon_sym_from_json] = ACTIONS(51), - [anon_sym_to_json] = ACTIONS(51), - [anon_sym_to_string] = ACTIONS(51), - [anon_sym_to_float] = ACTIONS(51), - [anon_sym_bash] = ACTIONS(51), - [anon_sym_fish] = ACTIONS(51), - [anon_sym_raw] = ACTIONS(51), - [anon_sym_sh] = ACTIONS(51), - [anon_sym_zsh] = ACTIONS(51), - [anon_sym_random] = ACTIONS(51), - [anon_sym_random_boolean] = ACTIONS(51), - [anon_sym_random_float] = ACTIONS(51), - [anon_sym_random_integer] = ACTIONS(51), - [anon_sym_columns] = ACTIONS(51), - [anon_sym_rows] = ACTIONS(51), - [anon_sym_reverse] = ACTIONS(51), + [anon_sym_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(263), + [anon_sym_EQ_GT] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_for] = ACTIONS(269), + [anon_sym_asyncfor] = ACTIONS(271), + [anon_sym_transform] = ACTIONS(273), + [anon_sym_filter] = ACTIONS(275), + [anon_sym_find] = ACTIONS(277), + [anon_sym_remove] = ACTIONS(279), + [anon_sym_reduce] = ACTIONS(281), + [anon_sym_select] = ACTIONS(283), + [anon_sym_insert] = ACTIONS(285), + [anon_sym_async] = ACTIONS(287), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(289), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_assert_equal] = ACTIONS(291), + [anon_sym_download] = ACTIONS(291), + [anon_sym_help] = ACTIONS(291), + [anon_sym_length] = ACTIONS(291), + [anon_sym_output] = ACTIONS(291), + [anon_sym_output_error] = ACTIONS(291), + [anon_sym_type] = ACTIONS(291), + [anon_sym_append] = ACTIONS(291), + [anon_sym_metadata] = ACTIONS(291), + [anon_sym_move] = ACTIONS(291), + [anon_sym_read] = ACTIONS(291), + [anon_sym_workdir] = ACTIONS(291), + [anon_sym_write] = ACTIONS(291), + [anon_sym_from_json] = ACTIONS(291), + [anon_sym_to_json] = ACTIONS(291), + [anon_sym_to_string] = ACTIONS(291), + [anon_sym_to_float] = ACTIONS(291), + [anon_sym_bash] = ACTIONS(291), + [anon_sym_fish] = ACTIONS(291), + [anon_sym_raw] = ACTIONS(291), + [anon_sym_sh] = ACTIONS(291), + [anon_sym_zsh] = ACTIONS(291), + [anon_sym_random] = ACTIONS(291), + [anon_sym_random_boolean] = ACTIONS(291), + [anon_sym_random_float] = ACTIONS(291), + [anon_sym_random_integer] = ACTIONS(291), + [anon_sym_columns] = ACTIONS(291), + [anon_sym_rows] = ACTIONS(291), + [anon_sym_reverse] = ACTIONS(291), }, [259] = { - [sym_statement] = STATE(59), - [sym_expression] = STATE(888), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(822), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(787), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(59), - [sym_identifier] = ACTIONS(1846), + [sym_block] = STATE(418), + [sym_statement] = STATE(26), + [sym_expression] = STATE(448), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(414), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1085), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(203), + [aux_sym_block_repeat1] = STATE(26), + [sym_identifier] = ACTIONS(223), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2383), - [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(419), - [anon_sym_PLUS] = ACTIONS(419), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_STAR] = ACTIONS(419), - [anon_sym_SLASH] = ACTIONS(419), - [anon_sym_PERCENT] = ACTIONS(419), - [anon_sym_EQ_EQ] = ACTIONS(419), - [anon_sym_BANG_EQ] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(442), - [anon_sym_LT] = ACTIONS(442), - [anon_sym_GT_EQ] = ACTIONS(419), - [anon_sym_LT_EQ] = ACTIONS(419), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_match] = ACTIONS(1850), - [anon_sym_EQ_GT] = ACTIONS(2391), - [anon_sym_while] = ACTIONS(1852), - [anon_sym_for] = ACTIONS(1854), - [anon_sym_asyncfor] = ACTIONS(1856), - [anon_sym_transform] = ACTIONS(1858), - [anon_sym_filter] = ACTIONS(1860), - [anon_sym_find] = ACTIONS(1862), - [anon_sym_remove] = ACTIONS(1864), - [anon_sym_reduce] = ACTIONS(1866), - [anon_sym_select] = ACTIONS(1868), - [anon_sym_insert] = ACTIONS(43), - [anon_sym_async] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(49), - [anon_sym_assert] = ACTIONS(51), - [anon_sym_assert_equal] = ACTIONS(51), - [anon_sym_download] = ACTIONS(51), - [anon_sym_help] = ACTIONS(51), - [anon_sym_length] = ACTIONS(51), - [anon_sym_output] = ACTIONS(51), - [anon_sym_output_error] = ACTIONS(51), - [anon_sym_type] = ACTIONS(51), - [anon_sym_append] = ACTIONS(51), - [anon_sym_metadata] = ACTIONS(51), - [anon_sym_move] = ACTIONS(51), - [anon_sym_read] = ACTIONS(51), - [anon_sym_workdir] = ACTIONS(51), - [anon_sym_write] = ACTIONS(51), - [anon_sym_from_json] = ACTIONS(51), - [anon_sym_to_json] = ACTIONS(51), - [anon_sym_to_string] = ACTIONS(51), - [anon_sym_to_float] = ACTIONS(51), - [anon_sym_bash] = ACTIONS(51), - [anon_sym_fish] = ACTIONS(51), - [anon_sym_raw] = ACTIONS(51), - [anon_sym_sh] = ACTIONS(51), - [anon_sym_zsh] = ACTIONS(51), - [anon_sym_random] = ACTIONS(51), - [anon_sym_random_boolean] = ACTIONS(51), - [anon_sym_random_float] = ACTIONS(51), - [anon_sym_random_integer] = ACTIONS(51), - [anon_sym_columns] = ACTIONS(51), - [anon_sym_rows] = ACTIONS(51), - [anon_sym_reverse] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_if] = ACTIONS(227), + [anon_sym_match] = ACTIONS(229), + [anon_sym_EQ_GT] = ACTIONS(231), + [anon_sym_while] = ACTIONS(233), + [anon_sym_for] = ACTIONS(235), + [anon_sym_asyncfor] = ACTIONS(237), + [anon_sym_transform] = ACTIONS(239), + [anon_sym_filter] = ACTIONS(241), + [anon_sym_find] = ACTIONS(243), + [anon_sym_remove] = ACTIONS(245), + [anon_sym_reduce] = ACTIONS(247), + [anon_sym_select] = ACTIONS(249), + [anon_sym_insert] = ACTIONS(251), + [anon_sym_async] = ACTIONS(253), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(255), + [anon_sym_assert] = ACTIONS(257), + [anon_sym_assert_equal] = ACTIONS(257), + [anon_sym_download] = ACTIONS(257), + [anon_sym_help] = ACTIONS(257), + [anon_sym_length] = ACTIONS(257), + [anon_sym_output] = ACTIONS(257), + [anon_sym_output_error] = ACTIONS(257), + [anon_sym_type] = ACTIONS(257), + [anon_sym_append] = ACTIONS(257), + [anon_sym_metadata] = ACTIONS(257), + [anon_sym_move] = ACTIONS(257), + [anon_sym_read] = ACTIONS(257), + [anon_sym_workdir] = ACTIONS(257), + [anon_sym_write] = ACTIONS(257), + [anon_sym_from_json] = ACTIONS(257), + [anon_sym_to_json] = ACTIONS(257), + [anon_sym_to_string] = ACTIONS(257), + [anon_sym_to_float] = ACTIONS(257), + [anon_sym_bash] = ACTIONS(257), + [anon_sym_fish] = ACTIONS(257), + [anon_sym_raw] = ACTIONS(257), + [anon_sym_sh] = ACTIONS(257), + [anon_sym_zsh] = ACTIONS(257), + [anon_sym_random] = ACTIONS(257), + [anon_sym_random_boolean] = ACTIONS(257), + [anon_sym_random_float] = ACTIONS(257), + [anon_sym_random_integer] = ACTIONS(257), + [anon_sym_columns] = ACTIONS(257), + [anon_sym_rows] = ACTIONS(257), + [anon_sym_reverse] = ACTIONS(257), }, [260] = { - [sym_statement] = STATE(59), - [sym_expression] = STATE(888), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(822), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(787), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(59), - [sym_identifier] = ACTIONS(2385), + [sym_block] = STATE(407), + [sym_statement] = STATE(11), + [sym_expression] = STATE(364), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(349), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1100), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(181), + [aux_sym_block_repeat1] = STATE(11), + [sym_identifier] = ACTIONS(115), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(1786), - [sym_integer] = ACTIONS(1789), - [sym_float] = ACTIONS(1792), - [sym_string] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1795), - [anon_sym_false] = ACTIONS(1795), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_COLON] = ACTIONS(419), - [anon_sym_PLUS] = ACTIONS(419), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_STAR] = ACTIONS(419), - [anon_sym_SLASH] = ACTIONS(419), - [anon_sym_PERCENT] = ACTIONS(419), - [anon_sym_EQ_EQ] = ACTIONS(419), - [anon_sym_BANG_EQ] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(442), - [anon_sym_LT] = ACTIONS(442), - [anon_sym_GT_EQ] = ACTIONS(419), - [anon_sym_LT_EQ] = ACTIONS(419), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_match] = ACTIONS(1850), - [anon_sym_EQ_GT] = ACTIONS(2391), - [anon_sym_while] = ACTIONS(1852), - [anon_sym_for] = ACTIONS(1854), - [anon_sym_asyncfor] = ACTIONS(1856), - [anon_sym_transform] = ACTIONS(1858), - [anon_sym_filter] = ACTIONS(1860), - [anon_sym_find] = ACTIONS(1862), - [anon_sym_remove] = ACTIONS(1864), - [anon_sym_reduce] = ACTIONS(1866), - [anon_sym_select] = ACTIONS(1868), - [anon_sym_insert] = ACTIONS(43), - [anon_sym_async] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(486), - [anon_sym_table] = ACTIONS(2427), - [anon_sym_assert] = ACTIONS(2430), - [anon_sym_assert_equal] = ACTIONS(2430), - [anon_sym_download] = ACTIONS(2430), - [anon_sym_help] = ACTIONS(2430), - [anon_sym_length] = ACTIONS(2430), - [anon_sym_output] = ACTIONS(2430), - [anon_sym_output_error] = ACTIONS(2430), - [anon_sym_type] = ACTIONS(2430), - [anon_sym_append] = ACTIONS(2430), - [anon_sym_metadata] = ACTIONS(2430), - [anon_sym_move] = ACTIONS(2430), - [anon_sym_read] = ACTIONS(2430), - [anon_sym_workdir] = ACTIONS(2430), - [anon_sym_write] = ACTIONS(2430), - [anon_sym_from_json] = ACTIONS(2430), - [anon_sym_to_json] = ACTIONS(2430), - [anon_sym_to_string] = ACTIONS(2430), - [anon_sym_to_float] = ACTIONS(2430), - [anon_sym_bash] = ACTIONS(2430), - [anon_sym_fish] = ACTIONS(2430), - [anon_sym_raw] = ACTIONS(2430), - [anon_sym_sh] = ACTIONS(2430), - [anon_sym_zsh] = ACTIONS(2430), - [anon_sym_random] = ACTIONS(2430), - [anon_sym_random_boolean] = ACTIONS(2430), - [anon_sym_random_float] = ACTIONS(2430), - [anon_sym_random_integer] = ACTIONS(2430), - [anon_sym_columns] = ACTIONS(2430), - [anon_sym_rows] = ACTIONS(2430), - [anon_sym_reverse] = ACTIONS(2430), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_EQ_GT] = ACTIONS(123), + [anon_sym_while] = ACTIONS(125), + [anon_sym_for] = ACTIONS(127), + [anon_sym_asyncfor] = ACTIONS(129), + [anon_sym_transform] = ACTIONS(131), + [anon_sym_filter] = ACTIONS(133), + [anon_sym_find] = ACTIONS(135), + [anon_sym_remove] = ACTIONS(137), + [anon_sym_reduce] = ACTIONS(139), + [anon_sym_select] = ACTIONS(141), + [anon_sym_insert] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(147), + [anon_sym_assert] = ACTIONS(149), + [anon_sym_assert_equal] = ACTIONS(149), + [anon_sym_download] = ACTIONS(149), + [anon_sym_help] = ACTIONS(149), + [anon_sym_length] = ACTIONS(149), + [anon_sym_output] = ACTIONS(149), + [anon_sym_output_error] = ACTIONS(149), + [anon_sym_type] = ACTIONS(149), + [anon_sym_append] = ACTIONS(149), + [anon_sym_metadata] = ACTIONS(149), + [anon_sym_move] = ACTIONS(149), + [anon_sym_read] = ACTIONS(149), + [anon_sym_workdir] = ACTIONS(149), + [anon_sym_write] = ACTIONS(149), + [anon_sym_from_json] = ACTIONS(149), + [anon_sym_to_json] = ACTIONS(149), + [anon_sym_to_string] = ACTIONS(149), + [anon_sym_to_float] = ACTIONS(149), + [anon_sym_bash] = ACTIONS(149), + [anon_sym_fish] = ACTIONS(149), + [anon_sym_raw] = ACTIONS(149), + [anon_sym_sh] = ACTIONS(149), + [anon_sym_zsh] = ACTIONS(149), + [anon_sym_random] = ACTIONS(149), + [anon_sym_random_boolean] = ACTIONS(149), + [anon_sym_random_float] = ACTIONS(149), + [anon_sym_random_integer] = ACTIONS(149), + [anon_sym_columns] = ACTIONS(149), + [anon_sym_rows] = ACTIONS(149), + [anon_sym_reverse] = ACTIONS(149), }, [261] = { - [sym_expression] = STATE(668), - [sym__expression_kind] = STATE(759), - [aux_sym__expression_list] = STATE(301), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(759), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_assignment_operator] = STATE(545), - [sym_identifier_list] = STATE(1984), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(302), - [ts_builtin_sym_end] = ACTIONS(2435), - [sym_identifier] = ACTIONS(2437), + [sym_block] = STATE(418), + [sym_statement] = STATE(11), + [sym_expression] = STATE(364), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(349), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1100), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(181), + [aux_sym_block_repeat1] = STATE(11), + [sym_identifier] = ACTIONS(115), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_RBRACE] = ACTIONS(2435), - [anon_sym_SEMI] = ACTIONS(2435), - [anon_sym_LPAREN] = ACTIONS(2435), - [anon_sym_RPAREN] = ACTIONS(2435), - [anon_sym_COMMA] = ACTIONS(2435), - [sym_integer] = ACTIONS(2437), - [sym_float] = ACTIONS(2435), - [sym_string] = ACTIONS(2435), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [anon_sym_LBRACK] = ACTIONS(2435), - [anon_sym_RBRACK] = ACTIONS(2435), - [anon_sym_EQ] = ACTIONS(2439), - [anon_sym_COLON] = ACTIONS(2435), - [anon_sym_DOT_DOT] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_PERCENT] = ACTIONS(2435), - [anon_sym_EQ_EQ] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_PIPE_PIPE] = ACTIONS(2435), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_PLUS_EQ] = ACTIONS(2441), - [anon_sym_DASH_EQ] = ACTIONS(2441), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_elseif] = ACTIONS(2435), - [anon_sym_else] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_EQ_GT] = ACTIONS(2435), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_asyncfor] = ACTIONS(2435), - [anon_sym_transform] = ACTIONS(2437), - [anon_sym_filter] = ACTIONS(2437), - [anon_sym_find] = ACTIONS(2437), - [anon_sym_remove] = ACTIONS(2437), - [anon_sym_reduce] = ACTIONS(2437), - [anon_sym_select] = ACTIONS(2437), - [anon_sym_insert] = ACTIONS(2437), - [anon_sym_async] = ACTIONS(2437), - [anon_sym_PIPE] = ACTIONS(2437), - [anon_sym_table] = ACTIONS(2437), - [anon_sym_assert] = ACTIONS(2437), - [anon_sym_assert_equal] = ACTIONS(2437), - [anon_sym_download] = ACTIONS(2437), - [anon_sym_help] = ACTIONS(2437), - [anon_sym_length] = ACTIONS(2437), - [anon_sym_output] = ACTIONS(2437), - [anon_sym_output_error] = ACTIONS(2437), - [anon_sym_type] = ACTIONS(2437), - [anon_sym_append] = ACTIONS(2437), - [anon_sym_metadata] = ACTIONS(2437), - [anon_sym_move] = ACTIONS(2437), - [anon_sym_read] = ACTIONS(2437), - [anon_sym_workdir] = ACTIONS(2437), - [anon_sym_write] = ACTIONS(2437), - [anon_sym_from_json] = ACTIONS(2437), - [anon_sym_to_json] = ACTIONS(2437), - [anon_sym_to_string] = ACTIONS(2437), - [anon_sym_to_float] = ACTIONS(2437), - [anon_sym_bash] = ACTIONS(2437), - [anon_sym_fish] = ACTIONS(2437), - [anon_sym_raw] = ACTIONS(2437), - [anon_sym_sh] = ACTIONS(2437), - [anon_sym_zsh] = ACTIONS(2437), - [anon_sym_random] = ACTIONS(2437), - [anon_sym_random_boolean] = ACTIONS(2437), - [anon_sym_random_float] = ACTIONS(2437), - [anon_sym_random_integer] = ACTIONS(2437), - [anon_sym_columns] = ACTIONS(2437), - [anon_sym_rows] = ACTIONS(2437), - [anon_sym_reverse] = ACTIONS(2437), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_EQ_GT] = ACTIONS(123), + [anon_sym_while] = ACTIONS(125), + [anon_sym_for] = ACTIONS(127), + [anon_sym_asyncfor] = ACTIONS(129), + [anon_sym_transform] = ACTIONS(131), + [anon_sym_filter] = ACTIONS(133), + [anon_sym_find] = ACTIONS(135), + [anon_sym_remove] = ACTIONS(137), + [anon_sym_reduce] = ACTIONS(139), + [anon_sym_select] = ACTIONS(141), + [anon_sym_insert] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(147), + [anon_sym_assert] = ACTIONS(149), + [anon_sym_assert_equal] = ACTIONS(149), + [anon_sym_download] = ACTIONS(149), + [anon_sym_help] = ACTIONS(149), + [anon_sym_length] = ACTIONS(149), + [anon_sym_output] = ACTIONS(149), + [anon_sym_output_error] = ACTIONS(149), + [anon_sym_type] = ACTIONS(149), + [anon_sym_append] = ACTIONS(149), + [anon_sym_metadata] = ACTIONS(149), + [anon_sym_move] = ACTIONS(149), + [anon_sym_read] = ACTIONS(149), + [anon_sym_workdir] = ACTIONS(149), + [anon_sym_write] = ACTIONS(149), + [anon_sym_from_json] = ACTIONS(149), + [anon_sym_to_json] = ACTIONS(149), + [anon_sym_to_string] = ACTIONS(149), + [anon_sym_to_float] = ACTIONS(149), + [anon_sym_bash] = ACTIONS(149), + [anon_sym_fish] = ACTIONS(149), + [anon_sym_raw] = ACTIONS(149), + [anon_sym_sh] = ACTIONS(149), + [anon_sym_zsh] = ACTIONS(149), + [anon_sym_random] = ACTIONS(149), + [anon_sym_random_boolean] = ACTIONS(149), + [anon_sym_random_float] = ACTIONS(149), + [anon_sym_random_integer] = ACTIONS(149), + [anon_sym_columns] = ACTIONS(149), + [anon_sym_rows] = ACTIONS(149), + [anon_sym_reverse] = ACTIONS(149), }, [262] = { - [sym_expression] = STATE(561), - [sym__expression_kind] = STATE(631), - [aux_sym__expression_list] = STATE(268), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_logic] = STATE(631), - [sym_identifier_list] = STATE(1817), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(265), - [ts_builtin_sym_end] = ACTIONS(2443), - [sym_identifier] = ACTIONS(55), + [sym_block] = STATE(428), + [sym_statement] = STATE(11), + [sym_expression] = STATE(364), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(349), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1100), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(181), + [aux_sym_block_repeat1] = STATE(11), + [sym_identifier] = ACTIONS(115), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2445), - [anon_sym_RBRACE] = ACTIONS(2443), - [anon_sym_SEMI] = ACTIONS(2443), + [anon_sym_LBRACE] = ACTIONS(57), [anon_sym_LPAREN] = ACTIONS(59), - [anon_sym_RPAREN] = ACTIONS(2443), - [anon_sym_COMMA] = ACTIONS(2443), [sym_integer] = ACTIONS(61), [sym_float] = ACTIONS(63), [sym_string] = ACTIONS(63), [anon_sym_true] = ACTIONS(65), [anon_sym_false] = ACTIONS(65), [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_RBRACK] = ACTIONS(2443), - [anon_sym_EQ] = ACTIONS(2447), - [anon_sym_COLON] = ACTIONS(2443), - [anon_sym_DOT_DOT] = ACTIONS(2443), - [anon_sym_PLUS] = ACTIONS(2447), - [anon_sym_DASH] = ACTIONS(2447), - [anon_sym_STAR] = ACTIONS(2443), - [anon_sym_SLASH] = ACTIONS(2443), - [anon_sym_PERCENT] = ACTIONS(2443), - [anon_sym_EQ_EQ] = ACTIONS(2443), - [anon_sym_BANG_EQ] = ACTIONS(2443), - [anon_sym_AMP_AMP] = ACTIONS(2443), - [anon_sym_PIPE_PIPE] = ACTIONS(2443), - [anon_sym_GT] = ACTIONS(2447), - [anon_sym_LT] = ACTIONS(2447), - [anon_sym_GT_EQ] = ACTIONS(2443), - [anon_sym_LT_EQ] = ACTIONS(2443), - [anon_sym_PLUS_EQ] = ACTIONS(2443), - [anon_sym_DASH_EQ] = ACTIONS(2443), - [anon_sym_if] = ACTIONS(2447), - [anon_sym_elseif] = ACTIONS(2443), - [anon_sym_else] = ACTIONS(2447), - [anon_sym_match] = ACTIONS(2447), - [anon_sym_EQ_GT] = ACTIONS(85), - [anon_sym_while] = ACTIONS(2447), - [anon_sym_for] = ACTIONS(2447), - [anon_sym_asyncfor] = ACTIONS(2443), - [anon_sym_transform] = ACTIONS(2447), - [anon_sym_filter] = ACTIONS(2447), - [anon_sym_find] = ACTIONS(2447), - [anon_sym_remove] = ACTIONS(2447), - [anon_sym_reduce] = ACTIONS(2447), - [anon_sym_select] = ACTIONS(2447), - [anon_sym_insert] = ACTIONS(2447), - [anon_sym_async] = ACTIONS(2447), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(111), - [anon_sym_assert] = ACTIONS(113), - [anon_sym_assert_equal] = ACTIONS(113), - [anon_sym_download] = ACTIONS(113), - [anon_sym_help] = ACTIONS(113), - [anon_sym_length] = ACTIONS(113), - [anon_sym_output] = ACTIONS(113), - [anon_sym_output_error] = ACTIONS(113), - [anon_sym_type] = ACTIONS(113), - [anon_sym_append] = ACTIONS(113), - [anon_sym_metadata] = ACTIONS(113), - [anon_sym_move] = ACTIONS(113), - [anon_sym_read] = ACTIONS(113), - [anon_sym_workdir] = ACTIONS(113), - [anon_sym_write] = ACTIONS(113), - [anon_sym_from_json] = ACTIONS(113), - [anon_sym_to_json] = ACTIONS(113), - [anon_sym_to_string] = ACTIONS(113), - [anon_sym_to_float] = ACTIONS(113), - [anon_sym_bash] = ACTIONS(113), - [anon_sym_fish] = ACTIONS(113), - [anon_sym_raw] = ACTIONS(113), - [anon_sym_sh] = ACTIONS(113), - [anon_sym_zsh] = ACTIONS(113), - [anon_sym_random] = ACTIONS(113), - [anon_sym_random_boolean] = ACTIONS(113), - [anon_sym_random_float] = ACTIONS(113), - [anon_sym_random_integer] = ACTIONS(113), - [anon_sym_columns] = ACTIONS(113), - [anon_sym_rows] = ACTIONS(113), - [anon_sym_reverse] = ACTIONS(113), + [anon_sym_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_EQ_GT] = ACTIONS(123), + [anon_sym_while] = ACTIONS(125), + [anon_sym_for] = ACTIONS(127), + [anon_sym_asyncfor] = ACTIONS(129), + [anon_sym_transform] = ACTIONS(131), + [anon_sym_filter] = ACTIONS(133), + [anon_sym_find] = ACTIONS(135), + [anon_sym_remove] = ACTIONS(137), + [anon_sym_reduce] = ACTIONS(139), + [anon_sym_select] = ACTIONS(141), + [anon_sym_insert] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(147), + [anon_sym_assert] = ACTIONS(149), + [anon_sym_assert_equal] = ACTIONS(149), + [anon_sym_download] = ACTIONS(149), + [anon_sym_help] = ACTIONS(149), + [anon_sym_length] = ACTIONS(149), + [anon_sym_output] = ACTIONS(149), + [anon_sym_output_error] = ACTIONS(149), + [anon_sym_type] = ACTIONS(149), + [anon_sym_append] = ACTIONS(149), + [anon_sym_metadata] = ACTIONS(149), + [anon_sym_move] = ACTIONS(149), + [anon_sym_read] = ACTIONS(149), + [anon_sym_workdir] = ACTIONS(149), + [anon_sym_write] = ACTIONS(149), + [anon_sym_from_json] = ACTIONS(149), + [anon_sym_to_json] = ACTIONS(149), + [anon_sym_to_string] = ACTIONS(149), + [anon_sym_to_float] = ACTIONS(149), + [anon_sym_bash] = ACTIONS(149), + [anon_sym_fish] = ACTIONS(149), + [anon_sym_raw] = ACTIONS(149), + [anon_sym_sh] = ACTIONS(149), + [anon_sym_zsh] = ACTIONS(149), + [anon_sym_random] = ACTIONS(149), + [anon_sym_random_boolean] = ACTIONS(149), + [anon_sym_random_float] = ACTIONS(149), + [anon_sym_random_integer] = ACTIONS(149), + [anon_sym_columns] = ACTIONS(149), + [anon_sym_rows] = ACTIONS(149), + [anon_sym_reverse] = ACTIONS(149), }, [263] = { - [sym_expression] = STATE(744), - [sym__expression_kind] = STATE(759), - [aux_sym__expression_list] = STATE(316), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(759), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_assignment_operator] = STATE(542), - [sym_identifier_list] = STATE(1841), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(315), - [ts_builtin_sym_end] = ACTIONS(2435), - [sym_identifier] = ACTIONS(2437), + [sym_block] = STATE(434), + [sym_statement] = STATE(11), + [sym_expression] = STATE(364), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(349), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1100), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(181), + [aux_sym_block_repeat1] = STATE(11), + [sym_identifier] = ACTIONS(115), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_RBRACE] = ACTIONS(2435), - [anon_sym_SEMI] = ACTIONS(2435), - [anon_sym_LPAREN] = ACTIONS(2435), - [anon_sym_RPAREN] = ACTIONS(2435), - [anon_sym_COMMA] = ACTIONS(2435), - [sym_integer] = ACTIONS(2437), - [sym_float] = ACTIONS(2435), - [sym_string] = ACTIONS(2435), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [anon_sym_LBRACK] = ACTIONS(2435), - [anon_sym_RBRACK] = ACTIONS(2435), - [anon_sym_EQ] = ACTIONS(2439), - [anon_sym_COLON] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_PERCENT] = ACTIONS(2435), - [anon_sym_EQ_EQ] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_PIPE_PIPE] = ACTIONS(2435), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_PLUS_EQ] = ACTIONS(2441), - [anon_sym_DASH_EQ] = ACTIONS(2441), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_elseif] = ACTIONS(2435), - [anon_sym_else] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_EQ_GT] = ACTIONS(2435), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_asyncfor] = ACTIONS(2435), - [anon_sym_transform] = ACTIONS(2437), - [anon_sym_filter] = ACTIONS(2437), - [anon_sym_find] = ACTIONS(2437), - [anon_sym_remove] = ACTIONS(2437), - [anon_sym_reduce] = ACTIONS(2437), - [anon_sym_select] = ACTIONS(2437), - [anon_sym_insert] = ACTIONS(2437), - [anon_sym_async] = ACTIONS(2437), - [anon_sym_PIPE] = ACTIONS(2437), - [anon_sym_table] = ACTIONS(2437), - [anon_sym_assert] = ACTIONS(2437), - [anon_sym_assert_equal] = ACTIONS(2437), - [anon_sym_download] = ACTIONS(2437), - [anon_sym_help] = ACTIONS(2437), - [anon_sym_length] = ACTIONS(2437), - [anon_sym_output] = ACTIONS(2437), - [anon_sym_output_error] = ACTIONS(2437), - [anon_sym_type] = ACTIONS(2437), - [anon_sym_append] = ACTIONS(2437), - [anon_sym_metadata] = ACTIONS(2437), - [anon_sym_move] = ACTIONS(2437), - [anon_sym_read] = ACTIONS(2437), - [anon_sym_workdir] = ACTIONS(2437), - [anon_sym_write] = ACTIONS(2437), - [anon_sym_from_json] = ACTIONS(2437), - [anon_sym_to_json] = ACTIONS(2437), - [anon_sym_to_string] = ACTIONS(2437), - [anon_sym_to_float] = ACTIONS(2437), - [anon_sym_bash] = ACTIONS(2437), - [anon_sym_fish] = ACTIONS(2437), - [anon_sym_raw] = ACTIONS(2437), - [anon_sym_sh] = ACTIONS(2437), - [anon_sym_zsh] = ACTIONS(2437), - [anon_sym_random] = ACTIONS(2437), - [anon_sym_random_boolean] = ACTIONS(2437), - [anon_sym_random_float] = ACTIONS(2437), - [anon_sym_random_integer] = ACTIONS(2437), - [anon_sym_columns] = ACTIONS(2437), - [anon_sym_rows] = ACTIONS(2437), - [anon_sym_reverse] = ACTIONS(2437), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_EQ_GT] = ACTIONS(123), + [anon_sym_while] = ACTIONS(125), + [anon_sym_for] = ACTIONS(127), + [anon_sym_asyncfor] = ACTIONS(129), + [anon_sym_transform] = ACTIONS(131), + [anon_sym_filter] = ACTIONS(133), + [anon_sym_find] = ACTIONS(135), + [anon_sym_remove] = ACTIONS(137), + [anon_sym_reduce] = ACTIONS(139), + [anon_sym_select] = ACTIONS(141), + [anon_sym_insert] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(147), + [anon_sym_assert] = ACTIONS(149), + [anon_sym_assert_equal] = ACTIONS(149), + [anon_sym_download] = ACTIONS(149), + [anon_sym_help] = ACTIONS(149), + [anon_sym_length] = ACTIONS(149), + [anon_sym_output] = ACTIONS(149), + [anon_sym_output_error] = ACTIONS(149), + [anon_sym_type] = ACTIONS(149), + [anon_sym_append] = ACTIONS(149), + [anon_sym_metadata] = ACTIONS(149), + [anon_sym_move] = ACTIONS(149), + [anon_sym_read] = ACTIONS(149), + [anon_sym_workdir] = ACTIONS(149), + [anon_sym_write] = ACTIONS(149), + [anon_sym_from_json] = ACTIONS(149), + [anon_sym_to_json] = ACTIONS(149), + [anon_sym_to_string] = ACTIONS(149), + [anon_sym_to_float] = ACTIONS(149), + [anon_sym_bash] = ACTIONS(149), + [anon_sym_fish] = ACTIONS(149), + [anon_sym_raw] = ACTIONS(149), + [anon_sym_sh] = ACTIONS(149), + [anon_sym_zsh] = ACTIONS(149), + [anon_sym_random] = ACTIONS(149), + [anon_sym_random_boolean] = ACTIONS(149), + [anon_sym_random_float] = ACTIONS(149), + [anon_sym_random_integer] = ACTIONS(149), + [anon_sym_columns] = ACTIONS(149), + [anon_sym_rows] = ACTIONS(149), + [anon_sym_reverse] = ACTIONS(149), }, [264] = { - [sym_expression] = STATE(1608), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_logic] = STATE(1539), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(267), - [ts_builtin_sym_end] = ACTIONS(2449), - [sym_identifier] = ACTIONS(2451), + [sym_block] = STATE(596), + [sym_statement] = STATE(199), + [sym_expression] = STATE(473), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_assignment] = STATE(598), + [sym_if_else] = STATE(598), + [sym_if] = STATE(565), + [sym_match] = STATE(598), + [sym_while] = STATE(598), + [sym_for] = STATE(598), + [sym_transform] = STATE(598), + [sym_filter] = STATE(598), + [sym_find] = STATE(598), + [sym_remove] = STATE(598), + [sym_reduce] = STATE(598), + [sym_select] = STATE(598), + [sym_insert] = STATE(598), + [sym_async] = STATE(598), + [sym_identifier_list] = STATE(1085), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(203), + [aux_sym_block_repeat1] = STATE(199), + [sym_identifier] = ACTIONS(609), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_RBRACE] = ACTIONS(2449), - [anon_sym_SEMI] = ACTIONS(2449), - [anon_sym_LPAREN] = ACTIONS(2455), - [anon_sym_RPAREN] = ACTIONS(2449), - [anon_sym_COMMA] = ACTIONS(2449), - [sym_integer] = ACTIONS(2457), - [sym_float] = ACTIONS(2459), - [sym_string] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(2461), - [anon_sym_false] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_RBRACK] = ACTIONS(2449), - [anon_sym_EQ] = ACTIONS(2465), - [anon_sym_COLON] = ACTIONS(2449), - [anon_sym_DOT_DOT] = ACTIONS(2449), - [anon_sym_PLUS] = ACTIONS(2465), - [anon_sym_DASH] = ACTIONS(2465), - [anon_sym_STAR] = ACTIONS(2449), - [anon_sym_SLASH] = ACTIONS(2449), - [anon_sym_PERCENT] = ACTIONS(2449), - [anon_sym_EQ_EQ] = ACTIONS(2449), - [anon_sym_BANG_EQ] = ACTIONS(2449), - [anon_sym_AMP_AMP] = ACTIONS(2449), - [anon_sym_PIPE_PIPE] = ACTIONS(2449), - [anon_sym_GT] = ACTIONS(2465), - [anon_sym_LT] = ACTIONS(2465), - [anon_sym_GT_EQ] = ACTIONS(2449), - [anon_sym_LT_EQ] = ACTIONS(2449), - [anon_sym_PLUS_EQ] = ACTIONS(2449), - [anon_sym_DASH_EQ] = ACTIONS(2449), - [anon_sym_if] = ACTIONS(2465), - [anon_sym_elseif] = ACTIONS(2449), - [anon_sym_else] = ACTIONS(2465), - [anon_sym_match] = ACTIONS(2465), - [anon_sym_EQ_GT] = ACTIONS(2467), - [anon_sym_while] = ACTIONS(2465), - [anon_sym_for] = ACTIONS(2465), - [anon_sym_asyncfor] = ACTIONS(2449), - [anon_sym_transform] = ACTIONS(2465), - [anon_sym_filter] = ACTIONS(2465), - [anon_sym_find] = ACTIONS(2465), - [anon_sym_remove] = ACTIONS(2465), - [anon_sym_reduce] = ACTIONS(2465), - [anon_sym_select] = ACTIONS(2465), - [anon_sym_insert] = ACTIONS(2465), - [anon_sym_async] = ACTIONS(2465), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(2469), - [anon_sym_assert] = ACTIONS(2471), - [anon_sym_assert_equal] = ACTIONS(2471), - [anon_sym_download] = ACTIONS(2471), - [anon_sym_help] = ACTIONS(2471), - [anon_sym_length] = ACTIONS(2471), - [anon_sym_output] = ACTIONS(2471), - [anon_sym_output_error] = ACTIONS(2471), - [anon_sym_type] = ACTIONS(2471), - [anon_sym_append] = ACTIONS(2471), - [anon_sym_metadata] = ACTIONS(2471), - [anon_sym_move] = ACTIONS(2471), - [anon_sym_read] = ACTIONS(2471), - [anon_sym_workdir] = ACTIONS(2471), - [anon_sym_write] = ACTIONS(2471), - [anon_sym_from_json] = ACTIONS(2471), - [anon_sym_to_json] = ACTIONS(2471), - [anon_sym_to_string] = ACTIONS(2471), - [anon_sym_to_float] = ACTIONS(2471), - [anon_sym_bash] = ACTIONS(2471), - [anon_sym_fish] = ACTIONS(2471), - [anon_sym_raw] = ACTIONS(2471), - [anon_sym_sh] = ACTIONS(2471), - [anon_sym_zsh] = ACTIONS(2471), - [anon_sym_random] = ACTIONS(2471), - [anon_sym_random_boolean] = ACTIONS(2471), - [anon_sym_random_float] = ACTIONS(2471), - [anon_sym_random_integer] = ACTIONS(2471), - [anon_sym_columns] = ACTIONS(2471), - [anon_sym_rows] = ACTIONS(2471), - [anon_sym_reverse] = ACTIONS(2471), + [anon_sym_LBRACE] = ACTIONS(447), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_if] = ACTIONS(19), + [anon_sym_match] = ACTIONS(611), + [anon_sym_EQ_GT] = ACTIONS(231), + [anon_sym_while] = ACTIONS(613), + [anon_sym_for] = ACTIONS(615), + [anon_sym_asyncfor] = ACTIONS(617), + [anon_sym_transform] = ACTIONS(619), + [anon_sym_filter] = ACTIONS(621), + [anon_sym_find] = ACTIONS(623), + [anon_sym_remove] = ACTIONS(625), + [anon_sym_reduce] = ACTIONS(627), + [anon_sym_select] = ACTIONS(629), + [anon_sym_insert] = ACTIONS(251), + [anon_sym_async] = ACTIONS(631), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(255), + [anon_sym_assert] = ACTIONS(257), + [anon_sym_assert_equal] = ACTIONS(257), + [anon_sym_download] = ACTIONS(257), + [anon_sym_help] = ACTIONS(257), + [anon_sym_length] = ACTIONS(257), + [anon_sym_output] = ACTIONS(257), + [anon_sym_output_error] = ACTIONS(257), + [anon_sym_type] = ACTIONS(257), + [anon_sym_append] = ACTIONS(257), + [anon_sym_metadata] = ACTIONS(257), + [anon_sym_move] = ACTIONS(257), + [anon_sym_read] = ACTIONS(257), + [anon_sym_workdir] = ACTIONS(257), + [anon_sym_write] = ACTIONS(257), + [anon_sym_from_json] = ACTIONS(257), + [anon_sym_to_json] = ACTIONS(257), + [anon_sym_to_string] = ACTIONS(257), + [anon_sym_to_float] = ACTIONS(257), + [anon_sym_bash] = ACTIONS(257), + [anon_sym_fish] = ACTIONS(257), + [anon_sym_raw] = ACTIONS(257), + [anon_sym_sh] = ACTIONS(257), + [anon_sym_zsh] = ACTIONS(257), + [anon_sym_random] = ACTIONS(257), + [anon_sym_random_boolean] = ACTIONS(257), + [anon_sym_random_float] = ACTIONS(257), + [anon_sym_random_integer] = ACTIONS(257), + [anon_sym_columns] = ACTIONS(257), + [anon_sym_rows] = ACTIONS(257), + [anon_sym_reverse] = ACTIONS(257), }, [265] = { - [sym_expression] = STATE(561), - [sym__expression_kind] = STATE(631), - [aux_sym__expression_list] = STATE(262), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_logic] = STATE(631), - [sym_identifier_list] = STATE(1817), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(265), - [ts_builtin_sym_end] = ACTIONS(2473), - [sym_identifier] = ACTIONS(55), + [sym_block] = STATE(638), + [sym_statement] = STATE(226), + [sym_expression] = STATE(535), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(561), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [aux_sym_block_repeat1] = STATE(226), + [sym_identifier] = ACTIONS(5), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2445), - [anon_sym_RBRACE] = ACTIONS(2473), - [anon_sym_SEMI] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(59), - [anon_sym_RPAREN] = ACTIONS(2473), - [anon_sym_COMMA] = ACTIONS(2473), - [sym_integer] = ACTIONS(61), - [sym_float] = ACTIONS(63), - [sym_string] = ACTIONS(63), - [anon_sym_true] = ACTIONS(65), - [anon_sym_false] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_RBRACK] = ACTIONS(2473), - [anon_sym_EQ] = ACTIONS(2475), - [anon_sym_COLON] = ACTIONS(2473), - [anon_sym_DOT_DOT] = ACTIONS(2473), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2473), - [anon_sym_SLASH] = ACTIONS(2473), - [anon_sym_PERCENT] = ACTIONS(2473), - [anon_sym_EQ_EQ] = ACTIONS(2473), - [anon_sym_BANG_EQ] = ACTIONS(2473), - [anon_sym_AMP_AMP] = ACTIONS(2473), - [anon_sym_PIPE_PIPE] = ACTIONS(2473), - [anon_sym_GT] = ACTIONS(2475), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_GT_EQ] = ACTIONS(2473), - [anon_sym_LT_EQ] = ACTIONS(2473), - [anon_sym_PLUS_EQ] = ACTIONS(2473), - [anon_sym_DASH_EQ] = ACTIONS(2473), - [anon_sym_if] = ACTIONS(2475), - [anon_sym_elseif] = ACTIONS(2473), - [anon_sym_else] = ACTIONS(2475), - [anon_sym_match] = ACTIONS(2475), - [anon_sym_EQ_GT] = ACTIONS(85), - [anon_sym_while] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2475), - [anon_sym_asyncfor] = ACTIONS(2473), - [anon_sym_transform] = ACTIONS(2475), - [anon_sym_filter] = ACTIONS(2475), - [anon_sym_find] = ACTIONS(2475), - [anon_sym_remove] = ACTIONS(2475), - [anon_sym_reduce] = ACTIONS(2475), - [anon_sym_select] = ACTIONS(2475), - [anon_sym_insert] = ACTIONS(2475), - [anon_sym_async] = ACTIONS(2475), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(111), - [anon_sym_assert] = ACTIONS(113), - [anon_sym_assert_equal] = ACTIONS(113), - [anon_sym_download] = ACTIONS(113), - [anon_sym_help] = ACTIONS(113), - [anon_sym_length] = ACTIONS(113), - [anon_sym_output] = ACTIONS(113), - [anon_sym_output_error] = ACTIONS(113), - [anon_sym_type] = ACTIONS(113), - [anon_sym_append] = ACTIONS(113), - [anon_sym_metadata] = ACTIONS(113), - [anon_sym_move] = ACTIONS(113), - [anon_sym_read] = ACTIONS(113), - [anon_sym_workdir] = ACTIONS(113), - [anon_sym_write] = ACTIONS(113), - [anon_sym_from_json] = ACTIONS(113), - [anon_sym_to_json] = ACTIONS(113), - [anon_sym_to_string] = ACTIONS(113), - [anon_sym_to_float] = ACTIONS(113), - [anon_sym_bash] = ACTIONS(113), - [anon_sym_fish] = ACTIONS(113), - [anon_sym_raw] = ACTIONS(113), - [anon_sym_sh] = ACTIONS(113), - [anon_sym_zsh] = ACTIONS(113), - [anon_sym_random] = ACTIONS(113), - [anon_sym_random_boolean] = ACTIONS(113), - [anon_sym_random_float] = ACTIONS(113), - [anon_sym_random_integer] = ACTIONS(113), - [anon_sym_columns] = ACTIONS(113), - [anon_sym_rows] = ACTIONS(113), - [anon_sym_reverse] = ACTIONS(113), + [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_asyncfor] = 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_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [266] = { - [sym_expression] = STATE(561), - [sym__expression_kind] = STATE(631), - [aux_sym__expression_list] = STATE(268), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_logic] = STATE(631), - [sym_identifier_list] = STATE(1817), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(265), - [ts_builtin_sym_end] = ACTIONS(2477), - [sym_identifier] = ACTIONS(55), + [sym_statement] = STATE(228), + [sym_expression] = STATE(535), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(561), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [aux_sym_block_repeat1] = STATE(228), + [sym_identifier] = ACTIONS(5), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2445), - [anon_sym_RBRACE] = ACTIONS(2477), - [anon_sym_SEMI] = ACTIONS(2477), - [anon_sym_LPAREN] = ACTIONS(59), - [anon_sym_RPAREN] = ACTIONS(2477), - [anon_sym_COMMA] = ACTIONS(2477), - [sym_integer] = ACTIONS(61), - [sym_float] = ACTIONS(63), - [sym_string] = ACTIONS(63), - [anon_sym_true] = ACTIONS(65), - [anon_sym_false] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_RBRACK] = ACTIONS(2477), - [anon_sym_EQ] = ACTIONS(2479), - [anon_sym_COLON] = ACTIONS(2477), - [anon_sym_DOT_DOT] = ACTIONS(2477), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2477), - [anon_sym_SLASH] = ACTIONS(2477), - [anon_sym_PERCENT] = ACTIONS(2477), - [anon_sym_EQ_EQ] = ACTIONS(2477), - [anon_sym_BANG_EQ] = ACTIONS(2477), - [anon_sym_AMP_AMP] = ACTIONS(2477), - [anon_sym_PIPE_PIPE] = ACTIONS(2477), - [anon_sym_GT] = ACTIONS(2479), - [anon_sym_LT] = ACTIONS(2479), - [anon_sym_GT_EQ] = ACTIONS(2477), - [anon_sym_LT_EQ] = ACTIONS(2477), - [anon_sym_PLUS_EQ] = ACTIONS(2477), - [anon_sym_DASH_EQ] = ACTIONS(2477), - [anon_sym_if] = ACTIONS(2479), - [anon_sym_elseif] = ACTIONS(2477), - [anon_sym_else] = ACTIONS(2479), - [anon_sym_match] = ACTIONS(2479), - [anon_sym_EQ_GT] = ACTIONS(85), - [anon_sym_while] = ACTIONS(2479), - [anon_sym_for] = ACTIONS(2479), - [anon_sym_asyncfor] = ACTIONS(2477), - [anon_sym_transform] = ACTIONS(2479), - [anon_sym_filter] = ACTIONS(2479), - [anon_sym_find] = ACTIONS(2479), - [anon_sym_remove] = ACTIONS(2479), - [anon_sym_reduce] = ACTIONS(2479), - [anon_sym_select] = ACTIONS(2479), - [anon_sym_insert] = ACTIONS(2479), - [anon_sym_async] = ACTIONS(2479), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(111), - [anon_sym_assert] = ACTIONS(113), - [anon_sym_assert_equal] = ACTIONS(113), - [anon_sym_download] = ACTIONS(113), - [anon_sym_help] = ACTIONS(113), - [anon_sym_length] = ACTIONS(113), - [anon_sym_output] = ACTIONS(113), - [anon_sym_output_error] = ACTIONS(113), - [anon_sym_type] = ACTIONS(113), - [anon_sym_append] = ACTIONS(113), - [anon_sym_metadata] = ACTIONS(113), - [anon_sym_move] = ACTIONS(113), - [anon_sym_read] = ACTIONS(113), - [anon_sym_workdir] = ACTIONS(113), - [anon_sym_write] = ACTIONS(113), - [anon_sym_from_json] = ACTIONS(113), - [anon_sym_to_json] = ACTIONS(113), - [anon_sym_to_string] = ACTIONS(113), - [anon_sym_to_float] = ACTIONS(113), - [anon_sym_bash] = ACTIONS(113), - [anon_sym_fish] = ACTIONS(113), - [anon_sym_raw] = ACTIONS(113), - [anon_sym_sh] = ACTIONS(113), - [anon_sym_zsh] = ACTIONS(113), - [anon_sym_random] = ACTIONS(113), - [anon_sym_random_boolean] = ACTIONS(113), - [anon_sym_random_float] = ACTIONS(113), - [anon_sym_random_integer] = ACTIONS(113), - [anon_sym_columns] = ACTIONS(113), - [anon_sym_rows] = ACTIONS(113), - [anon_sym_reverse] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_RBRACE] = ACTIONS(1877), + [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_asyncfor] = 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_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [267] = { - [sym_expression] = STATE(1608), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_logic] = STATE(1539), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(267), - [ts_builtin_sym_end] = ACTIONS(2481), - [sym_identifier] = ACTIONS(2483), + [sym_block] = STATE(494), + [sym_statement] = STATE(28), + [sym_expression] = STATE(479), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(365), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1119), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(218), + [aux_sym_block_repeat1] = STATE(28), + [sym_identifier] = ACTIONS(524), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2486), - [anon_sym_RBRACE] = ACTIONS(2481), - [anon_sym_SEMI] = ACTIONS(2481), - [anon_sym_LPAREN] = ACTIONS(2489), - [anon_sym_RPAREN] = ACTIONS(2481), - [anon_sym_COMMA] = ACTIONS(2481), - [sym_integer] = ACTIONS(2492), - [sym_float] = ACTIONS(2495), - [sym_string] = ACTIONS(2495), - [anon_sym_true] = ACTIONS(2498), - [anon_sym_false] = ACTIONS(2498), - [anon_sym_LBRACK] = ACTIONS(2501), - [anon_sym_RBRACK] = ACTIONS(2481), - [anon_sym_EQ] = ACTIONS(2504), - [anon_sym_COLON] = ACTIONS(2481), - [anon_sym_DOT_DOT] = ACTIONS(2481), - [anon_sym_PLUS] = ACTIONS(2504), - [anon_sym_DASH] = ACTIONS(2504), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_SLASH] = ACTIONS(2481), - [anon_sym_PERCENT] = ACTIONS(2481), - [anon_sym_EQ_EQ] = ACTIONS(2481), - [anon_sym_BANG_EQ] = ACTIONS(2481), - [anon_sym_AMP_AMP] = ACTIONS(2481), - [anon_sym_PIPE_PIPE] = ACTIONS(2481), - [anon_sym_GT] = ACTIONS(2504), - [anon_sym_LT] = ACTIONS(2504), - [anon_sym_GT_EQ] = ACTIONS(2481), - [anon_sym_LT_EQ] = ACTIONS(2481), - [anon_sym_PLUS_EQ] = ACTIONS(2481), - [anon_sym_DASH_EQ] = ACTIONS(2481), - [anon_sym_if] = ACTIONS(2504), - [anon_sym_elseif] = ACTIONS(2481), - [anon_sym_else] = ACTIONS(2504), - [anon_sym_match] = ACTIONS(2504), - [anon_sym_EQ_GT] = ACTIONS(2506), - [anon_sym_while] = ACTIONS(2504), - [anon_sym_for] = ACTIONS(2504), - [anon_sym_asyncfor] = ACTIONS(2481), - [anon_sym_transform] = ACTIONS(2504), - [anon_sym_filter] = ACTIONS(2504), - [anon_sym_find] = ACTIONS(2504), - [anon_sym_remove] = ACTIONS(2504), - [anon_sym_reduce] = ACTIONS(2504), - [anon_sym_select] = ACTIONS(2504), - [anon_sym_insert] = ACTIONS(2504), - [anon_sym_async] = ACTIONS(2504), - [anon_sym_PIPE] = ACTIONS(2509), - [anon_sym_table] = ACTIONS(2512), - [anon_sym_assert] = ACTIONS(2515), - [anon_sym_assert_equal] = ACTIONS(2515), - [anon_sym_download] = ACTIONS(2515), - [anon_sym_help] = ACTIONS(2515), - [anon_sym_length] = ACTIONS(2515), - [anon_sym_output] = ACTIONS(2515), - [anon_sym_output_error] = ACTIONS(2515), - [anon_sym_type] = ACTIONS(2515), - [anon_sym_append] = ACTIONS(2515), - [anon_sym_metadata] = ACTIONS(2515), - [anon_sym_move] = ACTIONS(2515), - [anon_sym_read] = ACTIONS(2515), - [anon_sym_workdir] = ACTIONS(2515), - [anon_sym_write] = ACTIONS(2515), - [anon_sym_from_json] = ACTIONS(2515), - [anon_sym_to_json] = ACTIONS(2515), - [anon_sym_to_string] = ACTIONS(2515), - [anon_sym_to_float] = ACTIONS(2515), - [anon_sym_bash] = ACTIONS(2515), - [anon_sym_fish] = ACTIONS(2515), - [anon_sym_raw] = ACTIONS(2515), - [anon_sym_sh] = ACTIONS(2515), - [anon_sym_zsh] = ACTIONS(2515), - [anon_sym_random] = ACTIONS(2515), - [anon_sym_random_boolean] = ACTIONS(2515), - [anon_sym_random_float] = ACTIONS(2515), - [anon_sym_random_integer] = ACTIONS(2515), - [anon_sym_columns] = ACTIONS(2515), - [anon_sym_rows] = ACTIONS(2515), - [anon_sym_reverse] = ACTIONS(2515), + [anon_sym_LBRACE] = ACTIONS(189), + [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(155), + [anon_sym_match] = ACTIONS(528), + [anon_sym_EQ_GT] = ACTIONS(530), + [anon_sym_while] = ACTIONS(532), + [anon_sym_for] = ACTIONS(534), + [anon_sym_asyncfor] = ACTIONS(536), + [anon_sym_transform] = ACTIONS(538), + [anon_sym_filter] = ACTIONS(540), + [anon_sym_find] = ACTIONS(542), + [anon_sym_remove] = ACTIONS(544), + [anon_sym_reduce] = ACTIONS(546), + [anon_sym_select] = ACTIONS(548), + [anon_sym_insert] = ACTIONS(550), + [anon_sym_async] = ACTIONS(552), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(554), + [anon_sym_assert] = ACTIONS(556), + [anon_sym_assert_equal] = ACTIONS(556), + [anon_sym_download] = ACTIONS(556), + [anon_sym_help] = ACTIONS(556), + [anon_sym_length] = ACTIONS(556), + [anon_sym_output] = ACTIONS(556), + [anon_sym_output_error] = ACTIONS(556), + [anon_sym_type] = ACTIONS(556), + [anon_sym_append] = ACTIONS(556), + [anon_sym_metadata] = ACTIONS(556), + [anon_sym_move] = ACTIONS(556), + [anon_sym_read] = ACTIONS(556), + [anon_sym_workdir] = ACTIONS(556), + [anon_sym_write] = ACTIONS(556), + [anon_sym_from_json] = ACTIONS(556), + [anon_sym_to_json] = ACTIONS(556), + [anon_sym_to_string] = ACTIONS(556), + [anon_sym_to_float] = ACTIONS(556), + [anon_sym_bash] = ACTIONS(556), + [anon_sym_fish] = ACTIONS(556), + [anon_sym_raw] = ACTIONS(556), + [anon_sym_sh] = ACTIONS(556), + [anon_sym_zsh] = ACTIONS(556), + [anon_sym_random] = ACTIONS(556), + [anon_sym_random_boolean] = ACTIONS(556), + [anon_sym_random_float] = ACTIONS(556), + [anon_sym_random_integer] = ACTIONS(556), + [anon_sym_columns] = ACTIONS(556), + [anon_sym_rows] = ACTIONS(556), + [anon_sym_reverse] = ACTIONS(556), }, [268] = { - [sym_expression] = STATE(561), - [sym__expression_kind] = STATE(631), - [aux_sym__expression_list] = STATE(268), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_logic] = STATE(631), - [sym_identifier_list] = STATE(1817), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(265), - [ts_builtin_sym_end] = ACTIONS(2518), - [sym_identifier] = ACTIONS(2520), + [sym_block] = STATE(494), + [sym_statement] = STATE(32), + [sym_expression] = STATE(516), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(433), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [aux_sym_block_repeat1] = STATE(32), + [sym_identifier] = ACTIONS(867), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2523), - [anon_sym_RBRACE] = ACTIONS(2518), - [anon_sym_SEMI] = ACTIONS(2518), - [anon_sym_LPAREN] = ACTIONS(2526), - [anon_sym_RPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2518), - [sym_integer] = ACTIONS(2529), - [sym_float] = ACTIONS(2532), - [sym_string] = ACTIONS(2532), - [anon_sym_true] = ACTIONS(2535), - [anon_sym_false] = ACTIONS(2535), - [anon_sym_LBRACK] = ACTIONS(2538), - [anon_sym_RBRACK] = ACTIONS(2518), - [anon_sym_EQ] = ACTIONS(2541), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_DOT_DOT] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2541), - [anon_sym_DASH] = ACTIONS(2541), - [anon_sym_STAR] = ACTIONS(2518), - [anon_sym_SLASH] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_EQ_EQ] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_GT] = ACTIONS(2541), - [anon_sym_LT] = ACTIONS(2541), - [anon_sym_GT_EQ] = ACTIONS(2518), - [anon_sym_LT_EQ] = ACTIONS(2518), - [anon_sym_PLUS_EQ] = ACTIONS(2518), - [anon_sym_DASH_EQ] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2541), - [anon_sym_elseif] = ACTIONS(2518), - [anon_sym_else] = ACTIONS(2541), - [anon_sym_match] = ACTIONS(2541), - [anon_sym_EQ_GT] = ACTIONS(2543), - [anon_sym_while] = ACTIONS(2541), - [anon_sym_for] = ACTIONS(2541), - [anon_sym_asyncfor] = ACTIONS(2518), - [anon_sym_transform] = ACTIONS(2541), - [anon_sym_filter] = ACTIONS(2541), - [anon_sym_find] = ACTIONS(2541), - [anon_sym_remove] = ACTIONS(2541), - [anon_sym_reduce] = ACTIONS(2541), - [anon_sym_select] = ACTIONS(2541), - [anon_sym_insert] = ACTIONS(2541), - [anon_sym_async] = ACTIONS(2541), - [anon_sym_PIPE] = ACTIONS(2546), - [anon_sym_table] = ACTIONS(2549), - [anon_sym_assert] = ACTIONS(2552), - [anon_sym_assert_equal] = ACTIONS(2552), - [anon_sym_download] = ACTIONS(2552), - [anon_sym_help] = ACTIONS(2552), - [anon_sym_length] = ACTIONS(2552), - [anon_sym_output] = ACTIONS(2552), - [anon_sym_output_error] = ACTIONS(2552), - [anon_sym_type] = ACTIONS(2552), - [anon_sym_append] = ACTIONS(2552), - [anon_sym_metadata] = ACTIONS(2552), - [anon_sym_move] = ACTIONS(2552), - [anon_sym_read] = ACTIONS(2552), - [anon_sym_workdir] = ACTIONS(2552), - [anon_sym_write] = ACTIONS(2552), - [anon_sym_from_json] = ACTIONS(2552), - [anon_sym_to_json] = ACTIONS(2552), - [anon_sym_to_string] = ACTIONS(2552), - [anon_sym_to_float] = ACTIONS(2552), - [anon_sym_bash] = ACTIONS(2552), - [anon_sym_fish] = ACTIONS(2552), - [anon_sym_raw] = ACTIONS(2552), - [anon_sym_sh] = ACTIONS(2552), - [anon_sym_zsh] = ACTIONS(2552), - [anon_sym_random] = ACTIONS(2552), - [anon_sym_random_boolean] = ACTIONS(2552), - [anon_sym_random_float] = ACTIONS(2552), - [anon_sym_random_integer] = ACTIONS(2552), - [anon_sym_columns] = ACTIONS(2552), - [anon_sym_rows] = ACTIONS(2552), - [anon_sym_reverse] = ACTIONS(2552), + [anon_sym_LBRACE] = ACTIONS(189), + [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(227), + [anon_sym_match] = ACTIONS(871), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(873), + [anon_sym_for] = ACTIONS(875), + [anon_sym_asyncfor] = ACTIONS(877), + [anon_sym_transform] = ACTIONS(879), + [anon_sym_filter] = ACTIONS(881), + [anon_sym_find] = ACTIONS(883), + [anon_sym_remove] = ACTIONS(885), + [anon_sym_reduce] = ACTIONS(887), + [anon_sym_select] = ACTIONS(889), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(891), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [269] = { - [sym_expression] = STATE(587), - [sym__expression_kind] = STATE(631), - [aux_sym__expression_list] = STATE(270), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_logic] = STATE(631), - [sym_identifier_list] = STATE(2030), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(271), - [ts_builtin_sym_end] = ACTIONS(2443), - [sym_identifier] = ACTIONS(55), + [sym_block] = STATE(478), + [sym_statement] = STATE(17), + [sym_expression] = STATE(402), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(348), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1104), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(17), + [sym_identifier] = ACTIONS(187), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2445), - [anon_sym_RBRACE] = ACTIONS(2443), - [anon_sym_SEMI] = ACTIONS(2443), - [anon_sym_LPAREN] = ACTIONS(59), - [anon_sym_RPAREN] = ACTIONS(2443), - [anon_sym_COMMA] = ACTIONS(2443), - [sym_integer] = ACTIONS(61), - [sym_float] = ACTIONS(63), - [sym_string] = ACTIONS(63), - [anon_sym_true] = ACTIONS(65), - [anon_sym_false] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_RBRACK] = ACTIONS(2443), - [anon_sym_EQ] = ACTIONS(2447), - [anon_sym_COLON] = ACTIONS(2443), - [anon_sym_PLUS] = ACTIONS(2447), - [anon_sym_DASH] = ACTIONS(2447), - [anon_sym_STAR] = ACTIONS(2443), - [anon_sym_SLASH] = ACTIONS(2443), - [anon_sym_PERCENT] = ACTIONS(2443), - [anon_sym_EQ_EQ] = ACTIONS(2443), - [anon_sym_BANG_EQ] = ACTIONS(2443), - [anon_sym_AMP_AMP] = ACTIONS(2443), - [anon_sym_PIPE_PIPE] = ACTIONS(2443), - [anon_sym_GT] = ACTIONS(2447), - [anon_sym_LT] = ACTIONS(2447), - [anon_sym_GT_EQ] = ACTIONS(2443), - [anon_sym_LT_EQ] = ACTIONS(2443), - [anon_sym_PLUS_EQ] = ACTIONS(2443), - [anon_sym_DASH_EQ] = ACTIONS(2443), - [anon_sym_if] = ACTIONS(2447), - [anon_sym_elseif] = ACTIONS(2443), - [anon_sym_else] = ACTIONS(2447), - [anon_sym_match] = ACTIONS(2447), - [anon_sym_EQ_GT] = ACTIONS(121), - [anon_sym_while] = ACTIONS(2447), - [anon_sym_for] = ACTIONS(2447), - [anon_sym_asyncfor] = ACTIONS(2443), - [anon_sym_transform] = ACTIONS(2447), - [anon_sym_filter] = ACTIONS(2447), - [anon_sym_find] = ACTIONS(2447), - [anon_sym_remove] = ACTIONS(2447), - [anon_sym_reduce] = ACTIONS(2447), - [anon_sym_select] = ACTIONS(2447), - [anon_sym_insert] = ACTIONS(2447), - [anon_sym_async] = ACTIONS(2447), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(147), - [anon_sym_assert_equal] = ACTIONS(147), - [anon_sym_download] = ACTIONS(147), - [anon_sym_help] = ACTIONS(147), - [anon_sym_length] = ACTIONS(147), - [anon_sym_output] = ACTIONS(147), - [anon_sym_output_error] = ACTIONS(147), - [anon_sym_type] = ACTIONS(147), - [anon_sym_append] = ACTIONS(147), - [anon_sym_metadata] = ACTIONS(147), - [anon_sym_move] = ACTIONS(147), - [anon_sym_read] = ACTIONS(147), - [anon_sym_workdir] = ACTIONS(147), - [anon_sym_write] = ACTIONS(147), - [anon_sym_from_json] = ACTIONS(147), - [anon_sym_to_json] = ACTIONS(147), - [anon_sym_to_string] = ACTIONS(147), - [anon_sym_to_float] = ACTIONS(147), - [anon_sym_bash] = ACTIONS(147), - [anon_sym_fish] = ACTIONS(147), - [anon_sym_raw] = ACTIONS(147), - [anon_sym_sh] = ACTIONS(147), - [anon_sym_zsh] = ACTIONS(147), - [anon_sym_random] = ACTIONS(147), - [anon_sym_random_boolean] = ACTIONS(147), - [anon_sym_random_float] = ACTIONS(147), - [anon_sym_random_integer] = ACTIONS(147), - [anon_sym_columns] = ACTIONS(147), - [anon_sym_rows] = ACTIONS(147), - [anon_sym_reverse] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(189), + [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(79), + [anon_sym_match] = ACTIONS(193), + [anon_sym_EQ_GT] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_for] = ACTIONS(199), + [anon_sym_asyncfor] = ACTIONS(201), + [anon_sym_transform] = ACTIONS(203), + [anon_sym_filter] = ACTIONS(205), + [anon_sym_find] = ACTIONS(207), + [anon_sym_remove] = ACTIONS(209), + [anon_sym_reduce] = ACTIONS(211), + [anon_sym_select] = ACTIONS(213), + [anon_sym_insert] = ACTIONS(215), + [anon_sym_async] = ACTIONS(217), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(219), + [anon_sym_assert] = ACTIONS(221), + [anon_sym_assert_equal] = ACTIONS(221), + [anon_sym_download] = ACTIONS(221), + [anon_sym_help] = ACTIONS(221), + [anon_sym_length] = ACTIONS(221), + [anon_sym_output] = ACTIONS(221), + [anon_sym_output_error] = ACTIONS(221), + [anon_sym_type] = ACTIONS(221), + [anon_sym_append] = ACTIONS(221), + [anon_sym_metadata] = ACTIONS(221), + [anon_sym_move] = ACTIONS(221), + [anon_sym_read] = ACTIONS(221), + [anon_sym_workdir] = ACTIONS(221), + [anon_sym_write] = ACTIONS(221), + [anon_sym_from_json] = ACTIONS(221), + [anon_sym_to_json] = ACTIONS(221), + [anon_sym_to_string] = ACTIONS(221), + [anon_sym_to_float] = ACTIONS(221), + [anon_sym_bash] = ACTIONS(221), + [anon_sym_fish] = ACTIONS(221), + [anon_sym_raw] = ACTIONS(221), + [anon_sym_sh] = ACTIONS(221), + [anon_sym_zsh] = ACTIONS(221), + [anon_sym_random] = ACTIONS(221), + [anon_sym_random_boolean] = ACTIONS(221), + [anon_sym_random_float] = ACTIONS(221), + [anon_sym_random_integer] = ACTIONS(221), + [anon_sym_columns] = ACTIONS(221), + [anon_sym_rows] = ACTIONS(221), + [anon_sym_reverse] = ACTIONS(221), }, [270] = { - [sym_expression] = STATE(587), - [sym__expression_kind] = STATE(631), - [aux_sym__expression_list] = STATE(270), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_logic] = STATE(631), - [sym_identifier_list] = STATE(2030), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(271), - [ts_builtin_sym_end] = ACTIONS(2518), - [sym_identifier] = ACTIONS(2520), + [sym_block] = STATE(480), + [sym_statement] = STATE(32), + [sym_expression] = STATE(516), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(433), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [aux_sym_block_repeat1] = STATE(32), + [sym_identifier] = ACTIONS(867), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2523), - [anon_sym_RBRACE] = ACTIONS(2518), - [anon_sym_SEMI] = ACTIONS(2518), - [anon_sym_LPAREN] = ACTIONS(2526), - [anon_sym_RPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2518), - [sym_integer] = ACTIONS(2529), - [sym_float] = ACTIONS(2532), - [sym_string] = ACTIONS(2532), - [anon_sym_true] = ACTIONS(2535), - [anon_sym_false] = ACTIONS(2535), - [anon_sym_LBRACK] = ACTIONS(2538), - [anon_sym_RBRACK] = ACTIONS(2518), - [anon_sym_EQ] = ACTIONS(2541), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2541), - [anon_sym_DASH] = ACTIONS(2541), - [anon_sym_STAR] = ACTIONS(2518), - [anon_sym_SLASH] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_EQ_EQ] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_GT] = ACTIONS(2541), - [anon_sym_LT] = ACTIONS(2541), - [anon_sym_GT_EQ] = ACTIONS(2518), - [anon_sym_LT_EQ] = ACTIONS(2518), - [anon_sym_PLUS_EQ] = ACTIONS(2518), - [anon_sym_DASH_EQ] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2541), - [anon_sym_elseif] = ACTIONS(2518), - [anon_sym_else] = ACTIONS(2541), - [anon_sym_match] = ACTIONS(2541), - [anon_sym_EQ_GT] = ACTIONS(2555), - [anon_sym_while] = ACTIONS(2541), - [anon_sym_for] = ACTIONS(2541), - [anon_sym_asyncfor] = ACTIONS(2518), - [anon_sym_transform] = ACTIONS(2541), - [anon_sym_filter] = ACTIONS(2541), - [anon_sym_find] = ACTIONS(2541), - [anon_sym_remove] = ACTIONS(2541), - [anon_sym_reduce] = ACTIONS(2541), - [anon_sym_select] = ACTIONS(2541), - [anon_sym_insert] = ACTIONS(2541), - [anon_sym_async] = ACTIONS(2541), - [anon_sym_PIPE] = ACTIONS(2546), - [anon_sym_table] = ACTIONS(2558), - [anon_sym_assert] = ACTIONS(2561), - [anon_sym_assert_equal] = ACTIONS(2561), - [anon_sym_download] = ACTIONS(2561), - [anon_sym_help] = ACTIONS(2561), - [anon_sym_length] = ACTIONS(2561), - [anon_sym_output] = ACTIONS(2561), - [anon_sym_output_error] = ACTIONS(2561), - [anon_sym_type] = ACTIONS(2561), - [anon_sym_append] = ACTIONS(2561), - [anon_sym_metadata] = ACTIONS(2561), - [anon_sym_move] = ACTIONS(2561), - [anon_sym_read] = ACTIONS(2561), - [anon_sym_workdir] = ACTIONS(2561), - [anon_sym_write] = ACTIONS(2561), - [anon_sym_from_json] = ACTIONS(2561), - [anon_sym_to_json] = ACTIONS(2561), - [anon_sym_to_string] = ACTIONS(2561), - [anon_sym_to_float] = ACTIONS(2561), - [anon_sym_bash] = ACTIONS(2561), - [anon_sym_fish] = ACTIONS(2561), - [anon_sym_raw] = ACTIONS(2561), - [anon_sym_sh] = ACTIONS(2561), - [anon_sym_zsh] = ACTIONS(2561), - [anon_sym_random] = ACTIONS(2561), - [anon_sym_random_boolean] = ACTIONS(2561), - [anon_sym_random_float] = ACTIONS(2561), - [anon_sym_random_integer] = ACTIONS(2561), - [anon_sym_columns] = ACTIONS(2561), - [anon_sym_rows] = ACTIONS(2561), - [anon_sym_reverse] = ACTIONS(2561), + [anon_sym_LBRACE] = ACTIONS(189), + [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(227), + [anon_sym_match] = ACTIONS(871), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(873), + [anon_sym_for] = ACTIONS(875), + [anon_sym_asyncfor] = ACTIONS(877), + [anon_sym_transform] = ACTIONS(879), + [anon_sym_filter] = ACTIONS(881), + [anon_sym_find] = ACTIONS(883), + [anon_sym_remove] = ACTIONS(885), + [anon_sym_reduce] = ACTIONS(887), + [anon_sym_select] = ACTIONS(889), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(891), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [271] = { - [sym_expression] = STATE(587), - [sym__expression_kind] = STATE(631), - [aux_sym__expression_list] = STATE(269), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_logic] = STATE(631), - [sym_identifier_list] = STATE(2030), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(271), - [ts_builtin_sym_end] = ACTIONS(2473), - [sym_identifier] = ACTIONS(55), + [sym_block] = STATE(589), + [sym_statement] = STATE(160), + [sym_expression] = STATE(516), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(433), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [aux_sym_block_repeat1] = STATE(160), + [sym_identifier] = ACTIONS(867), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2445), - [anon_sym_RBRACE] = ACTIONS(2473), - [anon_sym_SEMI] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(59), - [anon_sym_RPAREN] = ACTIONS(2473), - [anon_sym_COMMA] = ACTIONS(2473), - [sym_integer] = ACTIONS(61), - [sym_float] = ACTIONS(63), - [sym_string] = ACTIONS(63), - [anon_sym_true] = ACTIONS(65), - [anon_sym_false] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_RBRACK] = ACTIONS(2473), - [anon_sym_EQ] = ACTIONS(2475), - [anon_sym_COLON] = ACTIONS(2473), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2473), - [anon_sym_SLASH] = ACTIONS(2473), - [anon_sym_PERCENT] = ACTIONS(2473), - [anon_sym_EQ_EQ] = ACTIONS(2473), - [anon_sym_BANG_EQ] = ACTIONS(2473), - [anon_sym_AMP_AMP] = ACTIONS(2473), - [anon_sym_PIPE_PIPE] = ACTIONS(2473), - [anon_sym_GT] = ACTIONS(2475), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_GT_EQ] = ACTIONS(2473), - [anon_sym_LT_EQ] = ACTIONS(2473), - [anon_sym_PLUS_EQ] = ACTIONS(2473), - [anon_sym_DASH_EQ] = ACTIONS(2473), - [anon_sym_if] = ACTIONS(2475), - [anon_sym_elseif] = ACTIONS(2473), - [anon_sym_else] = ACTIONS(2475), - [anon_sym_match] = ACTIONS(2475), - [anon_sym_EQ_GT] = ACTIONS(121), - [anon_sym_while] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2475), - [anon_sym_asyncfor] = ACTIONS(2473), - [anon_sym_transform] = ACTIONS(2475), - [anon_sym_filter] = ACTIONS(2475), - [anon_sym_find] = ACTIONS(2475), - [anon_sym_remove] = ACTIONS(2475), - [anon_sym_reduce] = ACTIONS(2475), - [anon_sym_select] = ACTIONS(2475), - [anon_sym_insert] = ACTIONS(2475), - [anon_sym_async] = ACTIONS(2475), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(147), - [anon_sym_assert_equal] = ACTIONS(147), - [anon_sym_download] = ACTIONS(147), - [anon_sym_help] = ACTIONS(147), - [anon_sym_length] = ACTIONS(147), - [anon_sym_output] = ACTIONS(147), - [anon_sym_output_error] = ACTIONS(147), - [anon_sym_type] = ACTIONS(147), - [anon_sym_append] = ACTIONS(147), - [anon_sym_metadata] = ACTIONS(147), - [anon_sym_move] = ACTIONS(147), - [anon_sym_read] = ACTIONS(147), - [anon_sym_workdir] = ACTIONS(147), - [anon_sym_write] = ACTIONS(147), - [anon_sym_from_json] = ACTIONS(147), - [anon_sym_to_json] = ACTIONS(147), - [anon_sym_to_string] = ACTIONS(147), - [anon_sym_to_float] = ACTIONS(147), - [anon_sym_bash] = ACTIONS(147), - [anon_sym_fish] = ACTIONS(147), - [anon_sym_raw] = ACTIONS(147), - [anon_sym_sh] = ACTIONS(147), - [anon_sym_zsh] = ACTIONS(147), - [anon_sym_random] = ACTIONS(147), - [anon_sym_random_boolean] = ACTIONS(147), - [anon_sym_random_float] = ACTIONS(147), - [anon_sym_random_integer] = ACTIONS(147), - [anon_sym_columns] = ACTIONS(147), - [anon_sym_rows] = ACTIONS(147), - [anon_sym_reverse] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(1879), + [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(227), + [anon_sym_match] = ACTIONS(871), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(873), + [anon_sym_for] = ACTIONS(875), + [anon_sym_asyncfor] = ACTIONS(877), + [anon_sym_transform] = ACTIONS(879), + [anon_sym_filter] = ACTIONS(881), + [anon_sym_find] = ACTIONS(883), + [anon_sym_remove] = ACTIONS(885), + [anon_sym_reduce] = ACTIONS(887), + [anon_sym_select] = ACTIONS(889), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(891), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [272] = { - [sym_expression] = STATE(587), - [sym__expression_kind] = STATE(631), - [aux_sym__expression_list] = STATE(270), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_logic] = STATE(631), - [sym_identifier_list] = STATE(2030), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(271), - [ts_builtin_sym_end] = ACTIONS(2477), - [sym_identifier] = ACTIONS(55), + [sym_block] = STATE(497), + [sym_statement] = STATE(28), + [sym_expression] = STATE(479), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(365), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1119), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(218), + [aux_sym_block_repeat1] = STATE(28), + [sym_identifier] = ACTIONS(524), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2445), - [anon_sym_RBRACE] = ACTIONS(2477), - [anon_sym_SEMI] = ACTIONS(2477), - [anon_sym_LPAREN] = ACTIONS(59), - [anon_sym_RPAREN] = ACTIONS(2477), - [anon_sym_COMMA] = ACTIONS(2477), - [sym_integer] = ACTIONS(61), - [sym_float] = ACTIONS(63), - [sym_string] = ACTIONS(63), - [anon_sym_true] = ACTIONS(65), - [anon_sym_false] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_RBRACK] = ACTIONS(2477), - [anon_sym_EQ] = ACTIONS(2479), - [anon_sym_COLON] = ACTIONS(2477), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2477), - [anon_sym_SLASH] = ACTIONS(2477), - [anon_sym_PERCENT] = ACTIONS(2477), - [anon_sym_EQ_EQ] = ACTIONS(2477), - [anon_sym_BANG_EQ] = ACTIONS(2477), - [anon_sym_AMP_AMP] = ACTIONS(2477), - [anon_sym_PIPE_PIPE] = ACTIONS(2477), - [anon_sym_GT] = ACTIONS(2479), - [anon_sym_LT] = ACTIONS(2479), - [anon_sym_GT_EQ] = ACTIONS(2477), - [anon_sym_LT_EQ] = ACTIONS(2477), - [anon_sym_PLUS_EQ] = ACTIONS(2477), - [anon_sym_DASH_EQ] = ACTIONS(2477), - [anon_sym_if] = ACTIONS(2479), - [anon_sym_elseif] = ACTIONS(2477), - [anon_sym_else] = ACTIONS(2479), - [anon_sym_match] = ACTIONS(2479), - [anon_sym_EQ_GT] = ACTIONS(121), - [anon_sym_while] = ACTIONS(2479), - [anon_sym_for] = ACTIONS(2479), - [anon_sym_asyncfor] = ACTIONS(2477), - [anon_sym_transform] = ACTIONS(2479), - [anon_sym_filter] = ACTIONS(2479), - [anon_sym_find] = ACTIONS(2479), - [anon_sym_remove] = ACTIONS(2479), - [anon_sym_reduce] = ACTIONS(2479), - [anon_sym_select] = ACTIONS(2479), - [anon_sym_insert] = ACTIONS(2479), - [anon_sym_async] = ACTIONS(2479), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(147), - [anon_sym_assert_equal] = ACTIONS(147), - [anon_sym_download] = ACTIONS(147), - [anon_sym_help] = ACTIONS(147), - [anon_sym_length] = ACTIONS(147), - [anon_sym_output] = ACTIONS(147), - [anon_sym_output_error] = ACTIONS(147), - [anon_sym_type] = ACTIONS(147), - [anon_sym_append] = ACTIONS(147), - [anon_sym_metadata] = ACTIONS(147), - [anon_sym_move] = ACTIONS(147), - [anon_sym_read] = ACTIONS(147), - [anon_sym_workdir] = ACTIONS(147), - [anon_sym_write] = ACTIONS(147), - [anon_sym_from_json] = ACTIONS(147), - [anon_sym_to_json] = ACTIONS(147), - [anon_sym_to_string] = ACTIONS(147), - [anon_sym_to_float] = ACTIONS(147), - [anon_sym_bash] = ACTIONS(147), - [anon_sym_fish] = ACTIONS(147), - [anon_sym_raw] = ACTIONS(147), - [anon_sym_sh] = ACTIONS(147), - [anon_sym_zsh] = ACTIONS(147), - [anon_sym_random] = ACTIONS(147), - [anon_sym_random_boolean] = ACTIONS(147), - [anon_sym_random_float] = ACTIONS(147), - [anon_sym_random_integer] = ACTIONS(147), - [anon_sym_columns] = ACTIONS(147), - [anon_sym_rows] = ACTIONS(147), - [anon_sym_reverse] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(189), + [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(155), + [anon_sym_match] = ACTIONS(528), + [anon_sym_EQ_GT] = ACTIONS(530), + [anon_sym_while] = ACTIONS(532), + [anon_sym_for] = ACTIONS(534), + [anon_sym_asyncfor] = ACTIONS(536), + [anon_sym_transform] = ACTIONS(538), + [anon_sym_filter] = ACTIONS(540), + [anon_sym_find] = ACTIONS(542), + [anon_sym_remove] = ACTIONS(544), + [anon_sym_reduce] = ACTIONS(546), + [anon_sym_select] = ACTIONS(548), + [anon_sym_insert] = ACTIONS(550), + [anon_sym_async] = ACTIONS(552), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(554), + [anon_sym_assert] = ACTIONS(556), + [anon_sym_assert_equal] = ACTIONS(556), + [anon_sym_download] = ACTIONS(556), + [anon_sym_help] = ACTIONS(556), + [anon_sym_length] = ACTIONS(556), + [anon_sym_output] = ACTIONS(556), + [anon_sym_output_error] = ACTIONS(556), + [anon_sym_type] = ACTIONS(556), + [anon_sym_append] = ACTIONS(556), + [anon_sym_metadata] = ACTIONS(556), + [anon_sym_move] = ACTIONS(556), + [anon_sym_read] = ACTIONS(556), + [anon_sym_workdir] = ACTIONS(556), + [anon_sym_write] = ACTIONS(556), + [anon_sym_from_json] = ACTIONS(556), + [anon_sym_to_json] = ACTIONS(556), + [anon_sym_to_string] = ACTIONS(556), + [anon_sym_to_float] = ACTIONS(556), + [anon_sym_bash] = ACTIONS(556), + [anon_sym_fish] = ACTIONS(556), + [anon_sym_raw] = ACTIONS(556), + [anon_sym_sh] = ACTIONS(556), + [anon_sym_zsh] = ACTIONS(556), + [anon_sym_random] = ACTIONS(556), + [anon_sym_random_boolean] = ACTIONS(556), + [anon_sym_random_float] = ACTIONS(556), + [anon_sym_random_integer] = ACTIONS(556), + [anon_sym_columns] = ACTIONS(556), + [anon_sym_rows] = ACTIONS(556), + [anon_sym_reverse] = ACTIONS(556), }, [273] = { - [sym_expression] = STATE(755), - [sym__expression_kind] = STATE(866), - [aux_sym__expression_list] = STATE(337), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(866), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment_operator] = STATE(534), - [sym_identifier_list] = STATE(1752), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(338), - [ts_builtin_sym_end] = ACTIONS(2435), - [sym_identifier] = ACTIONS(2437), + [sym_block] = STATE(928), + [sym_statement] = STATE(146), + [sym_expression] = STATE(449), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(353), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [aux_sym_block_repeat1] = STATE(146), + [sym_identifier] = ACTIONS(259), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_RBRACE] = ACTIONS(2435), - [anon_sym_SEMI] = ACTIONS(2435), - [anon_sym_LPAREN] = ACTIONS(2435), - [anon_sym_RPAREN] = ACTIONS(2435), - [anon_sym_COMMA] = ACTIONS(2435), - [sym_integer] = ACTIONS(2437), - [sym_float] = ACTIONS(2435), - [sym_string] = ACTIONS(2435), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [anon_sym_LBRACK] = ACTIONS(2435), - [anon_sym_RBRACK] = ACTIONS(2435), - [anon_sym_EQ] = ACTIONS(2439), - [anon_sym_COLON] = ACTIONS(2435), - [anon_sym_DOT_DOT] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_PERCENT] = ACTIONS(2435), - [anon_sym_EQ_EQ] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_PIPE_PIPE] = ACTIONS(2435), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_PLUS_EQ] = ACTIONS(2441), - [anon_sym_DASH_EQ] = ACTIONS(2441), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_EQ_GT] = ACTIONS(2435), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_asyncfor] = ACTIONS(2435), - [anon_sym_transform] = ACTIONS(2437), - [anon_sym_filter] = ACTIONS(2437), - [anon_sym_find] = ACTIONS(2437), - [anon_sym_remove] = ACTIONS(2437), - [anon_sym_reduce] = ACTIONS(2437), - [anon_sym_select] = ACTIONS(2437), - [anon_sym_insert] = ACTIONS(2437), - [anon_sym_async] = ACTIONS(2437), - [anon_sym_PIPE] = ACTIONS(2437), - [anon_sym_table] = ACTIONS(2437), - [anon_sym_assert] = ACTIONS(2437), - [anon_sym_assert_equal] = ACTIONS(2437), - [anon_sym_download] = ACTIONS(2437), - [anon_sym_help] = ACTIONS(2437), - [anon_sym_length] = ACTIONS(2437), - [anon_sym_output] = ACTIONS(2437), - [anon_sym_output_error] = ACTIONS(2437), - [anon_sym_type] = ACTIONS(2437), - [anon_sym_append] = ACTIONS(2437), - [anon_sym_metadata] = ACTIONS(2437), - [anon_sym_move] = ACTIONS(2437), - [anon_sym_read] = ACTIONS(2437), - [anon_sym_workdir] = ACTIONS(2437), - [anon_sym_write] = ACTIONS(2437), - [anon_sym_from_json] = ACTIONS(2437), - [anon_sym_to_json] = ACTIONS(2437), - [anon_sym_to_string] = ACTIONS(2437), - [anon_sym_to_float] = ACTIONS(2437), - [anon_sym_bash] = ACTIONS(2437), - [anon_sym_fish] = ACTIONS(2437), - [anon_sym_raw] = ACTIONS(2437), - [anon_sym_sh] = ACTIONS(2437), - [anon_sym_zsh] = ACTIONS(2437), - [anon_sym_random] = ACTIONS(2437), - [anon_sym_random_boolean] = ACTIONS(2437), - [anon_sym_random_float] = ACTIONS(2437), - [anon_sym_random_integer] = ACTIONS(2437), - [anon_sym_columns] = ACTIONS(2437), - [anon_sym_rows] = ACTIONS(2437), - [anon_sym_reverse] = ACTIONS(2437), + [anon_sym_LBRACE] = ACTIONS(1013), + [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(119), + [anon_sym_match] = ACTIONS(263), + [anon_sym_EQ_GT] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_for] = ACTIONS(269), + [anon_sym_asyncfor] = ACTIONS(271), + [anon_sym_transform] = ACTIONS(273), + [anon_sym_filter] = ACTIONS(275), + [anon_sym_find] = ACTIONS(277), + [anon_sym_remove] = ACTIONS(279), + [anon_sym_reduce] = ACTIONS(281), + [anon_sym_select] = ACTIONS(283), + [anon_sym_insert] = ACTIONS(285), + [anon_sym_async] = ACTIONS(287), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(289), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_assert_equal] = ACTIONS(291), + [anon_sym_download] = ACTIONS(291), + [anon_sym_help] = ACTIONS(291), + [anon_sym_length] = ACTIONS(291), + [anon_sym_output] = ACTIONS(291), + [anon_sym_output_error] = ACTIONS(291), + [anon_sym_type] = ACTIONS(291), + [anon_sym_append] = ACTIONS(291), + [anon_sym_metadata] = ACTIONS(291), + [anon_sym_move] = ACTIONS(291), + [anon_sym_read] = ACTIONS(291), + [anon_sym_workdir] = ACTIONS(291), + [anon_sym_write] = ACTIONS(291), + [anon_sym_from_json] = ACTIONS(291), + [anon_sym_to_json] = ACTIONS(291), + [anon_sym_to_string] = ACTIONS(291), + [anon_sym_to_float] = ACTIONS(291), + [anon_sym_bash] = ACTIONS(291), + [anon_sym_fish] = ACTIONS(291), + [anon_sym_raw] = ACTIONS(291), + [anon_sym_sh] = ACTIONS(291), + [anon_sym_zsh] = ACTIONS(291), + [anon_sym_random] = ACTIONS(291), + [anon_sym_random_boolean] = ACTIONS(291), + [anon_sym_random_float] = ACTIONS(291), + [anon_sym_random_integer] = ACTIONS(291), + [anon_sym_columns] = ACTIONS(291), + [anon_sym_rows] = ACTIONS(291), + [anon_sym_reverse] = ACTIONS(291), }, [274] = { - [sym_expression] = STATE(702), - [sym__expression_kind] = STATE(759), - [aux_sym__expression_list] = STATE(344), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(759), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_assignment_operator] = STATE(549), - [sym_identifier_list] = STATE(1984), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(302), - [ts_builtin_sym_end] = ACTIONS(2435), - [sym_identifier] = ACTIONS(2437), + [sym_statement] = STATE(228), + [sym_expression] = STATE(535), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(561), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [aux_sym_block_repeat1] = STATE(228), + [sym_identifier] = ACTIONS(5), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_RBRACE] = ACTIONS(2435), - [anon_sym_SEMI] = ACTIONS(2435), - [anon_sym_LPAREN] = ACTIONS(2435), - [anon_sym_RPAREN] = ACTIONS(2435), - [sym_integer] = ACTIONS(2437), - [sym_float] = ACTIONS(2435), - [sym_string] = ACTIONS(2435), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [anon_sym_LBRACK] = ACTIONS(2435), - [anon_sym_EQ] = ACTIONS(2439), - [anon_sym_COLON] = ACTIONS(2435), - [anon_sym_DOT_DOT] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_PERCENT] = ACTIONS(2435), - [anon_sym_EQ_EQ] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_PIPE_PIPE] = ACTIONS(2435), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_PLUS_EQ] = ACTIONS(2441), - [anon_sym_DASH_EQ] = ACTIONS(2441), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_elseif] = ACTIONS(2435), - [anon_sym_else] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_EQ_GT] = ACTIONS(2435), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_asyncfor] = ACTIONS(2435), - [anon_sym_transform] = ACTIONS(2437), - [anon_sym_filter] = ACTIONS(2437), - [anon_sym_find] = ACTIONS(2437), - [anon_sym_remove] = ACTIONS(2437), - [anon_sym_reduce] = ACTIONS(2437), - [anon_sym_select] = ACTIONS(2437), - [anon_sym_insert] = ACTIONS(2437), - [anon_sym_async] = ACTIONS(2437), - [anon_sym_PIPE] = ACTIONS(2437), - [anon_sym_table] = ACTIONS(2437), - [anon_sym_assert] = ACTIONS(2437), - [anon_sym_assert_equal] = ACTIONS(2437), - [anon_sym_download] = ACTIONS(2437), - [anon_sym_help] = ACTIONS(2437), - [anon_sym_length] = ACTIONS(2437), - [anon_sym_output] = ACTIONS(2437), - [anon_sym_output_error] = ACTIONS(2437), - [anon_sym_type] = ACTIONS(2437), - [anon_sym_append] = ACTIONS(2437), - [anon_sym_metadata] = ACTIONS(2437), - [anon_sym_move] = ACTIONS(2437), - [anon_sym_read] = ACTIONS(2437), - [anon_sym_workdir] = ACTIONS(2437), - [anon_sym_write] = ACTIONS(2437), - [anon_sym_from_json] = ACTIONS(2437), - [anon_sym_to_json] = ACTIONS(2437), - [anon_sym_to_string] = ACTIONS(2437), - [anon_sym_to_float] = ACTIONS(2437), - [anon_sym_bash] = ACTIONS(2437), - [anon_sym_fish] = ACTIONS(2437), - [anon_sym_raw] = ACTIONS(2437), - [anon_sym_sh] = ACTIONS(2437), - [anon_sym_zsh] = ACTIONS(2437), - [anon_sym_random] = ACTIONS(2437), - [anon_sym_random_boolean] = ACTIONS(2437), - [anon_sym_random_float] = ACTIONS(2437), - [anon_sym_random_integer] = ACTIONS(2437), - [anon_sym_columns] = ACTIONS(2437), - [anon_sym_rows] = ACTIONS(2437), - [anon_sym_reverse] = ACTIONS(2437), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_RBRACE] = ACTIONS(1881), + [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_asyncfor] = 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_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [275] = { - [sym_expression] = STATE(1607), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_logic] = STATE(1539), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(275), - [ts_builtin_sym_end] = ACTIONS(2481), - [sym_identifier] = ACTIONS(2483), + [sym_block] = STATE(926), + [sym_statement] = STATE(146), + [sym_expression] = STATE(449), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(353), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [aux_sym_block_repeat1] = STATE(146), + [sym_identifier] = ACTIONS(259), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2486), - [anon_sym_RBRACE] = ACTIONS(2481), - [anon_sym_SEMI] = ACTIONS(2481), - [anon_sym_LPAREN] = ACTIONS(2489), - [anon_sym_RPAREN] = ACTIONS(2481), - [anon_sym_COMMA] = ACTIONS(2481), - [sym_integer] = ACTIONS(2492), - [sym_float] = ACTIONS(2495), - [sym_string] = ACTIONS(2495), - [anon_sym_true] = ACTIONS(2498), - [anon_sym_false] = ACTIONS(2498), - [anon_sym_LBRACK] = ACTIONS(2501), - [anon_sym_RBRACK] = ACTIONS(2481), - [anon_sym_EQ] = ACTIONS(2504), - [anon_sym_COLON] = ACTIONS(2481), - [anon_sym_PLUS] = ACTIONS(2504), - [anon_sym_DASH] = ACTIONS(2504), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_SLASH] = ACTIONS(2481), - [anon_sym_PERCENT] = ACTIONS(2481), - [anon_sym_EQ_EQ] = ACTIONS(2481), - [anon_sym_BANG_EQ] = ACTIONS(2481), - [anon_sym_AMP_AMP] = ACTIONS(2481), - [anon_sym_PIPE_PIPE] = ACTIONS(2481), - [anon_sym_GT] = ACTIONS(2504), - [anon_sym_LT] = ACTIONS(2504), - [anon_sym_GT_EQ] = ACTIONS(2481), - [anon_sym_LT_EQ] = ACTIONS(2481), - [anon_sym_PLUS_EQ] = ACTIONS(2481), - [anon_sym_DASH_EQ] = ACTIONS(2481), - [anon_sym_if] = ACTIONS(2504), - [anon_sym_elseif] = ACTIONS(2481), - [anon_sym_else] = ACTIONS(2504), - [anon_sym_match] = ACTIONS(2504), - [anon_sym_EQ_GT] = ACTIONS(2506), - [anon_sym_while] = ACTIONS(2504), - [anon_sym_for] = ACTIONS(2504), - [anon_sym_asyncfor] = ACTIONS(2481), - [anon_sym_transform] = ACTIONS(2504), - [anon_sym_filter] = ACTIONS(2504), - [anon_sym_find] = ACTIONS(2504), - [anon_sym_remove] = ACTIONS(2504), - [anon_sym_reduce] = ACTIONS(2504), - [anon_sym_select] = ACTIONS(2504), - [anon_sym_insert] = ACTIONS(2504), - [anon_sym_async] = ACTIONS(2504), - [anon_sym_PIPE] = ACTIONS(2509), - [anon_sym_table] = ACTIONS(2512), - [anon_sym_assert] = ACTIONS(2515), - [anon_sym_assert_equal] = ACTIONS(2515), - [anon_sym_download] = ACTIONS(2515), - [anon_sym_help] = ACTIONS(2515), - [anon_sym_length] = ACTIONS(2515), - [anon_sym_output] = ACTIONS(2515), - [anon_sym_output_error] = ACTIONS(2515), - [anon_sym_type] = ACTIONS(2515), - [anon_sym_append] = ACTIONS(2515), - [anon_sym_metadata] = ACTIONS(2515), - [anon_sym_move] = ACTIONS(2515), - [anon_sym_read] = ACTIONS(2515), - [anon_sym_workdir] = ACTIONS(2515), - [anon_sym_write] = ACTIONS(2515), - [anon_sym_from_json] = ACTIONS(2515), - [anon_sym_to_json] = ACTIONS(2515), - [anon_sym_to_string] = ACTIONS(2515), - [anon_sym_to_float] = ACTIONS(2515), - [anon_sym_bash] = ACTIONS(2515), - [anon_sym_fish] = ACTIONS(2515), - [anon_sym_raw] = ACTIONS(2515), - [anon_sym_sh] = ACTIONS(2515), - [anon_sym_zsh] = ACTIONS(2515), - [anon_sym_random] = ACTIONS(2515), - [anon_sym_random_boolean] = ACTIONS(2515), - [anon_sym_random_float] = ACTIONS(2515), - [anon_sym_random_integer] = ACTIONS(2515), - [anon_sym_columns] = ACTIONS(2515), - [anon_sym_rows] = ACTIONS(2515), - [anon_sym_reverse] = ACTIONS(2515), + [anon_sym_LBRACE] = ACTIONS(1013), + [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(119), + [anon_sym_match] = ACTIONS(263), + [anon_sym_EQ_GT] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_for] = ACTIONS(269), + [anon_sym_asyncfor] = ACTIONS(271), + [anon_sym_transform] = ACTIONS(273), + [anon_sym_filter] = ACTIONS(275), + [anon_sym_find] = ACTIONS(277), + [anon_sym_remove] = ACTIONS(279), + [anon_sym_reduce] = ACTIONS(281), + [anon_sym_select] = ACTIONS(283), + [anon_sym_insert] = ACTIONS(285), + [anon_sym_async] = ACTIONS(287), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(289), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_assert_equal] = ACTIONS(291), + [anon_sym_download] = ACTIONS(291), + [anon_sym_help] = ACTIONS(291), + [anon_sym_length] = ACTIONS(291), + [anon_sym_output] = ACTIONS(291), + [anon_sym_output_error] = ACTIONS(291), + [anon_sym_type] = ACTIONS(291), + [anon_sym_append] = ACTIONS(291), + [anon_sym_metadata] = ACTIONS(291), + [anon_sym_move] = ACTIONS(291), + [anon_sym_read] = ACTIONS(291), + [anon_sym_workdir] = ACTIONS(291), + [anon_sym_write] = ACTIONS(291), + [anon_sym_from_json] = ACTIONS(291), + [anon_sym_to_json] = ACTIONS(291), + [anon_sym_to_string] = ACTIONS(291), + [anon_sym_to_float] = ACTIONS(291), + [anon_sym_bash] = ACTIONS(291), + [anon_sym_fish] = ACTIONS(291), + [anon_sym_raw] = ACTIONS(291), + [anon_sym_sh] = ACTIONS(291), + [anon_sym_zsh] = ACTIONS(291), + [anon_sym_random] = ACTIONS(291), + [anon_sym_random_boolean] = ACTIONS(291), + [anon_sym_random_float] = ACTIONS(291), + [anon_sym_random_integer] = ACTIONS(291), + [anon_sym_columns] = ACTIONS(291), + [anon_sym_rows] = ACTIONS(291), + [anon_sym_reverse] = ACTIONS(291), }, [276] = { - [sym_expression] = STATE(1607), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_logic] = STATE(1539), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(275), - [ts_builtin_sym_end] = ACTIONS(2449), - [sym_identifier] = ACTIONS(2451), + [sym_block] = STATE(574), + [sym_statement] = STATE(24), + [sym_expression] = STATE(402), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(348), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1104), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(24), + [sym_identifier] = ACTIONS(187), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_RBRACE] = ACTIONS(2449), - [anon_sym_SEMI] = ACTIONS(2449), - [anon_sym_LPAREN] = ACTIONS(2455), - [anon_sym_RPAREN] = ACTIONS(2449), - [anon_sym_COMMA] = ACTIONS(2449), - [sym_integer] = ACTIONS(2457), - [sym_float] = ACTIONS(2459), - [sym_string] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(2461), - [anon_sym_false] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_RBRACK] = ACTIONS(2449), - [anon_sym_EQ] = ACTIONS(2465), - [anon_sym_COLON] = ACTIONS(2449), - [anon_sym_PLUS] = ACTIONS(2465), - [anon_sym_DASH] = ACTIONS(2465), - [anon_sym_STAR] = ACTIONS(2449), - [anon_sym_SLASH] = ACTIONS(2449), - [anon_sym_PERCENT] = ACTIONS(2449), - [anon_sym_EQ_EQ] = ACTIONS(2449), - [anon_sym_BANG_EQ] = ACTIONS(2449), - [anon_sym_AMP_AMP] = ACTIONS(2449), - [anon_sym_PIPE_PIPE] = ACTIONS(2449), - [anon_sym_GT] = ACTIONS(2465), - [anon_sym_LT] = ACTIONS(2465), - [anon_sym_GT_EQ] = ACTIONS(2449), - [anon_sym_LT_EQ] = ACTIONS(2449), - [anon_sym_PLUS_EQ] = ACTIONS(2449), - [anon_sym_DASH_EQ] = ACTIONS(2449), - [anon_sym_if] = ACTIONS(2465), - [anon_sym_elseif] = ACTIONS(2449), - [anon_sym_else] = ACTIONS(2465), - [anon_sym_match] = ACTIONS(2465), - [anon_sym_EQ_GT] = ACTIONS(2467), - [anon_sym_while] = ACTIONS(2465), - [anon_sym_for] = ACTIONS(2465), - [anon_sym_asyncfor] = ACTIONS(2449), - [anon_sym_transform] = ACTIONS(2465), - [anon_sym_filter] = ACTIONS(2465), - [anon_sym_find] = ACTIONS(2465), - [anon_sym_remove] = ACTIONS(2465), - [anon_sym_reduce] = ACTIONS(2465), - [anon_sym_select] = ACTIONS(2465), - [anon_sym_insert] = ACTIONS(2465), - [anon_sym_async] = ACTIONS(2465), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(2469), - [anon_sym_assert] = ACTIONS(2471), - [anon_sym_assert_equal] = ACTIONS(2471), - [anon_sym_download] = ACTIONS(2471), - [anon_sym_help] = ACTIONS(2471), - [anon_sym_length] = ACTIONS(2471), - [anon_sym_output] = ACTIONS(2471), - [anon_sym_output_error] = ACTIONS(2471), - [anon_sym_type] = ACTIONS(2471), - [anon_sym_append] = ACTIONS(2471), - [anon_sym_metadata] = ACTIONS(2471), - [anon_sym_move] = ACTIONS(2471), - [anon_sym_read] = ACTIONS(2471), - [anon_sym_workdir] = ACTIONS(2471), - [anon_sym_write] = ACTIONS(2471), - [anon_sym_from_json] = ACTIONS(2471), - [anon_sym_to_json] = ACTIONS(2471), - [anon_sym_to_string] = ACTIONS(2471), - [anon_sym_to_float] = ACTIONS(2471), - [anon_sym_bash] = ACTIONS(2471), - [anon_sym_fish] = ACTIONS(2471), - [anon_sym_raw] = ACTIONS(2471), - [anon_sym_sh] = ACTIONS(2471), - [anon_sym_zsh] = ACTIONS(2471), - [anon_sym_random] = ACTIONS(2471), - [anon_sym_random_boolean] = ACTIONS(2471), - [anon_sym_random_float] = ACTIONS(2471), - [anon_sym_random_integer] = ACTIONS(2471), - [anon_sym_columns] = ACTIONS(2471), - [anon_sym_rows] = ACTIONS(2471), - [anon_sym_reverse] = ACTIONS(2471), + [anon_sym_LBRACE] = ACTIONS(1879), + [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(79), + [anon_sym_match] = ACTIONS(193), + [anon_sym_EQ_GT] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_for] = ACTIONS(199), + [anon_sym_asyncfor] = ACTIONS(201), + [anon_sym_transform] = ACTIONS(203), + [anon_sym_filter] = ACTIONS(205), + [anon_sym_find] = ACTIONS(207), + [anon_sym_remove] = ACTIONS(209), + [anon_sym_reduce] = ACTIONS(211), + [anon_sym_select] = ACTIONS(213), + [anon_sym_insert] = ACTIONS(215), + [anon_sym_async] = ACTIONS(217), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(219), + [anon_sym_assert] = ACTIONS(221), + [anon_sym_assert_equal] = ACTIONS(221), + [anon_sym_download] = ACTIONS(221), + [anon_sym_help] = ACTIONS(221), + [anon_sym_length] = ACTIONS(221), + [anon_sym_output] = ACTIONS(221), + [anon_sym_output_error] = ACTIONS(221), + [anon_sym_type] = ACTIONS(221), + [anon_sym_append] = ACTIONS(221), + [anon_sym_metadata] = ACTIONS(221), + [anon_sym_move] = ACTIONS(221), + [anon_sym_read] = ACTIONS(221), + [anon_sym_workdir] = ACTIONS(221), + [anon_sym_write] = ACTIONS(221), + [anon_sym_from_json] = ACTIONS(221), + [anon_sym_to_json] = ACTIONS(221), + [anon_sym_to_string] = ACTIONS(221), + [anon_sym_to_float] = ACTIONS(221), + [anon_sym_bash] = ACTIONS(221), + [anon_sym_fish] = ACTIONS(221), + [anon_sym_raw] = ACTIONS(221), + [anon_sym_sh] = ACTIONS(221), + [anon_sym_zsh] = ACTIONS(221), + [anon_sym_random] = ACTIONS(221), + [anon_sym_random_boolean] = ACTIONS(221), + [anon_sym_random_float] = ACTIONS(221), + [anon_sym_random_integer] = ACTIONS(221), + [anon_sym_columns] = ACTIONS(221), + [anon_sym_rows] = ACTIONS(221), + [anon_sym_reverse] = ACTIONS(221), }, [277] = { - [sym_expression] = STATE(1592), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_logic] = STATE(1539), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(285), - [ts_builtin_sym_end] = ACTIONS(2449), - [sym_identifier] = ACTIONS(2451), + [sym_block] = STATE(478), + [sym_statement] = STATE(22), + [sym_expression] = STATE(449), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(353), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [aux_sym_block_repeat1] = STATE(22), + [sym_identifier] = ACTIONS(259), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_RBRACE] = ACTIONS(2449), - [anon_sym_SEMI] = ACTIONS(2449), - [anon_sym_LPAREN] = ACTIONS(2455), - [anon_sym_RPAREN] = ACTIONS(2449), - [anon_sym_COMMA] = ACTIONS(2449), - [sym_integer] = ACTIONS(2457), - [sym_float] = ACTIONS(2459), - [sym_string] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(2461), - [anon_sym_false] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_RBRACK] = ACTIONS(2449), - [anon_sym_EQ] = ACTIONS(2465), - [anon_sym_COLON] = ACTIONS(2449), - [anon_sym_DOT_DOT] = ACTIONS(2449), - [anon_sym_PLUS] = ACTIONS(2465), - [anon_sym_DASH] = ACTIONS(2465), - [anon_sym_STAR] = ACTIONS(2449), - [anon_sym_SLASH] = ACTIONS(2449), - [anon_sym_PERCENT] = ACTIONS(2449), - [anon_sym_EQ_EQ] = ACTIONS(2449), - [anon_sym_BANG_EQ] = ACTIONS(2449), - [anon_sym_AMP_AMP] = ACTIONS(2449), - [anon_sym_PIPE_PIPE] = ACTIONS(2449), - [anon_sym_GT] = ACTIONS(2465), - [anon_sym_LT] = ACTIONS(2465), - [anon_sym_GT_EQ] = ACTIONS(2449), - [anon_sym_LT_EQ] = ACTIONS(2449), - [anon_sym_PLUS_EQ] = ACTIONS(2449), - [anon_sym_DASH_EQ] = ACTIONS(2449), - [anon_sym_if] = ACTIONS(2465), - [anon_sym_match] = ACTIONS(2465), - [anon_sym_EQ_GT] = ACTIONS(2467), - [anon_sym_while] = ACTIONS(2465), - [anon_sym_for] = ACTIONS(2465), - [anon_sym_asyncfor] = ACTIONS(2449), - [anon_sym_transform] = ACTIONS(2465), - [anon_sym_filter] = ACTIONS(2465), - [anon_sym_find] = ACTIONS(2465), - [anon_sym_remove] = ACTIONS(2465), - [anon_sym_reduce] = ACTIONS(2465), - [anon_sym_select] = ACTIONS(2465), - [anon_sym_insert] = ACTIONS(2465), - [anon_sym_async] = ACTIONS(2465), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(2469), - [anon_sym_assert] = ACTIONS(2471), - [anon_sym_assert_equal] = ACTIONS(2471), - [anon_sym_download] = ACTIONS(2471), - [anon_sym_help] = ACTIONS(2471), - [anon_sym_length] = ACTIONS(2471), - [anon_sym_output] = ACTIONS(2471), - [anon_sym_output_error] = ACTIONS(2471), - [anon_sym_type] = ACTIONS(2471), - [anon_sym_append] = ACTIONS(2471), - [anon_sym_metadata] = ACTIONS(2471), - [anon_sym_move] = ACTIONS(2471), - [anon_sym_read] = ACTIONS(2471), - [anon_sym_workdir] = ACTIONS(2471), - [anon_sym_write] = ACTIONS(2471), - [anon_sym_from_json] = ACTIONS(2471), - [anon_sym_to_json] = ACTIONS(2471), - [anon_sym_to_string] = ACTIONS(2471), - [anon_sym_to_float] = ACTIONS(2471), - [anon_sym_bash] = ACTIONS(2471), - [anon_sym_fish] = ACTIONS(2471), - [anon_sym_raw] = ACTIONS(2471), - [anon_sym_sh] = ACTIONS(2471), - [anon_sym_zsh] = ACTIONS(2471), - [anon_sym_random] = ACTIONS(2471), - [anon_sym_random_boolean] = ACTIONS(2471), - [anon_sym_random_float] = ACTIONS(2471), - [anon_sym_random_integer] = ACTIONS(2471), - [anon_sym_columns] = ACTIONS(2471), - [anon_sym_rows] = ACTIONS(2471), - [anon_sym_reverse] = ACTIONS(2471), + [anon_sym_LBRACE] = ACTIONS(189), + [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(119), + [anon_sym_match] = ACTIONS(263), + [anon_sym_EQ_GT] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_for] = ACTIONS(269), + [anon_sym_asyncfor] = ACTIONS(271), + [anon_sym_transform] = ACTIONS(273), + [anon_sym_filter] = ACTIONS(275), + [anon_sym_find] = ACTIONS(277), + [anon_sym_remove] = ACTIONS(279), + [anon_sym_reduce] = ACTIONS(281), + [anon_sym_select] = ACTIONS(283), + [anon_sym_insert] = ACTIONS(285), + [anon_sym_async] = ACTIONS(287), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(289), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_assert_equal] = ACTIONS(291), + [anon_sym_download] = ACTIONS(291), + [anon_sym_help] = ACTIONS(291), + [anon_sym_length] = ACTIONS(291), + [anon_sym_output] = ACTIONS(291), + [anon_sym_output_error] = ACTIONS(291), + [anon_sym_type] = ACTIONS(291), + [anon_sym_append] = ACTIONS(291), + [anon_sym_metadata] = ACTIONS(291), + [anon_sym_move] = ACTIONS(291), + [anon_sym_read] = ACTIONS(291), + [anon_sym_workdir] = ACTIONS(291), + [anon_sym_write] = ACTIONS(291), + [anon_sym_from_json] = ACTIONS(291), + [anon_sym_to_json] = ACTIONS(291), + [anon_sym_to_string] = ACTIONS(291), + [anon_sym_to_float] = ACTIONS(291), + [anon_sym_bash] = ACTIONS(291), + [anon_sym_fish] = ACTIONS(291), + [anon_sym_raw] = ACTIONS(291), + [anon_sym_sh] = ACTIONS(291), + [anon_sym_zsh] = ACTIONS(291), + [anon_sym_random] = ACTIONS(291), + [anon_sym_random_boolean] = ACTIONS(291), + [anon_sym_random_float] = ACTIONS(291), + [anon_sym_random_integer] = ACTIONS(291), + [anon_sym_columns] = ACTIONS(291), + [anon_sym_rows] = ACTIONS(291), + [anon_sym_reverse] = ACTIONS(291), }, [278] = { - [sym_expression] = STATE(642), - [sym__expression_kind] = STATE(706), - [aux_sym__expression_list] = STATE(278), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_logic] = STATE(706), - [sym_identifier_list] = STATE(1910), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(284), - [ts_builtin_sym_end] = ACTIONS(2518), - [sym_identifier] = ACTIONS(2564), + [sym_block] = STATE(480), + [sym_statement] = STATE(22), + [sym_expression] = STATE(449), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(353), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [aux_sym_block_repeat1] = STATE(22), + [sym_identifier] = ACTIONS(259), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2567), - [anon_sym_RBRACE] = ACTIONS(2518), - [anon_sym_SEMI] = ACTIONS(2518), - [anon_sym_LPAREN] = ACTIONS(2570), - [anon_sym_RPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2518), - [sym_integer] = ACTIONS(2573), - [sym_float] = ACTIONS(2576), - [sym_string] = ACTIONS(2576), - [anon_sym_true] = ACTIONS(2579), - [anon_sym_false] = ACTIONS(2579), - [anon_sym_LBRACK] = ACTIONS(2582), - [anon_sym_RBRACK] = ACTIONS(2518), - [anon_sym_EQ] = ACTIONS(2541), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_DOT_DOT] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2541), - [anon_sym_DASH] = ACTIONS(2541), - [anon_sym_STAR] = ACTIONS(2518), - [anon_sym_SLASH] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_EQ_EQ] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_GT] = ACTIONS(2541), - [anon_sym_LT] = ACTIONS(2541), - [anon_sym_GT_EQ] = ACTIONS(2518), - [anon_sym_LT_EQ] = ACTIONS(2518), - [anon_sym_PLUS_EQ] = ACTIONS(2518), - [anon_sym_DASH_EQ] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2541), - [anon_sym_match] = ACTIONS(2541), - [anon_sym_EQ_GT] = ACTIONS(2585), - [anon_sym_while] = ACTIONS(2541), - [anon_sym_for] = ACTIONS(2541), - [anon_sym_asyncfor] = ACTIONS(2518), - [anon_sym_transform] = ACTIONS(2541), - [anon_sym_filter] = ACTIONS(2541), - [anon_sym_find] = ACTIONS(2541), - [anon_sym_remove] = ACTIONS(2541), - [anon_sym_reduce] = ACTIONS(2541), - [anon_sym_select] = ACTIONS(2541), - [anon_sym_insert] = ACTIONS(2541), - [anon_sym_async] = ACTIONS(2541), - [anon_sym_PIPE] = ACTIONS(2546), - [anon_sym_table] = ACTIONS(2588), - [anon_sym_assert] = ACTIONS(2591), - [anon_sym_assert_equal] = ACTIONS(2591), - [anon_sym_download] = ACTIONS(2591), - [anon_sym_help] = ACTIONS(2591), - [anon_sym_length] = ACTIONS(2591), - [anon_sym_output] = ACTIONS(2591), - [anon_sym_output_error] = ACTIONS(2591), - [anon_sym_type] = ACTIONS(2591), - [anon_sym_append] = ACTIONS(2591), - [anon_sym_metadata] = ACTIONS(2591), - [anon_sym_move] = ACTIONS(2591), - [anon_sym_read] = ACTIONS(2591), - [anon_sym_workdir] = ACTIONS(2591), - [anon_sym_write] = ACTIONS(2591), - [anon_sym_from_json] = ACTIONS(2591), - [anon_sym_to_json] = ACTIONS(2591), - [anon_sym_to_string] = ACTIONS(2591), - [anon_sym_to_float] = ACTIONS(2591), - [anon_sym_bash] = ACTIONS(2591), - [anon_sym_fish] = ACTIONS(2591), - [anon_sym_raw] = ACTIONS(2591), - [anon_sym_sh] = ACTIONS(2591), - [anon_sym_zsh] = ACTIONS(2591), - [anon_sym_random] = ACTIONS(2591), - [anon_sym_random_boolean] = ACTIONS(2591), - [anon_sym_random_float] = ACTIONS(2591), - [anon_sym_random_integer] = ACTIONS(2591), - [anon_sym_columns] = ACTIONS(2591), - [anon_sym_rows] = ACTIONS(2591), - [anon_sym_reverse] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(189), + [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(119), + [anon_sym_match] = ACTIONS(263), + [anon_sym_EQ_GT] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_for] = ACTIONS(269), + [anon_sym_asyncfor] = ACTIONS(271), + [anon_sym_transform] = ACTIONS(273), + [anon_sym_filter] = ACTIONS(275), + [anon_sym_find] = ACTIONS(277), + [anon_sym_remove] = ACTIONS(279), + [anon_sym_reduce] = ACTIONS(281), + [anon_sym_select] = ACTIONS(283), + [anon_sym_insert] = ACTIONS(285), + [anon_sym_async] = ACTIONS(287), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(289), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_assert_equal] = ACTIONS(291), + [anon_sym_download] = ACTIONS(291), + [anon_sym_help] = ACTIONS(291), + [anon_sym_length] = ACTIONS(291), + [anon_sym_output] = ACTIONS(291), + [anon_sym_output_error] = ACTIONS(291), + [anon_sym_type] = ACTIONS(291), + [anon_sym_append] = ACTIONS(291), + [anon_sym_metadata] = ACTIONS(291), + [anon_sym_move] = ACTIONS(291), + [anon_sym_read] = ACTIONS(291), + [anon_sym_workdir] = ACTIONS(291), + [anon_sym_write] = ACTIONS(291), + [anon_sym_from_json] = ACTIONS(291), + [anon_sym_to_json] = ACTIONS(291), + [anon_sym_to_string] = ACTIONS(291), + [anon_sym_to_float] = ACTIONS(291), + [anon_sym_bash] = ACTIONS(291), + [anon_sym_fish] = ACTIONS(291), + [anon_sym_raw] = ACTIONS(291), + [anon_sym_sh] = ACTIONS(291), + [anon_sym_zsh] = ACTIONS(291), + [anon_sym_random] = ACTIONS(291), + [anon_sym_random_boolean] = ACTIONS(291), + [anon_sym_random_float] = ACTIONS(291), + [anon_sym_random_integer] = ACTIONS(291), + [anon_sym_columns] = ACTIONS(291), + [anon_sym_rows] = ACTIONS(291), + [anon_sym_reverse] = ACTIONS(291), }, [279] = { - [sym_expression] = STATE(588), - [sym__expression_kind] = STATE(631), - [aux_sym__expression_list] = STATE(283), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_logic] = STATE(631), - [sym_identifier_list] = STATE(1817), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(265), - [ts_builtin_sym_end] = ACTIONS(2443), - [sym_identifier] = ACTIONS(55), + [sym_block] = STATE(480), + [sym_statement] = STATE(17), + [sym_expression] = STATE(402), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(348), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1104), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(17), + [sym_identifier] = ACTIONS(187), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2445), - [anon_sym_RBRACE] = ACTIONS(2443), - [anon_sym_SEMI] = ACTIONS(2443), - [anon_sym_LPAREN] = ACTIONS(59), - [anon_sym_RPAREN] = ACTIONS(2443), - [sym_integer] = ACTIONS(61), - [sym_float] = ACTIONS(63), - [sym_string] = ACTIONS(63), - [anon_sym_true] = ACTIONS(65), - [anon_sym_false] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_EQ] = ACTIONS(2447), - [anon_sym_COLON] = ACTIONS(2443), - [anon_sym_DOT_DOT] = ACTIONS(2443), - [anon_sym_PLUS] = ACTIONS(2447), - [anon_sym_DASH] = ACTIONS(2447), - [anon_sym_STAR] = ACTIONS(2443), - [anon_sym_SLASH] = ACTIONS(2443), - [anon_sym_PERCENT] = ACTIONS(2443), - [anon_sym_EQ_EQ] = ACTIONS(2443), - [anon_sym_BANG_EQ] = ACTIONS(2443), - [anon_sym_AMP_AMP] = ACTIONS(2443), - [anon_sym_PIPE_PIPE] = ACTIONS(2443), - [anon_sym_GT] = ACTIONS(2447), - [anon_sym_LT] = ACTIONS(2447), - [anon_sym_GT_EQ] = ACTIONS(2443), - [anon_sym_LT_EQ] = ACTIONS(2443), - [anon_sym_PLUS_EQ] = ACTIONS(2443), - [anon_sym_DASH_EQ] = ACTIONS(2443), - [anon_sym_if] = ACTIONS(2447), - [anon_sym_elseif] = ACTIONS(2443), - [anon_sym_else] = ACTIONS(2447), - [anon_sym_match] = ACTIONS(2447), - [anon_sym_EQ_GT] = ACTIONS(85), - [anon_sym_while] = ACTIONS(2447), - [anon_sym_for] = ACTIONS(2447), - [anon_sym_asyncfor] = ACTIONS(2443), - [anon_sym_transform] = ACTIONS(2447), - [anon_sym_filter] = ACTIONS(2447), - [anon_sym_find] = ACTIONS(2447), - [anon_sym_remove] = ACTIONS(2447), - [anon_sym_reduce] = ACTIONS(2447), - [anon_sym_select] = ACTIONS(2447), - [anon_sym_insert] = ACTIONS(2447), - [anon_sym_async] = ACTIONS(2447), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(111), - [anon_sym_assert] = ACTIONS(113), - [anon_sym_assert_equal] = ACTIONS(113), - [anon_sym_download] = ACTIONS(113), - [anon_sym_help] = ACTIONS(113), - [anon_sym_length] = ACTIONS(113), - [anon_sym_output] = ACTIONS(113), - [anon_sym_output_error] = ACTIONS(113), - [anon_sym_type] = ACTIONS(113), - [anon_sym_append] = ACTIONS(113), - [anon_sym_metadata] = ACTIONS(113), - [anon_sym_move] = ACTIONS(113), - [anon_sym_read] = ACTIONS(113), - [anon_sym_workdir] = ACTIONS(113), - [anon_sym_write] = ACTIONS(113), - [anon_sym_from_json] = ACTIONS(113), - [anon_sym_to_json] = ACTIONS(113), - [anon_sym_to_string] = ACTIONS(113), - [anon_sym_to_float] = ACTIONS(113), - [anon_sym_bash] = ACTIONS(113), - [anon_sym_fish] = ACTIONS(113), - [anon_sym_raw] = ACTIONS(113), - [anon_sym_sh] = ACTIONS(113), - [anon_sym_zsh] = ACTIONS(113), - [anon_sym_random] = ACTIONS(113), - [anon_sym_random_boolean] = ACTIONS(113), - [anon_sym_random_float] = ACTIONS(113), - [anon_sym_random_integer] = ACTIONS(113), - [anon_sym_columns] = ACTIONS(113), - [anon_sym_rows] = ACTIONS(113), - [anon_sym_reverse] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(189), + [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(79), + [anon_sym_match] = ACTIONS(193), + [anon_sym_EQ_GT] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_for] = ACTIONS(199), + [anon_sym_asyncfor] = ACTIONS(201), + [anon_sym_transform] = ACTIONS(203), + [anon_sym_filter] = ACTIONS(205), + [anon_sym_find] = ACTIONS(207), + [anon_sym_remove] = ACTIONS(209), + [anon_sym_reduce] = ACTIONS(211), + [anon_sym_select] = ACTIONS(213), + [anon_sym_insert] = ACTIONS(215), + [anon_sym_async] = ACTIONS(217), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(219), + [anon_sym_assert] = ACTIONS(221), + [anon_sym_assert_equal] = ACTIONS(221), + [anon_sym_download] = ACTIONS(221), + [anon_sym_help] = ACTIONS(221), + [anon_sym_length] = ACTIONS(221), + [anon_sym_output] = ACTIONS(221), + [anon_sym_output_error] = ACTIONS(221), + [anon_sym_type] = ACTIONS(221), + [anon_sym_append] = ACTIONS(221), + [anon_sym_metadata] = ACTIONS(221), + [anon_sym_move] = ACTIONS(221), + [anon_sym_read] = ACTIONS(221), + [anon_sym_workdir] = ACTIONS(221), + [anon_sym_write] = ACTIONS(221), + [anon_sym_from_json] = ACTIONS(221), + [anon_sym_to_json] = ACTIONS(221), + [anon_sym_to_string] = ACTIONS(221), + [anon_sym_to_float] = ACTIONS(221), + [anon_sym_bash] = ACTIONS(221), + [anon_sym_fish] = ACTIONS(221), + [anon_sym_raw] = ACTIONS(221), + [anon_sym_sh] = ACTIONS(221), + [anon_sym_zsh] = ACTIONS(221), + [anon_sym_random] = ACTIONS(221), + [anon_sym_random_boolean] = ACTIONS(221), + [anon_sym_random_float] = ACTIONS(221), + [anon_sym_random_integer] = ACTIONS(221), + [anon_sym_columns] = ACTIONS(221), + [anon_sym_rows] = ACTIONS(221), + [anon_sym_reverse] = ACTIONS(221), }, [280] = { - [sym_expression] = STATE(828), - [sym__expression_kind] = STATE(866), - [aux_sym__expression_list] = STATE(361), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(866), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment_operator] = STATE(539), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [ts_builtin_sym_end] = ACTIONS(2435), - [sym_identifier] = ACTIONS(2437), + [sym_block] = STATE(926), + [sym_statement] = STATE(155), + [sym_expression] = STATE(516), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(433), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [aux_sym_block_repeat1] = STATE(155), + [sym_identifier] = ACTIONS(867), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_RBRACE] = ACTIONS(2435), - [anon_sym_SEMI] = ACTIONS(2435), - [anon_sym_LPAREN] = ACTIONS(2435), - [anon_sym_RPAREN] = ACTIONS(2435), - [anon_sym_COMMA] = ACTIONS(2435), - [sym_integer] = ACTIONS(2437), - [sym_float] = ACTIONS(2435), - [sym_string] = ACTIONS(2435), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [anon_sym_LBRACK] = ACTIONS(2435), - [anon_sym_RBRACK] = ACTIONS(2435), - [anon_sym_EQ] = ACTIONS(2439), - [anon_sym_COLON] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_PERCENT] = ACTIONS(2435), - [anon_sym_EQ_EQ] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_PIPE_PIPE] = ACTIONS(2435), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_PLUS_EQ] = ACTIONS(2441), - [anon_sym_DASH_EQ] = ACTIONS(2441), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_EQ_GT] = ACTIONS(2435), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_asyncfor] = ACTIONS(2435), - [anon_sym_transform] = ACTIONS(2437), - [anon_sym_filter] = ACTIONS(2437), - [anon_sym_find] = ACTIONS(2437), - [anon_sym_remove] = ACTIONS(2437), - [anon_sym_reduce] = ACTIONS(2437), - [anon_sym_select] = ACTIONS(2437), - [anon_sym_insert] = ACTIONS(2437), - [anon_sym_async] = ACTIONS(2437), - [anon_sym_PIPE] = ACTIONS(2437), - [anon_sym_table] = ACTIONS(2437), - [anon_sym_assert] = ACTIONS(2437), - [anon_sym_assert_equal] = ACTIONS(2437), - [anon_sym_download] = ACTIONS(2437), - [anon_sym_help] = ACTIONS(2437), - [anon_sym_length] = ACTIONS(2437), - [anon_sym_output] = ACTIONS(2437), - [anon_sym_output_error] = ACTIONS(2437), - [anon_sym_type] = ACTIONS(2437), - [anon_sym_append] = ACTIONS(2437), - [anon_sym_metadata] = ACTIONS(2437), - [anon_sym_move] = ACTIONS(2437), - [anon_sym_read] = ACTIONS(2437), - [anon_sym_workdir] = ACTIONS(2437), - [anon_sym_write] = ACTIONS(2437), - [anon_sym_from_json] = ACTIONS(2437), - [anon_sym_to_json] = ACTIONS(2437), - [anon_sym_to_string] = ACTIONS(2437), - [anon_sym_to_float] = ACTIONS(2437), - [anon_sym_bash] = ACTIONS(2437), - [anon_sym_fish] = ACTIONS(2437), - [anon_sym_raw] = ACTIONS(2437), - [anon_sym_sh] = ACTIONS(2437), - [anon_sym_zsh] = ACTIONS(2437), - [anon_sym_random] = ACTIONS(2437), - [anon_sym_random_boolean] = ACTIONS(2437), - [anon_sym_random_float] = ACTIONS(2437), - [anon_sym_random_integer] = ACTIONS(2437), - [anon_sym_columns] = ACTIONS(2437), - [anon_sym_rows] = ACTIONS(2437), - [anon_sym_reverse] = ACTIONS(2437), + [anon_sym_LBRACE] = ACTIONS(1013), + [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(227), + [anon_sym_match] = ACTIONS(871), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(873), + [anon_sym_for] = ACTIONS(875), + [anon_sym_asyncfor] = ACTIONS(877), + [anon_sym_transform] = ACTIONS(879), + [anon_sym_filter] = ACTIONS(881), + [anon_sym_find] = ACTIONS(883), + [anon_sym_remove] = ACTIONS(885), + [anon_sym_reduce] = ACTIONS(887), + [anon_sym_select] = ACTIONS(889), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(891), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [281] = { - [sym_expression] = STATE(1601), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_logic] = STATE(1539), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(289), - [ts_builtin_sym_end] = ACTIONS(2449), - [sym_identifier] = ACTIONS(2451), + [sym_block] = STATE(497), + [sym_statement] = STATE(32), + [sym_expression] = STATE(516), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(433), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [aux_sym_block_repeat1] = STATE(32), + [sym_identifier] = ACTIONS(867), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_RBRACE] = ACTIONS(2449), - [anon_sym_SEMI] = ACTIONS(2449), - [anon_sym_LPAREN] = ACTIONS(2455), - [anon_sym_RPAREN] = ACTIONS(2449), - [sym_integer] = ACTIONS(2457), - [sym_float] = ACTIONS(2459), - [sym_string] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(2461), - [anon_sym_false] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_EQ] = ACTIONS(2465), - [anon_sym_COLON] = ACTIONS(2449), - [anon_sym_DOT_DOT] = ACTIONS(2449), - [anon_sym_PLUS] = ACTIONS(2465), - [anon_sym_DASH] = ACTIONS(2465), - [anon_sym_STAR] = ACTIONS(2449), - [anon_sym_SLASH] = ACTIONS(2449), - [anon_sym_PERCENT] = ACTIONS(2449), - [anon_sym_EQ_EQ] = ACTIONS(2449), - [anon_sym_BANG_EQ] = ACTIONS(2449), - [anon_sym_AMP_AMP] = ACTIONS(2449), - [anon_sym_PIPE_PIPE] = ACTIONS(2449), - [anon_sym_GT] = ACTIONS(2465), - [anon_sym_LT] = ACTIONS(2465), - [anon_sym_GT_EQ] = ACTIONS(2449), - [anon_sym_LT_EQ] = ACTIONS(2449), - [anon_sym_PLUS_EQ] = ACTIONS(2449), - [anon_sym_DASH_EQ] = ACTIONS(2449), - [anon_sym_if] = ACTIONS(2465), - [anon_sym_elseif] = ACTIONS(2449), - [anon_sym_else] = ACTIONS(2465), - [anon_sym_match] = ACTIONS(2465), - [anon_sym_EQ_GT] = ACTIONS(2467), - [anon_sym_while] = ACTIONS(2465), - [anon_sym_for] = ACTIONS(2465), - [anon_sym_asyncfor] = ACTIONS(2449), - [anon_sym_transform] = ACTIONS(2465), - [anon_sym_filter] = ACTIONS(2465), - [anon_sym_find] = ACTIONS(2465), - [anon_sym_remove] = ACTIONS(2465), - [anon_sym_reduce] = ACTIONS(2465), - [anon_sym_select] = ACTIONS(2465), - [anon_sym_insert] = ACTIONS(2465), - [anon_sym_async] = ACTIONS(2465), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(2469), - [anon_sym_assert] = ACTIONS(2471), - [anon_sym_assert_equal] = ACTIONS(2471), - [anon_sym_download] = ACTIONS(2471), - [anon_sym_help] = ACTIONS(2471), - [anon_sym_length] = ACTIONS(2471), - [anon_sym_output] = ACTIONS(2471), - [anon_sym_output_error] = ACTIONS(2471), - [anon_sym_type] = ACTIONS(2471), - [anon_sym_append] = ACTIONS(2471), - [anon_sym_metadata] = ACTIONS(2471), - [anon_sym_move] = ACTIONS(2471), - [anon_sym_read] = ACTIONS(2471), - [anon_sym_workdir] = ACTIONS(2471), - [anon_sym_write] = ACTIONS(2471), - [anon_sym_from_json] = ACTIONS(2471), - [anon_sym_to_json] = ACTIONS(2471), - [anon_sym_to_string] = ACTIONS(2471), - [anon_sym_to_float] = ACTIONS(2471), - [anon_sym_bash] = ACTIONS(2471), - [anon_sym_fish] = ACTIONS(2471), - [anon_sym_raw] = ACTIONS(2471), - [anon_sym_sh] = ACTIONS(2471), - [anon_sym_zsh] = ACTIONS(2471), - [anon_sym_random] = ACTIONS(2471), - [anon_sym_random_boolean] = ACTIONS(2471), - [anon_sym_random_float] = ACTIONS(2471), - [anon_sym_random_integer] = ACTIONS(2471), - [anon_sym_columns] = ACTIONS(2471), - [anon_sym_rows] = ACTIONS(2471), - [anon_sym_reverse] = ACTIONS(2471), + [anon_sym_LBRACE] = ACTIONS(189), + [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(227), + [anon_sym_match] = ACTIONS(871), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(873), + [anon_sym_for] = ACTIONS(875), + [anon_sym_asyncfor] = ACTIONS(877), + [anon_sym_transform] = ACTIONS(879), + [anon_sym_filter] = ACTIONS(881), + [anon_sym_find] = ACTIONS(883), + [anon_sym_remove] = ACTIONS(885), + [anon_sym_reduce] = ACTIONS(887), + [anon_sym_select] = ACTIONS(889), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(891), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [282] = { - [sym_expression] = STATE(588), - [sym__expression_kind] = STATE(631), - [aux_sym__expression_list] = STATE(283), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_logic] = STATE(631), - [sym_identifier_list] = STATE(1817), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(265), - [ts_builtin_sym_end] = ACTIONS(2477), - [sym_identifier] = ACTIONS(55), + [sym_block] = STATE(926), + [sym_statement] = STATE(153), + [sym_expression] = STATE(479), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(365), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1119), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(218), + [aux_sym_block_repeat1] = STATE(153), + [sym_identifier] = ACTIONS(524), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2445), - [anon_sym_RBRACE] = ACTIONS(2477), - [anon_sym_SEMI] = ACTIONS(2477), - [anon_sym_LPAREN] = ACTIONS(59), - [anon_sym_RPAREN] = ACTIONS(2477), - [sym_integer] = ACTIONS(61), - [sym_float] = ACTIONS(63), - [sym_string] = ACTIONS(63), - [anon_sym_true] = ACTIONS(65), - [anon_sym_false] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_EQ] = ACTIONS(2479), - [anon_sym_COLON] = ACTIONS(2477), - [anon_sym_DOT_DOT] = ACTIONS(2477), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2477), - [anon_sym_SLASH] = ACTIONS(2477), - [anon_sym_PERCENT] = ACTIONS(2477), - [anon_sym_EQ_EQ] = ACTIONS(2477), - [anon_sym_BANG_EQ] = ACTIONS(2477), - [anon_sym_AMP_AMP] = ACTIONS(2477), - [anon_sym_PIPE_PIPE] = ACTIONS(2477), - [anon_sym_GT] = ACTIONS(2479), - [anon_sym_LT] = ACTIONS(2479), - [anon_sym_GT_EQ] = ACTIONS(2477), - [anon_sym_LT_EQ] = ACTIONS(2477), - [anon_sym_PLUS_EQ] = ACTIONS(2477), - [anon_sym_DASH_EQ] = ACTIONS(2477), - [anon_sym_if] = ACTIONS(2479), - [anon_sym_elseif] = ACTIONS(2477), - [anon_sym_else] = ACTIONS(2479), - [anon_sym_match] = ACTIONS(2479), - [anon_sym_EQ_GT] = ACTIONS(85), - [anon_sym_while] = ACTIONS(2479), - [anon_sym_for] = ACTIONS(2479), - [anon_sym_asyncfor] = ACTIONS(2477), - [anon_sym_transform] = ACTIONS(2479), - [anon_sym_filter] = ACTIONS(2479), - [anon_sym_find] = ACTIONS(2479), - [anon_sym_remove] = ACTIONS(2479), - [anon_sym_reduce] = ACTIONS(2479), - [anon_sym_select] = ACTIONS(2479), - [anon_sym_insert] = ACTIONS(2479), - [anon_sym_async] = ACTIONS(2479), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(111), - [anon_sym_assert] = ACTIONS(113), - [anon_sym_assert_equal] = ACTIONS(113), - [anon_sym_download] = ACTIONS(113), - [anon_sym_help] = ACTIONS(113), - [anon_sym_length] = ACTIONS(113), - [anon_sym_output] = ACTIONS(113), - [anon_sym_output_error] = ACTIONS(113), - [anon_sym_type] = ACTIONS(113), - [anon_sym_append] = ACTIONS(113), - [anon_sym_metadata] = ACTIONS(113), - [anon_sym_move] = ACTIONS(113), - [anon_sym_read] = ACTIONS(113), - [anon_sym_workdir] = ACTIONS(113), - [anon_sym_write] = ACTIONS(113), - [anon_sym_from_json] = ACTIONS(113), - [anon_sym_to_json] = ACTIONS(113), - [anon_sym_to_string] = ACTIONS(113), - [anon_sym_to_float] = ACTIONS(113), - [anon_sym_bash] = ACTIONS(113), - [anon_sym_fish] = ACTIONS(113), - [anon_sym_raw] = ACTIONS(113), - [anon_sym_sh] = ACTIONS(113), - [anon_sym_zsh] = ACTIONS(113), - [anon_sym_random] = ACTIONS(113), - [anon_sym_random_boolean] = ACTIONS(113), - [anon_sym_random_float] = ACTIONS(113), - [anon_sym_random_integer] = ACTIONS(113), - [anon_sym_columns] = ACTIONS(113), - [anon_sym_rows] = ACTIONS(113), - [anon_sym_reverse] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(1013), + [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(155), + [anon_sym_match] = ACTIONS(528), + [anon_sym_EQ_GT] = ACTIONS(530), + [anon_sym_while] = ACTIONS(532), + [anon_sym_for] = ACTIONS(534), + [anon_sym_asyncfor] = ACTIONS(536), + [anon_sym_transform] = ACTIONS(538), + [anon_sym_filter] = ACTIONS(540), + [anon_sym_find] = ACTIONS(542), + [anon_sym_remove] = ACTIONS(544), + [anon_sym_reduce] = ACTIONS(546), + [anon_sym_select] = ACTIONS(548), + [anon_sym_insert] = ACTIONS(550), + [anon_sym_async] = ACTIONS(552), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(554), + [anon_sym_assert] = ACTIONS(556), + [anon_sym_assert_equal] = ACTIONS(556), + [anon_sym_download] = ACTIONS(556), + [anon_sym_help] = ACTIONS(556), + [anon_sym_length] = ACTIONS(556), + [anon_sym_output] = ACTIONS(556), + [anon_sym_output_error] = ACTIONS(556), + [anon_sym_type] = ACTIONS(556), + [anon_sym_append] = ACTIONS(556), + [anon_sym_metadata] = ACTIONS(556), + [anon_sym_move] = ACTIONS(556), + [anon_sym_read] = ACTIONS(556), + [anon_sym_workdir] = ACTIONS(556), + [anon_sym_write] = ACTIONS(556), + [anon_sym_from_json] = ACTIONS(556), + [anon_sym_to_json] = ACTIONS(556), + [anon_sym_to_string] = ACTIONS(556), + [anon_sym_to_float] = ACTIONS(556), + [anon_sym_bash] = ACTIONS(556), + [anon_sym_fish] = ACTIONS(556), + [anon_sym_raw] = ACTIONS(556), + [anon_sym_sh] = ACTIONS(556), + [anon_sym_zsh] = ACTIONS(556), + [anon_sym_random] = ACTIONS(556), + [anon_sym_random_boolean] = ACTIONS(556), + [anon_sym_random_float] = ACTIONS(556), + [anon_sym_random_integer] = ACTIONS(556), + [anon_sym_columns] = ACTIONS(556), + [anon_sym_rows] = ACTIONS(556), + [anon_sym_reverse] = ACTIONS(556), }, [283] = { - [sym_expression] = STATE(588), - [sym__expression_kind] = STATE(631), - [aux_sym__expression_list] = STATE(283), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_logic] = STATE(631), - [sym_identifier_list] = STATE(1817), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(265), - [ts_builtin_sym_end] = ACTIONS(2518), - [sym_identifier] = ACTIONS(2520), + [sym_block] = STATE(574), + [sym_statement] = STATE(156), + [sym_expression] = STATE(479), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(365), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1119), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(218), + [aux_sym_block_repeat1] = STATE(156), + [sym_identifier] = ACTIONS(524), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2523), - [anon_sym_RBRACE] = ACTIONS(2518), - [anon_sym_SEMI] = ACTIONS(2518), - [anon_sym_LPAREN] = ACTIONS(2526), - [anon_sym_RPAREN] = ACTIONS(2518), - [sym_integer] = ACTIONS(2529), - [sym_float] = ACTIONS(2532), - [sym_string] = ACTIONS(2532), - [anon_sym_true] = ACTIONS(2535), - [anon_sym_false] = ACTIONS(2535), - [anon_sym_LBRACK] = ACTIONS(2538), - [anon_sym_EQ] = ACTIONS(2541), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_DOT_DOT] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2541), - [anon_sym_DASH] = ACTIONS(2541), - [anon_sym_STAR] = ACTIONS(2518), - [anon_sym_SLASH] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_EQ_EQ] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_GT] = ACTIONS(2541), - [anon_sym_LT] = ACTIONS(2541), - [anon_sym_GT_EQ] = ACTIONS(2518), - [anon_sym_LT_EQ] = ACTIONS(2518), - [anon_sym_PLUS_EQ] = ACTIONS(2518), - [anon_sym_DASH_EQ] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2541), - [anon_sym_elseif] = ACTIONS(2518), - [anon_sym_else] = ACTIONS(2541), - [anon_sym_match] = ACTIONS(2541), - [anon_sym_EQ_GT] = ACTIONS(2543), - [anon_sym_while] = ACTIONS(2541), - [anon_sym_for] = ACTIONS(2541), - [anon_sym_asyncfor] = ACTIONS(2518), - [anon_sym_transform] = ACTIONS(2541), - [anon_sym_filter] = ACTIONS(2541), - [anon_sym_find] = ACTIONS(2541), - [anon_sym_remove] = ACTIONS(2541), - [anon_sym_reduce] = ACTIONS(2541), - [anon_sym_select] = ACTIONS(2541), - [anon_sym_insert] = ACTIONS(2541), - [anon_sym_async] = ACTIONS(2541), - [anon_sym_PIPE] = ACTIONS(2546), - [anon_sym_table] = ACTIONS(2549), - [anon_sym_assert] = ACTIONS(2552), - [anon_sym_assert_equal] = ACTIONS(2552), - [anon_sym_download] = ACTIONS(2552), - [anon_sym_help] = ACTIONS(2552), - [anon_sym_length] = ACTIONS(2552), - [anon_sym_output] = ACTIONS(2552), - [anon_sym_output_error] = ACTIONS(2552), - [anon_sym_type] = ACTIONS(2552), - [anon_sym_append] = ACTIONS(2552), - [anon_sym_metadata] = ACTIONS(2552), - [anon_sym_move] = ACTIONS(2552), - [anon_sym_read] = ACTIONS(2552), - [anon_sym_workdir] = ACTIONS(2552), - [anon_sym_write] = ACTIONS(2552), - [anon_sym_from_json] = ACTIONS(2552), - [anon_sym_to_json] = ACTIONS(2552), - [anon_sym_to_string] = ACTIONS(2552), - [anon_sym_to_float] = ACTIONS(2552), - [anon_sym_bash] = ACTIONS(2552), - [anon_sym_fish] = ACTIONS(2552), - [anon_sym_raw] = ACTIONS(2552), - [anon_sym_sh] = ACTIONS(2552), - [anon_sym_zsh] = ACTIONS(2552), - [anon_sym_random] = ACTIONS(2552), - [anon_sym_random_boolean] = ACTIONS(2552), - [anon_sym_random_float] = ACTIONS(2552), - [anon_sym_random_integer] = ACTIONS(2552), - [anon_sym_columns] = ACTIONS(2552), - [anon_sym_rows] = ACTIONS(2552), - [anon_sym_reverse] = ACTIONS(2552), + [anon_sym_LBRACE] = ACTIONS(1879), + [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(155), + [anon_sym_match] = ACTIONS(528), + [anon_sym_EQ_GT] = ACTIONS(530), + [anon_sym_while] = ACTIONS(532), + [anon_sym_for] = ACTIONS(534), + [anon_sym_asyncfor] = ACTIONS(536), + [anon_sym_transform] = ACTIONS(538), + [anon_sym_filter] = ACTIONS(540), + [anon_sym_find] = ACTIONS(542), + [anon_sym_remove] = ACTIONS(544), + [anon_sym_reduce] = ACTIONS(546), + [anon_sym_select] = ACTIONS(548), + [anon_sym_insert] = ACTIONS(550), + [anon_sym_async] = ACTIONS(552), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(554), + [anon_sym_assert] = ACTIONS(556), + [anon_sym_assert_equal] = ACTIONS(556), + [anon_sym_download] = ACTIONS(556), + [anon_sym_help] = ACTIONS(556), + [anon_sym_length] = ACTIONS(556), + [anon_sym_output] = ACTIONS(556), + [anon_sym_output_error] = ACTIONS(556), + [anon_sym_type] = ACTIONS(556), + [anon_sym_append] = ACTIONS(556), + [anon_sym_metadata] = ACTIONS(556), + [anon_sym_move] = ACTIONS(556), + [anon_sym_read] = ACTIONS(556), + [anon_sym_workdir] = ACTIONS(556), + [anon_sym_write] = ACTIONS(556), + [anon_sym_from_json] = ACTIONS(556), + [anon_sym_to_json] = ACTIONS(556), + [anon_sym_to_string] = ACTIONS(556), + [anon_sym_to_float] = ACTIONS(556), + [anon_sym_bash] = ACTIONS(556), + [anon_sym_fish] = ACTIONS(556), + [anon_sym_raw] = ACTIONS(556), + [anon_sym_sh] = ACTIONS(556), + [anon_sym_zsh] = ACTIONS(556), + [anon_sym_random] = ACTIONS(556), + [anon_sym_random_boolean] = ACTIONS(556), + [anon_sym_random_float] = ACTIONS(556), + [anon_sym_random_integer] = ACTIONS(556), + [anon_sym_columns] = ACTIONS(556), + [anon_sym_rows] = ACTIONS(556), + [anon_sym_reverse] = ACTIONS(556), }, [284] = { - [sym_expression] = STATE(642), - [sym__expression_kind] = STATE(706), - [aux_sym__expression_list] = STATE(288), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_logic] = STATE(706), - [sym_identifier_list] = STATE(1910), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(284), - [ts_builtin_sym_end] = ACTIONS(2473), - [sym_identifier] = ACTIONS(149), + [sym_statement] = STATE(228), + [sym_expression] = STATE(535), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(561), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [aux_sym_block_repeat1] = STATE(228), + [sym_identifier] = ACTIONS(5), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1923), - [anon_sym_RBRACE] = ACTIONS(2473), - [anon_sym_SEMI] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_RPAREN] = ACTIONS(2473), - [anon_sym_COMMA] = ACTIONS(2473), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(2473), - [anon_sym_EQ] = ACTIONS(2475), - [anon_sym_COLON] = ACTIONS(2473), - [anon_sym_DOT_DOT] = ACTIONS(2473), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2473), - [anon_sym_SLASH] = ACTIONS(2473), - [anon_sym_PERCENT] = ACTIONS(2473), - [anon_sym_EQ_EQ] = ACTIONS(2473), - [anon_sym_BANG_EQ] = ACTIONS(2473), - [anon_sym_AMP_AMP] = ACTIONS(2473), - [anon_sym_PIPE_PIPE] = ACTIONS(2473), - [anon_sym_GT] = ACTIONS(2475), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_GT_EQ] = ACTIONS(2473), - [anon_sym_LT_EQ] = ACTIONS(2473), - [anon_sym_PLUS_EQ] = ACTIONS(2473), - [anon_sym_DASH_EQ] = ACTIONS(2473), - [anon_sym_if] = ACTIONS(2475), - [anon_sym_match] = ACTIONS(2475), - [anon_sym_EQ_GT] = ACTIONS(167), - [anon_sym_while] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2475), - [anon_sym_asyncfor] = ACTIONS(2473), - [anon_sym_transform] = ACTIONS(2475), - [anon_sym_filter] = ACTIONS(2475), - [anon_sym_find] = ACTIONS(2475), - [anon_sym_remove] = ACTIONS(2475), - [anon_sym_reduce] = ACTIONS(2475), - [anon_sym_select] = ACTIONS(2475), - [anon_sym_insert] = ACTIONS(2475), - [anon_sym_async] = ACTIONS(2475), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(191), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_assert_equal] = ACTIONS(193), - [anon_sym_download] = ACTIONS(193), - [anon_sym_help] = ACTIONS(193), - [anon_sym_length] = ACTIONS(193), - [anon_sym_output] = ACTIONS(193), - [anon_sym_output_error] = ACTIONS(193), - [anon_sym_type] = ACTIONS(193), - [anon_sym_append] = ACTIONS(193), - [anon_sym_metadata] = ACTIONS(193), - [anon_sym_move] = ACTIONS(193), - [anon_sym_read] = ACTIONS(193), - [anon_sym_workdir] = ACTIONS(193), - [anon_sym_write] = ACTIONS(193), - [anon_sym_from_json] = ACTIONS(193), - [anon_sym_to_json] = ACTIONS(193), - [anon_sym_to_string] = ACTIONS(193), - [anon_sym_to_float] = ACTIONS(193), - [anon_sym_bash] = ACTIONS(193), - [anon_sym_fish] = ACTIONS(193), - [anon_sym_raw] = ACTIONS(193), - [anon_sym_sh] = ACTIONS(193), - [anon_sym_zsh] = ACTIONS(193), - [anon_sym_random] = ACTIONS(193), - [anon_sym_random_boolean] = ACTIONS(193), - [anon_sym_random_float] = ACTIONS(193), - [anon_sym_random_integer] = ACTIONS(193), - [anon_sym_columns] = ACTIONS(193), - [anon_sym_rows] = ACTIONS(193), - [anon_sym_reverse] = ACTIONS(193), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_RBRACE] = ACTIONS(1883), + [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_asyncfor] = 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_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [285] = { - [sym_expression] = STATE(1592), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_logic] = STATE(1539), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(285), - [ts_builtin_sym_end] = ACTIONS(2481), - [sym_identifier] = ACTIONS(2483), + [sym_block] = STATE(464), + [sym_statement] = STATE(17), + [sym_expression] = STATE(402), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(348), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1104), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(17), + [sym_identifier] = ACTIONS(187), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2486), - [anon_sym_RBRACE] = ACTIONS(2481), - [anon_sym_SEMI] = ACTIONS(2481), - [anon_sym_LPAREN] = ACTIONS(2489), - [anon_sym_RPAREN] = ACTIONS(2481), - [anon_sym_COMMA] = ACTIONS(2481), - [sym_integer] = ACTIONS(2492), - [sym_float] = ACTIONS(2495), - [sym_string] = ACTIONS(2495), - [anon_sym_true] = ACTIONS(2498), - [anon_sym_false] = ACTIONS(2498), - [anon_sym_LBRACK] = ACTIONS(2501), - [anon_sym_RBRACK] = ACTIONS(2481), - [anon_sym_EQ] = ACTIONS(2504), - [anon_sym_COLON] = ACTIONS(2481), - [anon_sym_DOT_DOT] = ACTIONS(2481), - [anon_sym_PLUS] = ACTIONS(2504), - [anon_sym_DASH] = ACTIONS(2504), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_SLASH] = ACTIONS(2481), - [anon_sym_PERCENT] = ACTIONS(2481), - [anon_sym_EQ_EQ] = ACTIONS(2481), - [anon_sym_BANG_EQ] = ACTIONS(2481), - [anon_sym_AMP_AMP] = ACTIONS(2481), - [anon_sym_PIPE_PIPE] = ACTIONS(2481), - [anon_sym_GT] = ACTIONS(2504), - [anon_sym_LT] = ACTIONS(2504), - [anon_sym_GT_EQ] = ACTIONS(2481), - [anon_sym_LT_EQ] = ACTIONS(2481), - [anon_sym_PLUS_EQ] = ACTIONS(2481), - [anon_sym_DASH_EQ] = ACTIONS(2481), - [anon_sym_if] = ACTIONS(2504), - [anon_sym_match] = ACTIONS(2504), - [anon_sym_EQ_GT] = ACTIONS(2506), - [anon_sym_while] = ACTIONS(2504), - [anon_sym_for] = ACTIONS(2504), - [anon_sym_asyncfor] = ACTIONS(2481), - [anon_sym_transform] = ACTIONS(2504), - [anon_sym_filter] = ACTIONS(2504), - [anon_sym_find] = ACTIONS(2504), - [anon_sym_remove] = ACTIONS(2504), - [anon_sym_reduce] = ACTIONS(2504), - [anon_sym_select] = ACTIONS(2504), - [anon_sym_insert] = ACTIONS(2504), - [anon_sym_async] = ACTIONS(2504), - [anon_sym_PIPE] = ACTIONS(2509), - [anon_sym_table] = ACTIONS(2512), - [anon_sym_assert] = ACTIONS(2515), - [anon_sym_assert_equal] = ACTIONS(2515), - [anon_sym_download] = ACTIONS(2515), - [anon_sym_help] = ACTIONS(2515), - [anon_sym_length] = ACTIONS(2515), - [anon_sym_output] = ACTIONS(2515), - [anon_sym_output_error] = ACTIONS(2515), - [anon_sym_type] = ACTIONS(2515), - [anon_sym_append] = ACTIONS(2515), - [anon_sym_metadata] = ACTIONS(2515), - [anon_sym_move] = ACTIONS(2515), - [anon_sym_read] = ACTIONS(2515), - [anon_sym_workdir] = ACTIONS(2515), - [anon_sym_write] = ACTIONS(2515), - [anon_sym_from_json] = ACTIONS(2515), - [anon_sym_to_json] = ACTIONS(2515), - [anon_sym_to_string] = ACTIONS(2515), - [anon_sym_to_float] = ACTIONS(2515), - [anon_sym_bash] = ACTIONS(2515), - [anon_sym_fish] = ACTIONS(2515), - [anon_sym_raw] = ACTIONS(2515), - [anon_sym_sh] = ACTIONS(2515), - [anon_sym_zsh] = ACTIONS(2515), - [anon_sym_random] = ACTIONS(2515), - [anon_sym_random_boolean] = ACTIONS(2515), - [anon_sym_random_float] = ACTIONS(2515), - [anon_sym_random_integer] = ACTIONS(2515), - [anon_sym_columns] = ACTIONS(2515), - [anon_sym_rows] = ACTIONS(2515), - [anon_sym_reverse] = ACTIONS(2515), + [anon_sym_LBRACE] = ACTIONS(189), + [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(79), + [anon_sym_match] = ACTIONS(193), + [anon_sym_EQ_GT] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_for] = ACTIONS(199), + [anon_sym_asyncfor] = ACTIONS(201), + [anon_sym_transform] = ACTIONS(203), + [anon_sym_filter] = ACTIONS(205), + [anon_sym_find] = ACTIONS(207), + [anon_sym_remove] = ACTIONS(209), + [anon_sym_reduce] = ACTIONS(211), + [anon_sym_select] = ACTIONS(213), + [anon_sym_insert] = ACTIONS(215), + [anon_sym_async] = ACTIONS(217), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(219), + [anon_sym_assert] = ACTIONS(221), + [anon_sym_assert_equal] = ACTIONS(221), + [anon_sym_download] = ACTIONS(221), + [anon_sym_help] = ACTIONS(221), + [anon_sym_length] = ACTIONS(221), + [anon_sym_output] = ACTIONS(221), + [anon_sym_output_error] = ACTIONS(221), + [anon_sym_type] = ACTIONS(221), + [anon_sym_append] = ACTIONS(221), + [anon_sym_metadata] = ACTIONS(221), + [anon_sym_move] = ACTIONS(221), + [anon_sym_read] = ACTIONS(221), + [anon_sym_workdir] = ACTIONS(221), + [anon_sym_write] = ACTIONS(221), + [anon_sym_from_json] = ACTIONS(221), + [anon_sym_to_json] = ACTIONS(221), + [anon_sym_to_string] = ACTIONS(221), + [anon_sym_to_float] = ACTIONS(221), + [anon_sym_bash] = ACTIONS(221), + [anon_sym_fish] = ACTIONS(221), + [anon_sym_raw] = ACTIONS(221), + [anon_sym_sh] = ACTIONS(221), + [anon_sym_zsh] = ACTIONS(221), + [anon_sym_random] = ACTIONS(221), + [anon_sym_random_boolean] = ACTIONS(221), + [anon_sym_random_float] = ACTIONS(221), + [anon_sym_random_integer] = ACTIONS(221), + [anon_sym_columns] = ACTIONS(221), + [anon_sym_rows] = ACTIONS(221), + [anon_sym_reverse] = ACTIONS(221), }, [286] = { - [sym_expression] = STATE(588), - [sym__expression_kind] = STATE(631), - [aux_sym__expression_list] = STATE(279), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_logic] = STATE(631), - [sym_identifier_list] = STATE(1817), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(265), - [ts_builtin_sym_end] = ACTIONS(2473), - [sym_identifier] = ACTIONS(55), + [sym_block] = STATE(928), + [sym_statement] = STATE(158), + [sym_expression] = STATE(516), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(433), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [aux_sym_block_repeat1] = STATE(158), + [sym_identifier] = ACTIONS(867), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2445), - [anon_sym_RBRACE] = ACTIONS(2473), - [anon_sym_SEMI] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(59), - [anon_sym_RPAREN] = ACTIONS(2473), - [sym_integer] = ACTIONS(61), - [sym_float] = ACTIONS(63), - [sym_string] = ACTIONS(63), - [anon_sym_true] = ACTIONS(65), - [anon_sym_false] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_EQ] = ACTIONS(2475), - [anon_sym_COLON] = ACTIONS(2473), - [anon_sym_DOT_DOT] = ACTIONS(2473), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2473), - [anon_sym_SLASH] = ACTIONS(2473), - [anon_sym_PERCENT] = ACTIONS(2473), - [anon_sym_EQ_EQ] = ACTIONS(2473), - [anon_sym_BANG_EQ] = ACTIONS(2473), - [anon_sym_AMP_AMP] = ACTIONS(2473), - [anon_sym_PIPE_PIPE] = ACTIONS(2473), - [anon_sym_GT] = ACTIONS(2475), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_GT_EQ] = ACTIONS(2473), - [anon_sym_LT_EQ] = ACTIONS(2473), - [anon_sym_PLUS_EQ] = ACTIONS(2473), - [anon_sym_DASH_EQ] = ACTIONS(2473), - [anon_sym_if] = ACTIONS(2475), - [anon_sym_elseif] = ACTIONS(2473), - [anon_sym_else] = ACTIONS(2475), - [anon_sym_match] = ACTIONS(2475), - [anon_sym_EQ_GT] = ACTIONS(85), - [anon_sym_while] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2475), - [anon_sym_asyncfor] = ACTIONS(2473), - [anon_sym_transform] = ACTIONS(2475), - [anon_sym_filter] = ACTIONS(2475), - [anon_sym_find] = ACTIONS(2475), - [anon_sym_remove] = ACTIONS(2475), - [anon_sym_reduce] = ACTIONS(2475), - [anon_sym_select] = ACTIONS(2475), - [anon_sym_insert] = ACTIONS(2475), - [anon_sym_async] = ACTIONS(2475), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(111), - [anon_sym_assert] = ACTIONS(113), - [anon_sym_assert_equal] = ACTIONS(113), - [anon_sym_download] = ACTIONS(113), - [anon_sym_help] = ACTIONS(113), - [anon_sym_length] = ACTIONS(113), - [anon_sym_output] = ACTIONS(113), - [anon_sym_output_error] = ACTIONS(113), - [anon_sym_type] = ACTIONS(113), - [anon_sym_append] = ACTIONS(113), - [anon_sym_metadata] = ACTIONS(113), - [anon_sym_move] = ACTIONS(113), - [anon_sym_read] = ACTIONS(113), - [anon_sym_workdir] = ACTIONS(113), - [anon_sym_write] = ACTIONS(113), - [anon_sym_from_json] = ACTIONS(113), - [anon_sym_to_json] = ACTIONS(113), - [anon_sym_to_string] = ACTIONS(113), - [anon_sym_to_float] = ACTIONS(113), - [anon_sym_bash] = ACTIONS(113), - [anon_sym_fish] = ACTIONS(113), - [anon_sym_raw] = ACTIONS(113), - [anon_sym_sh] = ACTIONS(113), - [anon_sym_zsh] = ACTIONS(113), - [anon_sym_random] = ACTIONS(113), - [anon_sym_random_boolean] = ACTIONS(113), - [anon_sym_random_float] = ACTIONS(113), - [anon_sym_random_integer] = ACTIONS(113), - [anon_sym_columns] = ACTIONS(113), - [anon_sym_rows] = ACTIONS(113), - [anon_sym_reverse] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(1013), + [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(227), + [anon_sym_match] = ACTIONS(871), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(873), + [anon_sym_for] = ACTIONS(875), + [anon_sym_asyncfor] = ACTIONS(877), + [anon_sym_transform] = ACTIONS(879), + [anon_sym_filter] = ACTIONS(881), + [anon_sym_find] = ACTIONS(883), + [anon_sym_remove] = ACTIONS(885), + [anon_sym_reduce] = ACTIONS(887), + [anon_sym_select] = ACTIONS(889), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(891), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [287] = { - [sym_expression] = STATE(642), - [sym__expression_kind] = STATE(706), - [aux_sym__expression_list] = STATE(278), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_logic] = STATE(706), - [sym_identifier_list] = STATE(1910), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(284), - [ts_builtin_sym_end] = ACTIONS(2477), - [sym_identifier] = ACTIONS(149), + [sym_block] = STATE(407), + [sym_statement] = STATE(26), + [sym_expression] = STATE(448), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(414), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1085), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(203), + [aux_sym_block_repeat1] = STATE(26), + [sym_identifier] = ACTIONS(223), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1923), - [anon_sym_RBRACE] = ACTIONS(2477), - [anon_sym_SEMI] = ACTIONS(2477), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_RPAREN] = ACTIONS(2477), - [anon_sym_COMMA] = ACTIONS(2477), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(2477), - [anon_sym_EQ] = ACTIONS(2479), - [anon_sym_COLON] = ACTIONS(2477), - [anon_sym_DOT_DOT] = ACTIONS(2477), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2477), - [anon_sym_SLASH] = ACTIONS(2477), - [anon_sym_PERCENT] = ACTIONS(2477), - [anon_sym_EQ_EQ] = ACTIONS(2477), - [anon_sym_BANG_EQ] = ACTIONS(2477), - [anon_sym_AMP_AMP] = ACTIONS(2477), - [anon_sym_PIPE_PIPE] = ACTIONS(2477), - [anon_sym_GT] = ACTIONS(2479), - [anon_sym_LT] = ACTIONS(2479), - [anon_sym_GT_EQ] = ACTIONS(2477), - [anon_sym_LT_EQ] = ACTIONS(2477), - [anon_sym_PLUS_EQ] = ACTIONS(2477), - [anon_sym_DASH_EQ] = ACTIONS(2477), - [anon_sym_if] = ACTIONS(2479), - [anon_sym_match] = ACTIONS(2479), - [anon_sym_EQ_GT] = ACTIONS(167), - [anon_sym_while] = ACTIONS(2479), - [anon_sym_for] = ACTIONS(2479), - [anon_sym_asyncfor] = ACTIONS(2477), - [anon_sym_transform] = ACTIONS(2479), - [anon_sym_filter] = ACTIONS(2479), - [anon_sym_find] = ACTIONS(2479), - [anon_sym_remove] = ACTIONS(2479), - [anon_sym_reduce] = ACTIONS(2479), - [anon_sym_select] = ACTIONS(2479), - [anon_sym_insert] = ACTIONS(2479), - [anon_sym_async] = ACTIONS(2479), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(191), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_assert_equal] = ACTIONS(193), - [anon_sym_download] = ACTIONS(193), - [anon_sym_help] = ACTIONS(193), - [anon_sym_length] = ACTIONS(193), - [anon_sym_output] = ACTIONS(193), - [anon_sym_output_error] = ACTIONS(193), - [anon_sym_type] = ACTIONS(193), - [anon_sym_append] = ACTIONS(193), - [anon_sym_metadata] = ACTIONS(193), - [anon_sym_move] = ACTIONS(193), - [anon_sym_read] = ACTIONS(193), - [anon_sym_workdir] = ACTIONS(193), - [anon_sym_write] = ACTIONS(193), - [anon_sym_from_json] = ACTIONS(193), - [anon_sym_to_json] = ACTIONS(193), - [anon_sym_to_string] = ACTIONS(193), - [anon_sym_to_float] = ACTIONS(193), - [anon_sym_bash] = ACTIONS(193), - [anon_sym_fish] = ACTIONS(193), - [anon_sym_raw] = ACTIONS(193), - [anon_sym_sh] = ACTIONS(193), - [anon_sym_zsh] = ACTIONS(193), - [anon_sym_random] = ACTIONS(193), - [anon_sym_random_boolean] = ACTIONS(193), - [anon_sym_random_float] = ACTIONS(193), - [anon_sym_random_integer] = ACTIONS(193), - [anon_sym_columns] = ACTIONS(193), - [anon_sym_rows] = ACTIONS(193), - [anon_sym_reverse] = ACTIONS(193), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_if] = ACTIONS(227), + [anon_sym_match] = ACTIONS(229), + [anon_sym_EQ_GT] = ACTIONS(231), + [anon_sym_while] = ACTIONS(233), + [anon_sym_for] = ACTIONS(235), + [anon_sym_asyncfor] = ACTIONS(237), + [anon_sym_transform] = ACTIONS(239), + [anon_sym_filter] = ACTIONS(241), + [anon_sym_find] = ACTIONS(243), + [anon_sym_remove] = ACTIONS(245), + [anon_sym_reduce] = ACTIONS(247), + [anon_sym_select] = ACTIONS(249), + [anon_sym_insert] = ACTIONS(251), + [anon_sym_async] = ACTIONS(253), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(255), + [anon_sym_assert] = ACTIONS(257), + [anon_sym_assert_equal] = ACTIONS(257), + [anon_sym_download] = ACTIONS(257), + [anon_sym_help] = ACTIONS(257), + [anon_sym_length] = ACTIONS(257), + [anon_sym_output] = ACTIONS(257), + [anon_sym_output_error] = ACTIONS(257), + [anon_sym_type] = ACTIONS(257), + [anon_sym_append] = ACTIONS(257), + [anon_sym_metadata] = ACTIONS(257), + [anon_sym_move] = ACTIONS(257), + [anon_sym_read] = ACTIONS(257), + [anon_sym_workdir] = ACTIONS(257), + [anon_sym_write] = ACTIONS(257), + [anon_sym_from_json] = ACTIONS(257), + [anon_sym_to_json] = ACTIONS(257), + [anon_sym_to_string] = ACTIONS(257), + [anon_sym_to_float] = ACTIONS(257), + [anon_sym_bash] = ACTIONS(257), + [anon_sym_fish] = ACTIONS(257), + [anon_sym_raw] = ACTIONS(257), + [anon_sym_sh] = ACTIONS(257), + [anon_sym_zsh] = ACTIONS(257), + [anon_sym_random] = ACTIONS(257), + [anon_sym_random_boolean] = ACTIONS(257), + [anon_sym_random_float] = ACTIONS(257), + [anon_sym_random_integer] = ACTIONS(257), + [anon_sym_columns] = ACTIONS(257), + [anon_sym_rows] = ACTIONS(257), + [anon_sym_reverse] = ACTIONS(257), }, [288] = { - [sym_expression] = STATE(642), - [sym__expression_kind] = STATE(706), - [aux_sym__expression_list] = STATE(278), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_logic] = STATE(706), - [sym_identifier_list] = STATE(1910), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(284), - [ts_builtin_sym_end] = ACTIONS(2443), - [sym_identifier] = ACTIONS(149), + [sym_block] = STATE(589), + [sym_statement] = STATE(24), + [sym_expression] = STATE(402), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(348), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1104), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(24), + [sym_identifier] = ACTIONS(187), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1923), - [anon_sym_RBRACE] = ACTIONS(2443), - [anon_sym_SEMI] = ACTIONS(2443), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_RPAREN] = ACTIONS(2443), - [anon_sym_COMMA] = ACTIONS(2443), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(2443), - [anon_sym_EQ] = ACTIONS(2447), - [anon_sym_COLON] = ACTIONS(2443), - [anon_sym_DOT_DOT] = ACTIONS(2443), - [anon_sym_PLUS] = ACTIONS(2447), - [anon_sym_DASH] = ACTIONS(2447), - [anon_sym_STAR] = ACTIONS(2443), - [anon_sym_SLASH] = ACTIONS(2443), - [anon_sym_PERCENT] = ACTIONS(2443), - [anon_sym_EQ_EQ] = ACTIONS(2443), - [anon_sym_BANG_EQ] = ACTIONS(2443), - [anon_sym_AMP_AMP] = ACTIONS(2443), - [anon_sym_PIPE_PIPE] = ACTIONS(2443), - [anon_sym_GT] = ACTIONS(2447), - [anon_sym_LT] = ACTIONS(2447), - [anon_sym_GT_EQ] = ACTIONS(2443), - [anon_sym_LT_EQ] = ACTIONS(2443), - [anon_sym_PLUS_EQ] = ACTIONS(2443), - [anon_sym_DASH_EQ] = ACTIONS(2443), - [anon_sym_if] = ACTIONS(2447), - [anon_sym_match] = ACTIONS(2447), - [anon_sym_EQ_GT] = ACTIONS(167), - [anon_sym_while] = ACTIONS(2447), - [anon_sym_for] = ACTIONS(2447), - [anon_sym_asyncfor] = ACTIONS(2443), - [anon_sym_transform] = ACTIONS(2447), - [anon_sym_filter] = ACTIONS(2447), - [anon_sym_find] = ACTIONS(2447), - [anon_sym_remove] = ACTIONS(2447), - [anon_sym_reduce] = ACTIONS(2447), - [anon_sym_select] = ACTIONS(2447), - [anon_sym_insert] = ACTIONS(2447), - [anon_sym_async] = ACTIONS(2447), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(191), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_assert_equal] = ACTIONS(193), - [anon_sym_download] = ACTIONS(193), - [anon_sym_help] = ACTIONS(193), - [anon_sym_length] = ACTIONS(193), - [anon_sym_output] = ACTIONS(193), - [anon_sym_output_error] = ACTIONS(193), - [anon_sym_type] = ACTIONS(193), - [anon_sym_append] = ACTIONS(193), - [anon_sym_metadata] = ACTIONS(193), - [anon_sym_move] = ACTIONS(193), - [anon_sym_read] = ACTIONS(193), - [anon_sym_workdir] = ACTIONS(193), - [anon_sym_write] = ACTIONS(193), - [anon_sym_from_json] = ACTIONS(193), - [anon_sym_to_json] = ACTIONS(193), - [anon_sym_to_string] = ACTIONS(193), - [anon_sym_to_float] = ACTIONS(193), - [anon_sym_bash] = ACTIONS(193), - [anon_sym_fish] = ACTIONS(193), - [anon_sym_raw] = ACTIONS(193), - [anon_sym_sh] = ACTIONS(193), - [anon_sym_zsh] = ACTIONS(193), - [anon_sym_random] = ACTIONS(193), - [anon_sym_random_boolean] = ACTIONS(193), - [anon_sym_random_float] = ACTIONS(193), - [anon_sym_random_integer] = ACTIONS(193), - [anon_sym_columns] = ACTIONS(193), - [anon_sym_rows] = ACTIONS(193), - [anon_sym_reverse] = ACTIONS(193), + [anon_sym_LBRACE] = ACTIONS(1879), + [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(79), + [anon_sym_match] = ACTIONS(193), + [anon_sym_EQ_GT] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_for] = ACTIONS(199), + [anon_sym_asyncfor] = ACTIONS(201), + [anon_sym_transform] = ACTIONS(203), + [anon_sym_filter] = ACTIONS(205), + [anon_sym_find] = ACTIONS(207), + [anon_sym_remove] = ACTIONS(209), + [anon_sym_reduce] = ACTIONS(211), + [anon_sym_select] = ACTIONS(213), + [anon_sym_insert] = ACTIONS(215), + [anon_sym_async] = ACTIONS(217), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(219), + [anon_sym_assert] = ACTIONS(221), + [anon_sym_assert_equal] = ACTIONS(221), + [anon_sym_download] = ACTIONS(221), + [anon_sym_help] = ACTIONS(221), + [anon_sym_length] = ACTIONS(221), + [anon_sym_output] = ACTIONS(221), + [anon_sym_output_error] = ACTIONS(221), + [anon_sym_type] = ACTIONS(221), + [anon_sym_append] = ACTIONS(221), + [anon_sym_metadata] = ACTIONS(221), + [anon_sym_move] = ACTIONS(221), + [anon_sym_read] = ACTIONS(221), + [anon_sym_workdir] = ACTIONS(221), + [anon_sym_write] = ACTIONS(221), + [anon_sym_from_json] = ACTIONS(221), + [anon_sym_to_json] = ACTIONS(221), + [anon_sym_to_string] = ACTIONS(221), + [anon_sym_to_float] = ACTIONS(221), + [anon_sym_bash] = ACTIONS(221), + [anon_sym_fish] = ACTIONS(221), + [anon_sym_raw] = ACTIONS(221), + [anon_sym_sh] = ACTIONS(221), + [anon_sym_zsh] = ACTIONS(221), + [anon_sym_random] = ACTIONS(221), + [anon_sym_random_boolean] = ACTIONS(221), + [anon_sym_random_float] = ACTIONS(221), + [anon_sym_random_integer] = ACTIONS(221), + [anon_sym_columns] = ACTIONS(221), + [anon_sym_rows] = ACTIONS(221), + [anon_sym_reverse] = ACTIONS(221), }, [289] = { - [sym_expression] = STATE(1601), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_logic] = STATE(1539), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(289), - [ts_builtin_sym_end] = ACTIONS(2481), - [sym_identifier] = ACTIONS(2483), + [sym_block] = STATE(928), + [sym_statement] = STATE(154), + [sym_expression] = STATE(479), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(365), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1119), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(218), + [aux_sym_block_repeat1] = STATE(154), + [sym_identifier] = ACTIONS(524), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2486), - [anon_sym_RBRACE] = ACTIONS(2481), - [anon_sym_SEMI] = ACTIONS(2481), - [anon_sym_LPAREN] = ACTIONS(2489), - [anon_sym_RPAREN] = ACTIONS(2481), - [sym_integer] = ACTIONS(2492), - [sym_float] = ACTIONS(2495), - [sym_string] = ACTIONS(2495), - [anon_sym_true] = ACTIONS(2498), - [anon_sym_false] = ACTIONS(2498), - [anon_sym_LBRACK] = ACTIONS(2501), - [anon_sym_EQ] = ACTIONS(2504), - [anon_sym_COLON] = ACTIONS(2481), - [anon_sym_DOT_DOT] = ACTIONS(2481), - [anon_sym_PLUS] = ACTIONS(2504), - [anon_sym_DASH] = ACTIONS(2504), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_SLASH] = ACTIONS(2481), - [anon_sym_PERCENT] = ACTIONS(2481), - [anon_sym_EQ_EQ] = ACTIONS(2481), - [anon_sym_BANG_EQ] = ACTIONS(2481), - [anon_sym_AMP_AMP] = ACTIONS(2481), - [anon_sym_PIPE_PIPE] = ACTIONS(2481), - [anon_sym_GT] = ACTIONS(2504), - [anon_sym_LT] = ACTIONS(2504), - [anon_sym_GT_EQ] = ACTIONS(2481), - [anon_sym_LT_EQ] = ACTIONS(2481), - [anon_sym_PLUS_EQ] = ACTIONS(2481), - [anon_sym_DASH_EQ] = ACTIONS(2481), - [anon_sym_if] = ACTIONS(2504), - [anon_sym_elseif] = ACTIONS(2481), - [anon_sym_else] = ACTIONS(2504), - [anon_sym_match] = ACTIONS(2504), - [anon_sym_EQ_GT] = ACTIONS(2506), - [anon_sym_while] = ACTIONS(2504), - [anon_sym_for] = ACTIONS(2504), - [anon_sym_asyncfor] = ACTIONS(2481), - [anon_sym_transform] = ACTIONS(2504), - [anon_sym_filter] = ACTIONS(2504), - [anon_sym_find] = ACTIONS(2504), - [anon_sym_remove] = ACTIONS(2504), - [anon_sym_reduce] = ACTIONS(2504), - [anon_sym_select] = ACTIONS(2504), - [anon_sym_insert] = ACTIONS(2504), - [anon_sym_async] = ACTIONS(2504), - [anon_sym_PIPE] = ACTIONS(2509), - [anon_sym_table] = ACTIONS(2512), - [anon_sym_assert] = ACTIONS(2515), - [anon_sym_assert_equal] = ACTIONS(2515), - [anon_sym_download] = ACTIONS(2515), - [anon_sym_help] = ACTIONS(2515), - [anon_sym_length] = ACTIONS(2515), - [anon_sym_output] = ACTIONS(2515), - [anon_sym_output_error] = ACTIONS(2515), - [anon_sym_type] = ACTIONS(2515), - [anon_sym_append] = ACTIONS(2515), - [anon_sym_metadata] = ACTIONS(2515), - [anon_sym_move] = ACTIONS(2515), - [anon_sym_read] = ACTIONS(2515), - [anon_sym_workdir] = ACTIONS(2515), - [anon_sym_write] = ACTIONS(2515), - [anon_sym_from_json] = ACTIONS(2515), - [anon_sym_to_json] = ACTIONS(2515), - [anon_sym_to_string] = ACTIONS(2515), - [anon_sym_to_float] = ACTIONS(2515), - [anon_sym_bash] = ACTIONS(2515), - [anon_sym_fish] = ACTIONS(2515), - [anon_sym_raw] = ACTIONS(2515), - [anon_sym_sh] = ACTIONS(2515), - [anon_sym_zsh] = ACTIONS(2515), - [anon_sym_random] = ACTIONS(2515), - [anon_sym_random_boolean] = ACTIONS(2515), - [anon_sym_random_float] = ACTIONS(2515), - [anon_sym_random_integer] = ACTIONS(2515), - [anon_sym_columns] = ACTIONS(2515), - [anon_sym_rows] = ACTIONS(2515), - [anon_sym_reverse] = ACTIONS(2515), + [anon_sym_LBRACE] = ACTIONS(1013), + [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(155), + [anon_sym_match] = ACTIONS(528), + [anon_sym_EQ_GT] = ACTIONS(530), + [anon_sym_while] = ACTIONS(532), + [anon_sym_for] = ACTIONS(534), + [anon_sym_asyncfor] = ACTIONS(536), + [anon_sym_transform] = ACTIONS(538), + [anon_sym_filter] = ACTIONS(540), + [anon_sym_find] = ACTIONS(542), + [anon_sym_remove] = ACTIONS(544), + [anon_sym_reduce] = ACTIONS(546), + [anon_sym_select] = ACTIONS(548), + [anon_sym_insert] = ACTIONS(550), + [anon_sym_async] = ACTIONS(552), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(554), + [anon_sym_assert] = ACTIONS(556), + [anon_sym_assert_equal] = ACTIONS(556), + [anon_sym_download] = ACTIONS(556), + [anon_sym_help] = ACTIONS(556), + [anon_sym_length] = ACTIONS(556), + [anon_sym_output] = ACTIONS(556), + [anon_sym_output_error] = ACTIONS(556), + [anon_sym_type] = ACTIONS(556), + [anon_sym_append] = ACTIONS(556), + [anon_sym_metadata] = ACTIONS(556), + [anon_sym_move] = ACTIONS(556), + [anon_sym_read] = ACTIONS(556), + [anon_sym_workdir] = ACTIONS(556), + [anon_sym_write] = ACTIONS(556), + [anon_sym_from_json] = ACTIONS(556), + [anon_sym_to_json] = ACTIONS(556), + [anon_sym_to_string] = ACTIONS(556), + [anon_sym_to_float] = ACTIONS(556), + [anon_sym_bash] = ACTIONS(556), + [anon_sym_fish] = ACTIONS(556), + [anon_sym_raw] = ACTIONS(556), + [anon_sym_sh] = ACTIONS(556), + [anon_sym_zsh] = ACTIONS(556), + [anon_sym_random] = ACTIONS(556), + [anon_sym_random_boolean] = ACTIONS(556), + [anon_sym_random_float] = ACTIONS(556), + [anon_sym_random_integer] = ACTIONS(556), + [anon_sym_columns] = ACTIONS(556), + [anon_sym_rows] = ACTIONS(556), + [anon_sym_reverse] = ACTIONS(556), }, [290] = { - [sym_expression] = STATE(783), - [sym__expression_kind] = STATE(759), - [aux_sym__expression_list] = STATE(350), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(759), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_assignment_operator] = STATE(553), - [sym_identifier_list] = STATE(1841), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(315), - [ts_builtin_sym_end] = ACTIONS(2435), - [sym_identifier] = ACTIONS(2437), + [sym_block] = STATE(574), + [sym_statement] = STATE(29), + [sym_expression] = STATE(449), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(353), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [aux_sym_block_repeat1] = STATE(29), + [sym_identifier] = ACTIONS(259), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_RBRACE] = ACTIONS(2435), - [anon_sym_SEMI] = ACTIONS(2435), - [anon_sym_LPAREN] = ACTIONS(2435), - [anon_sym_RPAREN] = ACTIONS(2435), - [sym_integer] = ACTIONS(2437), - [sym_float] = ACTIONS(2435), - [sym_string] = ACTIONS(2435), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [anon_sym_LBRACK] = ACTIONS(2435), - [anon_sym_EQ] = ACTIONS(2439), - [anon_sym_COLON] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_PERCENT] = ACTIONS(2435), - [anon_sym_EQ_EQ] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_PIPE_PIPE] = ACTIONS(2435), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_PLUS_EQ] = ACTIONS(2441), - [anon_sym_DASH_EQ] = ACTIONS(2441), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_elseif] = ACTIONS(2435), - [anon_sym_else] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_EQ_GT] = ACTIONS(2435), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_asyncfor] = ACTIONS(2435), - [anon_sym_transform] = ACTIONS(2437), - [anon_sym_filter] = ACTIONS(2437), - [anon_sym_find] = ACTIONS(2437), - [anon_sym_remove] = ACTIONS(2437), - [anon_sym_reduce] = ACTIONS(2437), - [anon_sym_select] = ACTIONS(2437), - [anon_sym_insert] = ACTIONS(2437), - [anon_sym_async] = ACTIONS(2437), - [anon_sym_PIPE] = ACTIONS(2437), - [anon_sym_table] = ACTIONS(2437), - [anon_sym_assert] = ACTIONS(2437), - [anon_sym_assert_equal] = ACTIONS(2437), - [anon_sym_download] = ACTIONS(2437), - [anon_sym_help] = ACTIONS(2437), - [anon_sym_length] = ACTIONS(2437), - [anon_sym_output] = ACTIONS(2437), - [anon_sym_output_error] = ACTIONS(2437), - [anon_sym_type] = ACTIONS(2437), - [anon_sym_append] = ACTIONS(2437), - [anon_sym_metadata] = ACTIONS(2437), - [anon_sym_move] = ACTIONS(2437), - [anon_sym_read] = ACTIONS(2437), - [anon_sym_workdir] = ACTIONS(2437), - [anon_sym_write] = ACTIONS(2437), - [anon_sym_from_json] = ACTIONS(2437), - [anon_sym_to_json] = ACTIONS(2437), - [anon_sym_to_string] = ACTIONS(2437), - [anon_sym_to_float] = ACTIONS(2437), - [anon_sym_bash] = ACTIONS(2437), - [anon_sym_fish] = ACTIONS(2437), - [anon_sym_raw] = ACTIONS(2437), - [anon_sym_sh] = ACTIONS(2437), - [anon_sym_zsh] = ACTIONS(2437), - [anon_sym_random] = ACTIONS(2437), - [anon_sym_random_boolean] = ACTIONS(2437), - [anon_sym_random_float] = ACTIONS(2437), - [anon_sym_random_integer] = ACTIONS(2437), - [anon_sym_columns] = ACTIONS(2437), - [anon_sym_rows] = ACTIONS(2437), - [anon_sym_reverse] = ACTIONS(2437), + [anon_sym_LBRACE] = ACTIONS(1879), + [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(119), + [anon_sym_match] = ACTIONS(263), + [anon_sym_EQ_GT] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_for] = ACTIONS(269), + [anon_sym_asyncfor] = ACTIONS(271), + [anon_sym_transform] = ACTIONS(273), + [anon_sym_filter] = ACTIONS(275), + [anon_sym_find] = ACTIONS(277), + [anon_sym_remove] = ACTIONS(279), + [anon_sym_reduce] = ACTIONS(281), + [anon_sym_select] = ACTIONS(283), + [anon_sym_insert] = ACTIONS(285), + [anon_sym_async] = ACTIONS(287), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(289), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_assert_equal] = ACTIONS(291), + [anon_sym_download] = ACTIONS(291), + [anon_sym_help] = ACTIONS(291), + [anon_sym_length] = ACTIONS(291), + [anon_sym_output] = ACTIONS(291), + [anon_sym_output_error] = ACTIONS(291), + [anon_sym_type] = ACTIONS(291), + [anon_sym_append] = ACTIONS(291), + [anon_sym_metadata] = ACTIONS(291), + [anon_sym_move] = ACTIONS(291), + [anon_sym_read] = ACTIONS(291), + [anon_sym_workdir] = ACTIONS(291), + [anon_sym_write] = ACTIONS(291), + [anon_sym_from_json] = ACTIONS(291), + [anon_sym_to_json] = ACTIONS(291), + [anon_sym_to_string] = ACTIONS(291), + [anon_sym_to_float] = ACTIONS(291), + [anon_sym_bash] = ACTIONS(291), + [anon_sym_fish] = ACTIONS(291), + [anon_sym_raw] = ACTIONS(291), + [anon_sym_sh] = ACTIONS(291), + [anon_sym_zsh] = ACTIONS(291), + [anon_sym_random] = ACTIONS(291), + [anon_sym_random_boolean] = ACTIONS(291), + [anon_sym_random_float] = ACTIONS(291), + [anon_sym_random_integer] = ACTIONS(291), + [anon_sym_columns] = ACTIONS(291), + [anon_sym_rows] = ACTIONS(291), + [anon_sym_reverse] = ACTIONS(291), }, [291] = { - [sym_expression] = STATE(1579), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_logic] = STATE(1539), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(308), - [ts_builtin_sym_end] = ACTIONS(2449), - [sym_identifier] = ACTIONS(2451), + [sym_block] = STATE(1018), + [sym_statement] = STATE(221), + [sym_expression] = STATE(547), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(571), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [aux_sym_block_repeat1] = STATE(221), + [sym_identifier] = ACTIONS(941), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_RBRACE] = ACTIONS(2449), - [anon_sym_SEMI] = ACTIONS(2449), - [anon_sym_LPAREN] = ACTIONS(2455), - [anon_sym_RPAREN] = ACTIONS(2449), - [anon_sym_COMMA] = ACTIONS(2449), - [sym_integer] = ACTIONS(2457), - [sym_float] = ACTIONS(2459), - [sym_string] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(2461), - [anon_sym_false] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_RBRACK] = ACTIONS(2449), - [anon_sym_COLON] = ACTIONS(2449), - [anon_sym_DOT_DOT] = ACTIONS(2449), - [anon_sym_PLUS] = ACTIONS(2449), - [anon_sym_DASH] = ACTIONS(2465), - [anon_sym_STAR] = ACTIONS(2449), - [anon_sym_SLASH] = ACTIONS(2449), - [anon_sym_PERCENT] = ACTIONS(2449), - [anon_sym_EQ_EQ] = ACTIONS(2449), - [anon_sym_BANG_EQ] = ACTIONS(2449), - [anon_sym_AMP_AMP] = ACTIONS(2449), - [anon_sym_PIPE_PIPE] = ACTIONS(2449), - [anon_sym_GT] = ACTIONS(2465), - [anon_sym_LT] = ACTIONS(2465), - [anon_sym_GT_EQ] = ACTIONS(2449), - [anon_sym_LT_EQ] = ACTIONS(2449), - [anon_sym_if] = ACTIONS(2465), - [anon_sym_elseif] = ACTIONS(2449), - [anon_sym_else] = ACTIONS(2465), - [anon_sym_match] = ACTIONS(2465), - [anon_sym_EQ_GT] = ACTIONS(2467), - [anon_sym_while] = ACTIONS(2465), - [anon_sym_for] = ACTIONS(2465), - [anon_sym_asyncfor] = ACTIONS(2449), - [anon_sym_transform] = ACTIONS(2465), - [anon_sym_filter] = ACTIONS(2465), - [anon_sym_find] = ACTIONS(2465), - [anon_sym_remove] = ACTIONS(2465), - [anon_sym_reduce] = ACTIONS(2465), - [anon_sym_select] = ACTIONS(2465), - [anon_sym_insert] = ACTIONS(2465), - [anon_sym_async] = ACTIONS(2465), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(2469), - [anon_sym_assert] = ACTIONS(2471), - [anon_sym_assert_equal] = ACTIONS(2471), - [anon_sym_download] = ACTIONS(2471), - [anon_sym_help] = ACTIONS(2471), - [anon_sym_length] = ACTIONS(2471), - [anon_sym_output] = ACTIONS(2471), - [anon_sym_output_error] = ACTIONS(2471), - [anon_sym_type] = ACTIONS(2471), - [anon_sym_append] = ACTIONS(2471), - [anon_sym_metadata] = ACTIONS(2471), - [anon_sym_move] = ACTIONS(2471), - [anon_sym_read] = ACTIONS(2471), - [anon_sym_workdir] = ACTIONS(2471), - [anon_sym_write] = ACTIONS(2471), - [anon_sym_from_json] = ACTIONS(2471), - [anon_sym_to_json] = ACTIONS(2471), - [anon_sym_to_string] = ACTIONS(2471), - [anon_sym_to_float] = ACTIONS(2471), - [anon_sym_bash] = ACTIONS(2471), - [anon_sym_fish] = ACTIONS(2471), - [anon_sym_raw] = ACTIONS(2471), - [anon_sym_sh] = ACTIONS(2471), - [anon_sym_zsh] = ACTIONS(2471), - [anon_sym_random] = ACTIONS(2471), - [anon_sym_random_boolean] = ACTIONS(2471), - [anon_sym_random_float] = ACTIONS(2471), - [anon_sym_random_integer] = ACTIONS(2471), - [anon_sym_columns] = ACTIONS(2471), - [anon_sym_rows] = ACTIONS(2471), - [anon_sym_reverse] = ACTIONS(2471), + [anon_sym_LBRACE] = ACTIONS(1013), + [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(449), + [anon_sym_match] = ACTIONS(943), + [anon_sym_EQ_GT] = ACTIONS(265), + [anon_sym_while] = ACTIONS(945), + [anon_sym_for] = ACTIONS(947), + [anon_sym_asyncfor] = ACTIONS(949), + [anon_sym_transform] = ACTIONS(951), + [anon_sym_filter] = ACTIONS(953), + [anon_sym_find] = ACTIONS(955), + [anon_sym_remove] = ACTIONS(957), + [anon_sym_reduce] = ACTIONS(959), + [anon_sym_select] = ACTIONS(961), + [anon_sym_insert] = ACTIONS(285), + [anon_sym_async] = ACTIONS(963), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(289), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_assert_equal] = ACTIONS(291), + [anon_sym_download] = ACTIONS(291), + [anon_sym_help] = ACTIONS(291), + [anon_sym_length] = ACTIONS(291), + [anon_sym_output] = ACTIONS(291), + [anon_sym_output_error] = ACTIONS(291), + [anon_sym_type] = ACTIONS(291), + [anon_sym_append] = ACTIONS(291), + [anon_sym_metadata] = ACTIONS(291), + [anon_sym_move] = ACTIONS(291), + [anon_sym_read] = ACTIONS(291), + [anon_sym_workdir] = ACTIONS(291), + [anon_sym_write] = ACTIONS(291), + [anon_sym_from_json] = ACTIONS(291), + [anon_sym_to_json] = ACTIONS(291), + [anon_sym_to_string] = ACTIONS(291), + [anon_sym_to_float] = ACTIONS(291), + [anon_sym_bash] = ACTIONS(291), + [anon_sym_fish] = ACTIONS(291), + [anon_sym_raw] = ACTIONS(291), + [anon_sym_sh] = ACTIONS(291), + [anon_sym_zsh] = ACTIONS(291), + [anon_sym_random] = ACTIONS(291), + [anon_sym_random_boolean] = ACTIONS(291), + [anon_sym_random_float] = ACTIONS(291), + [anon_sym_random_integer] = ACTIONS(291), + [anon_sym_columns] = ACTIONS(291), + [anon_sym_rows] = ACTIONS(291), + [anon_sym_reverse] = ACTIONS(291), }, [292] = { - [sym_expression] = STATE(591), - [sym__expression_kind] = STATE(631), - [aux_sym__expression_list] = STATE(303), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_logic] = STATE(631), - [sym_identifier_list] = STATE(2030), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(271), - [ts_builtin_sym_end] = ACTIONS(2477), - [sym_identifier] = ACTIONS(55), + [sym_block] = STATE(592), + [sym_statement] = STATE(199), + [sym_expression] = STATE(473), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_assignment] = STATE(598), + [sym_if_else] = STATE(598), + [sym_if] = STATE(565), + [sym_match] = STATE(598), + [sym_while] = STATE(598), + [sym_for] = STATE(598), + [sym_transform] = STATE(598), + [sym_filter] = STATE(598), + [sym_find] = STATE(598), + [sym_remove] = STATE(598), + [sym_reduce] = STATE(598), + [sym_select] = STATE(598), + [sym_insert] = STATE(598), + [sym_async] = STATE(598), + [sym_identifier_list] = STATE(1085), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(203), + [aux_sym_block_repeat1] = STATE(199), + [sym_identifier] = ACTIONS(609), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2445), - [anon_sym_RBRACE] = ACTIONS(2477), - [anon_sym_SEMI] = ACTIONS(2477), + [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_LPAREN] = ACTIONS(59), - [anon_sym_RPAREN] = ACTIONS(2477), [sym_integer] = ACTIONS(61), [sym_float] = ACTIONS(63), [sym_string] = ACTIONS(63), [anon_sym_true] = ACTIONS(65), [anon_sym_false] = ACTIONS(65), [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_EQ] = ACTIONS(2479), - [anon_sym_COLON] = ACTIONS(2477), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2477), - [anon_sym_SLASH] = ACTIONS(2477), - [anon_sym_PERCENT] = ACTIONS(2477), - [anon_sym_EQ_EQ] = ACTIONS(2477), - [anon_sym_BANG_EQ] = ACTIONS(2477), - [anon_sym_AMP_AMP] = ACTIONS(2477), - [anon_sym_PIPE_PIPE] = ACTIONS(2477), - [anon_sym_GT] = ACTIONS(2479), - [anon_sym_LT] = ACTIONS(2479), - [anon_sym_GT_EQ] = ACTIONS(2477), - [anon_sym_LT_EQ] = ACTIONS(2477), - [anon_sym_PLUS_EQ] = ACTIONS(2477), - [anon_sym_DASH_EQ] = ACTIONS(2477), - [anon_sym_if] = ACTIONS(2479), - [anon_sym_elseif] = ACTIONS(2477), - [anon_sym_else] = ACTIONS(2479), - [anon_sym_match] = ACTIONS(2479), - [anon_sym_EQ_GT] = ACTIONS(121), - [anon_sym_while] = ACTIONS(2479), - [anon_sym_for] = ACTIONS(2479), - [anon_sym_asyncfor] = ACTIONS(2477), - [anon_sym_transform] = ACTIONS(2479), - [anon_sym_filter] = ACTIONS(2479), - [anon_sym_find] = ACTIONS(2479), - [anon_sym_remove] = ACTIONS(2479), - [anon_sym_reduce] = ACTIONS(2479), - [anon_sym_select] = ACTIONS(2479), - [anon_sym_insert] = ACTIONS(2479), - [anon_sym_async] = ACTIONS(2479), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(147), - [anon_sym_assert_equal] = ACTIONS(147), - [anon_sym_download] = ACTIONS(147), - [anon_sym_help] = ACTIONS(147), - [anon_sym_length] = ACTIONS(147), - [anon_sym_output] = ACTIONS(147), - [anon_sym_output_error] = ACTIONS(147), - [anon_sym_type] = ACTIONS(147), - [anon_sym_append] = ACTIONS(147), - [anon_sym_metadata] = ACTIONS(147), - [anon_sym_move] = ACTIONS(147), - [anon_sym_read] = ACTIONS(147), - [anon_sym_workdir] = ACTIONS(147), - [anon_sym_write] = ACTIONS(147), - [anon_sym_from_json] = ACTIONS(147), - [anon_sym_to_json] = ACTIONS(147), - [anon_sym_to_string] = ACTIONS(147), - [anon_sym_to_float] = ACTIONS(147), - [anon_sym_bash] = ACTIONS(147), - [anon_sym_fish] = ACTIONS(147), - [anon_sym_raw] = ACTIONS(147), - [anon_sym_sh] = ACTIONS(147), - [anon_sym_zsh] = ACTIONS(147), - [anon_sym_random] = ACTIONS(147), - [anon_sym_random_boolean] = ACTIONS(147), - [anon_sym_random_float] = ACTIONS(147), - [anon_sym_random_integer] = ACTIONS(147), - [anon_sym_columns] = ACTIONS(147), - [anon_sym_rows] = ACTIONS(147), - [anon_sym_reverse] = ACTIONS(147), + [anon_sym_if] = ACTIONS(19), + [anon_sym_match] = ACTIONS(611), + [anon_sym_EQ_GT] = ACTIONS(231), + [anon_sym_while] = ACTIONS(613), + [anon_sym_for] = ACTIONS(615), + [anon_sym_asyncfor] = ACTIONS(617), + [anon_sym_transform] = ACTIONS(619), + [anon_sym_filter] = ACTIONS(621), + [anon_sym_find] = ACTIONS(623), + [anon_sym_remove] = ACTIONS(625), + [anon_sym_reduce] = ACTIONS(627), + [anon_sym_select] = ACTIONS(629), + [anon_sym_insert] = ACTIONS(251), + [anon_sym_async] = ACTIONS(631), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(255), + [anon_sym_assert] = ACTIONS(257), + [anon_sym_assert_equal] = ACTIONS(257), + [anon_sym_download] = ACTIONS(257), + [anon_sym_help] = ACTIONS(257), + [anon_sym_length] = ACTIONS(257), + [anon_sym_output] = ACTIONS(257), + [anon_sym_output_error] = ACTIONS(257), + [anon_sym_type] = ACTIONS(257), + [anon_sym_append] = ACTIONS(257), + [anon_sym_metadata] = ACTIONS(257), + [anon_sym_move] = ACTIONS(257), + [anon_sym_read] = ACTIONS(257), + [anon_sym_workdir] = ACTIONS(257), + [anon_sym_write] = ACTIONS(257), + [anon_sym_from_json] = ACTIONS(257), + [anon_sym_to_json] = ACTIONS(257), + [anon_sym_to_string] = ACTIONS(257), + [anon_sym_to_float] = ACTIONS(257), + [anon_sym_bash] = ACTIONS(257), + [anon_sym_fish] = ACTIONS(257), + [anon_sym_raw] = ACTIONS(257), + [anon_sym_sh] = ACTIONS(257), + [anon_sym_zsh] = ACTIONS(257), + [anon_sym_random] = ACTIONS(257), + [anon_sym_random_boolean] = ACTIONS(257), + [anon_sym_random_float] = ACTIONS(257), + [anon_sym_random_integer] = ACTIONS(257), + [anon_sym_columns] = ACTIONS(257), + [anon_sym_rows] = ACTIONS(257), + [anon_sym_reverse] = ACTIONS(257), }, [293] = { - [sym_expression] = STATE(668), - [sym__expression_kind] = STATE(759), - [aux_sym__expression_list] = STATE(293), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(759), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_identifier_list] = STATE(1984), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(302), - [ts_builtin_sym_end] = ACTIONS(2518), - [sym_identifier] = ACTIONS(2594), + [sym_block] = STATE(589), + [sym_statement] = STATE(156), + [sym_expression] = STATE(479), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(365), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1119), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(218), + [aux_sym_block_repeat1] = STATE(156), + [sym_identifier] = ACTIONS(524), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2597), - [anon_sym_RBRACE] = ACTIONS(2518), - [anon_sym_SEMI] = ACTIONS(2518), - [anon_sym_LPAREN] = ACTIONS(2600), - [anon_sym_RPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2518), - [sym_integer] = ACTIONS(2603), - [sym_float] = ACTIONS(2606), - [sym_string] = ACTIONS(2606), - [anon_sym_true] = ACTIONS(2609), - [anon_sym_false] = ACTIONS(2609), - [anon_sym_LBRACK] = ACTIONS(2612), - [anon_sym_RBRACK] = ACTIONS(2518), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_DOT_DOT] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2541), - [anon_sym_STAR] = ACTIONS(2518), - [anon_sym_SLASH] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_EQ_EQ] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_GT] = ACTIONS(2541), - [anon_sym_LT] = ACTIONS(2541), - [anon_sym_GT_EQ] = ACTIONS(2518), - [anon_sym_LT_EQ] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2541), - [anon_sym_elseif] = ACTIONS(2518), - [anon_sym_else] = ACTIONS(2541), - [anon_sym_match] = ACTIONS(2541), - [anon_sym_EQ_GT] = ACTIONS(2615), - [anon_sym_while] = ACTIONS(2541), - [anon_sym_for] = ACTIONS(2541), - [anon_sym_asyncfor] = ACTIONS(2518), - [anon_sym_transform] = ACTIONS(2541), - [anon_sym_filter] = ACTIONS(2541), - [anon_sym_find] = ACTIONS(2541), - [anon_sym_remove] = ACTIONS(2541), - [anon_sym_reduce] = ACTIONS(2541), - [anon_sym_select] = ACTIONS(2541), - [anon_sym_insert] = ACTIONS(2541), - [anon_sym_async] = ACTIONS(2541), - [anon_sym_PIPE] = ACTIONS(2546), - [anon_sym_table] = ACTIONS(2618), - [anon_sym_assert] = ACTIONS(2621), - [anon_sym_assert_equal] = ACTIONS(2621), - [anon_sym_download] = ACTIONS(2621), - [anon_sym_help] = ACTIONS(2621), - [anon_sym_length] = ACTIONS(2621), - [anon_sym_output] = ACTIONS(2621), - [anon_sym_output_error] = ACTIONS(2621), - [anon_sym_type] = ACTIONS(2621), - [anon_sym_append] = ACTIONS(2621), - [anon_sym_metadata] = ACTIONS(2621), - [anon_sym_move] = ACTIONS(2621), - [anon_sym_read] = ACTIONS(2621), - [anon_sym_workdir] = ACTIONS(2621), - [anon_sym_write] = ACTIONS(2621), - [anon_sym_from_json] = ACTIONS(2621), - [anon_sym_to_json] = ACTIONS(2621), - [anon_sym_to_string] = ACTIONS(2621), - [anon_sym_to_float] = ACTIONS(2621), - [anon_sym_bash] = ACTIONS(2621), - [anon_sym_fish] = ACTIONS(2621), - [anon_sym_raw] = ACTIONS(2621), - [anon_sym_sh] = ACTIONS(2621), - [anon_sym_zsh] = ACTIONS(2621), - [anon_sym_random] = ACTIONS(2621), - [anon_sym_random_boolean] = ACTIONS(2621), - [anon_sym_random_float] = ACTIONS(2621), - [anon_sym_random_integer] = ACTIONS(2621), - [anon_sym_columns] = ACTIONS(2621), - [anon_sym_rows] = ACTIONS(2621), - [anon_sym_reverse] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(1879), + [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(155), + [anon_sym_match] = ACTIONS(528), + [anon_sym_EQ_GT] = ACTIONS(530), + [anon_sym_while] = ACTIONS(532), + [anon_sym_for] = ACTIONS(534), + [anon_sym_asyncfor] = ACTIONS(536), + [anon_sym_transform] = ACTIONS(538), + [anon_sym_filter] = ACTIONS(540), + [anon_sym_find] = ACTIONS(542), + [anon_sym_remove] = ACTIONS(544), + [anon_sym_reduce] = ACTIONS(546), + [anon_sym_select] = ACTIONS(548), + [anon_sym_insert] = ACTIONS(550), + [anon_sym_async] = ACTIONS(552), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(554), + [anon_sym_assert] = ACTIONS(556), + [anon_sym_assert_equal] = ACTIONS(556), + [anon_sym_download] = ACTIONS(556), + [anon_sym_help] = ACTIONS(556), + [anon_sym_length] = ACTIONS(556), + [anon_sym_output] = ACTIONS(556), + [anon_sym_output_error] = ACTIONS(556), + [anon_sym_type] = ACTIONS(556), + [anon_sym_append] = ACTIONS(556), + [anon_sym_metadata] = ACTIONS(556), + [anon_sym_move] = ACTIONS(556), + [anon_sym_read] = ACTIONS(556), + [anon_sym_workdir] = ACTIONS(556), + [anon_sym_write] = ACTIONS(556), + [anon_sym_from_json] = ACTIONS(556), + [anon_sym_to_json] = ACTIONS(556), + [anon_sym_to_string] = ACTIONS(556), + [anon_sym_to_float] = ACTIONS(556), + [anon_sym_bash] = ACTIONS(556), + [anon_sym_fish] = ACTIONS(556), + [anon_sym_raw] = ACTIONS(556), + [anon_sym_sh] = ACTIONS(556), + [anon_sym_zsh] = ACTIONS(556), + [anon_sym_random] = ACTIONS(556), + [anon_sym_random_boolean] = ACTIONS(556), + [anon_sym_random_float] = ACTIONS(556), + [anon_sym_random_integer] = ACTIONS(556), + [anon_sym_columns] = ACTIONS(556), + [anon_sym_rows] = ACTIONS(556), + [anon_sym_reverse] = ACTIONS(556), }, [294] = { - [sym_expression] = STATE(833), - [sym__expression_kind] = STATE(866), - [aux_sym__expression_list] = STATE(364), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(866), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment_operator] = STATE(535), - [sym_identifier_list] = STATE(1752), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(338), - [ts_builtin_sym_end] = ACTIONS(2435), - [sym_identifier] = ACTIONS(2437), + [sym_block] = STATE(628), + [sym_statement] = STATE(225), + [sym_expression] = STATE(547), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(571), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [aux_sym_block_repeat1] = STATE(225), + [sym_identifier] = ACTIONS(941), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_RBRACE] = ACTIONS(2435), - [anon_sym_SEMI] = ACTIONS(2435), - [anon_sym_LPAREN] = ACTIONS(2435), - [anon_sym_RPAREN] = ACTIONS(2435), - [sym_integer] = ACTIONS(2437), - [sym_float] = ACTIONS(2435), - [sym_string] = ACTIONS(2435), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [anon_sym_LBRACK] = ACTIONS(2435), - [anon_sym_EQ] = ACTIONS(2439), - [anon_sym_COLON] = ACTIONS(2435), - [anon_sym_DOT_DOT] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_PERCENT] = ACTIONS(2435), - [anon_sym_EQ_EQ] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_PIPE_PIPE] = ACTIONS(2435), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_PLUS_EQ] = ACTIONS(2441), - [anon_sym_DASH_EQ] = ACTIONS(2441), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_EQ_GT] = ACTIONS(2435), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_asyncfor] = ACTIONS(2435), - [anon_sym_transform] = ACTIONS(2437), - [anon_sym_filter] = ACTIONS(2437), - [anon_sym_find] = ACTIONS(2437), - [anon_sym_remove] = ACTIONS(2437), - [anon_sym_reduce] = ACTIONS(2437), - [anon_sym_select] = ACTIONS(2437), - [anon_sym_insert] = ACTIONS(2437), - [anon_sym_async] = ACTIONS(2437), - [anon_sym_PIPE] = ACTIONS(2437), - [anon_sym_table] = ACTIONS(2437), - [anon_sym_assert] = ACTIONS(2437), - [anon_sym_assert_equal] = ACTIONS(2437), - [anon_sym_download] = ACTIONS(2437), - [anon_sym_help] = ACTIONS(2437), - [anon_sym_length] = ACTIONS(2437), - [anon_sym_output] = ACTIONS(2437), - [anon_sym_output_error] = ACTIONS(2437), - [anon_sym_type] = ACTIONS(2437), - [anon_sym_append] = ACTIONS(2437), - [anon_sym_metadata] = ACTIONS(2437), - [anon_sym_move] = ACTIONS(2437), - [anon_sym_read] = ACTIONS(2437), - [anon_sym_workdir] = ACTIONS(2437), - [anon_sym_write] = ACTIONS(2437), - [anon_sym_from_json] = ACTIONS(2437), - [anon_sym_to_json] = ACTIONS(2437), - [anon_sym_to_string] = ACTIONS(2437), - [anon_sym_to_float] = ACTIONS(2437), - [anon_sym_bash] = ACTIONS(2437), - [anon_sym_fish] = ACTIONS(2437), - [anon_sym_raw] = ACTIONS(2437), - [anon_sym_sh] = ACTIONS(2437), - [anon_sym_zsh] = ACTIONS(2437), - [anon_sym_random] = ACTIONS(2437), - [anon_sym_random_boolean] = ACTIONS(2437), - [anon_sym_random_float] = ACTIONS(2437), - [anon_sym_random_integer] = ACTIONS(2437), - [anon_sym_columns] = ACTIONS(2437), - [anon_sym_rows] = ACTIONS(2437), - [anon_sym_reverse] = ACTIONS(2437), + [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(449), + [anon_sym_match] = ACTIONS(943), + [anon_sym_EQ_GT] = ACTIONS(265), + [anon_sym_while] = ACTIONS(945), + [anon_sym_for] = ACTIONS(947), + [anon_sym_asyncfor] = ACTIONS(949), + [anon_sym_transform] = ACTIONS(951), + [anon_sym_filter] = ACTIONS(953), + [anon_sym_find] = ACTIONS(955), + [anon_sym_remove] = ACTIONS(957), + [anon_sym_reduce] = ACTIONS(959), + [anon_sym_select] = ACTIONS(961), + [anon_sym_insert] = ACTIONS(285), + [anon_sym_async] = ACTIONS(963), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(289), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_assert_equal] = ACTIONS(291), + [anon_sym_download] = ACTIONS(291), + [anon_sym_help] = ACTIONS(291), + [anon_sym_length] = ACTIONS(291), + [anon_sym_output] = ACTIONS(291), + [anon_sym_output_error] = ACTIONS(291), + [anon_sym_type] = ACTIONS(291), + [anon_sym_append] = ACTIONS(291), + [anon_sym_metadata] = ACTIONS(291), + [anon_sym_move] = ACTIONS(291), + [anon_sym_read] = ACTIONS(291), + [anon_sym_workdir] = ACTIONS(291), + [anon_sym_write] = ACTIONS(291), + [anon_sym_from_json] = ACTIONS(291), + [anon_sym_to_json] = ACTIONS(291), + [anon_sym_to_string] = ACTIONS(291), + [anon_sym_to_float] = ACTIONS(291), + [anon_sym_bash] = ACTIONS(291), + [anon_sym_fish] = ACTIONS(291), + [anon_sym_raw] = ACTIONS(291), + [anon_sym_sh] = ACTIONS(291), + [anon_sym_zsh] = ACTIONS(291), + [anon_sym_random] = ACTIONS(291), + [anon_sym_random_boolean] = ACTIONS(291), + [anon_sym_random_float] = ACTIONS(291), + [anon_sym_random_integer] = ACTIONS(291), + [anon_sym_columns] = ACTIONS(291), + [anon_sym_rows] = ACTIONS(291), + [anon_sym_reverse] = ACTIONS(291), }, [295] = { - [sym_expression] = STATE(668), - [sym__expression_kind] = STATE(759), - [aux_sym__expression_list] = STATE(293), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(759), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_identifier_list] = STATE(1984), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(302), - [ts_builtin_sym_end] = ACTIONS(2443), - [sym_identifier] = ACTIONS(2624), + [sym_block] = STATE(928), + [sym_statement] = STATE(33), + [sym_expression] = STATE(402), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(348), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1104), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(33), + [sym_identifier] = ACTIONS(187), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2626), - [anon_sym_RBRACE] = ACTIONS(2443), - [anon_sym_SEMI] = ACTIONS(2443), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_RPAREN] = ACTIONS(2443), - [anon_sym_COMMA] = ACTIONS(2443), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_RBRACK] = ACTIONS(2443), - [anon_sym_COLON] = ACTIONS(2443), - [anon_sym_DOT_DOT] = ACTIONS(2443), - [anon_sym_PLUS] = ACTIONS(2443), - [anon_sym_DASH] = ACTIONS(2447), - [anon_sym_STAR] = ACTIONS(2443), - [anon_sym_SLASH] = ACTIONS(2443), - [anon_sym_PERCENT] = ACTIONS(2443), - [anon_sym_EQ_EQ] = ACTIONS(2443), - [anon_sym_BANG_EQ] = ACTIONS(2443), - [anon_sym_AMP_AMP] = ACTIONS(2443), - [anon_sym_PIPE_PIPE] = ACTIONS(2443), - [anon_sym_GT] = ACTIONS(2447), - [anon_sym_LT] = ACTIONS(2447), - [anon_sym_GT_EQ] = ACTIONS(2443), - [anon_sym_LT_EQ] = ACTIONS(2443), - [anon_sym_if] = ACTIONS(2447), - [anon_sym_elseif] = ACTIONS(2443), - [anon_sym_else] = ACTIONS(2447), - [anon_sym_match] = ACTIONS(2447), - [anon_sym_EQ_GT] = ACTIONS(249), - [anon_sym_while] = ACTIONS(2447), - [anon_sym_for] = ACTIONS(2447), - [anon_sym_asyncfor] = ACTIONS(2443), - [anon_sym_transform] = ACTIONS(2447), - [anon_sym_filter] = ACTIONS(2447), - [anon_sym_find] = ACTIONS(2447), - [anon_sym_remove] = ACTIONS(2447), - [anon_sym_reduce] = ACTIONS(2447), - [anon_sym_select] = ACTIONS(2447), - [anon_sym_insert] = ACTIONS(2447), - [anon_sym_async] = ACTIONS(2447), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(275), - [anon_sym_assert_equal] = ACTIONS(275), - [anon_sym_download] = ACTIONS(275), - [anon_sym_help] = ACTIONS(275), - [anon_sym_length] = ACTIONS(275), - [anon_sym_output] = ACTIONS(275), - [anon_sym_output_error] = ACTIONS(275), - [anon_sym_type] = ACTIONS(275), - [anon_sym_append] = ACTIONS(275), - [anon_sym_metadata] = ACTIONS(275), - [anon_sym_move] = ACTIONS(275), - [anon_sym_read] = ACTIONS(275), - [anon_sym_workdir] = ACTIONS(275), - [anon_sym_write] = ACTIONS(275), - [anon_sym_from_json] = ACTIONS(275), - [anon_sym_to_json] = ACTIONS(275), - [anon_sym_to_string] = ACTIONS(275), - [anon_sym_to_float] = ACTIONS(275), - [anon_sym_bash] = ACTIONS(275), - [anon_sym_fish] = ACTIONS(275), - [anon_sym_raw] = ACTIONS(275), - [anon_sym_sh] = ACTIONS(275), - [anon_sym_zsh] = ACTIONS(275), - [anon_sym_random] = ACTIONS(275), - [anon_sym_random_boolean] = ACTIONS(275), - [anon_sym_random_float] = ACTIONS(275), - [anon_sym_random_integer] = ACTIONS(275), - [anon_sym_columns] = ACTIONS(275), - [anon_sym_rows] = ACTIONS(275), - [anon_sym_reverse] = ACTIONS(275), + [anon_sym_LBRACE] = ACTIONS(1013), + [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(79), + [anon_sym_match] = ACTIONS(193), + [anon_sym_EQ_GT] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_for] = ACTIONS(199), + [anon_sym_asyncfor] = ACTIONS(201), + [anon_sym_transform] = ACTIONS(203), + [anon_sym_filter] = ACTIONS(205), + [anon_sym_find] = ACTIONS(207), + [anon_sym_remove] = ACTIONS(209), + [anon_sym_reduce] = ACTIONS(211), + [anon_sym_select] = ACTIONS(213), + [anon_sym_insert] = ACTIONS(215), + [anon_sym_async] = ACTIONS(217), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(219), + [anon_sym_assert] = ACTIONS(221), + [anon_sym_assert_equal] = ACTIONS(221), + [anon_sym_download] = ACTIONS(221), + [anon_sym_help] = ACTIONS(221), + [anon_sym_length] = ACTIONS(221), + [anon_sym_output] = ACTIONS(221), + [anon_sym_output_error] = ACTIONS(221), + [anon_sym_type] = ACTIONS(221), + [anon_sym_append] = ACTIONS(221), + [anon_sym_metadata] = ACTIONS(221), + [anon_sym_move] = ACTIONS(221), + [anon_sym_read] = ACTIONS(221), + [anon_sym_workdir] = ACTIONS(221), + [anon_sym_write] = ACTIONS(221), + [anon_sym_from_json] = ACTIONS(221), + [anon_sym_to_json] = ACTIONS(221), + [anon_sym_to_string] = ACTIONS(221), + [anon_sym_to_float] = ACTIONS(221), + [anon_sym_bash] = ACTIONS(221), + [anon_sym_fish] = ACTIONS(221), + [anon_sym_raw] = ACTIONS(221), + [anon_sym_sh] = ACTIONS(221), + [anon_sym_zsh] = ACTIONS(221), + [anon_sym_random] = ACTIONS(221), + [anon_sym_random_boolean] = ACTIONS(221), + [anon_sym_random_float] = ACTIONS(221), + [anon_sym_random_integer] = ACTIONS(221), + [anon_sym_columns] = ACTIONS(221), + [anon_sym_rows] = ACTIONS(221), + [anon_sym_reverse] = ACTIONS(221), }, [296] = { - [sym_expression] = STATE(591), - [sym__expression_kind] = STATE(631), - [aux_sym__expression_list] = STATE(299), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_logic] = STATE(631), - [sym_identifier_list] = STATE(2030), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(271), - [ts_builtin_sym_end] = ACTIONS(2473), - [sym_identifier] = ACTIONS(55), + [sym_statement] = STATE(228), + [sym_expression] = STATE(535), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(561), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [aux_sym_block_repeat1] = STATE(228), + [sym_identifier] = ACTIONS(5), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2445), - [anon_sym_RBRACE] = ACTIONS(2473), - [anon_sym_SEMI] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(59), - [anon_sym_RPAREN] = ACTIONS(2473), - [sym_integer] = ACTIONS(61), - [sym_float] = ACTIONS(63), - [sym_string] = ACTIONS(63), - [anon_sym_true] = ACTIONS(65), - [anon_sym_false] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_EQ] = ACTIONS(2475), - [anon_sym_COLON] = ACTIONS(2473), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2473), - [anon_sym_SLASH] = ACTIONS(2473), - [anon_sym_PERCENT] = ACTIONS(2473), - [anon_sym_EQ_EQ] = ACTIONS(2473), - [anon_sym_BANG_EQ] = ACTIONS(2473), - [anon_sym_AMP_AMP] = ACTIONS(2473), - [anon_sym_PIPE_PIPE] = ACTIONS(2473), - [anon_sym_GT] = ACTIONS(2475), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_GT_EQ] = ACTIONS(2473), - [anon_sym_LT_EQ] = ACTIONS(2473), - [anon_sym_PLUS_EQ] = ACTIONS(2473), - [anon_sym_DASH_EQ] = ACTIONS(2473), - [anon_sym_if] = ACTIONS(2475), - [anon_sym_elseif] = ACTIONS(2473), - [anon_sym_else] = ACTIONS(2475), - [anon_sym_match] = ACTIONS(2475), - [anon_sym_EQ_GT] = ACTIONS(121), - [anon_sym_while] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2475), - [anon_sym_asyncfor] = ACTIONS(2473), - [anon_sym_transform] = ACTIONS(2475), - [anon_sym_filter] = ACTIONS(2475), - [anon_sym_find] = ACTIONS(2475), - [anon_sym_remove] = ACTIONS(2475), - [anon_sym_reduce] = ACTIONS(2475), - [anon_sym_select] = ACTIONS(2475), - [anon_sym_insert] = ACTIONS(2475), - [anon_sym_async] = ACTIONS(2475), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(147), - [anon_sym_assert_equal] = ACTIONS(147), - [anon_sym_download] = ACTIONS(147), - [anon_sym_help] = ACTIONS(147), - [anon_sym_length] = ACTIONS(147), - [anon_sym_output] = ACTIONS(147), - [anon_sym_output_error] = ACTIONS(147), - [anon_sym_type] = ACTIONS(147), - [anon_sym_append] = ACTIONS(147), - [anon_sym_metadata] = ACTIONS(147), - [anon_sym_move] = ACTIONS(147), - [anon_sym_read] = ACTIONS(147), - [anon_sym_workdir] = ACTIONS(147), - [anon_sym_write] = ACTIONS(147), - [anon_sym_from_json] = ACTIONS(147), - [anon_sym_to_json] = ACTIONS(147), - [anon_sym_to_string] = ACTIONS(147), - [anon_sym_to_float] = ACTIONS(147), - [anon_sym_bash] = ACTIONS(147), - [anon_sym_fish] = ACTIONS(147), - [anon_sym_raw] = ACTIONS(147), - [anon_sym_sh] = ACTIONS(147), - [anon_sym_zsh] = ACTIONS(147), - [anon_sym_random] = ACTIONS(147), - [anon_sym_random_boolean] = ACTIONS(147), - [anon_sym_random_float] = ACTIONS(147), - [anon_sym_random_integer] = ACTIONS(147), - [anon_sym_columns] = ACTIONS(147), - [anon_sym_rows] = ACTIONS(147), - [anon_sym_reverse] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_RBRACE] = ACTIONS(1885), + [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_asyncfor] = 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_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [297] = { - [sym_expression] = STATE(1620), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_logic] = STATE(1539), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(297), - [ts_builtin_sym_end] = ACTIONS(2481), - [sym_identifier] = ACTIONS(2483), + [sym_block] = STATE(926), + [sym_statement] = STATE(157), + [sym_expression] = STATE(479), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(365), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1119), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(218), + [aux_sym_block_repeat1] = STATE(157), + [sym_identifier] = ACTIONS(524), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2486), - [anon_sym_RBRACE] = ACTIONS(2481), - [anon_sym_SEMI] = ACTIONS(2481), - [anon_sym_LPAREN] = ACTIONS(2489), - [anon_sym_RPAREN] = ACTIONS(2481), - [sym_integer] = ACTIONS(2492), - [sym_float] = ACTIONS(2495), - [sym_string] = ACTIONS(2495), - [anon_sym_true] = ACTIONS(2498), - [anon_sym_false] = ACTIONS(2498), - [anon_sym_LBRACK] = ACTIONS(2501), - [anon_sym_EQ] = ACTIONS(2504), - [anon_sym_COLON] = ACTIONS(2481), - [anon_sym_PLUS] = ACTIONS(2504), - [anon_sym_DASH] = ACTIONS(2504), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_SLASH] = ACTIONS(2481), - [anon_sym_PERCENT] = ACTIONS(2481), - [anon_sym_EQ_EQ] = ACTIONS(2481), - [anon_sym_BANG_EQ] = ACTIONS(2481), - [anon_sym_AMP_AMP] = ACTIONS(2481), - [anon_sym_PIPE_PIPE] = ACTIONS(2481), - [anon_sym_GT] = ACTIONS(2504), - [anon_sym_LT] = ACTIONS(2504), - [anon_sym_GT_EQ] = ACTIONS(2481), - [anon_sym_LT_EQ] = ACTIONS(2481), - [anon_sym_PLUS_EQ] = ACTIONS(2481), - [anon_sym_DASH_EQ] = ACTIONS(2481), - [anon_sym_if] = ACTIONS(2504), - [anon_sym_elseif] = ACTIONS(2481), - [anon_sym_else] = ACTIONS(2504), - [anon_sym_match] = ACTIONS(2504), - [anon_sym_EQ_GT] = ACTIONS(2506), - [anon_sym_while] = ACTIONS(2504), - [anon_sym_for] = ACTIONS(2504), - [anon_sym_asyncfor] = ACTIONS(2481), - [anon_sym_transform] = ACTIONS(2504), - [anon_sym_filter] = ACTIONS(2504), - [anon_sym_find] = ACTIONS(2504), - [anon_sym_remove] = ACTIONS(2504), - [anon_sym_reduce] = ACTIONS(2504), - [anon_sym_select] = ACTIONS(2504), - [anon_sym_insert] = ACTIONS(2504), - [anon_sym_async] = ACTIONS(2504), - [anon_sym_PIPE] = ACTIONS(2509), - [anon_sym_table] = ACTIONS(2512), - [anon_sym_assert] = ACTIONS(2515), - [anon_sym_assert_equal] = ACTIONS(2515), - [anon_sym_download] = ACTIONS(2515), - [anon_sym_help] = ACTIONS(2515), - [anon_sym_length] = ACTIONS(2515), - [anon_sym_output] = ACTIONS(2515), - [anon_sym_output_error] = ACTIONS(2515), - [anon_sym_type] = ACTIONS(2515), - [anon_sym_append] = ACTIONS(2515), - [anon_sym_metadata] = ACTIONS(2515), - [anon_sym_move] = ACTIONS(2515), - [anon_sym_read] = ACTIONS(2515), - [anon_sym_workdir] = ACTIONS(2515), - [anon_sym_write] = ACTIONS(2515), - [anon_sym_from_json] = ACTIONS(2515), - [anon_sym_to_json] = ACTIONS(2515), - [anon_sym_to_string] = ACTIONS(2515), - [anon_sym_to_float] = ACTIONS(2515), - [anon_sym_bash] = ACTIONS(2515), - [anon_sym_fish] = ACTIONS(2515), - [anon_sym_raw] = ACTIONS(2515), - [anon_sym_sh] = ACTIONS(2515), - [anon_sym_zsh] = ACTIONS(2515), - [anon_sym_random] = ACTIONS(2515), - [anon_sym_random_boolean] = ACTIONS(2515), - [anon_sym_random_float] = ACTIONS(2515), - [anon_sym_random_integer] = ACTIONS(2515), - [anon_sym_columns] = ACTIONS(2515), - [anon_sym_rows] = ACTIONS(2515), - [anon_sym_reverse] = ACTIONS(2515), + [anon_sym_LBRACE] = ACTIONS(1013), + [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(155), + [anon_sym_match] = ACTIONS(528), + [anon_sym_EQ_GT] = ACTIONS(530), + [anon_sym_while] = ACTIONS(532), + [anon_sym_for] = ACTIONS(534), + [anon_sym_asyncfor] = ACTIONS(536), + [anon_sym_transform] = ACTIONS(538), + [anon_sym_filter] = ACTIONS(540), + [anon_sym_find] = ACTIONS(542), + [anon_sym_remove] = ACTIONS(544), + [anon_sym_reduce] = ACTIONS(546), + [anon_sym_select] = ACTIONS(548), + [anon_sym_insert] = ACTIONS(550), + [anon_sym_async] = ACTIONS(552), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(554), + [anon_sym_assert] = ACTIONS(556), + [anon_sym_assert_equal] = ACTIONS(556), + [anon_sym_download] = ACTIONS(556), + [anon_sym_help] = ACTIONS(556), + [anon_sym_length] = ACTIONS(556), + [anon_sym_output] = ACTIONS(556), + [anon_sym_output_error] = ACTIONS(556), + [anon_sym_type] = ACTIONS(556), + [anon_sym_append] = ACTIONS(556), + [anon_sym_metadata] = ACTIONS(556), + [anon_sym_move] = ACTIONS(556), + [anon_sym_read] = ACTIONS(556), + [anon_sym_workdir] = ACTIONS(556), + [anon_sym_write] = ACTIONS(556), + [anon_sym_from_json] = ACTIONS(556), + [anon_sym_to_json] = ACTIONS(556), + [anon_sym_to_string] = ACTIONS(556), + [anon_sym_to_float] = ACTIONS(556), + [anon_sym_bash] = ACTIONS(556), + [anon_sym_fish] = ACTIONS(556), + [anon_sym_raw] = ACTIONS(556), + [anon_sym_sh] = ACTIONS(556), + [anon_sym_zsh] = ACTIONS(556), + [anon_sym_random] = ACTIONS(556), + [anon_sym_random_boolean] = ACTIONS(556), + [anon_sym_random_float] = ACTIONS(556), + [anon_sym_random_integer] = ACTIONS(556), + [anon_sym_columns] = ACTIONS(556), + [anon_sym_rows] = ACTIONS(556), + [anon_sym_reverse] = ACTIONS(556), }, [298] = { - [sym_expression] = STATE(744), - [sym__expression_kind] = STATE(759), - [aux_sym__expression_list] = STATE(316), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(759), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_assignment_operator] = STATE(548), - [sym_identifier_list] = STATE(1841), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(315), - [sym_identifier] = ACTIONS(2437), + [sym_block] = STATE(638), + [sym_statement] = STATE(225), + [sym_expression] = STATE(547), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(571), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [aux_sym_block_repeat1] = STATE(225), + [sym_identifier] = ACTIONS(941), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_RBRACE] = ACTIONS(2435), - [anon_sym_SEMI] = ACTIONS(2435), - [anon_sym_LPAREN] = ACTIONS(2435), - [anon_sym_COMMA] = ACTIONS(2435), - [sym_integer] = ACTIONS(2437), - [sym_float] = ACTIONS(2435), - [sym_string] = ACTIONS(2435), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [anon_sym_LBRACK] = ACTIONS(2435), - [anon_sym_EQ] = ACTIONS(2439), - [anon_sym_COLON] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_PERCENT] = ACTIONS(2435), - [anon_sym_EQ_EQ] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_PIPE_PIPE] = ACTIONS(2435), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_PLUS_EQ] = ACTIONS(2441), - [anon_sym_DASH_EQ] = ACTIONS(2441), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_elseif] = ACTIONS(2435), - [anon_sym_else] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_EQ_GT] = ACTIONS(2435), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_asyncfor] = ACTIONS(2435), - [anon_sym_transform] = ACTIONS(2437), - [anon_sym_filter] = ACTIONS(2437), - [anon_sym_find] = ACTIONS(2437), - [anon_sym_remove] = ACTIONS(2437), - [anon_sym_reduce] = ACTIONS(2437), - [anon_sym_select] = ACTIONS(2437), - [anon_sym_insert] = ACTIONS(2437), - [anon_sym_async] = ACTIONS(2437), - [anon_sym_PIPE] = ACTIONS(2437), - [anon_sym_table] = ACTIONS(2437), - [anon_sym_assert] = ACTIONS(2437), - [anon_sym_assert_equal] = ACTIONS(2437), - [anon_sym_download] = ACTIONS(2437), - [anon_sym_help] = ACTIONS(2437), - [anon_sym_length] = ACTIONS(2437), - [anon_sym_output] = ACTIONS(2437), - [anon_sym_output_error] = ACTIONS(2437), - [anon_sym_type] = ACTIONS(2437), - [anon_sym_append] = ACTIONS(2437), - [anon_sym_metadata] = ACTIONS(2437), - [anon_sym_move] = ACTIONS(2437), - [anon_sym_read] = ACTIONS(2437), - [anon_sym_workdir] = ACTIONS(2437), - [anon_sym_write] = ACTIONS(2437), - [anon_sym_from_json] = ACTIONS(2437), - [anon_sym_to_json] = ACTIONS(2437), - [anon_sym_to_string] = ACTIONS(2437), - [anon_sym_to_float] = ACTIONS(2437), - [anon_sym_bash] = ACTIONS(2437), - [anon_sym_fish] = ACTIONS(2437), - [anon_sym_raw] = ACTIONS(2437), - [anon_sym_sh] = ACTIONS(2437), - [anon_sym_zsh] = ACTIONS(2437), - [anon_sym_random] = ACTIONS(2437), - [anon_sym_random_boolean] = ACTIONS(2437), - [anon_sym_random_float] = ACTIONS(2437), - [anon_sym_random_integer] = ACTIONS(2437), - [anon_sym_columns] = ACTIONS(2437), - [anon_sym_rows] = ACTIONS(2437), - [anon_sym_reverse] = ACTIONS(2437), + [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(449), + [anon_sym_match] = ACTIONS(943), + [anon_sym_EQ_GT] = ACTIONS(265), + [anon_sym_while] = ACTIONS(945), + [anon_sym_for] = ACTIONS(947), + [anon_sym_asyncfor] = ACTIONS(949), + [anon_sym_transform] = ACTIONS(951), + [anon_sym_filter] = ACTIONS(953), + [anon_sym_find] = ACTIONS(955), + [anon_sym_remove] = ACTIONS(957), + [anon_sym_reduce] = ACTIONS(959), + [anon_sym_select] = ACTIONS(961), + [anon_sym_insert] = ACTIONS(285), + [anon_sym_async] = ACTIONS(963), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(289), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_assert_equal] = ACTIONS(291), + [anon_sym_download] = ACTIONS(291), + [anon_sym_help] = ACTIONS(291), + [anon_sym_length] = ACTIONS(291), + [anon_sym_output] = ACTIONS(291), + [anon_sym_output_error] = ACTIONS(291), + [anon_sym_type] = ACTIONS(291), + [anon_sym_append] = ACTIONS(291), + [anon_sym_metadata] = ACTIONS(291), + [anon_sym_move] = ACTIONS(291), + [anon_sym_read] = ACTIONS(291), + [anon_sym_workdir] = ACTIONS(291), + [anon_sym_write] = ACTIONS(291), + [anon_sym_from_json] = ACTIONS(291), + [anon_sym_to_json] = ACTIONS(291), + [anon_sym_to_string] = ACTIONS(291), + [anon_sym_to_float] = ACTIONS(291), + [anon_sym_bash] = ACTIONS(291), + [anon_sym_fish] = ACTIONS(291), + [anon_sym_raw] = ACTIONS(291), + [anon_sym_sh] = ACTIONS(291), + [anon_sym_zsh] = ACTIONS(291), + [anon_sym_random] = ACTIONS(291), + [anon_sym_random_boolean] = ACTIONS(291), + [anon_sym_random_float] = ACTIONS(291), + [anon_sym_random_integer] = ACTIONS(291), + [anon_sym_columns] = ACTIONS(291), + [anon_sym_rows] = ACTIONS(291), + [anon_sym_reverse] = ACTIONS(291), }, [299] = { - [sym_expression] = STATE(591), - [sym__expression_kind] = STATE(631), - [aux_sym__expression_list] = STATE(303), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_logic] = STATE(631), - [sym_identifier_list] = STATE(2030), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(271), - [ts_builtin_sym_end] = ACTIONS(2443), - [sym_identifier] = ACTIONS(55), + [sym_block] = STATE(926), + [sym_statement] = STATE(158), + [sym_expression] = STATE(516), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(433), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [aux_sym_block_repeat1] = STATE(158), + [sym_identifier] = ACTIONS(867), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2445), - [anon_sym_RBRACE] = ACTIONS(2443), - [anon_sym_SEMI] = ACTIONS(2443), - [anon_sym_LPAREN] = ACTIONS(59), - [anon_sym_RPAREN] = ACTIONS(2443), - [sym_integer] = ACTIONS(61), - [sym_float] = ACTIONS(63), - [sym_string] = ACTIONS(63), - [anon_sym_true] = ACTIONS(65), - [anon_sym_false] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_EQ] = ACTIONS(2447), - [anon_sym_COLON] = ACTIONS(2443), - [anon_sym_PLUS] = ACTIONS(2447), - [anon_sym_DASH] = ACTIONS(2447), - [anon_sym_STAR] = ACTIONS(2443), - [anon_sym_SLASH] = ACTIONS(2443), - [anon_sym_PERCENT] = ACTIONS(2443), - [anon_sym_EQ_EQ] = ACTIONS(2443), - [anon_sym_BANG_EQ] = ACTIONS(2443), - [anon_sym_AMP_AMP] = ACTIONS(2443), - [anon_sym_PIPE_PIPE] = ACTIONS(2443), - [anon_sym_GT] = ACTIONS(2447), - [anon_sym_LT] = ACTIONS(2447), - [anon_sym_GT_EQ] = ACTIONS(2443), - [anon_sym_LT_EQ] = ACTIONS(2443), - [anon_sym_PLUS_EQ] = ACTIONS(2443), - [anon_sym_DASH_EQ] = ACTIONS(2443), - [anon_sym_if] = ACTIONS(2447), - [anon_sym_elseif] = ACTIONS(2443), - [anon_sym_else] = ACTIONS(2447), - [anon_sym_match] = ACTIONS(2447), - [anon_sym_EQ_GT] = ACTIONS(121), - [anon_sym_while] = ACTIONS(2447), - [anon_sym_for] = ACTIONS(2447), - [anon_sym_asyncfor] = ACTIONS(2443), - [anon_sym_transform] = ACTIONS(2447), - [anon_sym_filter] = ACTIONS(2447), - [anon_sym_find] = ACTIONS(2447), - [anon_sym_remove] = ACTIONS(2447), - [anon_sym_reduce] = ACTIONS(2447), - [anon_sym_select] = ACTIONS(2447), - [anon_sym_insert] = ACTIONS(2447), - [anon_sym_async] = ACTIONS(2447), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(147), - [anon_sym_assert_equal] = ACTIONS(147), - [anon_sym_download] = ACTIONS(147), - [anon_sym_help] = ACTIONS(147), - [anon_sym_length] = ACTIONS(147), - [anon_sym_output] = ACTIONS(147), - [anon_sym_output_error] = ACTIONS(147), - [anon_sym_type] = ACTIONS(147), - [anon_sym_append] = ACTIONS(147), - [anon_sym_metadata] = ACTIONS(147), - [anon_sym_move] = ACTIONS(147), - [anon_sym_read] = ACTIONS(147), - [anon_sym_workdir] = ACTIONS(147), - [anon_sym_write] = ACTIONS(147), - [anon_sym_from_json] = ACTIONS(147), - [anon_sym_to_json] = ACTIONS(147), - [anon_sym_to_string] = ACTIONS(147), - [anon_sym_to_float] = ACTIONS(147), - [anon_sym_bash] = ACTIONS(147), - [anon_sym_fish] = ACTIONS(147), - [anon_sym_raw] = ACTIONS(147), - [anon_sym_sh] = ACTIONS(147), - [anon_sym_zsh] = ACTIONS(147), - [anon_sym_random] = ACTIONS(147), - [anon_sym_random_boolean] = ACTIONS(147), - [anon_sym_random_float] = ACTIONS(147), - [anon_sym_random_integer] = ACTIONS(147), - [anon_sym_columns] = ACTIONS(147), - [anon_sym_rows] = ACTIONS(147), - [anon_sym_reverse] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(1013), + [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(227), + [anon_sym_match] = ACTIONS(871), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(873), + [anon_sym_for] = ACTIONS(875), + [anon_sym_asyncfor] = ACTIONS(877), + [anon_sym_transform] = ACTIONS(879), + [anon_sym_filter] = ACTIONS(881), + [anon_sym_find] = ACTIONS(883), + [anon_sym_remove] = ACTIONS(885), + [anon_sym_reduce] = ACTIONS(887), + [anon_sym_select] = ACTIONS(889), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(891), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [300] = { - [sym_expression] = STATE(664), - [sym__expression_kind] = STATE(706), - [aux_sym__expression_list] = STATE(304), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_logic] = STATE(706), - [sym_identifier_list] = STATE(1813), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(311), - [ts_builtin_sym_end] = ACTIONS(2443), - [sym_identifier] = ACTIONS(149), + [sym_block] = STATE(926), + [sym_statement] = STATE(154), + [sym_expression] = STATE(479), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(365), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1119), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(218), + [aux_sym_block_repeat1] = STATE(154), + [sym_identifier] = ACTIONS(524), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1923), - [anon_sym_RBRACE] = ACTIONS(2443), - [anon_sym_SEMI] = ACTIONS(2443), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_RPAREN] = ACTIONS(2443), - [anon_sym_COMMA] = ACTIONS(2443), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(2443), - [anon_sym_EQ] = ACTIONS(2447), - [anon_sym_COLON] = ACTIONS(2443), - [anon_sym_PLUS] = ACTIONS(2447), - [anon_sym_DASH] = ACTIONS(2447), - [anon_sym_STAR] = ACTIONS(2443), - [anon_sym_SLASH] = ACTIONS(2443), - [anon_sym_PERCENT] = ACTIONS(2443), - [anon_sym_EQ_EQ] = ACTIONS(2443), - [anon_sym_BANG_EQ] = ACTIONS(2443), - [anon_sym_AMP_AMP] = ACTIONS(2443), - [anon_sym_PIPE_PIPE] = ACTIONS(2443), - [anon_sym_GT] = ACTIONS(2447), - [anon_sym_LT] = ACTIONS(2447), - [anon_sym_GT_EQ] = ACTIONS(2443), - [anon_sym_LT_EQ] = ACTIONS(2443), - [anon_sym_PLUS_EQ] = ACTIONS(2443), - [anon_sym_DASH_EQ] = ACTIONS(2443), - [anon_sym_if] = ACTIONS(2447), - [anon_sym_match] = ACTIONS(2447), - [anon_sym_EQ_GT] = ACTIONS(281), - [anon_sym_while] = ACTIONS(2447), - [anon_sym_for] = ACTIONS(2447), - [anon_sym_asyncfor] = ACTIONS(2443), - [anon_sym_transform] = ACTIONS(2447), - [anon_sym_filter] = ACTIONS(2447), - [anon_sym_find] = ACTIONS(2447), - [anon_sym_remove] = ACTIONS(2447), - [anon_sym_reduce] = ACTIONS(2447), - [anon_sym_select] = ACTIONS(2447), - [anon_sym_insert] = ACTIONS(2447), - [anon_sym_async] = ACTIONS(2447), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(305), - [anon_sym_assert] = ACTIONS(307), - [anon_sym_assert_equal] = ACTIONS(307), - [anon_sym_download] = ACTIONS(307), - [anon_sym_help] = ACTIONS(307), - [anon_sym_length] = ACTIONS(307), - [anon_sym_output] = ACTIONS(307), - [anon_sym_output_error] = ACTIONS(307), - [anon_sym_type] = ACTIONS(307), - [anon_sym_append] = ACTIONS(307), - [anon_sym_metadata] = ACTIONS(307), - [anon_sym_move] = ACTIONS(307), - [anon_sym_read] = ACTIONS(307), - [anon_sym_workdir] = ACTIONS(307), - [anon_sym_write] = ACTIONS(307), - [anon_sym_from_json] = ACTIONS(307), - [anon_sym_to_json] = ACTIONS(307), - [anon_sym_to_string] = ACTIONS(307), - [anon_sym_to_float] = ACTIONS(307), - [anon_sym_bash] = ACTIONS(307), - [anon_sym_fish] = ACTIONS(307), - [anon_sym_raw] = ACTIONS(307), - [anon_sym_sh] = ACTIONS(307), - [anon_sym_zsh] = ACTIONS(307), - [anon_sym_random] = ACTIONS(307), - [anon_sym_random_boolean] = ACTIONS(307), - [anon_sym_random_float] = ACTIONS(307), - [anon_sym_random_integer] = ACTIONS(307), - [anon_sym_columns] = ACTIONS(307), - [anon_sym_rows] = ACTIONS(307), - [anon_sym_reverse] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(1013), + [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(155), + [anon_sym_match] = ACTIONS(528), + [anon_sym_EQ_GT] = ACTIONS(530), + [anon_sym_while] = ACTIONS(532), + [anon_sym_for] = ACTIONS(534), + [anon_sym_asyncfor] = ACTIONS(536), + [anon_sym_transform] = ACTIONS(538), + [anon_sym_filter] = ACTIONS(540), + [anon_sym_find] = ACTIONS(542), + [anon_sym_remove] = ACTIONS(544), + [anon_sym_reduce] = ACTIONS(546), + [anon_sym_select] = ACTIONS(548), + [anon_sym_insert] = ACTIONS(550), + [anon_sym_async] = ACTIONS(552), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(554), + [anon_sym_assert] = ACTIONS(556), + [anon_sym_assert_equal] = ACTIONS(556), + [anon_sym_download] = ACTIONS(556), + [anon_sym_help] = ACTIONS(556), + [anon_sym_length] = ACTIONS(556), + [anon_sym_output] = ACTIONS(556), + [anon_sym_output_error] = ACTIONS(556), + [anon_sym_type] = ACTIONS(556), + [anon_sym_append] = ACTIONS(556), + [anon_sym_metadata] = ACTIONS(556), + [anon_sym_move] = ACTIONS(556), + [anon_sym_read] = ACTIONS(556), + [anon_sym_workdir] = ACTIONS(556), + [anon_sym_write] = ACTIONS(556), + [anon_sym_from_json] = ACTIONS(556), + [anon_sym_to_json] = ACTIONS(556), + [anon_sym_to_string] = ACTIONS(556), + [anon_sym_to_float] = ACTIONS(556), + [anon_sym_bash] = ACTIONS(556), + [anon_sym_fish] = ACTIONS(556), + [anon_sym_raw] = ACTIONS(556), + [anon_sym_sh] = ACTIONS(556), + [anon_sym_zsh] = ACTIONS(556), + [anon_sym_random] = ACTIONS(556), + [anon_sym_random_boolean] = ACTIONS(556), + [anon_sym_random_float] = ACTIONS(556), + [anon_sym_random_integer] = ACTIONS(556), + [anon_sym_columns] = ACTIONS(556), + [anon_sym_rows] = ACTIONS(556), + [anon_sym_reverse] = ACTIONS(556), }, [301] = { - [sym_expression] = STATE(668), - [sym__expression_kind] = STATE(759), - [aux_sym__expression_list] = STATE(293), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(759), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_identifier_list] = STATE(1984), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(302), - [ts_builtin_sym_end] = ACTIONS(2477), - [sym_identifier] = ACTIONS(2624), + [sym_block] = STATE(592), + [sym_statement] = STATE(212), + [sym_expression] = STATE(460), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_assignment] = STATE(598), + [sym_if_else] = STATE(598), + [sym_if] = STATE(564), + [sym_match] = STATE(598), + [sym_while] = STATE(598), + [sym_for] = STATE(598), + [sym_transform] = STATE(598), + [sym_filter] = STATE(598), + [sym_find] = STATE(598), + [sym_remove] = STATE(598), + [sym_reduce] = STATE(598), + [sym_select] = STATE(598), + [sym_insert] = STATE(598), + [sym_async] = STATE(598), + [sym_identifier_list] = STATE(1100), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(181), + [aux_sym_block_repeat1] = STATE(212), + [sym_identifier] = ACTIONS(445), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2626), - [anon_sym_RBRACE] = ACTIONS(2477), - [anon_sym_SEMI] = ACTIONS(2477), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_RPAREN] = ACTIONS(2477), - [anon_sym_COMMA] = ACTIONS(2477), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_RBRACK] = ACTIONS(2477), - [anon_sym_COLON] = ACTIONS(2477), - [anon_sym_DOT_DOT] = ACTIONS(2477), - [anon_sym_PLUS] = ACTIONS(2477), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2477), - [anon_sym_SLASH] = ACTIONS(2477), - [anon_sym_PERCENT] = ACTIONS(2477), - [anon_sym_EQ_EQ] = ACTIONS(2477), - [anon_sym_BANG_EQ] = ACTIONS(2477), - [anon_sym_AMP_AMP] = ACTIONS(2477), - [anon_sym_PIPE_PIPE] = ACTIONS(2477), - [anon_sym_GT] = ACTIONS(2479), - [anon_sym_LT] = ACTIONS(2479), - [anon_sym_GT_EQ] = ACTIONS(2477), - [anon_sym_LT_EQ] = ACTIONS(2477), - [anon_sym_if] = ACTIONS(2479), - [anon_sym_elseif] = ACTIONS(2477), - [anon_sym_else] = ACTIONS(2479), - [anon_sym_match] = ACTIONS(2479), - [anon_sym_EQ_GT] = ACTIONS(249), - [anon_sym_while] = ACTIONS(2479), - [anon_sym_for] = ACTIONS(2479), - [anon_sym_asyncfor] = ACTIONS(2477), - [anon_sym_transform] = ACTIONS(2479), - [anon_sym_filter] = ACTIONS(2479), - [anon_sym_find] = ACTIONS(2479), - [anon_sym_remove] = ACTIONS(2479), - [anon_sym_reduce] = ACTIONS(2479), - [anon_sym_select] = ACTIONS(2479), - [anon_sym_insert] = ACTIONS(2479), - [anon_sym_async] = ACTIONS(2479), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(275), - [anon_sym_assert_equal] = ACTIONS(275), - [anon_sym_download] = ACTIONS(275), - [anon_sym_help] = ACTIONS(275), - [anon_sym_length] = ACTIONS(275), - [anon_sym_output] = ACTIONS(275), - [anon_sym_output_error] = ACTIONS(275), - [anon_sym_type] = ACTIONS(275), - [anon_sym_append] = ACTIONS(275), - [anon_sym_metadata] = ACTIONS(275), - [anon_sym_move] = ACTIONS(275), - [anon_sym_read] = ACTIONS(275), - [anon_sym_workdir] = ACTIONS(275), - [anon_sym_write] = ACTIONS(275), - [anon_sym_from_json] = ACTIONS(275), - [anon_sym_to_json] = ACTIONS(275), - [anon_sym_to_string] = ACTIONS(275), - [anon_sym_to_float] = ACTIONS(275), - [anon_sym_bash] = ACTIONS(275), - [anon_sym_fish] = ACTIONS(275), - [anon_sym_raw] = ACTIONS(275), - [anon_sym_sh] = ACTIONS(275), - [anon_sym_zsh] = ACTIONS(275), - [anon_sym_random] = ACTIONS(275), - [anon_sym_random_boolean] = ACTIONS(275), - [anon_sym_random_float] = ACTIONS(275), - [anon_sym_random_integer] = ACTIONS(275), - [anon_sym_columns] = ACTIONS(275), - [anon_sym_rows] = ACTIONS(275), - [anon_sym_reverse] = ACTIONS(275), + [anon_sym_LBRACE] = ACTIONS(447), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_if] = ACTIONS(449), + [anon_sym_match] = ACTIONS(451), + [anon_sym_EQ_GT] = ACTIONS(123), + [anon_sym_while] = ACTIONS(453), + [anon_sym_for] = ACTIONS(455), + [anon_sym_asyncfor] = ACTIONS(457), + [anon_sym_transform] = ACTIONS(459), + [anon_sym_filter] = ACTIONS(461), + [anon_sym_find] = ACTIONS(463), + [anon_sym_remove] = ACTIONS(465), + [anon_sym_reduce] = ACTIONS(467), + [anon_sym_select] = ACTIONS(469), + [anon_sym_insert] = ACTIONS(143), + [anon_sym_async] = ACTIONS(471), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(147), + [anon_sym_assert] = ACTIONS(149), + [anon_sym_assert_equal] = ACTIONS(149), + [anon_sym_download] = ACTIONS(149), + [anon_sym_help] = ACTIONS(149), + [anon_sym_length] = ACTIONS(149), + [anon_sym_output] = ACTIONS(149), + [anon_sym_output_error] = ACTIONS(149), + [anon_sym_type] = ACTIONS(149), + [anon_sym_append] = ACTIONS(149), + [anon_sym_metadata] = ACTIONS(149), + [anon_sym_move] = ACTIONS(149), + [anon_sym_read] = ACTIONS(149), + [anon_sym_workdir] = ACTIONS(149), + [anon_sym_write] = ACTIONS(149), + [anon_sym_from_json] = ACTIONS(149), + [anon_sym_to_json] = ACTIONS(149), + [anon_sym_to_string] = ACTIONS(149), + [anon_sym_to_float] = ACTIONS(149), + [anon_sym_bash] = ACTIONS(149), + [anon_sym_fish] = ACTIONS(149), + [anon_sym_raw] = ACTIONS(149), + [anon_sym_sh] = ACTIONS(149), + [anon_sym_zsh] = ACTIONS(149), + [anon_sym_random] = ACTIONS(149), + [anon_sym_random_boolean] = ACTIONS(149), + [anon_sym_random_float] = ACTIONS(149), + [anon_sym_random_integer] = ACTIONS(149), + [anon_sym_columns] = ACTIONS(149), + [anon_sym_rows] = ACTIONS(149), + [anon_sym_reverse] = ACTIONS(149), }, [302] = { - [sym_expression] = STATE(668), - [sym__expression_kind] = STATE(759), - [aux_sym__expression_list] = STATE(295), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(759), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_identifier_list] = STATE(1984), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(302), - [ts_builtin_sym_end] = ACTIONS(2473), - [sym_identifier] = ACTIONS(2624), + [sym_block] = STATE(926), + [sym_statement] = STATE(33), + [sym_expression] = STATE(402), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(348), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1104), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(33), + [sym_identifier] = ACTIONS(187), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2626), - [anon_sym_RBRACE] = ACTIONS(2473), - [anon_sym_SEMI] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_RPAREN] = ACTIONS(2473), - [anon_sym_COMMA] = ACTIONS(2473), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_RBRACK] = ACTIONS(2473), - [anon_sym_COLON] = ACTIONS(2473), - [anon_sym_DOT_DOT] = ACTIONS(2473), - [anon_sym_PLUS] = ACTIONS(2473), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2473), - [anon_sym_SLASH] = ACTIONS(2473), - [anon_sym_PERCENT] = ACTIONS(2473), - [anon_sym_EQ_EQ] = ACTIONS(2473), - [anon_sym_BANG_EQ] = ACTIONS(2473), - [anon_sym_AMP_AMP] = ACTIONS(2473), - [anon_sym_PIPE_PIPE] = ACTIONS(2473), - [anon_sym_GT] = ACTIONS(2475), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_GT_EQ] = ACTIONS(2473), - [anon_sym_LT_EQ] = ACTIONS(2473), - [anon_sym_if] = ACTIONS(2475), - [anon_sym_elseif] = ACTIONS(2473), - [anon_sym_else] = ACTIONS(2475), - [anon_sym_match] = ACTIONS(2475), - [anon_sym_EQ_GT] = ACTIONS(249), - [anon_sym_while] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2475), - [anon_sym_asyncfor] = ACTIONS(2473), - [anon_sym_transform] = ACTIONS(2475), - [anon_sym_filter] = ACTIONS(2475), - [anon_sym_find] = ACTIONS(2475), - [anon_sym_remove] = ACTIONS(2475), - [anon_sym_reduce] = ACTIONS(2475), - [anon_sym_select] = ACTIONS(2475), - [anon_sym_insert] = ACTIONS(2475), - [anon_sym_async] = ACTIONS(2475), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(275), - [anon_sym_assert_equal] = ACTIONS(275), - [anon_sym_download] = ACTIONS(275), - [anon_sym_help] = ACTIONS(275), - [anon_sym_length] = ACTIONS(275), - [anon_sym_output] = ACTIONS(275), - [anon_sym_output_error] = ACTIONS(275), - [anon_sym_type] = ACTIONS(275), - [anon_sym_append] = ACTIONS(275), - [anon_sym_metadata] = ACTIONS(275), - [anon_sym_move] = ACTIONS(275), - [anon_sym_read] = ACTIONS(275), - [anon_sym_workdir] = ACTIONS(275), - [anon_sym_write] = ACTIONS(275), - [anon_sym_from_json] = ACTIONS(275), - [anon_sym_to_json] = ACTIONS(275), - [anon_sym_to_string] = ACTIONS(275), - [anon_sym_to_float] = ACTIONS(275), - [anon_sym_bash] = ACTIONS(275), - [anon_sym_fish] = ACTIONS(275), - [anon_sym_raw] = ACTIONS(275), - [anon_sym_sh] = ACTIONS(275), - [anon_sym_zsh] = ACTIONS(275), - [anon_sym_random] = ACTIONS(275), - [anon_sym_random_boolean] = ACTIONS(275), - [anon_sym_random_float] = ACTIONS(275), - [anon_sym_random_integer] = ACTIONS(275), - [anon_sym_columns] = ACTIONS(275), - [anon_sym_rows] = ACTIONS(275), - [anon_sym_reverse] = ACTIONS(275), + [anon_sym_LBRACE] = ACTIONS(1013), + [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(79), + [anon_sym_match] = ACTIONS(193), + [anon_sym_EQ_GT] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_for] = ACTIONS(199), + [anon_sym_asyncfor] = ACTIONS(201), + [anon_sym_transform] = ACTIONS(203), + [anon_sym_filter] = ACTIONS(205), + [anon_sym_find] = ACTIONS(207), + [anon_sym_remove] = ACTIONS(209), + [anon_sym_reduce] = ACTIONS(211), + [anon_sym_select] = ACTIONS(213), + [anon_sym_insert] = ACTIONS(215), + [anon_sym_async] = ACTIONS(217), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(219), + [anon_sym_assert] = ACTIONS(221), + [anon_sym_assert_equal] = ACTIONS(221), + [anon_sym_download] = ACTIONS(221), + [anon_sym_help] = ACTIONS(221), + [anon_sym_length] = ACTIONS(221), + [anon_sym_output] = ACTIONS(221), + [anon_sym_output_error] = ACTIONS(221), + [anon_sym_type] = ACTIONS(221), + [anon_sym_append] = ACTIONS(221), + [anon_sym_metadata] = ACTIONS(221), + [anon_sym_move] = ACTIONS(221), + [anon_sym_read] = ACTIONS(221), + [anon_sym_workdir] = ACTIONS(221), + [anon_sym_write] = ACTIONS(221), + [anon_sym_from_json] = ACTIONS(221), + [anon_sym_to_json] = ACTIONS(221), + [anon_sym_to_string] = ACTIONS(221), + [anon_sym_to_float] = ACTIONS(221), + [anon_sym_bash] = ACTIONS(221), + [anon_sym_fish] = ACTIONS(221), + [anon_sym_raw] = ACTIONS(221), + [anon_sym_sh] = ACTIONS(221), + [anon_sym_zsh] = ACTIONS(221), + [anon_sym_random] = ACTIONS(221), + [anon_sym_random_boolean] = ACTIONS(221), + [anon_sym_random_float] = ACTIONS(221), + [anon_sym_random_integer] = ACTIONS(221), + [anon_sym_columns] = ACTIONS(221), + [anon_sym_rows] = ACTIONS(221), + [anon_sym_reverse] = ACTIONS(221), }, [303] = { - [sym_expression] = STATE(591), - [sym__expression_kind] = STATE(631), - [aux_sym__expression_list] = STATE(303), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_logic] = STATE(631), - [sym_identifier_list] = STATE(2030), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(271), - [ts_builtin_sym_end] = ACTIONS(2518), - [sym_identifier] = ACTIONS(2520), + [sym_block] = STATE(574), + [sym_statement] = STATE(160), + [sym_expression] = STATE(516), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(433), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [aux_sym_block_repeat1] = STATE(160), + [sym_identifier] = ACTIONS(867), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2523), - [anon_sym_RBRACE] = ACTIONS(2518), - [anon_sym_SEMI] = ACTIONS(2518), - [anon_sym_LPAREN] = ACTIONS(2526), - [anon_sym_RPAREN] = ACTIONS(2518), - [sym_integer] = ACTIONS(2529), - [sym_float] = ACTIONS(2532), - [sym_string] = ACTIONS(2532), - [anon_sym_true] = ACTIONS(2535), - [anon_sym_false] = ACTIONS(2535), - [anon_sym_LBRACK] = ACTIONS(2538), - [anon_sym_EQ] = ACTIONS(2541), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2541), - [anon_sym_DASH] = ACTIONS(2541), - [anon_sym_STAR] = ACTIONS(2518), - [anon_sym_SLASH] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_EQ_EQ] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_GT] = ACTIONS(2541), - [anon_sym_LT] = ACTIONS(2541), - [anon_sym_GT_EQ] = ACTIONS(2518), - [anon_sym_LT_EQ] = ACTIONS(2518), - [anon_sym_PLUS_EQ] = ACTIONS(2518), - [anon_sym_DASH_EQ] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2541), - [anon_sym_elseif] = ACTIONS(2518), - [anon_sym_else] = ACTIONS(2541), - [anon_sym_match] = ACTIONS(2541), - [anon_sym_EQ_GT] = ACTIONS(2555), - [anon_sym_while] = ACTIONS(2541), - [anon_sym_for] = ACTIONS(2541), - [anon_sym_asyncfor] = ACTIONS(2518), - [anon_sym_transform] = ACTIONS(2541), - [anon_sym_filter] = ACTIONS(2541), - [anon_sym_find] = ACTIONS(2541), - [anon_sym_remove] = ACTIONS(2541), - [anon_sym_reduce] = ACTIONS(2541), - [anon_sym_select] = ACTIONS(2541), - [anon_sym_insert] = ACTIONS(2541), - [anon_sym_async] = ACTIONS(2541), - [anon_sym_PIPE] = ACTIONS(2546), - [anon_sym_table] = ACTIONS(2558), - [anon_sym_assert] = ACTIONS(2561), - [anon_sym_assert_equal] = ACTIONS(2561), - [anon_sym_download] = ACTIONS(2561), - [anon_sym_help] = ACTIONS(2561), - [anon_sym_length] = ACTIONS(2561), - [anon_sym_output] = ACTIONS(2561), - [anon_sym_output_error] = ACTIONS(2561), - [anon_sym_type] = ACTIONS(2561), - [anon_sym_append] = ACTIONS(2561), - [anon_sym_metadata] = ACTIONS(2561), - [anon_sym_move] = ACTIONS(2561), - [anon_sym_read] = ACTIONS(2561), - [anon_sym_workdir] = ACTIONS(2561), - [anon_sym_write] = ACTIONS(2561), - [anon_sym_from_json] = ACTIONS(2561), - [anon_sym_to_json] = ACTIONS(2561), - [anon_sym_to_string] = ACTIONS(2561), - [anon_sym_to_float] = ACTIONS(2561), - [anon_sym_bash] = ACTIONS(2561), - [anon_sym_fish] = ACTIONS(2561), - [anon_sym_raw] = ACTIONS(2561), - [anon_sym_sh] = ACTIONS(2561), - [anon_sym_zsh] = ACTIONS(2561), - [anon_sym_random] = ACTIONS(2561), - [anon_sym_random_boolean] = ACTIONS(2561), - [anon_sym_random_float] = ACTIONS(2561), - [anon_sym_random_integer] = ACTIONS(2561), - [anon_sym_columns] = ACTIONS(2561), - [anon_sym_rows] = ACTIONS(2561), - [anon_sym_reverse] = ACTIONS(2561), + [anon_sym_LBRACE] = ACTIONS(1879), + [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(227), + [anon_sym_match] = ACTIONS(871), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(873), + [anon_sym_for] = ACTIONS(875), + [anon_sym_asyncfor] = ACTIONS(877), + [anon_sym_transform] = ACTIONS(879), + [anon_sym_filter] = ACTIONS(881), + [anon_sym_find] = ACTIONS(883), + [anon_sym_remove] = ACTIONS(885), + [anon_sym_reduce] = ACTIONS(887), + [anon_sym_select] = ACTIONS(889), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(891), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [304] = { - [sym_expression] = STATE(664), - [sym__expression_kind] = STATE(706), - [aux_sym__expression_list] = STATE(304), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_logic] = STATE(706), - [sym_identifier_list] = STATE(1813), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(311), - [ts_builtin_sym_end] = ACTIONS(2518), - [sym_identifier] = ACTIONS(2564), + [sym_statement] = STATE(228), + [sym_expression] = STATE(535), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(561), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [aux_sym_block_repeat1] = STATE(228), + [sym_identifier] = ACTIONS(5), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2567), - [anon_sym_RBRACE] = ACTIONS(2518), - [anon_sym_SEMI] = ACTIONS(2518), - [anon_sym_LPAREN] = ACTIONS(2570), - [anon_sym_RPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2518), - [sym_integer] = ACTIONS(2573), - [sym_float] = ACTIONS(2576), - [sym_string] = ACTIONS(2576), - [anon_sym_true] = ACTIONS(2579), - [anon_sym_false] = ACTIONS(2579), - [anon_sym_LBRACK] = ACTIONS(2582), - [anon_sym_RBRACK] = ACTIONS(2518), - [anon_sym_EQ] = ACTIONS(2541), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2541), - [anon_sym_DASH] = ACTIONS(2541), - [anon_sym_STAR] = ACTIONS(2518), - [anon_sym_SLASH] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_EQ_EQ] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_GT] = ACTIONS(2541), - [anon_sym_LT] = ACTIONS(2541), - [anon_sym_GT_EQ] = ACTIONS(2518), - [anon_sym_LT_EQ] = ACTIONS(2518), - [anon_sym_PLUS_EQ] = ACTIONS(2518), - [anon_sym_DASH_EQ] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2541), - [anon_sym_match] = ACTIONS(2541), - [anon_sym_EQ_GT] = ACTIONS(2628), - [anon_sym_while] = ACTIONS(2541), - [anon_sym_for] = ACTIONS(2541), - [anon_sym_asyncfor] = ACTIONS(2518), - [anon_sym_transform] = ACTIONS(2541), - [anon_sym_filter] = ACTIONS(2541), - [anon_sym_find] = ACTIONS(2541), - [anon_sym_remove] = ACTIONS(2541), - [anon_sym_reduce] = ACTIONS(2541), - [anon_sym_select] = ACTIONS(2541), - [anon_sym_insert] = ACTIONS(2541), - [anon_sym_async] = ACTIONS(2541), - [anon_sym_PIPE] = ACTIONS(2546), - [anon_sym_table] = ACTIONS(2631), - [anon_sym_assert] = ACTIONS(2634), - [anon_sym_assert_equal] = ACTIONS(2634), - [anon_sym_download] = ACTIONS(2634), - [anon_sym_help] = ACTIONS(2634), - [anon_sym_length] = ACTIONS(2634), - [anon_sym_output] = ACTIONS(2634), - [anon_sym_output_error] = ACTIONS(2634), - [anon_sym_type] = ACTIONS(2634), - [anon_sym_append] = ACTIONS(2634), - [anon_sym_metadata] = ACTIONS(2634), - [anon_sym_move] = ACTIONS(2634), - [anon_sym_read] = ACTIONS(2634), - [anon_sym_workdir] = ACTIONS(2634), - [anon_sym_write] = ACTIONS(2634), - [anon_sym_from_json] = ACTIONS(2634), - [anon_sym_to_json] = ACTIONS(2634), - [anon_sym_to_string] = ACTIONS(2634), - [anon_sym_to_float] = ACTIONS(2634), - [anon_sym_bash] = ACTIONS(2634), - [anon_sym_fish] = ACTIONS(2634), - [anon_sym_raw] = ACTIONS(2634), - [anon_sym_sh] = ACTIONS(2634), - [anon_sym_zsh] = ACTIONS(2634), - [anon_sym_random] = ACTIONS(2634), - [anon_sym_random_boolean] = ACTIONS(2634), - [anon_sym_random_float] = ACTIONS(2634), - [anon_sym_random_integer] = ACTIONS(2634), - [anon_sym_columns] = ACTIONS(2634), - [anon_sym_rows] = ACTIONS(2634), - [anon_sym_reverse] = ACTIONS(2634), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_RBRACE] = ACTIONS(1887), + [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_asyncfor] = 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_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [305] = { - [sym_expression] = STATE(1627), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_logic] = STATE(1539), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(305), - [ts_builtin_sym_end] = ACTIONS(2481), - [sym_identifier] = ACTIONS(2483), + [sym_statement] = STATE(228), + [sym_expression] = STATE(535), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(561), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [aux_sym_block_repeat1] = STATE(228), + [sym_identifier] = ACTIONS(5), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2486), - [anon_sym_RBRACE] = ACTIONS(2481), - [anon_sym_SEMI] = ACTIONS(2481), - [anon_sym_LPAREN] = ACTIONS(2489), - [anon_sym_RPAREN] = ACTIONS(2481), - [anon_sym_COMMA] = ACTIONS(2481), - [sym_integer] = ACTIONS(2492), - [sym_float] = ACTIONS(2495), - [sym_string] = ACTIONS(2495), - [anon_sym_true] = ACTIONS(2498), - [anon_sym_false] = ACTIONS(2498), - [anon_sym_LBRACK] = ACTIONS(2501), - [anon_sym_RBRACK] = ACTIONS(2481), - [anon_sym_EQ] = ACTIONS(2504), - [anon_sym_COLON] = ACTIONS(2481), - [anon_sym_PLUS] = ACTIONS(2504), - [anon_sym_DASH] = ACTIONS(2504), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_SLASH] = ACTIONS(2481), - [anon_sym_PERCENT] = ACTIONS(2481), - [anon_sym_EQ_EQ] = ACTIONS(2481), - [anon_sym_BANG_EQ] = ACTIONS(2481), - [anon_sym_AMP_AMP] = ACTIONS(2481), - [anon_sym_PIPE_PIPE] = ACTIONS(2481), - [anon_sym_GT] = ACTIONS(2504), - [anon_sym_LT] = ACTIONS(2504), - [anon_sym_GT_EQ] = ACTIONS(2481), - [anon_sym_LT_EQ] = ACTIONS(2481), - [anon_sym_PLUS_EQ] = ACTIONS(2481), - [anon_sym_DASH_EQ] = ACTIONS(2481), - [anon_sym_if] = ACTIONS(2504), - [anon_sym_match] = ACTIONS(2504), - [anon_sym_EQ_GT] = ACTIONS(2506), - [anon_sym_while] = ACTIONS(2504), - [anon_sym_for] = ACTIONS(2504), - [anon_sym_asyncfor] = ACTIONS(2481), - [anon_sym_transform] = ACTIONS(2504), - [anon_sym_filter] = ACTIONS(2504), - [anon_sym_find] = ACTIONS(2504), - [anon_sym_remove] = ACTIONS(2504), - [anon_sym_reduce] = ACTIONS(2504), - [anon_sym_select] = ACTIONS(2504), - [anon_sym_insert] = ACTIONS(2504), - [anon_sym_async] = ACTIONS(2504), - [anon_sym_PIPE] = ACTIONS(2509), - [anon_sym_table] = ACTIONS(2512), - [anon_sym_assert] = ACTIONS(2515), - [anon_sym_assert_equal] = ACTIONS(2515), - [anon_sym_download] = ACTIONS(2515), - [anon_sym_help] = ACTIONS(2515), - [anon_sym_length] = ACTIONS(2515), - [anon_sym_output] = ACTIONS(2515), - [anon_sym_output_error] = ACTIONS(2515), - [anon_sym_type] = ACTIONS(2515), - [anon_sym_append] = ACTIONS(2515), - [anon_sym_metadata] = ACTIONS(2515), - [anon_sym_move] = ACTIONS(2515), - [anon_sym_read] = ACTIONS(2515), - [anon_sym_workdir] = ACTIONS(2515), - [anon_sym_write] = ACTIONS(2515), - [anon_sym_from_json] = ACTIONS(2515), - [anon_sym_to_json] = ACTIONS(2515), - [anon_sym_to_string] = ACTIONS(2515), - [anon_sym_to_float] = ACTIONS(2515), - [anon_sym_bash] = ACTIONS(2515), - [anon_sym_fish] = ACTIONS(2515), - [anon_sym_raw] = ACTIONS(2515), - [anon_sym_sh] = ACTIONS(2515), - [anon_sym_zsh] = ACTIONS(2515), - [anon_sym_random] = ACTIONS(2515), - [anon_sym_random_boolean] = ACTIONS(2515), - [anon_sym_random_float] = ACTIONS(2515), - [anon_sym_random_integer] = ACTIONS(2515), - [anon_sym_columns] = ACTIONS(2515), - [anon_sym_rows] = ACTIONS(2515), - [anon_sym_reverse] = ACTIONS(2515), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_RBRACE] = ACTIONS(1889), + [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_asyncfor] = 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_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [306] = { - [sym_expression] = STATE(1627), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_logic] = STATE(1539), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(305), - [ts_builtin_sym_end] = ACTIONS(2449), - [sym_identifier] = ACTIONS(2451), + [sym_block] = STATE(641), + [sym_statement] = STATE(225), + [sym_expression] = STATE(547), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(571), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [aux_sym_block_repeat1] = STATE(225), + [sym_identifier] = ACTIONS(941), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_RBRACE] = ACTIONS(2449), - [anon_sym_SEMI] = ACTIONS(2449), - [anon_sym_LPAREN] = ACTIONS(2455), - [anon_sym_RPAREN] = ACTIONS(2449), - [anon_sym_COMMA] = ACTIONS(2449), - [sym_integer] = ACTIONS(2457), - [sym_float] = ACTIONS(2459), - [sym_string] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(2461), - [anon_sym_false] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_RBRACK] = ACTIONS(2449), - [anon_sym_EQ] = ACTIONS(2465), - [anon_sym_COLON] = ACTIONS(2449), - [anon_sym_PLUS] = ACTIONS(2465), - [anon_sym_DASH] = ACTIONS(2465), - [anon_sym_STAR] = ACTIONS(2449), - [anon_sym_SLASH] = ACTIONS(2449), - [anon_sym_PERCENT] = ACTIONS(2449), - [anon_sym_EQ_EQ] = ACTIONS(2449), - [anon_sym_BANG_EQ] = ACTIONS(2449), - [anon_sym_AMP_AMP] = ACTIONS(2449), - [anon_sym_PIPE_PIPE] = ACTIONS(2449), - [anon_sym_GT] = ACTIONS(2465), - [anon_sym_LT] = ACTIONS(2465), - [anon_sym_GT_EQ] = ACTIONS(2449), - [anon_sym_LT_EQ] = ACTIONS(2449), - [anon_sym_PLUS_EQ] = ACTIONS(2449), - [anon_sym_DASH_EQ] = ACTIONS(2449), - [anon_sym_if] = ACTIONS(2465), - [anon_sym_match] = ACTIONS(2465), - [anon_sym_EQ_GT] = ACTIONS(2467), - [anon_sym_while] = ACTIONS(2465), - [anon_sym_for] = ACTIONS(2465), - [anon_sym_asyncfor] = ACTIONS(2449), - [anon_sym_transform] = ACTIONS(2465), - [anon_sym_filter] = ACTIONS(2465), - [anon_sym_find] = ACTIONS(2465), - [anon_sym_remove] = ACTIONS(2465), - [anon_sym_reduce] = ACTIONS(2465), - [anon_sym_select] = ACTIONS(2465), - [anon_sym_insert] = ACTIONS(2465), - [anon_sym_async] = ACTIONS(2465), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(2469), - [anon_sym_assert] = ACTIONS(2471), - [anon_sym_assert_equal] = ACTIONS(2471), - [anon_sym_download] = ACTIONS(2471), - [anon_sym_help] = ACTIONS(2471), - [anon_sym_length] = ACTIONS(2471), - [anon_sym_output] = ACTIONS(2471), - [anon_sym_output_error] = ACTIONS(2471), - [anon_sym_type] = ACTIONS(2471), - [anon_sym_append] = ACTIONS(2471), - [anon_sym_metadata] = ACTIONS(2471), - [anon_sym_move] = ACTIONS(2471), - [anon_sym_read] = ACTIONS(2471), - [anon_sym_workdir] = ACTIONS(2471), - [anon_sym_write] = ACTIONS(2471), - [anon_sym_from_json] = ACTIONS(2471), - [anon_sym_to_json] = ACTIONS(2471), - [anon_sym_to_string] = ACTIONS(2471), - [anon_sym_to_float] = ACTIONS(2471), - [anon_sym_bash] = ACTIONS(2471), - [anon_sym_fish] = ACTIONS(2471), - [anon_sym_raw] = ACTIONS(2471), - [anon_sym_sh] = ACTIONS(2471), - [anon_sym_zsh] = ACTIONS(2471), - [anon_sym_random] = ACTIONS(2471), - [anon_sym_random_boolean] = ACTIONS(2471), - [anon_sym_random_float] = ACTIONS(2471), - [anon_sym_random_integer] = ACTIONS(2471), - [anon_sym_columns] = ACTIONS(2471), - [anon_sym_rows] = ACTIONS(2471), - [anon_sym_reverse] = ACTIONS(2471), + [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(449), + [anon_sym_match] = ACTIONS(943), + [anon_sym_EQ_GT] = ACTIONS(265), + [anon_sym_while] = ACTIONS(945), + [anon_sym_for] = ACTIONS(947), + [anon_sym_asyncfor] = ACTIONS(949), + [anon_sym_transform] = ACTIONS(951), + [anon_sym_filter] = ACTIONS(953), + [anon_sym_find] = ACTIONS(955), + [anon_sym_remove] = ACTIONS(957), + [anon_sym_reduce] = ACTIONS(959), + [anon_sym_select] = ACTIONS(961), + [anon_sym_insert] = ACTIONS(285), + [anon_sym_async] = ACTIONS(963), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(289), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_assert_equal] = ACTIONS(291), + [anon_sym_download] = ACTIONS(291), + [anon_sym_help] = ACTIONS(291), + [anon_sym_length] = ACTIONS(291), + [anon_sym_output] = ACTIONS(291), + [anon_sym_output_error] = ACTIONS(291), + [anon_sym_type] = ACTIONS(291), + [anon_sym_append] = ACTIONS(291), + [anon_sym_metadata] = ACTIONS(291), + [anon_sym_move] = ACTIONS(291), + [anon_sym_read] = ACTIONS(291), + [anon_sym_workdir] = ACTIONS(291), + [anon_sym_write] = ACTIONS(291), + [anon_sym_from_json] = ACTIONS(291), + [anon_sym_to_json] = ACTIONS(291), + [anon_sym_to_string] = ACTIONS(291), + [anon_sym_to_float] = ACTIONS(291), + [anon_sym_bash] = ACTIONS(291), + [anon_sym_fish] = ACTIONS(291), + [anon_sym_raw] = ACTIONS(291), + [anon_sym_sh] = ACTIONS(291), + [anon_sym_zsh] = ACTIONS(291), + [anon_sym_random] = ACTIONS(291), + [anon_sym_random_boolean] = ACTIONS(291), + [anon_sym_random_float] = ACTIONS(291), + [anon_sym_random_integer] = ACTIONS(291), + [anon_sym_columns] = ACTIONS(291), + [anon_sym_rows] = ACTIONS(291), + [anon_sym_reverse] = ACTIONS(291), }, [307] = { - [sym_expression] = STATE(664), - [sym__expression_kind] = STATE(706), - [aux_sym__expression_list] = STATE(304), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_logic] = STATE(706), - [sym_identifier_list] = STATE(1813), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(311), - [ts_builtin_sym_end] = ACTIONS(2477), - [sym_identifier] = ACTIONS(149), + [sym_block] = STATE(1023), + [sym_statement] = STATE(221), + [sym_expression] = STATE(547), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(571), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [aux_sym_block_repeat1] = STATE(221), + [sym_identifier] = ACTIONS(941), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1923), - [anon_sym_RBRACE] = ACTIONS(2477), - [anon_sym_SEMI] = ACTIONS(2477), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_RPAREN] = ACTIONS(2477), - [anon_sym_COMMA] = ACTIONS(2477), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(2477), - [anon_sym_EQ] = ACTIONS(2479), - [anon_sym_COLON] = ACTIONS(2477), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2477), - [anon_sym_SLASH] = ACTIONS(2477), - [anon_sym_PERCENT] = ACTIONS(2477), - [anon_sym_EQ_EQ] = ACTIONS(2477), - [anon_sym_BANG_EQ] = ACTIONS(2477), - [anon_sym_AMP_AMP] = ACTIONS(2477), - [anon_sym_PIPE_PIPE] = ACTIONS(2477), - [anon_sym_GT] = ACTIONS(2479), - [anon_sym_LT] = ACTIONS(2479), - [anon_sym_GT_EQ] = ACTIONS(2477), - [anon_sym_LT_EQ] = ACTIONS(2477), - [anon_sym_PLUS_EQ] = ACTIONS(2477), - [anon_sym_DASH_EQ] = ACTIONS(2477), - [anon_sym_if] = ACTIONS(2479), - [anon_sym_match] = ACTIONS(2479), - [anon_sym_EQ_GT] = ACTIONS(281), - [anon_sym_while] = ACTIONS(2479), - [anon_sym_for] = ACTIONS(2479), - [anon_sym_asyncfor] = ACTIONS(2477), - [anon_sym_transform] = ACTIONS(2479), - [anon_sym_filter] = ACTIONS(2479), - [anon_sym_find] = ACTIONS(2479), - [anon_sym_remove] = ACTIONS(2479), - [anon_sym_reduce] = ACTIONS(2479), - [anon_sym_select] = ACTIONS(2479), - [anon_sym_insert] = ACTIONS(2479), - [anon_sym_async] = ACTIONS(2479), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(305), - [anon_sym_assert] = ACTIONS(307), - [anon_sym_assert_equal] = ACTIONS(307), - [anon_sym_download] = ACTIONS(307), - [anon_sym_help] = ACTIONS(307), - [anon_sym_length] = ACTIONS(307), - [anon_sym_output] = ACTIONS(307), - [anon_sym_output_error] = ACTIONS(307), - [anon_sym_type] = ACTIONS(307), - [anon_sym_append] = ACTIONS(307), - [anon_sym_metadata] = ACTIONS(307), - [anon_sym_move] = ACTIONS(307), - [anon_sym_read] = ACTIONS(307), - [anon_sym_workdir] = ACTIONS(307), - [anon_sym_write] = ACTIONS(307), - [anon_sym_from_json] = ACTIONS(307), - [anon_sym_to_json] = ACTIONS(307), - [anon_sym_to_string] = ACTIONS(307), - [anon_sym_to_float] = ACTIONS(307), - [anon_sym_bash] = ACTIONS(307), - [anon_sym_fish] = ACTIONS(307), - [anon_sym_raw] = ACTIONS(307), - [anon_sym_sh] = ACTIONS(307), - [anon_sym_zsh] = ACTIONS(307), - [anon_sym_random] = ACTIONS(307), - [anon_sym_random_boolean] = ACTIONS(307), - [anon_sym_random_float] = ACTIONS(307), - [anon_sym_random_integer] = ACTIONS(307), - [anon_sym_columns] = ACTIONS(307), - [anon_sym_rows] = ACTIONS(307), - [anon_sym_reverse] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(1013), + [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(449), + [anon_sym_match] = ACTIONS(943), + [anon_sym_EQ_GT] = ACTIONS(265), + [anon_sym_while] = ACTIONS(945), + [anon_sym_for] = ACTIONS(947), + [anon_sym_asyncfor] = ACTIONS(949), + [anon_sym_transform] = ACTIONS(951), + [anon_sym_filter] = ACTIONS(953), + [anon_sym_find] = ACTIONS(955), + [anon_sym_remove] = ACTIONS(957), + [anon_sym_reduce] = ACTIONS(959), + [anon_sym_select] = ACTIONS(961), + [anon_sym_insert] = ACTIONS(285), + [anon_sym_async] = ACTIONS(963), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(289), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_assert_equal] = ACTIONS(291), + [anon_sym_download] = ACTIONS(291), + [anon_sym_help] = ACTIONS(291), + [anon_sym_length] = ACTIONS(291), + [anon_sym_output] = ACTIONS(291), + [anon_sym_output_error] = ACTIONS(291), + [anon_sym_type] = ACTIONS(291), + [anon_sym_append] = ACTIONS(291), + [anon_sym_metadata] = ACTIONS(291), + [anon_sym_move] = ACTIONS(291), + [anon_sym_read] = ACTIONS(291), + [anon_sym_workdir] = ACTIONS(291), + [anon_sym_write] = ACTIONS(291), + [anon_sym_from_json] = ACTIONS(291), + [anon_sym_to_json] = ACTIONS(291), + [anon_sym_to_string] = ACTIONS(291), + [anon_sym_to_float] = ACTIONS(291), + [anon_sym_bash] = ACTIONS(291), + [anon_sym_fish] = ACTIONS(291), + [anon_sym_raw] = ACTIONS(291), + [anon_sym_sh] = ACTIONS(291), + [anon_sym_zsh] = ACTIONS(291), + [anon_sym_random] = ACTIONS(291), + [anon_sym_random_boolean] = ACTIONS(291), + [anon_sym_random_float] = ACTIONS(291), + [anon_sym_random_integer] = ACTIONS(291), + [anon_sym_columns] = ACTIONS(291), + [anon_sym_rows] = ACTIONS(291), + [anon_sym_reverse] = ACTIONS(291), }, [308] = { - [sym_expression] = STATE(1579), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_logic] = STATE(1539), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(308), - [ts_builtin_sym_end] = ACTIONS(2481), - [sym_identifier] = ACTIONS(2483), + [sym_block] = STATE(928), + [sym_statement] = STATE(155), + [sym_expression] = STATE(516), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(433), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [aux_sym_block_repeat1] = STATE(155), + [sym_identifier] = ACTIONS(867), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2486), - [anon_sym_RBRACE] = ACTIONS(2481), - [anon_sym_SEMI] = ACTIONS(2481), - [anon_sym_LPAREN] = ACTIONS(2489), - [anon_sym_RPAREN] = ACTIONS(2481), - [anon_sym_COMMA] = ACTIONS(2481), - [sym_integer] = ACTIONS(2492), - [sym_float] = ACTIONS(2495), - [sym_string] = ACTIONS(2495), - [anon_sym_true] = ACTIONS(2498), - [anon_sym_false] = ACTIONS(2498), - [anon_sym_LBRACK] = ACTIONS(2501), - [anon_sym_RBRACK] = ACTIONS(2481), - [anon_sym_COLON] = ACTIONS(2481), - [anon_sym_DOT_DOT] = ACTIONS(2481), - [anon_sym_PLUS] = ACTIONS(2481), - [anon_sym_DASH] = ACTIONS(2504), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_SLASH] = ACTIONS(2481), - [anon_sym_PERCENT] = ACTIONS(2481), - [anon_sym_EQ_EQ] = ACTIONS(2481), - [anon_sym_BANG_EQ] = ACTIONS(2481), - [anon_sym_AMP_AMP] = ACTIONS(2481), - [anon_sym_PIPE_PIPE] = ACTIONS(2481), - [anon_sym_GT] = ACTIONS(2504), - [anon_sym_LT] = ACTIONS(2504), - [anon_sym_GT_EQ] = ACTIONS(2481), - [anon_sym_LT_EQ] = ACTIONS(2481), - [anon_sym_if] = ACTIONS(2504), - [anon_sym_elseif] = ACTIONS(2481), - [anon_sym_else] = ACTIONS(2504), - [anon_sym_match] = ACTIONS(2504), - [anon_sym_EQ_GT] = ACTIONS(2506), - [anon_sym_while] = ACTIONS(2504), - [anon_sym_for] = ACTIONS(2504), - [anon_sym_asyncfor] = ACTIONS(2481), - [anon_sym_transform] = ACTIONS(2504), - [anon_sym_filter] = ACTIONS(2504), - [anon_sym_find] = ACTIONS(2504), - [anon_sym_remove] = ACTIONS(2504), - [anon_sym_reduce] = ACTIONS(2504), - [anon_sym_select] = ACTIONS(2504), - [anon_sym_insert] = ACTIONS(2504), - [anon_sym_async] = ACTIONS(2504), - [anon_sym_PIPE] = ACTIONS(2509), - [anon_sym_table] = ACTIONS(2512), - [anon_sym_assert] = ACTIONS(2515), - [anon_sym_assert_equal] = ACTIONS(2515), - [anon_sym_download] = ACTIONS(2515), - [anon_sym_help] = ACTIONS(2515), - [anon_sym_length] = ACTIONS(2515), - [anon_sym_output] = ACTIONS(2515), - [anon_sym_output_error] = ACTIONS(2515), - [anon_sym_type] = ACTIONS(2515), - [anon_sym_append] = ACTIONS(2515), - [anon_sym_metadata] = ACTIONS(2515), - [anon_sym_move] = ACTIONS(2515), - [anon_sym_read] = ACTIONS(2515), - [anon_sym_workdir] = ACTIONS(2515), - [anon_sym_write] = ACTIONS(2515), - [anon_sym_from_json] = ACTIONS(2515), - [anon_sym_to_json] = ACTIONS(2515), - [anon_sym_to_string] = ACTIONS(2515), - [anon_sym_to_float] = ACTIONS(2515), - [anon_sym_bash] = ACTIONS(2515), - [anon_sym_fish] = ACTIONS(2515), - [anon_sym_raw] = ACTIONS(2515), - [anon_sym_sh] = ACTIONS(2515), - [anon_sym_zsh] = ACTIONS(2515), - [anon_sym_random] = ACTIONS(2515), - [anon_sym_random_boolean] = ACTIONS(2515), - [anon_sym_random_float] = ACTIONS(2515), - [anon_sym_random_integer] = ACTIONS(2515), - [anon_sym_columns] = ACTIONS(2515), - [anon_sym_rows] = ACTIONS(2515), - [anon_sym_reverse] = ACTIONS(2515), + [anon_sym_LBRACE] = ACTIONS(1013), + [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(227), + [anon_sym_match] = ACTIONS(871), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(873), + [anon_sym_for] = ACTIONS(875), + [anon_sym_asyncfor] = ACTIONS(877), + [anon_sym_transform] = ACTIONS(879), + [anon_sym_filter] = ACTIONS(881), + [anon_sym_find] = ACTIONS(883), + [anon_sym_remove] = ACTIONS(885), + [anon_sym_reduce] = ACTIONS(887), + [anon_sym_select] = ACTIONS(889), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(891), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [309] = { - [sym_expression] = STATE(1620), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_logic] = STATE(1539), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(297), - [ts_builtin_sym_end] = ACTIONS(2449), - [sym_identifier] = ACTIONS(2451), + [sym_block] = STATE(596), + [sym_statement] = STATE(212), + [sym_expression] = STATE(460), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_assignment] = STATE(598), + [sym_if_else] = STATE(598), + [sym_if] = STATE(564), + [sym_match] = STATE(598), + [sym_while] = STATE(598), + [sym_for] = STATE(598), + [sym_transform] = STATE(598), + [sym_filter] = STATE(598), + [sym_find] = STATE(598), + [sym_remove] = STATE(598), + [sym_reduce] = STATE(598), + [sym_select] = STATE(598), + [sym_insert] = STATE(598), + [sym_async] = STATE(598), + [sym_identifier_list] = STATE(1100), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(181), + [aux_sym_block_repeat1] = STATE(212), + [sym_identifier] = ACTIONS(445), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_RBRACE] = ACTIONS(2449), - [anon_sym_SEMI] = ACTIONS(2449), - [anon_sym_LPAREN] = ACTIONS(2455), - [anon_sym_RPAREN] = ACTIONS(2449), - [sym_integer] = ACTIONS(2457), - [sym_float] = ACTIONS(2459), - [sym_string] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(2461), - [anon_sym_false] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_EQ] = ACTIONS(2465), - [anon_sym_COLON] = ACTIONS(2449), - [anon_sym_PLUS] = ACTIONS(2465), - [anon_sym_DASH] = ACTIONS(2465), - [anon_sym_STAR] = ACTIONS(2449), - [anon_sym_SLASH] = ACTIONS(2449), - [anon_sym_PERCENT] = ACTIONS(2449), - [anon_sym_EQ_EQ] = ACTIONS(2449), - [anon_sym_BANG_EQ] = ACTIONS(2449), - [anon_sym_AMP_AMP] = ACTIONS(2449), - [anon_sym_PIPE_PIPE] = ACTIONS(2449), - [anon_sym_GT] = ACTIONS(2465), - [anon_sym_LT] = ACTIONS(2465), - [anon_sym_GT_EQ] = ACTIONS(2449), - [anon_sym_LT_EQ] = ACTIONS(2449), - [anon_sym_PLUS_EQ] = ACTIONS(2449), - [anon_sym_DASH_EQ] = ACTIONS(2449), - [anon_sym_if] = ACTIONS(2465), - [anon_sym_elseif] = ACTIONS(2449), - [anon_sym_else] = ACTIONS(2465), - [anon_sym_match] = ACTIONS(2465), - [anon_sym_EQ_GT] = ACTIONS(2467), - [anon_sym_while] = ACTIONS(2465), - [anon_sym_for] = ACTIONS(2465), - [anon_sym_asyncfor] = ACTIONS(2449), - [anon_sym_transform] = ACTIONS(2465), - [anon_sym_filter] = ACTIONS(2465), - [anon_sym_find] = ACTIONS(2465), - [anon_sym_remove] = ACTIONS(2465), - [anon_sym_reduce] = ACTIONS(2465), - [anon_sym_select] = ACTIONS(2465), - [anon_sym_insert] = ACTIONS(2465), - [anon_sym_async] = ACTIONS(2465), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(2469), - [anon_sym_assert] = ACTIONS(2471), - [anon_sym_assert_equal] = ACTIONS(2471), - [anon_sym_download] = ACTIONS(2471), - [anon_sym_help] = ACTIONS(2471), - [anon_sym_length] = ACTIONS(2471), - [anon_sym_output] = ACTIONS(2471), - [anon_sym_output_error] = ACTIONS(2471), - [anon_sym_type] = ACTIONS(2471), - [anon_sym_append] = ACTIONS(2471), - [anon_sym_metadata] = ACTIONS(2471), - [anon_sym_move] = ACTIONS(2471), - [anon_sym_read] = ACTIONS(2471), - [anon_sym_workdir] = ACTIONS(2471), - [anon_sym_write] = ACTIONS(2471), - [anon_sym_from_json] = ACTIONS(2471), - [anon_sym_to_json] = ACTIONS(2471), - [anon_sym_to_string] = ACTIONS(2471), - [anon_sym_to_float] = ACTIONS(2471), - [anon_sym_bash] = ACTIONS(2471), - [anon_sym_fish] = ACTIONS(2471), - [anon_sym_raw] = ACTIONS(2471), - [anon_sym_sh] = ACTIONS(2471), - [anon_sym_zsh] = ACTIONS(2471), - [anon_sym_random] = ACTIONS(2471), - [anon_sym_random_boolean] = ACTIONS(2471), - [anon_sym_random_float] = ACTIONS(2471), - [anon_sym_random_integer] = ACTIONS(2471), - [anon_sym_columns] = ACTIONS(2471), - [anon_sym_rows] = ACTIONS(2471), - [anon_sym_reverse] = ACTIONS(2471), + [anon_sym_LBRACE] = ACTIONS(447), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_if] = ACTIONS(449), + [anon_sym_match] = ACTIONS(451), + [anon_sym_EQ_GT] = ACTIONS(123), + [anon_sym_while] = ACTIONS(453), + [anon_sym_for] = ACTIONS(455), + [anon_sym_asyncfor] = ACTIONS(457), + [anon_sym_transform] = ACTIONS(459), + [anon_sym_filter] = ACTIONS(461), + [anon_sym_find] = ACTIONS(463), + [anon_sym_remove] = ACTIONS(465), + [anon_sym_reduce] = ACTIONS(467), + [anon_sym_select] = ACTIONS(469), + [anon_sym_insert] = ACTIONS(143), + [anon_sym_async] = ACTIONS(471), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(147), + [anon_sym_assert] = ACTIONS(149), + [anon_sym_assert_equal] = ACTIONS(149), + [anon_sym_download] = ACTIONS(149), + [anon_sym_help] = ACTIONS(149), + [anon_sym_length] = ACTIONS(149), + [anon_sym_output] = ACTIONS(149), + [anon_sym_output_error] = ACTIONS(149), + [anon_sym_type] = ACTIONS(149), + [anon_sym_append] = ACTIONS(149), + [anon_sym_metadata] = ACTIONS(149), + [anon_sym_move] = ACTIONS(149), + [anon_sym_read] = ACTIONS(149), + [anon_sym_workdir] = ACTIONS(149), + [anon_sym_write] = ACTIONS(149), + [anon_sym_from_json] = ACTIONS(149), + [anon_sym_to_json] = ACTIONS(149), + [anon_sym_to_string] = ACTIONS(149), + [anon_sym_to_float] = ACTIONS(149), + [anon_sym_bash] = ACTIONS(149), + [anon_sym_fish] = ACTIONS(149), + [anon_sym_raw] = ACTIONS(149), + [anon_sym_sh] = ACTIONS(149), + [anon_sym_zsh] = ACTIONS(149), + [anon_sym_random] = ACTIONS(149), + [anon_sym_random_boolean] = ACTIONS(149), + [anon_sym_random_float] = ACTIONS(149), + [anon_sym_random_integer] = ACTIONS(149), + [anon_sym_columns] = ACTIONS(149), + [anon_sym_rows] = ACTIONS(149), + [anon_sym_reverse] = ACTIONS(149), }, [310] = { - [sym_expression] = STATE(783), - [sym__expression_kind] = STATE(759), - [aux_sym__expression_list] = STATE(350), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(759), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_assignment_operator] = STATE(540), - [sym_identifier_list] = STATE(1841), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(315), - [ts_builtin_sym_end] = ACTIONS(2435), - [sym_identifier] = ACTIONS(2437), + [sym_block] = STATE(589), + [sym_statement] = STATE(29), + [sym_expression] = STATE(449), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(353), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [aux_sym_block_repeat1] = STATE(29), + [sym_identifier] = ACTIONS(259), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_RBRACE] = ACTIONS(2435), - [anon_sym_SEMI] = ACTIONS(2435), - [anon_sym_LPAREN] = ACTIONS(2435), - [sym_integer] = ACTIONS(2437), - [sym_float] = ACTIONS(2435), - [sym_string] = ACTIONS(2435), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [anon_sym_LBRACK] = ACTIONS(2435), - [anon_sym_EQ] = ACTIONS(2439), - [anon_sym_COLON] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_PERCENT] = ACTIONS(2435), - [anon_sym_EQ_EQ] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_PIPE_PIPE] = ACTIONS(2435), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_PLUS_EQ] = ACTIONS(2441), - [anon_sym_DASH_EQ] = ACTIONS(2441), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_elseif] = ACTIONS(2435), - [anon_sym_else] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_EQ_GT] = ACTIONS(2435), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_asyncfor] = ACTIONS(2435), - [anon_sym_transform] = ACTIONS(2437), - [anon_sym_filter] = ACTIONS(2437), - [anon_sym_find] = ACTIONS(2437), - [anon_sym_remove] = ACTIONS(2437), - [anon_sym_reduce] = ACTIONS(2437), - [anon_sym_select] = ACTIONS(2437), - [anon_sym_insert] = ACTIONS(2437), - [anon_sym_async] = ACTIONS(2437), - [anon_sym_PIPE] = ACTIONS(2437), - [anon_sym_table] = ACTIONS(2437), - [anon_sym_assert] = ACTIONS(2437), - [anon_sym_assert_equal] = ACTIONS(2437), - [anon_sym_download] = ACTIONS(2437), - [anon_sym_help] = ACTIONS(2437), - [anon_sym_length] = ACTIONS(2437), - [anon_sym_output] = ACTIONS(2437), - [anon_sym_output_error] = ACTIONS(2437), - [anon_sym_type] = ACTIONS(2437), - [anon_sym_append] = ACTIONS(2437), - [anon_sym_metadata] = ACTIONS(2437), - [anon_sym_move] = ACTIONS(2437), - [anon_sym_read] = ACTIONS(2437), - [anon_sym_workdir] = ACTIONS(2437), - [anon_sym_write] = ACTIONS(2437), - [anon_sym_from_json] = ACTIONS(2437), - [anon_sym_to_json] = ACTIONS(2437), - [anon_sym_to_string] = ACTIONS(2437), - [anon_sym_to_float] = ACTIONS(2437), - [anon_sym_bash] = ACTIONS(2437), - [anon_sym_fish] = ACTIONS(2437), - [anon_sym_raw] = ACTIONS(2437), - [anon_sym_sh] = ACTIONS(2437), - [anon_sym_zsh] = ACTIONS(2437), - [anon_sym_random] = ACTIONS(2437), - [anon_sym_random_boolean] = ACTIONS(2437), - [anon_sym_random_float] = ACTIONS(2437), - [anon_sym_random_integer] = ACTIONS(2437), - [anon_sym_columns] = ACTIONS(2437), - [anon_sym_rows] = ACTIONS(2437), - [anon_sym_reverse] = ACTIONS(2437), + [anon_sym_LBRACE] = ACTIONS(1879), + [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(119), + [anon_sym_match] = ACTIONS(263), + [anon_sym_EQ_GT] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_for] = ACTIONS(269), + [anon_sym_asyncfor] = ACTIONS(271), + [anon_sym_transform] = ACTIONS(273), + [anon_sym_filter] = ACTIONS(275), + [anon_sym_find] = ACTIONS(277), + [anon_sym_remove] = ACTIONS(279), + [anon_sym_reduce] = ACTIONS(281), + [anon_sym_select] = ACTIONS(283), + [anon_sym_insert] = ACTIONS(285), + [anon_sym_async] = ACTIONS(287), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(289), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_assert_equal] = ACTIONS(291), + [anon_sym_download] = ACTIONS(291), + [anon_sym_help] = ACTIONS(291), + [anon_sym_length] = ACTIONS(291), + [anon_sym_output] = ACTIONS(291), + [anon_sym_output_error] = ACTIONS(291), + [anon_sym_type] = ACTIONS(291), + [anon_sym_append] = ACTIONS(291), + [anon_sym_metadata] = ACTIONS(291), + [anon_sym_move] = ACTIONS(291), + [anon_sym_read] = ACTIONS(291), + [anon_sym_workdir] = ACTIONS(291), + [anon_sym_write] = ACTIONS(291), + [anon_sym_from_json] = ACTIONS(291), + [anon_sym_to_json] = ACTIONS(291), + [anon_sym_to_string] = ACTIONS(291), + [anon_sym_to_float] = ACTIONS(291), + [anon_sym_bash] = ACTIONS(291), + [anon_sym_fish] = ACTIONS(291), + [anon_sym_raw] = ACTIONS(291), + [anon_sym_sh] = ACTIONS(291), + [anon_sym_zsh] = ACTIONS(291), + [anon_sym_random] = ACTIONS(291), + [anon_sym_random_boolean] = ACTIONS(291), + [anon_sym_random_float] = ACTIONS(291), + [anon_sym_random_integer] = ACTIONS(291), + [anon_sym_columns] = ACTIONS(291), + [anon_sym_rows] = ACTIONS(291), + [anon_sym_reverse] = ACTIONS(291), }, [311] = { - [sym_expression] = STATE(664), - [sym__expression_kind] = STATE(706), - [aux_sym__expression_list] = STATE(300), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_logic] = STATE(706), - [sym_identifier_list] = STATE(1813), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(311), - [ts_builtin_sym_end] = ACTIONS(2473), - [sym_identifier] = ACTIONS(149), + [sym_block] = STATE(480), + [sym_statement] = STATE(28), + [sym_expression] = STATE(479), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(365), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1119), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(218), + [aux_sym_block_repeat1] = STATE(28), + [sym_identifier] = ACTIONS(524), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1923), - [anon_sym_RBRACE] = ACTIONS(2473), - [anon_sym_SEMI] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_RPAREN] = ACTIONS(2473), - [anon_sym_COMMA] = ACTIONS(2473), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(2473), - [anon_sym_EQ] = ACTIONS(2475), - [anon_sym_COLON] = ACTIONS(2473), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2473), - [anon_sym_SLASH] = ACTIONS(2473), - [anon_sym_PERCENT] = ACTIONS(2473), - [anon_sym_EQ_EQ] = ACTIONS(2473), - [anon_sym_BANG_EQ] = ACTIONS(2473), - [anon_sym_AMP_AMP] = ACTIONS(2473), - [anon_sym_PIPE_PIPE] = ACTIONS(2473), - [anon_sym_GT] = ACTIONS(2475), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_GT_EQ] = ACTIONS(2473), - [anon_sym_LT_EQ] = ACTIONS(2473), - [anon_sym_PLUS_EQ] = ACTIONS(2473), - [anon_sym_DASH_EQ] = ACTIONS(2473), - [anon_sym_if] = ACTIONS(2475), - [anon_sym_match] = ACTIONS(2475), - [anon_sym_EQ_GT] = ACTIONS(281), - [anon_sym_while] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2475), - [anon_sym_asyncfor] = ACTIONS(2473), - [anon_sym_transform] = ACTIONS(2475), - [anon_sym_filter] = ACTIONS(2475), - [anon_sym_find] = ACTIONS(2475), - [anon_sym_remove] = ACTIONS(2475), - [anon_sym_reduce] = ACTIONS(2475), - [anon_sym_select] = ACTIONS(2475), - [anon_sym_insert] = ACTIONS(2475), - [anon_sym_async] = ACTIONS(2475), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(305), - [anon_sym_assert] = ACTIONS(307), - [anon_sym_assert_equal] = ACTIONS(307), - [anon_sym_download] = ACTIONS(307), - [anon_sym_help] = ACTIONS(307), - [anon_sym_length] = ACTIONS(307), - [anon_sym_output] = ACTIONS(307), - [anon_sym_output_error] = ACTIONS(307), - [anon_sym_type] = ACTIONS(307), - [anon_sym_append] = ACTIONS(307), - [anon_sym_metadata] = ACTIONS(307), - [anon_sym_move] = ACTIONS(307), - [anon_sym_read] = ACTIONS(307), - [anon_sym_workdir] = ACTIONS(307), - [anon_sym_write] = ACTIONS(307), - [anon_sym_from_json] = ACTIONS(307), - [anon_sym_to_json] = ACTIONS(307), - [anon_sym_to_string] = ACTIONS(307), - [anon_sym_to_float] = ACTIONS(307), - [anon_sym_bash] = ACTIONS(307), - [anon_sym_fish] = ACTIONS(307), - [anon_sym_raw] = ACTIONS(307), - [anon_sym_sh] = ACTIONS(307), - [anon_sym_zsh] = ACTIONS(307), - [anon_sym_random] = ACTIONS(307), - [anon_sym_random_boolean] = ACTIONS(307), - [anon_sym_random_float] = ACTIONS(307), - [anon_sym_random_integer] = ACTIONS(307), - [anon_sym_columns] = ACTIONS(307), - [anon_sym_rows] = ACTIONS(307), - [anon_sym_reverse] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(189), + [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(155), + [anon_sym_match] = ACTIONS(528), + [anon_sym_EQ_GT] = ACTIONS(530), + [anon_sym_while] = ACTIONS(532), + [anon_sym_for] = ACTIONS(534), + [anon_sym_asyncfor] = ACTIONS(536), + [anon_sym_transform] = ACTIONS(538), + [anon_sym_filter] = ACTIONS(540), + [anon_sym_find] = ACTIONS(542), + [anon_sym_remove] = ACTIONS(544), + [anon_sym_reduce] = ACTIONS(546), + [anon_sym_select] = ACTIONS(548), + [anon_sym_insert] = ACTIONS(550), + [anon_sym_async] = ACTIONS(552), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(554), + [anon_sym_assert] = ACTIONS(556), + [anon_sym_assert_equal] = ACTIONS(556), + [anon_sym_download] = ACTIONS(556), + [anon_sym_help] = ACTIONS(556), + [anon_sym_length] = ACTIONS(556), + [anon_sym_output] = ACTIONS(556), + [anon_sym_output_error] = ACTIONS(556), + [anon_sym_type] = ACTIONS(556), + [anon_sym_append] = ACTIONS(556), + [anon_sym_metadata] = ACTIONS(556), + [anon_sym_move] = ACTIONS(556), + [anon_sym_read] = ACTIONS(556), + [anon_sym_workdir] = ACTIONS(556), + [anon_sym_write] = ACTIONS(556), + [anon_sym_from_json] = ACTIONS(556), + [anon_sym_to_json] = ACTIONS(556), + [anon_sym_to_string] = ACTIONS(556), + [anon_sym_to_float] = ACTIONS(556), + [anon_sym_bash] = ACTIONS(556), + [anon_sym_fish] = ACTIONS(556), + [anon_sym_raw] = ACTIONS(556), + [anon_sym_sh] = ACTIONS(556), + [anon_sym_zsh] = ACTIONS(556), + [anon_sym_random] = ACTIONS(556), + [anon_sym_random_boolean] = ACTIONS(556), + [anon_sym_random_float] = ACTIONS(556), + [anon_sym_random_integer] = ACTIONS(556), + [anon_sym_columns] = ACTIONS(556), + [anon_sym_rows] = ACTIONS(556), + [anon_sym_reverse] = ACTIONS(556), }, [312] = { - [sym_expression] = STATE(1577), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_logic] = STATE(1539), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(319), - [ts_builtin_sym_end] = ACTIONS(2449), - [sym_identifier] = ACTIONS(2451), + [sym_statement] = STATE(228), + [sym_expression] = STATE(535), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(561), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [aux_sym_block_repeat1] = STATE(228), + [sym_identifier] = ACTIONS(5), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_RBRACE] = ACTIONS(2449), - [anon_sym_SEMI] = ACTIONS(2449), - [anon_sym_LPAREN] = ACTIONS(2455), - [anon_sym_RPAREN] = ACTIONS(2449), - [anon_sym_COMMA] = ACTIONS(2449), - [sym_integer] = ACTIONS(2457), - [sym_float] = ACTIONS(2459), - [sym_string] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(2461), - [anon_sym_false] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_RBRACK] = ACTIONS(2449), - [anon_sym_COLON] = ACTIONS(2449), - [anon_sym_PLUS] = ACTIONS(2449), - [anon_sym_DASH] = ACTIONS(2465), - [anon_sym_STAR] = ACTIONS(2449), - [anon_sym_SLASH] = ACTIONS(2449), - [anon_sym_PERCENT] = ACTIONS(2449), - [anon_sym_EQ_EQ] = ACTIONS(2449), - [anon_sym_BANG_EQ] = ACTIONS(2449), - [anon_sym_AMP_AMP] = ACTIONS(2449), - [anon_sym_PIPE_PIPE] = ACTIONS(2449), - [anon_sym_GT] = ACTIONS(2465), - [anon_sym_LT] = ACTIONS(2465), - [anon_sym_GT_EQ] = ACTIONS(2449), - [anon_sym_LT_EQ] = ACTIONS(2449), - [anon_sym_if] = ACTIONS(2465), - [anon_sym_elseif] = ACTIONS(2449), - [anon_sym_else] = ACTIONS(2465), - [anon_sym_match] = ACTIONS(2465), - [anon_sym_EQ_GT] = ACTIONS(2467), - [anon_sym_while] = ACTIONS(2465), - [anon_sym_for] = ACTIONS(2465), - [anon_sym_asyncfor] = ACTIONS(2449), - [anon_sym_transform] = ACTIONS(2465), - [anon_sym_filter] = ACTIONS(2465), - [anon_sym_find] = ACTIONS(2465), - [anon_sym_remove] = ACTIONS(2465), - [anon_sym_reduce] = ACTIONS(2465), - [anon_sym_select] = ACTIONS(2465), - [anon_sym_insert] = ACTIONS(2465), - [anon_sym_async] = ACTIONS(2465), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(2469), - [anon_sym_assert] = ACTIONS(2471), - [anon_sym_assert_equal] = ACTIONS(2471), - [anon_sym_download] = ACTIONS(2471), - [anon_sym_help] = ACTIONS(2471), - [anon_sym_length] = ACTIONS(2471), - [anon_sym_output] = ACTIONS(2471), - [anon_sym_output_error] = ACTIONS(2471), - [anon_sym_type] = ACTIONS(2471), - [anon_sym_append] = ACTIONS(2471), - [anon_sym_metadata] = ACTIONS(2471), - [anon_sym_move] = ACTIONS(2471), - [anon_sym_read] = ACTIONS(2471), - [anon_sym_workdir] = ACTIONS(2471), - [anon_sym_write] = ACTIONS(2471), - [anon_sym_from_json] = ACTIONS(2471), - [anon_sym_to_json] = ACTIONS(2471), - [anon_sym_to_string] = ACTIONS(2471), - [anon_sym_to_float] = ACTIONS(2471), - [anon_sym_bash] = ACTIONS(2471), - [anon_sym_fish] = ACTIONS(2471), - [anon_sym_raw] = ACTIONS(2471), - [anon_sym_sh] = ACTIONS(2471), - [anon_sym_zsh] = ACTIONS(2471), - [anon_sym_random] = ACTIONS(2471), - [anon_sym_random_boolean] = ACTIONS(2471), - [anon_sym_random_float] = ACTIONS(2471), - [anon_sym_random_integer] = ACTIONS(2471), - [anon_sym_columns] = ACTIONS(2471), - [anon_sym_rows] = ACTIONS(2471), - [anon_sym_reverse] = ACTIONS(2471), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_RBRACE] = ACTIONS(1891), + [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_asyncfor] = 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_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [313] = { - [sym_expression] = STATE(876), - [sym__expression_kind] = STATE(866), - [aux_sym__expression_list] = STATE(375), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(866), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment_operator] = STATE(543), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [ts_builtin_sym_end] = ACTIONS(2435), - [sym_identifier] = ACTIONS(2437), + [sym_block] = STATE(928), + [sym_statement] = STATE(153), + [sym_expression] = STATE(479), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(365), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1119), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(218), + [aux_sym_block_repeat1] = STATE(153), + [sym_identifier] = ACTIONS(524), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_RBRACE] = ACTIONS(2435), - [anon_sym_SEMI] = ACTIONS(2435), - [anon_sym_LPAREN] = ACTIONS(2435), - [anon_sym_RPAREN] = ACTIONS(2435), - [sym_integer] = ACTIONS(2437), - [sym_float] = ACTIONS(2435), - [sym_string] = ACTIONS(2435), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [anon_sym_LBRACK] = ACTIONS(2435), - [anon_sym_EQ] = ACTIONS(2439), - [anon_sym_COLON] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_PERCENT] = ACTIONS(2435), - [anon_sym_EQ_EQ] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_PIPE_PIPE] = ACTIONS(2435), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_PLUS_EQ] = ACTIONS(2441), - [anon_sym_DASH_EQ] = ACTIONS(2441), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_EQ_GT] = ACTIONS(2435), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_asyncfor] = ACTIONS(2435), - [anon_sym_transform] = ACTIONS(2437), - [anon_sym_filter] = ACTIONS(2437), - [anon_sym_find] = ACTIONS(2437), - [anon_sym_remove] = ACTIONS(2437), - [anon_sym_reduce] = ACTIONS(2437), - [anon_sym_select] = ACTIONS(2437), - [anon_sym_insert] = ACTIONS(2437), - [anon_sym_async] = ACTIONS(2437), - [anon_sym_PIPE] = ACTIONS(2437), - [anon_sym_table] = ACTIONS(2437), - [anon_sym_assert] = ACTIONS(2437), - [anon_sym_assert_equal] = ACTIONS(2437), - [anon_sym_download] = ACTIONS(2437), - [anon_sym_help] = ACTIONS(2437), - [anon_sym_length] = ACTIONS(2437), - [anon_sym_output] = ACTIONS(2437), - [anon_sym_output_error] = ACTIONS(2437), - [anon_sym_type] = ACTIONS(2437), - [anon_sym_append] = ACTIONS(2437), - [anon_sym_metadata] = ACTIONS(2437), - [anon_sym_move] = ACTIONS(2437), - [anon_sym_read] = ACTIONS(2437), - [anon_sym_workdir] = ACTIONS(2437), - [anon_sym_write] = ACTIONS(2437), - [anon_sym_from_json] = ACTIONS(2437), - [anon_sym_to_json] = ACTIONS(2437), - [anon_sym_to_string] = ACTIONS(2437), - [anon_sym_to_float] = ACTIONS(2437), - [anon_sym_bash] = ACTIONS(2437), - [anon_sym_fish] = ACTIONS(2437), - [anon_sym_raw] = ACTIONS(2437), - [anon_sym_sh] = ACTIONS(2437), - [anon_sym_zsh] = ACTIONS(2437), - [anon_sym_random] = ACTIONS(2437), - [anon_sym_random_boolean] = ACTIONS(2437), - [anon_sym_random_float] = ACTIONS(2437), - [anon_sym_random_integer] = ACTIONS(2437), - [anon_sym_columns] = ACTIONS(2437), - [anon_sym_rows] = ACTIONS(2437), - [anon_sym_reverse] = ACTIONS(2437), + [anon_sym_LBRACE] = ACTIONS(1013), + [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(155), + [anon_sym_match] = ACTIONS(528), + [anon_sym_EQ_GT] = ACTIONS(530), + [anon_sym_while] = ACTIONS(532), + [anon_sym_for] = ACTIONS(534), + [anon_sym_asyncfor] = ACTIONS(536), + [anon_sym_transform] = ACTIONS(538), + [anon_sym_filter] = ACTIONS(540), + [anon_sym_find] = ACTIONS(542), + [anon_sym_remove] = ACTIONS(544), + [anon_sym_reduce] = ACTIONS(546), + [anon_sym_select] = ACTIONS(548), + [anon_sym_insert] = ACTIONS(550), + [anon_sym_async] = ACTIONS(552), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(554), + [anon_sym_assert] = ACTIONS(556), + [anon_sym_assert_equal] = ACTIONS(556), + [anon_sym_download] = ACTIONS(556), + [anon_sym_help] = ACTIONS(556), + [anon_sym_length] = ACTIONS(556), + [anon_sym_output] = ACTIONS(556), + [anon_sym_output_error] = ACTIONS(556), + [anon_sym_type] = ACTIONS(556), + [anon_sym_append] = ACTIONS(556), + [anon_sym_metadata] = ACTIONS(556), + [anon_sym_move] = ACTIONS(556), + [anon_sym_read] = ACTIONS(556), + [anon_sym_workdir] = ACTIONS(556), + [anon_sym_write] = ACTIONS(556), + [anon_sym_from_json] = ACTIONS(556), + [anon_sym_to_json] = ACTIONS(556), + [anon_sym_to_string] = ACTIONS(556), + [anon_sym_to_float] = ACTIONS(556), + [anon_sym_bash] = ACTIONS(556), + [anon_sym_fish] = ACTIONS(556), + [anon_sym_raw] = ACTIONS(556), + [anon_sym_sh] = ACTIONS(556), + [anon_sym_zsh] = ACTIONS(556), + [anon_sym_random] = ACTIONS(556), + [anon_sym_random_boolean] = ACTIONS(556), + [anon_sym_random_float] = ACTIONS(556), + [anon_sym_random_integer] = ACTIONS(556), + [anon_sym_columns] = ACTIONS(556), + [anon_sym_rows] = ACTIONS(556), + [anon_sym_reverse] = ACTIONS(556), }, [314] = { - [sym_expression] = STATE(744), - [sym__expression_kind] = STATE(759), - [aux_sym__expression_list] = STATE(317), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(759), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_identifier_list] = STATE(1841), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(315), - [ts_builtin_sym_end] = ACTIONS(2443), - [sym_identifier] = ACTIONS(2624), + [sym_block] = STATE(400), + [sym_statement] = STATE(16), + [sym_expression] = STATE(387), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(366), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1210), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(186), + [aux_sym_block_repeat1] = STATE(16), + [sym_identifier] = ACTIONS(151), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2626), - [anon_sym_RBRACE] = ACTIONS(2443), - [anon_sym_SEMI] = ACTIONS(2443), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_RPAREN] = ACTIONS(2443), - [anon_sym_COMMA] = ACTIONS(2443), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_RBRACK] = ACTIONS(2443), - [anon_sym_COLON] = ACTIONS(2443), - [anon_sym_PLUS] = ACTIONS(2443), - [anon_sym_DASH] = ACTIONS(2447), - [anon_sym_STAR] = ACTIONS(2443), - [anon_sym_SLASH] = ACTIONS(2443), - [anon_sym_PERCENT] = ACTIONS(2443), - [anon_sym_EQ_EQ] = ACTIONS(2443), - [anon_sym_BANG_EQ] = ACTIONS(2443), - [anon_sym_AMP_AMP] = ACTIONS(2443), - [anon_sym_PIPE_PIPE] = ACTIONS(2443), - [anon_sym_GT] = ACTIONS(2447), - [anon_sym_LT] = ACTIONS(2447), - [anon_sym_GT_EQ] = ACTIONS(2443), - [anon_sym_LT_EQ] = ACTIONS(2443), - [anon_sym_if] = ACTIONS(2447), - [anon_sym_elseif] = ACTIONS(2443), - [anon_sym_else] = ACTIONS(2447), - [anon_sym_match] = ACTIONS(2447), - [anon_sym_EQ_GT] = ACTIONS(631), - [anon_sym_while] = ACTIONS(2447), - [anon_sym_for] = ACTIONS(2447), - [anon_sym_asyncfor] = ACTIONS(2443), - [anon_sym_transform] = ACTIONS(2447), - [anon_sym_filter] = ACTIONS(2447), - [anon_sym_find] = ACTIONS(2447), - [anon_sym_remove] = ACTIONS(2447), - [anon_sym_reduce] = ACTIONS(2447), - [anon_sym_select] = ACTIONS(2447), - [anon_sym_insert] = ACTIONS(2447), - [anon_sym_async] = ACTIONS(2447), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(655), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_assert_equal] = ACTIONS(657), - [anon_sym_download] = ACTIONS(657), - [anon_sym_help] = ACTIONS(657), - [anon_sym_length] = ACTIONS(657), - [anon_sym_output] = ACTIONS(657), - [anon_sym_output_error] = ACTIONS(657), - [anon_sym_type] = ACTIONS(657), - [anon_sym_append] = ACTIONS(657), - [anon_sym_metadata] = ACTIONS(657), - [anon_sym_move] = ACTIONS(657), - [anon_sym_read] = ACTIONS(657), - [anon_sym_workdir] = ACTIONS(657), - [anon_sym_write] = ACTIONS(657), - [anon_sym_from_json] = ACTIONS(657), - [anon_sym_to_json] = ACTIONS(657), - [anon_sym_to_string] = ACTIONS(657), - [anon_sym_to_float] = ACTIONS(657), - [anon_sym_bash] = ACTIONS(657), - [anon_sym_fish] = ACTIONS(657), - [anon_sym_raw] = ACTIONS(657), - [anon_sym_sh] = ACTIONS(657), - [anon_sym_zsh] = ACTIONS(657), - [anon_sym_random] = ACTIONS(657), - [anon_sym_random_boolean] = ACTIONS(657), - [anon_sym_random_float] = ACTIONS(657), - [anon_sym_random_integer] = ACTIONS(657), - [anon_sym_columns] = ACTIONS(657), - [anon_sym_rows] = ACTIONS(657), - [anon_sym_reverse] = ACTIONS(657), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_if] = ACTIONS(155), + [anon_sym_match] = ACTIONS(157), + [anon_sym_EQ_GT] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_asyncfor] = ACTIONS(165), + [anon_sym_transform] = ACTIONS(167), + [anon_sym_filter] = ACTIONS(169), + [anon_sym_find] = ACTIONS(171), + [anon_sym_remove] = ACTIONS(173), + [anon_sym_reduce] = ACTIONS(175), + [anon_sym_select] = ACTIONS(177), + [anon_sym_insert] = ACTIONS(179), + [anon_sym_async] = ACTIONS(181), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(183), + [anon_sym_assert] = ACTIONS(185), + [anon_sym_assert_equal] = ACTIONS(185), + [anon_sym_download] = ACTIONS(185), + [anon_sym_help] = ACTIONS(185), + [anon_sym_length] = ACTIONS(185), + [anon_sym_output] = ACTIONS(185), + [anon_sym_output_error] = ACTIONS(185), + [anon_sym_type] = ACTIONS(185), + [anon_sym_append] = ACTIONS(185), + [anon_sym_metadata] = ACTIONS(185), + [anon_sym_move] = ACTIONS(185), + [anon_sym_read] = ACTIONS(185), + [anon_sym_workdir] = ACTIONS(185), + [anon_sym_write] = ACTIONS(185), + [anon_sym_from_json] = ACTIONS(185), + [anon_sym_to_json] = ACTIONS(185), + [anon_sym_to_string] = ACTIONS(185), + [anon_sym_to_float] = ACTIONS(185), + [anon_sym_bash] = ACTIONS(185), + [anon_sym_fish] = ACTIONS(185), + [anon_sym_raw] = ACTIONS(185), + [anon_sym_sh] = ACTIONS(185), + [anon_sym_zsh] = ACTIONS(185), + [anon_sym_random] = ACTIONS(185), + [anon_sym_random_boolean] = ACTIONS(185), + [anon_sym_random_float] = ACTIONS(185), + [anon_sym_random_integer] = ACTIONS(185), + [anon_sym_columns] = ACTIONS(185), + [anon_sym_rows] = ACTIONS(185), + [anon_sym_reverse] = ACTIONS(185), }, [315] = { - [sym_expression] = STATE(744), - [sym__expression_kind] = STATE(759), - [aux_sym__expression_list] = STATE(314), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(759), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_identifier_list] = STATE(1841), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(315), - [ts_builtin_sym_end] = ACTIONS(2473), - [sym_identifier] = ACTIONS(2624), + [sym_block] = STATE(478), + [sym_statement] = STATE(32), + [sym_expression] = STATE(516), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(433), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [aux_sym_block_repeat1] = STATE(32), + [sym_identifier] = ACTIONS(867), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2626), - [anon_sym_RBRACE] = ACTIONS(2473), - [anon_sym_SEMI] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_RPAREN] = ACTIONS(2473), - [anon_sym_COMMA] = ACTIONS(2473), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_RBRACK] = ACTIONS(2473), - [anon_sym_COLON] = ACTIONS(2473), - [anon_sym_PLUS] = ACTIONS(2473), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2473), - [anon_sym_SLASH] = ACTIONS(2473), - [anon_sym_PERCENT] = ACTIONS(2473), - [anon_sym_EQ_EQ] = ACTIONS(2473), - [anon_sym_BANG_EQ] = ACTIONS(2473), - [anon_sym_AMP_AMP] = ACTIONS(2473), - [anon_sym_PIPE_PIPE] = ACTIONS(2473), - [anon_sym_GT] = ACTIONS(2475), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_GT_EQ] = ACTIONS(2473), - [anon_sym_LT_EQ] = ACTIONS(2473), - [anon_sym_if] = ACTIONS(2475), - [anon_sym_elseif] = ACTIONS(2473), - [anon_sym_else] = ACTIONS(2475), - [anon_sym_match] = ACTIONS(2475), - [anon_sym_EQ_GT] = ACTIONS(631), - [anon_sym_while] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2475), - [anon_sym_asyncfor] = ACTIONS(2473), - [anon_sym_transform] = ACTIONS(2475), - [anon_sym_filter] = ACTIONS(2475), - [anon_sym_find] = ACTIONS(2475), - [anon_sym_remove] = ACTIONS(2475), - [anon_sym_reduce] = ACTIONS(2475), - [anon_sym_select] = ACTIONS(2475), - [anon_sym_insert] = ACTIONS(2475), - [anon_sym_async] = ACTIONS(2475), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(655), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_assert_equal] = ACTIONS(657), - [anon_sym_download] = ACTIONS(657), - [anon_sym_help] = ACTIONS(657), - [anon_sym_length] = ACTIONS(657), - [anon_sym_output] = ACTIONS(657), - [anon_sym_output_error] = ACTIONS(657), - [anon_sym_type] = ACTIONS(657), - [anon_sym_append] = ACTIONS(657), - [anon_sym_metadata] = ACTIONS(657), - [anon_sym_move] = ACTIONS(657), - [anon_sym_read] = ACTIONS(657), - [anon_sym_workdir] = ACTIONS(657), - [anon_sym_write] = ACTIONS(657), - [anon_sym_from_json] = ACTIONS(657), - [anon_sym_to_json] = ACTIONS(657), - [anon_sym_to_string] = ACTIONS(657), - [anon_sym_to_float] = ACTIONS(657), - [anon_sym_bash] = ACTIONS(657), - [anon_sym_fish] = ACTIONS(657), - [anon_sym_raw] = ACTIONS(657), - [anon_sym_sh] = ACTIONS(657), - [anon_sym_zsh] = ACTIONS(657), - [anon_sym_random] = ACTIONS(657), - [anon_sym_random_boolean] = ACTIONS(657), - [anon_sym_random_float] = ACTIONS(657), - [anon_sym_random_integer] = ACTIONS(657), - [anon_sym_columns] = ACTIONS(657), - [anon_sym_rows] = ACTIONS(657), - [anon_sym_reverse] = ACTIONS(657), + [anon_sym_LBRACE] = ACTIONS(189), + [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(227), + [anon_sym_match] = ACTIONS(871), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(873), + [anon_sym_for] = ACTIONS(875), + [anon_sym_asyncfor] = ACTIONS(877), + [anon_sym_transform] = ACTIONS(879), + [anon_sym_filter] = ACTIONS(881), + [anon_sym_find] = ACTIONS(883), + [anon_sym_remove] = ACTIONS(885), + [anon_sym_reduce] = ACTIONS(887), + [anon_sym_select] = ACTIONS(889), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(891), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [316] = { - [sym_expression] = STATE(744), - [sym__expression_kind] = STATE(759), - [aux_sym__expression_list] = STATE(317), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(759), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_identifier_list] = STATE(1841), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(315), - [ts_builtin_sym_end] = ACTIONS(2477), - [sym_identifier] = ACTIONS(2624), + [sym_block] = STATE(912), + [sym_statement] = STATE(227), + [sym_expression] = STATE(547), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(571), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [aux_sym_block_repeat1] = STATE(227), + [sym_identifier] = ACTIONS(941), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2626), - [anon_sym_RBRACE] = ACTIONS(2477), - [anon_sym_SEMI] = ACTIONS(2477), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_RPAREN] = ACTIONS(2477), - [anon_sym_COMMA] = ACTIONS(2477), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_RBRACK] = ACTIONS(2477), - [anon_sym_COLON] = ACTIONS(2477), - [anon_sym_PLUS] = ACTIONS(2477), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2477), - [anon_sym_SLASH] = ACTIONS(2477), - [anon_sym_PERCENT] = ACTIONS(2477), - [anon_sym_EQ_EQ] = ACTIONS(2477), - [anon_sym_BANG_EQ] = ACTIONS(2477), - [anon_sym_AMP_AMP] = ACTIONS(2477), - [anon_sym_PIPE_PIPE] = ACTIONS(2477), - [anon_sym_GT] = ACTIONS(2479), - [anon_sym_LT] = ACTIONS(2479), - [anon_sym_GT_EQ] = ACTIONS(2477), - [anon_sym_LT_EQ] = ACTIONS(2477), - [anon_sym_if] = ACTIONS(2479), - [anon_sym_elseif] = ACTIONS(2477), - [anon_sym_else] = ACTIONS(2479), - [anon_sym_match] = ACTIONS(2479), - [anon_sym_EQ_GT] = ACTIONS(631), - [anon_sym_while] = ACTIONS(2479), - [anon_sym_for] = ACTIONS(2479), - [anon_sym_asyncfor] = ACTIONS(2477), - [anon_sym_transform] = ACTIONS(2479), - [anon_sym_filter] = ACTIONS(2479), - [anon_sym_find] = ACTIONS(2479), - [anon_sym_remove] = ACTIONS(2479), - [anon_sym_reduce] = ACTIONS(2479), - [anon_sym_select] = ACTIONS(2479), - [anon_sym_insert] = ACTIONS(2479), - [anon_sym_async] = ACTIONS(2479), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(655), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_assert_equal] = ACTIONS(657), - [anon_sym_download] = ACTIONS(657), - [anon_sym_help] = ACTIONS(657), - [anon_sym_length] = ACTIONS(657), - [anon_sym_output] = ACTIONS(657), - [anon_sym_output_error] = ACTIONS(657), - [anon_sym_type] = ACTIONS(657), - [anon_sym_append] = ACTIONS(657), - [anon_sym_metadata] = ACTIONS(657), - [anon_sym_move] = ACTIONS(657), - [anon_sym_read] = ACTIONS(657), - [anon_sym_workdir] = ACTIONS(657), - [anon_sym_write] = ACTIONS(657), - [anon_sym_from_json] = ACTIONS(657), - [anon_sym_to_json] = ACTIONS(657), - [anon_sym_to_string] = ACTIONS(657), - [anon_sym_to_float] = ACTIONS(657), - [anon_sym_bash] = ACTIONS(657), - [anon_sym_fish] = ACTIONS(657), - [anon_sym_raw] = ACTIONS(657), - [anon_sym_sh] = ACTIONS(657), - [anon_sym_zsh] = ACTIONS(657), - [anon_sym_random] = ACTIONS(657), - [anon_sym_random_boolean] = ACTIONS(657), - [anon_sym_random_float] = ACTIONS(657), - [anon_sym_random_integer] = ACTIONS(657), - [anon_sym_columns] = ACTIONS(657), - [anon_sym_rows] = ACTIONS(657), - [anon_sym_reverse] = ACTIONS(657), + [anon_sym_LBRACE] = ACTIONS(1893), + [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(449), + [anon_sym_match] = ACTIONS(943), + [anon_sym_EQ_GT] = ACTIONS(265), + [anon_sym_while] = ACTIONS(945), + [anon_sym_for] = ACTIONS(947), + [anon_sym_asyncfor] = ACTIONS(949), + [anon_sym_transform] = ACTIONS(951), + [anon_sym_filter] = ACTIONS(953), + [anon_sym_find] = ACTIONS(955), + [anon_sym_remove] = ACTIONS(957), + [anon_sym_reduce] = ACTIONS(959), + [anon_sym_select] = ACTIONS(961), + [anon_sym_insert] = ACTIONS(285), + [anon_sym_async] = ACTIONS(963), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(289), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_assert_equal] = ACTIONS(291), + [anon_sym_download] = ACTIONS(291), + [anon_sym_help] = ACTIONS(291), + [anon_sym_length] = ACTIONS(291), + [anon_sym_output] = ACTIONS(291), + [anon_sym_output_error] = ACTIONS(291), + [anon_sym_type] = ACTIONS(291), + [anon_sym_append] = ACTIONS(291), + [anon_sym_metadata] = ACTIONS(291), + [anon_sym_move] = ACTIONS(291), + [anon_sym_read] = ACTIONS(291), + [anon_sym_workdir] = ACTIONS(291), + [anon_sym_write] = ACTIONS(291), + [anon_sym_from_json] = ACTIONS(291), + [anon_sym_to_json] = ACTIONS(291), + [anon_sym_to_string] = ACTIONS(291), + [anon_sym_to_float] = ACTIONS(291), + [anon_sym_bash] = ACTIONS(291), + [anon_sym_fish] = ACTIONS(291), + [anon_sym_raw] = ACTIONS(291), + [anon_sym_sh] = ACTIONS(291), + [anon_sym_zsh] = ACTIONS(291), + [anon_sym_random] = ACTIONS(291), + [anon_sym_random_boolean] = ACTIONS(291), + [anon_sym_random_float] = ACTIONS(291), + [anon_sym_random_integer] = ACTIONS(291), + [anon_sym_columns] = ACTIONS(291), + [anon_sym_rows] = ACTIONS(291), + [anon_sym_reverse] = ACTIONS(291), }, [317] = { - [sym_expression] = STATE(744), - [sym__expression_kind] = STATE(759), - [aux_sym__expression_list] = STATE(317), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(759), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_identifier_list] = STATE(1841), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(315), - [ts_builtin_sym_end] = ACTIONS(2518), - [sym_identifier] = ACTIONS(2594), + [sym_block] = STATE(928), + [sym_statement] = STATE(159), + [sym_expression] = STATE(516), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(433), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [aux_sym_block_repeat1] = STATE(159), + [sym_identifier] = ACTIONS(867), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2597), - [anon_sym_RBRACE] = ACTIONS(2518), - [anon_sym_SEMI] = ACTIONS(2518), - [anon_sym_LPAREN] = ACTIONS(2600), - [anon_sym_RPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2518), - [sym_integer] = ACTIONS(2603), - [sym_float] = ACTIONS(2606), - [sym_string] = ACTIONS(2606), - [anon_sym_true] = ACTIONS(2609), - [anon_sym_false] = ACTIONS(2609), - [anon_sym_LBRACK] = ACTIONS(2612), - [anon_sym_RBRACK] = ACTIONS(2518), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2541), - [anon_sym_STAR] = ACTIONS(2518), - [anon_sym_SLASH] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_EQ_EQ] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_GT] = ACTIONS(2541), - [anon_sym_LT] = ACTIONS(2541), - [anon_sym_GT_EQ] = ACTIONS(2518), - [anon_sym_LT_EQ] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2541), - [anon_sym_elseif] = ACTIONS(2518), - [anon_sym_else] = ACTIONS(2541), - [anon_sym_match] = ACTIONS(2541), - [anon_sym_EQ_GT] = ACTIONS(2637), - [anon_sym_while] = ACTIONS(2541), - [anon_sym_for] = ACTIONS(2541), - [anon_sym_asyncfor] = ACTIONS(2518), - [anon_sym_transform] = ACTIONS(2541), - [anon_sym_filter] = ACTIONS(2541), - [anon_sym_find] = ACTIONS(2541), - [anon_sym_remove] = ACTIONS(2541), - [anon_sym_reduce] = ACTIONS(2541), - [anon_sym_select] = ACTIONS(2541), - [anon_sym_insert] = ACTIONS(2541), - [anon_sym_async] = ACTIONS(2541), - [anon_sym_PIPE] = ACTIONS(2546), - [anon_sym_table] = ACTIONS(2640), - [anon_sym_assert] = ACTIONS(2643), - [anon_sym_assert_equal] = ACTIONS(2643), - [anon_sym_download] = ACTIONS(2643), - [anon_sym_help] = ACTIONS(2643), - [anon_sym_length] = ACTIONS(2643), - [anon_sym_output] = ACTIONS(2643), - [anon_sym_output_error] = ACTIONS(2643), - [anon_sym_type] = ACTIONS(2643), - [anon_sym_append] = ACTIONS(2643), - [anon_sym_metadata] = ACTIONS(2643), - [anon_sym_move] = ACTIONS(2643), - [anon_sym_read] = ACTIONS(2643), - [anon_sym_workdir] = ACTIONS(2643), - [anon_sym_write] = ACTIONS(2643), - [anon_sym_from_json] = ACTIONS(2643), - [anon_sym_to_json] = ACTIONS(2643), - [anon_sym_to_string] = ACTIONS(2643), - [anon_sym_to_float] = ACTIONS(2643), - [anon_sym_bash] = ACTIONS(2643), - [anon_sym_fish] = ACTIONS(2643), - [anon_sym_raw] = ACTIONS(2643), - [anon_sym_sh] = ACTIONS(2643), - [anon_sym_zsh] = ACTIONS(2643), - [anon_sym_random] = ACTIONS(2643), - [anon_sym_random_boolean] = ACTIONS(2643), - [anon_sym_random_float] = ACTIONS(2643), - [anon_sym_random_integer] = ACTIONS(2643), - [anon_sym_columns] = ACTIONS(2643), - [anon_sym_rows] = ACTIONS(2643), - [anon_sym_reverse] = ACTIONS(2643), + [anon_sym_LBRACE] = ACTIONS(1013), + [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(227), + [anon_sym_match] = ACTIONS(871), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(873), + [anon_sym_for] = ACTIONS(875), + [anon_sym_asyncfor] = ACTIONS(877), + [anon_sym_transform] = ACTIONS(879), + [anon_sym_filter] = ACTIONS(881), + [anon_sym_find] = ACTIONS(883), + [anon_sym_remove] = ACTIONS(885), + [anon_sym_reduce] = ACTIONS(887), + [anon_sym_select] = ACTIONS(889), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(891), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [318] = { - [sym_expression] = STATE(1590), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_logic] = STATE(1539), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(322), - [ts_builtin_sym_end] = ACTIONS(2449), - [sym_identifier] = ACTIONS(2451), + [sym_block] = STATE(400), + [sym_statement] = STATE(8), + [sym_expression] = STATE(355), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(346), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1225), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(170), + [aux_sym_block_repeat1] = STATE(8), + [sym_identifier] = ACTIONS(55), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_RBRACE] = ACTIONS(2449), - [anon_sym_SEMI] = ACTIONS(2449), - [anon_sym_LPAREN] = ACTIONS(2455), - [anon_sym_RPAREN] = ACTIONS(2449), - [sym_integer] = ACTIONS(2457), - [sym_float] = ACTIONS(2459), - [sym_string] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(2461), - [anon_sym_false] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_EQ] = ACTIONS(2465), - [anon_sym_COLON] = ACTIONS(2449), - [anon_sym_DOT_DOT] = ACTIONS(2449), - [anon_sym_PLUS] = ACTIONS(2465), - [anon_sym_DASH] = ACTIONS(2465), - [anon_sym_STAR] = ACTIONS(2449), - [anon_sym_SLASH] = ACTIONS(2449), - [anon_sym_PERCENT] = ACTIONS(2449), - [anon_sym_EQ_EQ] = ACTIONS(2449), - [anon_sym_BANG_EQ] = ACTIONS(2449), - [anon_sym_AMP_AMP] = ACTIONS(2449), - [anon_sym_PIPE_PIPE] = ACTIONS(2449), - [anon_sym_GT] = ACTIONS(2465), - [anon_sym_LT] = ACTIONS(2465), - [anon_sym_GT_EQ] = ACTIONS(2449), - [anon_sym_LT_EQ] = ACTIONS(2449), - [anon_sym_PLUS_EQ] = ACTIONS(2449), - [anon_sym_DASH_EQ] = ACTIONS(2449), - [anon_sym_if] = ACTIONS(2465), - [anon_sym_match] = ACTIONS(2465), - [anon_sym_EQ_GT] = ACTIONS(2467), - [anon_sym_while] = ACTIONS(2465), - [anon_sym_for] = ACTIONS(2465), - [anon_sym_asyncfor] = ACTIONS(2449), - [anon_sym_transform] = ACTIONS(2465), - [anon_sym_filter] = ACTIONS(2465), - [anon_sym_find] = ACTIONS(2465), - [anon_sym_remove] = ACTIONS(2465), - [anon_sym_reduce] = ACTIONS(2465), - [anon_sym_select] = ACTIONS(2465), - [anon_sym_insert] = ACTIONS(2465), - [anon_sym_async] = ACTIONS(2465), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(2469), - [anon_sym_assert] = ACTIONS(2471), - [anon_sym_assert_equal] = ACTIONS(2471), - [anon_sym_download] = ACTIONS(2471), - [anon_sym_help] = ACTIONS(2471), - [anon_sym_length] = ACTIONS(2471), - [anon_sym_output] = ACTIONS(2471), - [anon_sym_output_error] = ACTIONS(2471), - [anon_sym_type] = ACTIONS(2471), - [anon_sym_append] = ACTIONS(2471), - [anon_sym_metadata] = ACTIONS(2471), - [anon_sym_move] = ACTIONS(2471), - [anon_sym_read] = ACTIONS(2471), - [anon_sym_workdir] = ACTIONS(2471), - [anon_sym_write] = ACTIONS(2471), - [anon_sym_from_json] = ACTIONS(2471), - [anon_sym_to_json] = ACTIONS(2471), - [anon_sym_to_string] = ACTIONS(2471), - [anon_sym_to_float] = ACTIONS(2471), - [anon_sym_bash] = ACTIONS(2471), - [anon_sym_fish] = ACTIONS(2471), - [anon_sym_raw] = ACTIONS(2471), - [anon_sym_sh] = ACTIONS(2471), - [anon_sym_zsh] = ACTIONS(2471), - [anon_sym_random] = ACTIONS(2471), - [anon_sym_random_boolean] = ACTIONS(2471), - [anon_sym_random_float] = ACTIONS(2471), - [anon_sym_random_integer] = ACTIONS(2471), - [anon_sym_columns] = ACTIONS(2471), - [anon_sym_rows] = ACTIONS(2471), - [anon_sym_reverse] = ACTIONS(2471), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = 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_asyncfor] = ACTIONS(91), + [anon_sym_transform] = ACTIONS(93), + [anon_sym_filter] = ACTIONS(95), + [anon_sym_find] = ACTIONS(97), + [anon_sym_remove] = ACTIONS(99), + [anon_sym_reduce] = ACTIONS(101), + [anon_sym_select] = ACTIONS(103), + [anon_sym_insert] = ACTIONS(105), + [anon_sym_async] = ACTIONS(107), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(111), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_assert_equal] = ACTIONS(113), + [anon_sym_download] = ACTIONS(113), + [anon_sym_help] = ACTIONS(113), + [anon_sym_length] = ACTIONS(113), + [anon_sym_output] = ACTIONS(113), + [anon_sym_output_error] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_append] = ACTIONS(113), + [anon_sym_metadata] = ACTIONS(113), + [anon_sym_move] = ACTIONS(113), + [anon_sym_read] = ACTIONS(113), + [anon_sym_workdir] = ACTIONS(113), + [anon_sym_write] = ACTIONS(113), + [anon_sym_from_json] = ACTIONS(113), + [anon_sym_to_json] = ACTIONS(113), + [anon_sym_to_string] = ACTIONS(113), + [anon_sym_to_float] = ACTIONS(113), + [anon_sym_bash] = ACTIONS(113), + [anon_sym_fish] = ACTIONS(113), + [anon_sym_raw] = ACTIONS(113), + [anon_sym_sh] = ACTIONS(113), + [anon_sym_zsh] = ACTIONS(113), + [anon_sym_random] = ACTIONS(113), + [anon_sym_random_boolean] = ACTIONS(113), + [anon_sym_random_float] = ACTIONS(113), + [anon_sym_random_integer] = ACTIONS(113), + [anon_sym_columns] = ACTIONS(113), + [anon_sym_rows] = ACTIONS(113), + [anon_sym_reverse] = ACTIONS(113), }, [319] = { - [sym_expression] = STATE(1577), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_logic] = STATE(1539), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(319), - [ts_builtin_sym_end] = ACTIONS(2481), - [sym_identifier] = ACTIONS(2483), + [sym_block] = STATE(464), + [sym_statement] = STATE(28), + [sym_expression] = STATE(479), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(365), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1119), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(218), + [aux_sym_block_repeat1] = STATE(28), + [sym_identifier] = ACTIONS(524), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2486), - [anon_sym_RBRACE] = ACTIONS(2481), - [anon_sym_SEMI] = ACTIONS(2481), - [anon_sym_LPAREN] = ACTIONS(2489), - [anon_sym_RPAREN] = ACTIONS(2481), - [anon_sym_COMMA] = ACTIONS(2481), - [sym_integer] = ACTIONS(2492), - [sym_float] = ACTIONS(2495), - [sym_string] = ACTIONS(2495), - [anon_sym_true] = ACTIONS(2498), - [anon_sym_false] = ACTIONS(2498), - [anon_sym_LBRACK] = ACTIONS(2501), - [anon_sym_RBRACK] = ACTIONS(2481), - [anon_sym_COLON] = ACTIONS(2481), - [anon_sym_PLUS] = ACTIONS(2481), - [anon_sym_DASH] = ACTIONS(2504), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_SLASH] = ACTIONS(2481), - [anon_sym_PERCENT] = ACTIONS(2481), - [anon_sym_EQ_EQ] = ACTIONS(2481), - [anon_sym_BANG_EQ] = ACTIONS(2481), - [anon_sym_AMP_AMP] = ACTIONS(2481), - [anon_sym_PIPE_PIPE] = ACTIONS(2481), - [anon_sym_GT] = ACTIONS(2504), - [anon_sym_LT] = ACTIONS(2504), - [anon_sym_GT_EQ] = ACTIONS(2481), - [anon_sym_LT_EQ] = ACTIONS(2481), - [anon_sym_if] = ACTIONS(2504), - [anon_sym_elseif] = ACTIONS(2481), - [anon_sym_else] = ACTIONS(2504), - [anon_sym_match] = ACTIONS(2504), - [anon_sym_EQ_GT] = ACTIONS(2506), - [anon_sym_while] = ACTIONS(2504), - [anon_sym_for] = ACTIONS(2504), - [anon_sym_asyncfor] = ACTIONS(2481), - [anon_sym_transform] = ACTIONS(2504), - [anon_sym_filter] = ACTIONS(2504), - [anon_sym_find] = ACTIONS(2504), - [anon_sym_remove] = ACTIONS(2504), - [anon_sym_reduce] = ACTIONS(2504), - [anon_sym_select] = ACTIONS(2504), - [anon_sym_insert] = ACTIONS(2504), - [anon_sym_async] = ACTIONS(2504), - [anon_sym_PIPE] = ACTIONS(2509), - [anon_sym_table] = ACTIONS(2512), - [anon_sym_assert] = ACTIONS(2515), - [anon_sym_assert_equal] = ACTIONS(2515), - [anon_sym_download] = ACTIONS(2515), - [anon_sym_help] = ACTIONS(2515), - [anon_sym_length] = ACTIONS(2515), - [anon_sym_output] = ACTIONS(2515), - [anon_sym_output_error] = ACTIONS(2515), - [anon_sym_type] = ACTIONS(2515), - [anon_sym_append] = ACTIONS(2515), - [anon_sym_metadata] = ACTIONS(2515), - [anon_sym_move] = ACTIONS(2515), - [anon_sym_read] = ACTIONS(2515), - [anon_sym_workdir] = ACTIONS(2515), - [anon_sym_write] = ACTIONS(2515), - [anon_sym_from_json] = ACTIONS(2515), - [anon_sym_to_json] = ACTIONS(2515), - [anon_sym_to_string] = ACTIONS(2515), - [anon_sym_to_float] = ACTIONS(2515), - [anon_sym_bash] = ACTIONS(2515), - [anon_sym_fish] = ACTIONS(2515), - [anon_sym_raw] = ACTIONS(2515), - [anon_sym_sh] = ACTIONS(2515), - [anon_sym_zsh] = ACTIONS(2515), - [anon_sym_random] = ACTIONS(2515), - [anon_sym_random_boolean] = ACTIONS(2515), - [anon_sym_random_float] = ACTIONS(2515), - [anon_sym_random_integer] = ACTIONS(2515), - [anon_sym_columns] = ACTIONS(2515), - [anon_sym_rows] = ACTIONS(2515), - [anon_sym_reverse] = ACTIONS(2515), + [anon_sym_LBRACE] = ACTIONS(189), + [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(155), + [anon_sym_match] = ACTIONS(528), + [anon_sym_EQ_GT] = ACTIONS(530), + [anon_sym_while] = ACTIONS(532), + [anon_sym_for] = ACTIONS(534), + [anon_sym_asyncfor] = ACTIONS(536), + [anon_sym_transform] = ACTIONS(538), + [anon_sym_filter] = ACTIONS(540), + [anon_sym_find] = ACTIONS(542), + [anon_sym_remove] = ACTIONS(544), + [anon_sym_reduce] = ACTIONS(546), + [anon_sym_select] = ACTIONS(548), + [anon_sym_insert] = ACTIONS(550), + [anon_sym_async] = ACTIONS(552), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(554), + [anon_sym_assert] = ACTIONS(556), + [anon_sym_assert_equal] = ACTIONS(556), + [anon_sym_download] = ACTIONS(556), + [anon_sym_help] = ACTIONS(556), + [anon_sym_length] = ACTIONS(556), + [anon_sym_output] = ACTIONS(556), + [anon_sym_output_error] = ACTIONS(556), + [anon_sym_type] = ACTIONS(556), + [anon_sym_append] = ACTIONS(556), + [anon_sym_metadata] = ACTIONS(556), + [anon_sym_move] = ACTIONS(556), + [anon_sym_read] = ACTIONS(556), + [anon_sym_workdir] = ACTIONS(556), + [anon_sym_write] = ACTIONS(556), + [anon_sym_from_json] = ACTIONS(556), + [anon_sym_to_json] = ACTIONS(556), + [anon_sym_to_string] = ACTIONS(556), + [anon_sym_to_float] = ACTIONS(556), + [anon_sym_bash] = ACTIONS(556), + [anon_sym_fish] = ACTIONS(556), + [anon_sym_raw] = ACTIONS(556), + [anon_sym_sh] = ACTIONS(556), + [anon_sym_zsh] = ACTIONS(556), + [anon_sym_random] = ACTIONS(556), + [anon_sym_random_boolean] = ACTIONS(556), + [anon_sym_random_float] = ACTIONS(556), + [anon_sym_random_integer] = ACTIONS(556), + [anon_sym_columns] = ACTIONS(556), + [anon_sym_rows] = ACTIONS(556), + [anon_sym_reverse] = ACTIONS(556), }, [320] = { - [sym_expression] = STATE(680), - [sym__expression_kind] = STATE(706), - [aux_sym__expression_list] = STATE(323), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_logic] = STATE(706), - [sym_identifier_list] = STATE(1910), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(284), - [ts_builtin_sym_end] = ACTIONS(2473), - [sym_identifier] = ACTIONS(149), + [sym_block] = STATE(606), + [sym_statement] = STATE(212), + [sym_expression] = STATE(460), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_assignment] = STATE(598), + [sym_if_else] = STATE(598), + [sym_if] = STATE(564), + [sym_match] = STATE(598), + [sym_while] = STATE(598), + [sym_for] = STATE(598), + [sym_transform] = STATE(598), + [sym_filter] = STATE(598), + [sym_find] = STATE(598), + [sym_remove] = STATE(598), + [sym_reduce] = STATE(598), + [sym_select] = STATE(598), + [sym_insert] = STATE(598), + [sym_async] = STATE(598), + [sym_identifier_list] = STATE(1100), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(181), + [aux_sym_block_repeat1] = STATE(212), + [sym_identifier] = ACTIONS(445), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1923), - [anon_sym_RBRACE] = ACTIONS(2473), - [anon_sym_SEMI] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_RPAREN] = ACTIONS(2473), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_EQ] = ACTIONS(2475), - [anon_sym_COLON] = ACTIONS(2473), - [anon_sym_DOT_DOT] = ACTIONS(2473), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2473), - [anon_sym_SLASH] = ACTIONS(2473), - [anon_sym_PERCENT] = ACTIONS(2473), - [anon_sym_EQ_EQ] = ACTIONS(2473), - [anon_sym_BANG_EQ] = ACTIONS(2473), - [anon_sym_AMP_AMP] = ACTIONS(2473), - [anon_sym_PIPE_PIPE] = ACTIONS(2473), - [anon_sym_GT] = ACTIONS(2475), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_GT_EQ] = ACTIONS(2473), - [anon_sym_LT_EQ] = ACTIONS(2473), - [anon_sym_PLUS_EQ] = ACTIONS(2473), - [anon_sym_DASH_EQ] = ACTIONS(2473), - [anon_sym_if] = ACTIONS(2475), - [anon_sym_match] = ACTIONS(2475), - [anon_sym_EQ_GT] = ACTIONS(167), - [anon_sym_while] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2475), - [anon_sym_asyncfor] = ACTIONS(2473), - [anon_sym_transform] = ACTIONS(2475), - [anon_sym_filter] = ACTIONS(2475), - [anon_sym_find] = ACTIONS(2475), - [anon_sym_remove] = ACTIONS(2475), - [anon_sym_reduce] = ACTIONS(2475), - [anon_sym_select] = ACTIONS(2475), - [anon_sym_insert] = ACTIONS(2475), - [anon_sym_async] = ACTIONS(2475), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(191), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_assert_equal] = ACTIONS(193), - [anon_sym_download] = ACTIONS(193), - [anon_sym_help] = ACTIONS(193), - [anon_sym_length] = ACTIONS(193), - [anon_sym_output] = ACTIONS(193), - [anon_sym_output_error] = ACTIONS(193), - [anon_sym_type] = ACTIONS(193), - [anon_sym_append] = ACTIONS(193), - [anon_sym_metadata] = ACTIONS(193), - [anon_sym_move] = ACTIONS(193), - [anon_sym_read] = ACTIONS(193), - [anon_sym_workdir] = ACTIONS(193), - [anon_sym_write] = ACTIONS(193), - [anon_sym_from_json] = ACTIONS(193), - [anon_sym_to_json] = ACTIONS(193), - [anon_sym_to_string] = ACTIONS(193), - [anon_sym_to_float] = ACTIONS(193), - [anon_sym_bash] = ACTIONS(193), - [anon_sym_fish] = ACTIONS(193), - [anon_sym_raw] = ACTIONS(193), - [anon_sym_sh] = ACTIONS(193), - [anon_sym_zsh] = ACTIONS(193), - [anon_sym_random] = ACTIONS(193), - [anon_sym_random_boolean] = ACTIONS(193), - [anon_sym_random_float] = ACTIONS(193), - [anon_sym_random_integer] = ACTIONS(193), - [anon_sym_columns] = ACTIONS(193), - [anon_sym_rows] = ACTIONS(193), - [anon_sym_reverse] = ACTIONS(193), + [anon_sym_LBRACE] = ACTIONS(447), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_if] = ACTIONS(449), + [anon_sym_match] = ACTIONS(451), + [anon_sym_EQ_GT] = ACTIONS(123), + [anon_sym_while] = ACTIONS(453), + [anon_sym_for] = ACTIONS(455), + [anon_sym_asyncfor] = ACTIONS(457), + [anon_sym_transform] = ACTIONS(459), + [anon_sym_filter] = ACTIONS(461), + [anon_sym_find] = ACTIONS(463), + [anon_sym_remove] = ACTIONS(465), + [anon_sym_reduce] = ACTIONS(467), + [anon_sym_select] = ACTIONS(469), + [anon_sym_insert] = ACTIONS(143), + [anon_sym_async] = ACTIONS(471), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(147), + [anon_sym_assert] = ACTIONS(149), + [anon_sym_assert_equal] = ACTIONS(149), + [anon_sym_download] = ACTIONS(149), + [anon_sym_help] = ACTIONS(149), + [anon_sym_length] = ACTIONS(149), + [anon_sym_output] = ACTIONS(149), + [anon_sym_output_error] = ACTIONS(149), + [anon_sym_type] = ACTIONS(149), + [anon_sym_append] = ACTIONS(149), + [anon_sym_metadata] = ACTIONS(149), + [anon_sym_move] = ACTIONS(149), + [anon_sym_read] = ACTIONS(149), + [anon_sym_workdir] = ACTIONS(149), + [anon_sym_write] = ACTIONS(149), + [anon_sym_from_json] = ACTIONS(149), + [anon_sym_to_json] = ACTIONS(149), + [anon_sym_to_string] = ACTIONS(149), + [anon_sym_to_float] = ACTIONS(149), + [anon_sym_bash] = ACTIONS(149), + [anon_sym_fish] = ACTIONS(149), + [anon_sym_raw] = ACTIONS(149), + [anon_sym_sh] = ACTIONS(149), + [anon_sym_zsh] = ACTIONS(149), + [anon_sym_random] = ACTIONS(149), + [anon_sym_random_boolean] = ACTIONS(149), + [anon_sym_random_float] = ACTIONS(149), + [anon_sym_random_integer] = ACTIONS(149), + [anon_sym_columns] = ACTIONS(149), + [anon_sym_rows] = ACTIONS(149), + [anon_sym_reverse] = ACTIONS(149), }, [321] = { - [sym_expression] = STATE(680), - [sym__expression_kind] = STATE(706), - [aux_sym__expression_list] = STATE(324), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_logic] = STATE(706), - [sym_identifier_list] = STATE(1910), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(284), - [ts_builtin_sym_end] = ACTIONS(2477), - [sym_identifier] = ACTIONS(149), + [sym_block] = STATE(606), + [sym_statement] = STATE(199), + [sym_expression] = STATE(473), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_assignment] = STATE(598), + [sym_if_else] = STATE(598), + [sym_if] = STATE(565), + [sym_match] = STATE(598), + [sym_while] = STATE(598), + [sym_for] = STATE(598), + [sym_transform] = STATE(598), + [sym_filter] = STATE(598), + [sym_find] = STATE(598), + [sym_remove] = STATE(598), + [sym_reduce] = STATE(598), + [sym_select] = STATE(598), + [sym_insert] = STATE(598), + [sym_async] = STATE(598), + [sym_identifier_list] = STATE(1085), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(203), + [aux_sym_block_repeat1] = STATE(199), + [sym_identifier] = ACTIONS(609), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1923), - [anon_sym_RBRACE] = ACTIONS(2477), - [anon_sym_SEMI] = ACTIONS(2477), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_RPAREN] = ACTIONS(2477), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_EQ] = ACTIONS(2479), - [anon_sym_COLON] = ACTIONS(2477), - [anon_sym_DOT_DOT] = ACTIONS(2477), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2477), - [anon_sym_SLASH] = ACTIONS(2477), - [anon_sym_PERCENT] = ACTIONS(2477), - [anon_sym_EQ_EQ] = ACTIONS(2477), - [anon_sym_BANG_EQ] = ACTIONS(2477), - [anon_sym_AMP_AMP] = ACTIONS(2477), - [anon_sym_PIPE_PIPE] = ACTIONS(2477), - [anon_sym_GT] = ACTIONS(2479), - [anon_sym_LT] = ACTIONS(2479), - [anon_sym_GT_EQ] = ACTIONS(2477), - [anon_sym_LT_EQ] = ACTIONS(2477), - [anon_sym_PLUS_EQ] = ACTIONS(2477), - [anon_sym_DASH_EQ] = ACTIONS(2477), - [anon_sym_if] = ACTIONS(2479), - [anon_sym_match] = ACTIONS(2479), - [anon_sym_EQ_GT] = ACTIONS(167), - [anon_sym_while] = ACTIONS(2479), - [anon_sym_for] = ACTIONS(2479), - [anon_sym_asyncfor] = ACTIONS(2477), - [anon_sym_transform] = ACTIONS(2479), - [anon_sym_filter] = ACTIONS(2479), - [anon_sym_find] = ACTIONS(2479), - [anon_sym_remove] = ACTIONS(2479), - [anon_sym_reduce] = ACTIONS(2479), - [anon_sym_select] = ACTIONS(2479), - [anon_sym_insert] = ACTIONS(2479), - [anon_sym_async] = ACTIONS(2479), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(191), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_assert_equal] = ACTIONS(193), - [anon_sym_download] = ACTIONS(193), - [anon_sym_help] = ACTIONS(193), - [anon_sym_length] = ACTIONS(193), - [anon_sym_output] = ACTIONS(193), - [anon_sym_output_error] = ACTIONS(193), - [anon_sym_type] = ACTIONS(193), - [anon_sym_append] = ACTIONS(193), - [anon_sym_metadata] = ACTIONS(193), - [anon_sym_move] = ACTIONS(193), - [anon_sym_read] = ACTIONS(193), - [anon_sym_workdir] = ACTIONS(193), - [anon_sym_write] = ACTIONS(193), - [anon_sym_from_json] = ACTIONS(193), - [anon_sym_to_json] = ACTIONS(193), - [anon_sym_to_string] = ACTIONS(193), - [anon_sym_to_float] = ACTIONS(193), - [anon_sym_bash] = ACTIONS(193), - [anon_sym_fish] = ACTIONS(193), - [anon_sym_raw] = ACTIONS(193), - [anon_sym_sh] = ACTIONS(193), - [anon_sym_zsh] = ACTIONS(193), - [anon_sym_random] = ACTIONS(193), - [anon_sym_random_boolean] = ACTIONS(193), - [anon_sym_random_float] = ACTIONS(193), - [anon_sym_random_integer] = ACTIONS(193), - [anon_sym_columns] = ACTIONS(193), - [anon_sym_rows] = ACTIONS(193), - [anon_sym_reverse] = ACTIONS(193), + [anon_sym_LBRACE] = ACTIONS(447), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_if] = ACTIONS(19), + [anon_sym_match] = ACTIONS(611), + [anon_sym_EQ_GT] = ACTIONS(231), + [anon_sym_while] = ACTIONS(613), + [anon_sym_for] = ACTIONS(615), + [anon_sym_asyncfor] = ACTIONS(617), + [anon_sym_transform] = ACTIONS(619), + [anon_sym_filter] = ACTIONS(621), + [anon_sym_find] = ACTIONS(623), + [anon_sym_remove] = ACTIONS(625), + [anon_sym_reduce] = ACTIONS(627), + [anon_sym_select] = ACTIONS(629), + [anon_sym_insert] = ACTIONS(251), + [anon_sym_async] = ACTIONS(631), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(255), + [anon_sym_assert] = ACTIONS(257), + [anon_sym_assert_equal] = ACTIONS(257), + [anon_sym_download] = ACTIONS(257), + [anon_sym_help] = ACTIONS(257), + [anon_sym_length] = ACTIONS(257), + [anon_sym_output] = ACTIONS(257), + [anon_sym_output_error] = ACTIONS(257), + [anon_sym_type] = ACTIONS(257), + [anon_sym_append] = ACTIONS(257), + [anon_sym_metadata] = ACTIONS(257), + [anon_sym_move] = ACTIONS(257), + [anon_sym_read] = ACTIONS(257), + [anon_sym_workdir] = ACTIONS(257), + [anon_sym_write] = ACTIONS(257), + [anon_sym_from_json] = ACTIONS(257), + [anon_sym_to_json] = ACTIONS(257), + [anon_sym_to_string] = ACTIONS(257), + [anon_sym_to_float] = ACTIONS(257), + [anon_sym_bash] = ACTIONS(257), + [anon_sym_fish] = ACTIONS(257), + [anon_sym_raw] = ACTIONS(257), + [anon_sym_sh] = ACTIONS(257), + [anon_sym_zsh] = ACTIONS(257), + [anon_sym_random] = ACTIONS(257), + [anon_sym_random_boolean] = ACTIONS(257), + [anon_sym_random_float] = ACTIONS(257), + [anon_sym_random_integer] = ACTIONS(257), + [anon_sym_columns] = ACTIONS(257), + [anon_sym_rows] = ACTIONS(257), + [anon_sym_reverse] = ACTIONS(257), }, [322] = { - [sym_expression] = STATE(1590), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_logic] = STATE(1539), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(322), - [ts_builtin_sym_end] = ACTIONS(2481), - [sym_identifier] = ACTIONS(2483), + [sym_block] = STATE(400), + [sym_statement] = STATE(26), + [sym_expression] = STATE(448), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(414), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1085), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(203), + [aux_sym_block_repeat1] = STATE(26), + [sym_identifier] = ACTIONS(223), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2486), - [anon_sym_RBRACE] = ACTIONS(2481), - [anon_sym_SEMI] = ACTIONS(2481), - [anon_sym_LPAREN] = ACTIONS(2489), - [anon_sym_RPAREN] = ACTIONS(2481), - [sym_integer] = ACTIONS(2492), - [sym_float] = ACTIONS(2495), - [sym_string] = ACTIONS(2495), - [anon_sym_true] = ACTIONS(2498), - [anon_sym_false] = ACTIONS(2498), - [anon_sym_LBRACK] = ACTIONS(2501), - [anon_sym_EQ] = ACTIONS(2504), - [anon_sym_COLON] = ACTIONS(2481), - [anon_sym_DOT_DOT] = ACTIONS(2481), - [anon_sym_PLUS] = ACTIONS(2504), - [anon_sym_DASH] = ACTIONS(2504), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_SLASH] = ACTIONS(2481), - [anon_sym_PERCENT] = ACTIONS(2481), - [anon_sym_EQ_EQ] = ACTIONS(2481), - [anon_sym_BANG_EQ] = ACTIONS(2481), - [anon_sym_AMP_AMP] = ACTIONS(2481), - [anon_sym_PIPE_PIPE] = ACTIONS(2481), - [anon_sym_GT] = ACTIONS(2504), - [anon_sym_LT] = ACTIONS(2504), - [anon_sym_GT_EQ] = ACTIONS(2481), - [anon_sym_LT_EQ] = ACTIONS(2481), - [anon_sym_PLUS_EQ] = ACTIONS(2481), - [anon_sym_DASH_EQ] = ACTIONS(2481), - [anon_sym_if] = ACTIONS(2504), - [anon_sym_match] = ACTIONS(2504), - [anon_sym_EQ_GT] = ACTIONS(2506), - [anon_sym_while] = ACTIONS(2504), - [anon_sym_for] = ACTIONS(2504), - [anon_sym_asyncfor] = ACTIONS(2481), - [anon_sym_transform] = ACTIONS(2504), - [anon_sym_filter] = ACTIONS(2504), - [anon_sym_find] = ACTIONS(2504), - [anon_sym_remove] = ACTIONS(2504), - [anon_sym_reduce] = ACTIONS(2504), - [anon_sym_select] = ACTIONS(2504), - [anon_sym_insert] = ACTIONS(2504), - [anon_sym_async] = ACTIONS(2504), - [anon_sym_PIPE] = ACTIONS(2509), - [anon_sym_table] = ACTIONS(2512), - [anon_sym_assert] = ACTIONS(2515), - [anon_sym_assert_equal] = ACTIONS(2515), - [anon_sym_download] = ACTIONS(2515), - [anon_sym_help] = ACTIONS(2515), - [anon_sym_length] = ACTIONS(2515), - [anon_sym_output] = ACTIONS(2515), - [anon_sym_output_error] = ACTIONS(2515), - [anon_sym_type] = ACTIONS(2515), - [anon_sym_append] = ACTIONS(2515), - [anon_sym_metadata] = ACTIONS(2515), - [anon_sym_move] = ACTIONS(2515), - [anon_sym_read] = ACTIONS(2515), - [anon_sym_workdir] = ACTIONS(2515), - [anon_sym_write] = ACTIONS(2515), - [anon_sym_from_json] = ACTIONS(2515), - [anon_sym_to_json] = ACTIONS(2515), - [anon_sym_to_string] = ACTIONS(2515), - [anon_sym_to_float] = ACTIONS(2515), - [anon_sym_bash] = ACTIONS(2515), - [anon_sym_fish] = ACTIONS(2515), - [anon_sym_raw] = ACTIONS(2515), - [anon_sym_sh] = ACTIONS(2515), - [anon_sym_zsh] = ACTIONS(2515), - [anon_sym_random] = ACTIONS(2515), - [anon_sym_random_boolean] = ACTIONS(2515), - [anon_sym_random_float] = ACTIONS(2515), - [anon_sym_random_integer] = ACTIONS(2515), - [anon_sym_columns] = ACTIONS(2515), - [anon_sym_rows] = ACTIONS(2515), - [anon_sym_reverse] = ACTIONS(2515), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_if] = ACTIONS(227), + [anon_sym_match] = ACTIONS(229), + [anon_sym_EQ_GT] = ACTIONS(231), + [anon_sym_while] = ACTIONS(233), + [anon_sym_for] = ACTIONS(235), + [anon_sym_asyncfor] = ACTIONS(237), + [anon_sym_transform] = ACTIONS(239), + [anon_sym_filter] = ACTIONS(241), + [anon_sym_find] = ACTIONS(243), + [anon_sym_remove] = ACTIONS(245), + [anon_sym_reduce] = ACTIONS(247), + [anon_sym_select] = ACTIONS(249), + [anon_sym_insert] = ACTIONS(251), + [anon_sym_async] = ACTIONS(253), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(255), + [anon_sym_assert] = ACTIONS(257), + [anon_sym_assert_equal] = ACTIONS(257), + [anon_sym_download] = ACTIONS(257), + [anon_sym_help] = ACTIONS(257), + [anon_sym_length] = ACTIONS(257), + [anon_sym_output] = ACTIONS(257), + [anon_sym_output_error] = ACTIONS(257), + [anon_sym_type] = ACTIONS(257), + [anon_sym_append] = ACTIONS(257), + [anon_sym_metadata] = ACTIONS(257), + [anon_sym_move] = ACTIONS(257), + [anon_sym_read] = ACTIONS(257), + [anon_sym_workdir] = ACTIONS(257), + [anon_sym_write] = ACTIONS(257), + [anon_sym_from_json] = ACTIONS(257), + [anon_sym_to_json] = ACTIONS(257), + [anon_sym_to_string] = ACTIONS(257), + [anon_sym_to_float] = ACTIONS(257), + [anon_sym_bash] = ACTIONS(257), + [anon_sym_fish] = ACTIONS(257), + [anon_sym_raw] = ACTIONS(257), + [anon_sym_sh] = ACTIONS(257), + [anon_sym_zsh] = ACTIONS(257), + [anon_sym_random] = ACTIONS(257), + [anon_sym_random_boolean] = ACTIONS(257), + [anon_sym_random_float] = ACTIONS(257), + [anon_sym_random_integer] = ACTIONS(257), + [anon_sym_columns] = ACTIONS(257), + [anon_sym_rows] = ACTIONS(257), + [anon_sym_reverse] = ACTIONS(257), }, [323] = { - [sym_expression] = STATE(680), - [sym__expression_kind] = STATE(706), - [aux_sym__expression_list] = STATE(324), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_logic] = STATE(706), - [sym_identifier_list] = STATE(1910), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(284), - [ts_builtin_sym_end] = ACTIONS(2443), - [sym_identifier] = ACTIONS(149), + [sym_block] = STATE(478), + [sym_statement] = STATE(28), + [sym_expression] = STATE(479), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(365), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1119), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(218), + [aux_sym_block_repeat1] = STATE(28), + [sym_identifier] = ACTIONS(524), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1923), - [anon_sym_RBRACE] = ACTIONS(2443), - [anon_sym_SEMI] = ACTIONS(2443), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_RPAREN] = ACTIONS(2443), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_EQ] = ACTIONS(2447), - [anon_sym_COLON] = ACTIONS(2443), - [anon_sym_DOT_DOT] = ACTIONS(2443), - [anon_sym_PLUS] = ACTIONS(2447), - [anon_sym_DASH] = ACTIONS(2447), - [anon_sym_STAR] = ACTIONS(2443), - [anon_sym_SLASH] = ACTIONS(2443), - [anon_sym_PERCENT] = ACTIONS(2443), - [anon_sym_EQ_EQ] = ACTIONS(2443), - [anon_sym_BANG_EQ] = ACTIONS(2443), - [anon_sym_AMP_AMP] = ACTIONS(2443), - [anon_sym_PIPE_PIPE] = ACTIONS(2443), - [anon_sym_GT] = ACTIONS(2447), - [anon_sym_LT] = ACTIONS(2447), - [anon_sym_GT_EQ] = ACTIONS(2443), - [anon_sym_LT_EQ] = ACTIONS(2443), - [anon_sym_PLUS_EQ] = ACTIONS(2443), - [anon_sym_DASH_EQ] = ACTIONS(2443), - [anon_sym_if] = ACTIONS(2447), - [anon_sym_match] = ACTIONS(2447), - [anon_sym_EQ_GT] = ACTIONS(167), - [anon_sym_while] = ACTIONS(2447), - [anon_sym_for] = ACTIONS(2447), - [anon_sym_asyncfor] = ACTIONS(2443), - [anon_sym_transform] = ACTIONS(2447), - [anon_sym_filter] = ACTIONS(2447), - [anon_sym_find] = ACTIONS(2447), - [anon_sym_remove] = ACTIONS(2447), - [anon_sym_reduce] = ACTIONS(2447), - [anon_sym_select] = ACTIONS(2447), - [anon_sym_insert] = ACTIONS(2447), - [anon_sym_async] = ACTIONS(2447), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(191), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_assert_equal] = ACTIONS(193), - [anon_sym_download] = ACTIONS(193), - [anon_sym_help] = ACTIONS(193), - [anon_sym_length] = ACTIONS(193), - [anon_sym_output] = ACTIONS(193), - [anon_sym_output_error] = ACTIONS(193), - [anon_sym_type] = ACTIONS(193), - [anon_sym_append] = ACTIONS(193), - [anon_sym_metadata] = ACTIONS(193), - [anon_sym_move] = ACTIONS(193), - [anon_sym_read] = ACTIONS(193), - [anon_sym_workdir] = ACTIONS(193), - [anon_sym_write] = ACTIONS(193), - [anon_sym_from_json] = ACTIONS(193), - [anon_sym_to_json] = ACTIONS(193), - [anon_sym_to_string] = ACTIONS(193), - [anon_sym_to_float] = ACTIONS(193), - [anon_sym_bash] = ACTIONS(193), - [anon_sym_fish] = ACTIONS(193), - [anon_sym_raw] = ACTIONS(193), - [anon_sym_sh] = ACTIONS(193), - [anon_sym_zsh] = ACTIONS(193), - [anon_sym_random] = ACTIONS(193), - [anon_sym_random_boolean] = ACTIONS(193), - [anon_sym_random_float] = ACTIONS(193), - [anon_sym_random_integer] = ACTIONS(193), - [anon_sym_columns] = ACTIONS(193), - [anon_sym_rows] = ACTIONS(193), - [anon_sym_reverse] = ACTIONS(193), + [anon_sym_LBRACE] = ACTIONS(189), + [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(155), + [anon_sym_match] = ACTIONS(528), + [anon_sym_EQ_GT] = ACTIONS(530), + [anon_sym_while] = ACTIONS(532), + [anon_sym_for] = ACTIONS(534), + [anon_sym_asyncfor] = ACTIONS(536), + [anon_sym_transform] = ACTIONS(538), + [anon_sym_filter] = ACTIONS(540), + [anon_sym_find] = ACTIONS(542), + [anon_sym_remove] = ACTIONS(544), + [anon_sym_reduce] = ACTIONS(546), + [anon_sym_select] = ACTIONS(548), + [anon_sym_insert] = ACTIONS(550), + [anon_sym_async] = ACTIONS(552), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(554), + [anon_sym_assert] = ACTIONS(556), + [anon_sym_assert_equal] = ACTIONS(556), + [anon_sym_download] = ACTIONS(556), + [anon_sym_help] = ACTIONS(556), + [anon_sym_length] = ACTIONS(556), + [anon_sym_output] = ACTIONS(556), + [anon_sym_output_error] = ACTIONS(556), + [anon_sym_type] = ACTIONS(556), + [anon_sym_append] = ACTIONS(556), + [anon_sym_metadata] = ACTIONS(556), + [anon_sym_move] = ACTIONS(556), + [anon_sym_read] = ACTIONS(556), + [anon_sym_workdir] = ACTIONS(556), + [anon_sym_write] = ACTIONS(556), + [anon_sym_from_json] = ACTIONS(556), + [anon_sym_to_json] = ACTIONS(556), + [anon_sym_to_string] = ACTIONS(556), + [anon_sym_to_float] = ACTIONS(556), + [anon_sym_bash] = ACTIONS(556), + [anon_sym_fish] = ACTIONS(556), + [anon_sym_raw] = ACTIONS(556), + [anon_sym_sh] = ACTIONS(556), + [anon_sym_zsh] = ACTIONS(556), + [anon_sym_random] = ACTIONS(556), + [anon_sym_random_boolean] = ACTIONS(556), + [anon_sym_random_float] = ACTIONS(556), + [anon_sym_random_integer] = ACTIONS(556), + [anon_sym_columns] = ACTIONS(556), + [anon_sym_rows] = ACTIONS(556), + [anon_sym_reverse] = ACTIONS(556), }, [324] = { - [sym_expression] = STATE(680), - [sym__expression_kind] = STATE(706), - [aux_sym__expression_list] = STATE(324), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_logic] = STATE(706), - [sym_identifier_list] = STATE(1910), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(284), - [ts_builtin_sym_end] = ACTIONS(2518), - [sym_identifier] = ACTIONS(2564), + [sym_block] = STATE(407), + [sym_statement] = STATE(16), + [sym_expression] = STATE(387), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(366), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1210), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(186), + [aux_sym_block_repeat1] = STATE(16), + [sym_identifier] = ACTIONS(151), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2567), - [anon_sym_RBRACE] = ACTIONS(2518), - [anon_sym_SEMI] = ACTIONS(2518), - [anon_sym_LPAREN] = ACTIONS(2570), - [anon_sym_RPAREN] = ACTIONS(2518), - [sym_integer] = ACTIONS(2573), - [sym_float] = ACTIONS(2576), - [sym_string] = ACTIONS(2576), - [anon_sym_true] = ACTIONS(2579), - [anon_sym_false] = ACTIONS(2579), - [anon_sym_LBRACK] = ACTIONS(2582), - [anon_sym_EQ] = ACTIONS(2541), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_DOT_DOT] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2541), - [anon_sym_DASH] = ACTIONS(2541), - [anon_sym_STAR] = ACTIONS(2518), - [anon_sym_SLASH] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_EQ_EQ] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_GT] = ACTIONS(2541), - [anon_sym_LT] = ACTIONS(2541), - [anon_sym_GT_EQ] = ACTIONS(2518), - [anon_sym_LT_EQ] = ACTIONS(2518), - [anon_sym_PLUS_EQ] = ACTIONS(2518), - [anon_sym_DASH_EQ] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2541), - [anon_sym_match] = ACTIONS(2541), - [anon_sym_EQ_GT] = ACTIONS(2585), - [anon_sym_while] = ACTIONS(2541), - [anon_sym_for] = ACTIONS(2541), - [anon_sym_asyncfor] = ACTIONS(2518), - [anon_sym_transform] = ACTIONS(2541), - [anon_sym_filter] = ACTIONS(2541), - [anon_sym_find] = ACTIONS(2541), - [anon_sym_remove] = ACTIONS(2541), - [anon_sym_reduce] = ACTIONS(2541), - [anon_sym_select] = ACTIONS(2541), - [anon_sym_insert] = ACTIONS(2541), - [anon_sym_async] = ACTIONS(2541), - [anon_sym_PIPE] = ACTIONS(2546), - [anon_sym_table] = ACTIONS(2588), - [anon_sym_assert] = ACTIONS(2591), - [anon_sym_assert_equal] = ACTIONS(2591), - [anon_sym_download] = ACTIONS(2591), - [anon_sym_help] = ACTIONS(2591), - [anon_sym_length] = ACTIONS(2591), - [anon_sym_output] = ACTIONS(2591), - [anon_sym_output_error] = ACTIONS(2591), - [anon_sym_type] = ACTIONS(2591), - [anon_sym_append] = ACTIONS(2591), - [anon_sym_metadata] = ACTIONS(2591), - [anon_sym_move] = ACTIONS(2591), - [anon_sym_read] = ACTIONS(2591), - [anon_sym_workdir] = ACTIONS(2591), - [anon_sym_write] = ACTIONS(2591), - [anon_sym_from_json] = ACTIONS(2591), - [anon_sym_to_json] = ACTIONS(2591), - [anon_sym_to_string] = ACTIONS(2591), - [anon_sym_to_float] = ACTIONS(2591), - [anon_sym_bash] = ACTIONS(2591), - [anon_sym_fish] = ACTIONS(2591), - [anon_sym_raw] = ACTIONS(2591), - [anon_sym_sh] = ACTIONS(2591), - [anon_sym_zsh] = ACTIONS(2591), - [anon_sym_random] = ACTIONS(2591), - [anon_sym_random_boolean] = ACTIONS(2591), - [anon_sym_random_float] = ACTIONS(2591), - [anon_sym_random_integer] = ACTIONS(2591), - [anon_sym_columns] = ACTIONS(2591), - [anon_sym_rows] = ACTIONS(2591), - [anon_sym_reverse] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_if] = ACTIONS(155), + [anon_sym_match] = ACTIONS(157), + [anon_sym_EQ_GT] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_asyncfor] = ACTIONS(165), + [anon_sym_transform] = ACTIONS(167), + [anon_sym_filter] = ACTIONS(169), + [anon_sym_find] = ACTIONS(171), + [anon_sym_remove] = ACTIONS(173), + [anon_sym_reduce] = ACTIONS(175), + [anon_sym_select] = ACTIONS(177), + [anon_sym_insert] = ACTIONS(179), + [anon_sym_async] = ACTIONS(181), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(183), + [anon_sym_assert] = ACTIONS(185), + [anon_sym_assert_equal] = ACTIONS(185), + [anon_sym_download] = ACTIONS(185), + [anon_sym_help] = ACTIONS(185), + [anon_sym_length] = ACTIONS(185), + [anon_sym_output] = ACTIONS(185), + [anon_sym_output_error] = ACTIONS(185), + [anon_sym_type] = ACTIONS(185), + [anon_sym_append] = ACTIONS(185), + [anon_sym_metadata] = ACTIONS(185), + [anon_sym_move] = ACTIONS(185), + [anon_sym_read] = ACTIONS(185), + [anon_sym_workdir] = ACTIONS(185), + [anon_sym_write] = ACTIONS(185), + [anon_sym_from_json] = ACTIONS(185), + [anon_sym_to_json] = ACTIONS(185), + [anon_sym_to_string] = ACTIONS(185), + [anon_sym_to_float] = ACTIONS(185), + [anon_sym_bash] = ACTIONS(185), + [anon_sym_fish] = ACTIONS(185), + [anon_sym_raw] = ACTIONS(185), + [anon_sym_sh] = ACTIONS(185), + [anon_sym_zsh] = ACTIONS(185), + [anon_sym_random] = ACTIONS(185), + [anon_sym_random_boolean] = ACTIONS(185), + [anon_sym_random_float] = ACTIONS(185), + [anon_sym_random_integer] = ACTIONS(185), + [anon_sym_columns] = ACTIONS(185), + [anon_sym_rows] = ACTIONS(185), + [anon_sym_reverse] = ACTIONS(185), }, [325] = { - [sym_expression] = STATE(718), - [sym__expression_kind] = STATE(706), - [aux_sym__expression_list] = STATE(343), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_logic] = STATE(706), - [sym_identifier_list] = STATE(1813), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(311), - [ts_builtin_sym_end] = ACTIONS(2473), - [sym_identifier] = ACTIONS(149), + [sym_block] = STATE(628), + [sym_statement] = STATE(226), + [sym_expression] = STATE(535), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(561), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [aux_sym_block_repeat1] = STATE(226), + [sym_identifier] = ACTIONS(5), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1923), - [anon_sym_RBRACE] = ACTIONS(2473), - [anon_sym_SEMI] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_RPAREN] = ACTIONS(2473), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_EQ] = ACTIONS(2475), - [anon_sym_COLON] = ACTIONS(2473), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2473), - [anon_sym_SLASH] = ACTIONS(2473), - [anon_sym_PERCENT] = ACTIONS(2473), - [anon_sym_EQ_EQ] = ACTIONS(2473), - [anon_sym_BANG_EQ] = ACTIONS(2473), - [anon_sym_AMP_AMP] = ACTIONS(2473), - [anon_sym_PIPE_PIPE] = ACTIONS(2473), - [anon_sym_GT] = ACTIONS(2475), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_GT_EQ] = ACTIONS(2473), - [anon_sym_LT_EQ] = ACTIONS(2473), - [anon_sym_PLUS_EQ] = ACTIONS(2473), - [anon_sym_DASH_EQ] = ACTIONS(2473), - [anon_sym_if] = ACTIONS(2475), - [anon_sym_match] = ACTIONS(2475), - [anon_sym_EQ_GT] = ACTIONS(281), - [anon_sym_while] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2475), - [anon_sym_asyncfor] = ACTIONS(2473), - [anon_sym_transform] = ACTIONS(2475), - [anon_sym_filter] = ACTIONS(2475), - [anon_sym_find] = ACTIONS(2475), - [anon_sym_remove] = ACTIONS(2475), - [anon_sym_reduce] = ACTIONS(2475), - [anon_sym_select] = ACTIONS(2475), - [anon_sym_insert] = ACTIONS(2475), - [anon_sym_async] = ACTIONS(2475), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(305), - [anon_sym_assert] = ACTIONS(307), - [anon_sym_assert_equal] = ACTIONS(307), - [anon_sym_download] = ACTIONS(307), - [anon_sym_help] = ACTIONS(307), - [anon_sym_length] = ACTIONS(307), - [anon_sym_output] = ACTIONS(307), - [anon_sym_output_error] = ACTIONS(307), - [anon_sym_type] = ACTIONS(307), - [anon_sym_append] = ACTIONS(307), - [anon_sym_metadata] = ACTIONS(307), - [anon_sym_move] = ACTIONS(307), - [anon_sym_read] = ACTIONS(307), - [anon_sym_workdir] = ACTIONS(307), - [anon_sym_write] = ACTIONS(307), - [anon_sym_from_json] = ACTIONS(307), - [anon_sym_to_json] = ACTIONS(307), - [anon_sym_to_string] = ACTIONS(307), - [anon_sym_to_float] = ACTIONS(307), - [anon_sym_bash] = ACTIONS(307), - [anon_sym_fish] = ACTIONS(307), - [anon_sym_raw] = ACTIONS(307), - [anon_sym_sh] = ACTIONS(307), - [anon_sym_zsh] = ACTIONS(307), - [anon_sym_random] = ACTIONS(307), - [anon_sym_random_boolean] = ACTIONS(307), - [anon_sym_random_float] = ACTIONS(307), - [anon_sym_random_integer] = ACTIONS(307), - [anon_sym_columns] = ACTIONS(307), - [anon_sym_rows] = ACTIONS(307), - [anon_sym_reverse] = ACTIONS(307), + [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_asyncfor] = 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_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [326] = { - [sym_expression] = STATE(702), - [sym__expression_kind] = STATE(759), - [aux_sym__expression_list] = STATE(326), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(759), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_identifier_list] = STATE(1984), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(302), - [ts_builtin_sym_end] = ACTIONS(2518), - [sym_identifier] = ACTIONS(2594), + [sym_block] = STATE(418), + [sym_statement] = STATE(16), + [sym_expression] = STATE(387), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(366), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1210), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(186), + [aux_sym_block_repeat1] = STATE(16), + [sym_identifier] = ACTIONS(151), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2597), - [anon_sym_RBRACE] = ACTIONS(2518), - [anon_sym_SEMI] = ACTIONS(2518), - [anon_sym_LPAREN] = ACTIONS(2600), - [anon_sym_RPAREN] = ACTIONS(2518), - [sym_integer] = ACTIONS(2603), - [sym_float] = ACTIONS(2606), - [sym_string] = ACTIONS(2606), - [anon_sym_true] = ACTIONS(2609), - [anon_sym_false] = ACTIONS(2609), - [anon_sym_LBRACK] = ACTIONS(2612), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_DOT_DOT] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2541), - [anon_sym_STAR] = ACTIONS(2518), - [anon_sym_SLASH] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_EQ_EQ] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_GT] = ACTIONS(2541), - [anon_sym_LT] = ACTIONS(2541), - [anon_sym_GT_EQ] = ACTIONS(2518), - [anon_sym_LT_EQ] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2541), - [anon_sym_elseif] = ACTIONS(2518), - [anon_sym_else] = ACTIONS(2541), - [anon_sym_match] = ACTIONS(2541), - [anon_sym_EQ_GT] = ACTIONS(2615), - [anon_sym_while] = ACTIONS(2541), - [anon_sym_for] = ACTIONS(2541), - [anon_sym_asyncfor] = ACTIONS(2518), - [anon_sym_transform] = ACTIONS(2541), - [anon_sym_filter] = ACTIONS(2541), - [anon_sym_find] = ACTIONS(2541), - [anon_sym_remove] = ACTIONS(2541), - [anon_sym_reduce] = ACTIONS(2541), - [anon_sym_select] = ACTIONS(2541), - [anon_sym_insert] = ACTIONS(2541), - [anon_sym_async] = ACTIONS(2541), - [anon_sym_PIPE] = ACTIONS(2546), - [anon_sym_table] = ACTIONS(2618), - [anon_sym_assert] = ACTIONS(2621), - [anon_sym_assert_equal] = ACTIONS(2621), - [anon_sym_download] = ACTIONS(2621), - [anon_sym_help] = ACTIONS(2621), - [anon_sym_length] = ACTIONS(2621), - [anon_sym_output] = ACTIONS(2621), - [anon_sym_output_error] = ACTIONS(2621), - [anon_sym_type] = ACTIONS(2621), - [anon_sym_append] = ACTIONS(2621), - [anon_sym_metadata] = ACTIONS(2621), - [anon_sym_move] = ACTIONS(2621), - [anon_sym_read] = ACTIONS(2621), - [anon_sym_workdir] = ACTIONS(2621), - [anon_sym_write] = ACTIONS(2621), - [anon_sym_from_json] = ACTIONS(2621), - [anon_sym_to_json] = ACTIONS(2621), - [anon_sym_to_string] = ACTIONS(2621), - [anon_sym_to_float] = ACTIONS(2621), - [anon_sym_bash] = ACTIONS(2621), - [anon_sym_fish] = ACTIONS(2621), - [anon_sym_raw] = ACTIONS(2621), - [anon_sym_sh] = ACTIONS(2621), - [anon_sym_zsh] = ACTIONS(2621), - [anon_sym_random] = ACTIONS(2621), - [anon_sym_random_boolean] = ACTIONS(2621), - [anon_sym_random_float] = ACTIONS(2621), - [anon_sym_random_integer] = ACTIONS(2621), - [anon_sym_columns] = ACTIONS(2621), - [anon_sym_rows] = ACTIONS(2621), - [anon_sym_reverse] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_if] = ACTIONS(155), + [anon_sym_match] = ACTIONS(157), + [anon_sym_EQ_GT] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_asyncfor] = ACTIONS(165), + [anon_sym_transform] = ACTIONS(167), + [anon_sym_filter] = ACTIONS(169), + [anon_sym_find] = ACTIONS(171), + [anon_sym_remove] = ACTIONS(173), + [anon_sym_reduce] = ACTIONS(175), + [anon_sym_select] = ACTIONS(177), + [anon_sym_insert] = ACTIONS(179), + [anon_sym_async] = ACTIONS(181), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(183), + [anon_sym_assert] = ACTIONS(185), + [anon_sym_assert_equal] = ACTIONS(185), + [anon_sym_download] = ACTIONS(185), + [anon_sym_help] = ACTIONS(185), + [anon_sym_length] = ACTIONS(185), + [anon_sym_output] = ACTIONS(185), + [anon_sym_output_error] = ACTIONS(185), + [anon_sym_type] = ACTIONS(185), + [anon_sym_append] = ACTIONS(185), + [anon_sym_metadata] = ACTIONS(185), + [anon_sym_move] = ACTIONS(185), + [anon_sym_read] = ACTIONS(185), + [anon_sym_workdir] = ACTIONS(185), + [anon_sym_write] = ACTIONS(185), + [anon_sym_from_json] = ACTIONS(185), + [anon_sym_to_json] = ACTIONS(185), + [anon_sym_to_string] = ACTIONS(185), + [anon_sym_to_float] = ACTIONS(185), + [anon_sym_bash] = ACTIONS(185), + [anon_sym_fish] = ACTIONS(185), + [anon_sym_raw] = ACTIONS(185), + [anon_sym_sh] = ACTIONS(185), + [anon_sym_zsh] = ACTIONS(185), + [anon_sym_random] = ACTIONS(185), + [anon_sym_random_boolean] = ACTIONS(185), + [anon_sym_random_float] = ACTIONS(185), + [anon_sym_random_integer] = ACTIONS(185), + [anon_sym_columns] = ACTIONS(185), + [anon_sym_rows] = ACTIONS(185), + [anon_sym_reverse] = ACTIONS(185), }, [327] = { - [sym_expression] = STATE(1587), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_logic] = STATE(1539), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(328), - [ts_builtin_sym_end] = ACTIONS(2449), - [sym_identifier] = ACTIONS(2451), + [sym_block] = STATE(464), + [sym_statement] = STATE(32), + [sym_expression] = STATE(516), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(433), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [aux_sym_block_repeat1] = STATE(32), + [sym_identifier] = ACTIONS(867), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_RBRACE] = ACTIONS(2449), - [anon_sym_SEMI] = ACTIONS(2449), - [anon_sym_LPAREN] = ACTIONS(2455), - [anon_sym_RPAREN] = ACTIONS(2449), - [sym_integer] = ACTIONS(2457), - [sym_float] = ACTIONS(2459), - [sym_string] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(2461), - [anon_sym_false] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_EQ] = ACTIONS(2465), - [anon_sym_COLON] = ACTIONS(2449), - [anon_sym_PLUS] = ACTIONS(2465), - [anon_sym_DASH] = ACTIONS(2465), - [anon_sym_STAR] = ACTIONS(2449), - [anon_sym_SLASH] = ACTIONS(2449), - [anon_sym_PERCENT] = ACTIONS(2449), - [anon_sym_EQ_EQ] = ACTIONS(2449), - [anon_sym_BANG_EQ] = ACTIONS(2449), - [anon_sym_AMP_AMP] = ACTIONS(2449), - [anon_sym_PIPE_PIPE] = ACTIONS(2449), - [anon_sym_GT] = ACTIONS(2465), - [anon_sym_LT] = ACTIONS(2465), - [anon_sym_GT_EQ] = ACTIONS(2449), - [anon_sym_LT_EQ] = ACTIONS(2449), - [anon_sym_PLUS_EQ] = ACTIONS(2449), - [anon_sym_DASH_EQ] = ACTIONS(2449), - [anon_sym_if] = ACTIONS(2465), - [anon_sym_match] = ACTIONS(2465), - [anon_sym_EQ_GT] = ACTIONS(2467), - [anon_sym_while] = ACTIONS(2465), - [anon_sym_for] = ACTIONS(2465), - [anon_sym_asyncfor] = ACTIONS(2449), - [anon_sym_transform] = ACTIONS(2465), - [anon_sym_filter] = ACTIONS(2465), - [anon_sym_find] = ACTIONS(2465), - [anon_sym_remove] = ACTIONS(2465), - [anon_sym_reduce] = ACTIONS(2465), - [anon_sym_select] = ACTIONS(2465), - [anon_sym_insert] = ACTIONS(2465), - [anon_sym_async] = ACTIONS(2465), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(2469), - [anon_sym_assert] = ACTIONS(2471), - [anon_sym_assert_equal] = ACTIONS(2471), - [anon_sym_download] = ACTIONS(2471), - [anon_sym_help] = ACTIONS(2471), - [anon_sym_length] = ACTIONS(2471), - [anon_sym_output] = ACTIONS(2471), - [anon_sym_output_error] = ACTIONS(2471), - [anon_sym_type] = ACTIONS(2471), - [anon_sym_append] = ACTIONS(2471), - [anon_sym_metadata] = ACTIONS(2471), - [anon_sym_move] = ACTIONS(2471), - [anon_sym_read] = ACTIONS(2471), - [anon_sym_workdir] = ACTIONS(2471), - [anon_sym_write] = ACTIONS(2471), - [anon_sym_from_json] = ACTIONS(2471), - [anon_sym_to_json] = ACTIONS(2471), - [anon_sym_to_string] = ACTIONS(2471), - [anon_sym_to_float] = ACTIONS(2471), - [anon_sym_bash] = ACTIONS(2471), - [anon_sym_fish] = ACTIONS(2471), - [anon_sym_raw] = ACTIONS(2471), - [anon_sym_sh] = ACTIONS(2471), - [anon_sym_zsh] = ACTIONS(2471), - [anon_sym_random] = ACTIONS(2471), - [anon_sym_random_boolean] = ACTIONS(2471), - [anon_sym_random_float] = ACTIONS(2471), - [anon_sym_random_integer] = ACTIONS(2471), - [anon_sym_columns] = ACTIONS(2471), - [anon_sym_rows] = ACTIONS(2471), - [anon_sym_reverse] = ACTIONS(2471), + [anon_sym_LBRACE] = ACTIONS(189), + [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(227), + [anon_sym_match] = ACTIONS(871), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(873), + [anon_sym_for] = ACTIONS(875), + [anon_sym_asyncfor] = ACTIONS(877), + [anon_sym_transform] = ACTIONS(879), + [anon_sym_filter] = ACTIONS(881), + [anon_sym_find] = ACTIONS(883), + [anon_sym_remove] = ACTIONS(885), + [anon_sym_reduce] = ACTIONS(887), + [anon_sym_select] = ACTIONS(889), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(891), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [328] = { - [sym_expression] = STATE(1587), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_logic] = STATE(1539), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(328), - [ts_builtin_sym_end] = ACTIONS(2481), - [sym_identifier] = ACTIONS(2483), + [sym_block] = STATE(428), + [sym_statement] = STATE(8), + [sym_expression] = STATE(355), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(346), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1225), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(170), + [aux_sym_block_repeat1] = STATE(8), + [sym_identifier] = ACTIONS(55), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2486), - [anon_sym_RBRACE] = ACTIONS(2481), - [anon_sym_SEMI] = ACTIONS(2481), - [anon_sym_LPAREN] = ACTIONS(2489), - [anon_sym_RPAREN] = ACTIONS(2481), - [sym_integer] = ACTIONS(2492), - [sym_float] = ACTIONS(2495), - [sym_string] = ACTIONS(2495), - [anon_sym_true] = ACTIONS(2498), - [anon_sym_false] = ACTIONS(2498), - [anon_sym_LBRACK] = ACTIONS(2501), - [anon_sym_EQ] = ACTIONS(2504), - [anon_sym_COLON] = ACTIONS(2481), - [anon_sym_PLUS] = ACTIONS(2504), - [anon_sym_DASH] = ACTIONS(2504), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_SLASH] = ACTIONS(2481), - [anon_sym_PERCENT] = ACTIONS(2481), - [anon_sym_EQ_EQ] = ACTIONS(2481), - [anon_sym_BANG_EQ] = ACTIONS(2481), - [anon_sym_AMP_AMP] = ACTIONS(2481), - [anon_sym_PIPE_PIPE] = ACTIONS(2481), - [anon_sym_GT] = ACTIONS(2504), - [anon_sym_LT] = ACTIONS(2504), - [anon_sym_GT_EQ] = ACTIONS(2481), - [anon_sym_LT_EQ] = ACTIONS(2481), - [anon_sym_PLUS_EQ] = ACTIONS(2481), - [anon_sym_DASH_EQ] = ACTIONS(2481), - [anon_sym_if] = ACTIONS(2504), - [anon_sym_match] = ACTIONS(2504), - [anon_sym_EQ_GT] = ACTIONS(2506), - [anon_sym_while] = ACTIONS(2504), - [anon_sym_for] = ACTIONS(2504), - [anon_sym_asyncfor] = ACTIONS(2481), - [anon_sym_transform] = ACTIONS(2504), - [anon_sym_filter] = ACTIONS(2504), - [anon_sym_find] = ACTIONS(2504), - [anon_sym_remove] = ACTIONS(2504), - [anon_sym_reduce] = ACTIONS(2504), - [anon_sym_select] = ACTIONS(2504), - [anon_sym_insert] = ACTIONS(2504), - [anon_sym_async] = ACTIONS(2504), - [anon_sym_PIPE] = ACTIONS(2509), - [anon_sym_table] = ACTIONS(2512), - [anon_sym_assert] = ACTIONS(2515), - [anon_sym_assert_equal] = ACTIONS(2515), - [anon_sym_download] = ACTIONS(2515), - [anon_sym_help] = ACTIONS(2515), - [anon_sym_length] = ACTIONS(2515), - [anon_sym_output] = ACTIONS(2515), - [anon_sym_output_error] = ACTIONS(2515), - [anon_sym_type] = ACTIONS(2515), - [anon_sym_append] = ACTIONS(2515), - [anon_sym_metadata] = ACTIONS(2515), - [anon_sym_move] = ACTIONS(2515), - [anon_sym_read] = ACTIONS(2515), - [anon_sym_workdir] = ACTIONS(2515), - [anon_sym_write] = ACTIONS(2515), - [anon_sym_from_json] = ACTIONS(2515), - [anon_sym_to_json] = ACTIONS(2515), - [anon_sym_to_string] = ACTIONS(2515), - [anon_sym_to_float] = ACTIONS(2515), - [anon_sym_bash] = ACTIONS(2515), - [anon_sym_fish] = ACTIONS(2515), - [anon_sym_raw] = ACTIONS(2515), - [anon_sym_sh] = ACTIONS(2515), - [anon_sym_zsh] = ACTIONS(2515), - [anon_sym_random] = ACTIONS(2515), - [anon_sym_random_boolean] = ACTIONS(2515), - [anon_sym_random_float] = ACTIONS(2515), - [anon_sym_random_integer] = ACTIONS(2515), - [anon_sym_columns] = ACTIONS(2515), - [anon_sym_rows] = ACTIONS(2515), - [anon_sym_reverse] = ACTIONS(2515), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = 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_asyncfor] = ACTIONS(91), + [anon_sym_transform] = ACTIONS(93), + [anon_sym_filter] = ACTIONS(95), + [anon_sym_find] = ACTIONS(97), + [anon_sym_remove] = ACTIONS(99), + [anon_sym_reduce] = ACTIONS(101), + [anon_sym_select] = ACTIONS(103), + [anon_sym_insert] = ACTIONS(105), + [anon_sym_async] = ACTIONS(107), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(111), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_assert_equal] = ACTIONS(113), + [anon_sym_download] = ACTIONS(113), + [anon_sym_help] = ACTIONS(113), + [anon_sym_length] = ACTIONS(113), + [anon_sym_output] = ACTIONS(113), + [anon_sym_output_error] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_append] = ACTIONS(113), + [anon_sym_metadata] = ACTIONS(113), + [anon_sym_move] = ACTIONS(113), + [anon_sym_read] = ACTIONS(113), + [anon_sym_workdir] = ACTIONS(113), + [anon_sym_write] = ACTIONS(113), + [anon_sym_from_json] = ACTIONS(113), + [anon_sym_to_json] = ACTIONS(113), + [anon_sym_to_string] = ACTIONS(113), + [anon_sym_to_float] = ACTIONS(113), + [anon_sym_bash] = ACTIONS(113), + [anon_sym_fish] = ACTIONS(113), + [anon_sym_raw] = ACTIONS(113), + [anon_sym_sh] = ACTIONS(113), + [anon_sym_zsh] = ACTIONS(113), + [anon_sym_random] = ACTIONS(113), + [anon_sym_random_boolean] = ACTIONS(113), + [anon_sym_random_float] = ACTIONS(113), + [anon_sym_random_integer] = ACTIONS(113), + [anon_sym_columns] = ACTIONS(113), + [anon_sym_rows] = ACTIONS(113), + [anon_sym_reverse] = ACTIONS(113), }, [329] = { - [sym_expression] = STATE(702), - [sym__expression_kind] = STATE(759), - [aux_sym__expression_list] = STATE(326), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(759), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_identifier_list] = STATE(1984), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(302), - [ts_builtin_sym_end] = ACTIONS(2443), - [sym_identifier] = ACTIONS(2624), + [sym_block] = STATE(434), + [sym_statement] = STATE(8), + [sym_expression] = STATE(355), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(346), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1225), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(170), + [aux_sym_block_repeat1] = STATE(8), + [sym_identifier] = ACTIONS(55), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2626), - [anon_sym_RBRACE] = ACTIONS(2443), - [anon_sym_SEMI] = ACTIONS(2443), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_RPAREN] = ACTIONS(2443), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(2443), - [anon_sym_DOT_DOT] = ACTIONS(2443), - [anon_sym_PLUS] = ACTIONS(2443), - [anon_sym_DASH] = ACTIONS(2447), - [anon_sym_STAR] = ACTIONS(2443), - [anon_sym_SLASH] = ACTIONS(2443), - [anon_sym_PERCENT] = ACTIONS(2443), - [anon_sym_EQ_EQ] = ACTIONS(2443), - [anon_sym_BANG_EQ] = ACTIONS(2443), - [anon_sym_AMP_AMP] = ACTIONS(2443), - [anon_sym_PIPE_PIPE] = ACTIONS(2443), - [anon_sym_GT] = ACTIONS(2447), - [anon_sym_LT] = ACTIONS(2447), - [anon_sym_GT_EQ] = ACTIONS(2443), - [anon_sym_LT_EQ] = ACTIONS(2443), - [anon_sym_if] = ACTIONS(2447), - [anon_sym_elseif] = ACTIONS(2443), - [anon_sym_else] = ACTIONS(2447), - [anon_sym_match] = ACTIONS(2447), - [anon_sym_EQ_GT] = ACTIONS(249), - [anon_sym_while] = ACTIONS(2447), - [anon_sym_for] = ACTIONS(2447), - [anon_sym_asyncfor] = ACTIONS(2443), - [anon_sym_transform] = ACTIONS(2447), - [anon_sym_filter] = ACTIONS(2447), - [anon_sym_find] = ACTIONS(2447), - [anon_sym_remove] = ACTIONS(2447), - [anon_sym_reduce] = ACTIONS(2447), - [anon_sym_select] = ACTIONS(2447), - [anon_sym_insert] = ACTIONS(2447), - [anon_sym_async] = ACTIONS(2447), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(275), - [anon_sym_assert_equal] = ACTIONS(275), - [anon_sym_download] = ACTIONS(275), - [anon_sym_help] = ACTIONS(275), - [anon_sym_length] = ACTIONS(275), - [anon_sym_output] = ACTIONS(275), - [anon_sym_output_error] = ACTIONS(275), - [anon_sym_type] = ACTIONS(275), - [anon_sym_append] = ACTIONS(275), - [anon_sym_metadata] = ACTIONS(275), - [anon_sym_move] = ACTIONS(275), - [anon_sym_read] = ACTIONS(275), - [anon_sym_workdir] = ACTIONS(275), - [anon_sym_write] = ACTIONS(275), - [anon_sym_from_json] = ACTIONS(275), - [anon_sym_to_json] = ACTIONS(275), - [anon_sym_to_string] = ACTIONS(275), - [anon_sym_to_float] = ACTIONS(275), - [anon_sym_bash] = ACTIONS(275), - [anon_sym_fish] = ACTIONS(275), - [anon_sym_raw] = ACTIONS(275), - [anon_sym_sh] = ACTIONS(275), - [anon_sym_zsh] = ACTIONS(275), - [anon_sym_random] = ACTIONS(275), - [anon_sym_random_boolean] = ACTIONS(275), - [anon_sym_random_float] = ACTIONS(275), - [anon_sym_random_integer] = ACTIONS(275), - [anon_sym_columns] = ACTIONS(275), - [anon_sym_rows] = ACTIONS(275), - [anon_sym_reverse] = ACTIONS(275), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = 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_asyncfor] = ACTIONS(91), + [anon_sym_transform] = ACTIONS(93), + [anon_sym_filter] = ACTIONS(95), + [anon_sym_find] = ACTIONS(97), + [anon_sym_remove] = ACTIONS(99), + [anon_sym_reduce] = ACTIONS(101), + [anon_sym_select] = ACTIONS(103), + [anon_sym_insert] = ACTIONS(105), + [anon_sym_async] = ACTIONS(107), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(111), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_assert_equal] = ACTIONS(113), + [anon_sym_download] = ACTIONS(113), + [anon_sym_help] = ACTIONS(113), + [anon_sym_length] = ACTIONS(113), + [anon_sym_output] = ACTIONS(113), + [anon_sym_output_error] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_append] = ACTIONS(113), + [anon_sym_metadata] = ACTIONS(113), + [anon_sym_move] = ACTIONS(113), + [anon_sym_read] = ACTIONS(113), + [anon_sym_workdir] = ACTIONS(113), + [anon_sym_write] = ACTIONS(113), + [anon_sym_from_json] = ACTIONS(113), + [anon_sym_to_json] = ACTIONS(113), + [anon_sym_to_string] = ACTIONS(113), + [anon_sym_to_float] = ACTIONS(113), + [anon_sym_bash] = ACTIONS(113), + [anon_sym_fish] = ACTIONS(113), + [anon_sym_raw] = ACTIONS(113), + [anon_sym_sh] = ACTIONS(113), + [anon_sym_zsh] = ACTIONS(113), + [anon_sym_random] = ACTIONS(113), + [anon_sym_random_boolean] = ACTIONS(113), + [anon_sym_random_float] = ACTIONS(113), + [anon_sym_random_integer] = ACTIONS(113), + [anon_sym_columns] = ACTIONS(113), + [anon_sym_rows] = ACTIONS(113), + [anon_sym_reverse] = ACTIONS(113), }, [330] = { - [sym_expression] = STATE(876), - [sym__expression_kind] = STATE(866), - [aux_sym__expression_list] = STATE(375), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(866), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment_operator] = STATE(536), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [ts_builtin_sym_end] = ACTIONS(2435), - [sym_identifier] = ACTIONS(2437), + [sym_statement] = STATE(593), + [sym_expression] = STATE(473), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_assignment] = STATE(598), + [sym_if_else] = STATE(598), + [sym_if] = STATE(565), + [sym_match] = STATE(598), + [sym_while] = STATE(598), + [sym_for] = STATE(598), + [sym_transform] = STATE(598), + [sym_filter] = STATE(598), + [sym_find] = STATE(598), + [sym_remove] = STATE(598), + [sym_reduce] = STATE(598), + [sym_select] = STATE(598), + [sym_insert] = STATE(598), + [sym_async] = STATE(598), + [sym_identifier_list] = STATE(1085), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(203), + [sym_identifier] = ACTIONS(609), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_RBRACE] = ACTIONS(2435), - [anon_sym_SEMI] = ACTIONS(2435), - [anon_sym_LPAREN] = ACTIONS(2435), - [sym_integer] = ACTIONS(2437), - [sym_float] = ACTIONS(2435), - [sym_string] = ACTIONS(2435), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [anon_sym_LBRACK] = ACTIONS(2435), - [anon_sym_EQ] = ACTIONS(2439), - [anon_sym_COLON] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_PERCENT] = ACTIONS(2435), - [anon_sym_EQ_EQ] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_PIPE_PIPE] = ACTIONS(2435), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_PLUS_EQ] = ACTIONS(2441), - [anon_sym_DASH_EQ] = ACTIONS(2441), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_EQ_GT] = ACTIONS(2435), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_asyncfor] = ACTIONS(2435), - [anon_sym_transform] = ACTIONS(2437), - [anon_sym_filter] = ACTIONS(2437), - [anon_sym_find] = ACTIONS(2437), - [anon_sym_remove] = ACTIONS(2437), - [anon_sym_reduce] = ACTIONS(2437), - [anon_sym_select] = ACTIONS(2437), - [anon_sym_insert] = ACTIONS(2437), - [anon_sym_async] = ACTIONS(2437), - [anon_sym_PIPE] = ACTIONS(2437), - [anon_sym_table] = ACTIONS(2437), - [anon_sym_assert] = ACTIONS(2437), - [anon_sym_assert_equal] = ACTIONS(2437), - [anon_sym_download] = ACTIONS(2437), - [anon_sym_help] = ACTIONS(2437), - [anon_sym_length] = ACTIONS(2437), - [anon_sym_output] = ACTIONS(2437), - [anon_sym_output_error] = ACTIONS(2437), - [anon_sym_type] = ACTIONS(2437), - [anon_sym_append] = ACTIONS(2437), - [anon_sym_metadata] = ACTIONS(2437), - [anon_sym_move] = ACTIONS(2437), - [anon_sym_read] = ACTIONS(2437), - [anon_sym_workdir] = ACTIONS(2437), - [anon_sym_write] = ACTIONS(2437), - [anon_sym_from_json] = ACTIONS(2437), - [anon_sym_to_json] = ACTIONS(2437), - [anon_sym_to_string] = ACTIONS(2437), - [anon_sym_to_float] = ACTIONS(2437), - [anon_sym_bash] = ACTIONS(2437), - [anon_sym_fish] = ACTIONS(2437), - [anon_sym_raw] = ACTIONS(2437), - [anon_sym_sh] = ACTIONS(2437), - [anon_sym_zsh] = ACTIONS(2437), - [anon_sym_random] = ACTIONS(2437), - [anon_sym_random_boolean] = ACTIONS(2437), - [anon_sym_random_float] = ACTIONS(2437), - [anon_sym_random_integer] = ACTIONS(2437), - [anon_sym_columns] = ACTIONS(2437), - [anon_sym_rows] = ACTIONS(2437), - [anon_sym_reverse] = ACTIONS(2437), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_if] = ACTIONS(19), + [anon_sym_match] = ACTIONS(611), + [anon_sym_EQ_GT] = ACTIONS(231), + [anon_sym_while] = ACTIONS(613), + [anon_sym_for] = ACTIONS(615), + [anon_sym_asyncfor] = ACTIONS(617), + [anon_sym_transform] = ACTIONS(619), + [anon_sym_filter] = ACTIONS(621), + [anon_sym_find] = ACTIONS(623), + [anon_sym_remove] = ACTIONS(625), + [anon_sym_reduce] = ACTIONS(627), + [anon_sym_select] = ACTIONS(629), + [anon_sym_insert] = ACTIONS(251), + [anon_sym_async] = ACTIONS(631), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(255), + [anon_sym_assert] = ACTIONS(257), + [anon_sym_assert_equal] = ACTIONS(257), + [anon_sym_download] = ACTIONS(257), + [anon_sym_help] = ACTIONS(257), + [anon_sym_length] = ACTIONS(257), + [anon_sym_output] = ACTIONS(257), + [anon_sym_output_error] = ACTIONS(257), + [anon_sym_type] = ACTIONS(257), + [anon_sym_append] = ACTIONS(257), + [anon_sym_metadata] = ACTIONS(257), + [anon_sym_move] = ACTIONS(257), + [anon_sym_read] = ACTIONS(257), + [anon_sym_workdir] = ACTIONS(257), + [anon_sym_write] = ACTIONS(257), + [anon_sym_from_json] = ACTIONS(257), + [anon_sym_to_json] = ACTIONS(257), + [anon_sym_to_string] = ACTIONS(257), + [anon_sym_to_float] = ACTIONS(257), + [anon_sym_bash] = ACTIONS(257), + [anon_sym_fish] = ACTIONS(257), + [anon_sym_raw] = ACTIONS(257), + [anon_sym_sh] = ACTIONS(257), + [anon_sym_zsh] = ACTIONS(257), + [anon_sym_random] = ACTIONS(257), + [anon_sym_random_boolean] = ACTIONS(257), + [anon_sym_random_float] = ACTIONS(257), + [anon_sym_random_integer] = ACTIONS(257), + [anon_sym_columns] = ACTIONS(257), + [anon_sym_rows] = ACTIONS(257), + [anon_sym_reverse] = ACTIONS(257), }, [331] = { - [sym_expression] = STATE(718), - [sym__expression_kind] = STATE(706), - [aux_sym__expression_list] = STATE(335), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_logic] = STATE(706), - [sym_identifier_list] = STATE(1813), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(311), - [ts_builtin_sym_end] = ACTIONS(2477), - [sym_identifier] = ACTIONS(149), + [sym_statement] = STATE(423), + [sym_expression] = STATE(448), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(414), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1085), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(203), + [sym_identifier] = ACTIONS(223), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1923), - [anon_sym_RBRACE] = ACTIONS(2477), - [anon_sym_SEMI] = ACTIONS(2477), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_RPAREN] = ACTIONS(2477), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_EQ] = ACTIONS(2479), - [anon_sym_COLON] = ACTIONS(2477), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2477), - [anon_sym_SLASH] = ACTIONS(2477), - [anon_sym_PERCENT] = ACTIONS(2477), - [anon_sym_EQ_EQ] = ACTIONS(2477), - [anon_sym_BANG_EQ] = ACTIONS(2477), - [anon_sym_AMP_AMP] = ACTIONS(2477), - [anon_sym_PIPE_PIPE] = ACTIONS(2477), - [anon_sym_GT] = ACTIONS(2479), - [anon_sym_LT] = ACTIONS(2479), - [anon_sym_GT_EQ] = ACTIONS(2477), - [anon_sym_LT_EQ] = ACTIONS(2477), - [anon_sym_PLUS_EQ] = ACTIONS(2477), - [anon_sym_DASH_EQ] = ACTIONS(2477), - [anon_sym_if] = ACTIONS(2479), - [anon_sym_match] = ACTIONS(2479), - [anon_sym_EQ_GT] = ACTIONS(281), - [anon_sym_while] = ACTIONS(2479), - [anon_sym_for] = ACTIONS(2479), - [anon_sym_asyncfor] = ACTIONS(2477), - [anon_sym_transform] = ACTIONS(2479), - [anon_sym_filter] = ACTIONS(2479), - [anon_sym_find] = ACTIONS(2479), - [anon_sym_remove] = ACTIONS(2479), - [anon_sym_reduce] = ACTIONS(2479), - [anon_sym_select] = ACTIONS(2479), - [anon_sym_insert] = ACTIONS(2479), - [anon_sym_async] = ACTIONS(2479), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(305), - [anon_sym_assert] = ACTIONS(307), - [anon_sym_assert_equal] = ACTIONS(307), - [anon_sym_download] = ACTIONS(307), - [anon_sym_help] = ACTIONS(307), - [anon_sym_length] = ACTIONS(307), - [anon_sym_output] = ACTIONS(307), - [anon_sym_output_error] = ACTIONS(307), - [anon_sym_type] = ACTIONS(307), - [anon_sym_append] = ACTIONS(307), - [anon_sym_metadata] = ACTIONS(307), - [anon_sym_move] = ACTIONS(307), - [anon_sym_read] = ACTIONS(307), - [anon_sym_workdir] = ACTIONS(307), - [anon_sym_write] = ACTIONS(307), - [anon_sym_from_json] = ACTIONS(307), - [anon_sym_to_json] = ACTIONS(307), - [anon_sym_to_string] = ACTIONS(307), - [anon_sym_to_float] = ACTIONS(307), - [anon_sym_bash] = ACTIONS(307), - [anon_sym_fish] = ACTIONS(307), - [anon_sym_raw] = ACTIONS(307), - [anon_sym_sh] = ACTIONS(307), - [anon_sym_zsh] = ACTIONS(307), - [anon_sym_random] = ACTIONS(307), - [anon_sym_random_boolean] = ACTIONS(307), - [anon_sym_random_float] = ACTIONS(307), - [anon_sym_random_integer] = ACTIONS(307), - [anon_sym_columns] = ACTIONS(307), - [anon_sym_rows] = ACTIONS(307), - [anon_sym_reverse] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_if] = ACTIONS(227), + [anon_sym_match] = ACTIONS(229), + [anon_sym_EQ_GT] = ACTIONS(231), + [anon_sym_while] = ACTIONS(233), + [anon_sym_for] = ACTIONS(235), + [anon_sym_asyncfor] = ACTIONS(237), + [anon_sym_transform] = ACTIONS(239), + [anon_sym_filter] = ACTIONS(241), + [anon_sym_find] = ACTIONS(243), + [anon_sym_remove] = ACTIONS(245), + [anon_sym_reduce] = ACTIONS(247), + [anon_sym_select] = ACTIONS(249), + [anon_sym_insert] = ACTIONS(251), + [anon_sym_async] = ACTIONS(253), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(255), + [anon_sym_assert] = ACTIONS(257), + [anon_sym_assert_equal] = ACTIONS(257), + [anon_sym_download] = ACTIONS(257), + [anon_sym_help] = ACTIONS(257), + [anon_sym_length] = ACTIONS(257), + [anon_sym_output] = ACTIONS(257), + [anon_sym_output_error] = ACTIONS(257), + [anon_sym_type] = ACTIONS(257), + [anon_sym_append] = ACTIONS(257), + [anon_sym_metadata] = ACTIONS(257), + [anon_sym_move] = ACTIONS(257), + [anon_sym_read] = ACTIONS(257), + [anon_sym_workdir] = ACTIONS(257), + [anon_sym_write] = ACTIONS(257), + [anon_sym_from_json] = ACTIONS(257), + [anon_sym_to_json] = ACTIONS(257), + [anon_sym_to_string] = ACTIONS(257), + [anon_sym_to_float] = ACTIONS(257), + [anon_sym_bash] = ACTIONS(257), + [anon_sym_fish] = ACTIONS(257), + [anon_sym_raw] = ACTIONS(257), + [anon_sym_sh] = ACTIONS(257), + [anon_sym_zsh] = ACTIONS(257), + [anon_sym_random] = ACTIONS(257), + [anon_sym_random_boolean] = ACTIONS(257), + [anon_sym_random_float] = ACTIONS(257), + [anon_sym_random_integer] = ACTIONS(257), + [anon_sym_columns] = ACTIONS(257), + [anon_sym_rows] = ACTIONS(257), + [anon_sym_reverse] = ACTIONS(257), }, [332] = { - [sym_expression] = STATE(1586), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_logic] = STATE(1539), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(332), - [ts_builtin_sym_end] = ACTIONS(2481), - [sym_identifier] = ACTIONS(2483), + [sym_statement] = STATE(593), + [sym_expression] = STATE(460), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_assignment] = STATE(598), + [sym_if_else] = STATE(598), + [sym_if] = STATE(564), + [sym_match] = STATE(598), + [sym_while] = STATE(598), + [sym_for] = STATE(598), + [sym_transform] = STATE(598), + [sym_filter] = STATE(598), + [sym_find] = STATE(598), + [sym_remove] = STATE(598), + [sym_reduce] = STATE(598), + [sym_select] = STATE(598), + [sym_insert] = STATE(598), + [sym_async] = STATE(598), + [sym_identifier_list] = STATE(1100), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(181), + [sym_identifier] = ACTIONS(445), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2486), - [anon_sym_RBRACE] = ACTIONS(2481), - [anon_sym_SEMI] = ACTIONS(2481), - [anon_sym_LPAREN] = ACTIONS(2489), - [anon_sym_RPAREN] = ACTIONS(2481), - [sym_integer] = ACTIONS(2492), - [sym_float] = ACTIONS(2495), - [sym_string] = ACTIONS(2495), - [anon_sym_true] = ACTIONS(2498), - [anon_sym_false] = ACTIONS(2498), - [anon_sym_LBRACK] = ACTIONS(2501), - [anon_sym_COLON] = ACTIONS(2481), - [anon_sym_DOT_DOT] = ACTIONS(2481), - [anon_sym_PLUS] = ACTIONS(2481), - [anon_sym_DASH] = ACTIONS(2504), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_SLASH] = ACTIONS(2481), - [anon_sym_PERCENT] = ACTIONS(2481), - [anon_sym_EQ_EQ] = ACTIONS(2481), - [anon_sym_BANG_EQ] = ACTIONS(2481), - [anon_sym_AMP_AMP] = ACTIONS(2481), - [anon_sym_PIPE_PIPE] = ACTIONS(2481), - [anon_sym_GT] = ACTIONS(2504), - [anon_sym_LT] = ACTIONS(2504), - [anon_sym_GT_EQ] = ACTIONS(2481), - [anon_sym_LT_EQ] = ACTIONS(2481), - [anon_sym_if] = ACTIONS(2504), - [anon_sym_elseif] = ACTIONS(2481), - [anon_sym_else] = ACTIONS(2504), - [anon_sym_match] = ACTIONS(2504), - [anon_sym_EQ_GT] = ACTIONS(2506), - [anon_sym_while] = ACTIONS(2504), - [anon_sym_for] = ACTIONS(2504), - [anon_sym_asyncfor] = ACTIONS(2481), - [anon_sym_transform] = ACTIONS(2504), - [anon_sym_filter] = ACTIONS(2504), - [anon_sym_find] = ACTIONS(2504), - [anon_sym_remove] = ACTIONS(2504), - [anon_sym_reduce] = ACTIONS(2504), - [anon_sym_select] = ACTIONS(2504), - [anon_sym_insert] = ACTIONS(2504), - [anon_sym_async] = ACTIONS(2504), - [anon_sym_PIPE] = ACTIONS(2509), - [anon_sym_table] = ACTIONS(2512), - [anon_sym_assert] = ACTIONS(2515), - [anon_sym_assert_equal] = ACTIONS(2515), - [anon_sym_download] = ACTIONS(2515), - [anon_sym_help] = ACTIONS(2515), - [anon_sym_length] = ACTIONS(2515), - [anon_sym_output] = ACTIONS(2515), - [anon_sym_output_error] = ACTIONS(2515), - [anon_sym_type] = ACTIONS(2515), - [anon_sym_append] = ACTIONS(2515), - [anon_sym_metadata] = ACTIONS(2515), - [anon_sym_move] = ACTIONS(2515), - [anon_sym_read] = ACTIONS(2515), - [anon_sym_workdir] = ACTIONS(2515), - [anon_sym_write] = ACTIONS(2515), - [anon_sym_from_json] = ACTIONS(2515), - [anon_sym_to_json] = ACTIONS(2515), - [anon_sym_to_string] = ACTIONS(2515), - [anon_sym_to_float] = ACTIONS(2515), - [anon_sym_bash] = ACTIONS(2515), - [anon_sym_fish] = ACTIONS(2515), - [anon_sym_raw] = ACTIONS(2515), - [anon_sym_sh] = ACTIONS(2515), - [anon_sym_zsh] = ACTIONS(2515), - [anon_sym_random] = ACTIONS(2515), - [anon_sym_random_boolean] = ACTIONS(2515), - [anon_sym_random_float] = ACTIONS(2515), - [anon_sym_random_integer] = ACTIONS(2515), - [anon_sym_columns] = ACTIONS(2515), - [anon_sym_rows] = ACTIONS(2515), - [anon_sym_reverse] = ACTIONS(2515), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_if] = ACTIONS(449), + [anon_sym_match] = ACTIONS(451), + [anon_sym_EQ_GT] = ACTIONS(123), + [anon_sym_while] = ACTIONS(453), + [anon_sym_for] = ACTIONS(455), + [anon_sym_asyncfor] = ACTIONS(457), + [anon_sym_transform] = ACTIONS(459), + [anon_sym_filter] = ACTIONS(461), + [anon_sym_find] = ACTIONS(463), + [anon_sym_remove] = ACTIONS(465), + [anon_sym_reduce] = ACTIONS(467), + [anon_sym_select] = ACTIONS(469), + [anon_sym_insert] = ACTIONS(143), + [anon_sym_async] = ACTIONS(471), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(147), + [anon_sym_assert] = ACTIONS(149), + [anon_sym_assert_equal] = ACTIONS(149), + [anon_sym_download] = ACTIONS(149), + [anon_sym_help] = ACTIONS(149), + [anon_sym_length] = ACTIONS(149), + [anon_sym_output] = ACTIONS(149), + [anon_sym_output_error] = ACTIONS(149), + [anon_sym_type] = ACTIONS(149), + [anon_sym_append] = ACTIONS(149), + [anon_sym_metadata] = ACTIONS(149), + [anon_sym_move] = ACTIONS(149), + [anon_sym_read] = ACTIONS(149), + [anon_sym_workdir] = ACTIONS(149), + [anon_sym_write] = ACTIONS(149), + [anon_sym_from_json] = ACTIONS(149), + [anon_sym_to_json] = ACTIONS(149), + [anon_sym_to_string] = ACTIONS(149), + [anon_sym_to_float] = ACTIONS(149), + [anon_sym_bash] = ACTIONS(149), + [anon_sym_fish] = ACTIONS(149), + [anon_sym_raw] = ACTIONS(149), + [anon_sym_sh] = ACTIONS(149), + [anon_sym_zsh] = ACTIONS(149), + [anon_sym_random] = ACTIONS(149), + [anon_sym_random_boolean] = ACTIONS(149), + [anon_sym_random_float] = ACTIONS(149), + [anon_sym_random_integer] = ACTIONS(149), + [anon_sym_columns] = ACTIONS(149), + [anon_sym_rows] = ACTIONS(149), + [anon_sym_reverse] = ACTIONS(149), }, [333] = { - [sym_expression] = STATE(1586), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_logic] = STATE(1539), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(332), - [ts_builtin_sym_end] = ACTIONS(2449), - [sym_identifier] = ACTIONS(2451), + [sym_statement] = STATE(500), + [sym_expression] = STATE(402), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(348), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1104), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [sym_identifier] = ACTIONS(187), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_RBRACE] = ACTIONS(2449), - [anon_sym_SEMI] = ACTIONS(2449), - [anon_sym_LPAREN] = ACTIONS(2455), - [anon_sym_RPAREN] = ACTIONS(2449), - [sym_integer] = ACTIONS(2457), - [sym_float] = ACTIONS(2459), - [sym_string] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(2461), - [anon_sym_false] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_COLON] = ACTIONS(2449), - [anon_sym_DOT_DOT] = ACTIONS(2449), - [anon_sym_PLUS] = ACTIONS(2449), - [anon_sym_DASH] = ACTIONS(2465), - [anon_sym_STAR] = ACTIONS(2449), - [anon_sym_SLASH] = ACTIONS(2449), - [anon_sym_PERCENT] = ACTIONS(2449), - [anon_sym_EQ_EQ] = ACTIONS(2449), - [anon_sym_BANG_EQ] = ACTIONS(2449), - [anon_sym_AMP_AMP] = ACTIONS(2449), - [anon_sym_PIPE_PIPE] = ACTIONS(2449), - [anon_sym_GT] = ACTIONS(2465), - [anon_sym_LT] = ACTIONS(2465), - [anon_sym_GT_EQ] = ACTIONS(2449), - [anon_sym_LT_EQ] = ACTIONS(2449), - [anon_sym_if] = ACTIONS(2465), - [anon_sym_elseif] = ACTIONS(2449), - [anon_sym_else] = ACTIONS(2465), - [anon_sym_match] = ACTIONS(2465), - [anon_sym_EQ_GT] = ACTIONS(2467), - [anon_sym_while] = ACTIONS(2465), - [anon_sym_for] = ACTIONS(2465), - [anon_sym_asyncfor] = ACTIONS(2449), - [anon_sym_transform] = ACTIONS(2465), - [anon_sym_filter] = ACTIONS(2465), - [anon_sym_find] = ACTIONS(2465), - [anon_sym_remove] = ACTIONS(2465), - [anon_sym_reduce] = ACTIONS(2465), - [anon_sym_select] = ACTIONS(2465), - [anon_sym_insert] = ACTIONS(2465), - [anon_sym_async] = ACTIONS(2465), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(2469), - [anon_sym_assert] = ACTIONS(2471), - [anon_sym_assert_equal] = ACTIONS(2471), - [anon_sym_download] = ACTIONS(2471), - [anon_sym_help] = ACTIONS(2471), - [anon_sym_length] = ACTIONS(2471), - [anon_sym_output] = ACTIONS(2471), - [anon_sym_output_error] = ACTIONS(2471), - [anon_sym_type] = ACTIONS(2471), - [anon_sym_append] = ACTIONS(2471), - [anon_sym_metadata] = ACTIONS(2471), - [anon_sym_move] = ACTIONS(2471), - [anon_sym_read] = ACTIONS(2471), - [anon_sym_workdir] = ACTIONS(2471), - [anon_sym_write] = ACTIONS(2471), - [anon_sym_from_json] = ACTIONS(2471), - [anon_sym_to_json] = ACTIONS(2471), - [anon_sym_to_string] = ACTIONS(2471), - [anon_sym_to_float] = ACTIONS(2471), - [anon_sym_bash] = ACTIONS(2471), - [anon_sym_fish] = ACTIONS(2471), - [anon_sym_raw] = ACTIONS(2471), - [anon_sym_sh] = ACTIONS(2471), - [anon_sym_zsh] = ACTIONS(2471), - [anon_sym_random] = ACTIONS(2471), - [anon_sym_random_boolean] = ACTIONS(2471), - [anon_sym_random_float] = ACTIONS(2471), - [anon_sym_random_integer] = ACTIONS(2471), - [anon_sym_columns] = ACTIONS(2471), - [anon_sym_rows] = ACTIONS(2471), - [anon_sym_reverse] = ACTIONS(2471), + [anon_sym_LBRACE] = ACTIONS(1309), + [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(79), + [anon_sym_match] = ACTIONS(193), + [anon_sym_EQ_GT] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_for] = ACTIONS(199), + [anon_sym_asyncfor] = ACTIONS(201), + [anon_sym_transform] = ACTIONS(203), + [anon_sym_filter] = ACTIONS(205), + [anon_sym_find] = ACTIONS(207), + [anon_sym_remove] = ACTIONS(209), + [anon_sym_reduce] = ACTIONS(211), + [anon_sym_select] = ACTIONS(213), + [anon_sym_insert] = ACTIONS(215), + [anon_sym_async] = ACTIONS(217), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(219), + [anon_sym_assert] = ACTIONS(221), + [anon_sym_assert_equal] = ACTIONS(221), + [anon_sym_download] = ACTIONS(221), + [anon_sym_help] = ACTIONS(221), + [anon_sym_length] = ACTIONS(221), + [anon_sym_output] = ACTIONS(221), + [anon_sym_output_error] = ACTIONS(221), + [anon_sym_type] = ACTIONS(221), + [anon_sym_append] = ACTIONS(221), + [anon_sym_metadata] = ACTIONS(221), + [anon_sym_move] = ACTIONS(221), + [anon_sym_read] = ACTIONS(221), + [anon_sym_workdir] = ACTIONS(221), + [anon_sym_write] = ACTIONS(221), + [anon_sym_from_json] = ACTIONS(221), + [anon_sym_to_json] = ACTIONS(221), + [anon_sym_to_string] = ACTIONS(221), + [anon_sym_to_float] = ACTIONS(221), + [anon_sym_bash] = ACTIONS(221), + [anon_sym_fish] = ACTIONS(221), + [anon_sym_raw] = ACTIONS(221), + [anon_sym_sh] = ACTIONS(221), + [anon_sym_zsh] = ACTIONS(221), + [anon_sym_random] = ACTIONS(221), + [anon_sym_random_boolean] = ACTIONS(221), + [anon_sym_random_float] = ACTIONS(221), + [anon_sym_random_integer] = ACTIONS(221), + [anon_sym_columns] = ACTIONS(221), + [anon_sym_rows] = ACTIONS(221), + [anon_sym_reverse] = ACTIONS(221), }, [334] = { - [sym_expression] = STATE(755), - [sym__expression_kind] = STATE(866), - [aux_sym__expression_list] = STATE(334), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(866), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_identifier_list] = STATE(1752), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(338), - [ts_builtin_sym_end] = ACTIONS(2518), - [sym_identifier] = ACTIONS(2646), + [sym_statement] = STATE(635), + [sym_expression] = STATE(535), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(561), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [sym_identifier] = ACTIONS(5), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2649), - [anon_sym_RBRACE] = ACTIONS(2518), - [anon_sym_SEMI] = ACTIONS(2518), - [anon_sym_LPAREN] = ACTIONS(2652), - [anon_sym_RPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2518), - [sym_integer] = ACTIONS(2655), - [sym_float] = ACTIONS(2658), - [sym_string] = ACTIONS(2658), - [anon_sym_true] = ACTIONS(2661), - [anon_sym_false] = ACTIONS(2661), - [anon_sym_LBRACK] = ACTIONS(2664), - [anon_sym_RBRACK] = ACTIONS(2518), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_DOT_DOT] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2541), - [anon_sym_STAR] = ACTIONS(2518), - [anon_sym_SLASH] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_EQ_EQ] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_GT] = ACTIONS(2541), - [anon_sym_LT] = ACTIONS(2541), - [anon_sym_GT_EQ] = ACTIONS(2518), - [anon_sym_LT_EQ] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2541), - [anon_sym_match] = ACTIONS(2541), - [anon_sym_EQ_GT] = ACTIONS(2667), - [anon_sym_while] = ACTIONS(2541), - [anon_sym_for] = ACTIONS(2541), - [anon_sym_asyncfor] = ACTIONS(2518), - [anon_sym_transform] = ACTIONS(2541), - [anon_sym_filter] = ACTIONS(2541), - [anon_sym_find] = ACTIONS(2541), - [anon_sym_remove] = ACTIONS(2541), - [anon_sym_reduce] = ACTIONS(2541), - [anon_sym_select] = ACTIONS(2541), - [anon_sym_insert] = ACTIONS(2541), - [anon_sym_async] = ACTIONS(2541), - [anon_sym_PIPE] = ACTIONS(2546), - [anon_sym_table] = ACTIONS(2670), - [anon_sym_assert] = ACTIONS(2673), - [anon_sym_assert_equal] = ACTIONS(2673), - [anon_sym_download] = ACTIONS(2673), - [anon_sym_help] = ACTIONS(2673), - [anon_sym_length] = ACTIONS(2673), - [anon_sym_output] = ACTIONS(2673), - [anon_sym_output_error] = ACTIONS(2673), - [anon_sym_type] = ACTIONS(2673), - [anon_sym_append] = ACTIONS(2673), - [anon_sym_metadata] = ACTIONS(2673), - [anon_sym_move] = ACTIONS(2673), - [anon_sym_read] = ACTIONS(2673), - [anon_sym_workdir] = ACTIONS(2673), - [anon_sym_write] = ACTIONS(2673), - [anon_sym_from_json] = ACTIONS(2673), - [anon_sym_to_json] = ACTIONS(2673), - [anon_sym_to_string] = ACTIONS(2673), - [anon_sym_to_float] = ACTIONS(2673), - [anon_sym_bash] = ACTIONS(2673), - [anon_sym_fish] = ACTIONS(2673), - [anon_sym_raw] = ACTIONS(2673), - [anon_sym_sh] = ACTIONS(2673), - [anon_sym_zsh] = ACTIONS(2673), - [anon_sym_random] = ACTIONS(2673), - [anon_sym_random_boolean] = ACTIONS(2673), - [anon_sym_random_float] = ACTIONS(2673), - [anon_sym_random_integer] = ACTIONS(2673), - [anon_sym_columns] = ACTIONS(2673), - [anon_sym_rows] = ACTIONS(2673), - [anon_sym_reverse] = ACTIONS(2673), + [anon_sym_LBRACE] = ACTIONS(1309), + [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_asyncfor] = 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_async] = ACTIONS(45), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [335] = { - [sym_expression] = STATE(718), - [sym__expression_kind] = STATE(706), - [aux_sym__expression_list] = STATE(335), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_logic] = STATE(706), - [sym_identifier_list] = STATE(1813), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(311), - [ts_builtin_sym_end] = ACTIONS(2518), - [sym_identifier] = ACTIONS(2564), + [sym_statement] = STATE(500), + [sym_expression] = STATE(516), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(433), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1143), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(222), + [sym_identifier] = ACTIONS(867), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2567), - [anon_sym_RBRACE] = ACTIONS(2518), - [anon_sym_SEMI] = ACTIONS(2518), - [anon_sym_LPAREN] = ACTIONS(2570), - [anon_sym_RPAREN] = ACTIONS(2518), - [sym_integer] = ACTIONS(2573), - [sym_float] = ACTIONS(2576), - [sym_string] = ACTIONS(2576), - [anon_sym_true] = ACTIONS(2579), - [anon_sym_false] = ACTIONS(2579), - [anon_sym_LBRACK] = ACTIONS(2582), - [anon_sym_EQ] = ACTIONS(2541), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2541), - [anon_sym_DASH] = ACTIONS(2541), - [anon_sym_STAR] = ACTIONS(2518), - [anon_sym_SLASH] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_EQ_EQ] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_GT] = ACTIONS(2541), - [anon_sym_LT] = ACTIONS(2541), - [anon_sym_GT_EQ] = ACTIONS(2518), - [anon_sym_LT_EQ] = ACTIONS(2518), - [anon_sym_PLUS_EQ] = ACTIONS(2518), - [anon_sym_DASH_EQ] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2541), - [anon_sym_match] = ACTIONS(2541), - [anon_sym_EQ_GT] = ACTIONS(2628), - [anon_sym_while] = ACTIONS(2541), - [anon_sym_for] = ACTIONS(2541), - [anon_sym_asyncfor] = ACTIONS(2518), - [anon_sym_transform] = ACTIONS(2541), - [anon_sym_filter] = ACTIONS(2541), - [anon_sym_find] = ACTIONS(2541), - [anon_sym_remove] = ACTIONS(2541), - [anon_sym_reduce] = ACTIONS(2541), - [anon_sym_select] = ACTIONS(2541), - [anon_sym_insert] = ACTIONS(2541), - [anon_sym_async] = ACTIONS(2541), - [anon_sym_PIPE] = ACTIONS(2546), - [anon_sym_table] = ACTIONS(2631), - [anon_sym_assert] = ACTIONS(2634), - [anon_sym_assert_equal] = ACTIONS(2634), - [anon_sym_download] = ACTIONS(2634), - [anon_sym_help] = ACTIONS(2634), - [anon_sym_length] = ACTIONS(2634), - [anon_sym_output] = ACTIONS(2634), - [anon_sym_output_error] = ACTIONS(2634), - [anon_sym_type] = ACTIONS(2634), - [anon_sym_append] = ACTIONS(2634), - [anon_sym_metadata] = ACTIONS(2634), - [anon_sym_move] = ACTIONS(2634), - [anon_sym_read] = ACTIONS(2634), - [anon_sym_workdir] = ACTIONS(2634), - [anon_sym_write] = ACTIONS(2634), - [anon_sym_from_json] = ACTIONS(2634), - [anon_sym_to_json] = ACTIONS(2634), - [anon_sym_to_string] = ACTIONS(2634), - [anon_sym_to_float] = ACTIONS(2634), - [anon_sym_bash] = ACTIONS(2634), - [anon_sym_fish] = ACTIONS(2634), - [anon_sym_raw] = ACTIONS(2634), - [anon_sym_sh] = ACTIONS(2634), - [anon_sym_zsh] = ACTIONS(2634), - [anon_sym_random] = ACTIONS(2634), - [anon_sym_random_boolean] = ACTIONS(2634), - [anon_sym_random_float] = ACTIONS(2634), - [anon_sym_random_integer] = ACTIONS(2634), - [anon_sym_columns] = ACTIONS(2634), - [anon_sym_rows] = ACTIONS(2634), - [anon_sym_reverse] = ACTIONS(2634), + [anon_sym_LBRACE] = ACTIONS(1309), + [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(227), + [anon_sym_match] = ACTIONS(871), + [anon_sym_EQ_GT] = ACTIONS(23), + [anon_sym_while] = ACTIONS(873), + [anon_sym_for] = ACTIONS(875), + [anon_sym_asyncfor] = ACTIONS(877), + [anon_sym_transform] = ACTIONS(879), + [anon_sym_filter] = ACTIONS(881), + [anon_sym_find] = ACTIONS(883), + [anon_sym_remove] = ACTIONS(885), + [anon_sym_reduce] = ACTIONS(887), + [anon_sym_select] = ACTIONS(889), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_async] = ACTIONS(891), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(49), + [anon_sym_assert] = ACTIONS(51), + [anon_sym_assert_equal] = ACTIONS(51), + [anon_sym_download] = ACTIONS(51), + [anon_sym_help] = ACTIONS(51), + [anon_sym_length] = ACTIONS(51), + [anon_sym_output] = ACTIONS(51), + [anon_sym_output_error] = ACTIONS(51), + [anon_sym_type] = ACTIONS(51), + [anon_sym_append] = ACTIONS(51), + [anon_sym_metadata] = ACTIONS(51), + [anon_sym_move] = ACTIONS(51), + [anon_sym_read] = ACTIONS(51), + [anon_sym_workdir] = ACTIONS(51), + [anon_sym_write] = ACTIONS(51), + [anon_sym_from_json] = ACTIONS(51), + [anon_sym_to_json] = ACTIONS(51), + [anon_sym_to_string] = ACTIONS(51), + [anon_sym_to_float] = ACTIONS(51), + [anon_sym_bash] = ACTIONS(51), + [anon_sym_fish] = ACTIONS(51), + [anon_sym_raw] = ACTIONS(51), + [anon_sym_sh] = ACTIONS(51), + [anon_sym_zsh] = ACTIONS(51), + [anon_sym_random] = ACTIONS(51), + [anon_sym_random_boolean] = ACTIONS(51), + [anon_sym_random_float] = ACTIONS(51), + [anon_sym_random_integer] = ACTIONS(51), + [anon_sym_columns] = ACTIONS(51), + [anon_sym_rows] = ACTIONS(51), + [anon_sym_reverse] = ACTIONS(51), }, [336] = { - [sym_expression] = STATE(755), - [sym__expression_kind] = STATE(866), - [aux_sym__expression_list] = STATE(334), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(866), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_identifier_list] = STATE(1752), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(338), - [ts_builtin_sym_end] = ACTIONS(2443), - [sym_identifier] = ACTIONS(2676), + [sym_statement] = STATE(500), + [sym_expression] = STATE(479), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(365), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1119), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(218), + [sym_identifier] = ACTIONS(524), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(2443), - [anon_sym_SEMI] = ACTIONS(2443), + [anon_sym_LBRACE] = ACTIONS(1309), [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(2443), - [anon_sym_COMMA] = ACTIONS(2443), [sym_integer] = ACTIONS(11), [sym_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(2443), - [anon_sym_COLON] = ACTIONS(2443), - [anon_sym_DOT_DOT] = ACTIONS(2443), - [anon_sym_PLUS] = ACTIONS(2443), - [anon_sym_DASH] = ACTIONS(2447), - [anon_sym_STAR] = ACTIONS(2443), - [anon_sym_SLASH] = ACTIONS(2443), - [anon_sym_PERCENT] = ACTIONS(2443), - [anon_sym_EQ_EQ] = ACTIONS(2443), - [anon_sym_BANG_EQ] = ACTIONS(2443), - [anon_sym_AMP_AMP] = ACTIONS(2443), - [anon_sym_PIPE_PIPE] = ACTIONS(2443), - [anon_sym_GT] = ACTIONS(2447), - [anon_sym_LT] = ACTIONS(2447), - [anon_sym_GT_EQ] = ACTIONS(2443), - [anon_sym_LT_EQ] = ACTIONS(2443), - [anon_sym_if] = ACTIONS(2447), - [anon_sym_match] = ACTIONS(2447), - [anon_sym_EQ_GT] = ACTIONS(883), - [anon_sym_while] = ACTIONS(2447), - [anon_sym_for] = ACTIONS(2447), - [anon_sym_asyncfor] = ACTIONS(2443), - [anon_sym_transform] = ACTIONS(2447), - [anon_sym_filter] = ACTIONS(2447), - [anon_sym_find] = ACTIONS(2447), - [anon_sym_remove] = ACTIONS(2447), - [anon_sym_reduce] = ACTIONS(2447), - [anon_sym_select] = ACTIONS(2447), - [anon_sym_insert] = ACTIONS(2447), - [anon_sym_async] = ACTIONS(2447), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(907), - [anon_sym_assert] = ACTIONS(909), - [anon_sym_assert_equal] = ACTIONS(909), - [anon_sym_download] = ACTIONS(909), - [anon_sym_help] = ACTIONS(909), - [anon_sym_length] = ACTIONS(909), - [anon_sym_output] = ACTIONS(909), - [anon_sym_output_error] = ACTIONS(909), - [anon_sym_type] = ACTIONS(909), - [anon_sym_append] = ACTIONS(909), - [anon_sym_metadata] = ACTIONS(909), - [anon_sym_move] = ACTIONS(909), - [anon_sym_read] = ACTIONS(909), - [anon_sym_workdir] = ACTIONS(909), - [anon_sym_write] = ACTIONS(909), - [anon_sym_from_json] = ACTIONS(909), - [anon_sym_to_json] = ACTIONS(909), - [anon_sym_to_string] = ACTIONS(909), - [anon_sym_to_float] = ACTIONS(909), - [anon_sym_bash] = ACTIONS(909), - [anon_sym_fish] = ACTIONS(909), - [anon_sym_raw] = ACTIONS(909), - [anon_sym_sh] = ACTIONS(909), - [anon_sym_zsh] = ACTIONS(909), - [anon_sym_random] = ACTIONS(909), - [anon_sym_random_boolean] = ACTIONS(909), - [anon_sym_random_float] = ACTIONS(909), - [anon_sym_random_integer] = ACTIONS(909), - [anon_sym_columns] = ACTIONS(909), - [anon_sym_rows] = ACTIONS(909), - [anon_sym_reverse] = ACTIONS(909), + [anon_sym_if] = ACTIONS(155), + [anon_sym_match] = ACTIONS(528), + [anon_sym_EQ_GT] = ACTIONS(530), + [anon_sym_while] = ACTIONS(532), + [anon_sym_for] = ACTIONS(534), + [anon_sym_asyncfor] = ACTIONS(536), + [anon_sym_transform] = ACTIONS(538), + [anon_sym_filter] = ACTIONS(540), + [anon_sym_find] = ACTIONS(542), + [anon_sym_remove] = ACTIONS(544), + [anon_sym_reduce] = ACTIONS(546), + [anon_sym_select] = ACTIONS(548), + [anon_sym_insert] = ACTIONS(550), + [anon_sym_async] = ACTIONS(552), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(554), + [anon_sym_assert] = ACTIONS(556), + [anon_sym_assert_equal] = ACTIONS(556), + [anon_sym_download] = ACTIONS(556), + [anon_sym_help] = ACTIONS(556), + [anon_sym_length] = ACTIONS(556), + [anon_sym_output] = ACTIONS(556), + [anon_sym_output_error] = ACTIONS(556), + [anon_sym_type] = ACTIONS(556), + [anon_sym_append] = ACTIONS(556), + [anon_sym_metadata] = ACTIONS(556), + [anon_sym_move] = ACTIONS(556), + [anon_sym_read] = ACTIONS(556), + [anon_sym_workdir] = ACTIONS(556), + [anon_sym_write] = ACTIONS(556), + [anon_sym_from_json] = ACTIONS(556), + [anon_sym_to_json] = ACTIONS(556), + [anon_sym_to_string] = ACTIONS(556), + [anon_sym_to_float] = ACTIONS(556), + [anon_sym_bash] = ACTIONS(556), + [anon_sym_fish] = ACTIONS(556), + [anon_sym_raw] = ACTIONS(556), + [anon_sym_sh] = ACTIONS(556), + [anon_sym_zsh] = ACTIONS(556), + [anon_sym_random] = ACTIONS(556), + [anon_sym_random_boolean] = ACTIONS(556), + [anon_sym_random_float] = ACTIONS(556), + [anon_sym_random_integer] = ACTIONS(556), + [anon_sym_columns] = ACTIONS(556), + [anon_sym_rows] = ACTIONS(556), + [anon_sym_reverse] = ACTIONS(556), }, [337] = { - [sym_expression] = STATE(755), - [sym__expression_kind] = STATE(866), - [aux_sym__expression_list] = STATE(334), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(866), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_identifier_list] = STATE(1752), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(338), - [ts_builtin_sym_end] = ACTIONS(2477), - [sym_identifier] = ACTIONS(2676), + [sym_statement] = STATE(500), + [sym_expression] = STATE(449), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(461), + [sym_if_else] = STATE(461), + [sym_if] = STATE(353), + [sym_match] = STATE(461), + [sym_while] = STATE(461), + [sym_for] = STATE(461), + [sym_transform] = STATE(461), + [sym_filter] = STATE(461), + [sym_find] = STATE(461), + [sym_remove] = STATE(461), + [sym_reduce] = STATE(461), + [sym_select] = STATE(461), + [sym_insert] = STATE(461), + [sym_async] = STATE(461), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [sym_identifier] = ACTIONS(259), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(2477), - [anon_sym_SEMI] = ACTIONS(2477), + [anon_sym_LBRACE] = ACTIONS(1309), [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(2477), - [anon_sym_COMMA] = ACTIONS(2477), [sym_integer] = ACTIONS(11), [sym_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(2477), - [anon_sym_COLON] = ACTIONS(2477), - [anon_sym_DOT_DOT] = ACTIONS(2477), - [anon_sym_PLUS] = ACTIONS(2477), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2477), - [anon_sym_SLASH] = ACTIONS(2477), - [anon_sym_PERCENT] = ACTIONS(2477), - [anon_sym_EQ_EQ] = ACTIONS(2477), - [anon_sym_BANG_EQ] = ACTIONS(2477), - [anon_sym_AMP_AMP] = ACTIONS(2477), - [anon_sym_PIPE_PIPE] = ACTIONS(2477), - [anon_sym_GT] = ACTIONS(2479), - [anon_sym_LT] = ACTIONS(2479), - [anon_sym_GT_EQ] = ACTIONS(2477), - [anon_sym_LT_EQ] = ACTIONS(2477), - [anon_sym_if] = ACTIONS(2479), - [anon_sym_match] = ACTIONS(2479), - [anon_sym_EQ_GT] = ACTIONS(883), - [anon_sym_while] = ACTIONS(2479), - [anon_sym_for] = ACTIONS(2479), - [anon_sym_asyncfor] = ACTIONS(2477), - [anon_sym_transform] = ACTIONS(2479), - [anon_sym_filter] = ACTIONS(2479), - [anon_sym_find] = ACTIONS(2479), - [anon_sym_remove] = ACTIONS(2479), - [anon_sym_reduce] = ACTIONS(2479), - [anon_sym_select] = ACTIONS(2479), - [anon_sym_insert] = ACTIONS(2479), - [anon_sym_async] = ACTIONS(2479), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(907), - [anon_sym_assert] = ACTIONS(909), - [anon_sym_assert_equal] = ACTIONS(909), - [anon_sym_download] = ACTIONS(909), - [anon_sym_help] = ACTIONS(909), - [anon_sym_length] = ACTIONS(909), - [anon_sym_output] = ACTIONS(909), - [anon_sym_output_error] = ACTIONS(909), - [anon_sym_type] = ACTIONS(909), - [anon_sym_append] = ACTIONS(909), - [anon_sym_metadata] = ACTIONS(909), - [anon_sym_move] = ACTIONS(909), - [anon_sym_read] = ACTIONS(909), - [anon_sym_workdir] = ACTIONS(909), - [anon_sym_write] = ACTIONS(909), - [anon_sym_from_json] = ACTIONS(909), - [anon_sym_to_json] = ACTIONS(909), - [anon_sym_to_string] = ACTIONS(909), - [anon_sym_to_float] = ACTIONS(909), - [anon_sym_bash] = ACTIONS(909), - [anon_sym_fish] = ACTIONS(909), - [anon_sym_raw] = ACTIONS(909), - [anon_sym_sh] = ACTIONS(909), - [anon_sym_zsh] = ACTIONS(909), - [anon_sym_random] = ACTIONS(909), - [anon_sym_random_boolean] = ACTIONS(909), - [anon_sym_random_float] = ACTIONS(909), - [anon_sym_random_integer] = ACTIONS(909), - [anon_sym_columns] = ACTIONS(909), - [anon_sym_rows] = ACTIONS(909), - [anon_sym_reverse] = ACTIONS(909), + [anon_sym_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(263), + [anon_sym_EQ_GT] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_for] = ACTIONS(269), + [anon_sym_asyncfor] = ACTIONS(271), + [anon_sym_transform] = ACTIONS(273), + [anon_sym_filter] = ACTIONS(275), + [anon_sym_find] = ACTIONS(277), + [anon_sym_remove] = ACTIONS(279), + [anon_sym_reduce] = ACTIONS(281), + [anon_sym_select] = ACTIONS(283), + [anon_sym_insert] = ACTIONS(285), + [anon_sym_async] = ACTIONS(287), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(289), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_assert_equal] = ACTIONS(291), + [anon_sym_download] = ACTIONS(291), + [anon_sym_help] = ACTIONS(291), + [anon_sym_length] = ACTIONS(291), + [anon_sym_output] = ACTIONS(291), + [anon_sym_output_error] = ACTIONS(291), + [anon_sym_type] = ACTIONS(291), + [anon_sym_append] = ACTIONS(291), + [anon_sym_metadata] = ACTIONS(291), + [anon_sym_move] = ACTIONS(291), + [anon_sym_read] = ACTIONS(291), + [anon_sym_workdir] = ACTIONS(291), + [anon_sym_write] = ACTIONS(291), + [anon_sym_from_json] = ACTIONS(291), + [anon_sym_to_json] = ACTIONS(291), + [anon_sym_to_string] = ACTIONS(291), + [anon_sym_to_float] = ACTIONS(291), + [anon_sym_bash] = ACTIONS(291), + [anon_sym_fish] = ACTIONS(291), + [anon_sym_raw] = ACTIONS(291), + [anon_sym_sh] = ACTIONS(291), + [anon_sym_zsh] = ACTIONS(291), + [anon_sym_random] = ACTIONS(291), + [anon_sym_random_boolean] = ACTIONS(291), + [anon_sym_random_float] = ACTIONS(291), + [anon_sym_random_integer] = ACTIONS(291), + [anon_sym_columns] = ACTIONS(291), + [anon_sym_rows] = ACTIONS(291), + [anon_sym_reverse] = ACTIONS(291), }, [338] = { - [sym_expression] = STATE(755), - [sym__expression_kind] = STATE(866), - [aux_sym__expression_list] = STATE(336), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(866), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_identifier_list] = STATE(1752), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(338), - [ts_builtin_sym_end] = ACTIONS(2473), - [sym_identifier] = ACTIONS(2676), + [sym_statement] = STATE(1036), + [sym_expression] = STATE(940), + [sym__expression_kind] = STATE(919), + [sym_value] = STATE(919), + [sym_boolean] = STATE(936), + [sym_list] = STATE(936), + [sym_map] = STATE(936), + [sym_index] = STATE(919), + [sym_math] = STATE(919), + [sym_logic] = STATE(919), + [sym_assignment] = STATE(1016), + [sym_if_else] = STATE(1016), + [sym_if] = STATE(1005), + [sym_match] = STATE(1016), + [sym_while] = STATE(1016), + [sym_for] = STATE(1016), + [sym_transform] = STATE(1016), + [sym_filter] = STATE(1016), + [sym_find] = STATE(1016), + [sym_remove] = STATE(1016), + [sym_reduce] = STATE(1016), + [sym_select] = STATE(1016), + [sym_insert] = STATE(1016), + [sym_async] = STATE(1016), + [sym_identifier_list] = STATE(1101), + [sym_table] = STATE(936), + [sym_function] = STATE(936), + [sym_function_call] = STATE(919), + [sym__context_defined_function] = STATE(934), + [sym_built_in_function] = STATE(934), + [sym__built_in_function_name] = STATE(429), + [sym_identifier] = ACTIONS(1895), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(2473), - [anon_sym_SEMI] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(2473), - [anon_sym_COMMA] = ACTIONS(2473), - [sym_integer] = ACTIONS(11), - [sym_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(2473), - [anon_sym_COLON] = ACTIONS(2473), - [anon_sym_DOT_DOT] = ACTIONS(2473), - [anon_sym_PLUS] = ACTIONS(2473), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2473), - [anon_sym_SLASH] = ACTIONS(2473), - [anon_sym_PERCENT] = ACTIONS(2473), - [anon_sym_EQ_EQ] = ACTIONS(2473), - [anon_sym_BANG_EQ] = ACTIONS(2473), - [anon_sym_AMP_AMP] = ACTIONS(2473), - [anon_sym_PIPE_PIPE] = ACTIONS(2473), - [anon_sym_GT] = ACTIONS(2475), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_GT_EQ] = ACTIONS(2473), - [anon_sym_LT_EQ] = ACTIONS(2473), - [anon_sym_if] = ACTIONS(2475), - [anon_sym_match] = ACTIONS(2475), - [anon_sym_EQ_GT] = ACTIONS(883), - [anon_sym_while] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2475), - [anon_sym_asyncfor] = ACTIONS(2473), - [anon_sym_transform] = ACTIONS(2475), - [anon_sym_filter] = ACTIONS(2475), - [anon_sym_find] = ACTIONS(2475), - [anon_sym_remove] = ACTIONS(2475), - [anon_sym_reduce] = ACTIONS(2475), - [anon_sym_select] = ACTIONS(2475), - [anon_sym_insert] = ACTIONS(2475), - [anon_sym_async] = ACTIONS(2475), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(907), - [anon_sym_assert] = ACTIONS(909), - [anon_sym_assert_equal] = ACTIONS(909), - [anon_sym_download] = ACTIONS(909), - [anon_sym_help] = ACTIONS(909), - [anon_sym_length] = ACTIONS(909), - [anon_sym_output] = ACTIONS(909), - [anon_sym_output_error] = ACTIONS(909), - [anon_sym_type] = ACTIONS(909), - [anon_sym_append] = ACTIONS(909), - [anon_sym_metadata] = ACTIONS(909), - [anon_sym_move] = ACTIONS(909), - [anon_sym_read] = ACTIONS(909), - [anon_sym_workdir] = ACTIONS(909), - [anon_sym_write] = ACTIONS(909), - [anon_sym_from_json] = ACTIONS(909), - [anon_sym_to_json] = ACTIONS(909), - [anon_sym_to_string] = ACTIONS(909), - [anon_sym_to_float] = ACTIONS(909), - [anon_sym_bash] = ACTIONS(909), - [anon_sym_fish] = ACTIONS(909), - [anon_sym_raw] = ACTIONS(909), - [anon_sym_sh] = ACTIONS(909), - [anon_sym_zsh] = ACTIONS(909), - [anon_sym_random] = ACTIONS(909), - [anon_sym_random_boolean] = ACTIONS(909), - [anon_sym_random_float] = ACTIONS(909), - [anon_sym_random_integer] = ACTIONS(909), - [anon_sym_columns] = ACTIONS(909), - [anon_sym_rows] = ACTIONS(909), - [anon_sym_reverse] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(1341), + [anon_sym_LPAREN] = ACTIONS(1343), + [sym_integer] = ACTIONS(1345), + [sym_float] = ACTIONS(1347), + [sym_string] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1349), + [anon_sym_false] = ACTIONS(1349), + [anon_sym_LBRACK] = ACTIONS(1351), + [anon_sym_if] = ACTIONS(1897), + [anon_sym_match] = ACTIONS(1899), + [anon_sym_EQ_GT] = ACTIONS(1901), + [anon_sym_while] = ACTIONS(1903), + [anon_sym_for] = ACTIONS(1905), + [anon_sym_asyncfor] = ACTIONS(1907), + [anon_sym_transform] = ACTIONS(1909), + [anon_sym_filter] = ACTIONS(1911), + [anon_sym_find] = ACTIONS(1913), + [anon_sym_remove] = ACTIONS(1915), + [anon_sym_reduce] = ACTIONS(1917), + [anon_sym_select] = ACTIONS(1919), + [anon_sym_insert] = ACTIONS(1921), + [anon_sym_async] = ACTIONS(1923), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(1925), + [anon_sym_assert] = ACTIONS(1927), + [anon_sym_assert_equal] = ACTIONS(1927), + [anon_sym_download] = ACTIONS(1927), + [anon_sym_help] = ACTIONS(1927), + [anon_sym_length] = ACTIONS(1927), + [anon_sym_output] = ACTIONS(1927), + [anon_sym_output_error] = ACTIONS(1927), + [anon_sym_type] = ACTIONS(1927), + [anon_sym_append] = ACTIONS(1927), + [anon_sym_metadata] = ACTIONS(1927), + [anon_sym_move] = ACTIONS(1927), + [anon_sym_read] = ACTIONS(1927), + [anon_sym_workdir] = ACTIONS(1927), + [anon_sym_write] = ACTIONS(1927), + [anon_sym_from_json] = ACTIONS(1927), + [anon_sym_to_json] = ACTIONS(1927), + [anon_sym_to_string] = ACTIONS(1927), + [anon_sym_to_float] = ACTIONS(1927), + [anon_sym_bash] = ACTIONS(1927), + [anon_sym_fish] = ACTIONS(1927), + [anon_sym_raw] = ACTIONS(1927), + [anon_sym_sh] = ACTIONS(1927), + [anon_sym_zsh] = ACTIONS(1927), + [anon_sym_random] = ACTIONS(1927), + [anon_sym_random_boolean] = ACTIONS(1927), + [anon_sym_random_float] = ACTIONS(1927), + [anon_sym_random_integer] = ACTIONS(1927), + [anon_sym_columns] = ACTIONS(1927), + [anon_sym_rows] = ACTIONS(1927), + [anon_sym_reverse] = ACTIONS(1927), }, [339] = { - [sym_expression] = STATE(1593), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_logic] = STATE(1539), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(339), - [ts_builtin_sym_end] = ACTIONS(2481), - [sym_identifier] = ACTIONS(2483), + [sym_statement] = STATE(423), + [sym_expression] = STATE(355), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(346), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1225), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(170), + [sym_identifier] = ACTIONS(55), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2486), - [anon_sym_RBRACE] = ACTIONS(2481), - [anon_sym_SEMI] = ACTIONS(2481), - [anon_sym_LPAREN] = ACTIONS(2489), - [anon_sym_RPAREN] = ACTIONS(2481), - [anon_sym_COMMA] = ACTIONS(2481), - [sym_integer] = ACTIONS(2492), - [sym_float] = ACTIONS(2495), - [sym_string] = ACTIONS(2495), - [anon_sym_true] = ACTIONS(2498), - [anon_sym_false] = ACTIONS(2498), - [anon_sym_LBRACK] = ACTIONS(2501), - [anon_sym_RBRACK] = ACTIONS(2481), - [anon_sym_COLON] = ACTIONS(2481), - [anon_sym_DOT_DOT] = ACTIONS(2481), - [anon_sym_PLUS] = ACTIONS(2481), - [anon_sym_DASH] = ACTIONS(2504), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_SLASH] = ACTIONS(2481), - [anon_sym_PERCENT] = ACTIONS(2481), - [anon_sym_EQ_EQ] = ACTIONS(2481), - [anon_sym_BANG_EQ] = ACTIONS(2481), - [anon_sym_AMP_AMP] = ACTIONS(2481), - [anon_sym_PIPE_PIPE] = ACTIONS(2481), - [anon_sym_GT] = ACTIONS(2504), - [anon_sym_LT] = ACTIONS(2504), - [anon_sym_GT_EQ] = ACTIONS(2481), - [anon_sym_LT_EQ] = ACTIONS(2481), - [anon_sym_if] = ACTIONS(2504), - [anon_sym_match] = ACTIONS(2504), - [anon_sym_EQ_GT] = ACTIONS(2506), - [anon_sym_while] = ACTIONS(2504), - [anon_sym_for] = ACTIONS(2504), - [anon_sym_asyncfor] = ACTIONS(2481), - [anon_sym_transform] = ACTIONS(2504), - [anon_sym_filter] = ACTIONS(2504), - [anon_sym_find] = ACTIONS(2504), - [anon_sym_remove] = ACTIONS(2504), - [anon_sym_reduce] = ACTIONS(2504), - [anon_sym_select] = ACTIONS(2504), - [anon_sym_insert] = ACTIONS(2504), - [anon_sym_async] = ACTIONS(2504), - [anon_sym_PIPE] = ACTIONS(2509), - [anon_sym_table] = ACTIONS(2512), - [anon_sym_assert] = ACTIONS(2515), - [anon_sym_assert_equal] = ACTIONS(2515), - [anon_sym_download] = ACTIONS(2515), - [anon_sym_help] = ACTIONS(2515), - [anon_sym_length] = ACTIONS(2515), - [anon_sym_output] = ACTIONS(2515), - [anon_sym_output_error] = ACTIONS(2515), - [anon_sym_type] = ACTIONS(2515), - [anon_sym_append] = ACTIONS(2515), - [anon_sym_metadata] = ACTIONS(2515), - [anon_sym_move] = ACTIONS(2515), - [anon_sym_read] = ACTIONS(2515), - [anon_sym_workdir] = ACTIONS(2515), - [anon_sym_write] = ACTIONS(2515), - [anon_sym_from_json] = ACTIONS(2515), - [anon_sym_to_json] = ACTIONS(2515), - [anon_sym_to_string] = ACTIONS(2515), - [anon_sym_to_float] = ACTIONS(2515), - [anon_sym_bash] = ACTIONS(2515), - [anon_sym_fish] = ACTIONS(2515), - [anon_sym_raw] = ACTIONS(2515), - [anon_sym_sh] = ACTIONS(2515), - [anon_sym_zsh] = ACTIONS(2515), - [anon_sym_random] = ACTIONS(2515), - [anon_sym_random_boolean] = ACTIONS(2515), - [anon_sym_random_float] = ACTIONS(2515), - [anon_sym_random_integer] = ACTIONS(2515), - [anon_sym_columns] = ACTIONS(2515), - [anon_sym_rows] = ACTIONS(2515), - [anon_sym_reverse] = ACTIONS(2515), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = 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_asyncfor] = ACTIONS(91), + [anon_sym_transform] = ACTIONS(93), + [anon_sym_filter] = ACTIONS(95), + [anon_sym_find] = ACTIONS(97), + [anon_sym_remove] = ACTIONS(99), + [anon_sym_reduce] = ACTIONS(101), + [anon_sym_select] = ACTIONS(103), + [anon_sym_insert] = ACTIONS(105), + [anon_sym_async] = ACTIONS(107), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(111), + [anon_sym_assert] = ACTIONS(113), + [anon_sym_assert_equal] = ACTIONS(113), + [anon_sym_download] = ACTIONS(113), + [anon_sym_help] = ACTIONS(113), + [anon_sym_length] = ACTIONS(113), + [anon_sym_output] = ACTIONS(113), + [anon_sym_output_error] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_append] = ACTIONS(113), + [anon_sym_metadata] = ACTIONS(113), + [anon_sym_move] = ACTIONS(113), + [anon_sym_read] = ACTIONS(113), + [anon_sym_workdir] = ACTIONS(113), + [anon_sym_write] = ACTIONS(113), + [anon_sym_from_json] = ACTIONS(113), + [anon_sym_to_json] = ACTIONS(113), + [anon_sym_to_string] = ACTIONS(113), + [anon_sym_to_float] = ACTIONS(113), + [anon_sym_bash] = ACTIONS(113), + [anon_sym_fish] = ACTIONS(113), + [anon_sym_raw] = ACTIONS(113), + [anon_sym_sh] = ACTIONS(113), + [anon_sym_zsh] = ACTIONS(113), + [anon_sym_random] = ACTIONS(113), + [anon_sym_random_boolean] = ACTIONS(113), + [anon_sym_random_float] = ACTIONS(113), + [anon_sym_random_integer] = ACTIONS(113), + [anon_sym_columns] = ACTIONS(113), + [anon_sym_rows] = ACTIONS(113), + [anon_sym_reverse] = ACTIONS(113), }, [340] = { - [sym_expression] = STATE(828), - [sym__expression_kind] = STATE(866), - [aux_sym__expression_list] = STATE(361), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(866), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment_operator] = STATE(554), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [sym_identifier] = ACTIONS(2437), + [sym_statement] = STATE(635), + [sym_expression] = STATE(547), + [sym__expression_kind] = STATE(468), + [sym_value] = STATE(468), + [sym_boolean] = STATE(462), + [sym_list] = STATE(462), + [sym_map] = STATE(462), + [sym_index] = STATE(468), + [sym_math] = STATE(468), + [sym_logic] = STATE(468), + [sym_assignment] = STATE(626), + [sym_if_else] = STATE(626), + [sym_if] = STATE(571), + [sym_match] = STATE(626), + [sym_while] = STATE(626), + [sym_for] = STATE(626), + [sym_transform] = STATE(626), + [sym_filter] = STATE(626), + [sym_find] = STATE(626), + [sym_remove] = STATE(626), + [sym_reduce] = STATE(626), + [sym_select] = STATE(626), + [sym_insert] = STATE(626), + [sym_async] = STATE(626), + [sym_identifier_list] = STATE(1155), + [sym_table] = STATE(462), + [sym_function] = STATE(462), + [sym_function_call] = STATE(468), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(208), + [sym_identifier] = ACTIONS(941), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_RBRACE] = ACTIONS(2435), - [anon_sym_SEMI] = ACTIONS(2435), - [anon_sym_LPAREN] = ACTIONS(2435), - [anon_sym_COMMA] = ACTIONS(2435), - [sym_integer] = ACTIONS(2437), - [sym_float] = ACTIONS(2435), - [sym_string] = ACTIONS(2435), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [anon_sym_LBRACK] = ACTIONS(2435), - [anon_sym_EQ] = ACTIONS(2439), - [anon_sym_COLON] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_PERCENT] = ACTIONS(2435), - [anon_sym_EQ_EQ] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_PIPE_PIPE] = ACTIONS(2435), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_PLUS_EQ] = ACTIONS(2441), - [anon_sym_DASH_EQ] = ACTIONS(2441), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_EQ_GT] = ACTIONS(2435), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_asyncfor] = ACTIONS(2435), - [anon_sym_transform] = ACTIONS(2437), - [anon_sym_filter] = ACTIONS(2437), - [anon_sym_find] = ACTIONS(2437), - [anon_sym_remove] = ACTIONS(2437), - [anon_sym_reduce] = ACTIONS(2437), - [anon_sym_select] = ACTIONS(2437), - [anon_sym_insert] = ACTIONS(2437), - [anon_sym_async] = ACTIONS(2437), - [anon_sym_PIPE] = ACTIONS(2437), - [anon_sym_table] = ACTIONS(2437), - [anon_sym_assert] = ACTIONS(2437), - [anon_sym_assert_equal] = ACTIONS(2437), - [anon_sym_download] = ACTIONS(2437), - [anon_sym_help] = ACTIONS(2437), - [anon_sym_length] = ACTIONS(2437), - [anon_sym_output] = ACTIONS(2437), - [anon_sym_output_error] = ACTIONS(2437), - [anon_sym_type] = ACTIONS(2437), - [anon_sym_append] = ACTIONS(2437), - [anon_sym_metadata] = ACTIONS(2437), - [anon_sym_move] = ACTIONS(2437), - [anon_sym_read] = ACTIONS(2437), - [anon_sym_workdir] = ACTIONS(2437), - [anon_sym_write] = ACTIONS(2437), - [anon_sym_from_json] = ACTIONS(2437), - [anon_sym_to_json] = ACTIONS(2437), - [anon_sym_to_string] = ACTIONS(2437), - [anon_sym_to_float] = ACTIONS(2437), - [anon_sym_bash] = ACTIONS(2437), - [anon_sym_fish] = ACTIONS(2437), - [anon_sym_raw] = ACTIONS(2437), - [anon_sym_sh] = ACTIONS(2437), - [anon_sym_zsh] = ACTIONS(2437), - [anon_sym_random] = ACTIONS(2437), - [anon_sym_random_boolean] = ACTIONS(2437), - [anon_sym_random_float] = ACTIONS(2437), - [anon_sym_random_integer] = ACTIONS(2437), - [anon_sym_columns] = ACTIONS(2437), - [anon_sym_rows] = ACTIONS(2437), - [anon_sym_reverse] = ACTIONS(2437), + [anon_sym_LBRACE] = ACTIONS(1309), + [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(449), + [anon_sym_match] = ACTIONS(943), + [anon_sym_EQ_GT] = ACTIONS(265), + [anon_sym_while] = ACTIONS(945), + [anon_sym_for] = ACTIONS(947), + [anon_sym_asyncfor] = ACTIONS(949), + [anon_sym_transform] = ACTIONS(951), + [anon_sym_filter] = ACTIONS(953), + [anon_sym_find] = ACTIONS(955), + [anon_sym_remove] = ACTIONS(957), + [anon_sym_reduce] = ACTIONS(959), + [anon_sym_select] = ACTIONS(961), + [anon_sym_insert] = ACTIONS(285), + [anon_sym_async] = ACTIONS(963), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(289), + [anon_sym_assert] = ACTIONS(291), + [anon_sym_assert_equal] = ACTIONS(291), + [anon_sym_download] = ACTIONS(291), + [anon_sym_help] = ACTIONS(291), + [anon_sym_length] = ACTIONS(291), + [anon_sym_output] = ACTIONS(291), + [anon_sym_output_error] = ACTIONS(291), + [anon_sym_type] = ACTIONS(291), + [anon_sym_append] = ACTIONS(291), + [anon_sym_metadata] = ACTIONS(291), + [anon_sym_move] = ACTIONS(291), + [anon_sym_read] = ACTIONS(291), + [anon_sym_workdir] = ACTIONS(291), + [anon_sym_write] = ACTIONS(291), + [anon_sym_from_json] = ACTIONS(291), + [anon_sym_to_json] = ACTIONS(291), + [anon_sym_to_string] = ACTIONS(291), + [anon_sym_to_float] = ACTIONS(291), + [anon_sym_bash] = ACTIONS(291), + [anon_sym_fish] = ACTIONS(291), + [anon_sym_raw] = ACTIONS(291), + [anon_sym_sh] = ACTIONS(291), + [anon_sym_zsh] = ACTIONS(291), + [anon_sym_random] = ACTIONS(291), + [anon_sym_random_boolean] = ACTIONS(291), + [anon_sym_random_float] = ACTIONS(291), + [anon_sym_random_integer] = ACTIONS(291), + [anon_sym_columns] = ACTIONS(291), + [anon_sym_rows] = ACTIONS(291), + [anon_sym_reverse] = ACTIONS(291), }, [341] = { - [sym_expression] = STATE(702), - [sym__expression_kind] = STATE(759), - [aux_sym__expression_list] = STATE(329), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(759), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_identifier_list] = STATE(1984), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(302), - [ts_builtin_sym_end] = ACTIONS(2473), - [sym_identifier] = ACTIONS(2624), + [sym_statement] = STATE(423), + [sym_expression] = STATE(387), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(366), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1210), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(186), + [sym_identifier] = ACTIONS(151), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2626), - [anon_sym_RBRACE] = ACTIONS(2473), - [anon_sym_SEMI] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_RPAREN] = ACTIONS(2473), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(2473), - [anon_sym_DOT_DOT] = ACTIONS(2473), - [anon_sym_PLUS] = ACTIONS(2473), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2473), - [anon_sym_SLASH] = ACTIONS(2473), - [anon_sym_PERCENT] = ACTIONS(2473), - [anon_sym_EQ_EQ] = ACTIONS(2473), - [anon_sym_BANG_EQ] = ACTIONS(2473), - [anon_sym_AMP_AMP] = ACTIONS(2473), - [anon_sym_PIPE_PIPE] = ACTIONS(2473), - [anon_sym_GT] = ACTIONS(2475), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_GT_EQ] = ACTIONS(2473), - [anon_sym_LT_EQ] = ACTIONS(2473), - [anon_sym_if] = ACTIONS(2475), - [anon_sym_elseif] = ACTIONS(2473), - [anon_sym_else] = ACTIONS(2475), - [anon_sym_match] = ACTIONS(2475), - [anon_sym_EQ_GT] = ACTIONS(249), - [anon_sym_while] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2475), - [anon_sym_asyncfor] = ACTIONS(2473), - [anon_sym_transform] = ACTIONS(2475), - [anon_sym_filter] = ACTIONS(2475), - [anon_sym_find] = ACTIONS(2475), - [anon_sym_remove] = ACTIONS(2475), - [anon_sym_reduce] = ACTIONS(2475), - [anon_sym_select] = ACTIONS(2475), - [anon_sym_insert] = ACTIONS(2475), - [anon_sym_async] = ACTIONS(2475), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(275), - [anon_sym_assert_equal] = ACTIONS(275), - [anon_sym_download] = ACTIONS(275), - [anon_sym_help] = ACTIONS(275), - [anon_sym_length] = ACTIONS(275), - [anon_sym_output] = ACTIONS(275), - [anon_sym_output_error] = ACTIONS(275), - [anon_sym_type] = ACTIONS(275), - [anon_sym_append] = ACTIONS(275), - [anon_sym_metadata] = ACTIONS(275), - [anon_sym_move] = ACTIONS(275), - [anon_sym_read] = ACTIONS(275), - [anon_sym_workdir] = ACTIONS(275), - [anon_sym_write] = ACTIONS(275), - [anon_sym_from_json] = ACTIONS(275), - [anon_sym_to_json] = ACTIONS(275), - [anon_sym_to_string] = ACTIONS(275), - [anon_sym_to_float] = ACTIONS(275), - [anon_sym_bash] = ACTIONS(275), - [anon_sym_fish] = ACTIONS(275), - [anon_sym_raw] = ACTIONS(275), - [anon_sym_sh] = ACTIONS(275), - [anon_sym_zsh] = ACTIONS(275), - [anon_sym_random] = ACTIONS(275), - [anon_sym_random_boolean] = ACTIONS(275), - [anon_sym_random_float] = ACTIONS(275), - [anon_sym_random_integer] = ACTIONS(275), - [anon_sym_columns] = ACTIONS(275), - [anon_sym_rows] = ACTIONS(275), - [anon_sym_reverse] = ACTIONS(275), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_if] = ACTIONS(155), + [anon_sym_match] = ACTIONS(157), + [anon_sym_EQ_GT] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_asyncfor] = ACTIONS(165), + [anon_sym_transform] = ACTIONS(167), + [anon_sym_filter] = ACTIONS(169), + [anon_sym_find] = ACTIONS(171), + [anon_sym_remove] = ACTIONS(173), + [anon_sym_reduce] = ACTIONS(175), + [anon_sym_select] = ACTIONS(177), + [anon_sym_insert] = ACTIONS(179), + [anon_sym_async] = ACTIONS(181), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(183), + [anon_sym_assert] = ACTIONS(185), + [anon_sym_assert_equal] = ACTIONS(185), + [anon_sym_download] = ACTIONS(185), + [anon_sym_help] = ACTIONS(185), + [anon_sym_length] = ACTIONS(185), + [anon_sym_output] = ACTIONS(185), + [anon_sym_output_error] = ACTIONS(185), + [anon_sym_type] = ACTIONS(185), + [anon_sym_append] = ACTIONS(185), + [anon_sym_metadata] = ACTIONS(185), + [anon_sym_move] = ACTIONS(185), + [anon_sym_read] = ACTIONS(185), + [anon_sym_workdir] = ACTIONS(185), + [anon_sym_write] = ACTIONS(185), + [anon_sym_from_json] = ACTIONS(185), + [anon_sym_to_json] = ACTIONS(185), + [anon_sym_to_string] = ACTIONS(185), + [anon_sym_to_float] = ACTIONS(185), + [anon_sym_bash] = ACTIONS(185), + [anon_sym_fish] = ACTIONS(185), + [anon_sym_raw] = ACTIONS(185), + [anon_sym_sh] = ACTIONS(185), + [anon_sym_zsh] = ACTIONS(185), + [anon_sym_random] = ACTIONS(185), + [anon_sym_random_boolean] = ACTIONS(185), + [anon_sym_random_float] = ACTIONS(185), + [anon_sym_random_integer] = ACTIONS(185), + [anon_sym_columns] = ACTIONS(185), + [anon_sym_rows] = ACTIONS(185), + [anon_sym_reverse] = ACTIONS(185), }, [342] = { - [sym_expression] = STATE(1593), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_logic] = STATE(1539), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(339), - [ts_builtin_sym_end] = ACTIONS(2449), - [sym_identifier] = ACTIONS(2451), + [sym_statement] = STATE(1021), + [sym_expression] = STATE(940), + [sym__expression_kind] = STATE(919), + [sym_value] = STATE(919), + [sym_boolean] = STATE(936), + [sym_list] = STATE(936), + [sym_map] = STATE(936), + [sym_index] = STATE(919), + [sym_math] = STATE(919), + [sym_logic] = STATE(919), + [sym_assignment] = STATE(1016), + [sym_if_else] = STATE(1016), + [sym_if] = STATE(1005), + [sym_match] = STATE(1016), + [sym_while] = STATE(1016), + [sym_for] = STATE(1016), + [sym_transform] = STATE(1016), + [sym_filter] = STATE(1016), + [sym_find] = STATE(1016), + [sym_remove] = STATE(1016), + [sym_reduce] = STATE(1016), + [sym_select] = STATE(1016), + [sym_insert] = STATE(1016), + [sym_async] = STATE(1016), + [sym_identifier_list] = STATE(1101), + [sym_table] = STATE(936), + [sym_function] = STATE(936), + [sym_function_call] = STATE(919), + [sym__context_defined_function] = STATE(934), + [sym_built_in_function] = STATE(934), + [sym__built_in_function_name] = STATE(429), + [sym_identifier] = ACTIONS(1895), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_RBRACE] = ACTIONS(2449), - [anon_sym_SEMI] = ACTIONS(2449), - [anon_sym_LPAREN] = ACTIONS(2455), - [anon_sym_RPAREN] = ACTIONS(2449), - [anon_sym_COMMA] = ACTIONS(2449), - [sym_integer] = ACTIONS(2457), - [sym_float] = ACTIONS(2459), - [sym_string] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(2461), - [anon_sym_false] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_RBRACK] = ACTIONS(2449), - [anon_sym_COLON] = ACTIONS(2449), - [anon_sym_DOT_DOT] = ACTIONS(2449), - [anon_sym_PLUS] = ACTIONS(2449), - [anon_sym_DASH] = ACTIONS(2465), - [anon_sym_STAR] = ACTIONS(2449), - [anon_sym_SLASH] = ACTIONS(2449), - [anon_sym_PERCENT] = ACTIONS(2449), - [anon_sym_EQ_EQ] = ACTIONS(2449), - [anon_sym_BANG_EQ] = ACTIONS(2449), - [anon_sym_AMP_AMP] = ACTIONS(2449), - [anon_sym_PIPE_PIPE] = ACTIONS(2449), - [anon_sym_GT] = ACTIONS(2465), - [anon_sym_LT] = ACTIONS(2465), - [anon_sym_GT_EQ] = ACTIONS(2449), - [anon_sym_LT_EQ] = ACTIONS(2449), - [anon_sym_if] = ACTIONS(2465), - [anon_sym_match] = ACTIONS(2465), - [anon_sym_EQ_GT] = ACTIONS(2467), - [anon_sym_while] = ACTIONS(2465), - [anon_sym_for] = ACTIONS(2465), - [anon_sym_asyncfor] = ACTIONS(2449), - [anon_sym_transform] = ACTIONS(2465), - [anon_sym_filter] = ACTIONS(2465), - [anon_sym_find] = ACTIONS(2465), - [anon_sym_remove] = ACTIONS(2465), - [anon_sym_reduce] = ACTIONS(2465), - [anon_sym_select] = ACTIONS(2465), - [anon_sym_insert] = ACTIONS(2465), - [anon_sym_async] = ACTIONS(2465), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(2469), - [anon_sym_assert] = ACTIONS(2471), - [anon_sym_assert_equal] = ACTIONS(2471), - [anon_sym_download] = ACTIONS(2471), - [anon_sym_help] = ACTIONS(2471), - [anon_sym_length] = ACTIONS(2471), - [anon_sym_output] = ACTIONS(2471), - [anon_sym_output_error] = ACTIONS(2471), - [anon_sym_type] = ACTIONS(2471), - [anon_sym_append] = ACTIONS(2471), - [anon_sym_metadata] = ACTIONS(2471), - [anon_sym_move] = ACTIONS(2471), - [anon_sym_read] = ACTIONS(2471), - [anon_sym_workdir] = ACTIONS(2471), - [anon_sym_write] = ACTIONS(2471), - [anon_sym_from_json] = ACTIONS(2471), - [anon_sym_to_json] = ACTIONS(2471), - [anon_sym_to_string] = ACTIONS(2471), - [anon_sym_to_float] = ACTIONS(2471), - [anon_sym_bash] = ACTIONS(2471), - [anon_sym_fish] = ACTIONS(2471), - [anon_sym_raw] = ACTIONS(2471), - [anon_sym_sh] = ACTIONS(2471), - [anon_sym_zsh] = ACTIONS(2471), - [anon_sym_random] = ACTIONS(2471), - [anon_sym_random_boolean] = ACTIONS(2471), - [anon_sym_random_float] = ACTIONS(2471), - [anon_sym_random_integer] = ACTIONS(2471), - [anon_sym_columns] = ACTIONS(2471), - [anon_sym_rows] = ACTIONS(2471), - [anon_sym_reverse] = ACTIONS(2471), + [anon_sym_LBRACE] = ACTIONS(1341), + [anon_sym_LPAREN] = ACTIONS(1343), + [sym_integer] = ACTIONS(1345), + [sym_float] = ACTIONS(1347), + [sym_string] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1349), + [anon_sym_false] = ACTIONS(1349), + [anon_sym_LBRACK] = ACTIONS(1351), + [anon_sym_if] = ACTIONS(1897), + [anon_sym_match] = ACTIONS(1899), + [anon_sym_EQ_GT] = ACTIONS(1901), + [anon_sym_while] = ACTIONS(1903), + [anon_sym_for] = ACTIONS(1905), + [anon_sym_asyncfor] = ACTIONS(1907), + [anon_sym_transform] = ACTIONS(1909), + [anon_sym_filter] = ACTIONS(1911), + [anon_sym_find] = ACTIONS(1913), + [anon_sym_remove] = ACTIONS(1915), + [anon_sym_reduce] = ACTIONS(1917), + [anon_sym_select] = ACTIONS(1919), + [anon_sym_insert] = ACTIONS(1921), + [anon_sym_async] = ACTIONS(1923), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(1925), + [anon_sym_assert] = ACTIONS(1927), + [anon_sym_assert_equal] = ACTIONS(1927), + [anon_sym_download] = ACTIONS(1927), + [anon_sym_help] = ACTIONS(1927), + [anon_sym_length] = ACTIONS(1927), + [anon_sym_output] = ACTIONS(1927), + [anon_sym_output_error] = ACTIONS(1927), + [anon_sym_type] = ACTIONS(1927), + [anon_sym_append] = ACTIONS(1927), + [anon_sym_metadata] = ACTIONS(1927), + [anon_sym_move] = ACTIONS(1927), + [anon_sym_read] = ACTIONS(1927), + [anon_sym_workdir] = ACTIONS(1927), + [anon_sym_write] = ACTIONS(1927), + [anon_sym_from_json] = ACTIONS(1927), + [anon_sym_to_json] = ACTIONS(1927), + [anon_sym_to_string] = ACTIONS(1927), + [anon_sym_to_float] = ACTIONS(1927), + [anon_sym_bash] = ACTIONS(1927), + [anon_sym_fish] = ACTIONS(1927), + [anon_sym_raw] = ACTIONS(1927), + [anon_sym_sh] = ACTIONS(1927), + [anon_sym_zsh] = ACTIONS(1927), + [anon_sym_random] = ACTIONS(1927), + [anon_sym_random_boolean] = ACTIONS(1927), + [anon_sym_random_float] = ACTIONS(1927), + [anon_sym_random_integer] = ACTIONS(1927), + [anon_sym_columns] = ACTIONS(1927), + [anon_sym_rows] = ACTIONS(1927), + [anon_sym_reverse] = ACTIONS(1927), }, [343] = { - [sym_expression] = STATE(718), - [sym__expression_kind] = STATE(706), - [aux_sym__expression_list] = STATE(335), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_logic] = STATE(706), - [sym_identifier_list] = STATE(1813), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(311), - [ts_builtin_sym_end] = ACTIONS(2443), - [sym_identifier] = ACTIONS(149), + [sym_statement] = STATE(423), + [sym_expression] = STATE(364), + [sym__expression_kind] = STATE(415), + [sym_value] = STATE(415), + [sym_boolean] = STATE(419), + [sym_list] = STATE(419), + [sym_map] = STATE(419), + [sym_index] = STATE(415), + [sym_math] = STATE(415), + [sym_logic] = STATE(415), + [sym_assignment] = STATE(411), + [sym_if_else] = STATE(411), + [sym_if] = STATE(349), + [sym_match] = STATE(411), + [sym_while] = STATE(411), + [sym_for] = STATE(411), + [sym_transform] = STATE(411), + [sym_filter] = STATE(411), + [sym_find] = STATE(411), + [sym_remove] = STATE(411), + [sym_reduce] = STATE(411), + [sym_select] = STATE(411), + [sym_insert] = STATE(411), + [sym_async] = STATE(411), + [sym_identifier_list] = STATE(1100), + [sym_table] = STATE(419), + [sym_function] = STATE(419), + [sym_function_call] = STATE(415), + [sym__context_defined_function] = STATE(413), + [sym_built_in_function] = STATE(413), + [sym__built_in_function_name] = STATE(181), + [sym_identifier] = ACTIONS(115), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1923), - [anon_sym_RBRACE] = ACTIONS(2443), - [anon_sym_SEMI] = ACTIONS(2443), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_RPAREN] = ACTIONS(2443), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_EQ] = ACTIONS(2447), - [anon_sym_COLON] = ACTIONS(2443), - [anon_sym_PLUS] = ACTIONS(2447), - [anon_sym_DASH] = ACTIONS(2447), - [anon_sym_STAR] = ACTIONS(2443), - [anon_sym_SLASH] = ACTIONS(2443), - [anon_sym_PERCENT] = ACTIONS(2443), - [anon_sym_EQ_EQ] = ACTIONS(2443), - [anon_sym_BANG_EQ] = ACTIONS(2443), - [anon_sym_AMP_AMP] = ACTIONS(2443), - [anon_sym_PIPE_PIPE] = ACTIONS(2443), - [anon_sym_GT] = ACTIONS(2447), - [anon_sym_LT] = ACTIONS(2447), - [anon_sym_GT_EQ] = ACTIONS(2443), - [anon_sym_LT_EQ] = ACTIONS(2443), - [anon_sym_PLUS_EQ] = ACTIONS(2443), - [anon_sym_DASH_EQ] = ACTIONS(2443), - [anon_sym_if] = ACTIONS(2447), - [anon_sym_match] = ACTIONS(2447), - [anon_sym_EQ_GT] = ACTIONS(281), - [anon_sym_while] = ACTIONS(2447), - [anon_sym_for] = ACTIONS(2447), - [anon_sym_asyncfor] = ACTIONS(2443), - [anon_sym_transform] = ACTIONS(2447), - [anon_sym_filter] = ACTIONS(2447), - [anon_sym_find] = ACTIONS(2447), - [anon_sym_remove] = ACTIONS(2447), - [anon_sym_reduce] = ACTIONS(2447), - [anon_sym_select] = ACTIONS(2447), - [anon_sym_insert] = ACTIONS(2447), - [anon_sym_async] = ACTIONS(2447), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(305), - [anon_sym_assert] = ACTIONS(307), - [anon_sym_assert_equal] = ACTIONS(307), - [anon_sym_download] = ACTIONS(307), - [anon_sym_help] = ACTIONS(307), - [anon_sym_length] = ACTIONS(307), - [anon_sym_output] = ACTIONS(307), - [anon_sym_output_error] = ACTIONS(307), - [anon_sym_type] = ACTIONS(307), - [anon_sym_append] = ACTIONS(307), - [anon_sym_metadata] = ACTIONS(307), - [anon_sym_move] = ACTIONS(307), - [anon_sym_read] = ACTIONS(307), - [anon_sym_workdir] = ACTIONS(307), - [anon_sym_write] = ACTIONS(307), - [anon_sym_from_json] = ACTIONS(307), - [anon_sym_to_json] = ACTIONS(307), - [anon_sym_to_string] = ACTIONS(307), - [anon_sym_to_float] = ACTIONS(307), - [anon_sym_bash] = ACTIONS(307), - [anon_sym_fish] = ACTIONS(307), - [anon_sym_raw] = ACTIONS(307), - [anon_sym_sh] = ACTIONS(307), - [anon_sym_zsh] = ACTIONS(307), - [anon_sym_random] = ACTIONS(307), - [anon_sym_random_boolean] = ACTIONS(307), - [anon_sym_random_float] = ACTIONS(307), - [anon_sym_random_integer] = ACTIONS(307), - [anon_sym_columns] = ACTIONS(307), - [anon_sym_rows] = ACTIONS(307), - [anon_sym_reverse] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_LPAREN] = ACTIONS(59), + [sym_integer] = ACTIONS(61), + [sym_float] = ACTIONS(63), + [sym_string] = ACTIONS(63), + [anon_sym_true] = ACTIONS(65), + [anon_sym_false] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_if] = ACTIONS(119), + [anon_sym_match] = ACTIONS(121), + [anon_sym_EQ_GT] = ACTIONS(123), + [anon_sym_while] = ACTIONS(125), + [anon_sym_for] = ACTIONS(127), + [anon_sym_asyncfor] = ACTIONS(129), + [anon_sym_transform] = ACTIONS(131), + [anon_sym_filter] = ACTIONS(133), + [anon_sym_find] = ACTIONS(135), + [anon_sym_remove] = ACTIONS(137), + [anon_sym_reduce] = ACTIONS(139), + [anon_sym_select] = ACTIONS(141), + [anon_sym_insert] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_PIPE] = ACTIONS(47), + [anon_sym_table] = ACTIONS(147), + [anon_sym_assert] = ACTIONS(149), + [anon_sym_assert_equal] = ACTIONS(149), + [anon_sym_download] = ACTIONS(149), + [anon_sym_help] = ACTIONS(149), + [anon_sym_length] = ACTIONS(149), + [anon_sym_output] = ACTIONS(149), + [anon_sym_output_error] = ACTIONS(149), + [anon_sym_type] = ACTIONS(149), + [anon_sym_append] = ACTIONS(149), + [anon_sym_metadata] = ACTIONS(149), + [anon_sym_move] = ACTIONS(149), + [anon_sym_read] = ACTIONS(149), + [anon_sym_workdir] = ACTIONS(149), + [anon_sym_write] = ACTIONS(149), + [anon_sym_from_json] = ACTIONS(149), + [anon_sym_to_json] = ACTIONS(149), + [anon_sym_to_string] = ACTIONS(149), + [anon_sym_to_float] = ACTIONS(149), + [anon_sym_bash] = ACTIONS(149), + [anon_sym_fish] = ACTIONS(149), + [anon_sym_raw] = ACTIONS(149), + [anon_sym_sh] = ACTIONS(149), + [anon_sym_zsh] = ACTIONS(149), + [anon_sym_random] = ACTIONS(149), + [anon_sym_random_boolean] = ACTIONS(149), + [anon_sym_random_float] = ACTIONS(149), + [anon_sym_random_integer] = ACTIONS(149), + [anon_sym_columns] = ACTIONS(149), + [anon_sym_rows] = ACTIONS(149), + [anon_sym_reverse] = ACTIONS(149), }, [344] = { - [sym_expression] = STATE(702), - [sym__expression_kind] = STATE(759), - [aux_sym__expression_list] = STATE(326), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(759), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_identifier_list] = STATE(1984), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(302), - [ts_builtin_sym_end] = ACTIONS(2477), - [sym_identifier] = ACTIONS(2624), + [sym_statement] = STATE(1036), + [sym_expression] = STATE(940), + [sym__expression_kind] = STATE(919), + [sym_value] = STATE(919), + [sym_boolean] = STATE(936), + [sym_list] = STATE(936), + [sym_map] = STATE(936), + [sym_index] = STATE(919), + [sym_math] = STATE(919), + [sym_logic] = STATE(919), + [sym_assignment] = STATE(1016), + [sym_if_else] = STATE(1016), + [sym_if] = STATE(1005), + [sym_match] = STATE(1016), + [sym_while] = STATE(1016), + [sym_for] = STATE(1016), + [sym_transform] = STATE(1016), + [sym_filter] = STATE(1016), + [sym_find] = STATE(1016), + [sym_remove] = STATE(1016), + [sym_reduce] = STATE(1016), + [sym_select] = STATE(1016), + [sym_insert] = STATE(1016), + [sym_async] = STATE(1016), + [sym_identifier_list] = STATE(1101), + [sym_table] = STATE(936), + [sym_function] = STATE(936), + [sym_function_call] = STATE(919), + [sym__context_defined_function] = STATE(934), + [sym_built_in_function] = STATE(934), + [sym__built_in_function_name] = STATE(429), + [sym_identifier] = ACTIONS(1929), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2626), - [anon_sym_RBRACE] = ACTIONS(2477), - [anon_sym_SEMI] = ACTIONS(2477), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_RPAREN] = ACTIONS(2477), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(2477), - [anon_sym_DOT_DOT] = ACTIONS(2477), - [anon_sym_PLUS] = ACTIONS(2477), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2477), - [anon_sym_SLASH] = ACTIONS(2477), - [anon_sym_PERCENT] = ACTIONS(2477), - [anon_sym_EQ_EQ] = ACTIONS(2477), - [anon_sym_BANG_EQ] = ACTIONS(2477), - [anon_sym_AMP_AMP] = ACTIONS(2477), - [anon_sym_PIPE_PIPE] = ACTIONS(2477), - [anon_sym_GT] = ACTIONS(2479), - [anon_sym_LT] = ACTIONS(2479), - [anon_sym_GT_EQ] = ACTIONS(2477), - [anon_sym_LT_EQ] = ACTIONS(2477), - [anon_sym_if] = ACTIONS(2479), - [anon_sym_elseif] = ACTIONS(2477), - [anon_sym_else] = ACTIONS(2479), - [anon_sym_match] = ACTIONS(2479), - [anon_sym_EQ_GT] = ACTIONS(249), - [anon_sym_while] = ACTIONS(2479), - [anon_sym_for] = ACTIONS(2479), - [anon_sym_asyncfor] = ACTIONS(2477), - [anon_sym_transform] = ACTIONS(2479), - [anon_sym_filter] = ACTIONS(2479), - [anon_sym_find] = ACTIONS(2479), - [anon_sym_remove] = ACTIONS(2479), - [anon_sym_reduce] = ACTIONS(2479), - [anon_sym_select] = ACTIONS(2479), - [anon_sym_insert] = ACTIONS(2479), - [anon_sym_async] = ACTIONS(2479), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(275), - [anon_sym_assert_equal] = ACTIONS(275), - [anon_sym_download] = ACTIONS(275), - [anon_sym_help] = ACTIONS(275), - [anon_sym_length] = ACTIONS(275), - [anon_sym_output] = ACTIONS(275), - [anon_sym_output_error] = ACTIONS(275), - [anon_sym_type] = ACTIONS(275), - [anon_sym_append] = ACTIONS(275), - [anon_sym_metadata] = ACTIONS(275), - [anon_sym_move] = ACTIONS(275), - [anon_sym_read] = ACTIONS(275), - [anon_sym_workdir] = ACTIONS(275), - [anon_sym_write] = ACTIONS(275), - [anon_sym_from_json] = ACTIONS(275), - [anon_sym_to_json] = ACTIONS(275), - [anon_sym_to_string] = ACTIONS(275), - [anon_sym_to_float] = ACTIONS(275), - [anon_sym_bash] = ACTIONS(275), - [anon_sym_fish] = ACTIONS(275), - [anon_sym_raw] = ACTIONS(275), - [anon_sym_sh] = ACTIONS(275), - [anon_sym_zsh] = ACTIONS(275), - [anon_sym_random] = ACTIONS(275), - [anon_sym_random_boolean] = ACTIONS(275), - [anon_sym_random_float] = ACTIONS(275), - [anon_sym_random_integer] = ACTIONS(275), - [anon_sym_columns] = ACTIONS(275), - [anon_sym_rows] = ACTIONS(275), - [anon_sym_reverse] = ACTIONS(275), + [anon_sym_LBRACE] = ACTIONS(1932), + [anon_sym_LPAREN] = ACTIONS(1935), + [sym_integer] = ACTIONS(1938), + [sym_float] = ACTIONS(1941), + [sym_string] = ACTIONS(1941), + [anon_sym_true] = ACTIONS(1944), + [anon_sym_false] = ACTIONS(1944), + [anon_sym_LBRACK] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(1950), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_EQ_GT] = ACTIONS(1956), + [anon_sym_while] = ACTIONS(1959), + [anon_sym_for] = ACTIONS(1962), + [anon_sym_asyncfor] = ACTIONS(1965), + [anon_sym_transform] = ACTIONS(1968), + [anon_sym_filter] = ACTIONS(1971), + [anon_sym_find] = ACTIONS(1974), + [anon_sym_remove] = ACTIONS(1977), + [anon_sym_reduce] = ACTIONS(1980), + [anon_sym_select] = ACTIONS(1983), + [anon_sym_insert] = ACTIONS(1986), + [anon_sym_async] = ACTIONS(1989), + [anon_sym_PIPE] = ACTIONS(1992), + [anon_sym_table] = ACTIONS(1995), + [anon_sym_assert] = ACTIONS(1998), + [anon_sym_assert_equal] = ACTIONS(1998), + [anon_sym_download] = ACTIONS(1998), + [anon_sym_help] = ACTIONS(1998), + [anon_sym_length] = ACTIONS(1998), + [anon_sym_output] = ACTIONS(1998), + [anon_sym_output_error] = ACTIONS(1998), + [anon_sym_type] = ACTIONS(1998), + [anon_sym_append] = ACTIONS(1998), + [anon_sym_metadata] = ACTIONS(1998), + [anon_sym_move] = ACTIONS(1998), + [anon_sym_read] = ACTIONS(1998), + [anon_sym_workdir] = ACTIONS(1998), + [anon_sym_write] = ACTIONS(1998), + [anon_sym_from_json] = ACTIONS(1998), + [anon_sym_to_json] = ACTIONS(1998), + [anon_sym_to_string] = ACTIONS(1998), + [anon_sym_to_float] = ACTIONS(1998), + [anon_sym_bash] = ACTIONS(1998), + [anon_sym_fish] = ACTIONS(1998), + [anon_sym_raw] = ACTIONS(1998), + [anon_sym_sh] = ACTIONS(1998), + [anon_sym_zsh] = ACTIONS(1998), + [anon_sym_random] = ACTIONS(1998), + [anon_sym_random_boolean] = ACTIONS(1998), + [anon_sym_random_float] = ACTIONS(1998), + [anon_sym_random_integer] = ACTIONS(1998), + [anon_sym_columns] = ACTIONS(1998), + [anon_sym_rows] = ACTIONS(1998), + [anon_sym_reverse] = ACTIONS(1998), }, [345] = { - [sym_expression] = STATE(1609), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_logic] = STATE(1539), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(345), - [ts_builtin_sym_end] = ACTIONS(2481), - [sym_identifier] = ACTIONS(2483), + [sym_else_if] = STATE(351), + [sym_else] = STATE(430), + [aux_sym_if_else_repeat1] = STATE(351), + [ts_builtin_sym_end] = ACTIONS(2001), + [sym_identifier] = ACTIONS(2003), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2486), - [anon_sym_RBRACE] = ACTIONS(2481), - [anon_sym_SEMI] = ACTIONS(2481), - [anon_sym_LPAREN] = ACTIONS(2489), - [anon_sym_RPAREN] = ACTIONS(2481), - [sym_integer] = ACTIONS(2492), - [sym_float] = ACTIONS(2495), - [sym_string] = ACTIONS(2495), - [anon_sym_true] = ACTIONS(2498), - [anon_sym_false] = ACTIONS(2498), - [anon_sym_LBRACK] = ACTIONS(2501), - [anon_sym_COLON] = ACTIONS(2481), - [anon_sym_PLUS] = ACTIONS(2481), - [anon_sym_DASH] = ACTIONS(2504), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_SLASH] = ACTIONS(2481), - [anon_sym_PERCENT] = ACTIONS(2481), - [anon_sym_EQ_EQ] = ACTIONS(2481), - [anon_sym_BANG_EQ] = ACTIONS(2481), - [anon_sym_AMP_AMP] = ACTIONS(2481), - [anon_sym_PIPE_PIPE] = ACTIONS(2481), - [anon_sym_GT] = ACTIONS(2504), - [anon_sym_LT] = ACTIONS(2504), - [anon_sym_GT_EQ] = ACTIONS(2481), - [anon_sym_LT_EQ] = ACTIONS(2481), - [anon_sym_if] = ACTIONS(2504), - [anon_sym_elseif] = ACTIONS(2481), - [anon_sym_else] = ACTIONS(2504), - [anon_sym_match] = ACTIONS(2504), - [anon_sym_EQ_GT] = ACTIONS(2506), - [anon_sym_while] = ACTIONS(2504), - [anon_sym_for] = ACTIONS(2504), - [anon_sym_asyncfor] = ACTIONS(2481), - [anon_sym_transform] = ACTIONS(2504), - [anon_sym_filter] = ACTIONS(2504), - [anon_sym_find] = ACTIONS(2504), - [anon_sym_remove] = ACTIONS(2504), - [anon_sym_reduce] = ACTIONS(2504), - [anon_sym_select] = ACTIONS(2504), - [anon_sym_insert] = ACTIONS(2504), - [anon_sym_async] = ACTIONS(2504), - [anon_sym_PIPE] = ACTIONS(2509), - [anon_sym_table] = ACTIONS(2512), - [anon_sym_assert] = ACTIONS(2515), - [anon_sym_assert_equal] = ACTIONS(2515), - [anon_sym_download] = ACTIONS(2515), - [anon_sym_help] = ACTIONS(2515), - [anon_sym_length] = ACTIONS(2515), - [anon_sym_output] = ACTIONS(2515), - [anon_sym_output_error] = ACTIONS(2515), - [anon_sym_type] = ACTIONS(2515), - [anon_sym_append] = ACTIONS(2515), - [anon_sym_metadata] = ACTIONS(2515), - [anon_sym_move] = ACTIONS(2515), - [anon_sym_read] = ACTIONS(2515), - [anon_sym_workdir] = ACTIONS(2515), - [anon_sym_write] = ACTIONS(2515), - [anon_sym_from_json] = ACTIONS(2515), - [anon_sym_to_json] = ACTIONS(2515), - [anon_sym_to_string] = ACTIONS(2515), - [anon_sym_to_float] = ACTIONS(2515), - [anon_sym_bash] = ACTIONS(2515), - [anon_sym_fish] = ACTIONS(2515), - [anon_sym_raw] = ACTIONS(2515), - [anon_sym_sh] = ACTIONS(2515), - [anon_sym_zsh] = ACTIONS(2515), - [anon_sym_random] = ACTIONS(2515), - [anon_sym_random_boolean] = ACTIONS(2515), - [anon_sym_random_float] = ACTIONS(2515), - [anon_sym_random_integer] = ACTIONS(2515), - [anon_sym_columns] = ACTIONS(2515), - [anon_sym_rows] = ACTIONS(2515), - [anon_sym_reverse] = ACTIONS(2515), + [anon_sym_LBRACE] = ACTIONS(2001), + [anon_sym_RBRACE] = ACTIONS(2001), + [anon_sym_SEMI] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_RPAREN] = ACTIONS(2001), + [anon_sym_COMMA] = ACTIONS(2001), + [sym_integer] = ACTIONS(2003), + [sym_float] = ACTIONS(2001), + [sym_string] = ACTIONS(2001), + [anon_sym_true] = ACTIONS(2003), + [anon_sym_false] = ACTIONS(2003), + [anon_sym_LBRACK] = ACTIONS(2001), + [anon_sym_RBRACK] = ACTIONS(2001), + [anon_sym_COLON] = ACTIONS(2001), + [anon_sym_DOT_DOT] = ACTIONS(2001), + [anon_sym_PLUS] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_STAR] = ACTIONS(2001), + [anon_sym_SLASH] = ACTIONS(2001), + [anon_sym_PERCENT] = ACTIONS(2001), + [anon_sym_EQ_EQ] = ACTIONS(2001), + [anon_sym_BANG_EQ] = ACTIONS(2001), + [anon_sym_AMP_AMP] = ACTIONS(2001), + [anon_sym_PIPE_PIPE] = ACTIONS(2001), + [anon_sym_GT] = ACTIONS(2003), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_GT_EQ] = ACTIONS(2001), + [anon_sym_LT_EQ] = ACTIONS(2001), + [anon_sym_if] = ACTIONS(2003), + [anon_sym_elseif] = ACTIONS(2005), + [anon_sym_else] = ACTIONS(2007), + [anon_sym_match] = ACTIONS(2003), + [anon_sym_EQ_GT] = ACTIONS(2001), + [anon_sym_while] = ACTIONS(2003), + [anon_sym_for] = ACTIONS(2003), + [anon_sym_asyncfor] = ACTIONS(2001), + [anon_sym_transform] = ACTIONS(2003), + [anon_sym_filter] = ACTIONS(2003), + [anon_sym_find] = ACTIONS(2003), + [anon_sym_remove] = ACTIONS(2003), + [anon_sym_reduce] = ACTIONS(2003), + [anon_sym_select] = ACTIONS(2003), + [anon_sym_insert] = ACTIONS(2003), + [anon_sym_async] = ACTIONS(2003), + [anon_sym_PIPE] = ACTIONS(2003), + [anon_sym_table] = ACTIONS(2003), + [anon_sym_assert] = ACTIONS(2003), + [anon_sym_assert_equal] = ACTIONS(2003), + [anon_sym_download] = ACTIONS(2003), + [anon_sym_help] = ACTIONS(2003), + [anon_sym_length] = ACTIONS(2003), + [anon_sym_output] = ACTIONS(2003), + [anon_sym_output_error] = ACTIONS(2003), + [anon_sym_type] = ACTIONS(2003), + [anon_sym_append] = ACTIONS(2003), + [anon_sym_metadata] = ACTIONS(2003), + [anon_sym_move] = ACTIONS(2003), + [anon_sym_read] = ACTIONS(2003), + [anon_sym_workdir] = ACTIONS(2003), + [anon_sym_write] = ACTIONS(2003), + [anon_sym_from_json] = ACTIONS(2003), + [anon_sym_to_json] = ACTIONS(2003), + [anon_sym_to_string] = ACTIONS(2003), + [anon_sym_to_float] = ACTIONS(2003), + [anon_sym_bash] = ACTIONS(2003), + [anon_sym_fish] = ACTIONS(2003), + [anon_sym_raw] = ACTIONS(2003), + [anon_sym_sh] = ACTIONS(2003), + [anon_sym_zsh] = ACTIONS(2003), + [anon_sym_random] = ACTIONS(2003), + [anon_sym_random_boolean] = ACTIONS(2003), + [anon_sym_random_float] = ACTIONS(2003), + [anon_sym_random_integer] = ACTIONS(2003), + [anon_sym_columns] = ACTIONS(2003), + [anon_sym_rows] = ACTIONS(2003), + [anon_sym_reverse] = ACTIONS(2003), }, [346] = { - [sym_expression] = STATE(1578), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_logic] = STATE(1539), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(346), - [ts_builtin_sym_end] = ACTIONS(2481), - [sym_identifier] = ACTIONS(2483), + [sym_else_if] = STATE(345), + [sym_else] = STATE(421), + [aux_sym_if_else_repeat1] = STATE(345), + [ts_builtin_sym_end] = ACTIONS(2009), + [sym_identifier] = ACTIONS(2011), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2486), - [anon_sym_RBRACE] = ACTIONS(2481), - [anon_sym_SEMI] = ACTIONS(2481), - [anon_sym_LPAREN] = ACTIONS(2489), - [anon_sym_RPAREN] = ACTIONS(2481), - [anon_sym_COMMA] = ACTIONS(2481), - [sym_integer] = ACTIONS(2492), - [sym_float] = ACTIONS(2495), - [sym_string] = ACTIONS(2495), - [anon_sym_true] = ACTIONS(2498), - [anon_sym_false] = ACTIONS(2498), - [anon_sym_LBRACK] = ACTIONS(2501), - [anon_sym_RBRACK] = ACTIONS(2481), - [anon_sym_COLON] = ACTIONS(2481), - [anon_sym_PLUS] = ACTIONS(2481), - [anon_sym_DASH] = ACTIONS(2504), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_SLASH] = ACTIONS(2481), - [anon_sym_PERCENT] = ACTIONS(2481), - [anon_sym_EQ_EQ] = ACTIONS(2481), - [anon_sym_BANG_EQ] = ACTIONS(2481), - [anon_sym_AMP_AMP] = ACTIONS(2481), - [anon_sym_PIPE_PIPE] = ACTIONS(2481), - [anon_sym_GT] = ACTIONS(2504), - [anon_sym_LT] = ACTIONS(2504), - [anon_sym_GT_EQ] = ACTIONS(2481), - [anon_sym_LT_EQ] = ACTIONS(2481), - [anon_sym_if] = ACTIONS(2504), - [anon_sym_match] = ACTIONS(2504), - [anon_sym_EQ_GT] = ACTIONS(2506), - [anon_sym_while] = ACTIONS(2504), - [anon_sym_for] = ACTIONS(2504), - [anon_sym_asyncfor] = ACTIONS(2481), - [anon_sym_transform] = ACTIONS(2504), - [anon_sym_filter] = ACTIONS(2504), - [anon_sym_find] = ACTIONS(2504), - [anon_sym_remove] = ACTIONS(2504), - [anon_sym_reduce] = ACTIONS(2504), - [anon_sym_select] = ACTIONS(2504), - [anon_sym_insert] = ACTIONS(2504), - [anon_sym_async] = ACTIONS(2504), - [anon_sym_PIPE] = ACTIONS(2509), - [anon_sym_table] = ACTIONS(2512), - [anon_sym_assert] = ACTIONS(2515), - [anon_sym_assert_equal] = ACTIONS(2515), - [anon_sym_download] = ACTIONS(2515), - [anon_sym_help] = ACTIONS(2515), - [anon_sym_length] = ACTIONS(2515), - [anon_sym_output] = ACTIONS(2515), - [anon_sym_output_error] = ACTIONS(2515), - [anon_sym_type] = ACTIONS(2515), - [anon_sym_append] = ACTIONS(2515), - [anon_sym_metadata] = ACTIONS(2515), - [anon_sym_move] = ACTIONS(2515), - [anon_sym_read] = ACTIONS(2515), - [anon_sym_workdir] = ACTIONS(2515), - [anon_sym_write] = ACTIONS(2515), - [anon_sym_from_json] = ACTIONS(2515), - [anon_sym_to_json] = ACTIONS(2515), - [anon_sym_to_string] = ACTIONS(2515), - [anon_sym_to_float] = ACTIONS(2515), - [anon_sym_bash] = ACTIONS(2515), - [anon_sym_fish] = ACTIONS(2515), - [anon_sym_raw] = ACTIONS(2515), - [anon_sym_sh] = ACTIONS(2515), - [anon_sym_zsh] = ACTIONS(2515), - [anon_sym_random] = ACTIONS(2515), - [anon_sym_random_boolean] = ACTIONS(2515), - [anon_sym_random_float] = ACTIONS(2515), - [anon_sym_random_integer] = ACTIONS(2515), - [anon_sym_columns] = ACTIONS(2515), - [anon_sym_rows] = ACTIONS(2515), - [anon_sym_reverse] = ACTIONS(2515), + [anon_sym_LBRACE] = ACTIONS(2009), + [anon_sym_RBRACE] = ACTIONS(2009), + [anon_sym_SEMI] = ACTIONS(2009), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_RPAREN] = ACTIONS(2009), + [anon_sym_COMMA] = ACTIONS(2009), + [sym_integer] = ACTIONS(2011), + [sym_float] = ACTIONS(2009), + [sym_string] = ACTIONS(2009), + [anon_sym_true] = ACTIONS(2011), + [anon_sym_false] = ACTIONS(2011), + [anon_sym_LBRACK] = ACTIONS(2009), + [anon_sym_RBRACK] = ACTIONS(2009), + [anon_sym_COLON] = ACTIONS(2009), + [anon_sym_DOT_DOT] = ACTIONS(2009), + [anon_sym_PLUS] = ACTIONS(2009), + [anon_sym_DASH] = ACTIONS(2011), + [anon_sym_STAR] = ACTIONS(2009), + [anon_sym_SLASH] = ACTIONS(2009), + [anon_sym_PERCENT] = ACTIONS(2009), + [anon_sym_EQ_EQ] = ACTIONS(2009), + [anon_sym_BANG_EQ] = ACTIONS(2009), + [anon_sym_AMP_AMP] = ACTIONS(2009), + [anon_sym_PIPE_PIPE] = ACTIONS(2009), + [anon_sym_GT] = ACTIONS(2011), + [anon_sym_LT] = ACTIONS(2011), + [anon_sym_GT_EQ] = ACTIONS(2009), + [anon_sym_LT_EQ] = ACTIONS(2009), + [anon_sym_if] = ACTIONS(2011), + [anon_sym_elseif] = ACTIONS(2005), + [anon_sym_else] = ACTIONS(2007), + [anon_sym_match] = ACTIONS(2011), + [anon_sym_EQ_GT] = ACTIONS(2009), + [anon_sym_while] = ACTIONS(2011), + [anon_sym_for] = ACTIONS(2011), + [anon_sym_asyncfor] = ACTIONS(2009), + [anon_sym_transform] = ACTIONS(2011), + [anon_sym_filter] = ACTIONS(2011), + [anon_sym_find] = ACTIONS(2011), + [anon_sym_remove] = ACTIONS(2011), + [anon_sym_reduce] = ACTIONS(2011), + [anon_sym_select] = ACTIONS(2011), + [anon_sym_insert] = ACTIONS(2011), + [anon_sym_async] = ACTIONS(2011), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_table] = ACTIONS(2011), + [anon_sym_assert] = ACTIONS(2011), + [anon_sym_assert_equal] = ACTIONS(2011), + [anon_sym_download] = ACTIONS(2011), + [anon_sym_help] = ACTIONS(2011), + [anon_sym_length] = ACTIONS(2011), + [anon_sym_output] = ACTIONS(2011), + [anon_sym_output_error] = ACTIONS(2011), + [anon_sym_type] = ACTIONS(2011), + [anon_sym_append] = ACTIONS(2011), + [anon_sym_metadata] = ACTIONS(2011), + [anon_sym_move] = ACTIONS(2011), + [anon_sym_read] = ACTIONS(2011), + [anon_sym_workdir] = ACTIONS(2011), + [anon_sym_write] = ACTIONS(2011), + [anon_sym_from_json] = ACTIONS(2011), + [anon_sym_to_json] = ACTIONS(2011), + [anon_sym_to_string] = ACTIONS(2011), + [anon_sym_to_float] = ACTIONS(2011), + [anon_sym_bash] = ACTIONS(2011), + [anon_sym_fish] = ACTIONS(2011), + [anon_sym_raw] = ACTIONS(2011), + [anon_sym_sh] = ACTIONS(2011), + [anon_sym_zsh] = ACTIONS(2011), + [anon_sym_random] = ACTIONS(2011), + [anon_sym_random_boolean] = ACTIONS(2011), + [anon_sym_random_float] = ACTIONS(2011), + [anon_sym_random_integer] = ACTIONS(2011), + [anon_sym_columns] = ACTIONS(2011), + [anon_sym_rows] = ACTIONS(2011), + [anon_sym_reverse] = ACTIONS(2011), }, [347] = { - [sym_expression] = STATE(1578), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_logic] = STATE(1539), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(346), - [ts_builtin_sym_end] = ACTIONS(2449), - [sym_identifier] = ACTIONS(2451), + [sym_else_if] = STATE(351), + [sym_else] = STATE(496), + [aux_sym_if_else_repeat1] = STATE(351), + [ts_builtin_sym_end] = ACTIONS(2001), + [sym_identifier] = ACTIONS(2003), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_RBRACE] = ACTIONS(2449), - [anon_sym_SEMI] = ACTIONS(2449), - [anon_sym_LPAREN] = ACTIONS(2455), - [anon_sym_RPAREN] = ACTIONS(2449), - [anon_sym_COMMA] = ACTIONS(2449), - [sym_integer] = ACTIONS(2457), - [sym_float] = ACTIONS(2459), - [sym_string] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(2461), - [anon_sym_false] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_RBRACK] = ACTIONS(2449), - [anon_sym_COLON] = ACTIONS(2449), - [anon_sym_PLUS] = ACTIONS(2449), - [anon_sym_DASH] = ACTIONS(2465), - [anon_sym_STAR] = ACTIONS(2449), - [anon_sym_SLASH] = ACTIONS(2449), - [anon_sym_PERCENT] = ACTIONS(2449), - [anon_sym_EQ_EQ] = ACTIONS(2449), - [anon_sym_BANG_EQ] = ACTIONS(2449), - [anon_sym_AMP_AMP] = ACTIONS(2449), - [anon_sym_PIPE_PIPE] = ACTIONS(2449), - [anon_sym_GT] = ACTIONS(2465), - [anon_sym_LT] = ACTIONS(2465), - [anon_sym_GT_EQ] = ACTIONS(2449), - [anon_sym_LT_EQ] = ACTIONS(2449), - [anon_sym_if] = ACTIONS(2465), - [anon_sym_match] = ACTIONS(2465), - [anon_sym_EQ_GT] = ACTIONS(2467), - [anon_sym_while] = ACTIONS(2465), - [anon_sym_for] = ACTIONS(2465), - [anon_sym_asyncfor] = ACTIONS(2449), - [anon_sym_transform] = ACTIONS(2465), - [anon_sym_filter] = ACTIONS(2465), - [anon_sym_find] = ACTIONS(2465), - [anon_sym_remove] = ACTIONS(2465), - [anon_sym_reduce] = ACTIONS(2465), - [anon_sym_select] = ACTIONS(2465), - [anon_sym_insert] = ACTIONS(2465), - [anon_sym_async] = ACTIONS(2465), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(2469), - [anon_sym_assert] = ACTIONS(2471), - [anon_sym_assert_equal] = ACTIONS(2471), - [anon_sym_download] = ACTIONS(2471), - [anon_sym_help] = ACTIONS(2471), - [anon_sym_length] = ACTIONS(2471), - [anon_sym_output] = ACTIONS(2471), - [anon_sym_output_error] = ACTIONS(2471), - [anon_sym_type] = ACTIONS(2471), - [anon_sym_append] = ACTIONS(2471), - [anon_sym_metadata] = ACTIONS(2471), - [anon_sym_move] = ACTIONS(2471), - [anon_sym_read] = ACTIONS(2471), - [anon_sym_workdir] = ACTIONS(2471), - [anon_sym_write] = ACTIONS(2471), - [anon_sym_from_json] = ACTIONS(2471), - [anon_sym_to_json] = ACTIONS(2471), - [anon_sym_to_string] = ACTIONS(2471), - [anon_sym_to_float] = ACTIONS(2471), - [anon_sym_bash] = ACTIONS(2471), - [anon_sym_fish] = ACTIONS(2471), - [anon_sym_raw] = ACTIONS(2471), - [anon_sym_sh] = ACTIONS(2471), - [anon_sym_zsh] = ACTIONS(2471), - [anon_sym_random] = ACTIONS(2471), - [anon_sym_random_boolean] = ACTIONS(2471), - [anon_sym_random_float] = ACTIONS(2471), - [anon_sym_random_integer] = ACTIONS(2471), - [anon_sym_columns] = ACTIONS(2471), - [anon_sym_rows] = ACTIONS(2471), - [anon_sym_reverse] = ACTIONS(2471), + [anon_sym_LBRACE] = ACTIONS(2001), + [anon_sym_RBRACE] = ACTIONS(2001), + [anon_sym_SEMI] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_RPAREN] = ACTIONS(2001), + [anon_sym_COMMA] = ACTIONS(2001), + [sym_integer] = ACTIONS(2003), + [sym_float] = ACTIONS(2001), + [sym_string] = ACTIONS(2001), + [anon_sym_true] = ACTIONS(2003), + [anon_sym_false] = ACTIONS(2003), + [anon_sym_LBRACK] = ACTIONS(2001), + [anon_sym_RBRACK] = ACTIONS(2001), + [anon_sym_COLON] = ACTIONS(2001), + [anon_sym_DOT_DOT] = ACTIONS(2001), + [anon_sym_PLUS] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_STAR] = ACTIONS(2001), + [anon_sym_SLASH] = ACTIONS(2001), + [anon_sym_PERCENT] = ACTIONS(2001), + [anon_sym_EQ_EQ] = ACTIONS(2001), + [anon_sym_BANG_EQ] = ACTIONS(2001), + [anon_sym_AMP_AMP] = ACTIONS(2001), + [anon_sym_PIPE_PIPE] = ACTIONS(2001), + [anon_sym_GT] = ACTIONS(2003), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_GT_EQ] = ACTIONS(2001), + [anon_sym_LT_EQ] = ACTIONS(2001), + [anon_sym_if] = ACTIONS(2003), + [anon_sym_elseif] = ACTIONS(2005), + [anon_sym_else] = ACTIONS(2013), + [anon_sym_match] = ACTIONS(2003), + [anon_sym_EQ_GT] = ACTIONS(2001), + [anon_sym_while] = ACTIONS(2003), + [anon_sym_for] = ACTIONS(2003), + [anon_sym_asyncfor] = ACTIONS(2001), + [anon_sym_transform] = ACTIONS(2003), + [anon_sym_filter] = ACTIONS(2003), + [anon_sym_find] = ACTIONS(2003), + [anon_sym_remove] = ACTIONS(2003), + [anon_sym_reduce] = ACTIONS(2003), + [anon_sym_select] = ACTIONS(2003), + [anon_sym_insert] = ACTIONS(2003), + [anon_sym_async] = ACTIONS(2003), + [anon_sym_PIPE] = ACTIONS(2003), + [anon_sym_table] = ACTIONS(2003), + [anon_sym_assert] = ACTIONS(2003), + [anon_sym_assert_equal] = ACTIONS(2003), + [anon_sym_download] = ACTIONS(2003), + [anon_sym_help] = ACTIONS(2003), + [anon_sym_length] = ACTIONS(2003), + [anon_sym_output] = ACTIONS(2003), + [anon_sym_output_error] = ACTIONS(2003), + [anon_sym_type] = ACTIONS(2003), + [anon_sym_append] = ACTIONS(2003), + [anon_sym_metadata] = ACTIONS(2003), + [anon_sym_move] = ACTIONS(2003), + [anon_sym_read] = ACTIONS(2003), + [anon_sym_workdir] = ACTIONS(2003), + [anon_sym_write] = ACTIONS(2003), + [anon_sym_from_json] = ACTIONS(2003), + [anon_sym_to_json] = ACTIONS(2003), + [anon_sym_to_string] = ACTIONS(2003), + [anon_sym_to_float] = ACTIONS(2003), + [anon_sym_bash] = ACTIONS(2003), + [anon_sym_fish] = ACTIONS(2003), + [anon_sym_raw] = ACTIONS(2003), + [anon_sym_sh] = ACTIONS(2003), + [anon_sym_zsh] = ACTIONS(2003), + [anon_sym_random] = ACTIONS(2003), + [anon_sym_random_boolean] = ACTIONS(2003), + [anon_sym_random_float] = ACTIONS(2003), + [anon_sym_random_integer] = ACTIONS(2003), + [anon_sym_columns] = ACTIONS(2003), + [anon_sym_rows] = ACTIONS(2003), + [anon_sym_reverse] = ACTIONS(2003), }, [348] = { - [sym_statement] = STATE(348), - [sym_expression] = STATE(859), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(754), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_assignment] = STATE(1023), - [sym_if_else] = STATE(1023), - [sym_if] = STATE(985), - [sym_match] = STATE(1023), - [sym_while] = STATE(1023), - [sym_for] = STATE(1023), - [sym_transform] = STATE(1023), - [sym_filter] = STATE(1023), - [sym_find] = STATE(1023), - [sym_remove] = STATE(1023), - [sym_reduce] = STATE(1023), - [sym_select] = STATE(1023), - [sym_insert] = STATE(1023), - [sym_async] = STATE(1023), - [sym_identifier_list] = STATE(1841), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(315), - [aux_sym_block_repeat1] = STATE(348), - [sym_identifier] = ACTIONS(2678), + [sym_else_if] = STATE(347), + [sym_else] = STATE(482), + [aux_sym_if_else_repeat1] = STATE(347), + [ts_builtin_sym_end] = ACTIONS(2009), + [sym_identifier] = ACTIONS(2011), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1319), - [anon_sym_RBRACE] = ACTIONS(343), - [anon_sym_SEMI] = ACTIONS(343), - [anon_sym_LPAREN] = ACTIONS(1322), - [anon_sym_COMMA] = ACTIONS(343), - [sym_integer] = ACTIONS(1325), - [sym_float] = ACTIONS(1328), - [sym_string] = ACTIONS(1328), - [anon_sym_true] = ACTIONS(1331), - [anon_sym_false] = ACTIONS(1331), - [anon_sym_LBRACK] = ACTIONS(1334), - [anon_sym_if] = ACTIONS(2681), - [anon_sym_elseif] = ACTIONS(343), - [anon_sym_else] = ACTIONS(366), - [anon_sym_match] = ACTIONS(2684), - [anon_sym_EQ_GT] = ACTIONS(1394), - [anon_sym_while] = ACTIONS(2687), - [anon_sym_for] = ACTIONS(2690), - [anon_sym_asyncfor] = ACTIONS(2693), - [anon_sym_transform] = ACTIONS(2696), - [anon_sym_filter] = ACTIONS(2699), - [anon_sym_find] = ACTIONS(2702), - [anon_sym_remove] = ACTIONS(2705), - [anon_sym_reduce] = ACTIONS(2708), - [anon_sym_select] = ACTIONS(2711), - [anon_sym_insert] = ACTIONS(1424), - [anon_sym_async] = ACTIONS(2714), - [anon_sym_PIPE] = ACTIONS(2717), - [anon_sym_table] = ACTIONS(1430), - [anon_sym_assert] = ACTIONS(1433), - [anon_sym_assert_equal] = ACTIONS(1433), - [anon_sym_download] = ACTIONS(1433), - [anon_sym_help] = ACTIONS(1433), - [anon_sym_length] = ACTIONS(1433), - [anon_sym_output] = ACTIONS(1433), - [anon_sym_output_error] = ACTIONS(1433), - [anon_sym_type] = ACTIONS(1433), - [anon_sym_append] = ACTIONS(1433), - [anon_sym_metadata] = ACTIONS(1433), - [anon_sym_move] = ACTIONS(1433), - [anon_sym_read] = ACTIONS(1433), - [anon_sym_workdir] = ACTIONS(1433), - [anon_sym_write] = ACTIONS(1433), - [anon_sym_from_json] = ACTIONS(1433), - [anon_sym_to_json] = ACTIONS(1433), - [anon_sym_to_string] = ACTIONS(1433), - [anon_sym_to_float] = ACTIONS(1433), - [anon_sym_bash] = ACTIONS(1433), - [anon_sym_fish] = ACTIONS(1433), - [anon_sym_raw] = ACTIONS(1433), - [anon_sym_sh] = ACTIONS(1433), - [anon_sym_zsh] = ACTIONS(1433), - [anon_sym_random] = ACTIONS(1433), - [anon_sym_random_boolean] = ACTIONS(1433), - [anon_sym_random_float] = ACTIONS(1433), - [anon_sym_random_integer] = ACTIONS(1433), - [anon_sym_columns] = ACTIONS(1433), - [anon_sym_rows] = ACTIONS(1433), - [anon_sym_reverse] = ACTIONS(1433), + [anon_sym_LBRACE] = ACTIONS(2009), + [anon_sym_RBRACE] = ACTIONS(2009), + [anon_sym_SEMI] = ACTIONS(2009), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_RPAREN] = ACTIONS(2009), + [anon_sym_COMMA] = ACTIONS(2009), + [sym_integer] = ACTIONS(2011), + [sym_float] = ACTIONS(2009), + [sym_string] = ACTIONS(2009), + [anon_sym_true] = ACTIONS(2011), + [anon_sym_false] = ACTIONS(2011), + [anon_sym_LBRACK] = ACTIONS(2009), + [anon_sym_RBRACK] = ACTIONS(2009), + [anon_sym_COLON] = ACTIONS(2009), + [anon_sym_DOT_DOT] = ACTIONS(2009), + [anon_sym_PLUS] = ACTIONS(2009), + [anon_sym_DASH] = ACTIONS(2011), + [anon_sym_STAR] = ACTIONS(2009), + [anon_sym_SLASH] = ACTIONS(2009), + [anon_sym_PERCENT] = ACTIONS(2009), + [anon_sym_EQ_EQ] = ACTIONS(2009), + [anon_sym_BANG_EQ] = ACTIONS(2009), + [anon_sym_AMP_AMP] = ACTIONS(2009), + [anon_sym_PIPE_PIPE] = ACTIONS(2009), + [anon_sym_GT] = ACTIONS(2011), + [anon_sym_LT] = ACTIONS(2011), + [anon_sym_GT_EQ] = ACTIONS(2009), + [anon_sym_LT_EQ] = ACTIONS(2009), + [anon_sym_if] = ACTIONS(2011), + [anon_sym_elseif] = ACTIONS(2005), + [anon_sym_else] = ACTIONS(2013), + [anon_sym_match] = ACTIONS(2011), + [anon_sym_EQ_GT] = ACTIONS(2009), + [anon_sym_while] = ACTIONS(2011), + [anon_sym_for] = ACTIONS(2011), + [anon_sym_asyncfor] = ACTIONS(2009), + [anon_sym_transform] = ACTIONS(2011), + [anon_sym_filter] = ACTIONS(2011), + [anon_sym_find] = ACTIONS(2011), + [anon_sym_remove] = ACTIONS(2011), + [anon_sym_reduce] = ACTIONS(2011), + [anon_sym_select] = ACTIONS(2011), + [anon_sym_insert] = ACTIONS(2011), + [anon_sym_async] = ACTIONS(2011), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_table] = ACTIONS(2011), + [anon_sym_assert] = ACTIONS(2011), + [anon_sym_assert_equal] = ACTIONS(2011), + [anon_sym_download] = ACTIONS(2011), + [anon_sym_help] = ACTIONS(2011), + [anon_sym_length] = ACTIONS(2011), + [anon_sym_output] = ACTIONS(2011), + [anon_sym_output_error] = ACTIONS(2011), + [anon_sym_type] = ACTIONS(2011), + [anon_sym_append] = ACTIONS(2011), + [anon_sym_metadata] = ACTIONS(2011), + [anon_sym_move] = ACTIONS(2011), + [anon_sym_read] = ACTIONS(2011), + [anon_sym_workdir] = ACTIONS(2011), + [anon_sym_write] = ACTIONS(2011), + [anon_sym_from_json] = ACTIONS(2011), + [anon_sym_to_json] = ACTIONS(2011), + [anon_sym_to_string] = ACTIONS(2011), + [anon_sym_to_float] = ACTIONS(2011), + [anon_sym_bash] = ACTIONS(2011), + [anon_sym_fish] = ACTIONS(2011), + [anon_sym_raw] = ACTIONS(2011), + [anon_sym_sh] = ACTIONS(2011), + [anon_sym_zsh] = ACTIONS(2011), + [anon_sym_random] = ACTIONS(2011), + [anon_sym_random_boolean] = ACTIONS(2011), + [anon_sym_random_float] = ACTIONS(2011), + [anon_sym_random_integer] = ACTIONS(2011), + [anon_sym_columns] = ACTIONS(2011), + [anon_sym_rows] = ACTIONS(2011), + [anon_sym_reverse] = ACTIONS(2011), }, [349] = { - [sym_expression] = STATE(876), - [sym__expression_kind] = STATE(866), - [aux_sym__expression_list] = STATE(375), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(866), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment_operator] = STATE(536), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [sym_identifier] = ACTIONS(2437), + [sym_else_if] = STATE(350), + [sym_else] = STATE(421), + [aux_sym_if_else_repeat1] = STATE(350), + [ts_builtin_sym_end] = ACTIONS(2009), + [sym_identifier] = ACTIONS(2011), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_RBRACE] = ACTIONS(2435), - [anon_sym_SEMI] = ACTIONS(2435), - [anon_sym_LPAREN] = ACTIONS(2435), - [sym_integer] = ACTIONS(2437), - [sym_float] = ACTIONS(2435), - [sym_string] = ACTIONS(2435), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [anon_sym_LBRACK] = ACTIONS(2435), - [anon_sym_EQ] = ACTIONS(2720), - [anon_sym_COLON] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_PERCENT] = ACTIONS(2435), - [anon_sym_EQ_EQ] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_PIPE_PIPE] = ACTIONS(2435), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_PLUS_EQ] = ACTIONS(2441), - [anon_sym_DASH_EQ] = ACTIONS(2441), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_EQ_GT] = ACTIONS(2435), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_asyncfor] = ACTIONS(2435), - [anon_sym_transform] = ACTIONS(2437), - [anon_sym_filter] = ACTIONS(2437), - [anon_sym_find] = ACTIONS(2437), - [anon_sym_remove] = ACTIONS(2437), - [anon_sym_reduce] = ACTIONS(2437), - [anon_sym_select] = ACTIONS(2437), - [anon_sym_insert] = ACTIONS(2437), - [anon_sym_async] = ACTIONS(2437), - [anon_sym_PIPE] = ACTIONS(2437), - [anon_sym_table] = ACTIONS(2437), - [anon_sym_assert] = ACTIONS(2437), - [anon_sym_assert_equal] = ACTIONS(2437), - [anon_sym_download] = ACTIONS(2437), - [anon_sym_help] = ACTIONS(2437), - [anon_sym_length] = ACTIONS(2437), - [anon_sym_output] = ACTIONS(2437), - [anon_sym_output_error] = ACTIONS(2437), - [anon_sym_type] = ACTIONS(2437), - [anon_sym_append] = ACTIONS(2437), - [anon_sym_metadata] = ACTIONS(2437), - [anon_sym_move] = ACTIONS(2437), - [anon_sym_read] = ACTIONS(2437), - [anon_sym_workdir] = ACTIONS(2437), - [anon_sym_write] = ACTIONS(2437), - [anon_sym_from_json] = ACTIONS(2437), - [anon_sym_to_json] = ACTIONS(2437), - [anon_sym_to_string] = ACTIONS(2437), - [anon_sym_to_float] = ACTIONS(2437), - [anon_sym_bash] = ACTIONS(2437), - [anon_sym_fish] = ACTIONS(2437), - [anon_sym_raw] = ACTIONS(2437), - [anon_sym_sh] = ACTIONS(2437), - [anon_sym_zsh] = ACTIONS(2437), - [anon_sym_random] = ACTIONS(2437), - [anon_sym_random_boolean] = ACTIONS(2437), - [anon_sym_random_float] = ACTIONS(2437), - [anon_sym_random_integer] = ACTIONS(2437), - [anon_sym_columns] = ACTIONS(2437), - [anon_sym_rows] = ACTIONS(2437), - [anon_sym_reverse] = ACTIONS(2437), + [anon_sym_LBRACE] = ACTIONS(2009), + [anon_sym_RBRACE] = ACTIONS(2009), + [anon_sym_SEMI] = ACTIONS(2009), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_RPAREN] = ACTIONS(2009), + [anon_sym_COMMA] = ACTIONS(2009), + [sym_integer] = ACTIONS(2011), + [sym_float] = ACTIONS(2009), + [sym_string] = ACTIONS(2009), + [anon_sym_true] = ACTIONS(2011), + [anon_sym_false] = ACTIONS(2011), + [anon_sym_LBRACK] = ACTIONS(2009), + [anon_sym_RBRACK] = ACTIONS(2009), + [anon_sym_COLON] = ACTIONS(2009), + [anon_sym_PLUS] = ACTIONS(2009), + [anon_sym_DASH] = ACTIONS(2011), + [anon_sym_STAR] = ACTIONS(2009), + [anon_sym_SLASH] = ACTIONS(2009), + [anon_sym_PERCENT] = ACTIONS(2009), + [anon_sym_EQ_EQ] = ACTIONS(2009), + [anon_sym_BANG_EQ] = ACTIONS(2009), + [anon_sym_AMP_AMP] = ACTIONS(2009), + [anon_sym_PIPE_PIPE] = ACTIONS(2009), + [anon_sym_GT] = ACTIONS(2011), + [anon_sym_LT] = ACTIONS(2011), + [anon_sym_GT_EQ] = ACTIONS(2009), + [anon_sym_LT_EQ] = ACTIONS(2009), + [anon_sym_if] = ACTIONS(2011), + [anon_sym_elseif] = ACTIONS(2015), + [anon_sym_else] = ACTIONS(2017), + [anon_sym_match] = ACTIONS(2011), + [anon_sym_EQ_GT] = ACTIONS(2009), + [anon_sym_while] = ACTIONS(2011), + [anon_sym_for] = ACTIONS(2011), + [anon_sym_asyncfor] = ACTIONS(2009), + [anon_sym_transform] = ACTIONS(2011), + [anon_sym_filter] = ACTIONS(2011), + [anon_sym_find] = ACTIONS(2011), + [anon_sym_remove] = ACTIONS(2011), + [anon_sym_reduce] = ACTIONS(2011), + [anon_sym_select] = ACTIONS(2011), + [anon_sym_insert] = ACTIONS(2011), + [anon_sym_async] = ACTIONS(2011), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_table] = ACTIONS(2011), + [anon_sym_assert] = ACTIONS(2011), + [anon_sym_assert_equal] = ACTIONS(2011), + [anon_sym_download] = ACTIONS(2011), + [anon_sym_help] = ACTIONS(2011), + [anon_sym_length] = ACTIONS(2011), + [anon_sym_output] = ACTIONS(2011), + [anon_sym_output_error] = ACTIONS(2011), + [anon_sym_type] = ACTIONS(2011), + [anon_sym_append] = ACTIONS(2011), + [anon_sym_metadata] = ACTIONS(2011), + [anon_sym_move] = ACTIONS(2011), + [anon_sym_read] = ACTIONS(2011), + [anon_sym_workdir] = ACTIONS(2011), + [anon_sym_write] = ACTIONS(2011), + [anon_sym_from_json] = ACTIONS(2011), + [anon_sym_to_json] = ACTIONS(2011), + [anon_sym_to_string] = ACTIONS(2011), + [anon_sym_to_float] = ACTIONS(2011), + [anon_sym_bash] = ACTIONS(2011), + [anon_sym_fish] = ACTIONS(2011), + [anon_sym_raw] = ACTIONS(2011), + [anon_sym_sh] = ACTIONS(2011), + [anon_sym_zsh] = ACTIONS(2011), + [anon_sym_random] = ACTIONS(2011), + [anon_sym_random_boolean] = ACTIONS(2011), + [anon_sym_random_float] = ACTIONS(2011), + [anon_sym_random_integer] = ACTIONS(2011), + [anon_sym_columns] = ACTIONS(2011), + [anon_sym_rows] = ACTIONS(2011), + [anon_sym_reverse] = ACTIONS(2011), }, [350] = { - [sym_expression] = STATE(783), - [sym__expression_kind] = STATE(759), - [aux_sym__expression_list] = STATE(357), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(759), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_identifier_list] = STATE(1841), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(315), - [ts_builtin_sym_end] = ACTIONS(2477), - [sym_identifier] = ACTIONS(2624), + [sym_else_if] = STATE(380), + [sym_else] = STATE(430), + [aux_sym_if_else_repeat1] = STATE(380), + [ts_builtin_sym_end] = ACTIONS(2001), + [sym_identifier] = ACTIONS(2003), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2626), - [anon_sym_RBRACE] = ACTIONS(2477), - [anon_sym_SEMI] = ACTIONS(2477), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_RPAREN] = ACTIONS(2477), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(2477), - [anon_sym_PLUS] = ACTIONS(2477), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2477), - [anon_sym_SLASH] = ACTIONS(2477), - [anon_sym_PERCENT] = ACTIONS(2477), - [anon_sym_EQ_EQ] = ACTIONS(2477), - [anon_sym_BANG_EQ] = ACTIONS(2477), - [anon_sym_AMP_AMP] = ACTIONS(2477), - [anon_sym_PIPE_PIPE] = ACTIONS(2477), - [anon_sym_GT] = ACTIONS(2479), - [anon_sym_LT] = ACTIONS(2479), - [anon_sym_GT_EQ] = ACTIONS(2477), - [anon_sym_LT_EQ] = ACTIONS(2477), - [anon_sym_if] = ACTIONS(2479), - [anon_sym_elseif] = ACTIONS(2477), - [anon_sym_else] = ACTIONS(2479), - [anon_sym_match] = ACTIONS(2479), - [anon_sym_EQ_GT] = ACTIONS(631), - [anon_sym_while] = ACTIONS(2479), - [anon_sym_for] = ACTIONS(2479), - [anon_sym_asyncfor] = ACTIONS(2477), - [anon_sym_transform] = ACTIONS(2479), - [anon_sym_filter] = ACTIONS(2479), - [anon_sym_find] = ACTIONS(2479), - [anon_sym_remove] = ACTIONS(2479), - [anon_sym_reduce] = ACTIONS(2479), - [anon_sym_select] = ACTIONS(2479), - [anon_sym_insert] = ACTIONS(2479), - [anon_sym_async] = ACTIONS(2479), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(655), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_assert_equal] = ACTIONS(657), - [anon_sym_download] = ACTIONS(657), - [anon_sym_help] = ACTIONS(657), - [anon_sym_length] = ACTIONS(657), - [anon_sym_output] = ACTIONS(657), - [anon_sym_output_error] = ACTIONS(657), - [anon_sym_type] = ACTIONS(657), - [anon_sym_append] = ACTIONS(657), - [anon_sym_metadata] = ACTIONS(657), - [anon_sym_move] = ACTIONS(657), - [anon_sym_read] = ACTIONS(657), - [anon_sym_workdir] = ACTIONS(657), - [anon_sym_write] = ACTIONS(657), - [anon_sym_from_json] = ACTIONS(657), - [anon_sym_to_json] = ACTIONS(657), - [anon_sym_to_string] = ACTIONS(657), - [anon_sym_to_float] = ACTIONS(657), - [anon_sym_bash] = ACTIONS(657), - [anon_sym_fish] = ACTIONS(657), - [anon_sym_raw] = ACTIONS(657), - [anon_sym_sh] = ACTIONS(657), - [anon_sym_zsh] = ACTIONS(657), - [anon_sym_random] = ACTIONS(657), - [anon_sym_random_boolean] = ACTIONS(657), - [anon_sym_random_float] = ACTIONS(657), - [anon_sym_random_integer] = ACTIONS(657), - [anon_sym_columns] = ACTIONS(657), - [anon_sym_rows] = ACTIONS(657), - [anon_sym_reverse] = ACTIONS(657), + [anon_sym_LBRACE] = ACTIONS(2001), + [anon_sym_RBRACE] = ACTIONS(2001), + [anon_sym_SEMI] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_RPAREN] = ACTIONS(2001), + [anon_sym_COMMA] = ACTIONS(2001), + [sym_integer] = ACTIONS(2003), + [sym_float] = ACTIONS(2001), + [sym_string] = ACTIONS(2001), + [anon_sym_true] = ACTIONS(2003), + [anon_sym_false] = ACTIONS(2003), + [anon_sym_LBRACK] = ACTIONS(2001), + [anon_sym_RBRACK] = ACTIONS(2001), + [anon_sym_COLON] = ACTIONS(2001), + [anon_sym_PLUS] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_STAR] = ACTIONS(2001), + [anon_sym_SLASH] = ACTIONS(2001), + [anon_sym_PERCENT] = ACTIONS(2001), + [anon_sym_EQ_EQ] = ACTIONS(2001), + [anon_sym_BANG_EQ] = ACTIONS(2001), + [anon_sym_AMP_AMP] = ACTIONS(2001), + [anon_sym_PIPE_PIPE] = ACTIONS(2001), + [anon_sym_GT] = ACTIONS(2003), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_GT_EQ] = ACTIONS(2001), + [anon_sym_LT_EQ] = ACTIONS(2001), + [anon_sym_if] = ACTIONS(2003), + [anon_sym_elseif] = ACTIONS(2015), + [anon_sym_else] = ACTIONS(2017), + [anon_sym_match] = ACTIONS(2003), + [anon_sym_EQ_GT] = ACTIONS(2001), + [anon_sym_while] = ACTIONS(2003), + [anon_sym_for] = ACTIONS(2003), + [anon_sym_asyncfor] = ACTIONS(2001), + [anon_sym_transform] = ACTIONS(2003), + [anon_sym_filter] = ACTIONS(2003), + [anon_sym_find] = ACTIONS(2003), + [anon_sym_remove] = ACTIONS(2003), + [anon_sym_reduce] = ACTIONS(2003), + [anon_sym_select] = ACTIONS(2003), + [anon_sym_insert] = ACTIONS(2003), + [anon_sym_async] = ACTIONS(2003), + [anon_sym_PIPE] = ACTIONS(2003), + [anon_sym_table] = ACTIONS(2003), + [anon_sym_assert] = ACTIONS(2003), + [anon_sym_assert_equal] = ACTIONS(2003), + [anon_sym_download] = ACTIONS(2003), + [anon_sym_help] = ACTIONS(2003), + [anon_sym_length] = ACTIONS(2003), + [anon_sym_output] = ACTIONS(2003), + [anon_sym_output_error] = ACTIONS(2003), + [anon_sym_type] = ACTIONS(2003), + [anon_sym_append] = ACTIONS(2003), + [anon_sym_metadata] = ACTIONS(2003), + [anon_sym_move] = ACTIONS(2003), + [anon_sym_read] = ACTIONS(2003), + [anon_sym_workdir] = ACTIONS(2003), + [anon_sym_write] = ACTIONS(2003), + [anon_sym_from_json] = ACTIONS(2003), + [anon_sym_to_json] = ACTIONS(2003), + [anon_sym_to_string] = ACTIONS(2003), + [anon_sym_to_float] = ACTIONS(2003), + [anon_sym_bash] = ACTIONS(2003), + [anon_sym_fish] = ACTIONS(2003), + [anon_sym_raw] = ACTIONS(2003), + [anon_sym_sh] = ACTIONS(2003), + [anon_sym_zsh] = ACTIONS(2003), + [anon_sym_random] = ACTIONS(2003), + [anon_sym_random_boolean] = ACTIONS(2003), + [anon_sym_random_float] = ACTIONS(2003), + [anon_sym_random_integer] = ACTIONS(2003), + [anon_sym_columns] = ACTIONS(2003), + [anon_sym_rows] = ACTIONS(2003), + [anon_sym_reverse] = ACTIONS(2003), }, [351] = { - [sym_expression] = STATE(783), - [sym__expression_kind] = STATE(759), - [aux_sym__expression_list] = STATE(355), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(759), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_identifier_list] = STATE(1841), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(315), - [ts_builtin_sym_end] = ACTIONS(2473), - [sym_identifier] = ACTIONS(2624), + [sym_else_if] = STATE(351), + [aux_sym_if_else_repeat1] = STATE(351), + [ts_builtin_sym_end] = ACTIONS(2019), + [sym_identifier] = ACTIONS(2021), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2626), - [anon_sym_RBRACE] = ACTIONS(2473), - [anon_sym_SEMI] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_RPAREN] = ACTIONS(2473), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(2473), - [anon_sym_PLUS] = ACTIONS(2473), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2473), - [anon_sym_SLASH] = ACTIONS(2473), - [anon_sym_PERCENT] = ACTIONS(2473), - [anon_sym_EQ_EQ] = ACTIONS(2473), - [anon_sym_BANG_EQ] = ACTIONS(2473), - [anon_sym_AMP_AMP] = ACTIONS(2473), - [anon_sym_PIPE_PIPE] = ACTIONS(2473), - [anon_sym_GT] = ACTIONS(2475), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_GT_EQ] = ACTIONS(2473), - [anon_sym_LT_EQ] = ACTIONS(2473), - [anon_sym_if] = ACTIONS(2475), - [anon_sym_elseif] = ACTIONS(2473), - [anon_sym_else] = ACTIONS(2475), - [anon_sym_match] = ACTIONS(2475), - [anon_sym_EQ_GT] = ACTIONS(631), - [anon_sym_while] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2475), - [anon_sym_asyncfor] = ACTIONS(2473), - [anon_sym_transform] = ACTIONS(2475), - [anon_sym_filter] = ACTIONS(2475), - [anon_sym_find] = ACTIONS(2475), - [anon_sym_remove] = ACTIONS(2475), - [anon_sym_reduce] = ACTIONS(2475), - [anon_sym_select] = ACTIONS(2475), - [anon_sym_insert] = ACTIONS(2475), - [anon_sym_async] = ACTIONS(2475), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(655), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_assert_equal] = ACTIONS(657), - [anon_sym_download] = ACTIONS(657), - [anon_sym_help] = ACTIONS(657), - [anon_sym_length] = ACTIONS(657), - [anon_sym_output] = ACTIONS(657), - [anon_sym_output_error] = ACTIONS(657), - [anon_sym_type] = ACTIONS(657), - [anon_sym_append] = ACTIONS(657), - [anon_sym_metadata] = ACTIONS(657), - [anon_sym_move] = ACTIONS(657), - [anon_sym_read] = ACTIONS(657), - [anon_sym_workdir] = ACTIONS(657), - [anon_sym_write] = ACTIONS(657), - [anon_sym_from_json] = ACTIONS(657), - [anon_sym_to_json] = ACTIONS(657), - [anon_sym_to_string] = ACTIONS(657), - [anon_sym_to_float] = ACTIONS(657), - [anon_sym_bash] = ACTIONS(657), - [anon_sym_fish] = ACTIONS(657), - [anon_sym_raw] = ACTIONS(657), - [anon_sym_sh] = ACTIONS(657), - [anon_sym_zsh] = ACTIONS(657), - [anon_sym_random] = ACTIONS(657), - [anon_sym_random_boolean] = ACTIONS(657), - [anon_sym_random_float] = ACTIONS(657), - [anon_sym_random_integer] = ACTIONS(657), - [anon_sym_columns] = ACTIONS(657), - [anon_sym_rows] = ACTIONS(657), - [anon_sym_reverse] = ACTIONS(657), + [anon_sym_LBRACE] = ACTIONS(2019), + [anon_sym_RBRACE] = ACTIONS(2019), + [anon_sym_SEMI] = ACTIONS(2019), + [anon_sym_LPAREN] = ACTIONS(2019), + [anon_sym_RPAREN] = ACTIONS(2019), + [anon_sym_COMMA] = ACTIONS(2019), + [sym_integer] = ACTIONS(2021), + [sym_float] = ACTIONS(2019), + [sym_string] = ACTIONS(2019), + [anon_sym_true] = ACTIONS(2021), + [anon_sym_false] = ACTIONS(2021), + [anon_sym_LBRACK] = ACTIONS(2019), + [anon_sym_RBRACK] = ACTIONS(2019), + [anon_sym_COLON] = ACTIONS(2019), + [anon_sym_DOT_DOT] = ACTIONS(2019), + [anon_sym_PLUS] = ACTIONS(2019), + [anon_sym_DASH] = ACTIONS(2021), + [anon_sym_STAR] = ACTIONS(2019), + [anon_sym_SLASH] = ACTIONS(2019), + [anon_sym_PERCENT] = ACTIONS(2019), + [anon_sym_EQ_EQ] = ACTIONS(2019), + [anon_sym_BANG_EQ] = ACTIONS(2019), + [anon_sym_AMP_AMP] = ACTIONS(2019), + [anon_sym_PIPE_PIPE] = ACTIONS(2019), + [anon_sym_GT] = ACTIONS(2021), + [anon_sym_LT] = ACTIONS(2021), + [anon_sym_GT_EQ] = ACTIONS(2019), + [anon_sym_LT_EQ] = ACTIONS(2019), + [anon_sym_if] = ACTIONS(2021), + [anon_sym_elseif] = ACTIONS(2023), + [anon_sym_else] = ACTIONS(2021), + [anon_sym_match] = ACTIONS(2021), + [anon_sym_EQ_GT] = ACTIONS(2019), + [anon_sym_while] = ACTIONS(2021), + [anon_sym_for] = ACTIONS(2021), + [anon_sym_asyncfor] = ACTIONS(2019), + [anon_sym_transform] = ACTIONS(2021), + [anon_sym_filter] = ACTIONS(2021), + [anon_sym_find] = ACTIONS(2021), + [anon_sym_remove] = ACTIONS(2021), + [anon_sym_reduce] = ACTIONS(2021), + [anon_sym_select] = ACTIONS(2021), + [anon_sym_insert] = ACTIONS(2021), + [anon_sym_async] = ACTIONS(2021), + [anon_sym_PIPE] = ACTIONS(2021), + [anon_sym_table] = ACTIONS(2021), + [anon_sym_assert] = ACTIONS(2021), + [anon_sym_assert_equal] = ACTIONS(2021), + [anon_sym_download] = ACTIONS(2021), + [anon_sym_help] = ACTIONS(2021), + [anon_sym_length] = ACTIONS(2021), + [anon_sym_output] = ACTIONS(2021), + [anon_sym_output_error] = ACTIONS(2021), + [anon_sym_type] = ACTIONS(2021), + [anon_sym_append] = ACTIONS(2021), + [anon_sym_metadata] = ACTIONS(2021), + [anon_sym_move] = ACTIONS(2021), + [anon_sym_read] = ACTIONS(2021), + [anon_sym_workdir] = ACTIONS(2021), + [anon_sym_write] = ACTIONS(2021), + [anon_sym_from_json] = ACTIONS(2021), + [anon_sym_to_json] = ACTIONS(2021), + [anon_sym_to_string] = ACTIONS(2021), + [anon_sym_to_float] = ACTIONS(2021), + [anon_sym_bash] = ACTIONS(2021), + [anon_sym_fish] = ACTIONS(2021), + [anon_sym_raw] = ACTIONS(2021), + [anon_sym_sh] = ACTIONS(2021), + [anon_sym_zsh] = ACTIONS(2021), + [anon_sym_random] = ACTIONS(2021), + [anon_sym_random_boolean] = ACTIONS(2021), + [anon_sym_random_float] = ACTIONS(2021), + [anon_sym_random_integer] = ACTIONS(2021), + [anon_sym_columns] = ACTIONS(2021), + [anon_sym_rows] = ACTIONS(2021), + [anon_sym_reverse] = ACTIONS(2021), }, [352] = { - [sym_statement] = STATE(359), - [sym_expression] = STATE(877), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(782), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_assignment] = STATE(1023), - [sym_if_else] = STATE(1023), - [sym_if] = STATE(978), - [sym_match] = STATE(1023), - [sym_while] = STATE(1023), - [sym_for] = STATE(1023), - [sym_transform] = STATE(1023), - [sym_filter] = STATE(1023), - [sym_find] = STATE(1023), - [sym_remove] = STATE(1023), - [sym_reduce] = STATE(1023), - [sym_select] = STATE(1023), - [sym_insert] = STATE(1023), - [sym_async] = STATE(1023), - [sym_identifier_list] = STATE(1926), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(351), - [aux_sym_block_repeat1] = STATE(359), - [ts_builtin_sym_end] = ACTIONS(419), - [sym_identifier] = ACTIONS(2722), + [sym_math_operator] = STATE(849), + [sym_logic_operator] = STATE(811), + [ts_builtin_sym_end] = ACTIONS(2026), + [sym_identifier] = ACTIONS(2028), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(994), - [anon_sym_RBRACE] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(997), - [sym_integer] = ACTIONS(1000), - [sym_float] = ACTIONS(1003), - [sym_string] = ACTIONS(1003), - [anon_sym_true] = ACTIONS(1006), - [anon_sym_false] = ACTIONS(1006), - [anon_sym_LBRACK] = ACTIONS(1009), - [anon_sym_if] = ACTIONS(2725), - [anon_sym_elseif] = ACTIONS(419), - [anon_sym_else] = ACTIONS(442), - [anon_sym_match] = ACTIONS(2728), - [anon_sym_EQ_GT] = ACTIONS(2120), - [anon_sym_while] = ACTIONS(2731), - [anon_sym_for] = ACTIONS(2734), - [anon_sym_asyncfor] = ACTIONS(2737), - [anon_sym_transform] = ACTIONS(2740), - [anon_sym_filter] = ACTIONS(2743), - [anon_sym_find] = ACTIONS(2746), - [anon_sym_remove] = ACTIONS(2749), - [anon_sym_reduce] = ACTIONS(2752), - [anon_sym_select] = ACTIONS(2755), - [anon_sym_insert] = ACTIONS(2150), - [anon_sym_async] = ACTIONS(2758), - [anon_sym_PIPE] = ACTIONS(2761), - [anon_sym_table] = ACTIONS(2156), - [anon_sym_assert] = ACTIONS(2159), - [anon_sym_assert_equal] = ACTIONS(2159), - [anon_sym_download] = ACTIONS(2159), - [anon_sym_help] = ACTIONS(2159), - [anon_sym_length] = ACTIONS(2159), - [anon_sym_output] = ACTIONS(2159), - [anon_sym_output_error] = ACTIONS(2159), - [anon_sym_type] = ACTIONS(2159), - [anon_sym_append] = ACTIONS(2159), - [anon_sym_metadata] = ACTIONS(2159), - [anon_sym_move] = ACTIONS(2159), - [anon_sym_read] = ACTIONS(2159), - [anon_sym_workdir] = ACTIONS(2159), - [anon_sym_write] = ACTIONS(2159), - [anon_sym_from_json] = ACTIONS(2159), - [anon_sym_to_json] = ACTIONS(2159), - [anon_sym_to_string] = ACTIONS(2159), - [anon_sym_to_float] = ACTIONS(2159), - [anon_sym_bash] = ACTIONS(2159), - [anon_sym_fish] = ACTIONS(2159), - [anon_sym_raw] = ACTIONS(2159), - [anon_sym_sh] = ACTIONS(2159), - [anon_sym_zsh] = ACTIONS(2159), - [anon_sym_random] = ACTIONS(2159), - [anon_sym_random_boolean] = ACTIONS(2159), - [anon_sym_random_float] = ACTIONS(2159), - [anon_sym_random_integer] = ACTIONS(2159), - [anon_sym_columns] = ACTIONS(2159), - [anon_sym_rows] = ACTIONS(2159), - [anon_sym_reverse] = ACTIONS(2159), + [anon_sym_LBRACE] = ACTIONS(2026), + [anon_sym_RBRACE] = ACTIONS(2026), + [anon_sym_SEMI] = ACTIONS(2026), + [anon_sym_LPAREN] = ACTIONS(2026), + [anon_sym_RPAREN] = ACTIONS(2026), + [anon_sym_COMMA] = ACTIONS(2026), + [sym_integer] = ACTIONS(2028), + [sym_float] = ACTIONS(2026), + [sym_string] = ACTIONS(2026), + [anon_sym_true] = ACTIONS(2028), + [anon_sym_false] = ACTIONS(2028), + [anon_sym_LBRACK] = ACTIONS(2026), + [anon_sym_RBRACK] = ACTIONS(2026), + [anon_sym_COLON] = ACTIONS(2026), + [anon_sym_DOT_DOT] = ACTIONS(2030), + [anon_sym_PLUS] = ACTIONS(2026), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(2026), + [anon_sym_SLASH] = ACTIONS(2026), + [anon_sym_PERCENT] = ACTIONS(2026), + [anon_sym_EQ_EQ] = ACTIONS(2026), + [anon_sym_BANG_EQ] = ACTIONS(2026), + [anon_sym_AMP_AMP] = ACTIONS(2026), + [anon_sym_PIPE_PIPE] = ACTIONS(2026), + [anon_sym_GT] = ACTIONS(2028), + [anon_sym_LT] = ACTIONS(2028), + [anon_sym_GT_EQ] = ACTIONS(2026), + [anon_sym_LT_EQ] = ACTIONS(2026), + [anon_sym_if] = ACTIONS(2028), + [anon_sym_elseif] = ACTIONS(2026), + [anon_sym_else] = ACTIONS(2028), + [anon_sym_match] = ACTIONS(2028), + [anon_sym_EQ_GT] = ACTIONS(2026), + [anon_sym_while] = ACTIONS(2028), + [anon_sym_for] = ACTIONS(2028), + [anon_sym_asyncfor] = ACTIONS(2026), + [anon_sym_transform] = ACTIONS(2028), + [anon_sym_filter] = ACTIONS(2028), + [anon_sym_find] = ACTIONS(2028), + [anon_sym_remove] = ACTIONS(2028), + [anon_sym_reduce] = ACTIONS(2028), + [anon_sym_select] = ACTIONS(2028), + [anon_sym_insert] = ACTIONS(2028), + [anon_sym_async] = ACTIONS(2028), + [anon_sym_PIPE] = ACTIONS(2028), + [anon_sym_table] = ACTIONS(2028), + [anon_sym_assert] = ACTIONS(2028), + [anon_sym_assert_equal] = ACTIONS(2028), + [anon_sym_download] = ACTIONS(2028), + [anon_sym_help] = ACTIONS(2028), + [anon_sym_length] = ACTIONS(2028), + [anon_sym_output] = ACTIONS(2028), + [anon_sym_output_error] = ACTIONS(2028), + [anon_sym_type] = ACTIONS(2028), + [anon_sym_append] = ACTIONS(2028), + [anon_sym_metadata] = ACTIONS(2028), + [anon_sym_move] = ACTIONS(2028), + [anon_sym_read] = ACTIONS(2028), + [anon_sym_workdir] = ACTIONS(2028), + [anon_sym_write] = ACTIONS(2028), + [anon_sym_from_json] = ACTIONS(2028), + [anon_sym_to_json] = ACTIONS(2028), + [anon_sym_to_string] = ACTIONS(2028), + [anon_sym_to_float] = ACTIONS(2028), + [anon_sym_bash] = ACTIONS(2028), + [anon_sym_fish] = ACTIONS(2028), + [anon_sym_raw] = ACTIONS(2028), + [anon_sym_sh] = ACTIONS(2028), + [anon_sym_zsh] = ACTIONS(2028), + [anon_sym_random] = ACTIONS(2028), + [anon_sym_random_boolean] = ACTIONS(2028), + [anon_sym_random_float] = ACTIONS(2028), + [anon_sym_random_integer] = ACTIONS(2028), + [anon_sym_columns] = ACTIONS(2028), + [anon_sym_rows] = ACTIONS(2028), + [anon_sym_reverse] = ACTIONS(2028), }, [353] = { - [sym_expression] = STATE(828), - [sym__expression_kind] = STATE(866), - [aux_sym__expression_list] = STATE(353), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(866), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [ts_builtin_sym_end] = ACTIONS(2518), - [sym_identifier] = ACTIONS(2646), + [sym_else_if] = STATE(360), + [sym_else] = STATE(482), + [aux_sym_if_else_repeat1] = STATE(360), + [ts_builtin_sym_end] = ACTIONS(2009), + [sym_identifier] = ACTIONS(2011), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2649), - [anon_sym_RBRACE] = ACTIONS(2518), - [anon_sym_SEMI] = ACTIONS(2518), - [anon_sym_LPAREN] = ACTIONS(2652), - [anon_sym_RPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2518), - [sym_integer] = ACTIONS(2655), - [sym_float] = ACTIONS(2658), - [sym_string] = ACTIONS(2658), - [anon_sym_true] = ACTIONS(2661), - [anon_sym_false] = ACTIONS(2661), - [anon_sym_LBRACK] = ACTIONS(2664), - [anon_sym_RBRACK] = ACTIONS(2518), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2541), - [anon_sym_STAR] = ACTIONS(2518), - [anon_sym_SLASH] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_EQ_EQ] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_GT] = ACTIONS(2541), - [anon_sym_LT] = ACTIONS(2541), - [anon_sym_GT_EQ] = ACTIONS(2518), - [anon_sym_LT_EQ] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2541), - [anon_sym_match] = ACTIONS(2541), - [anon_sym_EQ_GT] = ACTIONS(2764), - [anon_sym_while] = ACTIONS(2541), - [anon_sym_for] = ACTIONS(2541), - [anon_sym_asyncfor] = ACTIONS(2518), - [anon_sym_transform] = ACTIONS(2541), - [anon_sym_filter] = ACTIONS(2541), - [anon_sym_find] = ACTIONS(2541), - [anon_sym_remove] = ACTIONS(2541), - [anon_sym_reduce] = ACTIONS(2541), - [anon_sym_select] = ACTIONS(2541), - [anon_sym_insert] = ACTIONS(2541), - [anon_sym_async] = ACTIONS(2541), - [anon_sym_PIPE] = ACTIONS(2546), - [anon_sym_table] = ACTIONS(2767), - [anon_sym_assert] = ACTIONS(2770), - [anon_sym_assert_equal] = ACTIONS(2770), - [anon_sym_download] = ACTIONS(2770), - [anon_sym_help] = ACTIONS(2770), - [anon_sym_length] = ACTIONS(2770), - [anon_sym_output] = ACTIONS(2770), - [anon_sym_output_error] = ACTIONS(2770), - [anon_sym_type] = ACTIONS(2770), - [anon_sym_append] = ACTIONS(2770), - [anon_sym_metadata] = ACTIONS(2770), - [anon_sym_move] = ACTIONS(2770), - [anon_sym_read] = ACTIONS(2770), - [anon_sym_workdir] = ACTIONS(2770), - [anon_sym_write] = ACTIONS(2770), - [anon_sym_from_json] = ACTIONS(2770), - [anon_sym_to_json] = ACTIONS(2770), - [anon_sym_to_string] = ACTIONS(2770), - [anon_sym_to_float] = ACTIONS(2770), - [anon_sym_bash] = ACTIONS(2770), - [anon_sym_fish] = ACTIONS(2770), - [anon_sym_raw] = ACTIONS(2770), - [anon_sym_sh] = ACTIONS(2770), - [anon_sym_zsh] = ACTIONS(2770), - [anon_sym_random] = ACTIONS(2770), - [anon_sym_random_boolean] = ACTIONS(2770), - [anon_sym_random_float] = ACTIONS(2770), - [anon_sym_random_integer] = ACTIONS(2770), - [anon_sym_columns] = ACTIONS(2770), - [anon_sym_rows] = ACTIONS(2770), - [anon_sym_reverse] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2009), + [anon_sym_RBRACE] = ACTIONS(2009), + [anon_sym_SEMI] = ACTIONS(2009), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_RPAREN] = ACTIONS(2009), + [anon_sym_COMMA] = ACTIONS(2009), + [sym_integer] = ACTIONS(2011), + [sym_float] = ACTIONS(2009), + [sym_string] = ACTIONS(2009), + [anon_sym_true] = ACTIONS(2011), + [anon_sym_false] = ACTIONS(2011), + [anon_sym_LBRACK] = ACTIONS(2009), + [anon_sym_RBRACK] = ACTIONS(2009), + [anon_sym_COLON] = ACTIONS(2009), + [anon_sym_PLUS] = ACTIONS(2009), + [anon_sym_DASH] = ACTIONS(2011), + [anon_sym_STAR] = ACTIONS(2009), + [anon_sym_SLASH] = ACTIONS(2009), + [anon_sym_PERCENT] = ACTIONS(2009), + [anon_sym_EQ_EQ] = ACTIONS(2009), + [anon_sym_BANG_EQ] = ACTIONS(2009), + [anon_sym_AMP_AMP] = ACTIONS(2009), + [anon_sym_PIPE_PIPE] = ACTIONS(2009), + [anon_sym_GT] = ACTIONS(2011), + [anon_sym_LT] = ACTIONS(2011), + [anon_sym_GT_EQ] = ACTIONS(2009), + [anon_sym_LT_EQ] = ACTIONS(2009), + [anon_sym_if] = ACTIONS(2011), + [anon_sym_elseif] = ACTIONS(2015), + [anon_sym_else] = ACTIONS(2032), + [anon_sym_match] = ACTIONS(2011), + [anon_sym_EQ_GT] = ACTIONS(2009), + [anon_sym_while] = ACTIONS(2011), + [anon_sym_for] = ACTIONS(2011), + [anon_sym_asyncfor] = ACTIONS(2009), + [anon_sym_transform] = ACTIONS(2011), + [anon_sym_filter] = ACTIONS(2011), + [anon_sym_find] = ACTIONS(2011), + [anon_sym_remove] = ACTIONS(2011), + [anon_sym_reduce] = ACTIONS(2011), + [anon_sym_select] = ACTIONS(2011), + [anon_sym_insert] = ACTIONS(2011), + [anon_sym_async] = ACTIONS(2011), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_table] = ACTIONS(2011), + [anon_sym_assert] = ACTIONS(2011), + [anon_sym_assert_equal] = ACTIONS(2011), + [anon_sym_download] = ACTIONS(2011), + [anon_sym_help] = ACTIONS(2011), + [anon_sym_length] = ACTIONS(2011), + [anon_sym_output] = ACTIONS(2011), + [anon_sym_output_error] = ACTIONS(2011), + [anon_sym_type] = ACTIONS(2011), + [anon_sym_append] = ACTIONS(2011), + [anon_sym_metadata] = ACTIONS(2011), + [anon_sym_move] = ACTIONS(2011), + [anon_sym_read] = ACTIONS(2011), + [anon_sym_workdir] = ACTIONS(2011), + [anon_sym_write] = ACTIONS(2011), + [anon_sym_from_json] = ACTIONS(2011), + [anon_sym_to_json] = ACTIONS(2011), + [anon_sym_to_string] = ACTIONS(2011), + [anon_sym_to_float] = ACTIONS(2011), + [anon_sym_bash] = ACTIONS(2011), + [anon_sym_fish] = ACTIONS(2011), + [anon_sym_raw] = ACTIONS(2011), + [anon_sym_sh] = ACTIONS(2011), + [anon_sym_zsh] = ACTIONS(2011), + [anon_sym_random] = ACTIONS(2011), + [anon_sym_random_boolean] = ACTIONS(2011), + [anon_sym_random_float] = ACTIONS(2011), + [anon_sym_random_integer] = ACTIONS(2011), + [anon_sym_columns] = ACTIONS(2011), + [anon_sym_rows] = ACTIONS(2011), + [anon_sym_reverse] = ACTIONS(2011), }, [354] = { - [sym_statement] = STATE(348), - [sym_expression] = STATE(859), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(754), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_assignment] = STATE(1023), - [sym_if_else] = STATE(1023), - [sym_if] = STATE(985), - [sym_match] = STATE(1023), - [sym_while] = STATE(1023), - [sym_for] = STATE(1023), - [sym_transform] = STATE(1023), - [sym_filter] = STATE(1023), - [sym_find] = STATE(1023), - [sym_remove] = STATE(1023), - [sym_reduce] = STATE(1023), - [sym_select] = STATE(1023), - [sym_insert] = STATE(1023), - [sym_async] = STATE(1023), - [sym_identifier_list] = STATE(1841), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(315), - [aux_sym_block_repeat1] = STATE(348), - [sym_identifier] = ACTIONS(2773), + [sym_math_operator] = STATE(849), + [sym_logic_operator] = STATE(811), + [ts_builtin_sym_end] = ACTIONS(2034), + [sym_identifier] = ACTIONS(2036), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2626), - [anon_sym_RBRACE] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_COMMA] = ACTIONS(419), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_if] = ACTIONS(1570), - [anon_sym_elseif] = ACTIONS(419), - [anon_sym_else] = ACTIONS(442), - [anon_sym_match] = ACTIONS(1572), - [anon_sym_EQ_GT] = ACTIONS(631), - [anon_sym_while] = ACTIONS(1574), - [anon_sym_for] = ACTIONS(1576), - [anon_sym_asyncfor] = ACTIONS(1578), - [anon_sym_transform] = ACTIONS(1580), - [anon_sym_filter] = ACTIONS(1582), - [anon_sym_find] = ACTIONS(1584), - [anon_sym_remove] = ACTIONS(1586), - [anon_sym_reduce] = ACTIONS(1588), - [anon_sym_select] = ACTIONS(1590), - [anon_sym_insert] = ACTIONS(651), - [anon_sym_async] = ACTIONS(1592), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(655), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_assert_equal] = ACTIONS(657), - [anon_sym_download] = ACTIONS(657), - [anon_sym_help] = ACTIONS(657), - [anon_sym_length] = ACTIONS(657), - [anon_sym_output] = ACTIONS(657), - [anon_sym_output_error] = ACTIONS(657), - [anon_sym_type] = ACTIONS(657), - [anon_sym_append] = ACTIONS(657), - [anon_sym_metadata] = ACTIONS(657), - [anon_sym_move] = ACTIONS(657), - [anon_sym_read] = ACTIONS(657), - [anon_sym_workdir] = ACTIONS(657), - [anon_sym_write] = ACTIONS(657), - [anon_sym_from_json] = ACTIONS(657), - [anon_sym_to_json] = ACTIONS(657), - [anon_sym_to_string] = ACTIONS(657), - [anon_sym_to_float] = ACTIONS(657), - [anon_sym_bash] = ACTIONS(657), - [anon_sym_fish] = ACTIONS(657), - [anon_sym_raw] = ACTIONS(657), - [anon_sym_sh] = ACTIONS(657), - [anon_sym_zsh] = ACTIONS(657), - [anon_sym_random] = ACTIONS(657), - [anon_sym_random_boolean] = ACTIONS(657), - [anon_sym_random_float] = ACTIONS(657), - [anon_sym_random_integer] = ACTIONS(657), - [anon_sym_columns] = ACTIONS(657), - [anon_sym_rows] = ACTIONS(657), - [anon_sym_reverse] = ACTIONS(657), + [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(2038), + [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(69), + [anon_sym_DOT_DOT] = ACTIONS(2034), + [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(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_asyncfor] = ACTIONS(2034), + [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), }, [355] = { - [sym_expression] = STATE(783), - [sym__expression_kind] = STATE(759), - [aux_sym__expression_list] = STATE(357), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(759), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_identifier_list] = STATE(1841), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(315), - [ts_builtin_sym_end] = ACTIONS(2443), - [sym_identifier] = ACTIONS(2624), + [sym_math_operator] = STATE(849), + [sym_logic_operator] = STATE(811), + [ts_builtin_sym_end] = ACTIONS(2041), + [sym_identifier] = ACTIONS(2043), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2626), - [anon_sym_RBRACE] = ACTIONS(2443), - [anon_sym_SEMI] = ACTIONS(2443), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_RPAREN] = ACTIONS(2443), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(2443), - [anon_sym_PLUS] = ACTIONS(2443), - [anon_sym_DASH] = ACTIONS(2447), - [anon_sym_STAR] = ACTIONS(2443), - [anon_sym_SLASH] = ACTIONS(2443), - [anon_sym_PERCENT] = ACTIONS(2443), - [anon_sym_EQ_EQ] = ACTIONS(2443), - [anon_sym_BANG_EQ] = ACTIONS(2443), - [anon_sym_AMP_AMP] = ACTIONS(2443), - [anon_sym_PIPE_PIPE] = ACTIONS(2443), - [anon_sym_GT] = ACTIONS(2447), - [anon_sym_LT] = ACTIONS(2447), - [anon_sym_GT_EQ] = ACTIONS(2443), - [anon_sym_LT_EQ] = ACTIONS(2443), - [anon_sym_if] = ACTIONS(2447), - [anon_sym_elseif] = ACTIONS(2443), - [anon_sym_else] = ACTIONS(2447), - [anon_sym_match] = ACTIONS(2447), - [anon_sym_EQ_GT] = ACTIONS(631), - [anon_sym_while] = ACTIONS(2447), - [anon_sym_for] = ACTIONS(2447), - [anon_sym_asyncfor] = ACTIONS(2443), - [anon_sym_transform] = ACTIONS(2447), - [anon_sym_filter] = ACTIONS(2447), - [anon_sym_find] = ACTIONS(2447), - [anon_sym_remove] = ACTIONS(2447), - [anon_sym_reduce] = ACTIONS(2447), - [anon_sym_select] = ACTIONS(2447), - [anon_sym_insert] = ACTIONS(2447), - [anon_sym_async] = ACTIONS(2447), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(655), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_assert_equal] = ACTIONS(657), - [anon_sym_download] = ACTIONS(657), - [anon_sym_help] = ACTIONS(657), - [anon_sym_length] = ACTIONS(657), - [anon_sym_output] = ACTIONS(657), - [anon_sym_output_error] = ACTIONS(657), - [anon_sym_type] = ACTIONS(657), - [anon_sym_append] = ACTIONS(657), - [anon_sym_metadata] = ACTIONS(657), - [anon_sym_move] = ACTIONS(657), - [anon_sym_read] = ACTIONS(657), - [anon_sym_workdir] = ACTIONS(657), - [anon_sym_write] = ACTIONS(657), - [anon_sym_from_json] = ACTIONS(657), - [anon_sym_to_json] = ACTIONS(657), - [anon_sym_to_string] = ACTIONS(657), - [anon_sym_to_float] = ACTIONS(657), - [anon_sym_bash] = ACTIONS(657), - [anon_sym_fish] = ACTIONS(657), - [anon_sym_raw] = ACTIONS(657), - [anon_sym_sh] = ACTIONS(657), - [anon_sym_zsh] = ACTIONS(657), - [anon_sym_random] = ACTIONS(657), - [anon_sym_random_boolean] = ACTIONS(657), - [anon_sym_random_float] = ACTIONS(657), - [anon_sym_random_integer] = ACTIONS(657), - [anon_sym_columns] = ACTIONS(657), - [anon_sym_rows] = ACTIONS(657), - [anon_sym_reverse] = ACTIONS(657), + [anon_sym_LBRACE] = ACTIONS(2041), + [anon_sym_RBRACE] = ACTIONS(2041), + [anon_sym_SEMI] = ACTIONS(2045), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_RPAREN] = ACTIONS(2041), + [anon_sym_COMMA] = ACTIONS(2041), + [sym_integer] = ACTIONS(2043), + [sym_float] = ACTIONS(2041), + [sym_string] = ACTIONS(2041), + [anon_sym_true] = ACTIONS(2043), + [anon_sym_false] = ACTIONS(2043), + [anon_sym_LBRACK] = ACTIONS(2041), + [anon_sym_RBRACK] = ACTIONS(2041), + [anon_sym_COLON] = ACTIONS(69), + [anon_sym_DOT_DOT] = ACTIONS(2041), + [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(2043), + [anon_sym_elseif] = ACTIONS(2041), + [anon_sym_else] = ACTIONS(2043), + [anon_sym_match] = ACTIONS(2043), + [anon_sym_EQ_GT] = ACTIONS(2041), + [anon_sym_while] = ACTIONS(2043), + [anon_sym_for] = ACTIONS(2043), + [anon_sym_asyncfor] = ACTIONS(2041), + [anon_sym_transform] = ACTIONS(2043), + [anon_sym_filter] = ACTIONS(2043), + [anon_sym_find] = ACTIONS(2043), + [anon_sym_remove] = ACTIONS(2043), + [anon_sym_reduce] = ACTIONS(2043), + [anon_sym_select] = ACTIONS(2043), + [anon_sym_insert] = ACTIONS(2043), + [anon_sym_async] = ACTIONS(2043), + [anon_sym_PIPE] = ACTIONS(2043), + [anon_sym_table] = ACTIONS(2043), + [anon_sym_assert] = ACTIONS(2043), + [anon_sym_assert_equal] = ACTIONS(2043), + [anon_sym_download] = ACTIONS(2043), + [anon_sym_help] = ACTIONS(2043), + [anon_sym_length] = ACTIONS(2043), + [anon_sym_output] = ACTIONS(2043), + [anon_sym_output_error] = ACTIONS(2043), + [anon_sym_type] = ACTIONS(2043), + [anon_sym_append] = ACTIONS(2043), + [anon_sym_metadata] = ACTIONS(2043), + [anon_sym_move] = ACTIONS(2043), + [anon_sym_read] = ACTIONS(2043), + [anon_sym_workdir] = ACTIONS(2043), + [anon_sym_write] = ACTIONS(2043), + [anon_sym_from_json] = ACTIONS(2043), + [anon_sym_to_json] = ACTIONS(2043), + [anon_sym_to_string] = ACTIONS(2043), + [anon_sym_to_float] = ACTIONS(2043), + [anon_sym_bash] = ACTIONS(2043), + [anon_sym_fish] = ACTIONS(2043), + [anon_sym_raw] = ACTIONS(2043), + [anon_sym_sh] = ACTIONS(2043), + [anon_sym_zsh] = ACTIONS(2043), + [anon_sym_random] = ACTIONS(2043), + [anon_sym_random_boolean] = ACTIONS(2043), + [anon_sym_random_float] = ACTIONS(2043), + [anon_sym_random_integer] = ACTIONS(2043), + [anon_sym_columns] = ACTIONS(2043), + [anon_sym_rows] = ACTIONS(2043), + [anon_sym_reverse] = ACTIONS(2043), }, [356] = { - [sym_expression] = STATE(1609), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_logic] = STATE(1539), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(345), - [ts_builtin_sym_end] = ACTIONS(2449), - [sym_identifier] = ACTIONS(2451), + [sym_expression] = STATE(567), + [sym__expression_kind] = STATE(585), + [aux_sym__expression_list] = STATE(426), + [sym_value] = STATE(585), + [sym_boolean] = STATE(586), + [sym_list] = STATE(586), + [sym_map] = STATE(586), + [sym_index] = STATE(585), + [sym_math] = STATE(585), + [sym_logic] = STATE(585), + [sym_assignment_operator] = STATE(342), + [sym_identifier_list] = STATE(1193), + [sym_table] = STATE(586), + [sym_function] = STATE(586), + [sym_function_call] = STATE(585), + [sym__context_defined_function] = STATE(587), + [sym_built_in_function] = STATE(587), + [sym__built_in_function_name] = STATE(429), + [sym_identifier] = ACTIONS(1315), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_RBRACE] = ACTIONS(2449), - [anon_sym_SEMI] = ACTIONS(2449), - [anon_sym_LPAREN] = ACTIONS(2455), - [anon_sym_RPAREN] = ACTIONS(2449), - [sym_integer] = ACTIONS(2457), - [sym_float] = ACTIONS(2459), - [sym_string] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(2461), - [anon_sym_false] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_COLON] = ACTIONS(2449), - [anon_sym_PLUS] = ACTIONS(2449), - [anon_sym_DASH] = ACTIONS(2465), - [anon_sym_STAR] = ACTIONS(2449), - [anon_sym_SLASH] = ACTIONS(2449), - [anon_sym_PERCENT] = ACTIONS(2449), - [anon_sym_EQ_EQ] = ACTIONS(2449), - [anon_sym_BANG_EQ] = ACTIONS(2449), - [anon_sym_AMP_AMP] = ACTIONS(2449), - [anon_sym_PIPE_PIPE] = ACTIONS(2449), - [anon_sym_GT] = ACTIONS(2465), - [anon_sym_LT] = ACTIONS(2465), - [anon_sym_GT_EQ] = ACTIONS(2449), - [anon_sym_LT_EQ] = ACTIONS(2449), - [anon_sym_if] = ACTIONS(2465), - [anon_sym_elseif] = ACTIONS(2449), - [anon_sym_else] = ACTIONS(2465), - [anon_sym_match] = ACTIONS(2465), - [anon_sym_EQ_GT] = ACTIONS(2467), - [anon_sym_while] = ACTIONS(2465), - [anon_sym_for] = ACTIONS(2465), - [anon_sym_asyncfor] = ACTIONS(2449), - [anon_sym_transform] = ACTIONS(2465), - [anon_sym_filter] = ACTIONS(2465), - [anon_sym_find] = ACTIONS(2465), - [anon_sym_remove] = ACTIONS(2465), - [anon_sym_reduce] = ACTIONS(2465), - [anon_sym_select] = ACTIONS(2465), - [anon_sym_insert] = ACTIONS(2465), - [anon_sym_async] = ACTIONS(2465), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_RBRACE] = ACTIONS(1313), + [anon_sym_SEMI] = ACTIONS(1313), + [anon_sym_LPAREN] = ACTIONS(2049), + [anon_sym_COMMA] = ACTIONS(1313), + [sym_integer] = ACTIONS(2051), + [sym_float] = ACTIONS(2053), + [sym_string] = ACTIONS(2053), + [anon_sym_true] = ACTIONS(2055), + [anon_sym_false] = ACTIONS(2055), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_EQ] = ACTIONS(1317), + [anon_sym_COLON] = ACTIONS(1313), + [anon_sym_PLUS] = ACTIONS(1315), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_PERCENT] = ACTIONS(1313), + [anon_sym_EQ_EQ] = ACTIONS(1313), + [anon_sym_BANG_EQ] = ACTIONS(1313), + [anon_sym_AMP_AMP] = ACTIONS(1313), + [anon_sym_PIPE_PIPE] = ACTIONS(1313), + [anon_sym_GT] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(1315), + [anon_sym_GT_EQ] = ACTIONS(1313), + [anon_sym_LT_EQ] = ACTIONS(1313), + [anon_sym_PLUS_EQ] = ACTIONS(1319), + [anon_sym_DASH_EQ] = ACTIONS(1319), + [anon_sym_EQ_GT] = ACTIONS(2059), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(2469), - [anon_sym_assert] = ACTIONS(2471), - [anon_sym_assert_equal] = ACTIONS(2471), - [anon_sym_download] = ACTIONS(2471), - [anon_sym_help] = ACTIONS(2471), - [anon_sym_length] = ACTIONS(2471), - [anon_sym_output] = ACTIONS(2471), - [anon_sym_output_error] = ACTIONS(2471), - [anon_sym_type] = ACTIONS(2471), - [anon_sym_append] = ACTIONS(2471), - [anon_sym_metadata] = ACTIONS(2471), - [anon_sym_move] = ACTIONS(2471), - [anon_sym_read] = ACTIONS(2471), - [anon_sym_workdir] = ACTIONS(2471), - [anon_sym_write] = ACTIONS(2471), - [anon_sym_from_json] = ACTIONS(2471), - [anon_sym_to_json] = ACTIONS(2471), - [anon_sym_to_string] = ACTIONS(2471), - [anon_sym_to_float] = ACTIONS(2471), - [anon_sym_bash] = ACTIONS(2471), - [anon_sym_fish] = ACTIONS(2471), - [anon_sym_raw] = ACTIONS(2471), - [anon_sym_sh] = ACTIONS(2471), - [anon_sym_zsh] = ACTIONS(2471), - [anon_sym_random] = ACTIONS(2471), - [anon_sym_random_boolean] = ACTIONS(2471), - [anon_sym_random_float] = ACTIONS(2471), - [anon_sym_random_integer] = ACTIONS(2471), - [anon_sym_columns] = ACTIONS(2471), - [anon_sym_rows] = ACTIONS(2471), - [anon_sym_reverse] = ACTIONS(2471), + [anon_sym_table] = ACTIONS(2061), + [anon_sym_assert] = ACTIONS(1927), + [anon_sym_assert_equal] = ACTIONS(1927), + [anon_sym_download] = ACTIONS(1927), + [anon_sym_help] = ACTIONS(1927), + [anon_sym_length] = ACTIONS(1927), + [anon_sym_output] = ACTIONS(1927), + [anon_sym_output_error] = ACTIONS(1927), + [anon_sym_type] = ACTIONS(1927), + [anon_sym_append] = ACTIONS(1927), + [anon_sym_metadata] = ACTIONS(1927), + [anon_sym_move] = ACTIONS(1927), + [anon_sym_read] = ACTIONS(1927), + [anon_sym_workdir] = ACTIONS(1927), + [anon_sym_write] = ACTIONS(1927), + [anon_sym_from_json] = ACTIONS(1927), + [anon_sym_to_json] = ACTIONS(1927), + [anon_sym_to_string] = ACTIONS(1927), + [anon_sym_to_float] = ACTIONS(1927), + [anon_sym_bash] = ACTIONS(1927), + [anon_sym_fish] = ACTIONS(1927), + [anon_sym_raw] = ACTIONS(1927), + [anon_sym_sh] = ACTIONS(1927), + [anon_sym_zsh] = ACTIONS(1927), + [anon_sym_random] = ACTIONS(1927), + [anon_sym_random_boolean] = ACTIONS(1927), + [anon_sym_random_float] = ACTIONS(1927), + [anon_sym_random_integer] = ACTIONS(1927), + [anon_sym_columns] = ACTIONS(1927), + [anon_sym_rows] = ACTIONS(1927), + [anon_sym_reverse] = ACTIONS(1927), }, [357] = { - [sym_expression] = STATE(783), - [sym__expression_kind] = STATE(759), - [aux_sym__expression_list] = STATE(357), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(759), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_identifier_list] = STATE(1841), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(315), - [ts_builtin_sym_end] = ACTIONS(2518), - [sym_identifier] = ACTIONS(2594), + [sym_math_operator] = STATE(849), + [sym_logic_operator] = STATE(811), + [ts_builtin_sym_end] = ACTIONS(2063), + [sym_identifier] = ACTIONS(2065), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2597), - [anon_sym_RBRACE] = ACTIONS(2518), - [anon_sym_SEMI] = ACTIONS(2518), - [anon_sym_LPAREN] = ACTIONS(2600), - [anon_sym_RPAREN] = ACTIONS(2518), - [sym_integer] = ACTIONS(2603), - [sym_float] = ACTIONS(2606), - [sym_string] = ACTIONS(2606), - [anon_sym_true] = ACTIONS(2609), - [anon_sym_false] = ACTIONS(2609), - [anon_sym_LBRACK] = ACTIONS(2612), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2541), - [anon_sym_STAR] = ACTIONS(2518), - [anon_sym_SLASH] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_EQ_EQ] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_GT] = ACTIONS(2541), - [anon_sym_LT] = ACTIONS(2541), - [anon_sym_GT_EQ] = ACTIONS(2518), - [anon_sym_LT_EQ] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2541), - [anon_sym_elseif] = ACTIONS(2518), - [anon_sym_else] = ACTIONS(2541), - [anon_sym_match] = ACTIONS(2541), - [anon_sym_EQ_GT] = ACTIONS(2637), - [anon_sym_while] = ACTIONS(2541), - [anon_sym_for] = ACTIONS(2541), - [anon_sym_asyncfor] = ACTIONS(2518), - [anon_sym_transform] = ACTIONS(2541), - [anon_sym_filter] = ACTIONS(2541), - [anon_sym_find] = ACTIONS(2541), - [anon_sym_remove] = ACTIONS(2541), - [anon_sym_reduce] = ACTIONS(2541), - [anon_sym_select] = ACTIONS(2541), - [anon_sym_insert] = ACTIONS(2541), - [anon_sym_async] = ACTIONS(2541), - [anon_sym_PIPE] = ACTIONS(2546), - [anon_sym_table] = ACTIONS(2640), - [anon_sym_assert] = ACTIONS(2643), - [anon_sym_assert_equal] = ACTIONS(2643), - [anon_sym_download] = ACTIONS(2643), - [anon_sym_help] = ACTIONS(2643), - [anon_sym_length] = ACTIONS(2643), - [anon_sym_output] = ACTIONS(2643), - [anon_sym_output_error] = ACTIONS(2643), - [anon_sym_type] = ACTIONS(2643), - [anon_sym_append] = ACTIONS(2643), - [anon_sym_metadata] = ACTIONS(2643), - [anon_sym_move] = ACTIONS(2643), - [anon_sym_read] = ACTIONS(2643), - [anon_sym_workdir] = ACTIONS(2643), - [anon_sym_write] = ACTIONS(2643), - [anon_sym_from_json] = ACTIONS(2643), - [anon_sym_to_json] = ACTIONS(2643), - [anon_sym_to_string] = ACTIONS(2643), - [anon_sym_to_float] = ACTIONS(2643), - [anon_sym_bash] = ACTIONS(2643), - [anon_sym_fish] = ACTIONS(2643), - [anon_sym_raw] = ACTIONS(2643), - [anon_sym_sh] = ACTIONS(2643), - [anon_sym_zsh] = ACTIONS(2643), - [anon_sym_random] = ACTIONS(2643), - [anon_sym_random_boolean] = ACTIONS(2643), - [anon_sym_random_float] = ACTIONS(2643), - [anon_sym_random_integer] = ACTIONS(2643), - [anon_sym_columns] = ACTIONS(2643), - [anon_sym_rows] = ACTIONS(2643), - [anon_sym_reverse] = ACTIONS(2643), + [anon_sym_LBRACE] = ACTIONS(2063), + [anon_sym_RBRACE] = ACTIONS(2063), + [anon_sym_SEMI] = ACTIONS(2063), + [anon_sym_LPAREN] = ACTIONS(2063), + [anon_sym_RPAREN] = ACTIONS(2063), + [anon_sym_COMMA] = ACTIONS(2063), + [sym_integer] = ACTIONS(2065), + [sym_float] = ACTIONS(2063), + [sym_string] = ACTIONS(2063), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_LBRACK] = ACTIONS(2063), + [anon_sym_RBRACK] = ACTIONS(2063), + [anon_sym_COLON] = ACTIONS(2063), + [anon_sym_DOT_DOT] = ACTIONS(2063), + [anon_sym_PLUS] = ACTIONS(2063), + [anon_sym_DASH] = ACTIONS(2065), + [anon_sym_STAR] = ACTIONS(2063), + [anon_sym_SLASH] = ACTIONS(2063), + [anon_sym_PERCENT] = ACTIONS(2063), + [anon_sym_EQ_EQ] = ACTIONS(2063), + [anon_sym_BANG_EQ] = ACTIONS(2063), + [anon_sym_AMP_AMP] = ACTIONS(2063), + [anon_sym_PIPE_PIPE] = ACTIONS(2063), + [anon_sym_GT] = ACTIONS(2065), + [anon_sym_LT] = ACTIONS(2065), + [anon_sym_GT_EQ] = ACTIONS(2063), + [anon_sym_LT_EQ] = ACTIONS(2063), + [anon_sym_if] = ACTIONS(2065), + [anon_sym_elseif] = ACTIONS(2063), + [anon_sym_else] = ACTIONS(2065), + [anon_sym_match] = ACTIONS(2065), + [anon_sym_EQ_GT] = ACTIONS(2063), + [anon_sym_while] = ACTIONS(2065), + [anon_sym_for] = ACTIONS(2065), + [anon_sym_asyncfor] = ACTIONS(2063), + [anon_sym_transform] = ACTIONS(2065), + [anon_sym_filter] = ACTIONS(2065), + [anon_sym_find] = ACTIONS(2065), + [anon_sym_remove] = ACTIONS(2065), + [anon_sym_reduce] = ACTIONS(2065), + [anon_sym_select] = ACTIONS(2065), + [anon_sym_insert] = ACTIONS(2065), + [anon_sym_async] = ACTIONS(2065), + [anon_sym_PIPE] = ACTIONS(2065), + [anon_sym_table] = ACTIONS(2065), + [anon_sym_assert] = ACTIONS(2065), + [anon_sym_assert_equal] = ACTIONS(2065), + [anon_sym_download] = ACTIONS(2065), + [anon_sym_help] = ACTIONS(2065), + [anon_sym_length] = ACTIONS(2065), + [anon_sym_output] = ACTIONS(2065), + [anon_sym_output_error] = ACTIONS(2065), + [anon_sym_type] = ACTIONS(2065), + [anon_sym_append] = ACTIONS(2065), + [anon_sym_metadata] = ACTIONS(2065), + [anon_sym_move] = ACTIONS(2065), + [anon_sym_read] = ACTIONS(2065), + [anon_sym_workdir] = ACTIONS(2065), + [anon_sym_write] = ACTIONS(2065), + [anon_sym_from_json] = ACTIONS(2065), + [anon_sym_to_json] = ACTIONS(2065), + [anon_sym_to_string] = ACTIONS(2065), + [anon_sym_to_float] = ACTIONS(2065), + [anon_sym_bash] = ACTIONS(2065), + [anon_sym_fish] = ACTIONS(2065), + [anon_sym_raw] = ACTIONS(2065), + [anon_sym_sh] = ACTIONS(2065), + [anon_sym_zsh] = ACTIONS(2065), + [anon_sym_random] = ACTIONS(2065), + [anon_sym_random_boolean] = ACTIONS(2065), + [anon_sym_random_float] = ACTIONS(2065), + [anon_sym_random_integer] = ACTIONS(2065), + [anon_sym_columns] = ACTIONS(2065), + [anon_sym_rows] = ACTIONS(2065), + [anon_sym_reverse] = ACTIONS(2065), }, [358] = { - [sym_statement] = STATE(348), - [sym_expression] = STATE(859), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(754), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_assignment] = STATE(1023), - [sym_if_else] = STATE(1023), - [sym_if] = STATE(985), - [sym_match] = STATE(1023), - [sym_while] = STATE(1023), - [sym_for] = STATE(1023), - [sym_transform] = STATE(1023), - [sym_filter] = STATE(1023), - [sym_find] = STATE(1023), - [sym_remove] = STATE(1023), - [sym_reduce] = STATE(1023), - [sym_select] = STATE(1023), - [sym_insert] = STATE(1023), - [sym_async] = STATE(1023), - [sym_identifier_list] = STATE(1841), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(315), - [aux_sym_block_repeat1] = STATE(348), - [sym_identifier] = ACTIONS(2773), + [sym_math_operator] = STATE(849), + [sym_logic_operator] = STATE(811), + [ts_builtin_sym_end] = ACTIONS(2067), + [sym_identifier] = ACTIONS(2069), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(994), - [anon_sym_RBRACE] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_COMMA] = ACTIONS(419), - [sym_integer] = ACTIONS(1000), - [sym_float] = ACTIONS(1003), - [sym_string] = ACTIONS(1003), - [anon_sym_true] = ACTIONS(1006), - [anon_sym_false] = ACTIONS(1006), - [anon_sym_LBRACK] = ACTIONS(1009), - [anon_sym_if] = ACTIONS(2776), - [anon_sym_elseif] = ACTIONS(419), - [anon_sym_else] = ACTIONS(442), - [anon_sym_match] = ACTIONS(2779), - [anon_sym_EQ_GT] = ACTIONS(1524), - [anon_sym_while] = ACTIONS(2782), - [anon_sym_for] = ACTIONS(2785), - [anon_sym_asyncfor] = ACTIONS(2788), - [anon_sym_transform] = ACTIONS(2791), - [anon_sym_filter] = ACTIONS(2794), - [anon_sym_find] = ACTIONS(2797), - [anon_sym_remove] = ACTIONS(2800), - [anon_sym_reduce] = ACTIONS(2803), - [anon_sym_select] = ACTIONS(2806), - [anon_sym_insert] = ACTIONS(1554), - [anon_sym_async] = ACTIONS(2809), - [anon_sym_PIPE] = ACTIONS(2761), - [anon_sym_table] = ACTIONS(1560), - [anon_sym_assert] = ACTIONS(1563), - [anon_sym_assert_equal] = ACTIONS(1563), - [anon_sym_download] = ACTIONS(1563), - [anon_sym_help] = ACTIONS(1563), - [anon_sym_length] = ACTIONS(1563), - [anon_sym_output] = ACTIONS(1563), - [anon_sym_output_error] = ACTIONS(1563), - [anon_sym_type] = ACTIONS(1563), - [anon_sym_append] = ACTIONS(1563), - [anon_sym_metadata] = ACTIONS(1563), - [anon_sym_move] = ACTIONS(1563), - [anon_sym_read] = ACTIONS(1563), - [anon_sym_workdir] = ACTIONS(1563), - [anon_sym_write] = ACTIONS(1563), - [anon_sym_from_json] = ACTIONS(1563), - [anon_sym_to_json] = ACTIONS(1563), - [anon_sym_to_string] = ACTIONS(1563), - [anon_sym_to_float] = ACTIONS(1563), - [anon_sym_bash] = ACTIONS(1563), - [anon_sym_fish] = ACTIONS(1563), - [anon_sym_raw] = ACTIONS(1563), - [anon_sym_sh] = ACTIONS(1563), - [anon_sym_zsh] = ACTIONS(1563), - [anon_sym_random] = ACTIONS(1563), - [anon_sym_random_boolean] = ACTIONS(1563), - [anon_sym_random_float] = ACTIONS(1563), - [anon_sym_random_integer] = ACTIONS(1563), - [anon_sym_columns] = ACTIONS(1563), - [anon_sym_rows] = ACTIONS(1563), - [anon_sym_reverse] = ACTIONS(1563), + [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_RBRACE] = ACTIONS(2067), + [anon_sym_SEMI] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_RPAREN] = ACTIONS(2067), + [anon_sym_COMMA] = ACTIONS(2067), + [sym_integer] = ACTIONS(2069), + [sym_float] = ACTIONS(2067), + [sym_string] = ACTIONS(2067), + [anon_sym_true] = ACTIONS(2069), + [anon_sym_false] = ACTIONS(2069), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_RBRACK] = ACTIONS(2067), + [anon_sym_COLON] = ACTIONS(2067), + [anon_sym_DOT_DOT] = ACTIONS(2067), + [anon_sym_PLUS] = ACTIONS(2067), + [anon_sym_DASH] = ACTIONS(2069), + [anon_sym_STAR] = ACTIONS(2067), + [anon_sym_SLASH] = ACTIONS(2067), + [anon_sym_PERCENT] = ACTIONS(2067), + [anon_sym_EQ_EQ] = ACTIONS(2067), + [anon_sym_BANG_EQ] = ACTIONS(2067), + [anon_sym_AMP_AMP] = ACTIONS(2067), + [anon_sym_PIPE_PIPE] = ACTIONS(2067), + [anon_sym_GT] = ACTIONS(2069), + [anon_sym_LT] = ACTIONS(2069), + [anon_sym_GT_EQ] = ACTIONS(2067), + [anon_sym_LT_EQ] = ACTIONS(2067), + [anon_sym_if] = ACTIONS(2069), + [anon_sym_elseif] = ACTIONS(2067), + [anon_sym_else] = ACTIONS(2069), + [anon_sym_match] = ACTIONS(2069), + [anon_sym_EQ_GT] = ACTIONS(2067), + [anon_sym_while] = ACTIONS(2069), + [anon_sym_for] = ACTIONS(2069), + [anon_sym_asyncfor] = ACTIONS(2067), + [anon_sym_transform] = ACTIONS(2069), + [anon_sym_filter] = ACTIONS(2069), + [anon_sym_find] = ACTIONS(2069), + [anon_sym_remove] = ACTIONS(2069), + [anon_sym_reduce] = ACTIONS(2069), + [anon_sym_select] = ACTIONS(2069), + [anon_sym_insert] = ACTIONS(2069), + [anon_sym_async] = ACTIONS(2069), + [anon_sym_PIPE] = ACTIONS(2069), + [anon_sym_table] = ACTIONS(2069), + [anon_sym_assert] = ACTIONS(2069), + [anon_sym_assert_equal] = ACTIONS(2069), + [anon_sym_download] = ACTIONS(2069), + [anon_sym_help] = ACTIONS(2069), + [anon_sym_length] = ACTIONS(2069), + [anon_sym_output] = ACTIONS(2069), + [anon_sym_output_error] = ACTIONS(2069), + [anon_sym_type] = ACTIONS(2069), + [anon_sym_append] = ACTIONS(2069), + [anon_sym_metadata] = ACTIONS(2069), + [anon_sym_move] = ACTIONS(2069), + [anon_sym_read] = ACTIONS(2069), + [anon_sym_workdir] = ACTIONS(2069), + [anon_sym_write] = ACTIONS(2069), + [anon_sym_from_json] = ACTIONS(2069), + [anon_sym_to_json] = ACTIONS(2069), + [anon_sym_to_string] = ACTIONS(2069), + [anon_sym_to_float] = ACTIONS(2069), + [anon_sym_bash] = ACTIONS(2069), + [anon_sym_fish] = ACTIONS(2069), + [anon_sym_raw] = ACTIONS(2069), + [anon_sym_sh] = ACTIONS(2069), + [anon_sym_zsh] = ACTIONS(2069), + [anon_sym_random] = ACTIONS(2069), + [anon_sym_random_boolean] = ACTIONS(2069), + [anon_sym_random_float] = ACTIONS(2069), + [anon_sym_random_integer] = ACTIONS(2069), + [anon_sym_columns] = ACTIONS(2069), + [anon_sym_rows] = ACTIONS(2069), + [anon_sym_reverse] = ACTIONS(2069), }, [359] = { - [sym_statement] = STATE(359), - [sym_expression] = STATE(877), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(782), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_assignment] = STATE(1023), - [sym_if_else] = STATE(1023), - [sym_if] = STATE(978), - [sym_match] = STATE(1023), - [sym_while] = STATE(1023), - [sym_for] = STATE(1023), - [sym_transform] = STATE(1023), - [sym_filter] = STATE(1023), - [sym_find] = STATE(1023), - [sym_remove] = STATE(1023), - [sym_reduce] = STATE(1023), - [sym_select] = STATE(1023), - [sym_insert] = STATE(1023), - [sym_async] = STATE(1023), - [sym_identifier_list] = STATE(1926), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(351), - [aux_sym_block_repeat1] = STATE(359), - [ts_builtin_sym_end] = ACTIONS(343), - [sym_identifier] = ACTIONS(2812), + [sym_math_operator] = STATE(849), + [sym_logic_operator] = STATE(811), + [ts_builtin_sym_end] = ACTIONS(2071), + [sym_identifier] = ACTIONS(2073), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1319), - [anon_sym_RBRACE] = ACTIONS(343), - [anon_sym_SEMI] = ACTIONS(343), - [anon_sym_LPAREN] = ACTIONS(1322), - [sym_integer] = ACTIONS(1325), - [sym_float] = ACTIONS(1328), - [sym_string] = ACTIONS(1328), - [anon_sym_true] = ACTIONS(1331), - [anon_sym_false] = ACTIONS(1331), - [anon_sym_LBRACK] = ACTIONS(1334), - [anon_sym_if] = ACTIONS(2815), - [anon_sym_elseif] = ACTIONS(343), - [anon_sym_else] = ACTIONS(366), - [anon_sym_match] = ACTIONS(2818), - [anon_sym_EQ_GT] = ACTIONS(2197), - [anon_sym_while] = ACTIONS(2821), - [anon_sym_for] = ACTIONS(2824), - [anon_sym_asyncfor] = ACTIONS(2827), - [anon_sym_transform] = ACTIONS(2830), - [anon_sym_filter] = ACTIONS(2833), - [anon_sym_find] = ACTIONS(2836), - [anon_sym_remove] = ACTIONS(2839), - [anon_sym_reduce] = ACTIONS(2842), - [anon_sym_select] = ACTIONS(2845), - [anon_sym_insert] = ACTIONS(2227), - [anon_sym_async] = ACTIONS(2848), - [anon_sym_PIPE] = ACTIONS(2717), - [anon_sym_table] = ACTIONS(2233), - [anon_sym_assert] = ACTIONS(2236), - [anon_sym_assert_equal] = ACTIONS(2236), - [anon_sym_download] = ACTIONS(2236), - [anon_sym_help] = ACTIONS(2236), - [anon_sym_length] = ACTIONS(2236), - [anon_sym_output] = ACTIONS(2236), - [anon_sym_output_error] = ACTIONS(2236), - [anon_sym_type] = ACTIONS(2236), - [anon_sym_append] = ACTIONS(2236), - [anon_sym_metadata] = ACTIONS(2236), - [anon_sym_move] = ACTIONS(2236), - [anon_sym_read] = ACTIONS(2236), - [anon_sym_workdir] = ACTIONS(2236), - [anon_sym_write] = ACTIONS(2236), - [anon_sym_from_json] = ACTIONS(2236), - [anon_sym_to_json] = ACTIONS(2236), - [anon_sym_to_string] = ACTIONS(2236), - [anon_sym_to_float] = ACTIONS(2236), - [anon_sym_bash] = ACTIONS(2236), - [anon_sym_fish] = ACTIONS(2236), - [anon_sym_raw] = ACTIONS(2236), - [anon_sym_sh] = ACTIONS(2236), - [anon_sym_zsh] = ACTIONS(2236), - [anon_sym_random] = ACTIONS(2236), - [anon_sym_random_boolean] = ACTIONS(2236), - [anon_sym_random_float] = ACTIONS(2236), - [anon_sym_random_integer] = ACTIONS(2236), - [anon_sym_columns] = ACTIONS(2236), - [anon_sym_rows] = ACTIONS(2236), - [anon_sym_reverse] = ACTIONS(2236), + [anon_sym_LBRACE] = ACTIONS(2071), + [anon_sym_RBRACE] = ACTIONS(2071), + [anon_sym_SEMI] = ACTIONS(2071), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_RPAREN] = ACTIONS(2071), + [anon_sym_COMMA] = ACTIONS(2071), + [sym_integer] = ACTIONS(2073), + [sym_float] = ACTIONS(2071), + [sym_string] = ACTIONS(2071), + [anon_sym_true] = ACTIONS(2073), + [anon_sym_false] = ACTIONS(2073), + [anon_sym_LBRACK] = ACTIONS(2071), + [anon_sym_RBRACK] = ACTIONS(2071), + [anon_sym_COLON] = ACTIONS(69), + [anon_sym_DOT_DOT] = ACTIONS(2071), + [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(2073), + [anon_sym_elseif] = ACTIONS(2071), + [anon_sym_else] = ACTIONS(2073), + [anon_sym_match] = ACTIONS(2073), + [anon_sym_EQ_GT] = ACTIONS(2071), + [anon_sym_while] = ACTIONS(2073), + [anon_sym_for] = ACTIONS(2073), + [anon_sym_asyncfor] = ACTIONS(2071), + [anon_sym_transform] = ACTIONS(2073), + [anon_sym_filter] = ACTIONS(2073), + [anon_sym_find] = ACTIONS(2073), + [anon_sym_remove] = ACTIONS(2073), + [anon_sym_reduce] = ACTIONS(2073), + [anon_sym_select] = ACTIONS(2073), + [anon_sym_insert] = ACTIONS(2073), + [anon_sym_async] = ACTIONS(2073), + [anon_sym_PIPE] = ACTIONS(2073), + [anon_sym_table] = ACTIONS(2073), + [anon_sym_assert] = ACTIONS(2073), + [anon_sym_assert_equal] = ACTIONS(2073), + [anon_sym_download] = ACTIONS(2073), + [anon_sym_help] = ACTIONS(2073), + [anon_sym_length] = ACTIONS(2073), + [anon_sym_output] = ACTIONS(2073), + [anon_sym_output_error] = ACTIONS(2073), + [anon_sym_type] = ACTIONS(2073), + [anon_sym_append] = ACTIONS(2073), + [anon_sym_metadata] = ACTIONS(2073), + [anon_sym_move] = ACTIONS(2073), + [anon_sym_read] = ACTIONS(2073), + [anon_sym_workdir] = ACTIONS(2073), + [anon_sym_write] = ACTIONS(2073), + [anon_sym_from_json] = ACTIONS(2073), + [anon_sym_to_json] = ACTIONS(2073), + [anon_sym_to_string] = ACTIONS(2073), + [anon_sym_to_float] = ACTIONS(2073), + [anon_sym_bash] = ACTIONS(2073), + [anon_sym_fish] = ACTIONS(2073), + [anon_sym_raw] = ACTIONS(2073), + [anon_sym_sh] = ACTIONS(2073), + [anon_sym_zsh] = ACTIONS(2073), + [anon_sym_random] = ACTIONS(2073), + [anon_sym_random_boolean] = ACTIONS(2073), + [anon_sym_random_float] = ACTIONS(2073), + [anon_sym_random_integer] = ACTIONS(2073), + [anon_sym_columns] = ACTIONS(2073), + [anon_sym_rows] = ACTIONS(2073), + [anon_sym_reverse] = ACTIONS(2073), }, [360] = { - [sym_expression] = STATE(828), - [sym__expression_kind] = STATE(866), - [aux_sym__expression_list] = STATE(362), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(866), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [ts_builtin_sym_end] = ACTIONS(2473), - [sym_identifier] = ACTIONS(2676), + [sym_else_if] = STATE(380), + [sym_else] = STATE(496), + [aux_sym_if_else_repeat1] = STATE(380), + [ts_builtin_sym_end] = ACTIONS(2001), + [sym_identifier] = ACTIONS(2003), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(2473), - [anon_sym_SEMI] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(2473), - [anon_sym_COMMA] = ACTIONS(2473), - [sym_integer] = ACTIONS(11), - [sym_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(2473), - [anon_sym_COLON] = ACTIONS(2473), - [anon_sym_PLUS] = ACTIONS(2473), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2473), - [anon_sym_SLASH] = ACTIONS(2473), - [anon_sym_PERCENT] = ACTIONS(2473), - [anon_sym_EQ_EQ] = ACTIONS(2473), - [anon_sym_BANG_EQ] = ACTIONS(2473), - [anon_sym_AMP_AMP] = ACTIONS(2473), - [anon_sym_PIPE_PIPE] = ACTIONS(2473), - [anon_sym_GT] = ACTIONS(2475), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_GT_EQ] = ACTIONS(2473), - [anon_sym_LT_EQ] = ACTIONS(2473), - [anon_sym_if] = ACTIONS(2475), - [anon_sym_match] = ACTIONS(2475), - [anon_sym_EQ_GT] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2475), - [anon_sym_asyncfor] = ACTIONS(2473), - [anon_sym_transform] = ACTIONS(2475), - [anon_sym_filter] = ACTIONS(2475), - [anon_sym_find] = ACTIONS(2475), - [anon_sym_remove] = ACTIONS(2475), - [anon_sym_reduce] = ACTIONS(2475), - [anon_sym_select] = ACTIONS(2475), - [anon_sym_insert] = ACTIONS(2475), - [anon_sym_async] = ACTIONS(2475), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1228), - [anon_sym_assert] = ACTIONS(1230), - [anon_sym_assert_equal] = ACTIONS(1230), - [anon_sym_download] = ACTIONS(1230), - [anon_sym_help] = ACTIONS(1230), - [anon_sym_length] = ACTIONS(1230), - [anon_sym_output] = ACTIONS(1230), - [anon_sym_output_error] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_append] = ACTIONS(1230), - [anon_sym_metadata] = ACTIONS(1230), - [anon_sym_move] = ACTIONS(1230), - [anon_sym_read] = ACTIONS(1230), - [anon_sym_workdir] = ACTIONS(1230), - [anon_sym_write] = ACTIONS(1230), - [anon_sym_from_json] = ACTIONS(1230), - [anon_sym_to_json] = ACTIONS(1230), - [anon_sym_to_string] = ACTIONS(1230), - [anon_sym_to_float] = ACTIONS(1230), - [anon_sym_bash] = ACTIONS(1230), - [anon_sym_fish] = ACTIONS(1230), - [anon_sym_raw] = ACTIONS(1230), - [anon_sym_sh] = ACTIONS(1230), - [anon_sym_zsh] = ACTIONS(1230), - [anon_sym_random] = ACTIONS(1230), - [anon_sym_random_boolean] = ACTIONS(1230), - [anon_sym_random_float] = ACTIONS(1230), - [anon_sym_random_integer] = ACTIONS(1230), - [anon_sym_columns] = ACTIONS(1230), - [anon_sym_rows] = ACTIONS(1230), - [anon_sym_reverse] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(2001), + [anon_sym_RBRACE] = ACTIONS(2001), + [anon_sym_SEMI] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_RPAREN] = ACTIONS(2001), + [anon_sym_COMMA] = ACTIONS(2001), + [sym_integer] = ACTIONS(2003), + [sym_float] = ACTIONS(2001), + [sym_string] = ACTIONS(2001), + [anon_sym_true] = ACTIONS(2003), + [anon_sym_false] = ACTIONS(2003), + [anon_sym_LBRACK] = ACTIONS(2001), + [anon_sym_RBRACK] = ACTIONS(2001), + [anon_sym_COLON] = ACTIONS(2001), + [anon_sym_PLUS] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_STAR] = ACTIONS(2001), + [anon_sym_SLASH] = ACTIONS(2001), + [anon_sym_PERCENT] = ACTIONS(2001), + [anon_sym_EQ_EQ] = ACTIONS(2001), + [anon_sym_BANG_EQ] = ACTIONS(2001), + [anon_sym_AMP_AMP] = ACTIONS(2001), + [anon_sym_PIPE_PIPE] = ACTIONS(2001), + [anon_sym_GT] = ACTIONS(2003), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_GT_EQ] = ACTIONS(2001), + [anon_sym_LT_EQ] = ACTIONS(2001), + [anon_sym_if] = ACTIONS(2003), + [anon_sym_elseif] = ACTIONS(2015), + [anon_sym_else] = ACTIONS(2032), + [anon_sym_match] = ACTIONS(2003), + [anon_sym_EQ_GT] = ACTIONS(2001), + [anon_sym_while] = ACTIONS(2003), + [anon_sym_for] = ACTIONS(2003), + [anon_sym_asyncfor] = ACTIONS(2001), + [anon_sym_transform] = ACTIONS(2003), + [anon_sym_filter] = ACTIONS(2003), + [anon_sym_find] = ACTIONS(2003), + [anon_sym_remove] = ACTIONS(2003), + [anon_sym_reduce] = ACTIONS(2003), + [anon_sym_select] = ACTIONS(2003), + [anon_sym_insert] = ACTIONS(2003), + [anon_sym_async] = ACTIONS(2003), + [anon_sym_PIPE] = ACTIONS(2003), + [anon_sym_table] = ACTIONS(2003), + [anon_sym_assert] = ACTIONS(2003), + [anon_sym_assert_equal] = ACTIONS(2003), + [anon_sym_download] = ACTIONS(2003), + [anon_sym_help] = ACTIONS(2003), + [anon_sym_length] = ACTIONS(2003), + [anon_sym_output] = ACTIONS(2003), + [anon_sym_output_error] = ACTIONS(2003), + [anon_sym_type] = ACTIONS(2003), + [anon_sym_append] = ACTIONS(2003), + [anon_sym_metadata] = ACTIONS(2003), + [anon_sym_move] = ACTIONS(2003), + [anon_sym_read] = ACTIONS(2003), + [anon_sym_workdir] = ACTIONS(2003), + [anon_sym_write] = ACTIONS(2003), + [anon_sym_from_json] = ACTIONS(2003), + [anon_sym_to_json] = ACTIONS(2003), + [anon_sym_to_string] = ACTIONS(2003), + [anon_sym_to_float] = ACTIONS(2003), + [anon_sym_bash] = ACTIONS(2003), + [anon_sym_fish] = ACTIONS(2003), + [anon_sym_raw] = ACTIONS(2003), + [anon_sym_sh] = ACTIONS(2003), + [anon_sym_zsh] = ACTIONS(2003), + [anon_sym_random] = ACTIONS(2003), + [anon_sym_random_boolean] = ACTIONS(2003), + [anon_sym_random_float] = ACTIONS(2003), + [anon_sym_random_integer] = ACTIONS(2003), + [anon_sym_columns] = ACTIONS(2003), + [anon_sym_rows] = ACTIONS(2003), + [anon_sym_reverse] = ACTIONS(2003), }, [361] = { - [sym_expression] = STATE(828), - [sym__expression_kind] = STATE(866), - [aux_sym__expression_list] = STATE(353), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(866), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [ts_builtin_sym_end] = ACTIONS(2477), - [sym_identifier] = ACTIONS(2676), + [sym_math_operator] = STATE(849), + [sym_logic_operator] = STATE(811), + [ts_builtin_sym_end] = ACTIONS(2075), + [sym_identifier] = ACTIONS(2077), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(2477), - [anon_sym_SEMI] = ACTIONS(2477), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(2477), - [anon_sym_COMMA] = ACTIONS(2477), - [sym_integer] = ACTIONS(11), - [sym_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(2477), - [anon_sym_COLON] = ACTIONS(2477), - [anon_sym_PLUS] = ACTIONS(2477), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2477), - [anon_sym_SLASH] = ACTIONS(2477), - [anon_sym_PERCENT] = ACTIONS(2477), - [anon_sym_EQ_EQ] = ACTIONS(2477), - [anon_sym_BANG_EQ] = ACTIONS(2477), - [anon_sym_AMP_AMP] = ACTIONS(2477), - [anon_sym_PIPE_PIPE] = ACTIONS(2477), - [anon_sym_GT] = ACTIONS(2479), - [anon_sym_LT] = ACTIONS(2479), - [anon_sym_GT_EQ] = ACTIONS(2477), - [anon_sym_LT_EQ] = ACTIONS(2477), - [anon_sym_if] = ACTIONS(2479), - [anon_sym_match] = ACTIONS(2479), - [anon_sym_EQ_GT] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(2479), - [anon_sym_for] = ACTIONS(2479), - [anon_sym_asyncfor] = ACTIONS(2477), - [anon_sym_transform] = ACTIONS(2479), - [anon_sym_filter] = ACTIONS(2479), - [anon_sym_find] = ACTIONS(2479), - [anon_sym_remove] = ACTIONS(2479), - [anon_sym_reduce] = ACTIONS(2479), - [anon_sym_select] = ACTIONS(2479), - [anon_sym_insert] = ACTIONS(2479), - [anon_sym_async] = ACTIONS(2479), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1228), - [anon_sym_assert] = ACTIONS(1230), - [anon_sym_assert_equal] = ACTIONS(1230), - [anon_sym_download] = ACTIONS(1230), - [anon_sym_help] = ACTIONS(1230), - [anon_sym_length] = ACTIONS(1230), - [anon_sym_output] = ACTIONS(1230), - [anon_sym_output_error] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_append] = ACTIONS(1230), - [anon_sym_metadata] = ACTIONS(1230), - [anon_sym_move] = ACTIONS(1230), - [anon_sym_read] = ACTIONS(1230), - [anon_sym_workdir] = ACTIONS(1230), - [anon_sym_write] = ACTIONS(1230), - [anon_sym_from_json] = ACTIONS(1230), - [anon_sym_to_json] = ACTIONS(1230), - [anon_sym_to_string] = ACTIONS(1230), - [anon_sym_to_float] = ACTIONS(1230), - [anon_sym_bash] = ACTIONS(1230), - [anon_sym_fish] = ACTIONS(1230), - [anon_sym_raw] = ACTIONS(1230), - [anon_sym_sh] = ACTIONS(1230), - [anon_sym_zsh] = ACTIONS(1230), - [anon_sym_random] = ACTIONS(1230), - [anon_sym_random_boolean] = ACTIONS(1230), - [anon_sym_random_float] = ACTIONS(1230), - [anon_sym_random_integer] = ACTIONS(1230), - [anon_sym_columns] = ACTIONS(1230), - [anon_sym_rows] = ACTIONS(1230), - [anon_sym_reverse] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(2075), + [anon_sym_RBRACE] = ACTIONS(2075), + [anon_sym_SEMI] = ACTIONS(2075), + [anon_sym_LPAREN] = ACTIONS(2075), + [anon_sym_RPAREN] = ACTIONS(2075), + [anon_sym_COMMA] = ACTIONS(2075), + [sym_integer] = ACTIONS(2077), + [sym_float] = ACTIONS(2075), + [sym_string] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_LBRACK] = ACTIONS(2075), + [anon_sym_RBRACK] = ACTIONS(2075), + [anon_sym_COLON] = ACTIONS(69), + [anon_sym_DOT_DOT] = ACTIONS(2075), + [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(2077), + [anon_sym_elseif] = ACTIONS(2075), + [anon_sym_else] = ACTIONS(2077), + [anon_sym_match] = ACTIONS(2077), + [anon_sym_EQ_GT] = ACTIONS(2075), + [anon_sym_while] = ACTIONS(2077), + [anon_sym_for] = ACTIONS(2077), + [anon_sym_asyncfor] = ACTIONS(2075), + [anon_sym_transform] = ACTIONS(2077), + [anon_sym_filter] = ACTIONS(2077), + [anon_sym_find] = ACTIONS(2077), + [anon_sym_remove] = ACTIONS(2077), + [anon_sym_reduce] = ACTIONS(2077), + [anon_sym_select] = ACTIONS(2077), + [anon_sym_insert] = ACTIONS(2077), + [anon_sym_async] = ACTIONS(2077), + [anon_sym_PIPE] = ACTIONS(2077), + [anon_sym_table] = ACTIONS(2077), + [anon_sym_assert] = ACTIONS(2077), + [anon_sym_assert_equal] = ACTIONS(2077), + [anon_sym_download] = ACTIONS(2077), + [anon_sym_help] = ACTIONS(2077), + [anon_sym_length] = ACTIONS(2077), + [anon_sym_output] = ACTIONS(2077), + [anon_sym_output_error] = ACTIONS(2077), + [anon_sym_type] = ACTIONS(2077), + [anon_sym_append] = ACTIONS(2077), + [anon_sym_metadata] = ACTIONS(2077), + [anon_sym_move] = ACTIONS(2077), + [anon_sym_read] = ACTIONS(2077), + [anon_sym_workdir] = ACTIONS(2077), + [anon_sym_write] = ACTIONS(2077), + [anon_sym_from_json] = ACTIONS(2077), + [anon_sym_to_json] = ACTIONS(2077), + [anon_sym_to_string] = ACTIONS(2077), + [anon_sym_to_float] = ACTIONS(2077), + [anon_sym_bash] = ACTIONS(2077), + [anon_sym_fish] = ACTIONS(2077), + [anon_sym_raw] = ACTIONS(2077), + [anon_sym_sh] = ACTIONS(2077), + [anon_sym_zsh] = ACTIONS(2077), + [anon_sym_random] = ACTIONS(2077), + [anon_sym_random_boolean] = ACTIONS(2077), + [anon_sym_random_float] = ACTIONS(2077), + [anon_sym_random_integer] = ACTIONS(2077), + [anon_sym_columns] = ACTIONS(2077), + [anon_sym_rows] = ACTIONS(2077), + [anon_sym_reverse] = ACTIONS(2077), }, [362] = { - [sym_expression] = STATE(828), - [sym__expression_kind] = STATE(866), - [aux_sym__expression_list] = STATE(353), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(866), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [ts_builtin_sym_end] = ACTIONS(2443), - [sym_identifier] = ACTIONS(2676), + [sym_math_operator] = STATE(849), + [sym_logic_operator] = STATE(811), + [ts_builtin_sym_end] = ACTIONS(2079), + [sym_identifier] = ACTIONS(2081), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(2443), - [anon_sym_SEMI] = ACTIONS(2443), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(2443), - [anon_sym_COMMA] = ACTIONS(2443), - [sym_integer] = ACTIONS(11), - [sym_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(2443), - [anon_sym_COLON] = ACTIONS(2443), - [anon_sym_PLUS] = ACTIONS(2443), - [anon_sym_DASH] = ACTIONS(2447), - [anon_sym_STAR] = ACTIONS(2443), - [anon_sym_SLASH] = ACTIONS(2443), - [anon_sym_PERCENT] = ACTIONS(2443), - [anon_sym_EQ_EQ] = ACTIONS(2443), - [anon_sym_BANG_EQ] = ACTIONS(2443), - [anon_sym_AMP_AMP] = ACTIONS(2443), - [anon_sym_PIPE_PIPE] = ACTIONS(2443), - [anon_sym_GT] = ACTIONS(2447), - [anon_sym_LT] = ACTIONS(2447), - [anon_sym_GT_EQ] = ACTIONS(2443), - [anon_sym_LT_EQ] = ACTIONS(2443), - [anon_sym_if] = ACTIONS(2447), - [anon_sym_match] = ACTIONS(2447), - [anon_sym_EQ_GT] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(2447), - [anon_sym_for] = ACTIONS(2447), - [anon_sym_asyncfor] = ACTIONS(2443), - [anon_sym_transform] = ACTIONS(2447), - [anon_sym_filter] = ACTIONS(2447), - [anon_sym_find] = ACTIONS(2447), - [anon_sym_remove] = ACTIONS(2447), - [anon_sym_reduce] = ACTIONS(2447), - [anon_sym_select] = ACTIONS(2447), - [anon_sym_insert] = ACTIONS(2447), - [anon_sym_async] = ACTIONS(2447), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1228), - [anon_sym_assert] = ACTIONS(1230), - [anon_sym_assert_equal] = ACTIONS(1230), - [anon_sym_download] = ACTIONS(1230), - [anon_sym_help] = ACTIONS(1230), - [anon_sym_length] = ACTIONS(1230), - [anon_sym_output] = ACTIONS(1230), - [anon_sym_output_error] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_append] = ACTIONS(1230), - [anon_sym_metadata] = ACTIONS(1230), - [anon_sym_move] = ACTIONS(1230), - [anon_sym_read] = ACTIONS(1230), - [anon_sym_workdir] = ACTIONS(1230), - [anon_sym_write] = ACTIONS(1230), - [anon_sym_from_json] = ACTIONS(1230), - [anon_sym_to_json] = ACTIONS(1230), - [anon_sym_to_string] = ACTIONS(1230), - [anon_sym_to_float] = ACTIONS(1230), - [anon_sym_bash] = ACTIONS(1230), - [anon_sym_fish] = ACTIONS(1230), - [anon_sym_raw] = ACTIONS(1230), - [anon_sym_sh] = ACTIONS(1230), - [anon_sym_zsh] = ACTIONS(1230), - [anon_sym_random] = ACTIONS(1230), - [anon_sym_random_boolean] = ACTIONS(1230), - [anon_sym_random_float] = ACTIONS(1230), - [anon_sym_random_integer] = ACTIONS(1230), - [anon_sym_columns] = ACTIONS(1230), - [anon_sym_rows] = ACTIONS(1230), - [anon_sym_reverse] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(2079), + [anon_sym_RBRACE] = ACTIONS(2079), + [anon_sym_SEMI] = ACTIONS(2079), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_RPAREN] = ACTIONS(2079), + [anon_sym_COMMA] = ACTIONS(2079), + [sym_integer] = ACTIONS(2081), + [sym_float] = ACTIONS(2079), + [sym_string] = ACTIONS(2079), + [anon_sym_true] = ACTIONS(2081), + [anon_sym_false] = ACTIONS(2081), + [anon_sym_LBRACK] = ACTIONS(2079), + [anon_sym_RBRACK] = ACTIONS(2079), + [anon_sym_COLON] = ACTIONS(69), + [anon_sym_DOT_DOT] = ACTIONS(2079), + [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(2081), + [anon_sym_elseif] = ACTIONS(2079), + [anon_sym_else] = ACTIONS(2081), + [anon_sym_match] = ACTIONS(2081), + [anon_sym_EQ_GT] = ACTIONS(2079), + [anon_sym_while] = ACTIONS(2081), + [anon_sym_for] = ACTIONS(2081), + [anon_sym_asyncfor] = ACTIONS(2079), + [anon_sym_transform] = ACTIONS(2081), + [anon_sym_filter] = ACTIONS(2081), + [anon_sym_find] = ACTIONS(2081), + [anon_sym_remove] = ACTIONS(2081), + [anon_sym_reduce] = ACTIONS(2081), + [anon_sym_select] = ACTIONS(2081), + [anon_sym_insert] = ACTIONS(2081), + [anon_sym_async] = ACTIONS(2081), + [anon_sym_PIPE] = ACTIONS(2081), + [anon_sym_table] = ACTIONS(2081), + [anon_sym_assert] = ACTIONS(2081), + [anon_sym_assert_equal] = ACTIONS(2081), + [anon_sym_download] = ACTIONS(2081), + [anon_sym_help] = ACTIONS(2081), + [anon_sym_length] = ACTIONS(2081), + [anon_sym_output] = ACTIONS(2081), + [anon_sym_output_error] = ACTIONS(2081), + [anon_sym_type] = ACTIONS(2081), + [anon_sym_append] = ACTIONS(2081), + [anon_sym_metadata] = ACTIONS(2081), + [anon_sym_move] = ACTIONS(2081), + [anon_sym_read] = ACTIONS(2081), + [anon_sym_workdir] = ACTIONS(2081), + [anon_sym_write] = ACTIONS(2081), + [anon_sym_from_json] = ACTIONS(2081), + [anon_sym_to_json] = ACTIONS(2081), + [anon_sym_to_string] = ACTIONS(2081), + [anon_sym_to_float] = ACTIONS(2081), + [anon_sym_bash] = ACTIONS(2081), + [anon_sym_fish] = ACTIONS(2081), + [anon_sym_raw] = ACTIONS(2081), + [anon_sym_sh] = ACTIONS(2081), + [anon_sym_zsh] = ACTIONS(2081), + [anon_sym_random] = ACTIONS(2081), + [anon_sym_random_boolean] = ACTIONS(2081), + [anon_sym_random_float] = ACTIONS(2081), + [anon_sym_random_integer] = ACTIONS(2081), + [anon_sym_columns] = ACTIONS(2081), + [anon_sym_rows] = ACTIONS(2081), + [anon_sym_reverse] = ACTIONS(2081), }, [363] = { - [sym_expression] = STATE(1604), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_logic] = STATE(1539), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(363), - [ts_builtin_sym_end] = ACTIONS(2481), - [sym_identifier] = ACTIONS(2483), + [sym_math_operator] = STATE(849), + [sym_logic_operator] = STATE(811), + [ts_builtin_sym_end] = ACTIONS(2026), + [sym_identifier] = ACTIONS(2028), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2486), - [anon_sym_RBRACE] = ACTIONS(2481), - [anon_sym_SEMI] = ACTIONS(2481), - [anon_sym_LPAREN] = ACTIONS(2489), - [anon_sym_RPAREN] = ACTIONS(2481), - [sym_integer] = ACTIONS(2492), - [sym_float] = ACTIONS(2495), - [sym_string] = ACTIONS(2495), - [anon_sym_true] = ACTIONS(2498), - [anon_sym_false] = ACTIONS(2498), - [anon_sym_LBRACK] = ACTIONS(2501), - [anon_sym_COLON] = ACTIONS(2481), - [anon_sym_DOT_DOT] = ACTIONS(2481), - [anon_sym_PLUS] = ACTIONS(2481), - [anon_sym_DASH] = ACTIONS(2504), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_SLASH] = ACTIONS(2481), - [anon_sym_PERCENT] = ACTIONS(2481), - [anon_sym_EQ_EQ] = ACTIONS(2481), - [anon_sym_BANG_EQ] = ACTIONS(2481), - [anon_sym_AMP_AMP] = ACTIONS(2481), - [anon_sym_PIPE_PIPE] = ACTIONS(2481), - [anon_sym_GT] = ACTIONS(2504), - [anon_sym_LT] = ACTIONS(2504), - [anon_sym_GT_EQ] = ACTIONS(2481), - [anon_sym_LT_EQ] = ACTIONS(2481), - [anon_sym_if] = ACTIONS(2504), - [anon_sym_match] = ACTIONS(2504), - [anon_sym_EQ_GT] = ACTIONS(2506), - [anon_sym_while] = ACTIONS(2504), - [anon_sym_for] = ACTIONS(2504), - [anon_sym_asyncfor] = ACTIONS(2481), - [anon_sym_transform] = ACTIONS(2504), - [anon_sym_filter] = ACTIONS(2504), - [anon_sym_find] = ACTIONS(2504), - [anon_sym_remove] = ACTIONS(2504), - [anon_sym_reduce] = ACTIONS(2504), - [anon_sym_select] = ACTIONS(2504), - [anon_sym_insert] = ACTIONS(2504), - [anon_sym_async] = ACTIONS(2504), - [anon_sym_PIPE] = ACTIONS(2509), - [anon_sym_table] = ACTIONS(2512), - [anon_sym_assert] = ACTIONS(2515), - [anon_sym_assert_equal] = ACTIONS(2515), - [anon_sym_download] = ACTIONS(2515), - [anon_sym_help] = ACTIONS(2515), - [anon_sym_length] = ACTIONS(2515), - [anon_sym_output] = ACTIONS(2515), - [anon_sym_output_error] = ACTIONS(2515), - [anon_sym_type] = ACTIONS(2515), - [anon_sym_append] = ACTIONS(2515), - [anon_sym_metadata] = ACTIONS(2515), - [anon_sym_move] = ACTIONS(2515), - [anon_sym_read] = ACTIONS(2515), - [anon_sym_workdir] = ACTIONS(2515), - [anon_sym_write] = ACTIONS(2515), - [anon_sym_from_json] = ACTIONS(2515), - [anon_sym_to_json] = ACTIONS(2515), - [anon_sym_to_string] = ACTIONS(2515), - [anon_sym_to_float] = ACTIONS(2515), - [anon_sym_bash] = ACTIONS(2515), - [anon_sym_fish] = ACTIONS(2515), - [anon_sym_raw] = ACTIONS(2515), - [anon_sym_sh] = ACTIONS(2515), - [anon_sym_zsh] = ACTIONS(2515), - [anon_sym_random] = ACTIONS(2515), - [anon_sym_random_boolean] = ACTIONS(2515), - [anon_sym_random_float] = ACTIONS(2515), - [anon_sym_random_integer] = ACTIONS(2515), - [anon_sym_columns] = ACTIONS(2515), - [anon_sym_rows] = ACTIONS(2515), - [anon_sym_reverse] = ACTIONS(2515), + [anon_sym_LBRACE] = ACTIONS(2026), + [anon_sym_RBRACE] = ACTIONS(2026), + [anon_sym_SEMI] = ACTIONS(2026), + [anon_sym_LPAREN] = ACTIONS(2026), + [anon_sym_RPAREN] = ACTIONS(2026), + [anon_sym_COMMA] = ACTIONS(2026), + [sym_integer] = ACTIONS(2028), + [sym_float] = ACTIONS(2026), + [sym_string] = ACTIONS(2026), + [anon_sym_true] = ACTIONS(2028), + [anon_sym_false] = ACTIONS(2028), + [anon_sym_LBRACK] = ACTIONS(2026), + [anon_sym_RBRACK] = ACTIONS(2026), + [anon_sym_COLON] = ACTIONS(2026), + [anon_sym_DOT_DOT] = ACTIONS(2026), + [anon_sym_PLUS] = ACTIONS(2026), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(2026), + [anon_sym_SLASH] = ACTIONS(2026), + [anon_sym_PERCENT] = ACTIONS(2026), + [anon_sym_EQ_EQ] = ACTIONS(2026), + [anon_sym_BANG_EQ] = ACTIONS(2026), + [anon_sym_AMP_AMP] = ACTIONS(2026), + [anon_sym_PIPE_PIPE] = ACTIONS(2026), + [anon_sym_GT] = ACTIONS(2028), + [anon_sym_LT] = ACTIONS(2028), + [anon_sym_GT_EQ] = ACTIONS(2026), + [anon_sym_LT_EQ] = ACTIONS(2026), + [anon_sym_if] = ACTIONS(2028), + [anon_sym_elseif] = ACTIONS(2026), + [anon_sym_else] = ACTIONS(2028), + [anon_sym_match] = ACTIONS(2028), + [anon_sym_EQ_GT] = ACTIONS(2026), + [anon_sym_while] = ACTIONS(2028), + [anon_sym_for] = ACTIONS(2028), + [anon_sym_asyncfor] = ACTIONS(2026), + [anon_sym_transform] = ACTIONS(2028), + [anon_sym_filter] = ACTIONS(2028), + [anon_sym_find] = ACTIONS(2028), + [anon_sym_remove] = ACTIONS(2028), + [anon_sym_reduce] = ACTIONS(2028), + [anon_sym_select] = ACTIONS(2028), + [anon_sym_insert] = ACTIONS(2028), + [anon_sym_async] = ACTIONS(2028), + [anon_sym_PIPE] = ACTIONS(2028), + [anon_sym_table] = ACTIONS(2028), + [anon_sym_assert] = ACTIONS(2028), + [anon_sym_assert_equal] = ACTIONS(2028), + [anon_sym_download] = ACTIONS(2028), + [anon_sym_help] = ACTIONS(2028), + [anon_sym_length] = ACTIONS(2028), + [anon_sym_output] = ACTIONS(2028), + [anon_sym_output_error] = ACTIONS(2028), + [anon_sym_type] = ACTIONS(2028), + [anon_sym_append] = ACTIONS(2028), + [anon_sym_metadata] = ACTIONS(2028), + [anon_sym_move] = ACTIONS(2028), + [anon_sym_read] = ACTIONS(2028), + [anon_sym_workdir] = ACTIONS(2028), + [anon_sym_write] = ACTIONS(2028), + [anon_sym_from_json] = ACTIONS(2028), + [anon_sym_to_json] = ACTIONS(2028), + [anon_sym_to_string] = ACTIONS(2028), + [anon_sym_to_float] = ACTIONS(2028), + [anon_sym_bash] = ACTIONS(2028), + [anon_sym_fish] = ACTIONS(2028), + [anon_sym_raw] = ACTIONS(2028), + [anon_sym_sh] = ACTIONS(2028), + [anon_sym_zsh] = ACTIONS(2028), + [anon_sym_random] = ACTIONS(2028), + [anon_sym_random_boolean] = ACTIONS(2028), + [anon_sym_random_float] = ACTIONS(2028), + [anon_sym_random_integer] = ACTIONS(2028), + [anon_sym_columns] = ACTIONS(2028), + [anon_sym_rows] = ACTIONS(2028), + [anon_sym_reverse] = ACTIONS(2028), }, [364] = { - [sym_expression] = STATE(833), - [sym__expression_kind] = STATE(866), - [aux_sym__expression_list] = STATE(368), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(866), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_identifier_list] = STATE(1752), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(338), - [ts_builtin_sym_end] = ACTIONS(2477), - [sym_identifier] = ACTIONS(2676), + [sym_math_operator] = STATE(732), + [sym_logic_operator] = STATE(730), + [ts_builtin_sym_end] = ACTIONS(2041), + [sym_identifier] = ACTIONS(2043), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(2477), - [anon_sym_SEMI] = ACTIONS(2477), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(2477), - [sym_integer] = ACTIONS(11), - [sym_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(2477), - [anon_sym_DOT_DOT] = ACTIONS(2477), - [anon_sym_PLUS] = ACTIONS(2477), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2477), - [anon_sym_SLASH] = ACTIONS(2477), - [anon_sym_PERCENT] = ACTIONS(2477), - [anon_sym_EQ_EQ] = ACTIONS(2477), - [anon_sym_BANG_EQ] = ACTIONS(2477), - [anon_sym_AMP_AMP] = ACTIONS(2477), - [anon_sym_PIPE_PIPE] = ACTIONS(2477), - [anon_sym_GT] = ACTIONS(2479), - [anon_sym_LT] = ACTIONS(2479), - [anon_sym_GT_EQ] = ACTIONS(2477), - [anon_sym_LT_EQ] = ACTIONS(2477), - [anon_sym_if] = ACTIONS(2479), - [anon_sym_match] = ACTIONS(2479), - [anon_sym_EQ_GT] = ACTIONS(883), - [anon_sym_while] = ACTIONS(2479), - [anon_sym_for] = ACTIONS(2479), - [anon_sym_asyncfor] = ACTIONS(2477), - [anon_sym_transform] = ACTIONS(2479), - [anon_sym_filter] = ACTIONS(2479), - [anon_sym_find] = ACTIONS(2479), - [anon_sym_remove] = ACTIONS(2479), - [anon_sym_reduce] = ACTIONS(2479), - [anon_sym_select] = ACTIONS(2479), - [anon_sym_insert] = ACTIONS(2479), - [anon_sym_async] = ACTIONS(2479), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(907), - [anon_sym_assert] = ACTIONS(909), - [anon_sym_assert_equal] = ACTIONS(909), - [anon_sym_download] = ACTIONS(909), - [anon_sym_help] = ACTIONS(909), - [anon_sym_length] = ACTIONS(909), - [anon_sym_output] = ACTIONS(909), - [anon_sym_output_error] = ACTIONS(909), - [anon_sym_type] = ACTIONS(909), - [anon_sym_append] = ACTIONS(909), - [anon_sym_metadata] = ACTIONS(909), - [anon_sym_move] = ACTIONS(909), - [anon_sym_read] = ACTIONS(909), - [anon_sym_workdir] = ACTIONS(909), - [anon_sym_write] = ACTIONS(909), - [anon_sym_from_json] = ACTIONS(909), - [anon_sym_to_json] = ACTIONS(909), - [anon_sym_to_string] = ACTIONS(909), - [anon_sym_to_float] = ACTIONS(909), - [anon_sym_bash] = ACTIONS(909), - [anon_sym_fish] = ACTIONS(909), - [anon_sym_raw] = ACTIONS(909), - [anon_sym_sh] = ACTIONS(909), - [anon_sym_zsh] = ACTIONS(909), - [anon_sym_random] = ACTIONS(909), - [anon_sym_random_boolean] = ACTIONS(909), - [anon_sym_random_float] = ACTIONS(909), - [anon_sym_random_integer] = ACTIONS(909), - [anon_sym_columns] = ACTIONS(909), - [anon_sym_rows] = ACTIONS(909), - [anon_sym_reverse] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(2041), + [anon_sym_RBRACE] = ACTIONS(2041), + [anon_sym_SEMI] = ACTIONS(2045), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_RPAREN] = ACTIONS(2041), + [anon_sym_COMMA] = ACTIONS(2041), + [sym_integer] = ACTIONS(2043), + [sym_float] = ACTIONS(2041), + [sym_string] = ACTIONS(2041), + [anon_sym_true] = ACTIONS(2043), + [anon_sym_false] = ACTIONS(2043), + [anon_sym_LBRACK] = ACTIONS(2041), + [anon_sym_RBRACK] = ACTIONS(2041), + [anon_sym_COLON] = ACTIONS(117), + [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(2043), + [anon_sym_elseif] = ACTIONS(2041), + [anon_sym_else] = ACTIONS(2043), + [anon_sym_match] = ACTIONS(2043), + [anon_sym_EQ_GT] = ACTIONS(2041), + [anon_sym_while] = ACTIONS(2043), + [anon_sym_for] = ACTIONS(2043), + [anon_sym_asyncfor] = ACTIONS(2041), + [anon_sym_transform] = ACTIONS(2043), + [anon_sym_filter] = ACTIONS(2043), + [anon_sym_find] = ACTIONS(2043), + [anon_sym_remove] = ACTIONS(2043), + [anon_sym_reduce] = ACTIONS(2043), + [anon_sym_select] = ACTIONS(2043), + [anon_sym_insert] = ACTIONS(2043), + [anon_sym_async] = ACTIONS(2043), + [anon_sym_PIPE] = ACTIONS(2043), + [anon_sym_table] = ACTIONS(2043), + [anon_sym_assert] = ACTIONS(2043), + [anon_sym_assert_equal] = ACTIONS(2043), + [anon_sym_download] = ACTIONS(2043), + [anon_sym_help] = ACTIONS(2043), + [anon_sym_length] = ACTIONS(2043), + [anon_sym_output] = ACTIONS(2043), + [anon_sym_output_error] = ACTIONS(2043), + [anon_sym_type] = ACTIONS(2043), + [anon_sym_append] = ACTIONS(2043), + [anon_sym_metadata] = ACTIONS(2043), + [anon_sym_move] = ACTIONS(2043), + [anon_sym_read] = ACTIONS(2043), + [anon_sym_workdir] = ACTIONS(2043), + [anon_sym_write] = ACTIONS(2043), + [anon_sym_from_json] = ACTIONS(2043), + [anon_sym_to_json] = ACTIONS(2043), + [anon_sym_to_string] = ACTIONS(2043), + [anon_sym_to_float] = ACTIONS(2043), + [anon_sym_bash] = ACTIONS(2043), + [anon_sym_fish] = ACTIONS(2043), + [anon_sym_raw] = ACTIONS(2043), + [anon_sym_sh] = ACTIONS(2043), + [anon_sym_zsh] = ACTIONS(2043), + [anon_sym_random] = ACTIONS(2043), + [anon_sym_random_boolean] = ACTIONS(2043), + [anon_sym_random_float] = ACTIONS(2043), + [anon_sym_random_integer] = ACTIONS(2043), + [anon_sym_columns] = ACTIONS(2043), + [anon_sym_rows] = ACTIONS(2043), + [anon_sym_reverse] = ACTIONS(2043), }, [365] = { - [sym_expression] = STATE(833), - [sym__expression_kind] = STATE(866), - [aux_sym__expression_list] = STATE(368), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(866), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_identifier_list] = STATE(1752), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(338), - [ts_builtin_sym_end] = ACTIONS(2443), - [sym_identifier] = ACTIONS(2676), + [sym_else_if] = STATE(369), + [sym_else] = STATE(482), + [aux_sym_if_else_repeat1] = STATE(369), + [ts_builtin_sym_end] = ACTIONS(2009), + [sym_identifier] = ACTIONS(2011), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(2443), - [anon_sym_SEMI] = ACTIONS(2443), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(2443), - [sym_integer] = ACTIONS(11), - [sym_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(2443), - [anon_sym_DOT_DOT] = ACTIONS(2443), - [anon_sym_PLUS] = ACTIONS(2443), - [anon_sym_DASH] = ACTIONS(2447), - [anon_sym_STAR] = ACTIONS(2443), - [anon_sym_SLASH] = ACTIONS(2443), - [anon_sym_PERCENT] = ACTIONS(2443), - [anon_sym_EQ_EQ] = ACTIONS(2443), - [anon_sym_BANG_EQ] = ACTIONS(2443), - [anon_sym_AMP_AMP] = ACTIONS(2443), - [anon_sym_PIPE_PIPE] = ACTIONS(2443), - [anon_sym_GT] = ACTIONS(2447), - [anon_sym_LT] = ACTIONS(2447), - [anon_sym_GT_EQ] = ACTIONS(2443), - [anon_sym_LT_EQ] = ACTIONS(2443), - [anon_sym_if] = ACTIONS(2447), - [anon_sym_match] = ACTIONS(2447), - [anon_sym_EQ_GT] = ACTIONS(883), - [anon_sym_while] = ACTIONS(2447), - [anon_sym_for] = ACTIONS(2447), - [anon_sym_asyncfor] = ACTIONS(2443), - [anon_sym_transform] = ACTIONS(2447), - [anon_sym_filter] = ACTIONS(2447), - [anon_sym_find] = ACTIONS(2447), - [anon_sym_remove] = ACTIONS(2447), - [anon_sym_reduce] = ACTIONS(2447), - [anon_sym_select] = ACTIONS(2447), - [anon_sym_insert] = ACTIONS(2447), - [anon_sym_async] = ACTIONS(2447), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(907), - [anon_sym_assert] = ACTIONS(909), - [anon_sym_assert_equal] = ACTIONS(909), - [anon_sym_download] = ACTIONS(909), - [anon_sym_help] = ACTIONS(909), - [anon_sym_length] = ACTIONS(909), - [anon_sym_output] = ACTIONS(909), - [anon_sym_output_error] = ACTIONS(909), - [anon_sym_type] = ACTIONS(909), - [anon_sym_append] = ACTIONS(909), - [anon_sym_metadata] = ACTIONS(909), - [anon_sym_move] = ACTIONS(909), - [anon_sym_read] = ACTIONS(909), - [anon_sym_workdir] = ACTIONS(909), - [anon_sym_write] = ACTIONS(909), - [anon_sym_from_json] = ACTIONS(909), - [anon_sym_to_json] = ACTIONS(909), - [anon_sym_to_string] = ACTIONS(909), - [anon_sym_to_float] = ACTIONS(909), - [anon_sym_bash] = ACTIONS(909), - [anon_sym_fish] = ACTIONS(909), - [anon_sym_raw] = ACTIONS(909), - [anon_sym_sh] = ACTIONS(909), - [anon_sym_zsh] = ACTIONS(909), - [anon_sym_random] = ACTIONS(909), - [anon_sym_random_boolean] = ACTIONS(909), - [anon_sym_random_float] = ACTIONS(909), - [anon_sym_random_integer] = ACTIONS(909), - [anon_sym_columns] = ACTIONS(909), - [anon_sym_rows] = ACTIONS(909), - [anon_sym_reverse] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(2009), + [anon_sym_RBRACE] = ACTIONS(2009), + [anon_sym_SEMI] = ACTIONS(2009), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_RPAREN] = ACTIONS(2009), + [sym_integer] = ACTIONS(2011), + [sym_float] = ACTIONS(2009), + [sym_string] = ACTIONS(2009), + [anon_sym_true] = ACTIONS(2011), + [anon_sym_false] = ACTIONS(2011), + [anon_sym_LBRACK] = ACTIONS(2009), + [anon_sym_COLON] = ACTIONS(2009), + [anon_sym_DOT_DOT] = ACTIONS(2009), + [anon_sym_PLUS] = ACTIONS(2009), + [anon_sym_DASH] = ACTIONS(2011), + [anon_sym_STAR] = ACTIONS(2009), + [anon_sym_SLASH] = ACTIONS(2009), + [anon_sym_PERCENT] = ACTIONS(2009), + [anon_sym_EQ_EQ] = ACTIONS(2009), + [anon_sym_BANG_EQ] = ACTIONS(2009), + [anon_sym_AMP_AMP] = ACTIONS(2009), + [anon_sym_PIPE_PIPE] = ACTIONS(2009), + [anon_sym_GT] = ACTIONS(2011), + [anon_sym_LT] = ACTIONS(2011), + [anon_sym_GT_EQ] = ACTIONS(2009), + [anon_sym_LT_EQ] = ACTIONS(2009), + [anon_sym_if] = ACTIONS(2011), + [anon_sym_elseif] = ACTIONS(2083), + [anon_sym_else] = ACTIONS(2085), + [anon_sym_match] = ACTIONS(2011), + [anon_sym_EQ_GT] = ACTIONS(2009), + [anon_sym_while] = ACTIONS(2011), + [anon_sym_for] = ACTIONS(2011), + [anon_sym_asyncfor] = ACTIONS(2009), + [anon_sym_transform] = ACTIONS(2011), + [anon_sym_filter] = ACTIONS(2011), + [anon_sym_find] = ACTIONS(2011), + [anon_sym_remove] = ACTIONS(2011), + [anon_sym_reduce] = ACTIONS(2011), + [anon_sym_select] = ACTIONS(2011), + [anon_sym_insert] = ACTIONS(2011), + [anon_sym_async] = ACTIONS(2011), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_table] = ACTIONS(2011), + [anon_sym_assert] = ACTIONS(2011), + [anon_sym_assert_equal] = ACTIONS(2011), + [anon_sym_download] = ACTIONS(2011), + [anon_sym_help] = ACTIONS(2011), + [anon_sym_length] = ACTIONS(2011), + [anon_sym_output] = ACTIONS(2011), + [anon_sym_output_error] = ACTIONS(2011), + [anon_sym_type] = ACTIONS(2011), + [anon_sym_append] = ACTIONS(2011), + [anon_sym_metadata] = ACTIONS(2011), + [anon_sym_move] = ACTIONS(2011), + [anon_sym_read] = ACTIONS(2011), + [anon_sym_workdir] = ACTIONS(2011), + [anon_sym_write] = ACTIONS(2011), + [anon_sym_from_json] = ACTIONS(2011), + [anon_sym_to_json] = ACTIONS(2011), + [anon_sym_to_string] = ACTIONS(2011), + [anon_sym_to_float] = ACTIONS(2011), + [anon_sym_bash] = ACTIONS(2011), + [anon_sym_fish] = ACTIONS(2011), + [anon_sym_raw] = ACTIONS(2011), + [anon_sym_sh] = ACTIONS(2011), + [anon_sym_zsh] = ACTIONS(2011), + [anon_sym_random] = ACTIONS(2011), + [anon_sym_random_boolean] = ACTIONS(2011), + [anon_sym_random_float] = ACTIONS(2011), + [anon_sym_random_integer] = ACTIONS(2011), + [anon_sym_columns] = ACTIONS(2011), + [anon_sym_rows] = ACTIONS(2011), + [anon_sym_reverse] = ACTIONS(2011), }, [366] = { - [sym_expression] = STATE(833), - [sym__expression_kind] = STATE(866), - [aux_sym__expression_list] = STATE(365), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(866), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_identifier_list] = STATE(1752), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(338), - [ts_builtin_sym_end] = ACTIONS(2473), - [sym_identifier] = ACTIONS(2676), + [sym_else_if] = STATE(371), + [sym_else] = STATE(421), + [aux_sym_if_else_repeat1] = STATE(371), + [ts_builtin_sym_end] = ACTIONS(2009), + [sym_identifier] = ACTIONS(2011), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(2473), - [anon_sym_SEMI] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(2473), - [sym_integer] = ACTIONS(11), - [sym_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(2473), - [anon_sym_DOT_DOT] = ACTIONS(2473), - [anon_sym_PLUS] = ACTIONS(2473), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2473), - [anon_sym_SLASH] = ACTIONS(2473), - [anon_sym_PERCENT] = ACTIONS(2473), - [anon_sym_EQ_EQ] = ACTIONS(2473), - [anon_sym_BANG_EQ] = ACTIONS(2473), - [anon_sym_AMP_AMP] = ACTIONS(2473), - [anon_sym_PIPE_PIPE] = ACTIONS(2473), - [anon_sym_GT] = ACTIONS(2475), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_GT_EQ] = ACTIONS(2473), - [anon_sym_LT_EQ] = ACTIONS(2473), - [anon_sym_if] = ACTIONS(2475), - [anon_sym_match] = ACTIONS(2475), - [anon_sym_EQ_GT] = ACTIONS(883), - [anon_sym_while] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2475), - [anon_sym_asyncfor] = ACTIONS(2473), - [anon_sym_transform] = ACTIONS(2475), - [anon_sym_filter] = ACTIONS(2475), - [anon_sym_find] = ACTIONS(2475), - [anon_sym_remove] = ACTIONS(2475), - [anon_sym_reduce] = ACTIONS(2475), - [anon_sym_select] = ACTIONS(2475), - [anon_sym_insert] = ACTIONS(2475), - [anon_sym_async] = ACTIONS(2475), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(907), - [anon_sym_assert] = ACTIONS(909), - [anon_sym_assert_equal] = ACTIONS(909), - [anon_sym_download] = ACTIONS(909), - [anon_sym_help] = ACTIONS(909), - [anon_sym_length] = ACTIONS(909), - [anon_sym_output] = ACTIONS(909), - [anon_sym_output_error] = ACTIONS(909), - [anon_sym_type] = ACTIONS(909), - [anon_sym_append] = ACTIONS(909), - [anon_sym_metadata] = ACTIONS(909), - [anon_sym_move] = ACTIONS(909), - [anon_sym_read] = ACTIONS(909), - [anon_sym_workdir] = ACTIONS(909), - [anon_sym_write] = ACTIONS(909), - [anon_sym_from_json] = ACTIONS(909), - [anon_sym_to_json] = ACTIONS(909), - [anon_sym_to_string] = ACTIONS(909), - [anon_sym_to_float] = ACTIONS(909), - [anon_sym_bash] = ACTIONS(909), - [anon_sym_fish] = ACTIONS(909), - [anon_sym_raw] = ACTIONS(909), - [anon_sym_sh] = ACTIONS(909), - [anon_sym_zsh] = ACTIONS(909), - [anon_sym_random] = ACTIONS(909), - [anon_sym_random_boolean] = ACTIONS(909), - [anon_sym_random_float] = ACTIONS(909), - [anon_sym_random_integer] = ACTIONS(909), - [anon_sym_columns] = ACTIONS(909), - [anon_sym_rows] = ACTIONS(909), - [anon_sym_reverse] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(2009), + [anon_sym_RBRACE] = ACTIONS(2009), + [anon_sym_SEMI] = ACTIONS(2009), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_RPAREN] = ACTIONS(2009), + [sym_integer] = ACTIONS(2011), + [sym_float] = ACTIONS(2009), + [sym_string] = ACTIONS(2009), + [anon_sym_true] = ACTIONS(2011), + [anon_sym_false] = ACTIONS(2011), + [anon_sym_LBRACK] = ACTIONS(2009), + [anon_sym_COLON] = ACTIONS(2009), + [anon_sym_DOT_DOT] = ACTIONS(2009), + [anon_sym_PLUS] = ACTIONS(2009), + [anon_sym_DASH] = ACTIONS(2011), + [anon_sym_STAR] = ACTIONS(2009), + [anon_sym_SLASH] = ACTIONS(2009), + [anon_sym_PERCENT] = ACTIONS(2009), + [anon_sym_EQ_EQ] = ACTIONS(2009), + [anon_sym_BANG_EQ] = ACTIONS(2009), + [anon_sym_AMP_AMP] = ACTIONS(2009), + [anon_sym_PIPE_PIPE] = ACTIONS(2009), + [anon_sym_GT] = ACTIONS(2011), + [anon_sym_LT] = ACTIONS(2011), + [anon_sym_GT_EQ] = ACTIONS(2009), + [anon_sym_LT_EQ] = ACTIONS(2009), + [anon_sym_if] = ACTIONS(2011), + [anon_sym_elseif] = ACTIONS(2083), + [anon_sym_else] = ACTIONS(2087), + [anon_sym_match] = ACTIONS(2011), + [anon_sym_EQ_GT] = ACTIONS(2009), + [anon_sym_while] = ACTIONS(2011), + [anon_sym_for] = ACTIONS(2011), + [anon_sym_asyncfor] = ACTIONS(2009), + [anon_sym_transform] = ACTIONS(2011), + [anon_sym_filter] = ACTIONS(2011), + [anon_sym_find] = ACTIONS(2011), + [anon_sym_remove] = ACTIONS(2011), + [anon_sym_reduce] = ACTIONS(2011), + [anon_sym_select] = ACTIONS(2011), + [anon_sym_insert] = ACTIONS(2011), + [anon_sym_async] = ACTIONS(2011), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_table] = ACTIONS(2011), + [anon_sym_assert] = ACTIONS(2011), + [anon_sym_assert_equal] = ACTIONS(2011), + [anon_sym_download] = ACTIONS(2011), + [anon_sym_help] = ACTIONS(2011), + [anon_sym_length] = ACTIONS(2011), + [anon_sym_output] = ACTIONS(2011), + [anon_sym_output_error] = ACTIONS(2011), + [anon_sym_type] = ACTIONS(2011), + [anon_sym_append] = ACTIONS(2011), + [anon_sym_metadata] = ACTIONS(2011), + [anon_sym_move] = ACTIONS(2011), + [anon_sym_read] = ACTIONS(2011), + [anon_sym_workdir] = ACTIONS(2011), + [anon_sym_write] = ACTIONS(2011), + [anon_sym_from_json] = ACTIONS(2011), + [anon_sym_to_json] = ACTIONS(2011), + [anon_sym_to_string] = ACTIONS(2011), + [anon_sym_to_float] = ACTIONS(2011), + [anon_sym_bash] = ACTIONS(2011), + [anon_sym_fish] = ACTIONS(2011), + [anon_sym_raw] = ACTIONS(2011), + [anon_sym_sh] = ACTIONS(2011), + [anon_sym_zsh] = ACTIONS(2011), + [anon_sym_random] = ACTIONS(2011), + [anon_sym_random_boolean] = ACTIONS(2011), + [anon_sym_random_float] = ACTIONS(2011), + [anon_sym_random_integer] = ACTIONS(2011), + [anon_sym_columns] = ACTIONS(2011), + [anon_sym_rows] = ACTIONS(2011), + [anon_sym_reverse] = ACTIONS(2011), }, [367] = { - [sym_expression] = STATE(1604), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_logic] = STATE(1539), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(363), - [ts_builtin_sym_end] = ACTIONS(2449), - [sym_identifier] = ACTIONS(2451), + [sym_math_operator] = STATE(732), + [sym_logic_operator] = STATE(730), + [ts_builtin_sym_end] = ACTIONS(2075), + [sym_identifier] = ACTIONS(2077), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_RBRACE] = ACTIONS(2449), - [anon_sym_SEMI] = ACTIONS(2449), - [anon_sym_LPAREN] = ACTIONS(2455), - [anon_sym_RPAREN] = ACTIONS(2449), - [sym_integer] = ACTIONS(2457), - [sym_float] = ACTIONS(2459), - [sym_string] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(2461), - [anon_sym_false] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_COLON] = ACTIONS(2449), - [anon_sym_DOT_DOT] = ACTIONS(2449), - [anon_sym_PLUS] = ACTIONS(2449), - [anon_sym_DASH] = ACTIONS(2465), - [anon_sym_STAR] = ACTIONS(2449), - [anon_sym_SLASH] = ACTIONS(2449), - [anon_sym_PERCENT] = ACTIONS(2449), - [anon_sym_EQ_EQ] = ACTIONS(2449), - [anon_sym_BANG_EQ] = ACTIONS(2449), - [anon_sym_AMP_AMP] = ACTIONS(2449), - [anon_sym_PIPE_PIPE] = ACTIONS(2449), - [anon_sym_GT] = ACTIONS(2465), - [anon_sym_LT] = ACTIONS(2465), - [anon_sym_GT_EQ] = ACTIONS(2449), - [anon_sym_LT_EQ] = ACTIONS(2449), - [anon_sym_if] = ACTIONS(2465), - [anon_sym_match] = ACTIONS(2465), - [anon_sym_EQ_GT] = ACTIONS(2467), - [anon_sym_while] = ACTIONS(2465), - [anon_sym_for] = ACTIONS(2465), - [anon_sym_asyncfor] = ACTIONS(2449), - [anon_sym_transform] = ACTIONS(2465), - [anon_sym_filter] = ACTIONS(2465), - [anon_sym_find] = ACTIONS(2465), - [anon_sym_remove] = ACTIONS(2465), - [anon_sym_reduce] = ACTIONS(2465), - [anon_sym_select] = ACTIONS(2465), - [anon_sym_insert] = ACTIONS(2465), - [anon_sym_async] = ACTIONS(2465), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(2469), - [anon_sym_assert] = ACTIONS(2471), - [anon_sym_assert_equal] = ACTIONS(2471), - [anon_sym_download] = ACTIONS(2471), - [anon_sym_help] = ACTIONS(2471), - [anon_sym_length] = ACTIONS(2471), - [anon_sym_output] = ACTIONS(2471), - [anon_sym_output_error] = ACTIONS(2471), - [anon_sym_type] = ACTIONS(2471), - [anon_sym_append] = ACTIONS(2471), - [anon_sym_metadata] = ACTIONS(2471), - [anon_sym_move] = ACTIONS(2471), - [anon_sym_read] = ACTIONS(2471), - [anon_sym_workdir] = ACTIONS(2471), - [anon_sym_write] = ACTIONS(2471), - [anon_sym_from_json] = ACTIONS(2471), - [anon_sym_to_json] = ACTIONS(2471), - [anon_sym_to_string] = ACTIONS(2471), - [anon_sym_to_float] = ACTIONS(2471), - [anon_sym_bash] = ACTIONS(2471), - [anon_sym_fish] = ACTIONS(2471), - [anon_sym_raw] = ACTIONS(2471), - [anon_sym_sh] = ACTIONS(2471), - [anon_sym_zsh] = ACTIONS(2471), - [anon_sym_random] = ACTIONS(2471), - [anon_sym_random_boolean] = ACTIONS(2471), - [anon_sym_random_float] = ACTIONS(2471), - [anon_sym_random_integer] = ACTIONS(2471), - [anon_sym_columns] = ACTIONS(2471), - [anon_sym_rows] = ACTIONS(2471), - [anon_sym_reverse] = ACTIONS(2471), + [anon_sym_LBRACE] = ACTIONS(2075), + [anon_sym_RBRACE] = ACTIONS(2075), + [anon_sym_SEMI] = ACTIONS(2075), + [anon_sym_LPAREN] = ACTIONS(2075), + [anon_sym_RPAREN] = ACTIONS(2075), + [anon_sym_COMMA] = ACTIONS(2075), + [sym_integer] = ACTIONS(2077), + [sym_float] = ACTIONS(2075), + [sym_string] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_LBRACK] = ACTIONS(2075), + [anon_sym_RBRACK] = ACTIONS(2075), + [anon_sym_COLON] = ACTIONS(117), + [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(2077), + [anon_sym_elseif] = ACTIONS(2075), + [anon_sym_else] = ACTIONS(2077), + [anon_sym_match] = ACTIONS(2077), + [anon_sym_EQ_GT] = ACTIONS(2075), + [anon_sym_while] = ACTIONS(2077), + [anon_sym_for] = ACTIONS(2077), + [anon_sym_asyncfor] = ACTIONS(2075), + [anon_sym_transform] = ACTIONS(2077), + [anon_sym_filter] = ACTIONS(2077), + [anon_sym_find] = ACTIONS(2077), + [anon_sym_remove] = ACTIONS(2077), + [anon_sym_reduce] = ACTIONS(2077), + [anon_sym_select] = ACTIONS(2077), + [anon_sym_insert] = ACTIONS(2077), + [anon_sym_async] = ACTIONS(2077), + [anon_sym_PIPE] = ACTIONS(2077), + [anon_sym_table] = ACTIONS(2077), + [anon_sym_assert] = ACTIONS(2077), + [anon_sym_assert_equal] = ACTIONS(2077), + [anon_sym_download] = ACTIONS(2077), + [anon_sym_help] = ACTIONS(2077), + [anon_sym_length] = ACTIONS(2077), + [anon_sym_output] = ACTIONS(2077), + [anon_sym_output_error] = ACTIONS(2077), + [anon_sym_type] = ACTIONS(2077), + [anon_sym_append] = ACTIONS(2077), + [anon_sym_metadata] = ACTIONS(2077), + [anon_sym_move] = ACTIONS(2077), + [anon_sym_read] = ACTIONS(2077), + [anon_sym_workdir] = ACTIONS(2077), + [anon_sym_write] = ACTIONS(2077), + [anon_sym_from_json] = ACTIONS(2077), + [anon_sym_to_json] = ACTIONS(2077), + [anon_sym_to_string] = ACTIONS(2077), + [anon_sym_to_float] = ACTIONS(2077), + [anon_sym_bash] = ACTIONS(2077), + [anon_sym_fish] = ACTIONS(2077), + [anon_sym_raw] = ACTIONS(2077), + [anon_sym_sh] = ACTIONS(2077), + [anon_sym_zsh] = ACTIONS(2077), + [anon_sym_random] = ACTIONS(2077), + [anon_sym_random_boolean] = ACTIONS(2077), + [anon_sym_random_float] = ACTIONS(2077), + [anon_sym_random_integer] = ACTIONS(2077), + [anon_sym_columns] = ACTIONS(2077), + [anon_sym_rows] = ACTIONS(2077), + [anon_sym_reverse] = ACTIONS(2077), }, [368] = { - [sym_expression] = STATE(833), - [sym__expression_kind] = STATE(866), - [aux_sym__expression_list] = STATE(368), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(866), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_identifier_list] = STATE(1752), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(338), - [ts_builtin_sym_end] = ACTIONS(2518), - [sym_identifier] = ACTIONS(2646), + [sym_math_operator] = STATE(732), + [sym_logic_operator] = STATE(730), + [ts_builtin_sym_end] = ACTIONS(2079), + [sym_identifier] = ACTIONS(2081), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2649), - [anon_sym_RBRACE] = ACTIONS(2518), - [anon_sym_SEMI] = ACTIONS(2518), - [anon_sym_LPAREN] = ACTIONS(2652), - [anon_sym_RPAREN] = ACTIONS(2518), - [sym_integer] = ACTIONS(2655), - [sym_float] = ACTIONS(2658), - [sym_string] = ACTIONS(2658), - [anon_sym_true] = ACTIONS(2661), - [anon_sym_false] = ACTIONS(2661), - [anon_sym_LBRACK] = ACTIONS(2664), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_DOT_DOT] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2541), - [anon_sym_STAR] = ACTIONS(2518), - [anon_sym_SLASH] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_EQ_EQ] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_GT] = ACTIONS(2541), - [anon_sym_LT] = ACTIONS(2541), - [anon_sym_GT_EQ] = ACTIONS(2518), - [anon_sym_LT_EQ] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2541), - [anon_sym_match] = ACTIONS(2541), - [anon_sym_EQ_GT] = ACTIONS(2667), - [anon_sym_while] = ACTIONS(2541), - [anon_sym_for] = ACTIONS(2541), - [anon_sym_asyncfor] = ACTIONS(2518), - [anon_sym_transform] = ACTIONS(2541), - [anon_sym_filter] = ACTIONS(2541), - [anon_sym_find] = ACTIONS(2541), - [anon_sym_remove] = ACTIONS(2541), - [anon_sym_reduce] = ACTIONS(2541), - [anon_sym_select] = ACTIONS(2541), - [anon_sym_insert] = ACTIONS(2541), - [anon_sym_async] = ACTIONS(2541), - [anon_sym_PIPE] = ACTIONS(2546), - [anon_sym_table] = ACTIONS(2670), - [anon_sym_assert] = ACTIONS(2673), - [anon_sym_assert_equal] = ACTIONS(2673), - [anon_sym_download] = ACTIONS(2673), - [anon_sym_help] = ACTIONS(2673), - [anon_sym_length] = ACTIONS(2673), - [anon_sym_output] = ACTIONS(2673), - [anon_sym_output_error] = ACTIONS(2673), - [anon_sym_type] = ACTIONS(2673), - [anon_sym_append] = ACTIONS(2673), - [anon_sym_metadata] = ACTIONS(2673), - [anon_sym_move] = ACTIONS(2673), - [anon_sym_read] = ACTIONS(2673), - [anon_sym_workdir] = ACTIONS(2673), - [anon_sym_write] = ACTIONS(2673), - [anon_sym_from_json] = ACTIONS(2673), - [anon_sym_to_json] = ACTIONS(2673), - [anon_sym_to_string] = ACTIONS(2673), - [anon_sym_to_float] = ACTIONS(2673), - [anon_sym_bash] = ACTIONS(2673), - [anon_sym_fish] = ACTIONS(2673), - [anon_sym_raw] = ACTIONS(2673), - [anon_sym_sh] = ACTIONS(2673), - [anon_sym_zsh] = ACTIONS(2673), - [anon_sym_random] = ACTIONS(2673), - [anon_sym_random_boolean] = ACTIONS(2673), - [anon_sym_random_float] = ACTIONS(2673), - [anon_sym_random_integer] = ACTIONS(2673), - [anon_sym_columns] = ACTIONS(2673), - [anon_sym_rows] = ACTIONS(2673), - [anon_sym_reverse] = ACTIONS(2673), + [anon_sym_LBRACE] = ACTIONS(2079), + [anon_sym_RBRACE] = ACTIONS(2079), + [anon_sym_SEMI] = ACTIONS(2079), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_RPAREN] = ACTIONS(2079), + [anon_sym_COMMA] = ACTIONS(2079), + [sym_integer] = ACTIONS(2081), + [sym_float] = ACTIONS(2079), + [sym_string] = ACTIONS(2079), + [anon_sym_true] = ACTIONS(2081), + [anon_sym_false] = ACTIONS(2081), + [anon_sym_LBRACK] = ACTIONS(2079), + [anon_sym_RBRACK] = ACTIONS(2079), + [anon_sym_COLON] = ACTIONS(117), + [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(2081), + [anon_sym_elseif] = ACTIONS(2079), + [anon_sym_else] = ACTIONS(2081), + [anon_sym_match] = ACTIONS(2081), + [anon_sym_EQ_GT] = ACTIONS(2079), + [anon_sym_while] = ACTIONS(2081), + [anon_sym_for] = ACTIONS(2081), + [anon_sym_asyncfor] = ACTIONS(2079), + [anon_sym_transform] = ACTIONS(2081), + [anon_sym_filter] = ACTIONS(2081), + [anon_sym_find] = ACTIONS(2081), + [anon_sym_remove] = ACTIONS(2081), + [anon_sym_reduce] = ACTIONS(2081), + [anon_sym_select] = ACTIONS(2081), + [anon_sym_insert] = ACTIONS(2081), + [anon_sym_async] = ACTIONS(2081), + [anon_sym_PIPE] = ACTIONS(2081), + [anon_sym_table] = ACTIONS(2081), + [anon_sym_assert] = ACTIONS(2081), + [anon_sym_assert_equal] = ACTIONS(2081), + [anon_sym_download] = ACTIONS(2081), + [anon_sym_help] = ACTIONS(2081), + [anon_sym_length] = ACTIONS(2081), + [anon_sym_output] = ACTIONS(2081), + [anon_sym_output_error] = ACTIONS(2081), + [anon_sym_type] = ACTIONS(2081), + [anon_sym_append] = ACTIONS(2081), + [anon_sym_metadata] = ACTIONS(2081), + [anon_sym_move] = ACTIONS(2081), + [anon_sym_read] = ACTIONS(2081), + [anon_sym_workdir] = ACTIONS(2081), + [anon_sym_write] = ACTIONS(2081), + [anon_sym_from_json] = ACTIONS(2081), + [anon_sym_to_json] = ACTIONS(2081), + [anon_sym_to_string] = ACTIONS(2081), + [anon_sym_to_float] = ACTIONS(2081), + [anon_sym_bash] = ACTIONS(2081), + [anon_sym_fish] = ACTIONS(2081), + [anon_sym_raw] = ACTIONS(2081), + [anon_sym_sh] = ACTIONS(2081), + [anon_sym_zsh] = ACTIONS(2081), + [anon_sym_random] = ACTIONS(2081), + [anon_sym_random_boolean] = ACTIONS(2081), + [anon_sym_random_float] = ACTIONS(2081), + [anon_sym_random_integer] = ACTIONS(2081), + [anon_sym_columns] = ACTIONS(2081), + [anon_sym_rows] = ACTIONS(2081), + [anon_sym_reverse] = ACTIONS(2081), }, [369] = { - [sym_expression] = STATE(876), - [sym__expression_kind] = STATE(866), - [aux_sym__expression_list] = STATE(372), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(866), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [ts_builtin_sym_end] = ACTIONS(2443), - [sym_identifier] = ACTIONS(2676), + [sym_else_if] = STATE(391), + [sym_else] = STATE(496), + [aux_sym_if_else_repeat1] = STATE(391), + [ts_builtin_sym_end] = ACTIONS(2001), + [sym_identifier] = ACTIONS(2003), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(2443), - [anon_sym_SEMI] = ACTIONS(2443), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(2443), - [sym_integer] = ACTIONS(11), - [sym_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(2443), - [anon_sym_PLUS] = ACTIONS(2443), - [anon_sym_DASH] = ACTIONS(2447), - [anon_sym_STAR] = ACTIONS(2443), - [anon_sym_SLASH] = ACTIONS(2443), - [anon_sym_PERCENT] = ACTIONS(2443), - [anon_sym_EQ_EQ] = ACTIONS(2443), - [anon_sym_BANG_EQ] = ACTIONS(2443), - [anon_sym_AMP_AMP] = ACTIONS(2443), - [anon_sym_PIPE_PIPE] = ACTIONS(2443), - [anon_sym_GT] = ACTIONS(2447), - [anon_sym_LT] = ACTIONS(2447), - [anon_sym_GT_EQ] = ACTIONS(2443), - [anon_sym_LT_EQ] = ACTIONS(2443), - [anon_sym_if] = ACTIONS(2447), - [anon_sym_match] = ACTIONS(2447), - [anon_sym_EQ_GT] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(2447), - [anon_sym_for] = ACTIONS(2447), - [anon_sym_asyncfor] = ACTIONS(2443), - [anon_sym_transform] = ACTIONS(2447), - [anon_sym_filter] = ACTIONS(2447), - [anon_sym_find] = ACTIONS(2447), - [anon_sym_remove] = ACTIONS(2447), - [anon_sym_reduce] = ACTIONS(2447), - [anon_sym_select] = ACTIONS(2447), - [anon_sym_insert] = ACTIONS(2447), - [anon_sym_async] = ACTIONS(2447), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1228), - [anon_sym_assert] = ACTIONS(1230), - [anon_sym_assert_equal] = ACTIONS(1230), - [anon_sym_download] = ACTIONS(1230), - [anon_sym_help] = ACTIONS(1230), - [anon_sym_length] = ACTIONS(1230), - [anon_sym_output] = ACTIONS(1230), - [anon_sym_output_error] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_append] = ACTIONS(1230), - [anon_sym_metadata] = ACTIONS(1230), - [anon_sym_move] = ACTIONS(1230), - [anon_sym_read] = ACTIONS(1230), - [anon_sym_workdir] = ACTIONS(1230), - [anon_sym_write] = ACTIONS(1230), - [anon_sym_from_json] = ACTIONS(1230), - [anon_sym_to_json] = ACTIONS(1230), - [anon_sym_to_string] = ACTIONS(1230), - [anon_sym_to_float] = ACTIONS(1230), - [anon_sym_bash] = ACTIONS(1230), - [anon_sym_fish] = ACTIONS(1230), - [anon_sym_raw] = ACTIONS(1230), - [anon_sym_sh] = ACTIONS(1230), - [anon_sym_zsh] = ACTIONS(1230), - [anon_sym_random] = ACTIONS(1230), - [anon_sym_random_boolean] = ACTIONS(1230), - [anon_sym_random_float] = ACTIONS(1230), - [anon_sym_random_integer] = ACTIONS(1230), - [anon_sym_columns] = ACTIONS(1230), - [anon_sym_rows] = ACTIONS(1230), - [anon_sym_reverse] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(2001), + [anon_sym_RBRACE] = ACTIONS(2001), + [anon_sym_SEMI] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_RPAREN] = ACTIONS(2001), + [sym_integer] = ACTIONS(2003), + [sym_float] = ACTIONS(2001), + [sym_string] = ACTIONS(2001), + [anon_sym_true] = ACTIONS(2003), + [anon_sym_false] = ACTIONS(2003), + [anon_sym_LBRACK] = ACTIONS(2001), + [anon_sym_COLON] = ACTIONS(2001), + [anon_sym_DOT_DOT] = ACTIONS(2001), + [anon_sym_PLUS] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_STAR] = ACTIONS(2001), + [anon_sym_SLASH] = ACTIONS(2001), + [anon_sym_PERCENT] = ACTIONS(2001), + [anon_sym_EQ_EQ] = ACTIONS(2001), + [anon_sym_BANG_EQ] = ACTIONS(2001), + [anon_sym_AMP_AMP] = ACTIONS(2001), + [anon_sym_PIPE_PIPE] = ACTIONS(2001), + [anon_sym_GT] = ACTIONS(2003), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_GT_EQ] = ACTIONS(2001), + [anon_sym_LT_EQ] = ACTIONS(2001), + [anon_sym_if] = ACTIONS(2003), + [anon_sym_elseif] = ACTIONS(2083), + [anon_sym_else] = ACTIONS(2085), + [anon_sym_match] = ACTIONS(2003), + [anon_sym_EQ_GT] = ACTIONS(2001), + [anon_sym_while] = ACTIONS(2003), + [anon_sym_for] = ACTIONS(2003), + [anon_sym_asyncfor] = ACTIONS(2001), + [anon_sym_transform] = ACTIONS(2003), + [anon_sym_filter] = ACTIONS(2003), + [anon_sym_find] = ACTIONS(2003), + [anon_sym_remove] = ACTIONS(2003), + [anon_sym_reduce] = ACTIONS(2003), + [anon_sym_select] = ACTIONS(2003), + [anon_sym_insert] = ACTIONS(2003), + [anon_sym_async] = ACTIONS(2003), + [anon_sym_PIPE] = ACTIONS(2003), + [anon_sym_table] = ACTIONS(2003), + [anon_sym_assert] = ACTIONS(2003), + [anon_sym_assert_equal] = ACTIONS(2003), + [anon_sym_download] = ACTIONS(2003), + [anon_sym_help] = ACTIONS(2003), + [anon_sym_length] = ACTIONS(2003), + [anon_sym_output] = ACTIONS(2003), + [anon_sym_output_error] = ACTIONS(2003), + [anon_sym_type] = ACTIONS(2003), + [anon_sym_append] = ACTIONS(2003), + [anon_sym_metadata] = ACTIONS(2003), + [anon_sym_move] = ACTIONS(2003), + [anon_sym_read] = ACTIONS(2003), + [anon_sym_workdir] = ACTIONS(2003), + [anon_sym_write] = ACTIONS(2003), + [anon_sym_from_json] = ACTIONS(2003), + [anon_sym_to_json] = ACTIONS(2003), + [anon_sym_to_string] = ACTIONS(2003), + [anon_sym_to_float] = ACTIONS(2003), + [anon_sym_bash] = ACTIONS(2003), + [anon_sym_fish] = ACTIONS(2003), + [anon_sym_raw] = ACTIONS(2003), + [anon_sym_sh] = ACTIONS(2003), + [anon_sym_zsh] = ACTIONS(2003), + [anon_sym_random] = ACTIONS(2003), + [anon_sym_random_boolean] = ACTIONS(2003), + [anon_sym_random_float] = ACTIONS(2003), + [anon_sym_random_integer] = ACTIONS(2003), + [anon_sym_columns] = ACTIONS(2003), + [anon_sym_rows] = ACTIONS(2003), + [anon_sym_reverse] = ACTIONS(2003), }, [370] = { - [sym_statement] = STATE(374), - [sym_expression] = STATE(934), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(842), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(983), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [aux_sym_block_repeat1] = STATE(374), - [sym_identifier] = ACTIONS(2851), + [sym_math_operator] = STATE(732), + [sym_logic_operator] = STATE(730), + [ts_builtin_sym_end] = ACTIONS(2071), + [sym_identifier] = ACTIONS(2073), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1783), - [anon_sym_RBRACE] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(419), - [sym_integer] = ACTIONS(1789), - [sym_float] = ACTIONS(1792), - [sym_string] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1795), - [anon_sym_false] = ACTIONS(1795), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_if] = ACTIONS(1570), - [anon_sym_match] = ACTIONS(2166), - [anon_sym_EQ_GT] = ACTIONS(2021), - [anon_sym_while] = ACTIONS(2168), - [anon_sym_for] = ACTIONS(2170), - [anon_sym_asyncfor] = ACTIONS(2172), - [anon_sym_transform] = ACTIONS(2174), - [anon_sym_filter] = ACTIONS(2176), - [anon_sym_find] = ACTIONS(2178), - [anon_sym_remove] = ACTIONS(2180), - [anon_sym_reduce] = ACTIONS(2182), - [anon_sym_select] = ACTIONS(2184), - [anon_sym_insert] = ACTIONS(1224), - [anon_sym_async] = ACTIONS(2186), - [anon_sym_PIPE] = ACTIONS(2761), - [anon_sym_table] = ACTIONS(2057), - [anon_sym_assert] = ACTIONS(2060), - [anon_sym_assert_equal] = ACTIONS(2060), - [anon_sym_download] = ACTIONS(2060), - [anon_sym_help] = ACTIONS(2060), - [anon_sym_length] = ACTIONS(2060), - [anon_sym_output] = ACTIONS(2060), - [anon_sym_output_error] = ACTIONS(2060), - [anon_sym_type] = ACTIONS(2060), - [anon_sym_append] = ACTIONS(2060), - [anon_sym_metadata] = ACTIONS(2060), - [anon_sym_move] = ACTIONS(2060), - [anon_sym_read] = ACTIONS(2060), - [anon_sym_workdir] = ACTIONS(2060), - [anon_sym_write] = ACTIONS(2060), - [anon_sym_from_json] = ACTIONS(2060), - [anon_sym_to_json] = ACTIONS(2060), - [anon_sym_to_string] = ACTIONS(2060), - [anon_sym_to_float] = ACTIONS(2060), - [anon_sym_bash] = ACTIONS(2060), - [anon_sym_fish] = ACTIONS(2060), - [anon_sym_raw] = ACTIONS(2060), - [anon_sym_sh] = ACTIONS(2060), - [anon_sym_zsh] = ACTIONS(2060), - [anon_sym_random] = ACTIONS(2060), - [anon_sym_random_boolean] = ACTIONS(2060), - [anon_sym_random_float] = ACTIONS(2060), - [anon_sym_random_integer] = ACTIONS(2060), - [anon_sym_columns] = ACTIONS(2060), - [anon_sym_rows] = ACTIONS(2060), - [anon_sym_reverse] = ACTIONS(2060), + [anon_sym_LBRACE] = ACTIONS(2071), + [anon_sym_RBRACE] = ACTIONS(2071), + [anon_sym_SEMI] = ACTIONS(2071), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_RPAREN] = ACTIONS(2071), + [anon_sym_COMMA] = ACTIONS(2071), + [sym_integer] = ACTIONS(2073), + [sym_float] = ACTIONS(2071), + [sym_string] = ACTIONS(2071), + [anon_sym_true] = ACTIONS(2073), + [anon_sym_false] = ACTIONS(2073), + [anon_sym_LBRACK] = ACTIONS(2071), + [anon_sym_RBRACK] = ACTIONS(2071), + [anon_sym_COLON] = ACTIONS(117), + [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(2073), + [anon_sym_elseif] = ACTIONS(2071), + [anon_sym_else] = ACTIONS(2073), + [anon_sym_match] = ACTIONS(2073), + [anon_sym_EQ_GT] = ACTIONS(2071), + [anon_sym_while] = ACTIONS(2073), + [anon_sym_for] = ACTIONS(2073), + [anon_sym_asyncfor] = ACTIONS(2071), + [anon_sym_transform] = ACTIONS(2073), + [anon_sym_filter] = ACTIONS(2073), + [anon_sym_find] = ACTIONS(2073), + [anon_sym_remove] = ACTIONS(2073), + [anon_sym_reduce] = ACTIONS(2073), + [anon_sym_select] = ACTIONS(2073), + [anon_sym_insert] = ACTIONS(2073), + [anon_sym_async] = ACTIONS(2073), + [anon_sym_PIPE] = ACTIONS(2073), + [anon_sym_table] = ACTIONS(2073), + [anon_sym_assert] = ACTIONS(2073), + [anon_sym_assert_equal] = ACTIONS(2073), + [anon_sym_download] = ACTIONS(2073), + [anon_sym_help] = ACTIONS(2073), + [anon_sym_length] = ACTIONS(2073), + [anon_sym_output] = ACTIONS(2073), + [anon_sym_output_error] = ACTIONS(2073), + [anon_sym_type] = ACTIONS(2073), + [anon_sym_append] = ACTIONS(2073), + [anon_sym_metadata] = ACTIONS(2073), + [anon_sym_move] = ACTIONS(2073), + [anon_sym_read] = ACTIONS(2073), + [anon_sym_workdir] = ACTIONS(2073), + [anon_sym_write] = ACTIONS(2073), + [anon_sym_from_json] = ACTIONS(2073), + [anon_sym_to_json] = ACTIONS(2073), + [anon_sym_to_string] = ACTIONS(2073), + [anon_sym_to_float] = ACTIONS(2073), + [anon_sym_bash] = ACTIONS(2073), + [anon_sym_fish] = ACTIONS(2073), + [anon_sym_raw] = ACTIONS(2073), + [anon_sym_sh] = ACTIONS(2073), + [anon_sym_zsh] = ACTIONS(2073), + [anon_sym_random] = ACTIONS(2073), + [anon_sym_random_boolean] = ACTIONS(2073), + [anon_sym_random_float] = ACTIONS(2073), + [anon_sym_random_integer] = ACTIONS(2073), + [anon_sym_columns] = ACTIONS(2073), + [anon_sym_rows] = ACTIONS(2073), + [anon_sym_reverse] = ACTIONS(2073), }, [371] = { - [sym_statement] = STATE(374), - [sym_expression] = STATE(934), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(842), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(983), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [aux_sym_block_repeat1] = STATE(374), - [sym_identifier] = ACTIONS(2851), + [sym_else_if] = STATE(391), + [sym_else] = STATE(430), + [aux_sym_if_else_repeat1] = STATE(391), + [ts_builtin_sym_end] = ACTIONS(2001), + [sym_identifier] = ACTIONS(2003), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_COMMA] = ACTIONS(419), - [sym_integer] = ACTIONS(11), - [sym_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(1570), - [anon_sym_match] = ACTIONS(2166), - [anon_sym_EQ_GT] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(2168), - [anon_sym_for] = ACTIONS(2170), - [anon_sym_asyncfor] = ACTIONS(2172), - [anon_sym_transform] = ACTIONS(2174), - [anon_sym_filter] = ACTIONS(2176), - [anon_sym_find] = ACTIONS(2178), - [anon_sym_remove] = ACTIONS(2180), - [anon_sym_reduce] = ACTIONS(2182), - [anon_sym_select] = ACTIONS(2184), - [anon_sym_insert] = ACTIONS(1224), - [anon_sym_async] = ACTIONS(2186), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(1228), - [anon_sym_assert] = ACTIONS(1230), - [anon_sym_assert_equal] = ACTIONS(1230), - [anon_sym_download] = ACTIONS(1230), - [anon_sym_help] = ACTIONS(1230), - [anon_sym_length] = ACTIONS(1230), - [anon_sym_output] = ACTIONS(1230), - [anon_sym_output_error] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_append] = ACTIONS(1230), - [anon_sym_metadata] = ACTIONS(1230), - [anon_sym_move] = ACTIONS(1230), - [anon_sym_read] = ACTIONS(1230), - [anon_sym_workdir] = ACTIONS(1230), - [anon_sym_write] = ACTIONS(1230), - [anon_sym_from_json] = ACTIONS(1230), - [anon_sym_to_json] = ACTIONS(1230), - [anon_sym_to_string] = ACTIONS(1230), - [anon_sym_to_float] = ACTIONS(1230), - [anon_sym_bash] = ACTIONS(1230), - [anon_sym_fish] = ACTIONS(1230), - [anon_sym_raw] = ACTIONS(1230), - [anon_sym_sh] = ACTIONS(1230), - [anon_sym_zsh] = ACTIONS(1230), - [anon_sym_random] = ACTIONS(1230), - [anon_sym_random_boolean] = ACTIONS(1230), - [anon_sym_random_float] = ACTIONS(1230), - [anon_sym_random_integer] = ACTIONS(1230), - [anon_sym_columns] = ACTIONS(1230), - [anon_sym_rows] = ACTIONS(1230), - [anon_sym_reverse] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(2001), + [anon_sym_RBRACE] = ACTIONS(2001), + [anon_sym_SEMI] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_RPAREN] = ACTIONS(2001), + [sym_integer] = ACTIONS(2003), + [sym_float] = ACTIONS(2001), + [sym_string] = ACTIONS(2001), + [anon_sym_true] = ACTIONS(2003), + [anon_sym_false] = ACTIONS(2003), + [anon_sym_LBRACK] = ACTIONS(2001), + [anon_sym_COLON] = ACTIONS(2001), + [anon_sym_DOT_DOT] = ACTIONS(2001), + [anon_sym_PLUS] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_STAR] = ACTIONS(2001), + [anon_sym_SLASH] = ACTIONS(2001), + [anon_sym_PERCENT] = ACTIONS(2001), + [anon_sym_EQ_EQ] = ACTIONS(2001), + [anon_sym_BANG_EQ] = ACTIONS(2001), + [anon_sym_AMP_AMP] = ACTIONS(2001), + [anon_sym_PIPE_PIPE] = ACTIONS(2001), + [anon_sym_GT] = ACTIONS(2003), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_GT_EQ] = ACTIONS(2001), + [anon_sym_LT_EQ] = ACTIONS(2001), + [anon_sym_if] = ACTIONS(2003), + [anon_sym_elseif] = ACTIONS(2083), + [anon_sym_else] = ACTIONS(2087), + [anon_sym_match] = ACTIONS(2003), + [anon_sym_EQ_GT] = ACTIONS(2001), + [anon_sym_while] = ACTIONS(2003), + [anon_sym_for] = ACTIONS(2003), + [anon_sym_asyncfor] = ACTIONS(2001), + [anon_sym_transform] = ACTIONS(2003), + [anon_sym_filter] = ACTIONS(2003), + [anon_sym_find] = ACTIONS(2003), + [anon_sym_remove] = ACTIONS(2003), + [anon_sym_reduce] = ACTIONS(2003), + [anon_sym_select] = ACTIONS(2003), + [anon_sym_insert] = ACTIONS(2003), + [anon_sym_async] = ACTIONS(2003), + [anon_sym_PIPE] = ACTIONS(2003), + [anon_sym_table] = ACTIONS(2003), + [anon_sym_assert] = ACTIONS(2003), + [anon_sym_assert_equal] = ACTIONS(2003), + [anon_sym_download] = ACTIONS(2003), + [anon_sym_help] = ACTIONS(2003), + [anon_sym_length] = ACTIONS(2003), + [anon_sym_output] = ACTIONS(2003), + [anon_sym_output_error] = ACTIONS(2003), + [anon_sym_type] = ACTIONS(2003), + [anon_sym_append] = ACTIONS(2003), + [anon_sym_metadata] = ACTIONS(2003), + [anon_sym_move] = ACTIONS(2003), + [anon_sym_read] = ACTIONS(2003), + [anon_sym_workdir] = ACTIONS(2003), + [anon_sym_write] = ACTIONS(2003), + [anon_sym_from_json] = ACTIONS(2003), + [anon_sym_to_json] = ACTIONS(2003), + [anon_sym_to_string] = ACTIONS(2003), + [anon_sym_to_float] = ACTIONS(2003), + [anon_sym_bash] = ACTIONS(2003), + [anon_sym_fish] = ACTIONS(2003), + [anon_sym_raw] = ACTIONS(2003), + [anon_sym_sh] = ACTIONS(2003), + [anon_sym_zsh] = ACTIONS(2003), + [anon_sym_random] = ACTIONS(2003), + [anon_sym_random_boolean] = ACTIONS(2003), + [anon_sym_random_float] = ACTIONS(2003), + [anon_sym_random_integer] = ACTIONS(2003), + [anon_sym_columns] = ACTIONS(2003), + [anon_sym_rows] = ACTIONS(2003), + [anon_sym_reverse] = ACTIONS(2003), }, [372] = { - [sym_expression] = STATE(876), - [sym__expression_kind] = STATE(866), - [aux_sym__expression_list] = STATE(372), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(866), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [ts_builtin_sym_end] = ACTIONS(2518), - [sym_identifier] = ACTIONS(2646), + [sym_expression] = STATE(555), + [sym__expression_kind] = STATE(585), + [aux_sym__expression_list] = STATE(376), + [sym_value] = STATE(585), + [sym_boolean] = STATE(586), + [sym_list] = STATE(586), + [sym_map] = STATE(586), + [sym_index] = STATE(585), + [sym_math] = STATE(585), + [sym_logic] = STATE(585), + [sym_identifier_list] = STATE(1105), + [sym_table] = STATE(586), + [sym_function] = STATE(586), + [sym_function_call] = STATE(585), + [sym__context_defined_function] = STATE(587), + [sym_built_in_function] = STATE(587), + [sym__built_in_function_name] = STATE(372), + [sym_identifier] = ACTIONS(2089), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2649), - [anon_sym_RBRACE] = ACTIONS(2518), - [anon_sym_SEMI] = ACTIONS(2518), - [anon_sym_LPAREN] = ACTIONS(2652), - [anon_sym_RPAREN] = ACTIONS(2518), - [sym_integer] = ACTIONS(2655), - [sym_float] = ACTIONS(2658), - [sym_string] = ACTIONS(2658), - [anon_sym_true] = ACTIONS(2661), - [anon_sym_false] = ACTIONS(2661), - [anon_sym_LBRACK] = ACTIONS(2664), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2541), - [anon_sym_STAR] = ACTIONS(2518), - [anon_sym_SLASH] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_EQ_EQ] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_GT] = ACTIONS(2541), - [anon_sym_LT] = ACTIONS(2541), - [anon_sym_GT_EQ] = ACTIONS(2518), - [anon_sym_LT_EQ] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2541), - [anon_sym_match] = ACTIONS(2541), - [anon_sym_EQ_GT] = ACTIONS(2764), - [anon_sym_while] = ACTIONS(2541), - [anon_sym_for] = ACTIONS(2541), - [anon_sym_asyncfor] = ACTIONS(2518), - [anon_sym_transform] = ACTIONS(2541), - [anon_sym_filter] = ACTIONS(2541), - [anon_sym_find] = ACTIONS(2541), - [anon_sym_remove] = ACTIONS(2541), - [anon_sym_reduce] = ACTIONS(2541), - [anon_sym_select] = ACTIONS(2541), - [anon_sym_insert] = ACTIONS(2541), - [anon_sym_async] = ACTIONS(2541), - [anon_sym_PIPE] = ACTIONS(2546), - [anon_sym_table] = ACTIONS(2767), - [anon_sym_assert] = ACTIONS(2770), - [anon_sym_assert_equal] = ACTIONS(2770), - [anon_sym_download] = ACTIONS(2770), - [anon_sym_help] = ACTIONS(2770), - [anon_sym_length] = ACTIONS(2770), - [anon_sym_output] = ACTIONS(2770), - [anon_sym_output_error] = ACTIONS(2770), - [anon_sym_type] = ACTIONS(2770), - [anon_sym_append] = ACTIONS(2770), - [anon_sym_metadata] = ACTIONS(2770), - [anon_sym_move] = ACTIONS(2770), - [anon_sym_read] = ACTIONS(2770), - [anon_sym_workdir] = ACTIONS(2770), - [anon_sym_write] = ACTIONS(2770), - [anon_sym_from_json] = ACTIONS(2770), - [anon_sym_to_json] = ACTIONS(2770), - [anon_sym_to_string] = ACTIONS(2770), - [anon_sym_to_float] = ACTIONS(2770), - [anon_sym_bash] = ACTIONS(2770), - [anon_sym_fish] = ACTIONS(2770), - [anon_sym_raw] = ACTIONS(2770), - [anon_sym_sh] = ACTIONS(2770), - [anon_sym_zsh] = ACTIONS(2770), - [anon_sym_random] = ACTIONS(2770), - [anon_sym_random_boolean] = ACTIONS(2770), - [anon_sym_random_float] = ACTIONS(2770), - [anon_sym_random_integer] = ACTIONS(2770), - [anon_sym_columns] = ACTIONS(2770), - [anon_sym_rows] = ACTIONS(2770), - [anon_sym_reverse] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_RBRACE] = ACTIONS(1333), + [anon_sym_SEMI] = ACTIONS(1333), + [anon_sym_LPAREN] = ACTIONS(2049), + [anon_sym_RPAREN] = ACTIONS(1333), + [anon_sym_COMMA] = ACTIONS(1333), + [sym_integer] = ACTIONS(2051), + [sym_float] = ACTIONS(2053), + [sym_string] = ACTIONS(2053), + [anon_sym_true] = ACTIONS(2055), + [anon_sym_false] = ACTIONS(2055), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_RBRACK] = ACTIONS(1333), + [anon_sym_COLON] = ACTIONS(1333), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1333), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_SLASH] = ACTIONS(1333), + [anon_sym_PERCENT] = ACTIONS(1333), + [anon_sym_EQ_EQ] = ACTIONS(1333), + [anon_sym_BANG_EQ] = ACTIONS(1333), + [anon_sym_AMP_AMP] = ACTIONS(1333), + [anon_sym_PIPE_PIPE] = ACTIONS(1333), + [anon_sym_GT] = ACTIONS(1335), + [anon_sym_LT] = ACTIONS(1335), + [anon_sym_GT_EQ] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1333), + [anon_sym_EQ_GT] = ACTIONS(2091), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2093), + [anon_sym_assert] = ACTIONS(2095), + [anon_sym_assert_equal] = ACTIONS(2095), + [anon_sym_download] = ACTIONS(2095), + [anon_sym_help] = ACTIONS(2095), + [anon_sym_length] = ACTIONS(2095), + [anon_sym_output] = ACTIONS(2095), + [anon_sym_output_error] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2095), + [anon_sym_append] = ACTIONS(2095), + [anon_sym_metadata] = ACTIONS(2095), + [anon_sym_move] = ACTIONS(2095), + [anon_sym_read] = ACTIONS(2095), + [anon_sym_workdir] = ACTIONS(2095), + [anon_sym_write] = ACTIONS(2095), + [anon_sym_from_json] = ACTIONS(2095), + [anon_sym_to_json] = ACTIONS(2095), + [anon_sym_to_string] = ACTIONS(2095), + [anon_sym_to_float] = ACTIONS(2095), + [anon_sym_bash] = ACTIONS(2095), + [anon_sym_fish] = ACTIONS(2095), + [anon_sym_raw] = ACTIONS(2095), + [anon_sym_sh] = ACTIONS(2095), + [anon_sym_zsh] = ACTIONS(2095), + [anon_sym_random] = ACTIONS(2095), + [anon_sym_random_boolean] = ACTIONS(2095), + [anon_sym_random_float] = ACTIONS(2095), + [anon_sym_random_integer] = ACTIONS(2095), + [anon_sym_columns] = ACTIONS(2095), + [anon_sym_rows] = ACTIONS(2095), + [anon_sym_reverse] = ACTIONS(2095), }, [373] = { - [sym_expression] = STATE(1575), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_logic] = STATE(1539), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(379), - [ts_builtin_sym_end] = ACTIONS(2449), - [sym_identifier] = ACTIONS(2451), + [sym_math_operator] = STATE(732), + [sym_logic_operator] = STATE(730), + [ts_builtin_sym_end] = ACTIONS(2067), + [sym_identifier] = ACTIONS(2069), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_RBRACE] = ACTIONS(2449), - [anon_sym_SEMI] = ACTIONS(2449), - [anon_sym_LPAREN] = ACTIONS(2455), - [anon_sym_RPAREN] = ACTIONS(2449), - [sym_integer] = ACTIONS(2457), - [sym_float] = ACTIONS(2459), - [sym_string] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(2461), - [anon_sym_false] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_COLON] = ACTIONS(2449), - [anon_sym_PLUS] = ACTIONS(2449), - [anon_sym_DASH] = ACTIONS(2465), - [anon_sym_STAR] = ACTIONS(2449), - [anon_sym_SLASH] = ACTIONS(2449), - [anon_sym_PERCENT] = ACTIONS(2449), - [anon_sym_EQ_EQ] = ACTIONS(2449), - [anon_sym_BANG_EQ] = ACTIONS(2449), - [anon_sym_AMP_AMP] = ACTIONS(2449), - [anon_sym_PIPE_PIPE] = ACTIONS(2449), - [anon_sym_GT] = ACTIONS(2465), - [anon_sym_LT] = ACTIONS(2465), - [anon_sym_GT_EQ] = ACTIONS(2449), - [anon_sym_LT_EQ] = ACTIONS(2449), - [anon_sym_if] = ACTIONS(2465), - [anon_sym_match] = ACTIONS(2465), - [anon_sym_EQ_GT] = ACTIONS(2467), - [anon_sym_while] = ACTIONS(2465), - [anon_sym_for] = ACTIONS(2465), - [anon_sym_asyncfor] = ACTIONS(2449), - [anon_sym_transform] = ACTIONS(2465), - [anon_sym_filter] = ACTIONS(2465), - [anon_sym_find] = ACTIONS(2465), - [anon_sym_remove] = ACTIONS(2465), - [anon_sym_reduce] = ACTIONS(2465), - [anon_sym_select] = ACTIONS(2465), - [anon_sym_insert] = ACTIONS(2465), - [anon_sym_async] = ACTIONS(2465), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(2469), - [anon_sym_assert] = ACTIONS(2471), - [anon_sym_assert_equal] = ACTIONS(2471), - [anon_sym_download] = ACTIONS(2471), - [anon_sym_help] = ACTIONS(2471), - [anon_sym_length] = ACTIONS(2471), - [anon_sym_output] = ACTIONS(2471), - [anon_sym_output_error] = ACTIONS(2471), - [anon_sym_type] = ACTIONS(2471), - [anon_sym_append] = ACTIONS(2471), - [anon_sym_metadata] = ACTIONS(2471), - [anon_sym_move] = ACTIONS(2471), - [anon_sym_read] = ACTIONS(2471), - [anon_sym_workdir] = ACTIONS(2471), - [anon_sym_write] = ACTIONS(2471), - [anon_sym_from_json] = ACTIONS(2471), - [anon_sym_to_json] = ACTIONS(2471), - [anon_sym_to_string] = ACTIONS(2471), - [anon_sym_to_float] = ACTIONS(2471), - [anon_sym_bash] = ACTIONS(2471), - [anon_sym_fish] = ACTIONS(2471), - [anon_sym_raw] = ACTIONS(2471), - [anon_sym_sh] = ACTIONS(2471), - [anon_sym_zsh] = ACTIONS(2471), - [anon_sym_random] = ACTIONS(2471), - [anon_sym_random_boolean] = ACTIONS(2471), - [anon_sym_random_float] = ACTIONS(2471), - [anon_sym_random_integer] = ACTIONS(2471), - [anon_sym_columns] = ACTIONS(2471), - [anon_sym_rows] = ACTIONS(2471), - [anon_sym_reverse] = ACTIONS(2471), + [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_RBRACE] = ACTIONS(2067), + [anon_sym_SEMI] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_RPAREN] = ACTIONS(2067), + [anon_sym_COMMA] = ACTIONS(2067), + [sym_integer] = ACTIONS(2069), + [sym_float] = ACTIONS(2067), + [sym_string] = ACTIONS(2067), + [anon_sym_true] = ACTIONS(2069), + [anon_sym_false] = ACTIONS(2069), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_RBRACK] = ACTIONS(2067), + [anon_sym_COLON] = ACTIONS(2067), + [anon_sym_PLUS] = ACTIONS(2067), + [anon_sym_DASH] = ACTIONS(2069), + [anon_sym_STAR] = ACTIONS(2067), + [anon_sym_SLASH] = ACTIONS(2067), + [anon_sym_PERCENT] = ACTIONS(2067), + [anon_sym_EQ_EQ] = ACTIONS(2067), + [anon_sym_BANG_EQ] = ACTIONS(2067), + [anon_sym_AMP_AMP] = ACTIONS(2067), + [anon_sym_PIPE_PIPE] = ACTIONS(2067), + [anon_sym_GT] = ACTIONS(2069), + [anon_sym_LT] = ACTIONS(2069), + [anon_sym_GT_EQ] = ACTIONS(2067), + [anon_sym_LT_EQ] = ACTIONS(2067), + [anon_sym_if] = ACTIONS(2069), + [anon_sym_elseif] = ACTIONS(2067), + [anon_sym_else] = ACTIONS(2069), + [anon_sym_match] = ACTIONS(2069), + [anon_sym_EQ_GT] = ACTIONS(2067), + [anon_sym_while] = ACTIONS(2069), + [anon_sym_for] = ACTIONS(2069), + [anon_sym_asyncfor] = ACTIONS(2067), + [anon_sym_transform] = ACTIONS(2069), + [anon_sym_filter] = ACTIONS(2069), + [anon_sym_find] = ACTIONS(2069), + [anon_sym_remove] = ACTIONS(2069), + [anon_sym_reduce] = ACTIONS(2069), + [anon_sym_select] = ACTIONS(2069), + [anon_sym_insert] = ACTIONS(2069), + [anon_sym_async] = ACTIONS(2069), + [anon_sym_PIPE] = ACTIONS(2069), + [anon_sym_table] = ACTIONS(2069), + [anon_sym_assert] = ACTIONS(2069), + [anon_sym_assert_equal] = ACTIONS(2069), + [anon_sym_download] = ACTIONS(2069), + [anon_sym_help] = ACTIONS(2069), + [anon_sym_length] = ACTIONS(2069), + [anon_sym_output] = ACTIONS(2069), + [anon_sym_output_error] = ACTIONS(2069), + [anon_sym_type] = ACTIONS(2069), + [anon_sym_append] = ACTIONS(2069), + [anon_sym_metadata] = ACTIONS(2069), + [anon_sym_move] = ACTIONS(2069), + [anon_sym_read] = ACTIONS(2069), + [anon_sym_workdir] = ACTIONS(2069), + [anon_sym_write] = ACTIONS(2069), + [anon_sym_from_json] = ACTIONS(2069), + [anon_sym_to_json] = ACTIONS(2069), + [anon_sym_to_string] = ACTIONS(2069), + [anon_sym_to_float] = ACTIONS(2069), + [anon_sym_bash] = ACTIONS(2069), + [anon_sym_fish] = ACTIONS(2069), + [anon_sym_raw] = ACTIONS(2069), + [anon_sym_sh] = ACTIONS(2069), + [anon_sym_zsh] = ACTIONS(2069), + [anon_sym_random] = ACTIONS(2069), + [anon_sym_random_boolean] = ACTIONS(2069), + [anon_sym_random_float] = ACTIONS(2069), + [anon_sym_random_integer] = ACTIONS(2069), + [anon_sym_columns] = ACTIONS(2069), + [anon_sym_rows] = ACTIONS(2069), + [anon_sym_reverse] = ACTIONS(2069), }, [374] = { - [sym_statement] = STATE(374), - [sym_expression] = STATE(934), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(842), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(983), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [aux_sym_block_repeat1] = STATE(374), - [sym_identifier] = ACTIONS(2854), + [sym_math_operator] = STATE(732), + [sym_logic_operator] = STATE(730), + [ts_builtin_sym_end] = ACTIONS(2063), + [sym_identifier] = ACTIONS(2065), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_RBRACE] = ACTIONS(343), - [anon_sym_SEMI] = ACTIONS(343), - [anon_sym_LPAREN] = ACTIONS(1669), - [anon_sym_COMMA] = ACTIONS(343), - [sym_integer] = ACTIONS(1672), - [sym_float] = ACTIONS(1675), - [sym_string] = ACTIONS(1675), - [anon_sym_true] = ACTIONS(1678), - [anon_sym_false] = ACTIONS(1678), - [anon_sym_LBRACK] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(2681), - [anon_sym_match] = ACTIONS(2857), - [anon_sym_EQ_GT] = ACTIONS(2069), - [anon_sym_while] = ACTIONS(2860), - [anon_sym_for] = ACTIONS(2863), - [anon_sym_asyncfor] = ACTIONS(2866), - [anon_sym_transform] = ACTIONS(2869), - [anon_sym_filter] = ACTIONS(2872), - [anon_sym_find] = ACTIONS(2875), - [anon_sym_remove] = ACTIONS(2878), - [anon_sym_reduce] = ACTIONS(2881), - [anon_sym_select] = ACTIONS(2884), - [anon_sym_insert] = ACTIONS(2099), - [anon_sym_async] = ACTIONS(2887), - [anon_sym_PIPE] = ACTIONS(2717), - [anon_sym_table] = ACTIONS(2105), - [anon_sym_assert] = ACTIONS(2108), - [anon_sym_assert_equal] = ACTIONS(2108), - [anon_sym_download] = ACTIONS(2108), - [anon_sym_help] = ACTIONS(2108), - [anon_sym_length] = ACTIONS(2108), - [anon_sym_output] = ACTIONS(2108), - [anon_sym_output_error] = ACTIONS(2108), - [anon_sym_type] = ACTIONS(2108), - [anon_sym_append] = ACTIONS(2108), - [anon_sym_metadata] = ACTIONS(2108), - [anon_sym_move] = ACTIONS(2108), - [anon_sym_read] = ACTIONS(2108), - [anon_sym_workdir] = ACTIONS(2108), - [anon_sym_write] = ACTIONS(2108), - [anon_sym_from_json] = ACTIONS(2108), - [anon_sym_to_json] = ACTIONS(2108), - [anon_sym_to_string] = ACTIONS(2108), - [anon_sym_to_float] = ACTIONS(2108), - [anon_sym_bash] = ACTIONS(2108), - [anon_sym_fish] = ACTIONS(2108), - [anon_sym_raw] = ACTIONS(2108), - [anon_sym_sh] = ACTIONS(2108), - [anon_sym_zsh] = ACTIONS(2108), - [anon_sym_random] = ACTIONS(2108), - [anon_sym_random_boolean] = ACTIONS(2108), - [anon_sym_random_float] = ACTIONS(2108), - [anon_sym_random_integer] = ACTIONS(2108), - [anon_sym_columns] = ACTIONS(2108), - [anon_sym_rows] = ACTIONS(2108), - [anon_sym_reverse] = ACTIONS(2108), + [anon_sym_LBRACE] = ACTIONS(2063), + [anon_sym_RBRACE] = ACTIONS(2063), + [anon_sym_SEMI] = ACTIONS(2063), + [anon_sym_LPAREN] = ACTIONS(2063), + [anon_sym_RPAREN] = ACTIONS(2063), + [anon_sym_COMMA] = ACTIONS(2063), + [sym_integer] = ACTIONS(2065), + [sym_float] = ACTIONS(2063), + [sym_string] = ACTIONS(2063), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_LBRACK] = ACTIONS(2063), + [anon_sym_RBRACK] = ACTIONS(2063), + [anon_sym_COLON] = ACTIONS(2063), + [anon_sym_PLUS] = ACTIONS(2063), + [anon_sym_DASH] = ACTIONS(2065), + [anon_sym_STAR] = ACTIONS(2063), + [anon_sym_SLASH] = ACTIONS(2063), + [anon_sym_PERCENT] = ACTIONS(2063), + [anon_sym_EQ_EQ] = ACTIONS(2063), + [anon_sym_BANG_EQ] = ACTIONS(2063), + [anon_sym_AMP_AMP] = ACTIONS(2063), + [anon_sym_PIPE_PIPE] = ACTIONS(2063), + [anon_sym_GT] = ACTIONS(2065), + [anon_sym_LT] = ACTIONS(2065), + [anon_sym_GT_EQ] = ACTIONS(2063), + [anon_sym_LT_EQ] = ACTIONS(2063), + [anon_sym_if] = ACTIONS(2065), + [anon_sym_elseif] = ACTIONS(2063), + [anon_sym_else] = ACTIONS(2065), + [anon_sym_match] = ACTIONS(2065), + [anon_sym_EQ_GT] = ACTIONS(2063), + [anon_sym_while] = ACTIONS(2065), + [anon_sym_for] = ACTIONS(2065), + [anon_sym_asyncfor] = ACTIONS(2063), + [anon_sym_transform] = ACTIONS(2065), + [anon_sym_filter] = ACTIONS(2065), + [anon_sym_find] = ACTIONS(2065), + [anon_sym_remove] = ACTIONS(2065), + [anon_sym_reduce] = ACTIONS(2065), + [anon_sym_select] = ACTIONS(2065), + [anon_sym_insert] = ACTIONS(2065), + [anon_sym_async] = ACTIONS(2065), + [anon_sym_PIPE] = ACTIONS(2065), + [anon_sym_table] = ACTIONS(2065), + [anon_sym_assert] = ACTIONS(2065), + [anon_sym_assert_equal] = ACTIONS(2065), + [anon_sym_download] = ACTIONS(2065), + [anon_sym_help] = ACTIONS(2065), + [anon_sym_length] = ACTIONS(2065), + [anon_sym_output] = ACTIONS(2065), + [anon_sym_output_error] = ACTIONS(2065), + [anon_sym_type] = ACTIONS(2065), + [anon_sym_append] = ACTIONS(2065), + [anon_sym_metadata] = ACTIONS(2065), + [anon_sym_move] = ACTIONS(2065), + [anon_sym_read] = ACTIONS(2065), + [anon_sym_workdir] = ACTIONS(2065), + [anon_sym_write] = ACTIONS(2065), + [anon_sym_from_json] = ACTIONS(2065), + [anon_sym_to_json] = ACTIONS(2065), + [anon_sym_to_string] = ACTIONS(2065), + [anon_sym_to_float] = ACTIONS(2065), + [anon_sym_bash] = ACTIONS(2065), + [anon_sym_fish] = ACTIONS(2065), + [anon_sym_raw] = ACTIONS(2065), + [anon_sym_sh] = ACTIONS(2065), + [anon_sym_zsh] = ACTIONS(2065), + [anon_sym_random] = ACTIONS(2065), + [anon_sym_random_boolean] = ACTIONS(2065), + [anon_sym_random_float] = ACTIONS(2065), + [anon_sym_random_integer] = ACTIONS(2065), + [anon_sym_columns] = ACTIONS(2065), + [anon_sym_rows] = ACTIONS(2065), + [anon_sym_reverse] = ACTIONS(2065), }, [375] = { - [sym_expression] = STATE(876), - [sym__expression_kind] = STATE(866), - [aux_sym__expression_list] = STATE(372), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(866), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [ts_builtin_sym_end] = ACTIONS(2477), - [sym_identifier] = ACTIONS(2676), + [sym_expression] = STATE(555), + [sym__expression_kind] = STATE(585), + [aux_sym__expression_list] = STATE(378), + [sym_value] = STATE(585), + [sym_boolean] = STATE(586), + [sym_list] = STATE(586), + [sym_map] = STATE(586), + [sym_index] = STATE(585), + [sym_math] = STATE(585), + [sym_logic] = STATE(585), + [sym_identifier_list] = STATE(1105), + [sym_table] = STATE(586), + [sym_function] = STATE(586), + [sym_function_call] = STATE(585), + [sym__context_defined_function] = STATE(587), + [sym_built_in_function] = STATE(587), + [sym__built_in_function_name] = STATE(372), + [sym_identifier] = ACTIONS(2089), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(2477), - [anon_sym_SEMI] = ACTIONS(2477), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(2477), - [sym_integer] = ACTIONS(11), - [sym_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(2477), - [anon_sym_PLUS] = ACTIONS(2477), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2477), - [anon_sym_SLASH] = ACTIONS(2477), - [anon_sym_PERCENT] = ACTIONS(2477), - [anon_sym_EQ_EQ] = ACTIONS(2477), - [anon_sym_BANG_EQ] = ACTIONS(2477), - [anon_sym_AMP_AMP] = ACTIONS(2477), - [anon_sym_PIPE_PIPE] = ACTIONS(2477), - [anon_sym_GT] = ACTIONS(2479), - [anon_sym_LT] = ACTIONS(2479), - [anon_sym_GT_EQ] = ACTIONS(2477), - [anon_sym_LT_EQ] = ACTIONS(2477), - [anon_sym_if] = ACTIONS(2479), - [anon_sym_match] = ACTIONS(2479), - [anon_sym_EQ_GT] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(2479), - [anon_sym_for] = ACTIONS(2479), - [anon_sym_asyncfor] = ACTIONS(2477), - [anon_sym_transform] = ACTIONS(2479), - [anon_sym_filter] = ACTIONS(2479), - [anon_sym_find] = ACTIONS(2479), - [anon_sym_remove] = ACTIONS(2479), - [anon_sym_reduce] = ACTIONS(2479), - [anon_sym_select] = ACTIONS(2479), - [anon_sym_insert] = ACTIONS(2479), - [anon_sym_async] = ACTIONS(2479), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_RBRACE] = ACTIONS(1329), + [anon_sym_SEMI] = ACTIONS(1329), + [anon_sym_LPAREN] = ACTIONS(2049), + [anon_sym_RPAREN] = ACTIONS(1329), + [anon_sym_COMMA] = ACTIONS(1329), + [sym_integer] = ACTIONS(2051), + [sym_float] = ACTIONS(2053), + [sym_string] = ACTIONS(2053), + [anon_sym_true] = ACTIONS(2055), + [anon_sym_false] = ACTIONS(2055), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_RBRACK] = ACTIONS(1329), + [anon_sym_COLON] = ACTIONS(1329), + [anon_sym_DOT_DOT] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1331), + [anon_sym_STAR] = ACTIONS(1329), + [anon_sym_SLASH] = ACTIONS(1329), + [anon_sym_PERCENT] = ACTIONS(1329), + [anon_sym_EQ_EQ] = ACTIONS(1329), + [anon_sym_BANG_EQ] = ACTIONS(1329), + [anon_sym_AMP_AMP] = ACTIONS(1329), + [anon_sym_PIPE_PIPE] = ACTIONS(1329), + [anon_sym_GT] = ACTIONS(1331), + [anon_sym_LT] = ACTIONS(1331), + [anon_sym_GT_EQ] = ACTIONS(1329), + [anon_sym_LT_EQ] = ACTIONS(1329), + [anon_sym_EQ_GT] = ACTIONS(2091), [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1228), - [anon_sym_assert] = ACTIONS(1230), - [anon_sym_assert_equal] = ACTIONS(1230), - [anon_sym_download] = ACTIONS(1230), - [anon_sym_help] = ACTIONS(1230), - [anon_sym_length] = ACTIONS(1230), - [anon_sym_output] = ACTIONS(1230), - [anon_sym_output_error] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_append] = ACTIONS(1230), - [anon_sym_metadata] = ACTIONS(1230), - [anon_sym_move] = ACTIONS(1230), - [anon_sym_read] = ACTIONS(1230), - [anon_sym_workdir] = ACTIONS(1230), - [anon_sym_write] = ACTIONS(1230), - [anon_sym_from_json] = ACTIONS(1230), - [anon_sym_to_json] = ACTIONS(1230), - [anon_sym_to_string] = ACTIONS(1230), - [anon_sym_to_float] = ACTIONS(1230), - [anon_sym_bash] = ACTIONS(1230), - [anon_sym_fish] = ACTIONS(1230), - [anon_sym_raw] = ACTIONS(1230), - [anon_sym_sh] = ACTIONS(1230), - [anon_sym_zsh] = ACTIONS(1230), - [anon_sym_random] = ACTIONS(1230), - [anon_sym_random_boolean] = ACTIONS(1230), - [anon_sym_random_float] = ACTIONS(1230), - [anon_sym_random_integer] = ACTIONS(1230), - [anon_sym_columns] = ACTIONS(1230), - [anon_sym_rows] = ACTIONS(1230), - [anon_sym_reverse] = ACTIONS(1230), + [anon_sym_table] = ACTIONS(2093), + [anon_sym_assert] = ACTIONS(2095), + [anon_sym_assert_equal] = ACTIONS(2095), + [anon_sym_download] = ACTIONS(2095), + [anon_sym_help] = ACTIONS(2095), + [anon_sym_length] = ACTIONS(2095), + [anon_sym_output] = ACTIONS(2095), + [anon_sym_output_error] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2095), + [anon_sym_append] = ACTIONS(2095), + [anon_sym_metadata] = ACTIONS(2095), + [anon_sym_move] = ACTIONS(2095), + [anon_sym_read] = ACTIONS(2095), + [anon_sym_workdir] = ACTIONS(2095), + [anon_sym_write] = ACTIONS(2095), + [anon_sym_from_json] = ACTIONS(2095), + [anon_sym_to_json] = ACTIONS(2095), + [anon_sym_to_string] = ACTIONS(2095), + [anon_sym_to_float] = ACTIONS(2095), + [anon_sym_bash] = ACTIONS(2095), + [anon_sym_fish] = ACTIONS(2095), + [anon_sym_raw] = ACTIONS(2095), + [anon_sym_sh] = ACTIONS(2095), + [anon_sym_zsh] = ACTIONS(2095), + [anon_sym_random] = ACTIONS(2095), + [anon_sym_random_boolean] = ACTIONS(2095), + [anon_sym_random_float] = ACTIONS(2095), + [anon_sym_random_integer] = ACTIONS(2095), + [anon_sym_columns] = ACTIONS(2095), + [anon_sym_rows] = ACTIONS(2095), + [anon_sym_reverse] = ACTIONS(2095), }, [376] = { - [sym_statement] = STATE(376), - [sym_expression] = STATE(925), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(867), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(980), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(376), - [ts_builtin_sym_end] = ACTIONS(343), - [sym_identifier] = ACTIONS(2890), + [sym_expression] = STATE(555), + [sym__expression_kind] = STATE(585), + [aux_sym__expression_list] = STATE(378), + [sym_value] = STATE(585), + [sym_boolean] = STATE(586), + [sym_list] = STATE(586), + [sym_map] = STATE(586), + [sym_index] = STATE(585), + [sym_math] = STATE(585), + [sym_logic] = STATE(585), + [sym_identifier_list] = STATE(1105), + [sym_table] = STATE(586), + [sym_function] = STATE(586), + [sym_function_call] = STATE(585), + [sym__context_defined_function] = STATE(587), + [sym_built_in_function] = STATE(587), + [sym__built_in_function_name] = STATE(372), + [sym_identifier] = ACTIONS(2089), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_RBRACE] = ACTIONS(343), - [anon_sym_SEMI] = ACTIONS(343), - [anon_sym_LPAREN] = ACTIONS(1669), - [sym_integer] = ACTIONS(1672), - [sym_float] = ACTIONS(1675), - [sym_string] = ACTIONS(1675), - [anon_sym_true] = ACTIONS(1678), - [anon_sym_false] = ACTIONS(1678), - [anon_sym_LBRACK] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(2815), - [anon_sym_match] = ACTIONS(2893), - [anon_sym_EQ_GT] = ACTIONS(2341), - [anon_sym_while] = ACTIONS(2896), - [anon_sym_for] = ACTIONS(2899), - [anon_sym_asyncfor] = ACTIONS(2902), - [anon_sym_transform] = ACTIONS(2905), - [anon_sym_filter] = ACTIONS(2908), - [anon_sym_find] = ACTIONS(2911), - [anon_sym_remove] = ACTIONS(2914), - [anon_sym_reduce] = ACTIONS(2917), - [anon_sym_select] = ACTIONS(2920), - [anon_sym_insert] = ACTIONS(2371), - [anon_sym_async] = ACTIONS(2923), - [anon_sym_PIPE] = ACTIONS(2717), - [anon_sym_table] = ACTIONS(2377), - [anon_sym_assert] = ACTIONS(2380), - [anon_sym_assert_equal] = ACTIONS(2380), - [anon_sym_download] = ACTIONS(2380), - [anon_sym_help] = ACTIONS(2380), - [anon_sym_length] = ACTIONS(2380), - [anon_sym_output] = ACTIONS(2380), - [anon_sym_output_error] = ACTIONS(2380), - [anon_sym_type] = ACTIONS(2380), - [anon_sym_append] = ACTIONS(2380), - [anon_sym_metadata] = ACTIONS(2380), - [anon_sym_move] = ACTIONS(2380), - [anon_sym_read] = ACTIONS(2380), - [anon_sym_workdir] = ACTIONS(2380), - [anon_sym_write] = ACTIONS(2380), - [anon_sym_from_json] = ACTIONS(2380), - [anon_sym_to_json] = ACTIONS(2380), - [anon_sym_to_string] = ACTIONS(2380), - [anon_sym_to_float] = ACTIONS(2380), - [anon_sym_bash] = ACTIONS(2380), - [anon_sym_fish] = ACTIONS(2380), - [anon_sym_raw] = ACTIONS(2380), - [anon_sym_sh] = ACTIONS(2380), - [anon_sym_zsh] = ACTIONS(2380), - [anon_sym_random] = ACTIONS(2380), - [anon_sym_random_boolean] = ACTIONS(2380), - [anon_sym_random_float] = ACTIONS(2380), - [anon_sym_random_integer] = ACTIONS(2380), - [anon_sym_columns] = ACTIONS(2380), - [anon_sym_rows] = ACTIONS(2380), - [anon_sym_reverse] = ACTIONS(2380), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_RBRACE] = ACTIONS(1321), + [anon_sym_SEMI] = ACTIONS(1321), + [anon_sym_LPAREN] = ACTIONS(2049), + [anon_sym_RPAREN] = ACTIONS(1321), + [anon_sym_COMMA] = ACTIONS(1321), + [sym_integer] = ACTIONS(2051), + [sym_float] = ACTIONS(2053), + [sym_string] = ACTIONS(2053), + [anon_sym_true] = ACTIONS(2055), + [anon_sym_false] = ACTIONS(2055), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_RBRACK] = ACTIONS(1321), + [anon_sym_COLON] = ACTIONS(1321), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_PLUS] = ACTIONS(1321), + [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_STAR] = ACTIONS(1321), + [anon_sym_SLASH] = ACTIONS(1321), + [anon_sym_PERCENT] = ACTIONS(1321), + [anon_sym_EQ_EQ] = ACTIONS(1321), + [anon_sym_BANG_EQ] = ACTIONS(1321), + [anon_sym_AMP_AMP] = ACTIONS(1321), + [anon_sym_PIPE_PIPE] = ACTIONS(1321), + [anon_sym_GT] = ACTIONS(1327), + [anon_sym_LT] = ACTIONS(1327), + [anon_sym_GT_EQ] = ACTIONS(1321), + [anon_sym_LT_EQ] = ACTIONS(1321), + [anon_sym_EQ_GT] = ACTIONS(2091), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2093), + [anon_sym_assert] = ACTIONS(2095), + [anon_sym_assert_equal] = ACTIONS(2095), + [anon_sym_download] = ACTIONS(2095), + [anon_sym_help] = ACTIONS(2095), + [anon_sym_length] = ACTIONS(2095), + [anon_sym_output] = ACTIONS(2095), + [anon_sym_output_error] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2095), + [anon_sym_append] = ACTIONS(2095), + [anon_sym_metadata] = ACTIONS(2095), + [anon_sym_move] = ACTIONS(2095), + [anon_sym_read] = ACTIONS(2095), + [anon_sym_workdir] = ACTIONS(2095), + [anon_sym_write] = ACTIONS(2095), + [anon_sym_from_json] = ACTIONS(2095), + [anon_sym_to_json] = ACTIONS(2095), + [anon_sym_to_string] = ACTIONS(2095), + [anon_sym_to_float] = ACTIONS(2095), + [anon_sym_bash] = ACTIONS(2095), + [anon_sym_fish] = ACTIONS(2095), + [anon_sym_raw] = ACTIONS(2095), + [anon_sym_sh] = ACTIONS(2095), + [anon_sym_zsh] = ACTIONS(2095), + [anon_sym_random] = ACTIONS(2095), + [anon_sym_random_boolean] = ACTIONS(2095), + [anon_sym_random_float] = ACTIONS(2095), + [anon_sym_random_integer] = ACTIONS(2095), + [anon_sym_columns] = ACTIONS(2095), + [anon_sym_rows] = ACTIONS(2095), + [anon_sym_reverse] = ACTIONS(2095), }, [377] = { - [sym_block] = STATE(377), - [sym_statement] = STATE(381), - [sym_expression] = STATE(925), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(867), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(980), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_root_repeat1] = STATE(377), - [aux_sym_block_repeat1] = STATE(381), - [ts_builtin_sym_end] = ACTIONS(2926), - [sym_identifier] = ACTIONS(2928), + [sym_math_operator] = STATE(732), + [sym_logic_operator] = STATE(730), + [ts_builtin_sym_end] = ACTIONS(2034), + [sym_identifier] = ACTIONS(2036), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_LPAREN] = ACTIONS(2934), - [sym_integer] = ACTIONS(2937), - [sym_float] = ACTIONS(2940), - [sym_string] = ACTIONS(2940), - [anon_sym_true] = ACTIONS(2943), - [anon_sym_false] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(2946), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_match] = ACTIONS(2952), - [anon_sym_EQ_GT] = ACTIONS(2955), - [anon_sym_while] = ACTIONS(2958), - [anon_sym_for] = ACTIONS(2961), - [anon_sym_asyncfor] = ACTIONS(2964), - [anon_sym_transform] = ACTIONS(2967), - [anon_sym_filter] = ACTIONS(2970), - [anon_sym_find] = ACTIONS(2973), - [anon_sym_remove] = ACTIONS(2976), - [anon_sym_reduce] = ACTIONS(2979), - [anon_sym_select] = ACTIONS(2982), - [anon_sym_insert] = ACTIONS(2985), - [anon_sym_async] = ACTIONS(2988), - [anon_sym_PIPE] = ACTIONS(2991), - [anon_sym_table] = ACTIONS(2994), - [anon_sym_assert] = ACTIONS(2997), - [anon_sym_assert_equal] = ACTIONS(2997), - [anon_sym_download] = ACTIONS(2997), - [anon_sym_help] = ACTIONS(2997), - [anon_sym_length] = ACTIONS(2997), - [anon_sym_output] = ACTIONS(2997), - [anon_sym_output_error] = ACTIONS(2997), - [anon_sym_type] = ACTIONS(2997), - [anon_sym_append] = ACTIONS(2997), - [anon_sym_metadata] = ACTIONS(2997), - [anon_sym_move] = ACTIONS(2997), - [anon_sym_read] = ACTIONS(2997), - [anon_sym_workdir] = ACTIONS(2997), - [anon_sym_write] = ACTIONS(2997), - [anon_sym_from_json] = ACTIONS(2997), - [anon_sym_to_json] = ACTIONS(2997), - [anon_sym_to_string] = ACTIONS(2997), - [anon_sym_to_float] = ACTIONS(2997), - [anon_sym_bash] = ACTIONS(2997), - [anon_sym_fish] = ACTIONS(2997), - [anon_sym_raw] = ACTIONS(2997), - [anon_sym_sh] = ACTIONS(2997), - [anon_sym_zsh] = ACTIONS(2997), - [anon_sym_random] = ACTIONS(2997), - [anon_sym_random_boolean] = ACTIONS(2997), - [anon_sym_random_float] = ACTIONS(2997), - [anon_sym_random_integer] = ACTIONS(2997), - [anon_sym_columns] = ACTIONS(2997), - [anon_sym_rows] = ACTIONS(2997), - [anon_sym_reverse] = ACTIONS(2997), + [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(2038), + [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(117), + [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(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_asyncfor] = ACTIONS(2034), + [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), }, [378] = { - [sym_block] = STATE(377), - [sym_statement] = STATE(381), - [sym_expression] = STATE(925), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(867), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(980), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_root_repeat1] = STATE(377), - [aux_sym_block_repeat1] = STATE(381), - [ts_builtin_sym_end] = ACTIONS(3000), - [sym_identifier] = ACTIONS(5), + [sym_expression] = STATE(555), + [sym__expression_kind] = STATE(585), + [aux_sym__expression_list] = STATE(378), + [sym_value] = STATE(585), + [sym_boolean] = STATE(586), + [sym_list] = STATE(586), + [sym_map] = STATE(586), + [sym_index] = STATE(585), + [sym_math] = STATE(585), + [sym_logic] = STATE(585), + [sym_identifier_list] = STATE(1105), + [sym_table] = STATE(586), + [sym_function] = STATE(586), + [sym_function_call] = STATE(585), + [sym__context_defined_function] = STATE(587), + [sym_built_in_function] = STATE(587), + [sym__built_in_function_name] = STATE(372), + [sym_identifier] = ACTIONS(2097), [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_asyncfor] = 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_async] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(49), - [anon_sym_assert] = ACTIONS(51), - [anon_sym_assert_equal] = ACTIONS(51), - [anon_sym_download] = ACTIONS(51), - [anon_sym_help] = ACTIONS(51), - [anon_sym_length] = ACTIONS(51), - [anon_sym_output] = ACTIONS(51), - [anon_sym_output_error] = ACTIONS(51), - [anon_sym_type] = ACTIONS(51), - [anon_sym_append] = ACTIONS(51), - [anon_sym_metadata] = ACTIONS(51), - [anon_sym_move] = ACTIONS(51), - [anon_sym_read] = ACTIONS(51), - [anon_sym_workdir] = ACTIONS(51), - [anon_sym_write] = ACTIONS(51), - [anon_sym_from_json] = ACTIONS(51), - [anon_sym_to_json] = ACTIONS(51), - [anon_sym_to_string] = ACTIONS(51), - [anon_sym_to_float] = ACTIONS(51), - [anon_sym_bash] = ACTIONS(51), - [anon_sym_fish] = ACTIONS(51), - [anon_sym_raw] = ACTIONS(51), - [anon_sym_sh] = ACTIONS(51), - [anon_sym_zsh] = ACTIONS(51), - [anon_sym_random] = ACTIONS(51), - [anon_sym_random_boolean] = ACTIONS(51), - [anon_sym_random_float] = ACTIONS(51), - [anon_sym_random_integer] = ACTIONS(51), - [anon_sym_columns] = ACTIONS(51), - [anon_sym_rows] = ACTIONS(51), - [anon_sym_reverse] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_RBRACE] = ACTIONS(1361), + [anon_sym_SEMI] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(2103), + [anon_sym_RPAREN] = ACTIONS(1361), + [anon_sym_COMMA] = ACTIONS(1361), + [sym_integer] = ACTIONS(2106), + [sym_float] = ACTIONS(2109), + [sym_string] = ACTIONS(2109), + [anon_sym_true] = ACTIONS(2112), + [anon_sym_false] = ACTIONS(2112), + [anon_sym_LBRACK] = ACTIONS(2115), + [anon_sym_RBRACK] = ACTIONS(1361), + [anon_sym_COLON] = ACTIONS(1361), + [anon_sym_DOT_DOT] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1361), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_SLASH] = ACTIONS(1361), + [anon_sym_PERCENT] = ACTIONS(1361), + [anon_sym_EQ_EQ] = ACTIONS(1361), + [anon_sym_BANG_EQ] = ACTIONS(1361), + [anon_sym_AMP_AMP] = ACTIONS(1361), + [anon_sym_PIPE_PIPE] = ACTIONS(1361), + [anon_sym_GT] = ACTIONS(1384), + [anon_sym_LT] = ACTIONS(1384), + [anon_sym_GT_EQ] = ACTIONS(1361), + [anon_sym_LT_EQ] = ACTIONS(1361), + [anon_sym_EQ_GT] = ACTIONS(2118), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_table] = ACTIONS(2121), + [anon_sym_assert] = ACTIONS(2124), + [anon_sym_assert_equal] = ACTIONS(2124), + [anon_sym_download] = ACTIONS(2124), + [anon_sym_help] = ACTIONS(2124), + [anon_sym_length] = ACTIONS(2124), + [anon_sym_output] = ACTIONS(2124), + [anon_sym_output_error] = ACTIONS(2124), + [anon_sym_type] = ACTIONS(2124), + [anon_sym_append] = ACTIONS(2124), + [anon_sym_metadata] = ACTIONS(2124), + [anon_sym_move] = ACTIONS(2124), + [anon_sym_read] = ACTIONS(2124), + [anon_sym_workdir] = ACTIONS(2124), + [anon_sym_write] = ACTIONS(2124), + [anon_sym_from_json] = ACTIONS(2124), + [anon_sym_to_json] = ACTIONS(2124), + [anon_sym_to_string] = ACTIONS(2124), + [anon_sym_to_float] = ACTIONS(2124), + [anon_sym_bash] = ACTIONS(2124), + [anon_sym_fish] = ACTIONS(2124), + [anon_sym_raw] = ACTIONS(2124), + [anon_sym_sh] = ACTIONS(2124), + [anon_sym_zsh] = ACTIONS(2124), + [anon_sym_random] = ACTIONS(2124), + [anon_sym_random_boolean] = ACTIONS(2124), + [anon_sym_random_float] = ACTIONS(2124), + [anon_sym_random_integer] = ACTIONS(2124), + [anon_sym_columns] = ACTIONS(2124), + [anon_sym_rows] = ACTIONS(2124), + [anon_sym_reverse] = ACTIONS(2124), }, [379] = { - [sym_expression] = STATE(1575), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_logic] = STATE(1539), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(379), - [ts_builtin_sym_end] = ACTIONS(2481), - [sym_identifier] = ACTIONS(2483), + [sym_math_operator] = STATE(849), + [sym_logic_operator] = STATE(811), + [ts_builtin_sym_end] = ACTIONS(2034), + [sym_identifier] = ACTIONS(2036), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2486), - [anon_sym_RBRACE] = ACTIONS(2481), - [anon_sym_SEMI] = ACTIONS(2481), - [anon_sym_LPAREN] = ACTIONS(2489), - [anon_sym_RPAREN] = ACTIONS(2481), - [sym_integer] = ACTIONS(2492), - [sym_float] = ACTIONS(2495), - [sym_string] = ACTIONS(2495), - [anon_sym_true] = ACTIONS(2498), - [anon_sym_false] = ACTIONS(2498), - [anon_sym_LBRACK] = ACTIONS(2501), - [anon_sym_COLON] = ACTIONS(2481), - [anon_sym_PLUS] = ACTIONS(2481), - [anon_sym_DASH] = ACTIONS(2504), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_SLASH] = ACTIONS(2481), - [anon_sym_PERCENT] = ACTIONS(2481), - [anon_sym_EQ_EQ] = ACTIONS(2481), - [anon_sym_BANG_EQ] = ACTIONS(2481), - [anon_sym_AMP_AMP] = ACTIONS(2481), - [anon_sym_PIPE_PIPE] = ACTIONS(2481), - [anon_sym_GT] = ACTIONS(2504), - [anon_sym_LT] = ACTIONS(2504), - [anon_sym_GT_EQ] = ACTIONS(2481), - [anon_sym_LT_EQ] = ACTIONS(2481), - [anon_sym_if] = ACTIONS(2504), - [anon_sym_match] = ACTIONS(2504), - [anon_sym_EQ_GT] = ACTIONS(2506), - [anon_sym_while] = ACTIONS(2504), - [anon_sym_for] = ACTIONS(2504), - [anon_sym_asyncfor] = ACTIONS(2481), - [anon_sym_transform] = ACTIONS(2504), - [anon_sym_filter] = ACTIONS(2504), - [anon_sym_find] = ACTIONS(2504), - [anon_sym_remove] = ACTIONS(2504), - [anon_sym_reduce] = ACTIONS(2504), - [anon_sym_select] = ACTIONS(2504), - [anon_sym_insert] = ACTIONS(2504), - [anon_sym_async] = ACTIONS(2504), - [anon_sym_PIPE] = ACTIONS(2509), - [anon_sym_table] = ACTIONS(2512), - [anon_sym_assert] = ACTIONS(2515), - [anon_sym_assert_equal] = ACTIONS(2515), - [anon_sym_download] = ACTIONS(2515), - [anon_sym_help] = ACTIONS(2515), - [anon_sym_length] = ACTIONS(2515), - [anon_sym_output] = ACTIONS(2515), - [anon_sym_output_error] = ACTIONS(2515), - [anon_sym_type] = ACTIONS(2515), - [anon_sym_append] = ACTIONS(2515), - [anon_sym_metadata] = ACTIONS(2515), - [anon_sym_move] = ACTIONS(2515), - [anon_sym_read] = ACTIONS(2515), - [anon_sym_workdir] = ACTIONS(2515), - [anon_sym_write] = ACTIONS(2515), - [anon_sym_from_json] = ACTIONS(2515), - [anon_sym_to_json] = ACTIONS(2515), - [anon_sym_to_string] = ACTIONS(2515), - [anon_sym_to_float] = ACTIONS(2515), - [anon_sym_bash] = ACTIONS(2515), - [anon_sym_fish] = ACTIONS(2515), - [anon_sym_raw] = ACTIONS(2515), - [anon_sym_sh] = ACTIONS(2515), - [anon_sym_zsh] = ACTIONS(2515), - [anon_sym_random] = ACTIONS(2515), - [anon_sym_random_boolean] = ACTIONS(2515), - [anon_sym_random_float] = ACTIONS(2515), - [anon_sym_random_integer] = ACTIONS(2515), - [anon_sym_columns] = ACTIONS(2515), - [anon_sym_rows] = ACTIONS(2515), - [anon_sym_reverse] = ACTIONS(2515), + [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(2127), + [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_COLON] = ACTIONS(69), + [anon_sym_DOT_DOT] = ACTIONS(2034), + [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(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_asyncfor] = ACTIONS(2034), + [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), }, [380] = { - [sym_expression] = STATE(876), - [sym__expression_kind] = STATE(866), - [aux_sym__expression_list] = STATE(369), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(866), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [ts_builtin_sym_end] = ACTIONS(2473), - [sym_identifier] = ACTIONS(2676), + [sym_else_if] = STATE(380), + [aux_sym_if_else_repeat1] = STATE(380), + [ts_builtin_sym_end] = ACTIONS(2019), + [sym_identifier] = ACTIONS(2021), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(2473), - [anon_sym_SEMI] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(2473), - [sym_integer] = ACTIONS(11), - [sym_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(2473), - [anon_sym_PLUS] = ACTIONS(2473), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2473), - [anon_sym_SLASH] = ACTIONS(2473), - [anon_sym_PERCENT] = ACTIONS(2473), - [anon_sym_EQ_EQ] = ACTIONS(2473), - [anon_sym_BANG_EQ] = ACTIONS(2473), - [anon_sym_AMP_AMP] = ACTIONS(2473), - [anon_sym_PIPE_PIPE] = ACTIONS(2473), - [anon_sym_GT] = ACTIONS(2475), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_GT_EQ] = ACTIONS(2473), - [anon_sym_LT_EQ] = ACTIONS(2473), - [anon_sym_if] = ACTIONS(2475), - [anon_sym_match] = ACTIONS(2475), - [anon_sym_EQ_GT] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2475), - [anon_sym_asyncfor] = ACTIONS(2473), - [anon_sym_transform] = ACTIONS(2475), - [anon_sym_filter] = ACTIONS(2475), - [anon_sym_find] = ACTIONS(2475), - [anon_sym_remove] = ACTIONS(2475), - [anon_sym_reduce] = ACTIONS(2475), - [anon_sym_select] = ACTIONS(2475), - [anon_sym_insert] = ACTIONS(2475), - [anon_sym_async] = ACTIONS(2475), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(1228), - [anon_sym_assert] = ACTIONS(1230), - [anon_sym_assert_equal] = ACTIONS(1230), - [anon_sym_download] = ACTIONS(1230), - [anon_sym_help] = ACTIONS(1230), - [anon_sym_length] = ACTIONS(1230), - [anon_sym_output] = ACTIONS(1230), - [anon_sym_output_error] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_append] = ACTIONS(1230), - [anon_sym_metadata] = ACTIONS(1230), - [anon_sym_move] = ACTIONS(1230), - [anon_sym_read] = ACTIONS(1230), - [anon_sym_workdir] = ACTIONS(1230), - [anon_sym_write] = ACTIONS(1230), - [anon_sym_from_json] = ACTIONS(1230), - [anon_sym_to_json] = ACTIONS(1230), - [anon_sym_to_string] = ACTIONS(1230), - [anon_sym_to_float] = ACTIONS(1230), - [anon_sym_bash] = ACTIONS(1230), - [anon_sym_fish] = ACTIONS(1230), - [anon_sym_raw] = ACTIONS(1230), - [anon_sym_sh] = ACTIONS(1230), - [anon_sym_zsh] = ACTIONS(1230), - [anon_sym_random] = ACTIONS(1230), - [anon_sym_random_boolean] = ACTIONS(1230), - [anon_sym_random_float] = ACTIONS(1230), - [anon_sym_random_integer] = ACTIONS(1230), - [anon_sym_columns] = ACTIONS(1230), - [anon_sym_rows] = ACTIONS(1230), - [anon_sym_reverse] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(2019), + [anon_sym_RBRACE] = ACTIONS(2019), + [anon_sym_SEMI] = ACTIONS(2019), + [anon_sym_LPAREN] = ACTIONS(2019), + [anon_sym_RPAREN] = ACTIONS(2019), + [anon_sym_COMMA] = ACTIONS(2019), + [sym_integer] = ACTIONS(2021), + [sym_float] = ACTIONS(2019), + [sym_string] = ACTIONS(2019), + [anon_sym_true] = ACTIONS(2021), + [anon_sym_false] = ACTIONS(2021), + [anon_sym_LBRACK] = ACTIONS(2019), + [anon_sym_RBRACK] = ACTIONS(2019), + [anon_sym_COLON] = ACTIONS(2019), + [anon_sym_PLUS] = ACTIONS(2019), + [anon_sym_DASH] = ACTIONS(2021), + [anon_sym_STAR] = ACTIONS(2019), + [anon_sym_SLASH] = ACTIONS(2019), + [anon_sym_PERCENT] = ACTIONS(2019), + [anon_sym_EQ_EQ] = ACTIONS(2019), + [anon_sym_BANG_EQ] = ACTIONS(2019), + [anon_sym_AMP_AMP] = ACTIONS(2019), + [anon_sym_PIPE_PIPE] = ACTIONS(2019), + [anon_sym_GT] = ACTIONS(2021), + [anon_sym_LT] = ACTIONS(2021), + [anon_sym_GT_EQ] = ACTIONS(2019), + [anon_sym_LT_EQ] = ACTIONS(2019), + [anon_sym_if] = ACTIONS(2021), + [anon_sym_elseif] = ACTIONS(2129), + [anon_sym_else] = ACTIONS(2021), + [anon_sym_match] = ACTIONS(2021), + [anon_sym_EQ_GT] = ACTIONS(2019), + [anon_sym_while] = ACTIONS(2021), + [anon_sym_for] = ACTIONS(2021), + [anon_sym_asyncfor] = ACTIONS(2019), + [anon_sym_transform] = ACTIONS(2021), + [anon_sym_filter] = ACTIONS(2021), + [anon_sym_find] = ACTIONS(2021), + [anon_sym_remove] = ACTIONS(2021), + [anon_sym_reduce] = ACTIONS(2021), + [anon_sym_select] = ACTIONS(2021), + [anon_sym_insert] = ACTIONS(2021), + [anon_sym_async] = ACTIONS(2021), + [anon_sym_PIPE] = ACTIONS(2021), + [anon_sym_table] = ACTIONS(2021), + [anon_sym_assert] = ACTIONS(2021), + [anon_sym_assert_equal] = ACTIONS(2021), + [anon_sym_download] = ACTIONS(2021), + [anon_sym_help] = ACTIONS(2021), + [anon_sym_length] = ACTIONS(2021), + [anon_sym_output] = ACTIONS(2021), + [anon_sym_output_error] = ACTIONS(2021), + [anon_sym_type] = ACTIONS(2021), + [anon_sym_append] = ACTIONS(2021), + [anon_sym_metadata] = ACTIONS(2021), + [anon_sym_move] = ACTIONS(2021), + [anon_sym_read] = ACTIONS(2021), + [anon_sym_workdir] = ACTIONS(2021), + [anon_sym_write] = ACTIONS(2021), + [anon_sym_from_json] = ACTIONS(2021), + [anon_sym_to_json] = ACTIONS(2021), + [anon_sym_to_string] = ACTIONS(2021), + [anon_sym_to_float] = ACTIONS(2021), + [anon_sym_bash] = ACTIONS(2021), + [anon_sym_fish] = ACTIONS(2021), + [anon_sym_raw] = ACTIONS(2021), + [anon_sym_sh] = ACTIONS(2021), + [anon_sym_zsh] = ACTIONS(2021), + [anon_sym_random] = ACTIONS(2021), + [anon_sym_random_boolean] = ACTIONS(2021), + [anon_sym_random_float] = ACTIONS(2021), + [anon_sym_random_integer] = ACTIONS(2021), + [anon_sym_columns] = ACTIONS(2021), + [anon_sym_rows] = ACTIONS(2021), + [anon_sym_reverse] = ACTIONS(2021), }, [381] = { - [sym_statement] = STATE(376), - [sym_expression] = STATE(925), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(867), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(980), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(376), - [ts_builtin_sym_end] = ACTIONS(419), - [sym_identifier] = ACTIONS(3002), + [sym_math_operator] = STATE(908), + [sym_logic_operator] = STATE(909), + [ts_builtin_sym_end] = ACTIONS(2063), + [sym_identifier] = ACTIONS(2065), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1783), - [anon_sym_RBRACE] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(1786), - [sym_integer] = ACTIONS(1789), - [sym_float] = ACTIONS(1792), - [sym_string] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1795), - [anon_sym_false] = ACTIONS(1795), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_if] = ACTIONS(2725), - [anon_sym_match] = ACTIONS(3005), - [anon_sym_EQ_GT] = ACTIONS(2391), - [anon_sym_while] = ACTIONS(3008), - [anon_sym_for] = ACTIONS(3011), - [anon_sym_asyncfor] = ACTIONS(3014), - [anon_sym_transform] = ACTIONS(3017), - [anon_sym_filter] = ACTIONS(3020), - [anon_sym_find] = ACTIONS(3023), - [anon_sym_remove] = ACTIONS(3026), - [anon_sym_reduce] = ACTIONS(3029), - [anon_sym_select] = ACTIONS(3032), - [anon_sym_insert] = ACTIONS(2421), - [anon_sym_async] = ACTIONS(3035), - [anon_sym_PIPE] = ACTIONS(2761), - [anon_sym_table] = ACTIONS(2427), - [anon_sym_assert] = ACTIONS(2430), - [anon_sym_assert_equal] = ACTIONS(2430), - [anon_sym_download] = ACTIONS(2430), - [anon_sym_help] = ACTIONS(2430), - [anon_sym_length] = ACTIONS(2430), - [anon_sym_output] = ACTIONS(2430), - [anon_sym_output_error] = ACTIONS(2430), - [anon_sym_type] = ACTIONS(2430), - [anon_sym_append] = ACTIONS(2430), - [anon_sym_metadata] = ACTIONS(2430), - [anon_sym_move] = ACTIONS(2430), - [anon_sym_read] = ACTIONS(2430), - [anon_sym_workdir] = ACTIONS(2430), - [anon_sym_write] = ACTIONS(2430), - [anon_sym_from_json] = ACTIONS(2430), - [anon_sym_to_json] = ACTIONS(2430), - [anon_sym_to_string] = ACTIONS(2430), - [anon_sym_to_float] = ACTIONS(2430), - [anon_sym_bash] = ACTIONS(2430), - [anon_sym_fish] = ACTIONS(2430), - [anon_sym_raw] = ACTIONS(2430), - [anon_sym_sh] = ACTIONS(2430), - [anon_sym_zsh] = ACTIONS(2430), - [anon_sym_random] = ACTIONS(2430), - [anon_sym_random_boolean] = ACTIONS(2430), - [anon_sym_random_float] = ACTIONS(2430), - [anon_sym_random_integer] = ACTIONS(2430), - [anon_sym_columns] = ACTIONS(2430), - [anon_sym_rows] = ACTIONS(2430), - [anon_sym_reverse] = ACTIONS(2430), + [anon_sym_LBRACE] = ACTIONS(2063), + [anon_sym_RBRACE] = ACTIONS(2063), + [anon_sym_SEMI] = ACTIONS(2063), + [anon_sym_LPAREN] = ACTIONS(2063), + [anon_sym_RPAREN] = ACTIONS(2063), + [anon_sym_COMMA] = ACTIONS(2063), + [sym_integer] = ACTIONS(2065), + [sym_float] = ACTIONS(2063), + [sym_string] = ACTIONS(2063), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_LBRACK] = ACTIONS(2063), + [anon_sym_RBRACK] = ACTIONS(2063), + [anon_sym_COLON] = ACTIONS(2063), + [anon_sym_DOT_DOT] = ACTIONS(2063), + [anon_sym_PLUS] = ACTIONS(2063), + [anon_sym_DASH] = ACTIONS(2065), + [anon_sym_STAR] = ACTIONS(2063), + [anon_sym_SLASH] = ACTIONS(2063), + [anon_sym_PERCENT] = ACTIONS(2063), + [anon_sym_EQ_EQ] = ACTIONS(2063), + [anon_sym_BANG_EQ] = ACTIONS(2063), + [anon_sym_AMP_AMP] = ACTIONS(2063), + [anon_sym_PIPE_PIPE] = ACTIONS(2063), + [anon_sym_GT] = ACTIONS(2065), + [anon_sym_LT] = ACTIONS(2065), + [anon_sym_GT_EQ] = ACTIONS(2063), + [anon_sym_LT_EQ] = ACTIONS(2063), + [anon_sym_if] = ACTIONS(2065), + [anon_sym_match] = ACTIONS(2065), + [anon_sym_EQ_GT] = ACTIONS(2063), + [anon_sym_while] = ACTIONS(2065), + [anon_sym_for] = ACTIONS(2065), + [anon_sym_asyncfor] = ACTIONS(2063), + [anon_sym_transform] = ACTIONS(2065), + [anon_sym_filter] = ACTIONS(2065), + [anon_sym_find] = ACTIONS(2065), + [anon_sym_remove] = ACTIONS(2065), + [anon_sym_reduce] = ACTIONS(2065), + [anon_sym_select] = ACTIONS(2065), + [anon_sym_insert] = ACTIONS(2065), + [anon_sym_async] = ACTIONS(2065), + [anon_sym_PIPE] = ACTIONS(2065), + [anon_sym_table] = ACTIONS(2065), + [anon_sym_assert] = ACTIONS(2065), + [anon_sym_assert_equal] = ACTIONS(2065), + [anon_sym_download] = ACTIONS(2065), + [anon_sym_help] = ACTIONS(2065), + [anon_sym_length] = ACTIONS(2065), + [anon_sym_output] = ACTIONS(2065), + [anon_sym_output_error] = ACTIONS(2065), + [anon_sym_type] = ACTIONS(2065), + [anon_sym_append] = ACTIONS(2065), + [anon_sym_metadata] = ACTIONS(2065), + [anon_sym_move] = ACTIONS(2065), + [anon_sym_read] = ACTIONS(2065), + [anon_sym_workdir] = ACTIONS(2065), + [anon_sym_write] = ACTIONS(2065), + [anon_sym_from_json] = ACTIONS(2065), + [anon_sym_to_json] = ACTIONS(2065), + [anon_sym_to_string] = ACTIONS(2065), + [anon_sym_to_float] = ACTIONS(2065), + [anon_sym_bash] = ACTIONS(2065), + [anon_sym_fish] = ACTIONS(2065), + [anon_sym_raw] = ACTIONS(2065), + [anon_sym_sh] = ACTIONS(2065), + [anon_sym_zsh] = ACTIONS(2065), + [anon_sym_random] = ACTIONS(2065), + [anon_sym_random_boolean] = ACTIONS(2065), + [anon_sym_random_float] = ACTIONS(2065), + [anon_sym_random_integer] = ACTIONS(2065), + [anon_sym_columns] = ACTIONS(2065), + [anon_sym_rows] = ACTIONS(2065), + [anon_sym_reverse] = ACTIONS(2065), }, [382] = { - [sym_statement] = STATE(374), - [sym_expression] = STATE(934), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(842), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(983), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [aux_sym_block_repeat1] = STATE(374), - [sym_identifier] = ACTIONS(2851), + [ts_builtin_sym_end] = ACTIONS(2132), + [sym_identifier] = ACTIONS(2134), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1783), - [anon_sym_RBRACE] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(419), - [sym_integer] = ACTIONS(1789), - [sym_float] = ACTIONS(1792), - [sym_string] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1795), - [anon_sym_false] = ACTIONS(1795), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_if] = ACTIONS(2776), - [anon_sym_match] = ACTIONS(3038), - [anon_sym_EQ_GT] = ACTIONS(2021), - [anon_sym_while] = ACTIONS(3041), - [anon_sym_for] = ACTIONS(3044), - [anon_sym_asyncfor] = ACTIONS(3047), - [anon_sym_transform] = ACTIONS(3050), - [anon_sym_filter] = ACTIONS(3053), - [anon_sym_find] = ACTIONS(3056), - [anon_sym_remove] = ACTIONS(3059), - [anon_sym_reduce] = ACTIONS(3062), - [anon_sym_select] = ACTIONS(3065), - [anon_sym_insert] = ACTIONS(2051), - [anon_sym_async] = ACTIONS(3068), - [anon_sym_PIPE] = ACTIONS(2761), - [anon_sym_table] = ACTIONS(2057), - [anon_sym_assert] = ACTIONS(2060), - [anon_sym_assert_equal] = ACTIONS(2060), - [anon_sym_download] = ACTIONS(2060), - [anon_sym_help] = ACTIONS(2060), - [anon_sym_length] = ACTIONS(2060), - [anon_sym_output] = ACTIONS(2060), - [anon_sym_output_error] = ACTIONS(2060), - [anon_sym_type] = ACTIONS(2060), - [anon_sym_append] = ACTIONS(2060), - [anon_sym_metadata] = ACTIONS(2060), - [anon_sym_move] = ACTIONS(2060), - [anon_sym_read] = ACTIONS(2060), - [anon_sym_workdir] = ACTIONS(2060), - [anon_sym_write] = ACTIONS(2060), - [anon_sym_from_json] = ACTIONS(2060), - [anon_sym_to_json] = ACTIONS(2060), - [anon_sym_to_string] = ACTIONS(2060), - [anon_sym_to_float] = ACTIONS(2060), - [anon_sym_bash] = ACTIONS(2060), - [anon_sym_fish] = ACTIONS(2060), - [anon_sym_raw] = ACTIONS(2060), - [anon_sym_sh] = ACTIONS(2060), - [anon_sym_zsh] = ACTIONS(2060), - [anon_sym_random] = ACTIONS(2060), - [anon_sym_random_boolean] = ACTIONS(2060), - [anon_sym_random_float] = ACTIONS(2060), - [anon_sym_random_integer] = ACTIONS(2060), - [anon_sym_columns] = ACTIONS(2060), - [anon_sym_rows] = ACTIONS(2060), - [anon_sym_reverse] = ACTIONS(2060), + [anon_sym_LBRACE] = ACTIONS(2132), + [anon_sym_RBRACE] = ACTIONS(2132), + [anon_sym_SEMI] = ACTIONS(2132), + [anon_sym_LPAREN] = ACTIONS(2132), + [anon_sym_RPAREN] = ACTIONS(2132), + [anon_sym_COMMA] = ACTIONS(2132), + [sym_integer] = ACTIONS(2134), + [sym_float] = ACTIONS(2132), + [sym_string] = ACTIONS(2132), + [anon_sym_true] = ACTIONS(2134), + [anon_sym_false] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2132), + [anon_sym_RBRACK] = ACTIONS(2132), + [anon_sym_COLON] = ACTIONS(2132), + [anon_sym_DOT_DOT] = ACTIONS(2132), + [anon_sym_PLUS] = ACTIONS(2132), + [anon_sym_DASH] = ACTIONS(2134), + [anon_sym_STAR] = ACTIONS(2132), + [anon_sym_SLASH] = ACTIONS(2132), + [anon_sym_PERCENT] = ACTIONS(2132), + [anon_sym_EQ_EQ] = ACTIONS(2132), + [anon_sym_BANG_EQ] = ACTIONS(2132), + [anon_sym_AMP_AMP] = ACTIONS(2132), + [anon_sym_PIPE_PIPE] = ACTIONS(2132), + [anon_sym_GT] = ACTIONS(2134), + [anon_sym_LT] = ACTIONS(2134), + [anon_sym_GT_EQ] = ACTIONS(2132), + [anon_sym_LT_EQ] = ACTIONS(2132), + [anon_sym_if] = ACTIONS(2134), + [anon_sym_elseif] = ACTIONS(2132), + [anon_sym_else] = ACTIONS(2134), + [anon_sym_match] = ACTIONS(2134), + [anon_sym_EQ_GT] = ACTIONS(2132), + [anon_sym_while] = ACTIONS(2134), + [anon_sym_for] = ACTIONS(2134), + [anon_sym_asyncfor] = ACTIONS(2132), + [anon_sym_transform] = ACTIONS(2134), + [anon_sym_filter] = ACTIONS(2134), + [anon_sym_find] = ACTIONS(2134), + [anon_sym_remove] = ACTIONS(2134), + [anon_sym_reduce] = ACTIONS(2134), + [anon_sym_select] = ACTIONS(2134), + [anon_sym_insert] = ACTIONS(2134), + [anon_sym_async] = ACTIONS(2134), + [anon_sym_PIPE] = ACTIONS(2134), + [anon_sym_table] = ACTIONS(2134), + [anon_sym_assert] = ACTIONS(2134), + [anon_sym_assert_equal] = ACTIONS(2134), + [anon_sym_download] = ACTIONS(2134), + [anon_sym_help] = ACTIONS(2134), + [anon_sym_length] = ACTIONS(2134), + [anon_sym_output] = ACTIONS(2134), + [anon_sym_output_error] = ACTIONS(2134), + [anon_sym_type] = ACTIONS(2134), + [anon_sym_append] = ACTIONS(2134), + [anon_sym_metadata] = ACTIONS(2134), + [anon_sym_move] = ACTIONS(2134), + [anon_sym_read] = ACTIONS(2134), + [anon_sym_workdir] = ACTIONS(2134), + [anon_sym_write] = ACTIONS(2134), + [anon_sym_from_json] = ACTIONS(2134), + [anon_sym_to_json] = ACTIONS(2134), + [anon_sym_to_string] = ACTIONS(2134), + [anon_sym_to_float] = ACTIONS(2134), + [anon_sym_bash] = ACTIONS(2134), + [anon_sym_fish] = ACTIONS(2134), + [anon_sym_raw] = ACTIONS(2134), + [anon_sym_sh] = ACTIONS(2134), + [anon_sym_zsh] = ACTIONS(2134), + [anon_sym_random] = ACTIONS(2134), + [anon_sym_random_boolean] = ACTIONS(2134), + [anon_sym_random_float] = ACTIONS(2134), + [anon_sym_random_integer] = ACTIONS(2134), + [anon_sym_columns] = ACTIONS(2134), + [anon_sym_rows] = ACTIONS(2134), + [anon_sym_reverse] = ACTIONS(2134), }, [383] = { - [sym_statement] = STATE(459), - [sym_expression] = STATE(925), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(867), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(980), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(459), - [aux_sym_map_repeat1] = STATE(1677), - [sym_identifier] = ACTIONS(3071), + [ts_builtin_sym_end] = ACTIONS(2136), + [sym_identifier] = ACTIONS(2138), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(3073), - [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_asyncfor] = 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_async] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(49), - [anon_sym_assert] = ACTIONS(51), - [anon_sym_assert_equal] = ACTIONS(51), - [anon_sym_download] = ACTIONS(51), - [anon_sym_help] = ACTIONS(51), - [anon_sym_length] = ACTIONS(51), - [anon_sym_output] = ACTIONS(51), - [anon_sym_output_error] = ACTIONS(51), - [anon_sym_type] = ACTIONS(51), - [anon_sym_append] = ACTIONS(51), - [anon_sym_metadata] = ACTIONS(51), - [anon_sym_move] = ACTIONS(51), - [anon_sym_read] = ACTIONS(51), - [anon_sym_workdir] = ACTIONS(51), - [anon_sym_write] = ACTIONS(51), - [anon_sym_from_json] = ACTIONS(51), - [anon_sym_to_json] = ACTIONS(51), - [anon_sym_to_string] = ACTIONS(51), - [anon_sym_to_float] = ACTIONS(51), - [anon_sym_bash] = ACTIONS(51), - [anon_sym_fish] = ACTIONS(51), - [anon_sym_raw] = ACTIONS(51), - [anon_sym_sh] = ACTIONS(51), - [anon_sym_zsh] = ACTIONS(51), - [anon_sym_random] = ACTIONS(51), - [anon_sym_random_boolean] = ACTIONS(51), - [anon_sym_random_float] = ACTIONS(51), - [anon_sym_random_integer] = ACTIONS(51), - [anon_sym_columns] = ACTIONS(51), - [anon_sym_rows] = ACTIONS(51), - [anon_sym_reverse] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(2136), + [anon_sym_RBRACE] = ACTIONS(2136), + [anon_sym_SEMI] = ACTIONS(2136), + [anon_sym_LPAREN] = ACTIONS(2136), + [anon_sym_RPAREN] = ACTIONS(2136), + [anon_sym_COMMA] = ACTIONS(2136), + [sym_integer] = ACTIONS(2138), + [sym_float] = ACTIONS(2136), + [sym_string] = ACTIONS(2136), + [anon_sym_true] = ACTIONS(2138), + [anon_sym_false] = ACTIONS(2138), + [anon_sym_LBRACK] = ACTIONS(2136), + [anon_sym_RBRACK] = ACTIONS(2136), + [anon_sym_COLON] = ACTIONS(2136), + [anon_sym_DOT_DOT] = ACTIONS(2136), + [anon_sym_PLUS] = ACTIONS(2136), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(2136), + [anon_sym_SLASH] = ACTIONS(2136), + [anon_sym_PERCENT] = ACTIONS(2136), + [anon_sym_EQ_EQ] = ACTIONS(2136), + [anon_sym_BANG_EQ] = ACTIONS(2136), + [anon_sym_AMP_AMP] = ACTIONS(2136), + [anon_sym_PIPE_PIPE] = ACTIONS(2136), + [anon_sym_GT] = ACTIONS(2138), + [anon_sym_LT] = ACTIONS(2138), + [anon_sym_GT_EQ] = ACTIONS(2136), + [anon_sym_LT_EQ] = ACTIONS(2136), + [anon_sym_if] = ACTIONS(2138), + [anon_sym_elseif] = ACTIONS(2136), + [anon_sym_else] = ACTIONS(2138), + [anon_sym_match] = ACTIONS(2138), + [anon_sym_EQ_GT] = ACTIONS(2136), + [anon_sym_while] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2138), + [anon_sym_asyncfor] = ACTIONS(2136), + [anon_sym_transform] = ACTIONS(2138), + [anon_sym_filter] = ACTIONS(2138), + [anon_sym_find] = ACTIONS(2138), + [anon_sym_remove] = ACTIONS(2138), + [anon_sym_reduce] = ACTIONS(2138), + [anon_sym_select] = ACTIONS(2138), + [anon_sym_insert] = ACTIONS(2138), + [anon_sym_async] = ACTIONS(2138), + [anon_sym_PIPE] = ACTIONS(2138), + [anon_sym_table] = ACTIONS(2138), + [anon_sym_assert] = ACTIONS(2138), + [anon_sym_assert_equal] = ACTIONS(2138), + [anon_sym_download] = ACTIONS(2138), + [anon_sym_help] = ACTIONS(2138), + [anon_sym_length] = ACTIONS(2138), + [anon_sym_output] = ACTIONS(2138), + [anon_sym_output_error] = ACTIONS(2138), + [anon_sym_type] = ACTIONS(2138), + [anon_sym_append] = ACTIONS(2138), + [anon_sym_metadata] = ACTIONS(2138), + [anon_sym_move] = ACTIONS(2138), + [anon_sym_read] = ACTIONS(2138), + [anon_sym_workdir] = ACTIONS(2138), + [anon_sym_write] = ACTIONS(2138), + [anon_sym_from_json] = ACTIONS(2138), + [anon_sym_to_json] = ACTIONS(2138), + [anon_sym_to_string] = ACTIONS(2138), + [anon_sym_to_float] = ACTIONS(2138), + [anon_sym_bash] = ACTIONS(2138), + [anon_sym_fish] = ACTIONS(2138), + [anon_sym_raw] = ACTIONS(2138), + [anon_sym_sh] = ACTIONS(2138), + [anon_sym_zsh] = ACTIONS(2138), + [anon_sym_random] = ACTIONS(2138), + [anon_sym_random_boolean] = ACTIONS(2138), + [anon_sym_random_float] = ACTIONS(2138), + [anon_sym_random_integer] = ACTIONS(2138), + [anon_sym_columns] = ACTIONS(2138), + [anon_sym_rows] = ACTIONS(2138), + [anon_sym_reverse] = ACTIONS(2138), }, [384] = { - [sym_statement] = STATE(400), - [sym_expression] = STATE(925), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(867), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(980), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(400), - [aux_sym_map_repeat1] = STATE(1677), - [sym_identifier] = ACTIONS(3071), + [ts_builtin_sym_end] = ACTIONS(2140), + [sym_identifier] = ACTIONS(2142), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(3073), - [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_asyncfor] = 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_async] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(49), - [anon_sym_assert] = ACTIONS(51), - [anon_sym_assert_equal] = ACTIONS(51), - [anon_sym_download] = ACTIONS(51), - [anon_sym_help] = ACTIONS(51), - [anon_sym_length] = ACTIONS(51), - [anon_sym_output] = ACTIONS(51), - [anon_sym_output_error] = ACTIONS(51), - [anon_sym_type] = ACTIONS(51), - [anon_sym_append] = ACTIONS(51), - [anon_sym_metadata] = ACTIONS(51), - [anon_sym_move] = ACTIONS(51), - [anon_sym_read] = ACTIONS(51), - [anon_sym_workdir] = ACTIONS(51), - [anon_sym_write] = ACTIONS(51), - [anon_sym_from_json] = ACTIONS(51), - [anon_sym_to_json] = ACTIONS(51), - [anon_sym_to_string] = ACTIONS(51), - [anon_sym_to_float] = ACTIONS(51), - [anon_sym_bash] = ACTIONS(51), - [anon_sym_fish] = ACTIONS(51), - [anon_sym_raw] = ACTIONS(51), - [anon_sym_sh] = ACTIONS(51), - [anon_sym_zsh] = ACTIONS(51), - [anon_sym_random] = ACTIONS(51), - [anon_sym_random_boolean] = ACTIONS(51), - [anon_sym_random_float] = ACTIONS(51), - [anon_sym_random_integer] = ACTIONS(51), - [anon_sym_columns] = ACTIONS(51), - [anon_sym_rows] = ACTIONS(51), - [anon_sym_reverse] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(2140), + [anon_sym_RBRACE] = ACTIONS(2140), + [anon_sym_SEMI] = ACTIONS(2140), + [anon_sym_LPAREN] = ACTIONS(2140), + [anon_sym_RPAREN] = ACTIONS(2140), + [anon_sym_COMMA] = ACTIONS(2140), + [sym_integer] = ACTIONS(2142), + [sym_float] = ACTIONS(2140), + [sym_string] = ACTIONS(2140), + [anon_sym_true] = ACTIONS(2142), + [anon_sym_false] = ACTIONS(2142), + [anon_sym_LBRACK] = ACTIONS(2140), + [anon_sym_RBRACK] = ACTIONS(2140), + [anon_sym_COLON] = ACTIONS(2140), + [anon_sym_DOT_DOT] = ACTIONS(2140), + [anon_sym_PLUS] = ACTIONS(2140), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_STAR] = ACTIONS(2140), + [anon_sym_SLASH] = ACTIONS(2140), + [anon_sym_PERCENT] = ACTIONS(2140), + [anon_sym_EQ_EQ] = ACTIONS(2140), + [anon_sym_BANG_EQ] = ACTIONS(2140), + [anon_sym_AMP_AMP] = ACTIONS(2140), + [anon_sym_PIPE_PIPE] = ACTIONS(2140), + [anon_sym_GT] = ACTIONS(2142), + [anon_sym_LT] = ACTIONS(2142), + [anon_sym_GT_EQ] = ACTIONS(2140), + [anon_sym_LT_EQ] = ACTIONS(2140), + [anon_sym_if] = ACTIONS(2142), + [anon_sym_elseif] = ACTIONS(2140), + [anon_sym_else] = ACTIONS(2142), + [anon_sym_match] = ACTIONS(2142), + [anon_sym_EQ_GT] = ACTIONS(2140), + [anon_sym_while] = ACTIONS(2142), + [anon_sym_for] = ACTIONS(2142), + [anon_sym_asyncfor] = ACTIONS(2140), + [anon_sym_transform] = ACTIONS(2142), + [anon_sym_filter] = ACTIONS(2142), + [anon_sym_find] = ACTIONS(2142), + [anon_sym_remove] = ACTIONS(2142), + [anon_sym_reduce] = ACTIONS(2142), + [anon_sym_select] = ACTIONS(2142), + [anon_sym_insert] = ACTIONS(2142), + [anon_sym_async] = ACTIONS(2142), + [anon_sym_PIPE] = ACTIONS(2142), + [anon_sym_table] = ACTIONS(2142), + [anon_sym_assert] = ACTIONS(2142), + [anon_sym_assert_equal] = ACTIONS(2142), + [anon_sym_download] = ACTIONS(2142), + [anon_sym_help] = ACTIONS(2142), + [anon_sym_length] = ACTIONS(2142), + [anon_sym_output] = ACTIONS(2142), + [anon_sym_output_error] = ACTIONS(2142), + [anon_sym_type] = ACTIONS(2142), + [anon_sym_append] = ACTIONS(2142), + [anon_sym_metadata] = ACTIONS(2142), + [anon_sym_move] = ACTIONS(2142), + [anon_sym_read] = ACTIONS(2142), + [anon_sym_workdir] = ACTIONS(2142), + [anon_sym_write] = ACTIONS(2142), + [anon_sym_from_json] = ACTIONS(2142), + [anon_sym_to_json] = ACTIONS(2142), + [anon_sym_to_string] = ACTIONS(2142), + [anon_sym_to_float] = ACTIONS(2142), + [anon_sym_bash] = ACTIONS(2142), + [anon_sym_fish] = ACTIONS(2142), + [anon_sym_raw] = ACTIONS(2142), + [anon_sym_sh] = ACTIONS(2142), + [anon_sym_zsh] = ACTIONS(2142), + [anon_sym_random] = ACTIONS(2142), + [anon_sym_random_boolean] = ACTIONS(2142), + [anon_sym_random_float] = ACTIONS(2142), + [anon_sym_random_integer] = ACTIONS(2142), + [anon_sym_columns] = ACTIONS(2142), + [anon_sym_rows] = ACTIONS(2142), + [anon_sym_reverse] = ACTIONS(2142), }, [385] = { - [sym_statement] = STATE(493), - [sym_expression] = STATE(925), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(867), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(980), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(493), - [aux_sym_map_repeat1] = STATE(1677), - [sym_identifier] = ACTIONS(3071), + [ts_builtin_sym_end] = ACTIONS(2144), + [sym_identifier] = ACTIONS(2146), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(3073), - [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_asyncfor] = 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_async] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(49), - [anon_sym_assert] = ACTIONS(51), - [anon_sym_assert_equal] = ACTIONS(51), - [anon_sym_download] = ACTIONS(51), - [anon_sym_help] = ACTIONS(51), - [anon_sym_length] = ACTIONS(51), - [anon_sym_output] = ACTIONS(51), - [anon_sym_output_error] = ACTIONS(51), - [anon_sym_type] = ACTIONS(51), - [anon_sym_append] = ACTIONS(51), - [anon_sym_metadata] = ACTIONS(51), - [anon_sym_move] = ACTIONS(51), - [anon_sym_read] = ACTIONS(51), - [anon_sym_workdir] = ACTIONS(51), - [anon_sym_write] = ACTIONS(51), - [anon_sym_from_json] = ACTIONS(51), - [anon_sym_to_json] = ACTIONS(51), - [anon_sym_to_string] = ACTIONS(51), - [anon_sym_to_float] = ACTIONS(51), - [anon_sym_bash] = ACTIONS(51), - [anon_sym_fish] = ACTIONS(51), - [anon_sym_raw] = ACTIONS(51), - [anon_sym_sh] = ACTIONS(51), - [anon_sym_zsh] = ACTIONS(51), - [anon_sym_random] = ACTIONS(51), - [anon_sym_random_boolean] = ACTIONS(51), - [anon_sym_random_float] = ACTIONS(51), - [anon_sym_random_integer] = ACTIONS(51), - [anon_sym_columns] = ACTIONS(51), - [anon_sym_rows] = ACTIONS(51), - [anon_sym_reverse] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(2144), + [anon_sym_RBRACE] = ACTIONS(2144), + [anon_sym_SEMI] = ACTIONS(2144), + [anon_sym_LPAREN] = ACTIONS(2144), + [anon_sym_RPAREN] = ACTIONS(2144), + [anon_sym_COMMA] = ACTIONS(2144), + [sym_integer] = ACTIONS(2146), + [sym_float] = ACTIONS(2144), + [sym_string] = ACTIONS(2144), + [anon_sym_true] = ACTIONS(2146), + [anon_sym_false] = ACTIONS(2146), + [anon_sym_LBRACK] = ACTIONS(2144), + [anon_sym_RBRACK] = ACTIONS(2144), + [anon_sym_COLON] = ACTIONS(2144), + [anon_sym_DOT_DOT] = ACTIONS(2144), + [anon_sym_PLUS] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2146), + [anon_sym_STAR] = ACTIONS(2144), + [anon_sym_SLASH] = ACTIONS(2144), + [anon_sym_PERCENT] = ACTIONS(2144), + [anon_sym_EQ_EQ] = ACTIONS(2144), + [anon_sym_BANG_EQ] = ACTIONS(2144), + [anon_sym_AMP_AMP] = ACTIONS(2144), + [anon_sym_PIPE_PIPE] = ACTIONS(2144), + [anon_sym_GT] = ACTIONS(2146), + [anon_sym_LT] = ACTIONS(2146), + [anon_sym_GT_EQ] = ACTIONS(2144), + [anon_sym_LT_EQ] = ACTIONS(2144), + [anon_sym_if] = ACTIONS(2146), + [anon_sym_elseif] = ACTIONS(2144), + [anon_sym_else] = ACTIONS(2146), + [anon_sym_match] = ACTIONS(2146), + [anon_sym_EQ_GT] = ACTIONS(2144), + [anon_sym_while] = ACTIONS(2146), + [anon_sym_for] = ACTIONS(2146), + [anon_sym_asyncfor] = ACTIONS(2144), + [anon_sym_transform] = ACTIONS(2146), + [anon_sym_filter] = ACTIONS(2146), + [anon_sym_find] = ACTIONS(2146), + [anon_sym_remove] = ACTIONS(2146), + [anon_sym_reduce] = ACTIONS(2146), + [anon_sym_select] = ACTIONS(2146), + [anon_sym_insert] = ACTIONS(2146), + [anon_sym_async] = ACTIONS(2146), + [anon_sym_PIPE] = ACTIONS(2146), + [anon_sym_table] = ACTIONS(2146), + [anon_sym_assert] = ACTIONS(2146), + [anon_sym_assert_equal] = ACTIONS(2146), + [anon_sym_download] = ACTIONS(2146), + [anon_sym_help] = ACTIONS(2146), + [anon_sym_length] = ACTIONS(2146), + [anon_sym_output] = ACTIONS(2146), + [anon_sym_output_error] = ACTIONS(2146), + [anon_sym_type] = ACTIONS(2146), + [anon_sym_append] = ACTIONS(2146), + [anon_sym_metadata] = ACTIONS(2146), + [anon_sym_move] = ACTIONS(2146), + [anon_sym_read] = ACTIONS(2146), + [anon_sym_workdir] = ACTIONS(2146), + [anon_sym_write] = ACTIONS(2146), + [anon_sym_from_json] = ACTIONS(2146), + [anon_sym_to_json] = ACTIONS(2146), + [anon_sym_to_string] = ACTIONS(2146), + [anon_sym_to_float] = ACTIONS(2146), + [anon_sym_bash] = ACTIONS(2146), + [anon_sym_fish] = ACTIONS(2146), + [anon_sym_raw] = ACTIONS(2146), + [anon_sym_sh] = ACTIONS(2146), + [anon_sym_zsh] = ACTIONS(2146), + [anon_sym_random] = ACTIONS(2146), + [anon_sym_random_boolean] = ACTIONS(2146), + [anon_sym_random_float] = ACTIONS(2146), + [anon_sym_random_integer] = ACTIONS(2146), + [anon_sym_columns] = ACTIONS(2146), + [anon_sym_rows] = ACTIONS(2146), + [anon_sym_reverse] = ACTIONS(2146), }, [386] = { - [sym_statement] = STATE(472), - [sym_expression] = STATE(925), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(867), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(980), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(472), - [aux_sym_map_repeat1] = STATE(1675), - [sym_identifier] = ACTIONS(3071), + [ts_builtin_sym_end] = ACTIONS(2148), + [sym_identifier] = ACTIONS(2150), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(3075), - [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_asyncfor] = 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_async] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(49), - [anon_sym_assert] = ACTIONS(51), - [anon_sym_assert_equal] = ACTIONS(51), - [anon_sym_download] = ACTIONS(51), - [anon_sym_help] = ACTIONS(51), - [anon_sym_length] = ACTIONS(51), - [anon_sym_output] = ACTIONS(51), - [anon_sym_output_error] = ACTIONS(51), - [anon_sym_type] = ACTIONS(51), - [anon_sym_append] = ACTIONS(51), - [anon_sym_metadata] = ACTIONS(51), - [anon_sym_move] = ACTIONS(51), - [anon_sym_read] = ACTIONS(51), - [anon_sym_workdir] = ACTIONS(51), - [anon_sym_write] = ACTIONS(51), - [anon_sym_from_json] = ACTIONS(51), - [anon_sym_to_json] = ACTIONS(51), - [anon_sym_to_string] = ACTIONS(51), - [anon_sym_to_float] = ACTIONS(51), - [anon_sym_bash] = ACTIONS(51), - [anon_sym_fish] = ACTIONS(51), - [anon_sym_raw] = ACTIONS(51), - [anon_sym_sh] = ACTIONS(51), - [anon_sym_zsh] = ACTIONS(51), - [anon_sym_random] = ACTIONS(51), - [anon_sym_random_boolean] = ACTIONS(51), - [anon_sym_random_float] = ACTIONS(51), - [anon_sym_random_integer] = ACTIONS(51), - [anon_sym_columns] = ACTIONS(51), - [anon_sym_rows] = ACTIONS(51), - [anon_sym_reverse] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(2148), + [anon_sym_RBRACE] = ACTIONS(2148), + [anon_sym_SEMI] = ACTIONS(2148), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_RPAREN] = ACTIONS(2148), + [anon_sym_COMMA] = ACTIONS(2148), + [sym_integer] = ACTIONS(2150), + [sym_float] = ACTIONS(2148), + [sym_string] = ACTIONS(2148), + [anon_sym_true] = ACTIONS(2150), + [anon_sym_false] = ACTIONS(2150), + [anon_sym_LBRACK] = ACTIONS(2148), + [anon_sym_RBRACK] = ACTIONS(2148), + [anon_sym_COLON] = ACTIONS(2148), + [anon_sym_DOT_DOT] = ACTIONS(2148), + [anon_sym_PLUS] = ACTIONS(2148), + [anon_sym_DASH] = ACTIONS(2150), + [anon_sym_STAR] = ACTIONS(2148), + [anon_sym_SLASH] = ACTIONS(2148), + [anon_sym_PERCENT] = ACTIONS(2148), + [anon_sym_EQ_EQ] = ACTIONS(2148), + [anon_sym_BANG_EQ] = ACTIONS(2148), + [anon_sym_AMP_AMP] = ACTIONS(2148), + [anon_sym_PIPE_PIPE] = ACTIONS(2148), + [anon_sym_GT] = ACTIONS(2150), + [anon_sym_LT] = ACTIONS(2150), + [anon_sym_GT_EQ] = ACTIONS(2148), + [anon_sym_LT_EQ] = ACTIONS(2148), + [anon_sym_if] = ACTIONS(2150), + [anon_sym_elseif] = ACTIONS(2148), + [anon_sym_else] = ACTIONS(2150), + [anon_sym_match] = ACTIONS(2150), + [anon_sym_EQ_GT] = ACTIONS(2148), + [anon_sym_while] = ACTIONS(2150), + [anon_sym_for] = ACTIONS(2150), + [anon_sym_asyncfor] = ACTIONS(2148), + [anon_sym_transform] = ACTIONS(2150), + [anon_sym_filter] = ACTIONS(2150), + [anon_sym_find] = ACTIONS(2150), + [anon_sym_remove] = ACTIONS(2150), + [anon_sym_reduce] = ACTIONS(2150), + [anon_sym_select] = ACTIONS(2150), + [anon_sym_insert] = ACTIONS(2150), + [anon_sym_async] = ACTIONS(2150), + [anon_sym_PIPE] = ACTIONS(2150), + [anon_sym_table] = ACTIONS(2150), + [anon_sym_assert] = ACTIONS(2150), + [anon_sym_assert_equal] = ACTIONS(2150), + [anon_sym_download] = ACTIONS(2150), + [anon_sym_help] = ACTIONS(2150), + [anon_sym_length] = ACTIONS(2150), + [anon_sym_output] = ACTIONS(2150), + [anon_sym_output_error] = ACTIONS(2150), + [anon_sym_type] = ACTIONS(2150), + [anon_sym_append] = ACTIONS(2150), + [anon_sym_metadata] = ACTIONS(2150), + [anon_sym_move] = ACTIONS(2150), + [anon_sym_read] = ACTIONS(2150), + [anon_sym_workdir] = ACTIONS(2150), + [anon_sym_write] = ACTIONS(2150), + [anon_sym_from_json] = ACTIONS(2150), + [anon_sym_to_json] = ACTIONS(2150), + [anon_sym_to_string] = ACTIONS(2150), + [anon_sym_to_float] = ACTIONS(2150), + [anon_sym_bash] = ACTIONS(2150), + [anon_sym_fish] = ACTIONS(2150), + [anon_sym_raw] = ACTIONS(2150), + [anon_sym_sh] = ACTIONS(2150), + [anon_sym_zsh] = ACTIONS(2150), + [anon_sym_random] = ACTIONS(2150), + [anon_sym_random_boolean] = ACTIONS(2150), + [anon_sym_random_float] = ACTIONS(2150), + [anon_sym_random_integer] = ACTIONS(2150), + [anon_sym_columns] = ACTIONS(2150), + [anon_sym_rows] = ACTIONS(2150), + [anon_sym_reverse] = ACTIONS(2150), }, [387] = { - [sym_statement] = STATE(454), - [sym_expression] = STATE(925), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(867), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(980), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(454), - [aux_sym_map_repeat1] = STATE(1675), - [sym_identifier] = ACTIONS(3071), + [sym_math_operator] = STATE(886), + [sym_logic_operator] = STATE(887), + [ts_builtin_sym_end] = ACTIONS(2041), + [sym_identifier] = ACTIONS(2043), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(3075), - [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_asyncfor] = 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_async] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(49), - [anon_sym_assert] = ACTIONS(51), - [anon_sym_assert_equal] = ACTIONS(51), - [anon_sym_download] = ACTIONS(51), - [anon_sym_help] = ACTIONS(51), - [anon_sym_length] = ACTIONS(51), - [anon_sym_output] = ACTIONS(51), - [anon_sym_output_error] = ACTIONS(51), - [anon_sym_type] = ACTIONS(51), - [anon_sym_append] = ACTIONS(51), - [anon_sym_metadata] = ACTIONS(51), - [anon_sym_move] = ACTIONS(51), - [anon_sym_read] = ACTIONS(51), - [anon_sym_workdir] = ACTIONS(51), - [anon_sym_write] = ACTIONS(51), - [anon_sym_from_json] = ACTIONS(51), - [anon_sym_to_json] = ACTIONS(51), - [anon_sym_to_string] = ACTIONS(51), - [anon_sym_to_float] = ACTIONS(51), - [anon_sym_bash] = ACTIONS(51), - [anon_sym_fish] = ACTIONS(51), - [anon_sym_raw] = ACTIONS(51), - [anon_sym_sh] = ACTIONS(51), - [anon_sym_zsh] = ACTIONS(51), - [anon_sym_random] = ACTIONS(51), - [anon_sym_random_boolean] = ACTIONS(51), - [anon_sym_random_float] = ACTIONS(51), - [anon_sym_random_integer] = ACTIONS(51), - [anon_sym_columns] = ACTIONS(51), - [anon_sym_rows] = ACTIONS(51), - [anon_sym_reverse] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(2041), + [anon_sym_RBRACE] = ACTIONS(2041), + [anon_sym_SEMI] = ACTIONS(2045), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_RPAREN] = ACTIONS(2041), + [sym_integer] = ACTIONS(2043), + [sym_float] = ACTIONS(2041), + [sym_string] = ACTIONS(2041), + [anon_sym_true] = ACTIONS(2043), + [anon_sym_false] = ACTIONS(2043), + [anon_sym_LBRACK] = ACTIONS(2041), + [anon_sym_COLON] = ACTIONS(153), + [anon_sym_DOT_DOT] = ACTIONS(2041), + [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(2043), + [anon_sym_elseif] = ACTIONS(2041), + [anon_sym_else] = ACTIONS(2043), + [anon_sym_match] = ACTIONS(2043), + [anon_sym_EQ_GT] = ACTIONS(2041), + [anon_sym_while] = ACTIONS(2043), + [anon_sym_for] = ACTIONS(2043), + [anon_sym_asyncfor] = ACTIONS(2041), + [anon_sym_transform] = ACTIONS(2043), + [anon_sym_filter] = ACTIONS(2043), + [anon_sym_find] = ACTIONS(2043), + [anon_sym_remove] = ACTIONS(2043), + [anon_sym_reduce] = ACTIONS(2043), + [anon_sym_select] = ACTIONS(2043), + [anon_sym_insert] = ACTIONS(2043), + [anon_sym_async] = ACTIONS(2043), + [anon_sym_PIPE] = ACTIONS(2043), + [anon_sym_table] = ACTIONS(2043), + [anon_sym_assert] = ACTIONS(2043), + [anon_sym_assert_equal] = ACTIONS(2043), + [anon_sym_download] = ACTIONS(2043), + [anon_sym_help] = ACTIONS(2043), + [anon_sym_length] = ACTIONS(2043), + [anon_sym_output] = ACTIONS(2043), + [anon_sym_output_error] = ACTIONS(2043), + [anon_sym_type] = ACTIONS(2043), + [anon_sym_append] = ACTIONS(2043), + [anon_sym_metadata] = ACTIONS(2043), + [anon_sym_move] = ACTIONS(2043), + [anon_sym_read] = ACTIONS(2043), + [anon_sym_workdir] = ACTIONS(2043), + [anon_sym_write] = ACTIONS(2043), + [anon_sym_from_json] = ACTIONS(2043), + [anon_sym_to_json] = ACTIONS(2043), + [anon_sym_to_string] = ACTIONS(2043), + [anon_sym_to_float] = ACTIONS(2043), + [anon_sym_bash] = ACTIONS(2043), + [anon_sym_fish] = ACTIONS(2043), + [anon_sym_raw] = ACTIONS(2043), + [anon_sym_sh] = ACTIONS(2043), + [anon_sym_zsh] = ACTIONS(2043), + [anon_sym_random] = ACTIONS(2043), + [anon_sym_random_boolean] = ACTIONS(2043), + [anon_sym_random_float] = ACTIONS(2043), + [anon_sym_random_integer] = ACTIONS(2043), + [anon_sym_columns] = ACTIONS(2043), + [anon_sym_rows] = ACTIONS(2043), + [anon_sym_reverse] = ACTIONS(2043), }, [388] = { - [sym_statement] = STATE(468), - [sym_expression] = STATE(925), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(867), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(980), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(468), - [aux_sym_map_repeat1] = STATE(1675), - [sym_identifier] = ACTIONS(3071), + [ts_builtin_sym_end] = ACTIONS(2152), + [sym_identifier] = ACTIONS(2154), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(3075), - [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_asyncfor] = 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_async] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(49), - [anon_sym_assert] = ACTIONS(51), - [anon_sym_assert_equal] = ACTIONS(51), - [anon_sym_download] = ACTIONS(51), - [anon_sym_help] = ACTIONS(51), - [anon_sym_length] = ACTIONS(51), - [anon_sym_output] = ACTIONS(51), - [anon_sym_output_error] = ACTIONS(51), - [anon_sym_type] = ACTIONS(51), - [anon_sym_append] = ACTIONS(51), - [anon_sym_metadata] = ACTIONS(51), - [anon_sym_move] = ACTIONS(51), - [anon_sym_read] = ACTIONS(51), - [anon_sym_workdir] = ACTIONS(51), - [anon_sym_write] = ACTIONS(51), - [anon_sym_from_json] = ACTIONS(51), - [anon_sym_to_json] = ACTIONS(51), - [anon_sym_to_string] = ACTIONS(51), - [anon_sym_to_float] = ACTIONS(51), - [anon_sym_bash] = ACTIONS(51), - [anon_sym_fish] = ACTIONS(51), - [anon_sym_raw] = ACTIONS(51), - [anon_sym_sh] = ACTIONS(51), - [anon_sym_zsh] = ACTIONS(51), - [anon_sym_random] = ACTIONS(51), - [anon_sym_random_boolean] = ACTIONS(51), - [anon_sym_random_float] = ACTIONS(51), - [anon_sym_random_integer] = ACTIONS(51), - [anon_sym_columns] = ACTIONS(51), - [anon_sym_rows] = ACTIONS(51), - [anon_sym_reverse] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_RBRACE] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_LPAREN] = ACTIONS(2152), + [anon_sym_RPAREN] = ACTIONS(2152), + [anon_sym_COMMA] = ACTIONS(2152), + [sym_integer] = ACTIONS(2154), + [sym_float] = ACTIONS(2152), + [sym_string] = ACTIONS(2152), + [anon_sym_true] = ACTIONS(2154), + [anon_sym_false] = ACTIONS(2154), + [anon_sym_LBRACK] = ACTIONS(2152), + [anon_sym_RBRACK] = ACTIONS(2152), + [anon_sym_COLON] = ACTIONS(2152), + [anon_sym_DOT_DOT] = ACTIONS(2152), + [anon_sym_PLUS] = ACTIONS(2152), + [anon_sym_DASH] = ACTIONS(2154), + [anon_sym_STAR] = ACTIONS(2152), + [anon_sym_SLASH] = ACTIONS(2152), + [anon_sym_PERCENT] = ACTIONS(2152), + [anon_sym_EQ_EQ] = ACTIONS(2152), + [anon_sym_BANG_EQ] = ACTIONS(2152), + [anon_sym_AMP_AMP] = ACTIONS(2152), + [anon_sym_PIPE_PIPE] = ACTIONS(2152), + [anon_sym_GT] = ACTIONS(2154), + [anon_sym_LT] = ACTIONS(2154), + [anon_sym_GT_EQ] = ACTIONS(2152), + [anon_sym_LT_EQ] = ACTIONS(2152), + [anon_sym_if] = ACTIONS(2154), + [anon_sym_elseif] = ACTIONS(2152), + [anon_sym_else] = ACTIONS(2154), + [anon_sym_match] = ACTIONS(2154), + [anon_sym_EQ_GT] = ACTIONS(2152), + [anon_sym_while] = ACTIONS(2154), + [anon_sym_for] = ACTIONS(2154), + [anon_sym_asyncfor] = ACTIONS(2152), + [anon_sym_transform] = ACTIONS(2154), + [anon_sym_filter] = ACTIONS(2154), + [anon_sym_find] = ACTIONS(2154), + [anon_sym_remove] = ACTIONS(2154), + [anon_sym_reduce] = ACTIONS(2154), + [anon_sym_select] = ACTIONS(2154), + [anon_sym_insert] = ACTIONS(2154), + [anon_sym_async] = ACTIONS(2154), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_table] = ACTIONS(2154), + [anon_sym_assert] = ACTIONS(2154), + [anon_sym_assert_equal] = ACTIONS(2154), + [anon_sym_download] = ACTIONS(2154), + [anon_sym_help] = ACTIONS(2154), + [anon_sym_length] = ACTIONS(2154), + [anon_sym_output] = ACTIONS(2154), + [anon_sym_output_error] = ACTIONS(2154), + [anon_sym_type] = ACTIONS(2154), + [anon_sym_append] = ACTIONS(2154), + [anon_sym_metadata] = ACTIONS(2154), + [anon_sym_move] = ACTIONS(2154), + [anon_sym_read] = ACTIONS(2154), + [anon_sym_workdir] = ACTIONS(2154), + [anon_sym_write] = ACTIONS(2154), + [anon_sym_from_json] = ACTIONS(2154), + [anon_sym_to_json] = ACTIONS(2154), + [anon_sym_to_string] = ACTIONS(2154), + [anon_sym_to_float] = ACTIONS(2154), + [anon_sym_bash] = ACTIONS(2154), + [anon_sym_fish] = ACTIONS(2154), + [anon_sym_raw] = ACTIONS(2154), + [anon_sym_sh] = ACTIONS(2154), + [anon_sym_zsh] = ACTIONS(2154), + [anon_sym_random] = ACTIONS(2154), + [anon_sym_random_boolean] = ACTIONS(2154), + [anon_sym_random_float] = ACTIONS(2154), + [anon_sym_random_integer] = ACTIONS(2154), + [anon_sym_columns] = ACTIONS(2154), + [anon_sym_rows] = ACTIONS(2154), + [anon_sym_reverse] = ACTIONS(2154), }, [389] = { - [sym_statement] = STATE(495), - [sym_expression] = STATE(925), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(867), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(980), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(495), - [aux_sym_map_repeat1] = STATE(1663), - [sym_identifier] = ACTIONS(3071), + [sym_expression] = STATE(567), + [sym__expression_kind] = STATE(585), + [aux_sym__expression_list] = STATE(389), + [sym_value] = STATE(585), + [sym_boolean] = STATE(586), + [sym_list] = STATE(586), + [sym_map] = STATE(586), + [sym_index] = STATE(585), + [sym_math] = STATE(585), + [sym_logic] = STATE(585), + [sym_identifier_list] = STATE(1193), + [sym_table] = STATE(586), + [sym_function] = STATE(586), + [sym_function_call] = STATE(585), + [sym__context_defined_function] = STATE(587), + [sym_built_in_function] = STATE(587), + [sym__built_in_function_name] = STATE(429), + [sym_identifier] = ACTIONS(2097), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(3077), - [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_asyncfor] = 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_async] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(49), - [anon_sym_assert] = ACTIONS(51), - [anon_sym_assert_equal] = ACTIONS(51), - [anon_sym_download] = ACTIONS(51), - [anon_sym_help] = ACTIONS(51), - [anon_sym_length] = ACTIONS(51), - [anon_sym_output] = ACTIONS(51), - [anon_sym_output_error] = ACTIONS(51), - [anon_sym_type] = ACTIONS(51), - [anon_sym_append] = ACTIONS(51), - [anon_sym_metadata] = ACTIONS(51), - [anon_sym_move] = ACTIONS(51), - [anon_sym_read] = ACTIONS(51), - [anon_sym_workdir] = ACTIONS(51), - [anon_sym_write] = ACTIONS(51), - [anon_sym_from_json] = ACTIONS(51), - [anon_sym_to_json] = ACTIONS(51), - [anon_sym_to_string] = ACTIONS(51), - [anon_sym_to_float] = ACTIONS(51), - [anon_sym_bash] = ACTIONS(51), - [anon_sym_fish] = ACTIONS(51), - [anon_sym_raw] = ACTIONS(51), - [anon_sym_sh] = ACTIONS(51), - [anon_sym_zsh] = ACTIONS(51), - [anon_sym_random] = ACTIONS(51), - [anon_sym_random_boolean] = ACTIONS(51), - [anon_sym_random_float] = ACTIONS(51), - [anon_sym_random_integer] = ACTIONS(51), - [anon_sym_columns] = ACTIONS(51), - [anon_sym_rows] = ACTIONS(51), - [anon_sym_reverse] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_RBRACE] = ACTIONS(1361), + [anon_sym_SEMI] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(2103), + [anon_sym_RPAREN] = ACTIONS(1361), + [anon_sym_COMMA] = ACTIONS(1361), + [sym_integer] = ACTIONS(2106), + [sym_float] = ACTIONS(2109), + [sym_string] = ACTIONS(2109), + [anon_sym_true] = ACTIONS(2112), + [anon_sym_false] = ACTIONS(2112), + [anon_sym_LBRACK] = ACTIONS(2115), + [anon_sym_RBRACK] = ACTIONS(1361), + [anon_sym_COLON] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1361), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_SLASH] = ACTIONS(1361), + [anon_sym_PERCENT] = ACTIONS(1361), + [anon_sym_EQ_EQ] = ACTIONS(1361), + [anon_sym_BANG_EQ] = ACTIONS(1361), + [anon_sym_AMP_AMP] = ACTIONS(1361), + [anon_sym_PIPE_PIPE] = ACTIONS(1361), + [anon_sym_GT] = ACTIONS(1384), + [anon_sym_LT] = ACTIONS(1384), + [anon_sym_GT_EQ] = ACTIONS(1361), + [anon_sym_LT_EQ] = ACTIONS(1361), + [anon_sym_EQ_GT] = ACTIONS(2156), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_table] = ACTIONS(2159), + [anon_sym_assert] = ACTIONS(2162), + [anon_sym_assert_equal] = ACTIONS(2162), + [anon_sym_download] = ACTIONS(2162), + [anon_sym_help] = ACTIONS(2162), + [anon_sym_length] = ACTIONS(2162), + [anon_sym_output] = ACTIONS(2162), + [anon_sym_output_error] = ACTIONS(2162), + [anon_sym_type] = ACTIONS(2162), + [anon_sym_append] = ACTIONS(2162), + [anon_sym_metadata] = ACTIONS(2162), + [anon_sym_move] = ACTIONS(2162), + [anon_sym_read] = ACTIONS(2162), + [anon_sym_workdir] = ACTIONS(2162), + [anon_sym_write] = ACTIONS(2162), + [anon_sym_from_json] = ACTIONS(2162), + [anon_sym_to_json] = ACTIONS(2162), + [anon_sym_to_string] = ACTIONS(2162), + [anon_sym_to_float] = ACTIONS(2162), + [anon_sym_bash] = ACTIONS(2162), + [anon_sym_fish] = ACTIONS(2162), + [anon_sym_raw] = ACTIONS(2162), + [anon_sym_sh] = ACTIONS(2162), + [anon_sym_zsh] = ACTIONS(2162), + [anon_sym_random] = ACTIONS(2162), + [anon_sym_random_boolean] = ACTIONS(2162), + [anon_sym_random_float] = ACTIONS(2162), + [anon_sym_random_integer] = ACTIONS(2162), + [anon_sym_columns] = ACTIONS(2162), + [anon_sym_rows] = ACTIONS(2162), + [anon_sym_reverse] = ACTIONS(2162), }, [390] = { - [sym_statement] = STATE(491), - [sym_expression] = STATE(925), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(867), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(980), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(491), - [aux_sym_map_repeat1] = STATE(1663), - [sym_identifier] = ACTIONS(3071), + [sym_math_operator] = STATE(908), + [sym_logic_operator] = STATE(909), + [ts_builtin_sym_end] = ACTIONS(2071), + [sym_identifier] = ACTIONS(2073), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(3077), - [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_asyncfor] = 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_async] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(49), - [anon_sym_assert] = ACTIONS(51), - [anon_sym_assert_equal] = ACTIONS(51), - [anon_sym_download] = ACTIONS(51), - [anon_sym_help] = ACTIONS(51), - [anon_sym_length] = ACTIONS(51), - [anon_sym_output] = ACTIONS(51), - [anon_sym_output_error] = ACTIONS(51), - [anon_sym_type] = ACTIONS(51), - [anon_sym_append] = ACTIONS(51), - [anon_sym_metadata] = ACTIONS(51), - [anon_sym_move] = ACTIONS(51), - [anon_sym_read] = ACTIONS(51), - [anon_sym_workdir] = ACTIONS(51), - [anon_sym_write] = ACTIONS(51), - [anon_sym_from_json] = ACTIONS(51), - [anon_sym_to_json] = ACTIONS(51), - [anon_sym_to_string] = ACTIONS(51), - [anon_sym_to_float] = ACTIONS(51), - [anon_sym_bash] = ACTIONS(51), - [anon_sym_fish] = ACTIONS(51), - [anon_sym_raw] = ACTIONS(51), - [anon_sym_sh] = ACTIONS(51), - [anon_sym_zsh] = ACTIONS(51), - [anon_sym_random] = ACTIONS(51), - [anon_sym_random_boolean] = ACTIONS(51), - [anon_sym_random_float] = ACTIONS(51), - [anon_sym_random_integer] = ACTIONS(51), - [anon_sym_columns] = ACTIONS(51), - [anon_sym_rows] = ACTIONS(51), - [anon_sym_reverse] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(2071), + [anon_sym_RBRACE] = ACTIONS(2071), + [anon_sym_SEMI] = ACTIONS(2071), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_RPAREN] = ACTIONS(2071), + [anon_sym_COMMA] = ACTIONS(2071), + [sym_integer] = ACTIONS(2073), + [sym_float] = ACTIONS(2071), + [sym_string] = ACTIONS(2071), + [anon_sym_true] = ACTIONS(2073), + [anon_sym_false] = ACTIONS(2073), + [anon_sym_LBRACK] = ACTIONS(2071), + [anon_sym_RBRACK] = ACTIONS(2071), + [anon_sym_COLON] = ACTIONS(191), + [anon_sym_DOT_DOT] = ACTIONS(2071), + [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(2073), + [anon_sym_match] = ACTIONS(2073), + [anon_sym_EQ_GT] = ACTIONS(2071), + [anon_sym_while] = ACTIONS(2073), + [anon_sym_for] = ACTIONS(2073), + [anon_sym_asyncfor] = ACTIONS(2071), + [anon_sym_transform] = ACTIONS(2073), + [anon_sym_filter] = ACTIONS(2073), + [anon_sym_find] = ACTIONS(2073), + [anon_sym_remove] = ACTIONS(2073), + [anon_sym_reduce] = ACTIONS(2073), + [anon_sym_select] = ACTIONS(2073), + [anon_sym_insert] = ACTIONS(2073), + [anon_sym_async] = ACTIONS(2073), + [anon_sym_PIPE] = ACTIONS(2073), + [anon_sym_table] = ACTIONS(2073), + [anon_sym_assert] = ACTIONS(2073), + [anon_sym_assert_equal] = ACTIONS(2073), + [anon_sym_download] = ACTIONS(2073), + [anon_sym_help] = ACTIONS(2073), + [anon_sym_length] = ACTIONS(2073), + [anon_sym_output] = ACTIONS(2073), + [anon_sym_output_error] = ACTIONS(2073), + [anon_sym_type] = ACTIONS(2073), + [anon_sym_append] = ACTIONS(2073), + [anon_sym_metadata] = ACTIONS(2073), + [anon_sym_move] = ACTIONS(2073), + [anon_sym_read] = ACTIONS(2073), + [anon_sym_workdir] = ACTIONS(2073), + [anon_sym_write] = ACTIONS(2073), + [anon_sym_from_json] = ACTIONS(2073), + [anon_sym_to_json] = ACTIONS(2073), + [anon_sym_to_string] = ACTIONS(2073), + [anon_sym_to_float] = ACTIONS(2073), + [anon_sym_bash] = ACTIONS(2073), + [anon_sym_fish] = ACTIONS(2073), + [anon_sym_raw] = ACTIONS(2073), + [anon_sym_sh] = ACTIONS(2073), + [anon_sym_zsh] = ACTIONS(2073), + [anon_sym_random] = ACTIONS(2073), + [anon_sym_random_boolean] = ACTIONS(2073), + [anon_sym_random_float] = ACTIONS(2073), + [anon_sym_random_integer] = ACTIONS(2073), + [anon_sym_columns] = ACTIONS(2073), + [anon_sym_rows] = ACTIONS(2073), + [anon_sym_reverse] = ACTIONS(2073), }, [391] = { - [sym_statement] = STATE(513), - [sym_expression] = STATE(925), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(867), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(980), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(513), - [aux_sym_map_repeat1] = STATE(1663), - [sym_identifier] = ACTIONS(3071), + [sym_else_if] = STATE(391), + [aux_sym_if_else_repeat1] = STATE(391), + [ts_builtin_sym_end] = ACTIONS(2019), + [sym_identifier] = ACTIONS(2021), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(3077), - [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_asyncfor] = 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_async] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(49), - [anon_sym_assert] = ACTIONS(51), - [anon_sym_assert_equal] = ACTIONS(51), - [anon_sym_download] = ACTIONS(51), - [anon_sym_help] = ACTIONS(51), - [anon_sym_length] = ACTIONS(51), - [anon_sym_output] = ACTIONS(51), - [anon_sym_output_error] = ACTIONS(51), - [anon_sym_type] = ACTIONS(51), - [anon_sym_append] = ACTIONS(51), - [anon_sym_metadata] = ACTIONS(51), - [anon_sym_move] = ACTIONS(51), - [anon_sym_read] = ACTIONS(51), - [anon_sym_workdir] = ACTIONS(51), - [anon_sym_write] = ACTIONS(51), - [anon_sym_from_json] = ACTIONS(51), - [anon_sym_to_json] = ACTIONS(51), - [anon_sym_to_string] = ACTIONS(51), - [anon_sym_to_float] = ACTIONS(51), - [anon_sym_bash] = ACTIONS(51), - [anon_sym_fish] = ACTIONS(51), - [anon_sym_raw] = ACTIONS(51), - [anon_sym_sh] = ACTIONS(51), - [anon_sym_zsh] = ACTIONS(51), - [anon_sym_random] = ACTIONS(51), - [anon_sym_random_boolean] = ACTIONS(51), - [anon_sym_random_float] = ACTIONS(51), - [anon_sym_random_integer] = ACTIONS(51), - [anon_sym_columns] = ACTIONS(51), - [anon_sym_rows] = ACTIONS(51), - [anon_sym_reverse] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(2019), + [anon_sym_RBRACE] = ACTIONS(2019), + [anon_sym_SEMI] = ACTIONS(2019), + [anon_sym_LPAREN] = ACTIONS(2019), + [anon_sym_RPAREN] = ACTIONS(2019), + [sym_integer] = ACTIONS(2021), + [sym_float] = ACTIONS(2019), + [sym_string] = ACTIONS(2019), + [anon_sym_true] = ACTIONS(2021), + [anon_sym_false] = ACTIONS(2021), + [anon_sym_LBRACK] = ACTIONS(2019), + [anon_sym_COLON] = ACTIONS(2019), + [anon_sym_DOT_DOT] = ACTIONS(2019), + [anon_sym_PLUS] = ACTIONS(2019), + [anon_sym_DASH] = ACTIONS(2021), + [anon_sym_STAR] = ACTIONS(2019), + [anon_sym_SLASH] = ACTIONS(2019), + [anon_sym_PERCENT] = ACTIONS(2019), + [anon_sym_EQ_EQ] = ACTIONS(2019), + [anon_sym_BANG_EQ] = ACTIONS(2019), + [anon_sym_AMP_AMP] = ACTIONS(2019), + [anon_sym_PIPE_PIPE] = ACTIONS(2019), + [anon_sym_GT] = ACTIONS(2021), + [anon_sym_LT] = ACTIONS(2021), + [anon_sym_GT_EQ] = ACTIONS(2019), + [anon_sym_LT_EQ] = ACTIONS(2019), + [anon_sym_if] = ACTIONS(2021), + [anon_sym_elseif] = ACTIONS(2165), + [anon_sym_else] = ACTIONS(2021), + [anon_sym_match] = ACTIONS(2021), + [anon_sym_EQ_GT] = ACTIONS(2019), + [anon_sym_while] = ACTIONS(2021), + [anon_sym_for] = ACTIONS(2021), + [anon_sym_asyncfor] = ACTIONS(2019), + [anon_sym_transform] = ACTIONS(2021), + [anon_sym_filter] = ACTIONS(2021), + [anon_sym_find] = ACTIONS(2021), + [anon_sym_remove] = ACTIONS(2021), + [anon_sym_reduce] = ACTIONS(2021), + [anon_sym_select] = ACTIONS(2021), + [anon_sym_insert] = ACTIONS(2021), + [anon_sym_async] = ACTIONS(2021), + [anon_sym_PIPE] = ACTIONS(2021), + [anon_sym_table] = ACTIONS(2021), + [anon_sym_assert] = ACTIONS(2021), + [anon_sym_assert_equal] = ACTIONS(2021), + [anon_sym_download] = ACTIONS(2021), + [anon_sym_help] = ACTIONS(2021), + [anon_sym_length] = ACTIONS(2021), + [anon_sym_output] = ACTIONS(2021), + [anon_sym_output_error] = ACTIONS(2021), + [anon_sym_type] = ACTIONS(2021), + [anon_sym_append] = ACTIONS(2021), + [anon_sym_metadata] = ACTIONS(2021), + [anon_sym_move] = ACTIONS(2021), + [anon_sym_read] = ACTIONS(2021), + [anon_sym_workdir] = ACTIONS(2021), + [anon_sym_write] = ACTIONS(2021), + [anon_sym_from_json] = ACTIONS(2021), + [anon_sym_to_json] = ACTIONS(2021), + [anon_sym_to_string] = ACTIONS(2021), + [anon_sym_to_float] = ACTIONS(2021), + [anon_sym_bash] = ACTIONS(2021), + [anon_sym_fish] = ACTIONS(2021), + [anon_sym_raw] = ACTIONS(2021), + [anon_sym_sh] = ACTIONS(2021), + [anon_sym_zsh] = ACTIONS(2021), + [anon_sym_random] = ACTIONS(2021), + [anon_sym_random_boolean] = ACTIONS(2021), + [anon_sym_random_float] = ACTIONS(2021), + [anon_sym_random_integer] = ACTIONS(2021), + [anon_sym_columns] = ACTIONS(2021), + [anon_sym_rows] = ACTIONS(2021), + [anon_sym_reverse] = ACTIONS(2021), }, [392] = { - [sym_statement] = STATE(531), - [sym_expression] = STATE(925), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(867), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(980), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(531), - [aux_sym_map_repeat1] = STATE(1679), - [sym_identifier] = ACTIONS(3071), + [sym_math_operator] = STATE(886), + [sym_logic_operator] = STATE(887), + [ts_builtin_sym_end] = ACTIONS(2063), + [sym_identifier] = ACTIONS(2065), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(3079), - [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_asyncfor] = 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_async] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(49), - [anon_sym_assert] = ACTIONS(51), - [anon_sym_assert_equal] = ACTIONS(51), - [anon_sym_download] = ACTIONS(51), - [anon_sym_help] = ACTIONS(51), - [anon_sym_length] = ACTIONS(51), - [anon_sym_output] = ACTIONS(51), - [anon_sym_output_error] = ACTIONS(51), - [anon_sym_type] = ACTIONS(51), - [anon_sym_append] = ACTIONS(51), - [anon_sym_metadata] = ACTIONS(51), - [anon_sym_move] = ACTIONS(51), - [anon_sym_read] = ACTIONS(51), - [anon_sym_workdir] = ACTIONS(51), - [anon_sym_write] = ACTIONS(51), - [anon_sym_from_json] = ACTIONS(51), - [anon_sym_to_json] = ACTIONS(51), - [anon_sym_to_string] = ACTIONS(51), - [anon_sym_to_float] = ACTIONS(51), - [anon_sym_bash] = ACTIONS(51), - [anon_sym_fish] = ACTIONS(51), - [anon_sym_raw] = ACTIONS(51), - [anon_sym_sh] = ACTIONS(51), - [anon_sym_zsh] = ACTIONS(51), - [anon_sym_random] = ACTIONS(51), - [anon_sym_random_boolean] = ACTIONS(51), - [anon_sym_random_float] = ACTIONS(51), - [anon_sym_random_integer] = ACTIONS(51), - [anon_sym_columns] = ACTIONS(51), - [anon_sym_rows] = ACTIONS(51), - [anon_sym_reverse] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(2063), + [anon_sym_RBRACE] = ACTIONS(2063), + [anon_sym_SEMI] = ACTIONS(2063), + [anon_sym_LPAREN] = ACTIONS(2063), + [anon_sym_RPAREN] = ACTIONS(2063), + [sym_integer] = ACTIONS(2065), + [sym_float] = ACTIONS(2063), + [sym_string] = ACTIONS(2063), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_LBRACK] = ACTIONS(2063), + [anon_sym_COLON] = ACTIONS(2063), + [anon_sym_DOT_DOT] = ACTIONS(2063), + [anon_sym_PLUS] = ACTIONS(2063), + [anon_sym_DASH] = ACTIONS(2065), + [anon_sym_STAR] = ACTIONS(2063), + [anon_sym_SLASH] = ACTIONS(2063), + [anon_sym_PERCENT] = ACTIONS(2063), + [anon_sym_EQ_EQ] = ACTIONS(2063), + [anon_sym_BANG_EQ] = ACTIONS(2063), + [anon_sym_AMP_AMP] = ACTIONS(2063), + [anon_sym_PIPE_PIPE] = ACTIONS(2063), + [anon_sym_GT] = ACTIONS(2065), + [anon_sym_LT] = ACTIONS(2065), + [anon_sym_GT_EQ] = ACTIONS(2063), + [anon_sym_LT_EQ] = ACTIONS(2063), + [anon_sym_if] = ACTIONS(2065), + [anon_sym_elseif] = ACTIONS(2063), + [anon_sym_else] = ACTIONS(2065), + [anon_sym_match] = ACTIONS(2065), + [anon_sym_EQ_GT] = ACTIONS(2063), + [anon_sym_while] = ACTIONS(2065), + [anon_sym_for] = ACTIONS(2065), + [anon_sym_asyncfor] = ACTIONS(2063), + [anon_sym_transform] = ACTIONS(2065), + [anon_sym_filter] = ACTIONS(2065), + [anon_sym_find] = ACTIONS(2065), + [anon_sym_remove] = ACTIONS(2065), + [anon_sym_reduce] = ACTIONS(2065), + [anon_sym_select] = ACTIONS(2065), + [anon_sym_insert] = ACTIONS(2065), + [anon_sym_async] = ACTIONS(2065), + [anon_sym_PIPE] = ACTIONS(2065), + [anon_sym_table] = ACTIONS(2065), + [anon_sym_assert] = ACTIONS(2065), + [anon_sym_assert_equal] = ACTIONS(2065), + [anon_sym_download] = ACTIONS(2065), + [anon_sym_help] = ACTIONS(2065), + [anon_sym_length] = ACTIONS(2065), + [anon_sym_output] = ACTIONS(2065), + [anon_sym_output_error] = ACTIONS(2065), + [anon_sym_type] = ACTIONS(2065), + [anon_sym_append] = ACTIONS(2065), + [anon_sym_metadata] = ACTIONS(2065), + [anon_sym_move] = ACTIONS(2065), + [anon_sym_read] = ACTIONS(2065), + [anon_sym_workdir] = ACTIONS(2065), + [anon_sym_write] = ACTIONS(2065), + [anon_sym_from_json] = ACTIONS(2065), + [anon_sym_to_json] = ACTIONS(2065), + [anon_sym_to_string] = ACTIONS(2065), + [anon_sym_to_float] = ACTIONS(2065), + [anon_sym_bash] = ACTIONS(2065), + [anon_sym_fish] = ACTIONS(2065), + [anon_sym_raw] = ACTIONS(2065), + [anon_sym_sh] = ACTIONS(2065), + [anon_sym_zsh] = ACTIONS(2065), + [anon_sym_random] = ACTIONS(2065), + [anon_sym_random_boolean] = ACTIONS(2065), + [anon_sym_random_float] = ACTIONS(2065), + [anon_sym_random_integer] = ACTIONS(2065), + [anon_sym_columns] = ACTIONS(2065), + [anon_sym_rows] = ACTIONS(2065), + [anon_sym_reverse] = ACTIONS(2065), }, [393] = { - [sym_statement] = STATE(427), - [sym_expression] = STATE(925), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(867), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(980), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(427), - [aux_sym_map_repeat1] = STATE(1663), - [sym_identifier] = ACTIONS(3071), + [sym_math_operator] = STATE(908), + [sym_logic_operator] = STATE(909), + [ts_builtin_sym_end] = ACTIONS(2075), + [sym_identifier] = ACTIONS(2077), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(3077), - [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_asyncfor] = 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_async] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(49), - [anon_sym_assert] = ACTIONS(51), - [anon_sym_assert_equal] = ACTIONS(51), - [anon_sym_download] = ACTIONS(51), - [anon_sym_help] = ACTIONS(51), - [anon_sym_length] = ACTIONS(51), - [anon_sym_output] = ACTIONS(51), - [anon_sym_output_error] = ACTIONS(51), - [anon_sym_type] = ACTIONS(51), - [anon_sym_append] = ACTIONS(51), - [anon_sym_metadata] = ACTIONS(51), - [anon_sym_move] = ACTIONS(51), - [anon_sym_read] = ACTIONS(51), - [anon_sym_workdir] = ACTIONS(51), - [anon_sym_write] = ACTIONS(51), - [anon_sym_from_json] = ACTIONS(51), - [anon_sym_to_json] = ACTIONS(51), - [anon_sym_to_string] = ACTIONS(51), - [anon_sym_to_float] = ACTIONS(51), - [anon_sym_bash] = ACTIONS(51), - [anon_sym_fish] = ACTIONS(51), - [anon_sym_raw] = ACTIONS(51), - [anon_sym_sh] = ACTIONS(51), - [anon_sym_zsh] = ACTIONS(51), - [anon_sym_random] = ACTIONS(51), - [anon_sym_random_boolean] = ACTIONS(51), - [anon_sym_random_float] = ACTIONS(51), - [anon_sym_random_integer] = ACTIONS(51), - [anon_sym_columns] = ACTIONS(51), - [anon_sym_rows] = ACTIONS(51), - [anon_sym_reverse] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(2075), + [anon_sym_RBRACE] = ACTIONS(2075), + [anon_sym_SEMI] = ACTIONS(2075), + [anon_sym_LPAREN] = ACTIONS(2075), + [anon_sym_RPAREN] = ACTIONS(2075), + [anon_sym_COMMA] = ACTIONS(2075), + [sym_integer] = ACTIONS(2077), + [sym_float] = ACTIONS(2075), + [sym_string] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_LBRACK] = ACTIONS(2075), + [anon_sym_RBRACK] = ACTIONS(2075), + [anon_sym_COLON] = ACTIONS(191), + [anon_sym_DOT_DOT] = ACTIONS(2075), + [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(2077), + [anon_sym_match] = ACTIONS(2077), + [anon_sym_EQ_GT] = ACTIONS(2075), + [anon_sym_while] = ACTIONS(2077), + [anon_sym_for] = ACTIONS(2077), + [anon_sym_asyncfor] = ACTIONS(2075), + [anon_sym_transform] = ACTIONS(2077), + [anon_sym_filter] = ACTIONS(2077), + [anon_sym_find] = ACTIONS(2077), + [anon_sym_remove] = ACTIONS(2077), + [anon_sym_reduce] = ACTIONS(2077), + [anon_sym_select] = ACTIONS(2077), + [anon_sym_insert] = ACTIONS(2077), + [anon_sym_async] = ACTIONS(2077), + [anon_sym_PIPE] = ACTIONS(2077), + [anon_sym_table] = ACTIONS(2077), + [anon_sym_assert] = ACTIONS(2077), + [anon_sym_assert_equal] = ACTIONS(2077), + [anon_sym_download] = ACTIONS(2077), + [anon_sym_help] = ACTIONS(2077), + [anon_sym_length] = ACTIONS(2077), + [anon_sym_output] = ACTIONS(2077), + [anon_sym_output_error] = ACTIONS(2077), + [anon_sym_type] = ACTIONS(2077), + [anon_sym_append] = ACTIONS(2077), + [anon_sym_metadata] = ACTIONS(2077), + [anon_sym_move] = ACTIONS(2077), + [anon_sym_read] = ACTIONS(2077), + [anon_sym_workdir] = ACTIONS(2077), + [anon_sym_write] = ACTIONS(2077), + [anon_sym_from_json] = ACTIONS(2077), + [anon_sym_to_json] = ACTIONS(2077), + [anon_sym_to_string] = ACTIONS(2077), + [anon_sym_to_float] = ACTIONS(2077), + [anon_sym_bash] = ACTIONS(2077), + [anon_sym_fish] = ACTIONS(2077), + [anon_sym_raw] = ACTIONS(2077), + [anon_sym_sh] = ACTIONS(2077), + [anon_sym_zsh] = ACTIONS(2077), + [anon_sym_random] = ACTIONS(2077), + [anon_sym_random_boolean] = ACTIONS(2077), + [anon_sym_random_float] = ACTIONS(2077), + [anon_sym_random_integer] = ACTIONS(2077), + [anon_sym_columns] = ACTIONS(2077), + [anon_sym_rows] = ACTIONS(2077), + [anon_sym_reverse] = ACTIONS(2077), }, [394] = { - [sym_statement] = STATE(420), - [sym_expression] = STATE(925), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(867), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(980), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(420), - [aux_sym_map_repeat1] = STATE(1663), - [sym_identifier] = ACTIONS(3071), + [sym_math_operator] = STATE(886), + [sym_logic_operator] = STATE(887), + [ts_builtin_sym_end] = ACTIONS(2026), + [sym_identifier] = ACTIONS(2028), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(3077), - [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_asyncfor] = 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_async] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(49), - [anon_sym_assert] = ACTIONS(51), - [anon_sym_assert_equal] = ACTIONS(51), - [anon_sym_download] = ACTIONS(51), - [anon_sym_help] = ACTIONS(51), - [anon_sym_length] = ACTIONS(51), - [anon_sym_output] = ACTIONS(51), - [anon_sym_output_error] = ACTIONS(51), - [anon_sym_type] = ACTIONS(51), - [anon_sym_append] = ACTIONS(51), - [anon_sym_metadata] = ACTIONS(51), - [anon_sym_move] = ACTIONS(51), - [anon_sym_read] = ACTIONS(51), - [anon_sym_workdir] = ACTIONS(51), - [anon_sym_write] = ACTIONS(51), - [anon_sym_from_json] = ACTIONS(51), - [anon_sym_to_json] = ACTIONS(51), - [anon_sym_to_string] = ACTIONS(51), - [anon_sym_to_float] = ACTIONS(51), - [anon_sym_bash] = ACTIONS(51), - [anon_sym_fish] = ACTIONS(51), - [anon_sym_raw] = ACTIONS(51), - [anon_sym_sh] = ACTIONS(51), - [anon_sym_zsh] = ACTIONS(51), - [anon_sym_random] = ACTIONS(51), - [anon_sym_random_boolean] = ACTIONS(51), - [anon_sym_random_float] = ACTIONS(51), - [anon_sym_random_integer] = ACTIONS(51), - [anon_sym_columns] = ACTIONS(51), - [anon_sym_rows] = ACTIONS(51), - [anon_sym_reverse] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(2026), + [anon_sym_RBRACE] = ACTIONS(2026), + [anon_sym_SEMI] = ACTIONS(2026), + [anon_sym_LPAREN] = ACTIONS(2026), + [anon_sym_RPAREN] = ACTIONS(2026), + [sym_integer] = ACTIONS(2028), + [sym_float] = ACTIONS(2026), + [sym_string] = ACTIONS(2026), + [anon_sym_true] = ACTIONS(2028), + [anon_sym_false] = ACTIONS(2028), + [anon_sym_LBRACK] = ACTIONS(2026), + [anon_sym_COLON] = ACTIONS(2026), + [anon_sym_DOT_DOT] = ACTIONS(2026), + [anon_sym_PLUS] = ACTIONS(2026), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(2026), + [anon_sym_SLASH] = ACTIONS(2026), + [anon_sym_PERCENT] = ACTIONS(2026), + [anon_sym_EQ_EQ] = ACTIONS(2026), + [anon_sym_BANG_EQ] = ACTIONS(2026), + [anon_sym_AMP_AMP] = ACTIONS(2026), + [anon_sym_PIPE_PIPE] = ACTIONS(2026), + [anon_sym_GT] = ACTIONS(2028), + [anon_sym_LT] = ACTIONS(2028), + [anon_sym_GT_EQ] = ACTIONS(2026), + [anon_sym_LT_EQ] = ACTIONS(2026), + [anon_sym_if] = ACTIONS(2028), + [anon_sym_elseif] = ACTIONS(2026), + [anon_sym_else] = ACTIONS(2028), + [anon_sym_match] = ACTIONS(2028), + [anon_sym_EQ_GT] = ACTIONS(2026), + [anon_sym_while] = ACTIONS(2028), + [anon_sym_for] = ACTIONS(2028), + [anon_sym_asyncfor] = ACTIONS(2026), + [anon_sym_transform] = ACTIONS(2028), + [anon_sym_filter] = ACTIONS(2028), + [anon_sym_find] = ACTIONS(2028), + [anon_sym_remove] = ACTIONS(2028), + [anon_sym_reduce] = ACTIONS(2028), + [anon_sym_select] = ACTIONS(2028), + [anon_sym_insert] = ACTIONS(2028), + [anon_sym_async] = ACTIONS(2028), + [anon_sym_PIPE] = ACTIONS(2028), + [anon_sym_table] = ACTIONS(2028), + [anon_sym_assert] = ACTIONS(2028), + [anon_sym_assert_equal] = ACTIONS(2028), + [anon_sym_download] = ACTIONS(2028), + [anon_sym_help] = ACTIONS(2028), + [anon_sym_length] = ACTIONS(2028), + [anon_sym_output] = ACTIONS(2028), + [anon_sym_output_error] = ACTIONS(2028), + [anon_sym_type] = ACTIONS(2028), + [anon_sym_append] = ACTIONS(2028), + [anon_sym_metadata] = ACTIONS(2028), + [anon_sym_move] = ACTIONS(2028), + [anon_sym_read] = ACTIONS(2028), + [anon_sym_workdir] = ACTIONS(2028), + [anon_sym_write] = ACTIONS(2028), + [anon_sym_from_json] = ACTIONS(2028), + [anon_sym_to_json] = ACTIONS(2028), + [anon_sym_to_string] = ACTIONS(2028), + [anon_sym_to_float] = ACTIONS(2028), + [anon_sym_bash] = ACTIONS(2028), + [anon_sym_fish] = ACTIONS(2028), + [anon_sym_raw] = ACTIONS(2028), + [anon_sym_sh] = ACTIONS(2028), + [anon_sym_zsh] = ACTIONS(2028), + [anon_sym_random] = ACTIONS(2028), + [anon_sym_random_boolean] = ACTIONS(2028), + [anon_sym_random_float] = ACTIONS(2028), + [anon_sym_random_integer] = ACTIONS(2028), + [anon_sym_columns] = ACTIONS(2028), + [anon_sym_rows] = ACTIONS(2028), + [anon_sym_reverse] = ACTIONS(2028), }, [395] = { - [sym_block] = STATE(799), - [sym_statement] = STATE(33), - [sym_expression] = STATE(732), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(620), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(654), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1841), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(315), - [aux_sym_block_repeat1] = STATE(33), - [sym_identifier] = ACTIONS(623), + [sym_math_operator] = STATE(908), + [sym_logic_operator] = STATE(909), + [ts_builtin_sym_end] = ACTIONS(2079), + [sym_identifier] = ACTIONS(2081), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_if] = ACTIONS(627), - [anon_sym_match] = ACTIONS(629), - [anon_sym_EQ_GT] = ACTIONS(631), - [anon_sym_while] = ACTIONS(633), - [anon_sym_for] = ACTIONS(635), - [anon_sym_asyncfor] = ACTIONS(637), - [anon_sym_transform] = ACTIONS(639), - [anon_sym_filter] = ACTIONS(641), - [anon_sym_find] = ACTIONS(643), - [anon_sym_remove] = ACTIONS(645), - [anon_sym_reduce] = ACTIONS(647), - [anon_sym_select] = ACTIONS(649), - [anon_sym_insert] = ACTIONS(651), - [anon_sym_async] = ACTIONS(653), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(655), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_assert_equal] = ACTIONS(657), - [anon_sym_download] = ACTIONS(657), - [anon_sym_help] = ACTIONS(657), - [anon_sym_length] = ACTIONS(657), - [anon_sym_output] = ACTIONS(657), - [anon_sym_output_error] = ACTIONS(657), - [anon_sym_type] = ACTIONS(657), - [anon_sym_append] = ACTIONS(657), - [anon_sym_metadata] = ACTIONS(657), - [anon_sym_move] = ACTIONS(657), - [anon_sym_read] = ACTIONS(657), - [anon_sym_workdir] = ACTIONS(657), - [anon_sym_write] = ACTIONS(657), - [anon_sym_from_json] = ACTIONS(657), - [anon_sym_to_json] = ACTIONS(657), - [anon_sym_to_string] = ACTIONS(657), - [anon_sym_to_float] = ACTIONS(657), - [anon_sym_bash] = ACTIONS(657), - [anon_sym_fish] = ACTIONS(657), - [anon_sym_raw] = ACTIONS(657), - [anon_sym_sh] = ACTIONS(657), - [anon_sym_zsh] = ACTIONS(657), - [anon_sym_random] = ACTIONS(657), - [anon_sym_random_boolean] = ACTIONS(657), - [anon_sym_random_float] = ACTIONS(657), - [anon_sym_random_integer] = ACTIONS(657), - [anon_sym_columns] = ACTIONS(657), - [anon_sym_rows] = ACTIONS(657), - [anon_sym_reverse] = ACTIONS(657), + [anon_sym_LBRACE] = ACTIONS(2079), + [anon_sym_RBRACE] = ACTIONS(2079), + [anon_sym_SEMI] = ACTIONS(2079), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_RPAREN] = ACTIONS(2079), + [anon_sym_COMMA] = ACTIONS(2079), + [sym_integer] = ACTIONS(2081), + [sym_float] = ACTIONS(2079), + [sym_string] = ACTIONS(2079), + [anon_sym_true] = ACTIONS(2081), + [anon_sym_false] = ACTIONS(2081), + [anon_sym_LBRACK] = ACTIONS(2079), + [anon_sym_RBRACK] = ACTIONS(2079), + [anon_sym_COLON] = ACTIONS(191), + [anon_sym_DOT_DOT] = ACTIONS(2079), + [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(2081), + [anon_sym_match] = ACTIONS(2081), + [anon_sym_EQ_GT] = ACTIONS(2079), + [anon_sym_while] = ACTIONS(2081), + [anon_sym_for] = ACTIONS(2081), + [anon_sym_asyncfor] = ACTIONS(2079), + [anon_sym_transform] = ACTIONS(2081), + [anon_sym_filter] = ACTIONS(2081), + [anon_sym_find] = ACTIONS(2081), + [anon_sym_remove] = ACTIONS(2081), + [anon_sym_reduce] = ACTIONS(2081), + [anon_sym_select] = ACTIONS(2081), + [anon_sym_insert] = ACTIONS(2081), + [anon_sym_async] = ACTIONS(2081), + [anon_sym_PIPE] = ACTIONS(2081), + [anon_sym_table] = ACTIONS(2081), + [anon_sym_assert] = ACTIONS(2081), + [anon_sym_assert_equal] = ACTIONS(2081), + [anon_sym_download] = ACTIONS(2081), + [anon_sym_help] = ACTIONS(2081), + [anon_sym_length] = ACTIONS(2081), + [anon_sym_output] = ACTIONS(2081), + [anon_sym_output_error] = ACTIONS(2081), + [anon_sym_type] = ACTIONS(2081), + [anon_sym_append] = ACTIONS(2081), + [anon_sym_metadata] = ACTIONS(2081), + [anon_sym_move] = ACTIONS(2081), + [anon_sym_read] = ACTIONS(2081), + [anon_sym_workdir] = ACTIONS(2081), + [anon_sym_write] = ACTIONS(2081), + [anon_sym_from_json] = ACTIONS(2081), + [anon_sym_to_json] = ACTIONS(2081), + [anon_sym_to_string] = ACTIONS(2081), + [anon_sym_to_float] = ACTIONS(2081), + [anon_sym_bash] = ACTIONS(2081), + [anon_sym_fish] = ACTIONS(2081), + [anon_sym_raw] = ACTIONS(2081), + [anon_sym_sh] = ACTIONS(2081), + [anon_sym_zsh] = ACTIONS(2081), + [anon_sym_random] = ACTIONS(2081), + [anon_sym_random_boolean] = ACTIONS(2081), + [anon_sym_random_float] = ACTIONS(2081), + [anon_sym_random_integer] = ACTIONS(2081), + [anon_sym_columns] = ACTIONS(2081), + [anon_sym_rows] = ACTIONS(2081), + [anon_sym_reverse] = ACTIONS(2081), }, [396] = { - [sym_block] = STATE(723), - [sym_statement] = STATE(17), - [sym_expression] = STATE(601), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_logic] = STATE(706), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(557), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1910), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(284), - [aux_sym_block_repeat1] = STATE(17), - [sym_identifier] = ACTIONS(149), + [sym_math_operator] = STATE(908), + [sym_logic_operator] = STATE(909), + [ts_builtin_sym_end] = ACTIONS(2034), + [sym_identifier] = ACTIONS(2036), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_if] = ACTIONS(81), - [anon_sym_match] = ACTIONS(165), - [anon_sym_EQ_GT] = ACTIONS(167), - [anon_sym_while] = ACTIONS(169), - [anon_sym_for] = ACTIONS(171), - [anon_sym_asyncfor] = ACTIONS(173), - [anon_sym_transform] = ACTIONS(175), - [anon_sym_filter] = ACTIONS(177), - [anon_sym_find] = ACTIONS(179), - [anon_sym_remove] = ACTIONS(181), - [anon_sym_reduce] = ACTIONS(183), - [anon_sym_select] = ACTIONS(185), - [anon_sym_insert] = ACTIONS(187), - [anon_sym_async] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(191), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_assert_equal] = ACTIONS(193), - [anon_sym_download] = ACTIONS(193), - [anon_sym_help] = ACTIONS(193), - [anon_sym_length] = ACTIONS(193), - [anon_sym_output] = ACTIONS(193), - [anon_sym_output_error] = ACTIONS(193), - [anon_sym_type] = ACTIONS(193), - [anon_sym_append] = ACTIONS(193), - [anon_sym_metadata] = ACTIONS(193), - [anon_sym_move] = ACTIONS(193), - [anon_sym_read] = ACTIONS(193), - [anon_sym_workdir] = ACTIONS(193), - [anon_sym_write] = ACTIONS(193), - [anon_sym_from_json] = ACTIONS(193), - [anon_sym_to_json] = ACTIONS(193), - [anon_sym_to_string] = ACTIONS(193), - [anon_sym_to_float] = ACTIONS(193), - [anon_sym_bash] = ACTIONS(193), - [anon_sym_fish] = ACTIONS(193), - [anon_sym_raw] = ACTIONS(193), - [anon_sym_sh] = ACTIONS(193), - [anon_sym_zsh] = ACTIONS(193), - [anon_sym_random] = ACTIONS(193), - [anon_sym_random_boolean] = ACTIONS(193), - [anon_sym_random_float] = ACTIONS(193), - [anon_sym_random_integer] = ACTIONS(193), - [anon_sym_columns] = ACTIONS(193), - [anon_sym_rows] = ACTIONS(193), - [anon_sym_reverse] = ACTIONS(193), + [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(2168), + [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(191), + [anon_sym_DOT_DOT] = ACTIONS(2034), + [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(2036), + [anon_sym_match] = ACTIONS(2036), + [anon_sym_EQ_GT] = ACTIONS(2034), + [anon_sym_while] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_asyncfor] = ACTIONS(2034), + [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), }, [397] = { - [sym_block] = STATE(803), - [sym_statement] = STATE(38), - [sym_expression] = STATE(779), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(655), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(724), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1860), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(341), - [aux_sym_block_repeat1] = STATE(38), - [sym_identifier] = ACTIONS(839), + [sym_math_operator] = STATE(886), + [sym_logic_operator] = STATE(887), + [ts_builtin_sym_end] = ACTIONS(2067), + [sym_identifier] = ACTIONS(2069), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_if] = ACTIONS(843), - [anon_sym_match] = ACTIONS(845), - [anon_sym_EQ_GT] = ACTIONS(847), - [anon_sym_while] = ACTIONS(849), - [anon_sym_for] = ACTIONS(851), - [anon_sym_asyncfor] = 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(867), - [anon_sym_async] = ACTIONS(869), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(871), - [anon_sym_assert] = ACTIONS(873), - [anon_sym_assert_equal] = ACTIONS(873), - [anon_sym_download] = ACTIONS(873), - [anon_sym_help] = ACTIONS(873), - [anon_sym_length] = ACTIONS(873), - [anon_sym_output] = ACTIONS(873), - [anon_sym_output_error] = ACTIONS(873), - [anon_sym_type] = ACTIONS(873), - [anon_sym_append] = ACTIONS(873), - [anon_sym_metadata] = ACTIONS(873), - [anon_sym_move] = ACTIONS(873), - [anon_sym_read] = ACTIONS(873), - [anon_sym_workdir] = ACTIONS(873), - [anon_sym_write] = ACTIONS(873), - [anon_sym_from_json] = ACTIONS(873), - [anon_sym_to_json] = ACTIONS(873), - [anon_sym_to_string] = ACTIONS(873), - [anon_sym_to_float] = ACTIONS(873), - [anon_sym_bash] = ACTIONS(873), - [anon_sym_fish] = ACTIONS(873), - [anon_sym_raw] = ACTIONS(873), - [anon_sym_sh] = ACTIONS(873), - [anon_sym_zsh] = ACTIONS(873), - [anon_sym_random] = ACTIONS(873), - [anon_sym_random_boolean] = ACTIONS(873), - [anon_sym_random_float] = ACTIONS(873), - [anon_sym_random_integer] = ACTIONS(873), - [anon_sym_columns] = ACTIONS(873), - [anon_sym_rows] = ACTIONS(873), - [anon_sym_reverse] = ACTIONS(873), + [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_RBRACE] = ACTIONS(2067), + [anon_sym_SEMI] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_RPAREN] = ACTIONS(2067), + [sym_integer] = ACTIONS(2069), + [sym_float] = ACTIONS(2067), + [sym_string] = ACTIONS(2067), + [anon_sym_true] = ACTIONS(2069), + [anon_sym_false] = ACTIONS(2069), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_COLON] = ACTIONS(2067), + [anon_sym_DOT_DOT] = ACTIONS(2067), + [anon_sym_PLUS] = ACTIONS(2067), + [anon_sym_DASH] = ACTIONS(2069), + [anon_sym_STAR] = ACTIONS(2067), + [anon_sym_SLASH] = ACTIONS(2067), + [anon_sym_PERCENT] = ACTIONS(2067), + [anon_sym_EQ_EQ] = ACTIONS(2067), + [anon_sym_BANG_EQ] = ACTIONS(2067), + [anon_sym_AMP_AMP] = ACTIONS(2067), + [anon_sym_PIPE_PIPE] = ACTIONS(2067), + [anon_sym_GT] = ACTIONS(2069), + [anon_sym_LT] = ACTIONS(2069), + [anon_sym_GT_EQ] = ACTIONS(2067), + [anon_sym_LT_EQ] = ACTIONS(2067), + [anon_sym_if] = ACTIONS(2069), + [anon_sym_elseif] = ACTIONS(2067), + [anon_sym_else] = ACTIONS(2069), + [anon_sym_match] = ACTIONS(2069), + [anon_sym_EQ_GT] = ACTIONS(2067), + [anon_sym_while] = ACTIONS(2069), + [anon_sym_for] = ACTIONS(2069), + [anon_sym_asyncfor] = ACTIONS(2067), + [anon_sym_transform] = ACTIONS(2069), + [anon_sym_filter] = ACTIONS(2069), + [anon_sym_find] = ACTIONS(2069), + [anon_sym_remove] = ACTIONS(2069), + [anon_sym_reduce] = ACTIONS(2069), + [anon_sym_select] = ACTIONS(2069), + [anon_sym_insert] = ACTIONS(2069), + [anon_sym_async] = ACTIONS(2069), + [anon_sym_PIPE] = ACTIONS(2069), + [anon_sym_table] = ACTIONS(2069), + [anon_sym_assert] = ACTIONS(2069), + [anon_sym_assert_equal] = ACTIONS(2069), + [anon_sym_download] = ACTIONS(2069), + [anon_sym_help] = ACTIONS(2069), + [anon_sym_length] = ACTIONS(2069), + [anon_sym_output] = ACTIONS(2069), + [anon_sym_output_error] = ACTIONS(2069), + [anon_sym_type] = ACTIONS(2069), + [anon_sym_append] = ACTIONS(2069), + [anon_sym_metadata] = ACTIONS(2069), + [anon_sym_move] = ACTIONS(2069), + [anon_sym_read] = ACTIONS(2069), + [anon_sym_workdir] = ACTIONS(2069), + [anon_sym_write] = ACTIONS(2069), + [anon_sym_from_json] = ACTIONS(2069), + [anon_sym_to_json] = ACTIONS(2069), + [anon_sym_to_string] = ACTIONS(2069), + [anon_sym_to_float] = ACTIONS(2069), + [anon_sym_bash] = ACTIONS(2069), + [anon_sym_fish] = ACTIONS(2069), + [anon_sym_raw] = ACTIONS(2069), + [anon_sym_sh] = ACTIONS(2069), + [anon_sym_zsh] = ACTIONS(2069), + [anon_sym_random] = ACTIONS(2069), + [anon_sym_random_boolean] = ACTIONS(2069), + [anon_sym_random_float] = ACTIONS(2069), + [anon_sym_random_integer] = ACTIONS(2069), + [anon_sym_columns] = ACTIONS(2069), + [anon_sym_rows] = ACTIONS(2069), + [anon_sym_reverse] = ACTIONS(2069), }, [398] = { - [sym_block] = STATE(1659), - [sym_statement] = STATE(371), - [sym_expression] = STATE(934), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(842), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(983), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [aux_sym_block_repeat1] = STATE(371), - [sym_identifier] = ACTIONS(2162), + [sym_math_operator] = STATE(886), + [sym_logic_operator] = STATE(887), + [ts_builtin_sym_end] = ACTIONS(2026), + [sym_identifier] = ACTIONS(2028), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2164), - [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(1570), - [anon_sym_match] = ACTIONS(2166), - [anon_sym_EQ_GT] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(2168), - [anon_sym_for] = ACTIONS(2170), - [anon_sym_asyncfor] = ACTIONS(2172), - [anon_sym_transform] = ACTIONS(2174), - [anon_sym_filter] = ACTIONS(2176), - [anon_sym_find] = ACTIONS(2178), - [anon_sym_remove] = ACTIONS(2180), - [anon_sym_reduce] = ACTIONS(2182), - [anon_sym_select] = ACTIONS(2184), - [anon_sym_insert] = ACTIONS(1224), - [anon_sym_async] = ACTIONS(2186), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(1228), - [anon_sym_assert] = ACTIONS(1230), - [anon_sym_assert_equal] = ACTIONS(1230), - [anon_sym_download] = ACTIONS(1230), - [anon_sym_help] = ACTIONS(1230), - [anon_sym_length] = ACTIONS(1230), - [anon_sym_output] = ACTIONS(1230), - [anon_sym_output_error] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_append] = ACTIONS(1230), - [anon_sym_metadata] = ACTIONS(1230), - [anon_sym_move] = ACTIONS(1230), - [anon_sym_read] = ACTIONS(1230), - [anon_sym_workdir] = ACTIONS(1230), - [anon_sym_write] = ACTIONS(1230), - [anon_sym_from_json] = ACTIONS(1230), - [anon_sym_to_json] = ACTIONS(1230), - [anon_sym_to_string] = ACTIONS(1230), - [anon_sym_to_float] = ACTIONS(1230), - [anon_sym_bash] = ACTIONS(1230), - [anon_sym_fish] = ACTIONS(1230), - [anon_sym_raw] = ACTIONS(1230), - [anon_sym_sh] = ACTIONS(1230), - [anon_sym_zsh] = ACTIONS(1230), - [anon_sym_random] = ACTIONS(1230), - [anon_sym_random_boolean] = ACTIONS(1230), - [anon_sym_random_float] = ACTIONS(1230), - [anon_sym_random_integer] = ACTIONS(1230), - [anon_sym_columns] = ACTIONS(1230), - [anon_sym_rows] = ACTIONS(1230), - [anon_sym_reverse] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(2026), + [anon_sym_RBRACE] = ACTIONS(2026), + [anon_sym_SEMI] = ACTIONS(2026), + [anon_sym_LPAREN] = ACTIONS(2026), + [anon_sym_RPAREN] = ACTIONS(2026), + [sym_integer] = ACTIONS(2028), + [sym_float] = ACTIONS(2026), + [sym_string] = ACTIONS(2026), + [anon_sym_true] = ACTIONS(2028), + [anon_sym_false] = ACTIONS(2028), + [anon_sym_LBRACK] = ACTIONS(2026), + [anon_sym_COLON] = ACTIONS(2026), + [anon_sym_DOT_DOT] = ACTIONS(2171), + [anon_sym_PLUS] = ACTIONS(2026), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(2026), + [anon_sym_SLASH] = ACTIONS(2026), + [anon_sym_PERCENT] = ACTIONS(2026), + [anon_sym_EQ_EQ] = ACTIONS(2026), + [anon_sym_BANG_EQ] = ACTIONS(2026), + [anon_sym_AMP_AMP] = ACTIONS(2026), + [anon_sym_PIPE_PIPE] = ACTIONS(2026), + [anon_sym_GT] = ACTIONS(2028), + [anon_sym_LT] = ACTIONS(2028), + [anon_sym_GT_EQ] = ACTIONS(2026), + [anon_sym_LT_EQ] = ACTIONS(2026), + [anon_sym_if] = ACTIONS(2028), + [anon_sym_elseif] = ACTIONS(2026), + [anon_sym_else] = ACTIONS(2028), + [anon_sym_match] = ACTIONS(2028), + [anon_sym_EQ_GT] = ACTIONS(2026), + [anon_sym_while] = ACTIONS(2028), + [anon_sym_for] = ACTIONS(2028), + [anon_sym_asyncfor] = ACTIONS(2026), + [anon_sym_transform] = ACTIONS(2028), + [anon_sym_filter] = ACTIONS(2028), + [anon_sym_find] = ACTIONS(2028), + [anon_sym_remove] = ACTIONS(2028), + [anon_sym_reduce] = ACTIONS(2028), + [anon_sym_select] = ACTIONS(2028), + [anon_sym_insert] = ACTIONS(2028), + [anon_sym_async] = ACTIONS(2028), + [anon_sym_PIPE] = ACTIONS(2028), + [anon_sym_table] = ACTIONS(2028), + [anon_sym_assert] = ACTIONS(2028), + [anon_sym_assert_equal] = ACTIONS(2028), + [anon_sym_download] = ACTIONS(2028), + [anon_sym_help] = ACTIONS(2028), + [anon_sym_length] = ACTIONS(2028), + [anon_sym_output] = ACTIONS(2028), + [anon_sym_output_error] = ACTIONS(2028), + [anon_sym_type] = ACTIONS(2028), + [anon_sym_append] = ACTIONS(2028), + [anon_sym_metadata] = ACTIONS(2028), + [anon_sym_move] = ACTIONS(2028), + [anon_sym_read] = ACTIONS(2028), + [anon_sym_workdir] = ACTIONS(2028), + [anon_sym_write] = ACTIONS(2028), + [anon_sym_from_json] = ACTIONS(2028), + [anon_sym_to_json] = ACTIONS(2028), + [anon_sym_to_string] = ACTIONS(2028), + [anon_sym_to_float] = ACTIONS(2028), + [anon_sym_bash] = ACTIONS(2028), + [anon_sym_fish] = ACTIONS(2028), + [anon_sym_raw] = ACTIONS(2028), + [anon_sym_sh] = ACTIONS(2028), + [anon_sym_zsh] = ACTIONS(2028), + [anon_sym_random] = ACTIONS(2028), + [anon_sym_random_boolean] = ACTIONS(2028), + [anon_sym_random_float] = ACTIONS(2028), + [anon_sym_random_integer] = ACTIONS(2028), + [anon_sym_columns] = ACTIONS(2028), + [anon_sym_rows] = ACTIONS(2028), + [anon_sym_reverse] = ACTIONS(2028), }, [399] = { - [sym_block] = STATE(848), - [sym_statement] = STATE(57), - [sym_expression] = STATE(853), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(776), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(710), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1823), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(366), - [aux_sym_block_repeat1] = STATE(57), - [sym_identifier] = ACTIONS(1436), + [ts_builtin_sym_end] = ACTIONS(2173), + [sym_identifier] = ACTIONS(2175), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(877), - [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(843), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_EQ_GT] = ACTIONS(1442), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_for] = ACTIONS(1446), - [anon_sym_asyncfor] = ACTIONS(1448), - [anon_sym_transform] = ACTIONS(1450), - [anon_sym_filter] = ACTIONS(1452), - [anon_sym_find] = ACTIONS(1454), - [anon_sym_remove] = ACTIONS(1456), - [anon_sym_reduce] = ACTIONS(1458), - [anon_sym_select] = ACTIONS(1460), - [anon_sym_insert] = ACTIONS(1462), - [anon_sym_async] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(1466), - [anon_sym_assert] = ACTIONS(1468), - [anon_sym_assert_equal] = ACTIONS(1468), - [anon_sym_download] = ACTIONS(1468), - [anon_sym_help] = ACTIONS(1468), - [anon_sym_length] = ACTIONS(1468), - [anon_sym_output] = ACTIONS(1468), - [anon_sym_output_error] = ACTIONS(1468), - [anon_sym_type] = ACTIONS(1468), - [anon_sym_append] = ACTIONS(1468), - [anon_sym_metadata] = ACTIONS(1468), - [anon_sym_move] = ACTIONS(1468), - [anon_sym_read] = ACTIONS(1468), - [anon_sym_workdir] = ACTIONS(1468), - [anon_sym_write] = ACTIONS(1468), - [anon_sym_from_json] = ACTIONS(1468), - [anon_sym_to_json] = ACTIONS(1468), - [anon_sym_to_string] = ACTIONS(1468), - [anon_sym_to_float] = ACTIONS(1468), - [anon_sym_bash] = ACTIONS(1468), - [anon_sym_fish] = ACTIONS(1468), - [anon_sym_raw] = ACTIONS(1468), - [anon_sym_sh] = ACTIONS(1468), - [anon_sym_zsh] = ACTIONS(1468), - [anon_sym_random] = ACTIONS(1468), - [anon_sym_random_boolean] = ACTIONS(1468), - [anon_sym_random_float] = ACTIONS(1468), - [anon_sym_random_integer] = ACTIONS(1468), - [anon_sym_columns] = ACTIONS(1468), - [anon_sym_rows] = ACTIONS(1468), - [anon_sym_reverse] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(2173), + [anon_sym_RBRACE] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(2173), + [anon_sym_RPAREN] = ACTIONS(2173), + [anon_sym_COMMA] = ACTIONS(2173), + [sym_integer] = ACTIONS(2175), + [sym_float] = ACTIONS(2173), + [sym_string] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2175), + [anon_sym_false] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_RBRACK] = ACTIONS(2173), + [anon_sym_COLON] = ACTIONS(2173), + [anon_sym_DOT_DOT] = ACTIONS(2173), + [anon_sym_PLUS] = ACTIONS(2173), + [anon_sym_DASH] = ACTIONS(2175), + [anon_sym_STAR] = ACTIONS(2173), + [anon_sym_SLASH] = ACTIONS(2173), + [anon_sym_PERCENT] = ACTIONS(2173), + [anon_sym_EQ_EQ] = ACTIONS(2173), + [anon_sym_BANG_EQ] = ACTIONS(2173), + [anon_sym_AMP_AMP] = ACTIONS(2173), + [anon_sym_PIPE_PIPE] = ACTIONS(2173), + [anon_sym_GT] = ACTIONS(2175), + [anon_sym_LT] = ACTIONS(2175), + [anon_sym_GT_EQ] = ACTIONS(2173), + [anon_sym_LT_EQ] = ACTIONS(2173), + [anon_sym_if] = ACTIONS(2175), + [anon_sym_elseif] = ACTIONS(2173), + [anon_sym_else] = ACTIONS(2175), + [anon_sym_match] = ACTIONS(2175), + [anon_sym_EQ_GT] = ACTIONS(2173), + [anon_sym_while] = ACTIONS(2175), + [anon_sym_for] = ACTIONS(2175), + [anon_sym_asyncfor] = ACTIONS(2173), + [anon_sym_transform] = ACTIONS(2175), + [anon_sym_filter] = ACTIONS(2175), + [anon_sym_find] = ACTIONS(2175), + [anon_sym_remove] = ACTIONS(2175), + [anon_sym_reduce] = ACTIONS(2175), + [anon_sym_select] = ACTIONS(2175), + [anon_sym_insert] = ACTIONS(2175), + [anon_sym_async] = ACTIONS(2175), + [anon_sym_PIPE] = ACTIONS(2175), + [anon_sym_table] = ACTIONS(2175), + [anon_sym_assert] = ACTIONS(2175), + [anon_sym_assert_equal] = ACTIONS(2175), + [anon_sym_download] = ACTIONS(2175), + [anon_sym_help] = ACTIONS(2175), + [anon_sym_length] = ACTIONS(2175), + [anon_sym_output] = ACTIONS(2175), + [anon_sym_output_error] = ACTIONS(2175), + [anon_sym_type] = ACTIONS(2175), + [anon_sym_append] = ACTIONS(2175), + [anon_sym_metadata] = ACTIONS(2175), + [anon_sym_move] = ACTIONS(2175), + [anon_sym_read] = ACTIONS(2175), + [anon_sym_workdir] = ACTIONS(2175), + [anon_sym_write] = ACTIONS(2175), + [anon_sym_from_json] = ACTIONS(2175), + [anon_sym_to_json] = ACTIONS(2175), + [anon_sym_to_string] = ACTIONS(2175), + [anon_sym_to_float] = ACTIONS(2175), + [anon_sym_bash] = ACTIONS(2175), + [anon_sym_fish] = ACTIONS(2175), + [anon_sym_raw] = ACTIONS(2175), + [anon_sym_sh] = ACTIONS(2175), + [anon_sym_zsh] = ACTIONS(2175), + [anon_sym_random] = ACTIONS(2175), + [anon_sym_random_boolean] = ACTIONS(2175), + [anon_sym_random_float] = ACTIONS(2175), + [anon_sym_random_integer] = ACTIONS(2175), + [anon_sym_columns] = ACTIONS(2175), + [anon_sym_rows] = ACTIONS(2175), + [anon_sym_reverse] = ACTIONS(2175), }, [400] = { - [sym_statement] = STATE(376), - [sym_expression] = STATE(925), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(867), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(980), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(376), - [sym_identifier] = ACTIONS(5), + [ts_builtin_sym_end] = ACTIONS(2177), + [sym_identifier] = ACTIONS(2179), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(3081), - [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_asyncfor] = 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_async] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(49), - [anon_sym_assert] = ACTIONS(51), - [anon_sym_assert_equal] = ACTIONS(51), - [anon_sym_download] = ACTIONS(51), - [anon_sym_help] = ACTIONS(51), - [anon_sym_length] = ACTIONS(51), - [anon_sym_output] = ACTIONS(51), - [anon_sym_output_error] = ACTIONS(51), - [anon_sym_type] = ACTIONS(51), - [anon_sym_append] = ACTIONS(51), - [anon_sym_metadata] = ACTIONS(51), - [anon_sym_move] = ACTIONS(51), - [anon_sym_read] = ACTIONS(51), - [anon_sym_workdir] = ACTIONS(51), - [anon_sym_write] = ACTIONS(51), - [anon_sym_from_json] = ACTIONS(51), - [anon_sym_to_json] = ACTIONS(51), - [anon_sym_to_string] = ACTIONS(51), - [anon_sym_to_float] = ACTIONS(51), - [anon_sym_bash] = ACTIONS(51), - [anon_sym_fish] = ACTIONS(51), - [anon_sym_raw] = ACTIONS(51), - [anon_sym_sh] = ACTIONS(51), - [anon_sym_zsh] = ACTIONS(51), - [anon_sym_random] = ACTIONS(51), - [anon_sym_random_boolean] = ACTIONS(51), - [anon_sym_random_float] = ACTIONS(51), - [anon_sym_random_integer] = ACTIONS(51), - [anon_sym_columns] = ACTIONS(51), - [anon_sym_rows] = ACTIONS(51), - [anon_sym_reverse] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(2177), + [anon_sym_RBRACE] = ACTIONS(2177), + [anon_sym_SEMI] = ACTIONS(2177), + [anon_sym_LPAREN] = ACTIONS(2177), + [anon_sym_RPAREN] = ACTIONS(2177), + [anon_sym_COMMA] = ACTIONS(2177), + [sym_integer] = ACTIONS(2179), + [sym_float] = ACTIONS(2177), + [sym_string] = ACTIONS(2177), + [anon_sym_true] = ACTIONS(2179), + [anon_sym_false] = ACTIONS(2179), + [anon_sym_LBRACK] = ACTIONS(2177), + [anon_sym_RBRACK] = ACTIONS(2177), + [anon_sym_COLON] = ACTIONS(2177), + [anon_sym_DOT_DOT] = ACTIONS(2177), + [anon_sym_PLUS] = ACTIONS(2177), + [anon_sym_DASH] = ACTIONS(2179), + [anon_sym_STAR] = ACTIONS(2177), + [anon_sym_SLASH] = ACTIONS(2177), + [anon_sym_PERCENT] = ACTIONS(2177), + [anon_sym_EQ_EQ] = ACTIONS(2177), + [anon_sym_BANG_EQ] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2177), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_GT] = ACTIONS(2179), + [anon_sym_LT] = ACTIONS(2179), + [anon_sym_GT_EQ] = ACTIONS(2177), + [anon_sym_LT_EQ] = ACTIONS(2177), + [anon_sym_if] = ACTIONS(2179), + [anon_sym_elseif] = ACTIONS(2177), + [anon_sym_else] = ACTIONS(2179), + [anon_sym_match] = ACTIONS(2179), + [anon_sym_EQ_GT] = ACTIONS(2177), + [anon_sym_while] = ACTIONS(2179), + [anon_sym_for] = ACTIONS(2179), + [anon_sym_asyncfor] = ACTIONS(2177), + [anon_sym_transform] = ACTIONS(2179), + [anon_sym_filter] = ACTIONS(2179), + [anon_sym_find] = ACTIONS(2179), + [anon_sym_remove] = ACTIONS(2179), + [anon_sym_reduce] = ACTIONS(2179), + [anon_sym_select] = ACTIONS(2179), + [anon_sym_insert] = ACTIONS(2179), + [anon_sym_async] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2179), + [anon_sym_table] = ACTIONS(2179), + [anon_sym_assert] = ACTIONS(2179), + [anon_sym_assert_equal] = ACTIONS(2179), + [anon_sym_download] = ACTIONS(2179), + [anon_sym_help] = ACTIONS(2179), + [anon_sym_length] = ACTIONS(2179), + [anon_sym_output] = ACTIONS(2179), + [anon_sym_output_error] = ACTIONS(2179), + [anon_sym_type] = ACTIONS(2179), + [anon_sym_append] = ACTIONS(2179), + [anon_sym_metadata] = ACTIONS(2179), + [anon_sym_move] = ACTIONS(2179), + [anon_sym_read] = ACTIONS(2179), + [anon_sym_workdir] = ACTIONS(2179), + [anon_sym_write] = ACTIONS(2179), + [anon_sym_from_json] = ACTIONS(2179), + [anon_sym_to_json] = ACTIONS(2179), + [anon_sym_to_string] = ACTIONS(2179), + [anon_sym_to_float] = ACTIONS(2179), + [anon_sym_bash] = ACTIONS(2179), + [anon_sym_fish] = ACTIONS(2179), + [anon_sym_raw] = ACTIONS(2179), + [anon_sym_sh] = ACTIONS(2179), + [anon_sym_zsh] = ACTIONS(2179), + [anon_sym_random] = ACTIONS(2179), + [anon_sym_random_boolean] = ACTIONS(2179), + [anon_sym_random_float] = ACTIONS(2179), + [anon_sym_random_integer] = ACTIONS(2179), + [anon_sym_columns] = ACTIONS(2179), + [anon_sym_rows] = ACTIONS(2179), + [anon_sym_reverse] = ACTIONS(2179), }, [401] = { - [sym_block] = STATE(704), - [sym_statement] = STATE(45), - [sym_expression] = STATE(795), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_logic] = STATE(706), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(611), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(2015), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(325), - [aux_sym_block_repeat1] = STATE(45), - [sym_identifier] = ACTIONS(149), + [sym_expression] = STATE(567), + [sym__expression_kind] = STATE(585), + [aux_sym__expression_list] = STATE(389), + [sym_value] = STATE(585), + [sym_boolean] = STATE(586), + [sym_list] = STATE(586), + [sym_map] = STATE(586), + [sym_index] = STATE(585), + [sym_math] = STATE(585), + [sym_logic] = STATE(585), + [sym_identifier_list] = STATE(1193), + [sym_table] = STATE(586), + [sym_function] = STATE(586), + [sym_function_call] = STATE(585), + [sym__context_defined_function] = STATE(587), + [sym_built_in_function] = STATE(587), + [sym__built_in_function_name] = STATE(429), + [sym_identifier] = ACTIONS(2089), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_if] = ACTIONS(311), - [anon_sym_match] = ACTIONS(913), - [anon_sym_EQ_GT] = ACTIONS(915), - [anon_sym_while] = ACTIONS(917), - [anon_sym_for] = ACTIONS(919), - [anon_sym_asyncfor] = ACTIONS(921), - [anon_sym_transform] = ACTIONS(923), - [anon_sym_filter] = ACTIONS(925), - [anon_sym_find] = ACTIONS(927), - [anon_sym_remove] = ACTIONS(929), - [anon_sym_reduce] = ACTIONS(931), - [anon_sym_select] = ACTIONS(933), - [anon_sym_insert] = ACTIONS(935), - [anon_sym_async] = ACTIONS(937), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(939), - [anon_sym_assert] = ACTIONS(941), - [anon_sym_assert_equal] = ACTIONS(941), - [anon_sym_download] = ACTIONS(941), - [anon_sym_help] = ACTIONS(941), - [anon_sym_length] = ACTIONS(941), - [anon_sym_output] = ACTIONS(941), - [anon_sym_output_error] = ACTIONS(941), - [anon_sym_type] = ACTIONS(941), - [anon_sym_append] = ACTIONS(941), - [anon_sym_metadata] = ACTIONS(941), - [anon_sym_move] = ACTIONS(941), - [anon_sym_read] = ACTIONS(941), - [anon_sym_workdir] = ACTIONS(941), - [anon_sym_write] = ACTIONS(941), - [anon_sym_from_json] = ACTIONS(941), - [anon_sym_to_json] = ACTIONS(941), - [anon_sym_to_string] = ACTIONS(941), - [anon_sym_to_float] = ACTIONS(941), - [anon_sym_bash] = ACTIONS(941), - [anon_sym_fish] = ACTIONS(941), - [anon_sym_raw] = ACTIONS(941), - [anon_sym_sh] = ACTIONS(941), - [anon_sym_zsh] = ACTIONS(941), - [anon_sym_random] = ACTIONS(941), - [anon_sym_random_boolean] = ACTIONS(941), - [anon_sym_random_float] = ACTIONS(941), - [anon_sym_random_integer] = ACTIONS(941), - [anon_sym_columns] = ACTIONS(941), - [anon_sym_rows] = ACTIONS(941), - [anon_sym_reverse] = ACTIONS(941), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_RBRACE] = ACTIONS(1321), + [anon_sym_SEMI] = ACTIONS(1321), + [anon_sym_LPAREN] = ACTIONS(2049), + [anon_sym_RPAREN] = ACTIONS(1321), + [anon_sym_COMMA] = ACTIONS(1321), + [sym_integer] = ACTIONS(2051), + [sym_float] = ACTIONS(2053), + [sym_string] = ACTIONS(2053), + [anon_sym_true] = ACTIONS(2055), + [anon_sym_false] = ACTIONS(2055), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_RBRACK] = ACTIONS(1321), + [anon_sym_COLON] = ACTIONS(1321), + [anon_sym_PLUS] = ACTIONS(1321), + [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_STAR] = ACTIONS(1321), + [anon_sym_SLASH] = ACTIONS(1321), + [anon_sym_PERCENT] = ACTIONS(1321), + [anon_sym_EQ_EQ] = ACTIONS(1321), + [anon_sym_BANG_EQ] = ACTIONS(1321), + [anon_sym_AMP_AMP] = ACTIONS(1321), + [anon_sym_PIPE_PIPE] = ACTIONS(1321), + [anon_sym_GT] = ACTIONS(1327), + [anon_sym_LT] = ACTIONS(1327), + [anon_sym_GT_EQ] = ACTIONS(1321), + [anon_sym_LT_EQ] = ACTIONS(1321), + [anon_sym_EQ_GT] = ACTIONS(2059), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2061), + [anon_sym_assert] = ACTIONS(1927), + [anon_sym_assert_equal] = ACTIONS(1927), + [anon_sym_download] = ACTIONS(1927), + [anon_sym_help] = ACTIONS(1927), + [anon_sym_length] = ACTIONS(1927), + [anon_sym_output] = ACTIONS(1927), + [anon_sym_output_error] = ACTIONS(1927), + [anon_sym_type] = ACTIONS(1927), + [anon_sym_append] = ACTIONS(1927), + [anon_sym_metadata] = ACTIONS(1927), + [anon_sym_move] = ACTIONS(1927), + [anon_sym_read] = ACTIONS(1927), + [anon_sym_workdir] = ACTIONS(1927), + [anon_sym_write] = ACTIONS(1927), + [anon_sym_from_json] = ACTIONS(1927), + [anon_sym_to_json] = ACTIONS(1927), + [anon_sym_to_string] = ACTIONS(1927), + [anon_sym_to_float] = ACTIONS(1927), + [anon_sym_bash] = ACTIONS(1927), + [anon_sym_fish] = ACTIONS(1927), + [anon_sym_raw] = ACTIONS(1927), + [anon_sym_sh] = ACTIONS(1927), + [anon_sym_zsh] = ACTIONS(1927), + [anon_sym_random] = ACTIONS(1927), + [anon_sym_random_boolean] = ACTIONS(1927), + [anon_sym_random_float] = ACTIONS(1927), + [anon_sym_random_integer] = ACTIONS(1927), + [anon_sym_columns] = ACTIONS(1927), + [anon_sym_rows] = ACTIONS(1927), + [anon_sym_reverse] = ACTIONS(1927), }, [402] = { - [sym_block] = STATE(622), - [sym_statement] = STATE(21), - [sym_expression] = STATE(593), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_logic] = STATE(631), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(584), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(1776), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(286), - [aux_sym_block_repeat1] = STATE(21), - [sym_identifier] = ACTIONS(55), + [sym_math_operator] = STATE(908), + [sym_logic_operator] = STATE(909), + [ts_builtin_sym_end] = ACTIONS(2041), + [sym_identifier] = ACTIONS(2043), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(59), - [sym_integer] = ACTIONS(61), - [sym_float] = ACTIONS(63), - [sym_string] = ACTIONS(63), - [anon_sym_true] = ACTIONS(65), - [anon_sym_false] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_if] = ACTIONS(197), - [anon_sym_match] = ACTIONS(199), - [anon_sym_EQ_GT] = ACTIONS(201), - [anon_sym_while] = ACTIONS(203), - [anon_sym_for] = ACTIONS(205), - [anon_sym_asyncfor] = ACTIONS(207), - [anon_sym_transform] = ACTIONS(209), - [anon_sym_filter] = ACTIONS(211), - [anon_sym_find] = ACTIONS(213), - [anon_sym_remove] = ACTIONS(215), - [anon_sym_reduce] = ACTIONS(217), - [anon_sym_select] = ACTIONS(219), - [anon_sym_insert] = ACTIONS(221), - [anon_sym_async] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(225), - [anon_sym_assert] = ACTIONS(227), - [anon_sym_assert_equal] = ACTIONS(227), - [anon_sym_download] = ACTIONS(227), - [anon_sym_help] = ACTIONS(227), - [anon_sym_length] = ACTIONS(227), - [anon_sym_output] = ACTIONS(227), - [anon_sym_output_error] = ACTIONS(227), - [anon_sym_type] = ACTIONS(227), - [anon_sym_append] = ACTIONS(227), - [anon_sym_metadata] = ACTIONS(227), - [anon_sym_move] = ACTIONS(227), - [anon_sym_read] = ACTIONS(227), - [anon_sym_workdir] = ACTIONS(227), - [anon_sym_write] = ACTIONS(227), - [anon_sym_from_json] = ACTIONS(227), - [anon_sym_to_json] = ACTIONS(227), - [anon_sym_to_string] = ACTIONS(227), - [anon_sym_to_float] = ACTIONS(227), - [anon_sym_bash] = ACTIONS(227), - [anon_sym_fish] = ACTIONS(227), - [anon_sym_raw] = ACTIONS(227), - [anon_sym_sh] = ACTIONS(227), - [anon_sym_zsh] = ACTIONS(227), - [anon_sym_random] = ACTIONS(227), - [anon_sym_random_boolean] = ACTIONS(227), - [anon_sym_random_float] = ACTIONS(227), - [anon_sym_random_integer] = ACTIONS(227), - [anon_sym_columns] = ACTIONS(227), - [anon_sym_rows] = ACTIONS(227), - [anon_sym_reverse] = ACTIONS(227), + [anon_sym_LBRACE] = ACTIONS(2041), + [anon_sym_RBRACE] = ACTIONS(2041), + [anon_sym_SEMI] = ACTIONS(2181), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_RPAREN] = ACTIONS(2041), + [anon_sym_COMMA] = ACTIONS(2041), + [sym_integer] = ACTIONS(2043), + [sym_float] = ACTIONS(2041), + [sym_string] = ACTIONS(2041), + [anon_sym_true] = ACTIONS(2043), + [anon_sym_false] = ACTIONS(2043), + [anon_sym_LBRACK] = ACTIONS(2041), + [anon_sym_RBRACK] = ACTIONS(2041), + [anon_sym_COLON] = ACTIONS(191), + [anon_sym_DOT_DOT] = ACTIONS(2041), + [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(2043), + [anon_sym_match] = ACTIONS(2043), + [anon_sym_EQ_GT] = ACTIONS(2041), + [anon_sym_while] = ACTIONS(2043), + [anon_sym_for] = ACTIONS(2043), + [anon_sym_asyncfor] = ACTIONS(2041), + [anon_sym_transform] = ACTIONS(2043), + [anon_sym_filter] = ACTIONS(2043), + [anon_sym_find] = ACTIONS(2043), + [anon_sym_remove] = ACTIONS(2043), + [anon_sym_reduce] = ACTIONS(2043), + [anon_sym_select] = ACTIONS(2043), + [anon_sym_insert] = ACTIONS(2043), + [anon_sym_async] = ACTIONS(2043), + [anon_sym_PIPE] = ACTIONS(2043), + [anon_sym_table] = ACTIONS(2043), + [anon_sym_assert] = ACTIONS(2043), + [anon_sym_assert_equal] = ACTIONS(2043), + [anon_sym_download] = ACTIONS(2043), + [anon_sym_help] = ACTIONS(2043), + [anon_sym_length] = ACTIONS(2043), + [anon_sym_output] = ACTIONS(2043), + [anon_sym_output_error] = ACTIONS(2043), + [anon_sym_type] = ACTIONS(2043), + [anon_sym_append] = ACTIONS(2043), + [anon_sym_metadata] = ACTIONS(2043), + [anon_sym_move] = ACTIONS(2043), + [anon_sym_read] = ACTIONS(2043), + [anon_sym_workdir] = ACTIONS(2043), + [anon_sym_write] = ACTIONS(2043), + [anon_sym_from_json] = ACTIONS(2043), + [anon_sym_to_json] = ACTIONS(2043), + [anon_sym_to_string] = ACTIONS(2043), + [anon_sym_to_float] = ACTIONS(2043), + [anon_sym_bash] = ACTIONS(2043), + [anon_sym_fish] = ACTIONS(2043), + [anon_sym_raw] = ACTIONS(2043), + [anon_sym_sh] = ACTIONS(2043), + [anon_sym_zsh] = ACTIONS(2043), + [anon_sym_random] = ACTIONS(2043), + [anon_sym_random_boolean] = ACTIONS(2043), + [anon_sym_random_float] = ACTIONS(2043), + [anon_sym_random_integer] = ACTIONS(2043), + [anon_sym_columns] = ACTIONS(2043), + [anon_sym_rows] = ACTIONS(2043), + [anon_sym_reverse] = ACTIONS(2043), }, [403] = { - [sym_block] = STATE(688), - [sym_statement] = STATE(45), - [sym_expression] = STATE(795), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_logic] = STATE(706), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(611), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(2015), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(325), - [aux_sym_block_repeat1] = STATE(45), - [sym_identifier] = ACTIONS(149), + [ts_builtin_sym_end] = ACTIONS(2183), + [sym_identifier] = ACTIONS(2185), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_if] = ACTIONS(311), - [anon_sym_match] = ACTIONS(913), - [anon_sym_EQ_GT] = ACTIONS(915), - [anon_sym_while] = ACTIONS(917), - [anon_sym_for] = ACTIONS(919), - [anon_sym_asyncfor] = ACTIONS(921), - [anon_sym_transform] = ACTIONS(923), - [anon_sym_filter] = ACTIONS(925), - [anon_sym_find] = ACTIONS(927), - [anon_sym_remove] = ACTIONS(929), - [anon_sym_reduce] = ACTIONS(931), - [anon_sym_select] = ACTIONS(933), - [anon_sym_insert] = ACTIONS(935), - [anon_sym_async] = ACTIONS(937), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(939), - [anon_sym_assert] = ACTIONS(941), - [anon_sym_assert_equal] = ACTIONS(941), - [anon_sym_download] = ACTIONS(941), - [anon_sym_help] = ACTIONS(941), - [anon_sym_length] = ACTIONS(941), - [anon_sym_output] = ACTIONS(941), - [anon_sym_output_error] = ACTIONS(941), - [anon_sym_type] = ACTIONS(941), - [anon_sym_append] = ACTIONS(941), - [anon_sym_metadata] = ACTIONS(941), - [anon_sym_move] = ACTIONS(941), - [anon_sym_read] = ACTIONS(941), - [anon_sym_workdir] = ACTIONS(941), - [anon_sym_write] = ACTIONS(941), - [anon_sym_from_json] = ACTIONS(941), - [anon_sym_to_json] = ACTIONS(941), - [anon_sym_to_string] = ACTIONS(941), - [anon_sym_to_float] = ACTIONS(941), - [anon_sym_bash] = ACTIONS(941), - [anon_sym_fish] = ACTIONS(941), - [anon_sym_raw] = ACTIONS(941), - [anon_sym_sh] = ACTIONS(941), - [anon_sym_zsh] = ACTIONS(941), - [anon_sym_random] = ACTIONS(941), - [anon_sym_random_boolean] = ACTIONS(941), - [anon_sym_random_float] = ACTIONS(941), - [anon_sym_random_integer] = ACTIONS(941), - [anon_sym_columns] = ACTIONS(941), - [anon_sym_rows] = ACTIONS(941), - [anon_sym_reverse] = ACTIONS(941), + [anon_sym_LBRACE] = ACTIONS(2183), + [anon_sym_RBRACE] = ACTIONS(2183), + [anon_sym_SEMI] = ACTIONS(2183), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_RPAREN] = ACTIONS(2183), + [anon_sym_COMMA] = ACTIONS(2183), + [sym_integer] = ACTIONS(2185), + [sym_float] = ACTIONS(2183), + [sym_string] = ACTIONS(2183), + [anon_sym_true] = ACTIONS(2185), + [anon_sym_false] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2183), + [anon_sym_RBRACK] = ACTIONS(2183), + [anon_sym_COLON] = ACTIONS(2183), + [anon_sym_DOT_DOT] = ACTIONS(2183), + [anon_sym_PLUS] = ACTIONS(2183), + [anon_sym_DASH] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(2183), + [anon_sym_SLASH] = ACTIONS(2183), + [anon_sym_PERCENT] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2183), + [anon_sym_BANG_EQ] = ACTIONS(2183), + [anon_sym_AMP_AMP] = ACTIONS(2183), + [anon_sym_PIPE_PIPE] = ACTIONS(2183), + [anon_sym_GT] = ACTIONS(2185), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_GT_EQ] = ACTIONS(2183), + [anon_sym_LT_EQ] = ACTIONS(2183), + [anon_sym_if] = ACTIONS(2185), + [anon_sym_elseif] = ACTIONS(2183), + [anon_sym_else] = ACTIONS(2185), + [anon_sym_match] = ACTIONS(2185), + [anon_sym_EQ_GT] = ACTIONS(2183), + [anon_sym_while] = ACTIONS(2185), + [anon_sym_for] = ACTIONS(2185), + [anon_sym_asyncfor] = ACTIONS(2183), + [anon_sym_transform] = ACTIONS(2185), + [anon_sym_filter] = ACTIONS(2185), + [anon_sym_find] = ACTIONS(2185), + [anon_sym_remove] = ACTIONS(2185), + [anon_sym_reduce] = ACTIONS(2185), + [anon_sym_select] = ACTIONS(2185), + [anon_sym_insert] = ACTIONS(2185), + [anon_sym_async] = ACTIONS(2185), + [anon_sym_PIPE] = ACTIONS(2185), + [anon_sym_table] = ACTIONS(2185), + [anon_sym_assert] = ACTIONS(2185), + [anon_sym_assert_equal] = ACTIONS(2185), + [anon_sym_download] = ACTIONS(2185), + [anon_sym_help] = ACTIONS(2185), + [anon_sym_length] = ACTIONS(2185), + [anon_sym_output] = ACTIONS(2185), + [anon_sym_output_error] = ACTIONS(2185), + [anon_sym_type] = ACTIONS(2185), + [anon_sym_append] = ACTIONS(2185), + [anon_sym_metadata] = ACTIONS(2185), + [anon_sym_move] = ACTIONS(2185), + [anon_sym_read] = ACTIONS(2185), + [anon_sym_workdir] = ACTIONS(2185), + [anon_sym_write] = ACTIONS(2185), + [anon_sym_from_json] = ACTIONS(2185), + [anon_sym_to_json] = ACTIONS(2185), + [anon_sym_to_string] = ACTIONS(2185), + [anon_sym_to_float] = ACTIONS(2185), + [anon_sym_bash] = ACTIONS(2185), + [anon_sym_fish] = ACTIONS(2185), + [anon_sym_raw] = ACTIONS(2185), + [anon_sym_sh] = ACTIONS(2185), + [anon_sym_zsh] = ACTIONS(2185), + [anon_sym_random] = ACTIONS(2185), + [anon_sym_random_boolean] = ACTIONS(2185), + [anon_sym_random_float] = ACTIONS(2185), + [anon_sym_random_integer] = ACTIONS(2185), + [anon_sym_columns] = ACTIONS(2185), + [anon_sym_rows] = ACTIONS(2185), + [anon_sym_reverse] = ACTIONS(2185), }, [404] = { - [sym_block] = STATE(604), - [sym_statement] = STATE(21), - [sym_expression] = STATE(593), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_logic] = STATE(631), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(584), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(1776), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(286), - [aux_sym_block_repeat1] = STATE(21), - [sym_identifier] = ACTIONS(55), + [ts_builtin_sym_end] = ACTIONS(2187), + [sym_identifier] = ACTIONS(2189), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(59), - [sym_integer] = ACTIONS(61), - [sym_float] = ACTIONS(63), - [sym_string] = ACTIONS(63), - [anon_sym_true] = ACTIONS(65), - [anon_sym_false] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_if] = ACTIONS(197), - [anon_sym_match] = ACTIONS(199), - [anon_sym_EQ_GT] = ACTIONS(201), - [anon_sym_while] = ACTIONS(203), - [anon_sym_for] = ACTIONS(205), - [anon_sym_asyncfor] = ACTIONS(207), - [anon_sym_transform] = ACTIONS(209), - [anon_sym_filter] = ACTIONS(211), - [anon_sym_find] = ACTIONS(213), - [anon_sym_remove] = ACTIONS(215), - [anon_sym_reduce] = ACTIONS(217), - [anon_sym_select] = ACTIONS(219), - [anon_sym_insert] = ACTIONS(221), - [anon_sym_async] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(225), - [anon_sym_assert] = ACTIONS(227), - [anon_sym_assert_equal] = ACTIONS(227), - [anon_sym_download] = ACTIONS(227), - [anon_sym_help] = ACTIONS(227), - [anon_sym_length] = ACTIONS(227), - [anon_sym_output] = ACTIONS(227), - [anon_sym_output_error] = ACTIONS(227), - [anon_sym_type] = ACTIONS(227), - [anon_sym_append] = ACTIONS(227), - [anon_sym_metadata] = ACTIONS(227), - [anon_sym_move] = ACTIONS(227), - [anon_sym_read] = ACTIONS(227), - [anon_sym_workdir] = ACTIONS(227), - [anon_sym_write] = ACTIONS(227), - [anon_sym_from_json] = ACTIONS(227), - [anon_sym_to_json] = ACTIONS(227), - [anon_sym_to_string] = ACTIONS(227), - [anon_sym_to_float] = ACTIONS(227), - [anon_sym_bash] = ACTIONS(227), - [anon_sym_fish] = ACTIONS(227), - [anon_sym_raw] = ACTIONS(227), - [anon_sym_sh] = ACTIONS(227), - [anon_sym_zsh] = ACTIONS(227), - [anon_sym_random] = ACTIONS(227), - [anon_sym_random_boolean] = ACTIONS(227), - [anon_sym_random_float] = ACTIONS(227), - [anon_sym_random_integer] = ACTIONS(227), - [anon_sym_columns] = ACTIONS(227), - [anon_sym_rows] = ACTIONS(227), - [anon_sym_reverse] = ACTIONS(227), + [anon_sym_LBRACE] = ACTIONS(2187), + [anon_sym_RBRACE] = ACTIONS(2187), + [anon_sym_SEMI] = ACTIONS(2187), + [anon_sym_LPAREN] = ACTIONS(2187), + [anon_sym_RPAREN] = ACTIONS(2187), + [anon_sym_COMMA] = ACTIONS(2187), + [sym_integer] = ACTIONS(2189), + [sym_float] = ACTIONS(2187), + [sym_string] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(2189), + [anon_sym_false] = ACTIONS(2189), + [anon_sym_LBRACK] = ACTIONS(2187), + [anon_sym_RBRACK] = ACTIONS(2187), + [anon_sym_COLON] = ACTIONS(2187), + [anon_sym_DOT_DOT] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2187), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_STAR] = ACTIONS(2187), + [anon_sym_SLASH] = ACTIONS(2187), + [anon_sym_PERCENT] = ACTIONS(2187), + [anon_sym_EQ_EQ] = ACTIONS(2187), + [anon_sym_BANG_EQ] = ACTIONS(2187), + [anon_sym_AMP_AMP] = ACTIONS(2187), + [anon_sym_PIPE_PIPE] = ACTIONS(2187), + [anon_sym_GT] = ACTIONS(2189), + [anon_sym_LT] = ACTIONS(2189), + [anon_sym_GT_EQ] = ACTIONS(2187), + [anon_sym_LT_EQ] = ACTIONS(2187), + [anon_sym_if] = ACTIONS(2189), + [anon_sym_elseif] = ACTIONS(2187), + [anon_sym_else] = ACTIONS(2189), + [anon_sym_match] = ACTIONS(2189), + [anon_sym_EQ_GT] = ACTIONS(2187), + [anon_sym_while] = ACTIONS(2189), + [anon_sym_for] = ACTIONS(2189), + [anon_sym_asyncfor] = ACTIONS(2187), + [anon_sym_transform] = ACTIONS(2189), + [anon_sym_filter] = ACTIONS(2189), + [anon_sym_find] = ACTIONS(2189), + [anon_sym_remove] = ACTIONS(2189), + [anon_sym_reduce] = ACTIONS(2189), + [anon_sym_select] = ACTIONS(2189), + [anon_sym_insert] = ACTIONS(2189), + [anon_sym_async] = ACTIONS(2189), + [anon_sym_PIPE] = ACTIONS(2189), + [anon_sym_table] = ACTIONS(2189), + [anon_sym_assert] = ACTIONS(2189), + [anon_sym_assert_equal] = ACTIONS(2189), + [anon_sym_download] = ACTIONS(2189), + [anon_sym_help] = ACTIONS(2189), + [anon_sym_length] = ACTIONS(2189), + [anon_sym_output] = ACTIONS(2189), + [anon_sym_output_error] = ACTIONS(2189), + [anon_sym_type] = ACTIONS(2189), + [anon_sym_append] = ACTIONS(2189), + [anon_sym_metadata] = ACTIONS(2189), + [anon_sym_move] = ACTIONS(2189), + [anon_sym_read] = ACTIONS(2189), + [anon_sym_workdir] = ACTIONS(2189), + [anon_sym_write] = ACTIONS(2189), + [anon_sym_from_json] = ACTIONS(2189), + [anon_sym_to_json] = ACTIONS(2189), + [anon_sym_to_string] = ACTIONS(2189), + [anon_sym_to_float] = ACTIONS(2189), + [anon_sym_bash] = ACTIONS(2189), + [anon_sym_fish] = ACTIONS(2189), + [anon_sym_raw] = ACTIONS(2189), + [anon_sym_sh] = ACTIONS(2189), + [anon_sym_zsh] = ACTIONS(2189), + [anon_sym_random] = ACTIONS(2189), + [anon_sym_random_boolean] = ACTIONS(2189), + [anon_sym_random_float] = ACTIONS(2189), + [anon_sym_random_integer] = ACTIONS(2189), + [anon_sym_columns] = ACTIONS(2189), + [anon_sym_rows] = ACTIONS(2189), + [anon_sym_reverse] = ACTIONS(2189), }, [405] = { - [sym_block] = STATE(851), - [sym_statement] = STATE(39), - [sym_expression] = STATE(756), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(657), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(627), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1752), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(338), - [aux_sym_block_repeat1] = STATE(39), - [sym_identifier] = ACTIONS(875), + [sym_math_operator] = STATE(886), + [sym_logic_operator] = STATE(887), + [ts_builtin_sym_end] = ACTIONS(2075), + [sym_identifier] = ACTIONS(2077), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(877), - [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(245), - [anon_sym_match] = ACTIONS(881), - [anon_sym_EQ_GT] = ACTIONS(883), - [anon_sym_while] = ACTIONS(885), - [anon_sym_for] = ACTIONS(887), - [anon_sym_asyncfor] = ACTIONS(889), - [anon_sym_transform] = ACTIONS(891), - [anon_sym_filter] = ACTIONS(893), - [anon_sym_find] = ACTIONS(895), - [anon_sym_remove] = ACTIONS(897), - [anon_sym_reduce] = ACTIONS(899), - [anon_sym_select] = ACTIONS(901), - [anon_sym_insert] = ACTIONS(903), - [anon_sym_async] = ACTIONS(905), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(907), - [anon_sym_assert] = ACTIONS(909), - [anon_sym_assert_equal] = ACTIONS(909), - [anon_sym_download] = ACTIONS(909), - [anon_sym_help] = ACTIONS(909), - [anon_sym_length] = ACTIONS(909), - [anon_sym_output] = ACTIONS(909), - [anon_sym_output_error] = ACTIONS(909), - [anon_sym_type] = ACTIONS(909), - [anon_sym_append] = ACTIONS(909), - [anon_sym_metadata] = ACTIONS(909), - [anon_sym_move] = ACTIONS(909), - [anon_sym_read] = ACTIONS(909), - [anon_sym_workdir] = ACTIONS(909), - [anon_sym_write] = ACTIONS(909), - [anon_sym_from_json] = ACTIONS(909), - [anon_sym_to_json] = ACTIONS(909), - [anon_sym_to_string] = ACTIONS(909), - [anon_sym_to_float] = ACTIONS(909), - [anon_sym_bash] = ACTIONS(909), - [anon_sym_fish] = ACTIONS(909), - [anon_sym_raw] = ACTIONS(909), - [anon_sym_sh] = ACTIONS(909), - [anon_sym_zsh] = ACTIONS(909), - [anon_sym_random] = ACTIONS(909), - [anon_sym_random_boolean] = ACTIONS(909), - [anon_sym_random_float] = ACTIONS(909), - [anon_sym_random_integer] = ACTIONS(909), - [anon_sym_columns] = ACTIONS(909), - [anon_sym_rows] = ACTIONS(909), - [anon_sym_reverse] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(2075), + [anon_sym_RBRACE] = ACTIONS(2075), + [anon_sym_SEMI] = ACTIONS(2075), + [anon_sym_LPAREN] = ACTIONS(2075), + [anon_sym_RPAREN] = ACTIONS(2075), + [sym_integer] = ACTIONS(2077), + [sym_float] = ACTIONS(2075), + [sym_string] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_LBRACK] = ACTIONS(2075), + [anon_sym_COLON] = ACTIONS(153), + [anon_sym_DOT_DOT] = ACTIONS(2075), + [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(2077), + [anon_sym_elseif] = ACTIONS(2075), + [anon_sym_else] = ACTIONS(2077), + [anon_sym_match] = ACTIONS(2077), + [anon_sym_EQ_GT] = ACTIONS(2075), + [anon_sym_while] = ACTIONS(2077), + [anon_sym_for] = ACTIONS(2077), + [anon_sym_asyncfor] = ACTIONS(2075), + [anon_sym_transform] = ACTIONS(2077), + [anon_sym_filter] = ACTIONS(2077), + [anon_sym_find] = ACTIONS(2077), + [anon_sym_remove] = ACTIONS(2077), + [anon_sym_reduce] = ACTIONS(2077), + [anon_sym_select] = ACTIONS(2077), + [anon_sym_insert] = ACTIONS(2077), + [anon_sym_async] = ACTIONS(2077), + [anon_sym_PIPE] = ACTIONS(2077), + [anon_sym_table] = ACTIONS(2077), + [anon_sym_assert] = ACTIONS(2077), + [anon_sym_assert_equal] = ACTIONS(2077), + [anon_sym_download] = ACTIONS(2077), + [anon_sym_help] = ACTIONS(2077), + [anon_sym_length] = ACTIONS(2077), + [anon_sym_output] = ACTIONS(2077), + [anon_sym_output_error] = ACTIONS(2077), + [anon_sym_type] = ACTIONS(2077), + [anon_sym_append] = ACTIONS(2077), + [anon_sym_metadata] = ACTIONS(2077), + [anon_sym_move] = ACTIONS(2077), + [anon_sym_read] = ACTIONS(2077), + [anon_sym_workdir] = ACTIONS(2077), + [anon_sym_write] = ACTIONS(2077), + [anon_sym_from_json] = ACTIONS(2077), + [anon_sym_to_json] = ACTIONS(2077), + [anon_sym_to_string] = ACTIONS(2077), + [anon_sym_to_float] = ACTIONS(2077), + [anon_sym_bash] = ACTIONS(2077), + [anon_sym_fish] = ACTIONS(2077), + [anon_sym_raw] = ACTIONS(2077), + [anon_sym_sh] = ACTIONS(2077), + [anon_sym_zsh] = ACTIONS(2077), + [anon_sym_random] = ACTIONS(2077), + [anon_sym_random_boolean] = ACTIONS(2077), + [anon_sym_random_float] = ACTIONS(2077), + [anon_sym_random_integer] = ACTIONS(2077), + [anon_sym_columns] = ACTIONS(2077), + [anon_sym_rows] = ACTIONS(2077), + [anon_sym_reverse] = ACTIONS(2077), }, [406] = { - [sym_block] = STATE(1055), - [sym_statement] = STATE(382), - [sym_expression] = STATE(934), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(842), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(983), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [aux_sym_block_repeat1] = STATE(382), - [sym_identifier] = ACTIONS(2162), + [sym_math_operator] = STATE(886), + [sym_logic_operator] = STATE(887), + [ts_builtin_sym_end] = ACTIONS(2079), + [sym_identifier] = ACTIONS(2081), [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(1570), - [anon_sym_match] = ACTIONS(2166), - [anon_sym_EQ_GT] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(2168), - [anon_sym_for] = ACTIONS(2170), - [anon_sym_asyncfor] = ACTIONS(2172), - [anon_sym_transform] = ACTIONS(2174), - [anon_sym_filter] = ACTIONS(2176), - [anon_sym_find] = ACTIONS(2178), - [anon_sym_remove] = ACTIONS(2180), - [anon_sym_reduce] = ACTIONS(2182), - [anon_sym_select] = ACTIONS(2184), - [anon_sym_insert] = ACTIONS(1224), - [anon_sym_async] = ACTIONS(2186), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(1228), - [anon_sym_assert] = ACTIONS(1230), - [anon_sym_assert_equal] = ACTIONS(1230), - [anon_sym_download] = ACTIONS(1230), - [anon_sym_help] = ACTIONS(1230), - [anon_sym_length] = ACTIONS(1230), - [anon_sym_output] = ACTIONS(1230), - [anon_sym_output_error] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_append] = ACTIONS(1230), - [anon_sym_metadata] = ACTIONS(1230), - [anon_sym_move] = ACTIONS(1230), - [anon_sym_read] = ACTIONS(1230), - [anon_sym_workdir] = ACTIONS(1230), - [anon_sym_write] = ACTIONS(1230), - [anon_sym_from_json] = ACTIONS(1230), - [anon_sym_to_json] = ACTIONS(1230), - [anon_sym_to_string] = ACTIONS(1230), - [anon_sym_to_float] = ACTIONS(1230), - [anon_sym_bash] = ACTIONS(1230), - [anon_sym_fish] = ACTIONS(1230), - [anon_sym_raw] = ACTIONS(1230), - [anon_sym_sh] = ACTIONS(1230), - [anon_sym_zsh] = ACTIONS(1230), - [anon_sym_random] = ACTIONS(1230), - [anon_sym_random_boolean] = ACTIONS(1230), - [anon_sym_random_float] = ACTIONS(1230), - [anon_sym_random_integer] = ACTIONS(1230), - [anon_sym_columns] = ACTIONS(1230), - [anon_sym_rows] = ACTIONS(1230), - [anon_sym_reverse] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(2079), + [anon_sym_RBRACE] = ACTIONS(2079), + [anon_sym_SEMI] = ACTIONS(2079), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_RPAREN] = ACTIONS(2079), + [sym_integer] = ACTIONS(2081), + [sym_float] = ACTIONS(2079), + [sym_string] = ACTIONS(2079), + [anon_sym_true] = ACTIONS(2081), + [anon_sym_false] = ACTIONS(2081), + [anon_sym_LBRACK] = ACTIONS(2079), + [anon_sym_COLON] = ACTIONS(153), + [anon_sym_DOT_DOT] = ACTIONS(2079), + [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(2081), + [anon_sym_elseif] = ACTIONS(2079), + [anon_sym_else] = ACTIONS(2081), + [anon_sym_match] = ACTIONS(2081), + [anon_sym_EQ_GT] = ACTIONS(2079), + [anon_sym_while] = ACTIONS(2081), + [anon_sym_for] = ACTIONS(2081), + [anon_sym_asyncfor] = ACTIONS(2079), + [anon_sym_transform] = ACTIONS(2081), + [anon_sym_filter] = ACTIONS(2081), + [anon_sym_find] = ACTIONS(2081), + [anon_sym_remove] = ACTIONS(2081), + [anon_sym_reduce] = ACTIONS(2081), + [anon_sym_select] = ACTIONS(2081), + [anon_sym_insert] = ACTIONS(2081), + [anon_sym_async] = ACTIONS(2081), + [anon_sym_PIPE] = ACTIONS(2081), + [anon_sym_table] = ACTIONS(2081), + [anon_sym_assert] = ACTIONS(2081), + [anon_sym_assert_equal] = ACTIONS(2081), + [anon_sym_download] = ACTIONS(2081), + [anon_sym_help] = ACTIONS(2081), + [anon_sym_length] = ACTIONS(2081), + [anon_sym_output] = ACTIONS(2081), + [anon_sym_output_error] = ACTIONS(2081), + [anon_sym_type] = ACTIONS(2081), + [anon_sym_append] = ACTIONS(2081), + [anon_sym_metadata] = ACTIONS(2081), + [anon_sym_move] = ACTIONS(2081), + [anon_sym_read] = ACTIONS(2081), + [anon_sym_workdir] = ACTIONS(2081), + [anon_sym_write] = ACTIONS(2081), + [anon_sym_from_json] = ACTIONS(2081), + [anon_sym_to_json] = ACTIONS(2081), + [anon_sym_to_string] = ACTIONS(2081), + [anon_sym_to_float] = ACTIONS(2081), + [anon_sym_bash] = ACTIONS(2081), + [anon_sym_fish] = ACTIONS(2081), + [anon_sym_raw] = ACTIONS(2081), + [anon_sym_sh] = ACTIONS(2081), + [anon_sym_zsh] = ACTIONS(2081), + [anon_sym_random] = ACTIONS(2081), + [anon_sym_random_boolean] = ACTIONS(2081), + [anon_sym_random_float] = ACTIONS(2081), + [anon_sym_random_integer] = ACTIONS(2081), + [anon_sym_columns] = ACTIONS(2081), + [anon_sym_rows] = ACTIONS(2081), + [anon_sym_reverse] = ACTIONS(2081), }, [407] = { - [sym_block] = STATE(1545), - [sym_statement] = STATE(107), - [sym_expression] = STATE(824), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(739), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(653), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [aux_sym_block_repeat1] = STATE(107), - [sym_identifier] = ACTIONS(1198), + [ts_builtin_sym_end] = ACTIONS(2191), + [sym_identifier] = ACTIONS(2193), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2164), - [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(627), - [anon_sym_match] = ACTIONS(1202), - [anon_sym_EQ_GT] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(1206), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_asyncfor] = ACTIONS(1210), - [anon_sym_transform] = ACTIONS(1212), - [anon_sym_filter] = ACTIONS(1214), - [anon_sym_find] = ACTIONS(1216), - [anon_sym_remove] = ACTIONS(1218), - [anon_sym_reduce] = ACTIONS(1220), - [anon_sym_select] = ACTIONS(1222), - [anon_sym_insert] = ACTIONS(1224), - [anon_sym_async] = ACTIONS(1226), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(1228), - [anon_sym_assert] = ACTIONS(1230), - [anon_sym_assert_equal] = ACTIONS(1230), - [anon_sym_download] = ACTIONS(1230), - [anon_sym_help] = ACTIONS(1230), - [anon_sym_length] = ACTIONS(1230), - [anon_sym_output] = ACTIONS(1230), - [anon_sym_output_error] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_append] = ACTIONS(1230), - [anon_sym_metadata] = ACTIONS(1230), - [anon_sym_move] = ACTIONS(1230), - [anon_sym_read] = ACTIONS(1230), - [anon_sym_workdir] = ACTIONS(1230), - [anon_sym_write] = ACTIONS(1230), - [anon_sym_from_json] = ACTIONS(1230), - [anon_sym_to_json] = ACTIONS(1230), - [anon_sym_to_string] = ACTIONS(1230), - [anon_sym_to_float] = ACTIONS(1230), - [anon_sym_bash] = ACTIONS(1230), - [anon_sym_fish] = ACTIONS(1230), - [anon_sym_raw] = ACTIONS(1230), - [anon_sym_sh] = ACTIONS(1230), - [anon_sym_zsh] = ACTIONS(1230), - [anon_sym_random] = ACTIONS(1230), - [anon_sym_random_boolean] = ACTIONS(1230), - [anon_sym_random_float] = ACTIONS(1230), - [anon_sym_random_integer] = ACTIONS(1230), - [anon_sym_columns] = ACTIONS(1230), - [anon_sym_rows] = ACTIONS(1230), - [anon_sym_reverse] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_RBRACE] = ACTIONS(2191), + [anon_sym_SEMI] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_RPAREN] = ACTIONS(2191), + [anon_sym_COMMA] = ACTIONS(2191), + [sym_integer] = ACTIONS(2193), + [sym_float] = ACTIONS(2191), + [sym_string] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(2193), + [anon_sym_false] = ACTIONS(2193), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_RBRACK] = ACTIONS(2191), + [anon_sym_COLON] = ACTIONS(2191), + [anon_sym_DOT_DOT] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_DASH] = ACTIONS(2193), + [anon_sym_STAR] = ACTIONS(2191), + [anon_sym_SLASH] = ACTIONS(2191), + [anon_sym_PERCENT] = ACTIONS(2191), + [anon_sym_EQ_EQ] = ACTIONS(2191), + [anon_sym_BANG_EQ] = ACTIONS(2191), + [anon_sym_AMP_AMP] = ACTIONS(2191), + [anon_sym_PIPE_PIPE] = ACTIONS(2191), + [anon_sym_GT] = ACTIONS(2193), + [anon_sym_LT] = ACTIONS(2193), + [anon_sym_GT_EQ] = ACTIONS(2191), + [anon_sym_LT_EQ] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2193), + [anon_sym_elseif] = ACTIONS(2191), + [anon_sym_else] = ACTIONS(2193), + [anon_sym_match] = ACTIONS(2193), + [anon_sym_EQ_GT] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2193), + [anon_sym_for] = ACTIONS(2193), + [anon_sym_asyncfor] = ACTIONS(2191), + [anon_sym_transform] = ACTIONS(2193), + [anon_sym_filter] = ACTIONS(2193), + [anon_sym_find] = ACTIONS(2193), + [anon_sym_remove] = ACTIONS(2193), + [anon_sym_reduce] = ACTIONS(2193), + [anon_sym_select] = ACTIONS(2193), + [anon_sym_insert] = ACTIONS(2193), + [anon_sym_async] = ACTIONS(2193), + [anon_sym_PIPE] = ACTIONS(2193), + [anon_sym_table] = ACTIONS(2193), + [anon_sym_assert] = ACTIONS(2193), + [anon_sym_assert_equal] = ACTIONS(2193), + [anon_sym_download] = ACTIONS(2193), + [anon_sym_help] = ACTIONS(2193), + [anon_sym_length] = ACTIONS(2193), + [anon_sym_output] = ACTIONS(2193), + [anon_sym_output_error] = ACTIONS(2193), + [anon_sym_type] = ACTIONS(2193), + [anon_sym_append] = ACTIONS(2193), + [anon_sym_metadata] = ACTIONS(2193), + [anon_sym_move] = ACTIONS(2193), + [anon_sym_read] = ACTIONS(2193), + [anon_sym_workdir] = ACTIONS(2193), + [anon_sym_write] = ACTIONS(2193), + [anon_sym_from_json] = ACTIONS(2193), + [anon_sym_to_json] = ACTIONS(2193), + [anon_sym_to_string] = ACTIONS(2193), + [anon_sym_to_float] = ACTIONS(2193), + [anon_sym_bash] = ACTIONS(2193), + [anon_sym_fish] = ACTIONS(2193), + [anon_sym_raw] = ACTIONS(2193), + [anon_sym_sh] = ACTIONS(2193), + [anon_sym_zsh] = ACTIONS(2193), + [anon_sym_random] = ACTIONS(2193), + [anon_sym_random_boolean] = ACTIONS(2193), + [anon_sym_random_float] = ACTIONS(2193), + [anon_sym_random_integer] = ACTIONS(2193), + [anon_sym_columns] = ACTIONS(2193), + [anon_sym_rows] = ACTIONS(2193), + [anon_sym_reverse] = ACTIONS(2193), }, [408] = { - [sym_block] = STATE(1011), - [sym_statement] = STATE(54), - [sym_expression] = STATE(756), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(657), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(627), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1752), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(338), - [aux_sym_block_repeat1] = STATE(54), - [sym_identifier] = ACTIONS(875), + [ts_builtin_sym_end] = ACTIONS(2195), + [sym_identifier] = ACTIONS(2197), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3083), - [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(245), - [anon_sym_match] = ACTIONS(881), - [anon_sym_EQ_GT] = ACTIONS(883), - [anon_sym_while] = ACTIONS(885), - [anon_sym_for] = ACTIONS(887), - [anon_sym_asyncfor] = ACTIONS(889), - [anon_sym_transform] = ACTIONS(891), - [anon_sym_filter] = ACTIONS(893), - [anon_sym_find] = ACTIONS(895), - [anon_sym_remove] = ACTIONS(897), - [anon_sym_reduce] = ACTIONS(899), - [anon_sym_select] = ACTIONS(901), - [anon_sym_insert] = ACTIONS(903), - [anon_sym_async] = ACTIONS(905), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(907), - [anon_sym_assert] = ACTIONS(909), - [anon_sym_assert_equal] = ACTIONS(909), - [anon_sym_download] = ACTIONS(909), - [anon_sym_help] = ACTIONS(909), - [anon_sym_length] = ACTIONS(909), - [anon_sym_output] = ACTIONS(909), - [anon_sym_output_error] = ACTIONS(909), - [anon_sym_type] = ACTIONS(909), - [anon_sym_append] = ACTIONS(909), - [anon_sym_metadata] = ACTIONS(909), - [anon_sym_move] = ACTIONS(909), - [anon_sym_read] = ACTIONS(909), - [anon_sym_workdir] = ACTIONS(909), - [anon_sym_write] = ACTIONS(909), - [anon_sym_from_json] = ACTIONS(909), - [anon_sym_to_json] = ACTIONS(909), - [anon_sym_to_string] = ACTIONS(909), - [anon_sym_to_float] = ACTIONS(909), - [anon_sym_bash] = ACTIONS(909), - [anon_sym_fish] = ACTIONS(909), - [anon_sym_raw] = ACTIONS(909), - [anon_sym_sh] = ACTIONS(909), - [anon_sym_zsh] = ACTIONS(909), - [anon_sym_random] = ACTIONS(909), - [anon_sym_random_boolean] = ACTIONS(909), - [anon_sym_random_float] = ACTIONS(909), - [anon_sym_random_integer] = ACTIONS(909), - [anon_sym_columns] = ACTIONS(909), - [anon_sym_rows] = ACTIONS(909), - [anon_sym_reverse] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(2195), + [anon_sym_RBRACE] = ACTIONS(2195), + [anon_sym_SEMI] = ACTIONS(2195), + [anon_sym_LPAREN] = ACTIONS(2195), + [anon_sym_RPAREN] = ACTIONS(2195), + [anon_sym_COMMA] = ACTIONS(2195), + [sym_integer] = ACTIONS(2197), + [sym_float] = ACTIONS(2195), + [sym_string] = ACTIONS(2195), + [anon_sym_true] = ACTIONS(2197), + [anon_sym_false] = ACTIONS(2197), + [anon_sym_LBRACK] = ACTIONS(2195), + [anon_sym_RBRACK] = ACTIONS(2195), + [anon_sym_COLON] = ACTIONS(2195), + [anon_sym_DOT_DOT] = ACTIONS(2195), + [anon_sym_PLUS] = ACTIONS(2195), + [anon_sym_DASH] = ACTIONS(2197), + [anon_sym_STAR] = ACTIONS(2195), + [anon_sym_SLASH] = ACTIONS(2195), + [anon_sym_PERCENT] = ACTIONS(2195), + [anon_sym_EQ_EQ] = ACTIONS(2195), + [anon_sym_BANG_EQ] = ACTIONS(2195), + [anon_sym_AMP_AMP] = ACTIONS(2195), + [anon_sym_PIPE_PIPE] = ACTIONS(2195), + [anon_sym_GT] = ACTIONS(2197), + [anon_sym_LT] = ACTIONS(2197), + [anon_sym_GT_EQ] = ACTIONS(2195), + [anon_sym_LT_EQ] = ACTIONS(2195), + [anon_sym_if] = ACTIONS(2197), + [anon_sym_elseif] = ACTIONS(2195), + [anon_sym_else] = ACTIONS(2197), + [anon_sym_match] = ACTIONS(2197), + [anon_sym_EQ_GT] = ACTIONS(2195), + [anon_sym_while] = ACTIONS(2197), + [anon_sym_for] = ACTIONS(2197), + [anon_sym_asyncfor] = ACTIONS(2195), + [anon_sym_transform] = ACTIONS(2197), + [anon_sym_filter] = ACTIONS(2197), + [anon_sym_find] = ACTIONS(2197), + [anon_sym_remove] = ACTIONS(2197), + [anon_sym_reduce] = ACTIONS(2197), + [anon_sym_select] = ACTIONS(2197), + [anon_sym_insert] = ACTIONS(2197), + [anon_sym_async] = ACTIONS(2197), + [anon_sym_PIPE] = ACTIONS(2197), + [anon_sym_table] = ACTIONS(2197), + [anon_sym_assert] = ACTIONS(2197), + [anon_sym_assert_equal] = ACTIONS(2197), + [anon_sym_download] = ACTIONS(2197), + [anon_sym_help] = ACTIONS(2197), + [anon_sym_length] = ACTIONS(2197), + [anon_sym_output] = ACTIONS(2197), + [anon_sym_output_error] = ACTIONS(2197), + [anon_sym_type] = ACTIONS(2197), + [anon_sym_append] = ACTIONS(2197), + [anon_sym_metadata] = ACTIONS(2197), + [anon_sym_move] = ACTIONS(2197), + [anon_sym_read] = ACTIONS(2197), + [anon_sym_workdir] = ACTIONS(2197), + [anon_sym_write] = ACTIONS(2197), + [anon_sym_from_json] = ACTIONS(2197), + [anon_sym_to_json] = ACTIONS(2197), + [anon_sym_to_string] = ACTIONS(2197), + [anon_sym_to_float] = ACTIONS(2197), + [anon_sym_bash] = ACTIONS(2197), + [anon_sym_fish] = ACTIONS(2197), + [anon_sym_raw] = ACTIONS(2197), + [anon_sym_sh] = ACTIONS(2197), + [anon_sym_zsh] = ACTIONS(2197), + [anon_sym_random] = ACTIONS(2197), + [anon_sym_random_boolean] = ACTIONS(2197), + [anon_sym_random_float] = ACTIONS(2197), + [anon_sym_random_integer] = ACTIONS(2197), + [anon_sym_columns] = ACTIONS(2197), + [anon_sym_rows] = ACTIONS(2197), + [anon_sym_reverse] = ACTIONS(2197), }, [409] = { - [sym_block] = STATE(803), - [sym_statement] = STATE(51), - [sym_expression] = STATE(817), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(748), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(760), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1926), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(351), - [aux_sym_block_repeat1] = STATE(51), - [sym_identifier] = ACTIONS(1280), + [ts_builtin_sym_end] = ACTIONS(2199), + [sym_identifier] = ACTIONS(2201), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_match] = ACTIONS(1286), - [anon_sym_EQ_GT] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_asyncfor] = ACTIONS(1294), - [anon_sym_transform] = ACTIONS(1296), - [anon_sym_filter] = ACTIONS(1298), - [anon_sym_find] = ACTIONS(1300), - [anon_sym_remove] = ACTIONS(1302), - [anon_sym_reduce] = ACTIONS(1304), - [anon_sym_select] = ACTIONS(1306), - [anon_sym_insert] = ACTIONS(1308), - [anon_sym_async] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(1312), - [anon_sym_assert] = ACTIONS(1314), - [anon_sym_assert_equal] = ACTIONS(1314), - [anon_sym_download] = ACTIONS(1314), - [anon_sym_help] = ACTIONS(1314), - [anon_sym_length] = ACTIONS(1314), - [anon_sym_output] = ACTIONS(1314), - [anon_sym_output_error] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_append] = ACTIONS(1314), - [anon_sym_metadata] = ACTIONS(1314), - [anon_sym_move] = ACTIONS(1314), - [anon_sym_read] = ACTIONS(1314), - [anon_sym_workdir] = ACTIONS(1314), - [anon_sym_write] = ACTIONS(1314), - [anon_sym_from_json] = ACTIONS(1314), - [anon_sym_to_json] = ACTIONS(1314), - [anon_sym_to_string] = ACTIONS(1314), - [anon_sym_to_float] = ACTIONS(1314), - [anon_sym_bash] = ACTIONS(1314), - [anon_sym_fish] = ACTIONS(1314), - [anon_sym_raw] = ACTIONS(1314), - [anon_sym_sh] = ACTIONS(1314), - [anon_sym_zsh] = ACTIONS(1314), - [anon_sym_random] = ACTIONS(1314), - [anon_sym_random_boolean] = ACTIONS(1314), - [anon_sym_random_float] = ACTIONS(1314), - [anon_sym_random_integer] = ACTIONS(1314), - [anon_sym_columns] = ACTIONS(1314), - [anon_sym_rows] = ACTIONS(1314), - [anon_sym_reverse] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(2199), + [anon_sym_RBRACE] = ACTIONS(2199), + [anon_sym_SEMI] = ACTIONS(2199), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_RPAREN] = ACTIONS(2199), + [anon_sym_COMMA] = ACTIONS(2199), + [sym_integer] = ACTIONS(2201), + [sym_float] = ACTIONS(2199), + [sym_string] = ACTIONS(2199), + [anon_sym_true] = ACTIONS(2201), + [anon_sym_false] = ACTIONS(2201), + [anon_sym_LBRACK] = ACTIONS(2199), + [anon_sym_RBRACK] = ACTIONS(2199), + [anon_sym_COLON] = ACTIONS(2199), + [anon_sym_DOT_DOT] = ACTIONS(2199), + [anon_sym_PLUS] = ACTIONS(2199), + [anon_sym_DASH] = ACTIONS(2201), + [anon_sym_STAR] = ACTIONS(2199), + [anon_sym_SLASH] = ACTIONS(2199), + [anon_sym_PERCENT] = ACTIONS(2199), + [anon_sym_EQ_EQ] = ACTIONS(2199), + [anon_sym_BANG_EQ] = ACTIONS(2199), + [anon_sym_AMP_AMP] = ACTIONS(2199), + [anon_sym_PIPE_PIPE] = ACTIONS(2199), + [anon_sym_GT] = ACTIONS(2201), + [anon_sym_LT] = ACTIONS(2201), + [anon_sym_GT_EQ] = ACTIONS(2199), + [anon_sym_LT_EQ] = ACTIONS(2199), + [anon_sym_if] = ACTIONS(2201), + [anon_sym_elseif] = ACTIONS(2199), + [anon_sym_else] = ACTIONS(2201), + [anon_sym_match] = ACTIONS(2201), + [anon_sym_EQ_GT] = ACTIONS(2199), + [anon_sym_while] = ACTIONS(2201), + [anon_sym_for] = ACTIONS(2201), + [anon_sym_asyncfor] = ACTIONS(2199), + [anon_sym_transform] = ACTIONS(2201), + [anon_sym_filter] = ACTIONS(2201), + [anon_sym_find] = ACTIONS(2201), + [anon_sym_remove] = ACTIONS(2201), + [anon_sym_reduce] = ACTIONS(2201), + [anon_sym_select] = ACTIONS(2201), + [anon_sym_insert] = ACTIONS(2201), + [anon_sym_async] = ACTIONS(2201), + [anon_sym_PIPE] = ACTIONS(2201), + [anon_sym_table] = ACTIONS(2201), + [anon_sym_assert] = ACTIONS(2201), + [anon_sym_assert_equal] = ACTIONS(2201), + [anon_sym_download] = ACTIONS(2201), + [anon_sym_help] = ACTIONS(2201), + [anon_sym_length] = ACTIONS(2201), + [anon_sym_output] = ACTIONS(2201), + [anon_sym_output_error] = ACTIONS(2201), + [anon_sym_type] = ACTIONS(2201), + [anon_sym_append] = ACTIONS(2201), + [anon_sym_metadata] = ACTIONS(2201), + [anon_sym_move] = ACTIONS(2201), + [anon_sym_read] = ACTIONS(2201), + [anon_sym_workdir] = ACTIONS(2201), + [anon_sym_write] = ACTIONS(2201), + [anon_sym_from_json] = ACTIONS(2201), + [anon_sym_to_json] = ACTIONS(2201), + [anon_sym_to_string] = ACTIONS(2201), + [anon_sym_to_float] = ACTIONS(2201), + [anon_sym_bash] = ACTIONS(2201), + [anon_sym_fish] = ACTIONS(2201), + [anon_sym_raw] = ACTIONS(2201), + [anon_sym_sh] = ACTIONS(2201), + [anon_sym_zsh] = ACTIONS(2201), + [anon_sym_random] = ACTIONS(2201), + [anon_sym_random_boolean] = ACTIONS(2201), + [anon_sym_random_float] = ACTIONS(2201), + [anon_sym_random_integer] = ACTIONS(2201), + [anon_sym_columns] = ACTIONS(2201), + [anon_sym_rows] = ACTIONS(2201), + [anon_sym_reverse] = ACTIONS(2201), }, [410] = { - [sym_block] = STATE(603), - [sym_statement] = STATE(21), - [sym_expression] = STATE(593), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_logic] = STATE(631), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(584), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(1776), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(286), - [aux_sym_block_repeat1] = STATE(21), - [sym_identifier] = ACTIONS(55), + [ts_builtin_sym_end] = ACTIONS(1361), + [sym_identifier] = ACTIONS(1384), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(59), - [sym_integer] = ACTIONS(61), - [sym_float] = ACTIONS(63), - [sym_string] = ACTIONS(63), - [anon_sym_true] = ACTIONS(65), - [anon_sym_false] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_if] = ACTIONS(197), - [anon_sym_match] = ACTIONS(199), - [anon_sym_EQ_GT] = ACTIONS(201), - [anon_sym_while] = ACTIONS(203), - [anon_sym_for] = ACTIONS(205), - [anon_sym_asyncfor] = ACTIONS(207), - [anon_sym_transform] = ACTIONS(209), - [anon_sym_filter] = ACTIONS(211), - [anon_sym_find] = ACTIONS(213), - [anon_sym_remove] = ACTIONS(215), - [anon_sym_reduce] = ACTIONS(217), - [anon_sym_select] = ACTIONS(219), - [anon_sym_insert] = ACTIONS(221), - [anon_sym_async] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(225), - [anon_sym_assert] = ACTIONS(227), - [anon_sym_assert_equal] = ACTIONS(227), - [anon_sym_download] = ACTIONS(227), - [anon_sym_help] = ACTIONS(227), - [anon_sym_length] = ACTIONS(227), - [anon_sym_output] = ACTIONS(227), - [anon_sym_output_error] = ACTIONS(227), - [anon_sym_type] = ACTIONS(227), - [anon_sym_append] = ACTIONS(227), - [anon_sym_metadata] = ACTIONS(227), - [anon_sym_move] = ACTIONS(227), - [anon_sym_read] = ACTIONS(227), - [anon_sym_workdir] = ACTIONS(227), - [anon_sym_write] = ACTIONS(227), - [anon_sym_from_json] = ACTIONS(227), - [anon_sym_to_json] = ACTIONS(227), - [anon_sym_to_string] = ACTIONS(227), - [anon_sym_to_float] = ACTIONS(227), - [anon_sym_bash] = ACTIONS(227), - [anon_sym_fish] = ACTIONS(227), - [anon_sym_raw] = ACTIONS(227), - [anon_sym_sh] = ACTIONS(227), - [anon_sym_zsh] = ACTIONS(227), - [anon_sym_random] = ACTIONS(227), - [anon_sym_random_boolean] = ACTIONS(227), - [anon_sym_random_float] = ACTIONS(227), - [anon_sym_random_integer] = ACTIONS(227), - [anon_sym_columns] = ACTIONS(227), - [anon_sym_rows] = ACTIONS(227), - [anon_sym_reverse] = ACTIONS(227), + [anon_sym_LBRACE] = ACTIONS(1361), + [anon_sym_RBRACE] = ACTIONS(1361), + [anon_sym_SEMI] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(1361), + [anon_sym_RPAREN] = ACTIONS(1361), + [anon_sym_COMMA] = ACTIONS(1361), + [sym_integer] = ACTIONS(1384), + [sym_float] = ACTIONS(1361), + [sym_string] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1384), + [anon_sym_false] = ACTIONS(1384), + [anon_sym_LBRACK] = ACTIONS(1361), + [anon_sym_RBRACK] = ACTIONS(1361), + [anon_sym_COLON] = ACTIONS(1361), + [anon_sym_DOT_DOT] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1361), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_SLASH] = ACTIONS(1361), + [anon_sym_PERCENT] = ACTIONS(1361), + [anon_sym_EQ_EQ] = ACTIONS(1361), + [anon_sym_BANG_EQ] = ACTIONS(1361), + [anon_sym_AMP_AMP] = ACTIONS(1361), + [anon_sym_PIPE_PIPE] = ACTIONS(1361), + [anon_sym_GT] = ACTIONS(1384), + [anon_sym_LT] = ACTIONS(1384), + [anon_sym_GT_EQ] = ACTIONS(1361), + [anon_sym_LT_EQ] = ACTIONS(1361), + [anon_sym_if] = ACTIONS(1384), + [anon_sym_elseif] = ACTIONS(1361), + [anon_sym_else] = ACTIONS(1384), + [anon_sym_match] = ACTIONS(1384), + [anon_sym_EQ_GT] = ACTIONS(1361), + [anon_sym_while] = ACTIONS(1384), + [anon_sym_for] = ACTIONS(1384), + [anon_sym_asyncfor] = ACTIONS(1361), + [anon_sym_transform] = ACTIONS(1384), + [anon_sym_filter] = ACTIONS(1384), + [anon_sym_find] = ACTIONS(1384), + [anon_sym_remove] = ACTIONS(1384), + [anon_sym_reduce] = ACTIONS(1384), + [anon_sym_select] = ACTIONS(1384), + [anon_sym_insert] = ACTIONS(1384), + [anon_sym_async] = ACTIONS(1384), + [anon_sym_PIPE] = ACTIONS(1384), + [anon_sym_table] = ACTIONS(1384), + [anon_sym_assert] = ACTIONS(1384), + [anon_sym_assert_equal] = ACTIONS(1384), + [anon_sym_download] = ACTIONS(1384), + [anon_sym_help] = ACTIONS(1384), + [anon_sym_length] = ACTIONS(1384), + [anon_sym_output] = ACTIONS(1384), + [anon_sym_output_error] = ACTIONS(1384), + [anon_sym_type] = ACTIONS(1384), + [anon_sym_append] = ACTIONS(1384), + [anon_sym_metadata] = ACTIONS(1384), + [anon_sym_move] = ACTIONS(1384), + [anon_sym_read] = ACTIONS(1384), + [anon_sym_workdir] = ACTIONS(1384), + [anon_sym_write] = ACTIONS(1384), + [anon_sym_from_json] = ACTIONS(1384), + [anon_sym_to_json] = ACTIONS(1384), + [anon_sym_to_string] = ACTIONS(1384), + [anon_sym_to_float] = ACTIONS(1384), + [anon_sym_bash] = ACTIONS(1384), + [anon_sym_fish] = ACTIONS(1384), + [anon_sym_raw] = ACTIONS(1384), + [anon_sym_sh] = ACTIONS(1384), + [anon_sym_zsh] = ACTIONS(1384), + [anon_sym_random] = ACTIONS(1384), + [anon_sym_random_boolean] = ACTIONS(1384), + [anon_sym_random_float] = ACTIONS(1384), + [anon_sym_random_integer] = ACTIONS(1384), + [anon_sym_columns] = ACTIONS(1384), + [anon_sym_rows] = ACTIONS(1384), + [anon_sym_reverse] = ACTIONS(1384), }, [411] = { - [sym_block] = STATE(987), - [sym_statement] = STATE(49), - [sym_expression] = STATE(683), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_logic] = STATE(706), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(573), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1813), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(311), - [aux_sym_block_repeat1] = STATE(49), - [sym_identifier] = ACTIONS(149), + [ts_builtin_sym_end] = ACTIONS(2041), + [sym_identifier] = ACTIONS(2043), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3085), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_if] = ACTIONS(117), - [anon_sym_match] = ACTIONS(279), - [anon_sym_EQ_GT] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_for] = ACTIONS(285), - [anon_sym_asyncfor] = ACTIONS(287), - [anon_sym_transform] = ACTIONS(289), - [anon_sym_filter] = ACTIONS(291), - [anon_sym_find] = ACTIONS(293), - [anon_sym_remove] = ACTIONS(295), - [anon_sym_reduce] = ACTIONS(297), - [anon_sym_select] = ACTIONS(299), - [anon_sym_insert] = ACTIONS(301), - [anon_sym_async] = ACTIONS(303), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(305), - [anon_sym_assert] = ACTIONS(307), - [anon_sym_assert_equal] = ACTIONS(307), - [anon_sym_download] = ACTIONS(307), - [anon_sym_help] = ACTIONS(307), - [anon_sym_length] = ACTIONS(307), - [anon_sym_output] = ACTIONS(307), - [anon_sym_output_error] = ACTIONS(307), - [anon_sym_type] = ACTIONS(307), - [anon_sym_append] = ACTIONS(307), - [anon_sym_metadata] = ACTIONS(307), - [anon_sym_move] = ACTIONS(307), - [anon_sym_read] = ACTIONS(307), - [anon_sym_workdir] = ACTIONS(307), - [anon_sym_write] = ACTIONS(307), - [anon_sym_from_json] = ACTIONS(307), - [anon_sym_to_json] = ACTIONS(307), - [anon_sym_to_string] = ACTIONS(307), - [anon_sym_to_float] = ACTIONS(307), - [anon_sym_bash] = ACTIONS(307), - [anon_sym_fish] = ACTIONS(307), - [anon_sym_raw] = ACTIONS(307), - [anon_sym_sh] = ACTIONS(307), - [anon_sym_zsh] = ACTIONS(307), - [anon_sym_random] = ACTIONS(307), - [anon_sym_random_boolean] = ACTIONS(307), - [anon_sym_random_float] = ACTIONS(307), - [anon_sym_random_integer] = ACTIONS(307), - [anon_sym_columns] = ACTIONS(307), - [anon_sym_rows] = ACTIONS(307), - [anon_sym_reverse] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(2041), + [anon_sym_RBRACE] = ACTIONS(2041), + [anon_sym_SEMI] = ACTIONS(2045), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_RPAREN] = ACTIONS(2041), + [anon_sym_COMMA] = ACTIONS(2041), + [sym_integer] = ACTIONS(2043), + [sym_float] = ACTIONS(2041), + [sym_string] = ACTIONS(2041), + [anon_sym_true] = ACTIONS(2043), + [anon_sym_false] = ACTIONS(2043), + [anon_sym_LBRACK] = ACTIONS(2041), + [anon_sym_RBRACK] = ACTIONS(2041), + [anon_sym_COLON] = ACTIONS(2041), + [anon_sym_DOT_DOT] = ACTIONS(2041), + [anon_sym_PLUS] = ACTIONS(2041), + [anon_sym_DASH] = ACTIONS(2043), + [anon_sym_STAR] = ACTIONS(2041), + [anon_sym_SLASH] = ACTIONS(2041), + [anon_sym_PERCENT] = ACTIONS(2041), + [anon_sym_EQ_EQ] = ACTIONS(2041), + [anon_sym_BANG_EQ] = ACTIONS(2041), + [anon_sym_AMP_AMP] = ACTIONS(2041), + [anon_sym_PIPE_PIPE] = ACTIONS(2041), + [anon_sym_GT] = ACTIONS(2043), + [anon_sym_LT] = ACTIONS(2043), + [anon_sym_GT_EQ] = ACTIONS(2041), + [anon_sym_LT_EQ] = ACTIONS(2041), + [anon_sym_if] = ACTIONS(2043), + [anon_sym_elseif] = ACTIONS(2041), + [anon_sym_else] = ACTIONS(2043), + [anon_sym_match] = ACTIONS(2043), + [anon_sym_EQ_GT] = ACTIONS(2041), + [anon_sym_while] = ACTIONS(2043), + [anon_sym_for] = ACTIONS(2043), + [anon_sym_asyncfor] = ACTIONS(2041), + [anon_sym_transform] = ACTIONS(2043), + [anon_sym_filter] = ACTIONS(2043), + [anon_sym_find] = ACTIONS(2043), + [anon_sym_remove] = ACTIONS(2043), + [anon_sym_reduce] = ACTIONS(2043), + [anon_sym_select] = ACTIONS(2043), + [anon_sym_insert] = ACTIONS(2043), + [anon_sym_async] = ACTIONS(2043), + [anon_sym_PIPE] = ACTIONS(2043), + [anon_sym_table] = ACTIONS(2043), + [anon_sym_assert] = ACTIONS(2043), + [anon_sym_assert_equal] = ACTIONS(2043), + [anon_sym_download] = ACTIONS(2043), + [anon_sym_help] = ACTIONS(2043), + [anon_sym_length] = ACTIONS(2043), + [anon_sym_output] = ACTIONS(2043), + [anon_sym_output_error] = ACTIONS(2043), + [anon_sym_type] = ACTIONS(2043), + [anon_sym_append] = ACTIONS(2043), + [anon_sym_metadata] = ACTIONS(2043), + [anon_sym_move] = ACTIONS(2043), + [anon_sym_read] = ACTIONS(2043), + [anon_sym_workdir] = ACTIONS(2043), + [anon_sym_write] = ACTIONS(2043), + [anon_sym_from_json] = ACTIONS(2043), + [anon_sym_to_json] = ACTIONS(2043), + [anon_sym_to_string] = ACTIONS(2043), + [anon_sym_to_float] = ACTIONS(2043), + [anon_sym_bash] = ACTIONS(2043), + [anon_sym_fish] = ACTIONS(2043), + [anon_sym_raw] = ACTIONS(2043), + [anon_sym_sh] = ACTIONS(2043), + [anon_sym_zsh] = ACTIONS(2043), + [anon_sym_random] = ACTIONS(2043), + [anon_sym_random_boolean] = ACTIONS(2043), + [anon_sym_random_float] = ACTIONS(2043), + [anon_sym_random_integer] = ACTIONS(2043), + [anon_sym_columns] = ACTIONS(2043), + [anon_sym_rows] = ACTIONS(2043), + [anon_sym_reverse] = ACTIONS(2043), }, [412] = { - [sym_block] = STATE(704), - [sym_statement] = STATE(17), - [sym_expression] = STATE(601), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_logic] = STATE(706), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(557), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1910), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(284), - [aux_sym_block_repeat1] = STATE(17), - [sym_identifier] = ACTIONS(149), + [ts_builtin_sym_end] = ACTIONS(2203), + [sym_identifier] = ACTIONS(2205), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_if] = ACTIONS(81), - [anon_sym_match] = ACTIONS(165), - [anon_sym_EQ_GT] = ACTIONS(167), - [anon_sym_while] = ACTIONS(169), - [anon_sym_for] = ACTIONS(171), - [anon_sym_asyncfor] = ACTIONS(173), - [anon_sym_transform] = ACTIONS(175), - [anon_sym_filter] = ACTIONS(177), - [anon_sym_find] = ACTIONS(179), - [anon_sym_remove] = ACTIONS(181), - [anon_sym_reduce] = ACTIONS(183), - [anon_sym_select] = ACTIONS(185), - [anon_sym_insert] = ACTIONS(187), - [anon_sym_async] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(191), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_assert_equal] = ACTIONS(193), - [anon_sym_download] = ACTIONS(193), - [anon_sym_help] = ACTIONS(193), - [anon_sym_length] = ACTIONS(193), - [anon_sym_output] = ACTIONS(193), - [anon_sym_output_error] = ACTIONS(193), - [anon_sym_type] = ACTIONS(193), - [anon_sym_append] = ACTIONS(193), - [anon_sym_metadata] = ACTIONS(193), - [anon_sym_move] = ACTIONS(193), - [anon_sym_read] = ACTIONS(193), - [anon_sym_workdir] = ACTIONS(193), - [anon_sym_write] = ACTIONS(193), - [anon_sym_from_json] = ACTIONS(193), - [anon_sym_to_json] = ACTIONS(193), - [anon_sym_to_string] = ACTIONS(193), - [anon_sym_to_float] = ACTIONS(193), - [anon_sym_bash] = ACTIONS(193), - [anon_sym_fish] = ACTIONS(193), - [anon_sym_raw] = ACTIONS(193), - [anon_sym_sh] = ACTIONS(193), - [anon_sym_zsh] = ACTIONS(193), - [anon_sym_random] = ACTIONS(193), - [anon_sym_random_boolean] = ACTIONS(193), - [anon_sym_random_float] = ACTIONS(193), - [anon_sym_random_integer] = ACTIONS(193), - [anon_sym_columns] = ACTIONS(193), - [anon_sym_rows] = ACTIONS(193), - [anon_sym_reverse] = ACTIONS(193), + [anon_sym_LBRACE] = ACTIONS(2203), + [anon_sym_RBRACE] = ACTIONS(2203), + [anon_sym_SEMI] = ACTIONS(2203), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2203), + [anon_sym_COMMA] = ACTIONS(2203), + [sym_integer] = ACTIONS(2205), + [sym_float] = ACTIONS(2203), + [sym_string] = ACTIONS(2203), + [anon_sym_true] = ACTIONS(2205), + [anon_sym_false] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(2203), + [anon_sym_RBRACK] = ACTIONS(2203), + [anon_sym_COLON] = ACTIONS(2203), + [anon_sym_DOT_DOT] = ACTIONS(2203), + [anon_sym_PLUS] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_STAR] = ACTIONS(2203), + [anon_sym_SLASH] = ACTIONS(2203), + [anon_sym_PERCENT] = ACTIONS(2203), + [anon_sym_EQ_EQ] = ACTIONS(2203), + [anon_sym_BANG_EQ] = ACTIONS(2203), + [anon_sym_AMP_AMP] = ACTIONS(2203), + [anon_sym_PIPE_PIPE] = ACTIONS(2203), + [anon_sym_GT] = ACTIONS(2205), + [anon_sym_LT] = ACTIONS(2205), + [anon_sym_GT_EQ] = ACTIONS(2203), + [anon_sym_LT_EQ] = ACTIONS(2203), + [anon_sym_if] = ACTIONS(2205), + [anon_sym_elseif] = ACTIONS(2203), + [anon_sym_else] = ACTIONS(2205), + [anon_sym_match] = ACTIONS(2205), + [anon_sym_EQ_GT] = ACTIONS(2203), + [anon_sym_while] = ACTIONS(2205), + [anon_sym_for] = ACTIONS(2205), + [anon_sym_asyncfor] = ACTIONS(2203), + [anon_sym_transform] = ACTIONS(2205), + [anon_sym_filter] = ACTIONS(2205), + [anon_sym_find] = ACTIONS(2205), + [anon_sym_remove] = ACTIONS(2205), + [anon_sym_reduce] = ACTIONS(2205), + [anon_sym_select] = ACTIONS(2205), + [anon_sym_insert] = ACTIONS(2205), + [anon_sym_async] = ACTIONS(2205), + [anon_sym_PIPE] = ACTIONS(2205), + [anon_sym_table] = ACTIONS(2205), + [anon_sym_assert] = ACTIONS(2205), + [anon_sym_assert_equal] = ACTIONS(2205), + [anon_sym_download] = ACTIONS(2205), + [anon_sym_help] = ACTIONS(2205), + [anon_sym_length] = ACTIONS(2205), + [anon_sym_output] = ACTIONS(2205), + [anon_sym_output_error] = ACTIONS(2205), + [anon_sym_type] = ACTIONS(2205), + [anon_sym_append] = ACTIONS(2205), + [anon_sym_metadata] = ACTIONS(2205), + [anon_sym_move] = ACTIONS(2205), + [anon_sym_read] = ACTIONS(2205), + [anon_sym_workdir] = ACTIONS(2205), + [anon_sym_write] = ACTIONS(2205), + [anon_sym_from_json] = ACTIONS(2205), + [anon_sym_to_json] = ACTIONS(2205), + [anon_sym_to_string] = ACTIONS(2205), + [anon_sym_to_float] = ACTIONS(2205), + [anon_sym_bash] = ACTIONS(2205), + [anon_sym_fish] = ACTIONS(2205), + [anon_sym_raw] = ACTIONS(2205), + [anon_sym_sh] = ACTIONS(2205), + [anon_sym_zsh] = ACTIONS(2205), + [anon_sym_random] = ACTIONS(2205), + [anon_sym_random_boolean] = ACTIONS(2205), + [anon_sym_random_float] = ACTIONS(2205), + [anon_sym_random_integer] = ACTIONS(2205), + [anon_sym_columns] = ACTIONS(2205), + [anon_sym_rows] = ACTIONS(2205), + [anon_sym_reverse] = ACTIONS(2205), }, [413] = { - [sym_block] = STATE(1543), - [sym_statement] = STATE(257), - [sym_expression] = STATE(853), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(776), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(710), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1823), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(366), - [aux_sym_block_repeat1] = STATE(257), - [sym_identifier] = ACTIONS(1436), + [ts_builtin_sym_end] = ACTIONS(2207), + [sym_identifier] = ACTIONS(2209), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2164), - [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(843), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_EQ_GT] = ACTIONS(1442), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_for] = ACTIONS(1446), - [anon_sym_asyncfor] = ACTIONS(1448), - [anon_sym_transform] = ACTIONS(1450), - [anon_sym_filter] = ACTIONS(1452), - [anon_sym_find] = ACTIONS(1454), - [anon_sym_remove] = ACTIONS(1456), - [anon_sym_reduce] = ACTIONS(1458), - [anon_sym_select] = ACTIONS(1460), - [anon_sym_insert] = ACTIONS(1462), - [anon_sym_async] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(1466), - [anon_sym_assert] = ACTIONS(1468), - [anon_sym_assert_equal] = ACTIONS(1468), - [anon_sym_download] = ACTIONS(1468), - [anon_sym_help] = ACTIONS(1468), - [anon_sym_length] = ACTIONS(1468), - [anon_sym_output] = ACTIONS(1468), - [anon_sym_output_error] = ACTIONS(1468), - [anon_sym_type] = ACTIONS(1468), - [anon_sym_append] = ACTIONS(1468), - [anon_sym_metadata] = ACTIONS(1468), - [anon_sym_move] = ACTIONS(1468), - [anon_sym_read] = ACTIONS(1468), - [anon_sym_workdir] = ACTIONS(1468), - [anon_sym_write] = ACTIONS(1468), - [anon_sym_from_json] = ACTIONS(1468), - [anon_sym_to_json] = ACTIONS(1468), - [anon_sym_to_string] = ACTIONS(1468), - [anon_sym_to_float] = ACTIONS(1468), - [anon_sym_bash] = ACTIONS(1468), - [anon_sym_fish] = ACTIONS(1468), - [anon_sym_raw] = ACTIONS(1468), - [anon_sym_sh] = ACTIONS(1468), - [anon_sym_zsh] = ACTIONS(1468), - [anon_sym_random] = ACTIONS(1468), - [anon_sym_random_boolean] = ACTIONS(1468), - [anon_sym_random_float] = ACTIONS(1468), - [anon_sym_random_integer] = ACTIONS(1468), - [anon_sym_columns] = ACTIONS(1468), - [anon_sym_rows] = ACTIONS(1468), - [anon_sym_reverse] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_RBRACE] = ACTIONS(2207), + [anon_sym_SEMI] = ACTIONS(2207), + [anon_sym_LPAREN] = ACTIONS(2207), + [anon_sym_RPAREN] = ACTIONS(2207), + [anon_sym_COMMA] = ACTIONS(2207), + [sym_integer] = ACTIONS(2209), + [sym_float] = ACTIONS(2207), + [sym_string] = ACTIONS(2207), + [anon_sym_true] = ACTIONS(2209), + [anon_sym_false] = ACTIONS(2209), + [anon_sym_LBRACK] = ACTIONS(2207), + [anon_sym_RBRACK] = ACTIONS(2207), + [anon_sym_COLON] = ACTIONS(2207), + [anon_sym_DOT_DOT] = ACTIONS(2207), + [anon_sym_PLUS] = ACTIONS(2207), + [anon_sym_DASH] = ACTIONS(2209), + [anon_sym_STAR] = ACTIONS(2207), + [anon_sym_SLASH] = ACTIONS(2207), + [anon_sym_PERCENT] = ACTIONS(2207), + [anon_sym_EQ_EQ] = ACTIONS(2207), + [anon_sym_BANG_EQ] = ACTIONS(2207), + [anon_sym_AMP_AMP] = ACTIONS(2207), + [anon_sym_PIPE_PIPE] = ACTIONS(2207), + [anon_sym_GT] = ACTIONS(2209), + [anon_sym_LT] = ACTIONS(2209), + [anon_sym_GT_EQ] = ACTIONS(2207), + [anon_sym_LT_EQ] = ACTIONS(2207), + [anon_sym_if] = ACTIONS(2209), + [anon_sym_elseif] = ACTIONS(2207), + [anon_sym_else] = ACTIONS(2209), + [anon_sym_match] = ACTIONS(2209), + [anon_sym_EQ_GT] = ACTIONS(2207), + [anon_sym_while] = ACTIONS(2209), + [anon_sym_for] = ACTIONS(2209), + [anon_sym_asyncfor] = ACTIONS(2207), + [anon_sym_transform] = ACTIONS(2209), + [anon_sym_filter] = ACTIONS(2209), + [anon_sym_find] = ACTIONS(2209), + [anon_sym_remove] = ACTIONS(2209), + [anon_sym_reduce] = ACTIONS(2209), + [anon_sym_select] = ACTIONS(2209), + [anon_sym_insert] = ACTIONS(2209), + [anon_sym_async] = ACTIONS(2209), + [anon_sym_PIPE] = ACTIONS(2209), + [anon_sym_table] = ACTIONS(2209), + [anon_sym_assert] = ACTIONS(2209), + [anon_sym_assert_equal] = ACTIONS(2209), + [anon_sym_download] = ACTIONS(2209), + [anon_sym_help] = ACTIONS(2209), + [anon_sym_length] = ACTIONS(2209), + [anon_sym_output] = ACTIONS(2209), + [anon_sym_output_error] = ACTIONS(2209), + [anon_sym_type] = ACTIONS(2209), + [anon_sym_append] = ACTIONS(2209), + [anon_sym_metadata] = ACTIONS(2209), + [anon_sym_move] = ACTIONS(2209), + [anon_sym_read] = ACTIONS(2209), + [anon_sym_workdir] = ACTIONS(2209), + [anon_sym_write] = ACTIONS(2209), + [anon_sym_from_json] = ACTIONS(2209), + [anon_sym_to_json] = ACTIONS(2209), + [anon_sym_to_string] = ACTIONS(2209), + [anon_sym_to_float] = ACTIONS(2209), + [anon_sym_bash] = ACTIONS(2209), + [anon_sym_fish] = ACTIONS(2209), + [anon_sym_raw] = ACTIONS(2209), + [anon_sym_sh] = ACTIONS(2209), + [anon_sym_zsh] = ACTIONS(2209), + [anon_sym_random] = ACTIONS(2209), + [anon_sym_random_boolean] = ACTIONS(2209), + [anon_sym_random_float] = ACTIONS(2209), + [anon_sym_random_integer] = ACTIONS(2209), + [anon_sym_columns] = ACTIONS(2209), + [anon_sym_rows] = ACTIONS(2209), + [anon_sym_reverse] = ACTIONS(2209), }, [414] = { - [sym_block] = STATE(993), - [sym_statement] = STATE(49), - [sym_expression] = STATE(683), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_logic] = STATE(706), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(573), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1813), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(311), - [aux_sym_block_repeat1] = STATE(49), - [sym_identifier] = ACTIONS(149), + [sym_else_if] = STATE(422), + [sym_else] = STATE(421), + [aux_sym_if_else_repeat1] = STATE(422), + [ts_builtin_sym_end] = ACTIONS(2009), + [sym_identifier] = ACTIONS(2011), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3085), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_if] = ACTIONS(117), - [anon_sym_match] = ACTIONS(279), - [anon_sym_EQ_GT] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_for] = ACTIONS(285), - [anon_sym_asyncfor] = ACTIONS(287), - [anon_sym_transform] = ACTIONS(289), - [anon_sym_filter] = ACTIONS(291), - [anon_sym_find] = ACTIONS(293), - [anon_sym_remove] = ACTIONS(295), - [anon_sym_reduce] = ACTIONS(297), - [anon_sym_select] = ACTIONS(299), - [anon_sym_insert] = ACTIONS(301), - [anon_sym_async] = ACTIONS(303), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(305), - [anon_sym_assert] = ACTIONS(307), - [anon_sym_assert_equal] = ACTIONS(307), - [anon_sym_download] = ACTIONS(307), - [anon_sym_help] = ACTIONS(307), - [anon_sym_length] = ACTIONS(307), - [anon_sym_output] = ACTIONS(307), - [anon_sym_output_error] = ACTIONS(307), - [anon_sym_type] = ACTIONS(307), - [anon_sym_append] = ACTIONS(307), - [anon_sym_metadata] = ACTIONS(307), - [anon_sym_move] = ACTIONS(307), - [anon_sym_read] = ACTIONS(307), - [anon_sym_workdir] = ACTIONS(307), - [anon_sym_write] = ACTIONS(307), - [anon_sym_from_json] = ACTIONS(307), - [anon_sym_to_json] = ACTIONS(307), - [anon_sym_to_string] = ACTIONS(307), - [anon_sym_to_float] = ACTIONS(307), - [anon_sym_bash] = ACTIONS(307), - [anon_sym_fish] = ACTIONS(307), - [anon_sym_raw] = ACTIONS(307), - [anon_sym_sh] = ACTIONS(307), - [anon_sym_zsh] = ACTIONS(307), - [anon_sym_random] = ACTIONS(307), - [anon_sym_random_boolean] = ACTIONS(307), - [anon_sym_random_float] = ACTIONS(307), - [anon_sym_random_integer] = ACTIONS(307), - [anon_sym_columns] = ACTIONS(307), - [anon_sym_rows] = ACTIONS(307), - [anon_sym_reverse] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(2009), + [anon_sym_RBRACE] = ACTIONS(2009), + [anon_sym_SEMI] = ACTIONS(2009), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_RPAREN] = ACTIONS(2009), + [sym_integer] = ACTIONS(2011), + [sym_float] = ACTIONS(2009), + [sym_string] = ACTIONS(2009), + [anon_sym_true] = ACTIONS(2011), + [anon_sym_false] = ACTIONS(2011), + [anon_sym_LBRACK] = ACTIONS(2009), + [anon_sym_COLON] = ACTIONS(2009), + [anon_sym_PLUS] = ACTIONS(2009), + [anon_sym_DASH] = ACTIONS(2011), + [anon_sym_STAR] = ACTIONS(2009), + [anon_sym_SLASH] = ACTIONS(2009), + [anon_sym_PERCENT] = ACTIONS(2009), + [anon_sym_EQ_EQ] = ACTIONS(2009), + [anon_sym_BANG_EQ] = ACTIONS(2009), + [anon_sym_AMP_AMP] = ACTIONS(2009), + [anon_sym_PIPE_PIPE] = ACTIONS(2009), + [anon_sym_GT] = ACTIONS(2011), + [anon_sym_LT] = ACTIONS(2011), + [anon_sym_GT_EQ] = ACTIONS(2009), + [anon_sym_LT_EQ] = ACTIONS(2009), + [anon_sym_if] = ACTIONS(2011), + [anon_sym_elseif] = ACTIONS(2211), + [anon_sym_else] = ACTIONS(2213), + [anon_sym_match] = ACTIONS(2011), + [anon_sym_EQ_GT] = ACTIONS(2009), + [anon_sym_while] = ACTIONS(2011), + [anon_sym_for] = ACTIONS(2011), + [anon_sym_asyncfor] = ACTIONS(2009), + [anon_sym_transform] = ACTIONS(2011), + [anon_sym_filter] = ACTIONS(2011), + [anon_sym_find] = ACTIONS(2011), + [anon_sym_remove] = ACTIONS(2011), + [anon_sym_reduce] = ACTIONS(2011), + [anon_sym_select] = ACTIONS(2011), + [anon_sym_insert] = ACTIONS(2011), + [anon_sym_async] = ACTIONS(2011), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_table] = ACTIONS(2011), + [anon_sym_assert] = ACTIONS(2011), + [anon_sym_assert_equal] = ACTIONS(2011), + [anon_sym_download] = ACTIONS(2011), + [anon_sym_help] = ACTIONS(2011), + [anon_sym_length] = ACTIONS(2011), + [anon_sym_output] = ACTIONS(2011), + [anon_sym_output_error] = ACTIONS(2011), + [anon_sym_type] = ACTIONS(2011), + [anon_sym_append] = ACTIONS(2011), + [anon_sym_metadata] = ACTIONS(2011), + [anon_sym_move] = ACTIONS(2011), + [anon_sym_read] = ACTIONS(2011), + [anon_sym_workdir] = ACTIONS(2011), + [anon_sym_write] = ACTIONS(2011), + [anon_sym_from_json] = ACTIONS(2011), + [anon_sym_to_json] = ACTIONS(2011), + [anon_sym_to_string] = ACTIONS(2011), + [anon_sym_to_float] = ACTIONS(2011), + [anon_sym_bash] = ACTIONS(2011), + [anon_sym_fish] = ACTIONS(2011), + [anon_sym_raw] = ACTIONS(2011), + [anon_sym_sh] = ACTIONS(2011), + [anon_sym_zsh] = ACTIONS(2011), + [anon_sym_random] = ACTIONS(2011), + [anon_sym_random_boolean] = ACTIONS(2011), + [anon_sym_random_float] = ACTIONS(2011), + [anon_sym_random_integer] = ACTIONS(2011), + [anon_sym_columns] = ACTIONS(2011), + [anon_sym_rows] = ACTIONS(2011), + [anon_sym_reverse] = ACTIONS(2011), }, [415] = { - [sym_block] = STATE(607), - [sym_statement] = STATE(21), - [sym_expression] = STATE(593), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_logic] = STATE(631), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(584), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(1776), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(286), - [aux_sym_block_repeat1] = STATE(21), - [sym_identifier] = ACTIONS(55), + [ts_builtin_sym_end] = ACTIONS(2215), + [sym_identifier] = ACTIONS(2217), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(59), - [sym_integer] = ACTIONS(61), - [sym_float] = ACTIONS(63), - [sym_string] = ACTIONS(63), - [anon_sym_true] = ACTIONS(65), - [anon_sym_false] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_if] = ACTIONS(197), - [anon_sym_match] = ACTIONS(199), - [anon_sym_EQ_GT] = ACTIONS(201), - [anon_sym_while] = ACTIONS(203), - [anon_sym_for] = ACTIONS(205), - [anon_sym_asyncfor] = ACTIONS(207), - [anon_sym_transform] = ACTIONS(209), - [anon_sym_filter] = ACTIONS(211), - [anon_sym_find] = ACTIONS(213), - [anon_sym_remove] = ACTIONS(215), - [anon_sym_reduce] = ACTIONS(217), - [anon_sym_select] = ACTIONS(219), - [anon_sym_insert] = ACTIONS(221), - [anon_sym_async] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(225), - [anon_sym_assert] = ACTIONS(227), - [anon_sym_assert_equal] = ACTIONS(227), - [anon_sym_download] = ACTIONS(227), - [anon_sym_help] = ACTIONS(227), - [anon_sym_length] = ACTIONS(227), - [anon_sym_output] = ACTIONS(227), - [anon_sym_output_error] = ACTIONS(227), - [anon_sym_type] = ACTIONS(227), - [anon_sym_append] = ACTIONS(227), - [anon_sym_metadata] = ACTIONS(227), - [anon_sym_move] = ACTIONS(227), - [anon_sym_read] = ACTIONS(227), - [anon_sym_workdir] = ACTIONS(227), - [anon_sym_write] = ACTIONS(227), - [anon_sym_from_json] = ACTIONS(227), - [anon_sym_to_json] = ACTIONS(227), - [anon_sym_to_string] = ACTIONS(227), - [anon_sym_to_float] = ACTIONS(227), - [anon_sym_bash] = ACTIONS(227), - [anon_sym_fish] = ACTIONS(227), - [anon_sym_raw] = ACTIONS(227), - [anon_sym_sh] = ACTIONS(227), - [anon_sym_zsh] = ACTIONS(227), - [anon_sym_random] = ACTIONS(227), - [anon_sym_random_boolean] = ACTIONS(227), - [anon_sym_random_float] = ACTIONS(227), - [anon_sym_random_integer] = ACTIONS(227), - [anon_sym_columns] = ACTIONS(227), - [anon_sym_rows] = ACTIONS(227), - [anon_sym_reverse] = ACTIONS(227), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_RBRACE] = ACTIONS(2215), + [anon_sym_SEMI] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(2215), + [anon_sym_RPAREN] = ACTIONS(2215), + [anon_sym_COMMA] = ACTIONS(2215), + [sym_integer] = ACTIONS(2217), + [sym_float] = ACTIONS(2215), + [sym_string] = ACTIONS(2215), + [anon_sym_true] = ACTIONS(2217), + [anon_sym_false] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(2215), + [anon_sym_RBRACK] = ACTIONS(2215), + [anon_sym_COLON] = ACTIONS(2215), + [anon_sym_DOT_DOT] = ACTIONS(2215), + [anon_sym_PLUS] = ACTIONS(2215), + [anon_sym_DASH] = ACTIONS(2217), + [anon_sym_STAR] = ACTIONS(2215), + [anon_sym_SLASH] = ACTIONS(2215), + [anon_sym_PERCENT] = ACTIONS(2215), + [anon_sym_EQ_EQ] = ACTIONS(2215), + [anon_sym_BANG_EQ] = ACTIONS(2215), + [anon_sym_AMP_AMP] = ACTIONS(2215), + [anon_sym_PIPE_PIPE] = ACTIONS(2215), + [anon_sym_GT] = ACTIONS(2217), + [anon_sym_LT] = ACTIONS(2217), + [anon_sym_GT_EQ] = ACTIONS(2215), + [anon_sym_LT_EQ] = ACTIONS(2215), + [anon_sym_if] = ACTIONS(2217), + [anon_sym_elseif] = ACTIONS(2215), + [anon_sym_else] = ACTIONS(2217), + [anon_sym_match] = ACTIONS(2217), + [anon_sym_EQ_GT] = ACTIONS(2215), + [anon_sym_while] = ACTIONS(2217), + [anon_sym_for] = ACTIONS(2217), + [anon_sym_asyncfor] = ACTIONS(2215), + [anon_sym_transform] = ACTIONS(2217), + [anon_sym_filter] = ACTIONS(2217), + [anon_sym_find] = ACTIONS(2217), + [anon_sym_remove] = ACTIONS(2217), + [anon_sym_reduce] = ACTIONS(2217), + [anon_sym_select] = ACTIONS(2217), + [anon_sym_insert] = ACTIONS(2217), + [anon_sym_async] = ACTIONS(2217), + [anon_sym_PIPE] = ACTIONS(2217), + [anon_sym_table] = ACTIONS(2217), + [anon_sym_assert] = ACTIONS(2217), + [anon_sym_assert_equal] = ACTIONS(2217), + [anon_sym_download] = ACTIONS(2217), + [anon_sym_help] = ACTIONS(2217), + [anon_sym_length] = ACTIONS(2217), + [anon_sym_output] = ACTIONS(2217), + [anon_sym_output_error] = ACTIONS(2217), + [anon_sym_type] = ACTIONS(2217), + [anon_sym_append] = ACTIONS(2217), + [anon_sym_metadata] = ACTIONS(2217), + [anon_sym_move] = ACTIONS(2217), + [anon_sym_read] = ACTIONS(2217), + [anon_sym_workdir] = ACTIONS(2217), + [anon_sym_write] = ACTIONS(2217), + [anon_sym_from_json] = ACTIONS(2217), + [anon_sym_to_json] = ACTIONS(2217), + [anon_sym_to_string] = ACTIONS(2217), + [anon_sym_to_float] = ACTIONS(2217), + [anon_sym_bash] = ACTIONS(2217), + [anon_sym_fish] = ACTIONS(2217), + [anon_sym_raw] = ACTIONS(2217), + [anon_sym_sh] = ACTIONS(2217), + [anon_sym_zsh] = ACTIONS(2217), + [anon_sym_random] = ACTIONS(2217), + [anon_sym_random_boolean] = ACTIONS(2217), + [anon_sym_random_float] = ACTIONS(2217), + [anon_sym_random_integer] = ACTIONS(2217), + [anon_sym_columns] = ACTIONS(2217), + [anon_sym_rows] = ACTIONS(2217), + [anon_sym_reverse] = ACTIONS(2217), }, [416] = { - [sym_block] = STATE(777), - [sym_statement] = STATE(33), - [sym_expression] = STATE(732), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(620), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(654), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1841), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(315), - [aux_sym_block_repeat1] = STATE(33), - [sym_identifier] = ACTIONS(623), + [sym_math_operator] = STATE(732), + [sym_logic_operator] = STATE(730), + [ts_builtin_sym_end] = ACTIONS(2034), + [sym_identifier] = ACTIONS(2036), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_if] = ACTIONS(627), - [anon_sym_match] = ACTIONS(629), - [anon_sym_EQ_GT] = ACTIONS(631), - [anon_sym_while] = ACTIONS(633), - [anon_sym_for] = ACTIONS(635), - [anon_sym_asyncfor] = ACTIONS(637), - [anon_sym_transform] = ACTIONS(639), - [anon_sym_filter] = ACTIONS(641), - [anon_sym_find] = ACTIONS(643), - [anon_sym_remove] = ACTIONS(645), - [anon_sym_reduce] = ACTIONS(647), - [anon_sym_select] = ACTIONS(649), - [anon_sym_insert] = ACTIONS(651), - [anon_sym_async] = ACTIONS(653), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(655), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_assert_equal] = ACTIONS(657), - [anon_sym_download] = ACTIONS(657), - [anon_sym_help] = ACTIONS(657), - [anon_sym_length] = ACTIONS(657), - [anon_sym_output] = ACTIONS(657), - [anon_sym_output_error] = ACTIONS(657), - [anon_sym_type] = ACTIONS(657), - [anon_sym_append] = ACTIONS(657), - [anon_sym_metadata] = ACTIONS(657), - [anon_sym_move] = ACTIONS(657), - [anon_sym_read] = ACTIONS(657), - [anon_sym_workdir] = ACTIONS(657), - [anon_sym_write] = ACTIONS(657), - [anon_sym_from_json] = ACTIONS(657), - [anon_sym_to_json] = ACTIONS(657), - [anon_sym_to_string] = ACTIONS(657), - [anon_sym_to_float] = ACTIONS(657), - [anon_sym_bash] = ACTIONS(657), - [anon_sym_fish] = ACTIONS(657), - [anon_sym_raw] = ACTIONS(657), - [anon_sym_sh] = ACTIONS(657), - [anon_sym_zsh] = ACTIONS(657), - [anon_sym_random] = ACTIONS(657), - [anon_sym_random_boolean] = ACTIONS(657), - [anon_sym_random_float] = ACTIONS(657), - [anon_sym_random_integer] = ACTIONS(657), - [anon_sym_columns] = ACTIONS(657), - [anon_sym_rows] = ACTIONS(657), - [anon_sym_reverse] = ACTIONS(657), + [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(2127), + [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_COLON] = ACTIONS(117), + [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(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_asyncfor] = ACTIONS(2034), + [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), }, [417] = { - [sym_block] = STATE(799), - [sym_statement] = STATE(51), - [sym_expression] = STATE(817), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(748), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(760), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1926), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(351), - [aux_sym_block_repeat1] = STATE(51), - [sym_identifier] = ACTIONS(1280), + [ts_builtin_sym_end] = ACTIONS(2219), + [sym_identifier] = ACTIONS(2221), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_match] = ACTIONS(1286), - [anon_sym_EQ_GT] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_asyncfor] = ACTIONS(1294), - [anon_sym_transform] = ACTIONS(1296), - [anon_sym_filter] = ACTIONS(1298), - [anon_sym_find] = ACTIONS(1300), - [anon_sym_remove] = ACTIONS(1302), - [anon_sym_reduce] = ACTIONS(1304), - [anon_sym_select] = ACTIONS(1306), - [anon_sym_insert] = ACTIONS(1308), - [anon_sym_async] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(1312), - [anon_sym_assert] = ACTIONS(1314), - [anon_sym_assert_equal] = ACTIONS(1314), - [anon_sym_download] = ACTIONS(1314), - [anon_sym_help] = ACTIONS(1314), - [anon_sym_length] = ACTIONS(1314), - [anon_sym_output] = ACTIONS(1314), - [anon_sym_output_error] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_append] = ACTIONS(1314), - [anon_sym_metadata] = ACTIONS(1314), - [anon_sym_move] = ACTIONS(1314), - [anon_sym_read] = ACTIONS(1314), - [anon_sym_workdir] = ACTIONS(1314), - [anon_sym_write] = ACTIONS(1314), - [anon_sym_from_json] = ACTIONS(1314), - [anon_sym_to_json] = ACTIONS(1314), - [anon_sym_to_string] = ACTIONS(1314), - [anon_sym_to_float] = ACTIONS(1314), - [anon_sym_bash] = ACTIONS(1314), - [anon_sym_fish] = ACTIONS(1314), - [anon_sym_raw] = ACTIONS(1314), - [anon_sym_sh] = ACTIONS(1314), - [anon_sym_zsh] = ACTIONS(1314), - [anon_sym_random] = ACTIONS(1314), - [anon_sym_random_boolean] = ACTIONS(1314), - [anon_sym_random_float] = ACTIONS(1314), - [anon_sym_random_integer] = ACTIONS(1314), - [anon_sym_columns] = ACTIONS(1314), - [anon_sym_rows] = ACTIONS(1314), - [anon_sym_reverse] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(2219), + [anon_sym_RBRACE] = ACTIONS(2219), + [anon_sym_SEMI] = ACTIONS(2219), + [anon_sym_LPAREN] = ACTIONS(2219), + [anon_sym_RPAREN] = ACTIONS(2219), + [anon_sym_COMMA] = ACTIONS(2219), + [sym_integer] = ACTIONS(2221), + [sym_float] = ACTIONS(2219), + [sym_string] = ACTIONS(2219), + [anon_sym_true] = ACTIONS(2221), + [anon_sym_false] = ACTIONS(2221), + [anon_sym_LBRACK] = ACTIONS(2219), + [anon_sym_RBRACK] = ACTIONS(2219), + [anon_sym_COLON] = ACTIONS(2219), + [anon_sym_DOT_DOT] = ACTIONS(2219), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2221), + [anon_sym_STAR] = ACTIONS(2219), + [anon_sym_SLASH] = ACTIONS(2219), + [anon_sym_PERCENT] = ACTIONS(2219), + [anon_sym_EQ_EQ] = ACTIONS(2219), + [anon_sym_BANG_EQ] = ACTIONS(2219), + [anon_sym_AMP_AMP] = ACTIONS(2219), + [anon_sym_PIPE_PIPE] = ACTIONS(2219), + [anon_sym_GT] = ACTIONS(2221), + [anon_sym_LT] = ACTIONS(2221), + [anon_sym_GT_EQ] = ACTIONS(2219), + [anon_sym_LT_EQ] = ACTIONS(2219), + [anon_sym_if] = ACTIONS(2221), + [anon_sym_elseif] = ACTIONS(2219), + [anon_sym_else] = ACTIONS(2221), + [anon_sym_match] = ACTIONS(2221), + [anon_sym_EQ_GT] = ACTIONS(2219), + [anon_sym_while] = ACTIONS(2221), + [anon_sym_for] = ACTIONS(2221), + [anon_sym_asyncfor] = ACTIONS(2219), + [anon_sym_transform] = ACTIONS(2221), + [anon_sym_filter] = ACTIONS(2221), + [anon_sym_find] = ACTIONS(2221), + [anon_sym_remove] = ACTIONS(2221), + [anon_sym_reduce] = ACTIONS(2221), + [anon_sym_select] = ACTIONS(2221), + [anon_sym_insert] = ACTIONS(2221), + [anon_sym_async] = ACTIONS(2221), + [anon_sym_PIPE] = ACTIONS(2221), + [anon_sym_table] = ACTIONS(2221), + [anon_sym_assert] = ACTIONS(2221), + [anon_sym_assert_equal] = ACTIONS(2221), + [anon_sym_download] = ACTIONS(2221), + [anon_sym_help] = ACTIONS(2221), + [anon_sym_length] = ACTIONS(2221), + [anon_sym_output] = ACTIONS(2221), + [anon_sym_output_error] = ACTIONS(2221), + [anon_sym_type] = ACTIONS(2221), + [anon_sym_append] = ACTIONS(2221), + [anon_sym_metadata] = ACTIONS(2221), + [anon_sym_move] = ACTIONS(2221), + [anon_sym_read] = ACTIONS(2221), + [anon_sym_workdir] = ACTIONS(2221), + [anon_sym_write] = ACTIONS(2221), + [anon_sym_from_json] = ACTIONS(2221), + [anon_sym_to_json] = ACTIONS(2221), + [anon_sym_to_string] = ACTIONS(2221), + [anon_sym_to_float] = ACTIONS(2221), + [anon_sym_bash] = ACTIONS(2221), + [anon_sym_fish] = ACTIONS(2221), + [anon_sym_raw] = ACTIONS(2221), + [anon_sym_sh] = ACTIONS(2221), + [anon_sym_zsh] = ACTIONS(2221), + [anon_sym_random] = ACTIONS(2221), + [anon_sym_random_boolean] = ACTIONS(2221), + [anon_sym_random_float] = ACTIONS(2221), + [anon_sym_random_integer] = ACTIONS(2221), + [anon_sym_columns] = ACTIONS(2221), + [anon_sym_rows] = ACTIONS(2221), + [anon_sym_reverse] = ACTIONS(2221), }, [418] = { - [sym_block] = STATE(696), - [sym_statement] = STATE(17), - [sym_expression] = STATE(601), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_logic] = STATE(706), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(557), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1910), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(284), - [aux_sym_block_repeat1] = STATE(17), - [sym_identifier] = ACTIONS(149), + [ts_builtin_sym_end] = ACTIONS(2223), + [sym_identifier] = ACTIONS(2225), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_if] = ACTIONS(81), - [anon_sym_match] = ACTIONS(165), - [anon_sym_EQ_GT] = ACTIONS(167), - [anon_sym_while] = ACTIONS(169), - [anon_sym_for] = ACTIONS(171), - [anon_sym_asyncfor] = ACTIONS(173), - [anon_sym_transform] = ACTIONS(175), - [anon_sym_filter] = ACTIONS(177), - [anon_sym_find] = ACTIONS(179), - [anon_sym_remove] = ACTIONS(181), - [anon_sym_reduce] = ACTIONS(183), - [anon_sym_select] = ACTIONS(185), - [anon_sym_insert] = ACTIONS(187), - [anon_sym_async] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(191), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_assert_equal] = ACTIONS(193), - [anon_sym_download] = ACTIONS(193), - [anon_sym_help] = ACTIONS(193), - [anon_sym_length] = ACTIONS(193), - [anon_sym_output] = ACTIONS(193), - [anon_sym_output_error] = ACTIONS(193), - [anon_sym_type] = ACTIONS(193), - [anon_sym_append] = ACTIONS(193), - [anon_sym_metadata] = ACTIONS(193), - [anon_sym_move] = ACTIONS(193), - [anon_sym_read] = ACTIONS(193), - [anon_sym_workdir] = ACTIONS(193), - [anon_sym_write] = ACTIONS(193), - [anon_sym_from_json] = ACTIONS(193), - [anon_sym_to_json] = ACTIONS(193), - [anon_sym_to_string] = ACTIONS(193), - [anon_sym_to_float] = ACTIONS(193), - [anon_sym_bash] = ACTIONS(193), - [anon_sym_fish] = ACTIONS(193), - [anon_sym_raw] = ACTIONS(193), - [anon_sym_sh] = ACTIONS(193), - [anon_sym_zsh] = ACTIONS(193), - [anon_sym_random] = ACTIONS(193), - [anon_sym_random_boolean] = ACTIONS(193), - [anon_sym_random_float] = ACTIONS(193), - [anon_sym_random_integer] = ACTIONS(193), - [anon_sym_columns] = ACTIONS(193), - [anon_sym_rows] = ACTIONS(193), - [anon_sym_reverse] = ACTIONS(193), + [anon_sym_LBRACE] = ACTIONS(2223), + [anon_sym_RBRACE] = ACTIONS(2223), + [anon_sym_SEMI] = ACTIONS(2223), + [anon_sym_LPAREN] = ACTIONS(2223), + [anon_sym_RPAREN] = ACTIONS(2223), + [anon_sym_COMMA] = ACTIONS(2223), + [sym_integer] = ACTIONS(2225), + [sym_float] = ACTIONS(2223), + [sym_string] = ACTIONS(2223), + [anon_sym_true] = ACTIONS(2225), + [anon_sym_false] = ACTIONS(2225), + [anon_sym_LBRACK] = ACTIONS(2223), + [anon_sym_RBRACK] = ACTIONS(2223), + [anon_sym_COLON] = ACTIONS(2223), + [anon_sym_DOT_DOT] = ACTIONS(2223), + [anon_sym_PLUS] = ACTIONS(2223), + [anon_sym_DASH] = ACTIONS(2225), + [anon_sym_STAR] = ACTIONS(2223), + [anon_sym_SLASH] = ACTIONS(2223), + [anon_sym_PERCENT] = ACTIONS(2223), + [anon_sym_EQ_EQ] = ACTIONS(2223), + [anon_sym_BANG_EQ] = ACTIONS(2223), + [anon_sym_AMP_AMP] = ACTIONS(2223), + [anon_sym_PIPE_PIPE] = ACTIONS(2223), + [anon_sym_GT] = ACTIONS(2225), + [anon_sym_LT] = ACTIONS(2225), + [anon_sym_GT_EQ] = ACTIONS(2223), + [anon_sym_LT_EQ] = ACTIONS(2223), + [anon_sym_if] = ACTIONS(2225), + [anon_sym_elseif] = ACTIONS(2223), + [anon_sym_else] = ACTIONS(2225), + [anon_sym_match] = ACTIONS(2225), + [anon_sym_EQ_GT] = ACTIONS(2223), + [anon_sym_while] = ACTIONS(2225), + [anon_sym_for] = ACTIONS(2225), + [anon_sym_asyncfor] = ACTIONS(2223), + [anon_sym_transform] = ACTIONS(2225), + [anon_sym_filter] = ACTIONS(2225), + [anon_sym_find] = ACTIONS(2225), + [anon_sym_remove] = ACTIONS(2225), + [anon_sym_reduce] = ACTIONS(2225), + [anon_sym_select] = ACTIONS(2225), + [anon_sym_insert] = ACTIONS(2225), + [anon_sym_async] = ACTIONS(2225), + [anon_sym_PIPE] = ACTIONS(2225), + [anon_sym_table] = ACTIONS(2225), + [anon_sym_assert] = ACTIONS(2225), + [anon_sym_assert_equal] = ACTIONS(2225), + [anon_sym_download] = ACTIONS(2225), + [anon_sym_help] = ACTIONS(2225), + [anon_sym_length] = ACTIONS(2225), + [anon_sym_output] = ACTIONS(2225), + [anon_sym_output_error] = ACTIONS(2225), + [anon_sym_type] = ACTIONS(2225), + [anon_sym_append] = ACTIONS(2225), + [anon_sym_metadata] = ACTIONS(2225), + [anon_sym_move] = ACTIONS(2225), + [anon_sym_read] = ACTIONS(2225), + [anon_sym_workdir] = ACTIONS(2225), + [anon_sym_write] = ACTIONS(2225), + [anon_sym_from_json] = ACTIONS(2225), + [anon_sym_to_json] = ACTIONS(2225), + [anon_sym_to_string] = ACTIONS(2225), + [anon_sym_to_float] = ACTIONS(2225), + [anon_sym_bash] = ACTIONS(2225), + [anon_sym_fish] = ACTIONS(2225), + [anon_sym_raw] = ACTIONS(2225), + [anon_sym_sh] = ACTIONS(2225), + [anon_sym_zsh] = ACTIONS(2225), + [anon_sym_random] = ACTIONS(2225), + [anon_sym_random_boolean] = ACTIONS(2225), + [anon_sym_random_float] = ACTIONS(2225), + [anon_sym_random_integer] = ACTIONS(2225), + [anon_sym_columns] = ACTIONS(2225), + [anon_sym_rows] = ACTIONS(2225), + [anon_sym_reverse] = ACTIONS(2225), }, [419] = { - [sym_block] = STATE(848), - [sym_statement] = STATE(61), - [sym_expression] = STATE(888), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(822), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(787), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(61), - [sym_identifier] = ACTIONS(1846), + [ts_builtin_sym_end] = ACTIONS(2227), + [sym_identifier] = ACTIONS(2229), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(877), - [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(1284), - [anon_sym_match] = ACTIONS(1850), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(1852), - [anon_sym_for] = ACTIONS(1854), - [anon_sym_asyncfor] = ACTIONS(1856), - [anon_sym_transform] = ACTIONS(1858), - [anon_sym_filter] = ACTIONS(1860), - [anon_sym_find] = ACTIONS(1862), - [anon_sym_remove] = ACTIONS(1864), - [anon_sym_reduce] = ACTIONS(1866), - [anon_sym_select] = ACTIONS(1868), - [anon_sym_insert] = ACTIONS(43), - [anon_sym_async] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(49), - [anon_sym_assert] = ACTIONS(51), - [anon_sym_assert_equal] = ACTIONS(51), - [anon_sym_download] = ACTIONS(51), - [anon_sym_help] = ACTIONS(51), - [anon_sym_length] = ACTIONS(51), - [anon_sym_output] = ACTIONS(51), - [anon_sym_output_error] = ACTIONS(51), - [anon_sym_type] = ACTIONS(51), - [anon_sym_append] = ACTIONS(51), - [anon_sym_metadata] = ACTIONS(51), - [anon_sym_move] = ACTIONS(51), - [anon_sym_read] = ACTIONS(51), - [anon_sym_workdir] = ACTIONS(51), - [anon_sym_write] = ACTIONS(51), - [anon_sym_from_json] = ACTIONS(51), - [anon_sym_to_json] = ACTIONS(51), - [anon_sym_to_string] = ACTIONS(51), - [anon_sym_to_float] = ACTIONS(51), - [anon_sym_bash] = ACTIONS(51), - [anon_sym_fish] = ACTIONS(51), - [anon_sym_raw] = ACTIONS(51), - [anon_sym_sh] = ACTIONS(51), - [anon_sym_zsh] = ACTIONS(51), - [anon_sym_random] = ACTIONS(51), - [anon_sym_random_boolean] = ACTIONS(51), - [anon_sym_random_float] = ACTIONS(51), - [anon_sym_random_integer] = ACTIONS(51), - [anon_sym_columns] = ACTIONS(51), - [anon_sym_rows] = ACTIONS(51), - [anon_sym_reverse] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(2227), + [anon_sym_RBRACE] = ACTIONS(2227), + [anon_sym_SEMI] = ACTIONS(2227), + [anon_sym_LPAREN] = ACTIONS(2227), + [anon_sym_RPAREN] = ACTIONS(2227), + [anon_sym_COMMA] = ACTIONS(2227), + [sym_integer] = ACTIONS(2229), + [sym_float] = ACTIONS(2227), + [sym_string] = ACTIONS(2227), + [anon_sym_true] = ACTIONS(2229), + [anon_sym_false] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2227), + [anon_sym_RBRACK] = ACTIONS(2227), + [anon_sym_COLON] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2227), + [anon_sym_PLUS] = ACTIONS(2227), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2227), + [anon_sym_SLASH] = ACTIONS(2227), + [anon_sym_PERCENT] = ACTIONS(2227), + [anon_sym_EQ_EQ] = ACTIONS(2227), + [anon_sym_BANG_EQ] = ACTIONS(2227), + [anon_sym_AMP_AMP] = ACTIONS(2227), + [anon_sym_PIPE_PIPE] = ACTIONS(2227), + [anon_sym_GT] = ACTIONS(2229), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_GT_EQ] = ACTIONS(2227), + [anon_sym_LT_EQ] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_elseif] = ACTIONS(2227), + [anon_sym_else] = ACTIONS(2229), + [anon_sym_match] = ACTIONS(2229), + [anon_sym_EQ_GT] = ACTIONS(2227), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_asyncfor] = ACTIONS(2227), + [anon_sym_transform] = ACTIONS(2229), + [anon_sym_filter] = ACTIONS(2229), + [anon_sym_find] = ACTIONS(2229), + [anon_sym_remove] = ACTIONS(2229), + [anon_sym_reduce] = ACTIONS(2229), + [anon_sym_select] = ACTIONS(2229), + [anon_sym_insert] = ACTIONS(2229), + [anon_sym_async] = ACTIONS(2229), + [anon_sym_PIPE] = ACTIONS(2229), + [anon_sym_table] = ACTIONS(2229), + [anon_sym_assert] = ACTIONS(2229), + [anon_sym_assert_equal] = ACTIONS(2229), + [anon_sym_download] = ACTIONS(2229), + [anon_sym_help] = ACTIONS(2229), + [anon_sym_length] = ACTIONS(2229), + [anon_sym_output] = ACTIONS(2229), + [anon_sym_output_error] = ACTIONS(2229), + [anon_sym_type] = ACTIONS(2229), + [anon_sym_append] = ACTIONS(2229), + [anon_sym_metadata] = ACTIONS(2229), + [anon_sym_move] = ACTIONS(2229), + [anon_sym_read] = ACTIONS(2229), + [anon_sym_workdir] = ACTIONS(2229), + [anon_sym_write] = ACTIONS(2229), + [anon_sym_from_json] = ACTIONS(2229), + [anon_sym_to_json] = ACTIONS(2229), + [anon_sym_to_string] = ACTIONS(2229), + [anon_sym_to_float] = ACTIONS(2229), + [anon_sym_bash] = ACTIONS(2229), + [anon_sym_fish] = ACTIONS(2229), + [anon_sym_raw] = ACTIONS(2229), + [anon_sym_sh] = ACTIONS(2229), + [anon_sym_zsh] = ACTIONS(2229), + [anon_sym_random] = ACTIONS(2229), + [anon_sym_random_boolean] = ACTIONS(2229), + [anon_sym_random_float] = ACTIONS(2229), + [anon_sym_random_integer] = ACTIONS(2229), + [anon_sym_columns] = ACTIONS(2229), + [anon_sym_rows] = ACTIONS(2229), + [anon_sym_reverse] = ACTIONS(2229), }, [420] = { - [sym_statement] = STATE(376), - [sym_expression] = STATE(925), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(867), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(980), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(376), - [sym_identifier] = ACTIONS(5), + [ts_builtin_sym_end] = ACTIONS(2231), + [sym_identifier] = ACTIONS(2233), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(3087), - [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_asyncfor] = 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_async] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(49), - [anon_sym_assert] = ACTIONS(51), - [anon_sym_assert_equal] = ACTIONS(51), - [anon_sym_download] = ACTIONS(51), - [anon_sym_help] = ACTIONS(51), - [anon_sym_length] = ACTIONS(51), - [anon_sym_output] = ACTIONS(51), - [anon_sym_output_error] = ACTIONS(51), - [anon_sym_type] = ACTIONS(51), - [anon_sym_append] = ACTIONS(51), - [anon_sym_metadata] = ACTIONS(51), - [anon_sym_move] = ACTIONS(51), - [anon_sym_read] = ACTIONS(51), - [anon_sym_workdir] = ACTIONS(51), - [anon_sym_write] = ACTIONS(51), - [anon_sym_from_json] = ACTIONS(51), - [anon_sym_to_json] = ACTIONS(51), - [anon_sym_to_string] = ACTIONS(51), - [anon_sym_to_float] = ACTIONS(51), - [anon_sym_bash] = ACTIONS(51), - [anon_sym_fish] = ACTIONS(51), - [anon_sym_raw] = ACTIONS(51), - [anon_sym_sh] = ACTIONS(51), - [anon_sym_zsh] = ACTIONS(51), - [anon_sym_random] = ACTIONS(51), - [anon_sym_random_boolean] = ACTIONS(51), - [anon_sym_random_float] = ACTIONS(51), - [anon_sym_random_integer] = ACTIONS(51), - [anon_sym_columns] = ACTIONS(51), - [anon_sym_rows] = ACTIONS(51), - [anon_sym_reverse] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(2231), + [anon_sym_RBRACE] = ACTIONS(2231), + [anon_sym_SEMI] = ACTIONS(2231), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_RPAREN] = ACTIONS(2231), + [anon_sym_COMMA] = ACTIONS(2231), + [sym_integer] = ACTIONS(2233), + [sym_float] = ACTIONS(2231), + [sym_string] = ACTIONS(2231), + [anon_sym_true] = ACTIONS(2233), + [anon_sym_false] = ACTIONS(2233), + [anon_sym_LBRACK] = ACTIONS(2231), + [anon_sym_RBRACK] = ACTIONS(2231), + [anon_sym_COLON] = ACTIONS(2231), + [anon_sym_DOT_DOT] = ACTIONS(2231), + [anon_sym_PLUS] = ACTIONS(2231), + [anon_sym_DASH] = ACTIONS(2233), + [anon_sym_STAR] = ACTIONS(2231), + [anon_sym_SLASH] = ACTIONS(2231), + [anon_sym_PERCENT] = ACTIONS(2231), + [anon_sym_EQ_EQ] = ACTIONS(2231), + [anon_sym_BANG_EQ] = ACTIONS(2231), + [anon_sym_AMP_AMP] = ACTIONS(2231), + [anon_sym_PIPE_PIPE] = ACTIONS(2231), + [anon_sym_GT] = ACTIONS(2233), + [anon_sym_LT] = ACTIONS(2233), + [anon_sym_GT_EQ] = ACTIONS(2231), + [anon_sym_LT_EQ] = ACTIONS(2231), + [anon_sym_if] = ACTIONS(2233), + [anon_sym_elseif] = ACTIONS(2231), + [anon_sym_else] = ACTIONS(2233), + [anon_sym_match] = ACTIONS(2233), + [anon_sym_EQ_GT] = ACTIONS(2231), + [anon_sym_while] = ACTIONS(2233), + [anon_sym_for] = ACTIONS(2233), + [anon_sym_asyncfor] = ACTIONS(2231), + [anon_sym_transform] = ACTIONS(2233), + [anon_sym_filter] = ACTIONS(2233), + [anon_sym_find] = ACTIONS(2233), + [anon_sym_remove] = ACTIONS(2233), + [anon_sym_reduce] = ACTIONS(2233), + [anon_sym_select] = ACTIONS(2233), + [anon_sym_insert] = ACTIONS(2233), + [anon_sym_async] = ACTIONS(2233), + [anon_sym_PIPE] = ACTIONS(2233), + [anon_sym_table] = ACTIONS(2233), + [anon_sym_assert] = ACTIONS(2233), + [anon_sym_assert_equal] = ACTIONS(2233), + [anon_sym_download] = ACTIONS(2233), + [anon_sym_help] = ACTIONS(2233), + [anon_sym_length] = ACTIONS(2233), + [anon_sym_output] = ACTIONS(2233), + [anon_sym_output_error] = ACTIONS(2233), + [anon_sym_type] = ACTIONS(2233), + [anon_sym_append] = ACTIONS(2233), + [anon_sym_metadata] = ACTIONS(2233), + [anon_sym_move] = ACTIONS(2233), + [anon_sym_read] = ACTIONS(2233), + [anon_sym_workdir] = ACTIONS(2233), + [anon_sym_write] = ACTIONS(2233), + [anon_sym_from_json] = ACTIONS(2233), + [anon_sym_to_json] = ACTIONS(2233), + [anon_sym_to_string] = ACTIONS(2233), + [anon_sym_to_float] = ACTIONS(2233), + [anon_sym_bash] = ACTIONS(2233), + [anon_sym_fish] = ACTIONS(2233), + [anon_sym_raw] = ACTIONS(2233), + [anon_sym_sh] = ACTIONS(2233), + [anon_sym_zsh] = ACTIONS(2233), + [anon_sym_random] = ACTIONS(2233), + [anon_sym_random_boolean] = ACTIONS(2233), + [anon_sym_random_float] = ACTIONS(2233), + [anon_sym_random_integer] = ACTIONS(2233), + [anon_sym_columns] = ACTIONS(2233), + [anon_sym_rows] = ACTIONS(2233), + [anon_sym_reverse] = ACTIONS(2233), }, [421] = { - [sym_block] = STATE(727), - [sym_statement] = STATE(17), - [sym_expression] = STATE(601), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_logic] = STATE(706), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(557), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1910), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(284), - [aux_sym_block_repeat1] = STATE(17), - [sym_identifier] = ACTIONS(149), + [ts_builtin_sym_end] = ACTIONS(2001), + [sym_identifier] = ACTIONS(2003), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_if] = ACTIONS(81), - [anon_sym_match] = ACTIONS(165), - [anon_sym_EQ_GT] = ACTIONS(167), - [anon_sym_while] = ACTIONS(169), - [anon_sym_for] = ACTIONS(171), - [anon_sym_asyncfor] = ACTIONS(173), - [anon_sym_transform] = ACTIONS(175), - [anon_sym_filter] = ACTIONS(177), - [anon_sym_find] = ACTIONS(179), - [anon_sym_remove] = ACTIONS(181), - [anon_sym_reduce] = ACTIONS(183), - [anon_sym_select] = ACTIONS(185), - [anon_sym_insert] = ACTIONS(187), - [anon_sym_async] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(191), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_assert_equal] = ACTIONS(193), - [anon_sym_download] = ACTIONS(193), - [anon_sym_help] = ACTIONS(193), - [anon_sym_length] = ACTIONS(193), - [anon_sym_output] = ACTIONS(193), - [anon_sym_output_error] = ACTIONS(193), - [anon_sym_type] = ACTIONS(193), - [anon_sym_append] = ACTIONS(193), - [anon_sym_metadata] = ACTIONS(193), - [anon_sym_move] = ACTIONS(193), - [anon_sym_read] = ACTIONS(193), - [anon_sym_workdir] = ACTIONS(193), - [anon_sym_write] = ACTIONS(193), - [anon_sym_from_json] = ACTIONS(193), - [anon_sym_to_json] = ACTIONS(193), - [anon_sym_to_string] = ACTIONS(193), - [anon_sym_to_float] = ACTIONS(193), - [anon_sym_bash] = ACTIONS(193), - [anon_sym_fish] = ACTIONS(193), - [anon_sym_raw] = ACTIONS(193), - [anon_sym_sh] = ACTIONS(193), - [anon_sym_zsh] = ACTIONS(193), - [anon_sym_random] = ACTIONS(193), - [anon_sym_random_boolean] = ACTIONS(193), - [anon_sym_random_float] = ACTIONS(193), - [anon_sym_random_integer] = ACTIONS(193), - [anon_sym_columns] = ACTIONS(193), - [anon_sym_rows] = ACTIONS(193), - [anon_sym_reverse] = ACTIONS(193), + [anon_sym_LBRACE] = ACTIONS(2001), + [anon_sym_RBRACE] = ACTIONS(2001), + [anon_sym_SEMI] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_RPAREN] = ACTIONS(2001), + [anon_sym_COMMA] = ACTIONS(2001), + [sym_integer] = ACTIONS(2003), + [sym_float] = ACTIONS(2001), + [sym_string] = ACTIONS(2001), + [anon_sym_true] = ACTIONS(2003), + [anon_sym_false] = ACTIONS(2003), + [anon_sym_LBRACK] = ACTIONS(2001), + [anon_sym_RBRACK] = ACTIONS(2001), + [anon_sym_COLON] = ACTIONS(2001), + [anon_sym_DOT_DOT] = ACTIONS(2001), + [anon_sym_PLUS] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_STAR] = ACTIONS(2001), + [anon_sym_SLASH] = ACTIONS(2001), + [anon_sym_PERCENT] = ACTIONS(2001), + [anon_sym_EQ_EQ] = ACTIONS(2001), + [anon_sym_BANG_EQ] = ACTIONS(2001), + [anon_sym_AMP_AMP] = ACTIONS(2001), + [anon_sym_PIPE_PIPE] = ACTIONS(2001), + [anon_sym_GT] = ACTIONS(2003), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_GT_EQ] = ACTIONS(2001), + [anon_sym_LT_EQ] = ACTIONS(2001), + [anon_sym_if] = ACTIONS(2003), + [anon_sym_elseif] = ACTIONS(2001), + [anon_sym_else] = ACTIONS(2003), + [anon_sym_match] = ACTIONS(2003), + [anon_sym_EQ_GT] = ACTIONS(2001), + [anon_sym_while] = ACTIONS(2003), + [anon_sym_for] = ACTIONS(2003), + [anon_sym_asyncfor] = ACTIONS(2001), + [anon_sym_transform] = ACTIONS(2003), + [anon_sym_filter] = ACTIONS(2003), + [anon_sym_find] = ACTIONS(2003), + [anon_sym_remove] = ACTIONS(2003), + [anon_sym_reduce] = ACTIONS(2003), + [anon_sym_select] = ACTIONS(2003), + [anon_sym_insert] = ACTIONS(2003), + [anon_sym_async] = ACTIONS(2003), + [anon_sym_PIPE] = ACTIONS(2003), + [anon_sym_table] = ACTIONS(2003), + [anon_sym_assert] = ACTIONS(2003), + [anon_sym_assert_equal] = ACTIONS(2003), + [anon_sym_download] = ACTIONS(2003), + [anon_sym_help] = ACTIONS(2003), + [anon_sym_length] = ACTIONS(2003), + [anon_sym_output] = ACTIONS(2003), + [anon_sym_output_error] = ACTIONS(2003), + [anon_sym_type] = ACTIONS(2003), + [anon_sym_append] = ACTIONS(2003), + [anon_sym_metadata] = ACTIONS(2003), + [anon_sym_move] = ACTIONS(2003), + [anon_sym_read] = ACTIONS(2003), + [anon_sym_workdir] = ACTIONS(2003), + [anon_sym_write] = ACTIONS(2003), + [anon_sym_from_json] = ACTIONS(2003), + [anon_sym_to_json] = ACTIONS(2003), + [anon_sym_to_string] = ACTIONS(2003), + [anon_sym_to_float] = ACTIONS(2003), + [anon_sym_bash] = ACTIONS(2003), + [anon_sym_fish] = ACTIONS(2003), + [anon_sym_raw] = ACTIONS(2003), + [anon_sym_sh] = ACTIONS(2003), + [anon_sym_zsh] = ACTIONS(2003), + [anon_sym_random] = ACTIONS(2003), + [anon_sym_random_boolean] = ACTIONS(2003), + [anon_sym_random_float] = ACTIONS(2003), + [anon_sym_random_integer] = ACTIONS(2003), + [anon_sym_columns] = ACTIONS(2003), + [anon_sym_rows] = ACTIONS(2003), + [anon_sym_reverse] = ACTIONS(2003), }, [422] = { - [sym_block] = STATE(1011), - [sym_statement] = STATE(260), - [sym_expression] = STATE(888), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(822), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(787), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(260), - [sym_identifier] = ACTIONS(1846), + [sym_else_if] = STATE(459), + [sym_else] = STATE(430), + [aux_sym_if_else_repeat1] = STATE(459), + [ts_builtin_sym_end] = ACTIONS(2001), + [sym_identifier] = ACTIONS(2003), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3083), - [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(1284), - [anon_sym_match] = ACTIONS(1850), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(1852), - [anon_sym_for] = ACTIONS(1854), - [anon_sym_asyncfor] = ACTIONS(1856), - [anon_sym_transform] = ACTIONS(1858), - [anon_sym_filter] = ACTIONS(1860), - [anon_sym_find] = ACTIONS(1862), - [anon_sym_remove] = ACTIONS(1864), - [anon_sym_reduce] = ACTIONS(1866), - [anon_sym_select] = ACTIONS(1868), - [anon_sym_insert] = ACTIONS(43), - [anon_sym_async] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(49), - [anon_sym_assert] = ACTIONS(51), - [anon_sym_assert_equal] = ACTIONS(51), - [anon_sym_download] = ACTIONS(51), - [anon_sym_help] = ACTIONS(51), - [anon_sym_length] = ACTIONS(51), - [anon_sym_output] = ACTIONS(51), - [anon_sym_output_error] = ACTIONS(51), - [anon_sym_type] = ACTIONS(51), - [anon_sym_append] = ACTIONS(51), - [anon_sym_metadata] = ACTIONS(51), - [anon_sym_move] = ACTIONS(51), - [anon_sym_read] = ACTIONS(51), - [anon_sym_workdir] = ACTIONS(51), - [anon_sym_write] = ACTIONS(51), - [anon_sym_from_json] = ACTIONS(51), - [anon_sym_to_json] = ACTIONS(51), - [anon_sym_to_string] = ACTIONS(51), - [anon_sym_to_float] = ACTIONS(51), - [anon_sym_bash] = ACTIONS(51), - [anon_sym_fish] = ACTIONS(51), - [anon_sym_raw] = ACTIONS(51), - [anon_sym_sh] = ACTIONS(51), - [anon_sym_zsh] = ACTIONS(51), - [anon_sym_random] = ACTIONS(51), - [anon_sym_random_boolean] = ACTIONS(51), - [anon_sym_random_float] = ACTIONS(51), - [anon_sym_random_integer] = ACTIONS(51), - [anon_sym_columns] = ACTIONS(51), - [anon_sym_rows] = ACTIONS(51), - [anon_sym_reverse] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(2001), + [anon_sym_RBRACE] = ACTIONS(2001), + [anon_sym_SEMI] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_RPAREN] = ACTIONS(2001), + [sym_integer] = ACTIONS(2003), + [sym_float] = ACTIONS(2001), + [sym_string] = ACTIONS(2001), + [anon_sym_true] = ACTIONS(2003), + [anon_sym_false] = ACTIONS(2003), + [anon_sym_LBRACK] = ACTIONS(2001), + [anon_sym_COLON] = ACTIONS(2001), + [anon_sym_PLUS] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_STAR] = ACTIONS(2001), + [anon_sym_SLASH] = ACTIONS(2001), + [anon_sym_PERCENT] = ACTIONS(2001), + [anon_sym_EQ_EQ] = ACTIONS(2001), + [anon_sym_BANG_EQ] = ACTIONS(2001), + [anon_sym_AMP_AMP] = ACTIONS(2001), + [anon_sym_PIPE_PIPE] = ACTIONS(2001), + [anon_sym_GT] = ACTIONS(2003), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_GT_EQ] = ACTIONS(2001), + [anon_sym_LT_EQ] = ACTIONS(2001), + [anon_sym_if] = ACTIONS(2003), + [anon_sym_elseif] = ACTIONS(2211), + [anon_sym_else] = ACTIONS(2213), + [anon_sym_match] = ACTIONS(2003), + [anon_sym_EQ_GT] = ACTIONS(2001), + [anon_sym_while] = ACTIONS(2003), + [anon_sym_for] = ACTIONS(2003), + [anon_sym_asyncfor] = ACTIONS(2001), + [anon_sym_transform] = ACTIONS(2003), + [anon_sym_filter] = ACTIONS(2003), + [anon_sym_find] = ACTIONS(2003), + [anon_sym_remove] = ACTIONS(2003), + [anon_sym_reduce] = ACTIONS(2003), + [anon_sym_select] = ACTIONS(2003), + [anon_sym_insert] = ACTIONS(2003), + [anon_sym_async] = ACTIONS(2003), + [anon_sym_PIPE] = ACTIONS(2003), + [anon_sym_table] = ACTIONS(2003), + [anon_sym_assert] = ACTIONS(2003), + [anon_sym_assert_equal] = ACTIONS(2003), + [anon_sym_download] = ACTIONS(2003), + [anon_sym_help] = ACTIONS(2003), + [anon_sym_length] = ACTIONS(2003), + [anon_sym_output] = ACTIONS(2003), + [anon_sym_output_error] = ACTIONS(2003), + [anon_sym_type] = ACTIONS(2003), + [anon_sym_append] = ACTIONS(2003), + [anon_sym_metadata] = ACTIONS(2003), + [anon_sym_move] = ACTIONS(2003), + [anon_sym_read] = ACTIONS(2003), + [anon_sym_workdir] = ACTIONS(2003), + [anon_sym_write] = ACTIONS(2003), + [anon_sym_from_json] = ACTIONS(2003), + [anon_sym_to_json] = ACTIONS(2003), + [anon_sym_to_string] = ACTIONS(2003), + [anon_sym_to_float] = ACTIONS(2003), + [anon_sym_bash] = ACTIONS(2003), + [anon_sym_fish] = ACTIONS(2003), + [anon_sym_raw] = ACTIONS(2003), + [anon_sym_sh] = ACTIONS(2003), + [anon_sym_zsh] = ACTIONS(2003), + [anon_sym_random] = ACTIONS(2003), + [anon_sym_random_boolean] = ACTIONS(2003), + [anon_sym_random_float] = ACTIONS(2003), + [anon_sym_random_integer] = ACTIONS(2003), + [anon_sym_columns] = ACTIONS(2003), + [anon_sym_rows] = ACTIONS(2003), + [anon_sym_reverse] = ACTIONS(2003), }, [423] = { - [sym_block] = STATE(799), - [sym_statement] = STATE(38), - [sym_expression] = STATE(779), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(655), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(724), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1860), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(341), - [aux_sym_block_repeat1] = STATE(38), - [sym_identifier] = ACTIONS(839), + [ts_builtin_sym_end] = ACTIONS(2235), + [sym_identifier] = ACTIONS(2237), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_if] = ACTIONS(843), - [anon_sym_match] = ACTIONS(845), - [anon_sym_EQ_GT] = ACTIONS(847), - [anon_sym_while] = ACTIONS(849), - [anon_sym_for] = ACTIONS(851), - [anon_sym_asyncfor] = 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(867), - [anon_sym_async] = ACTIONS(869), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(871), - [anon_sym_assert] = ACTIONS(873), - [anon_sym_assert_equal] = ACTIONS(873), - [anon_sym_download] = ACTIONS(873), - [anon_sym_help] = ACTIONS(873), - [anon_sym_length] = ACTIONS(873), - [anon_sym_output] = ACTIONS(873), - [anon_sym_output_error] = ACTIONS(873), - [anon_sym_type] = ACTIONS(873), - [anon_sym_append] = ACTIONS(873), - [anon_sym_metadata] = ACTIONS(873), - [anon_sym_move] = ACTIONS(873), - [anon_sym_read] = ACTIONS(873), - [anon_sym_workdir] = ACTIONS(873), - [anon_sym_write] = ACTIONS(873), - [anon_sym_from_json] = ACTIONS(873), - [anon_sym_to_json] = ACTIONS(873), - [anon_sym_to_string] = ACTIONS(873), - [anon_sym_to_float] = ACTIONS(873), - [anon_sym_bash] = ACTIONS(873), - [anon_sym_fish] = ACTIONS(873), - [anon_sym_raw] = ACTIONS(873), - [anon_sym_sh] = ACTIONS(873), - [anon_sym_zsh] = ACTIONS(873), - [anon_sym_random] = ACTIONS(873), - [anon_sym_random_boolean] = ACTIONS(873), - [anon_sym_random_float] = ACTIONS(873), - [anon_sym_random_integer] = ACTIONS(873), - [anon_sym_columns] = ACTIONS(873), - [anon_sym_rows] = ACTIONS(873), - [anon_sym_reverse] = ACTIONS(873), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_RBRACE] = ACTIONS(2235), + [anon_sym_SEMI] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_RPAREN] = ACTIONS(2235), + [anon_sym_COMMA] = ACTIONS(2235), + [sym_integer] = ACTIONS(2237), + [sym_float] = ACTIONS(2235), + [sym_string] = ACTIONS(2235), + [anon_sym_true] = ACTIONS(2237), + [anon_sym_false] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_RBRACK] = ACTIONS(2235), + [anon_sym_COLON] = ACTIONS(2235), + [anon_sym_DOT_DOT] = ACTIONS(2235), + [anon_sym_PLUS] = ACTIONS(2235), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_STAR] = ACTIONS(2235), + [anon_sym_SLASH] = ACTIONS(2235), + [anon_sym_PERCENT] = ACTIONS(2235), + [anon_sym_EQ_EQ] = ACTIONS(2235), + [anon_sym_BANG_EQ] = ACTIONS(2235), + [anon_sym_AMP_AMP] = ACTIONS(2235), + [anon_sym_PIPE_PIPE] = ACTIONS(2235), + [anon_sym_GT] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2237), + [anon_sym_GT_EQ] = ACTIONS(2235), + [anon_sym_LT_EQ] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_elseif] = ACTIONS(2235), + [anon_sym_else] = ACTIONS(2237), + [anon_sym_match] = ACTIONS(2237), + [anon_sym_EQ_GT] = ACTIONS(2235), + [anon_sym_while] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_asyncfor] = ACTIONS(2235), + [anon_sym_transform] = ACTIONS(2237), + [anon_sym_filter] = ACTIONS(2237), + [anon_sym_find] = ACTIONS(2237), + [anon_sym_remove] = ACTIONS(2237), + [anon_sym_reduce] = ACTIONS(2237), + [anon_sym_select] = ACTIONS(2237), + [anon_sym_insert] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_PIPE] = ACTIONS(2237), + [anon_sym_table] = ACTIONS(2237), + [anon_sym_assert] = ACTIONS(2237), + [anon_sym_assert_equal] = ACTIONS(2237), + [anon_sym_download] = ACTIONS(2237), + [anon_sym_help] = ACTIONS(2237), + [anon_sym_length] = ACTIONS(2237), + [anon_sym_output] = ACTIONS(2237), + [anon_sym_output_error] = ACTIONS(2237), + [anon_sym_type] = ACTIONS(2237), + [anon_sym_append] = ACTIONS(2237), + [anon_sym_metadata] = ACTIONS(2237), + [anon_sym_move] = ACTIONS(2237), + [anon_sym_read] = ACTIONS(2237), + [anon_sym_workdir] = ACTIONS(2237), + [anon_sym_write] = ACTIONS(2237), + [anon_sym_from_json] = ACTIONS(2237), + [anon_sym_to_json] = ACTIONS(2237), + [anon_sym_to_string] = ACTIONS(2237), + [anon_sym_to_float] = ACTIONS(2237), + [anon_sym_bash] = ACTIONS(2237), + [anon_sym_fish] = ACTIONS(2237), + [anon_sym_raw] = ACTIONS(2237), + [anon_sym_sh] = ACTIONS(2237), + [anon_sym_zsh] = ACTIONS(2237), + [anon_sym_random] = ACTIONS(2237), + [anon_sym_random_boolean] = ACTIONS(2237), + [anon_sym_random_float] = ACTIONS(2237), + [anon_sym_random_integer] = ACTIONS(2237), + [anon_sym_columns] = ACTIONS(2237), + [anon_sym_rows] = ACTIONS(2237), + [anon_sym_reverse] = ACTIONS(2237), }, [424] = { - [sym_block] = STATE(1055), - [sym_statement] = STATE(381), - [sym_expression] = STATE(925), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(867), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(980), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(381), - [sym_identifier] = ACTIONS(5), + [ts_builtin_sym_end] = ACTIONS(2239), + [sym_identifier] = ACTIONS(2241), [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_asyncfor] = 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_async] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(49), - [anon_sym_assert] = ACTIONS(51), - [anon_sym_assert_equal] = ACTIONS(51), - [anon_sym_download] = ACTIONS(51), - [anon_sym_help] = ACTIONS(51), - [anon_sym_length] = ACTIONS(51), - [anon_sym_output] = ACTIONS(51), - [anon_sym_output_error] = ACTIONS(51), - [anon_sym_type] = ACTIONS(51), - [anon_sym_append] = ACTIONS(51), - [anon_sym_metadata] = ACTIONS(51), - [anon_sym_move] = ACTIONS(51), - [anon_sym_read] = ACTIONS(51), - [anon_sym_workdir] = ACTIONS(51), - [anon_sym_write] = ACTIONS(51), - [anon_sym_from_json] = ACTIONS(51), - [anon_sym_to_json] = ACTIONS(51), - [anon_sym_to_string] = ACTIONS(51), - [anon_sym_to_float] = ACTIONS(51), - [anon_sym_bash] = ACTIONS(51), - [anon_sym_fish] = ACTIONS(51), - [anon_sym_raw] = ACTIONS(51), - [anon_sym_sh] = ACTIONS(51), - [anon_sym_zsh] = ACTIONS(51), - [anon_sym_random] = ACTIONS(51), - [anon_sym_random_boolean] = ACTIONS(51), - [anon_sym_random_float] = ACTIONS(51), - [anon_sym_random_integer] = ACTIONS(51), - [anon_sym_columns] = ACTIONS(51), - [anon_sym_rows] = ACTIONS(51), - [anon_sym_reverse] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_RBRACE] = ACTIONS(2239), + [anon_sym_SEMI] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(2239), + [anon_sym_RPAREN] = ACTIONS(2239), + [anon_sym_COMMA] = ACTIONS(2239), + [sym_integer] = ACTIONS(2241), + [sym_float] = ACTIONS(2239), + [sym_string] = ACTIONS(2239), + [anon_sym_true] = ACTIONS(2241), + [anon_sym_false] = ACTIONS(2241), + [anon_sym_LBRACK] = ACTIONS(2239), + [anon_sym_RBRACK] = ACTIONS(2239), + [anon_sym_COLON] = ACTIONS(2239), + [anon_sym_DOT_DOT] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2239), + [anon_sym_DASH] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(2239), + [anon_sym_SLASH] = ACTIONS(2239), + [anon_sym_PERCENT] = ACTIONS(2239), + [anon_sym_EQ_EQ] = ACTIONS(2239), + [anon_sym_BANG_EQ] = ACTIONS(2239), + [anon_sym_AMP_AMP] = ACTIONS(2239), + [anon_sym_PIPE_PIPE] = ACTIONS(2239), + [anon_sym_GT] = ACTIONS(2241), + [anon_sym_LT] = ACTIONS(2241), + [anon_sym_GT_EQ] = ACTIONS(2239), + [anon_sym_LT_EQ] = ACTIONS(2239), + [anon_sym_if] = ACTIONS(2241), + [anon_sym_elseif] = ACTIONS(2239), + [anon_sym_else] = ACTIONS(2241), + [anon_sym_match] = ACTIONS(2241), + [anon_sym_EQ_GT] = ACTIONS(2239), + [anon_sym_while] = ACTIONS(2241), + [anon_sym_for] = ACTIONS(2241), + [anon_sym_asyncfor] = ACTIONS(2239), + [anon_sym_transform] = ACTIONS(2241), + [anon_sym_filter] = ACTIONS(2241), + [anon_sym_find] = ACTIONS(2241), + [anon_sym_remove] = ACTIONS(2241), + [anon_sym_reduce] = ACTIONS(2241), + [anon_sym_select] = ACTIONS(2241), + [anon_sym_insert] = ACTIONS(2241), + [anon_sym_async] = ACTIONS(2241), + [anon_sym_PIPE] = ACTIONS(2241), + [anon_sym_table] = ACTIONS(2241), + [anon_sym_assert] = ACTIONS(2241), + [anon_sym_assert_equal] = ACTIONS(2241), + [anon_sym_download] = ACTIONS(2241), + [anon_sym_help] = ACTIONS(2241), + [anon_sym_length] = ACTIONS(2241), + [anon_sym_output] = ACTIONS(2241), + [anon_sym_output_error] = ACTIONS(2241), + [anon_sym_type] = ACTIONS(2241), + [anon_sym_append] = ACTIONS(2241), + [anon_sym_metadata] = ACTIONS(2241), + [anon_sym_move] = ACTIONS(2241), + [anon_sym_read] = ACTIONS(2241), + [anon_sym_workdir] = ACTIONS(2241), + [anon_sym_write] = ACTIONS(2241), + [anon_sym_from_json] = ACTIONS(2241), + [anon_sym_to_json] = ACTIONS(2241), + [anon_sym_to_string] = ACTIONS(2241), + [anon_sym_to_float] = ACTIONS(2241), + [anon_sym_bash] = ACTIONS(2241), + [anon_sym_fish] = ACTIONS(2241), + [anon_sym_raw] = ACTIONS(2241), + [anon_sym_sh] = ACTIONS(2241), + [anon_sym_zsh] = ACTIONS(2241), + [anon_sym_random] = ACTIONS(2241), + [anon_sym_random_boolean] = ACTIONS(2241), + [anon_sym_random_float] = ACTIONS(2241), + [anon_sym_random_integer] = ACTIONS(2241), + [anon_sym_columns] = ACTIONS(2241), + [anon_sym_rows] = ACTIONS(2241), + [anon_sym_reverse] = ACTIONS(2241), }, [425] = { - [sym_block] = STATE(788), - [sym_statement] = STATE(51), - [sym_expression] = STATE(817), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(748), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(760), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1926), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(351), - [aux_sym_block_repeat1] = STATE(51), - [sym_identifier] = ACTIONS(1280), + [sym_math_operator] = STATE(886), + [sym_logic_operator] = STATE(887), + [ts_builtin_sym_end] = ACTIONS(2071), + [sym_identifier] = ACTIONS(2073), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_match] = ACTIONS(1286), - [anon_sym_EQ_GT] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_asyncfor] = ACTIONS(1294), - [anon_sym_transform] = ACTIONS(1296), - [anon_sym_filter] = ACTIONS(1298), - [anon_sym_find] = ACTIONS(1300), - [anon_sym_remove] = ACTIONS(1302), - [anon_sym_reduce] = ACTIONS(1304), - [anon_sym_select] = ACTIONS(1306), - [anon_sym_insert] = ACTIONS(1308), - [anon_sym_async] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(1312), - [anon_sym_assert] = ACTIONS(1314), - [anon_sym_assert_equal] = ACTIONS(1314), - [anon_sym_download] = ACTIONS(1314), - [anon_sym_help] = ACTIONS(1314), - [anon_sym_length] = ACTIONS(1314), - [anon_sym_output] = ACTIONS(1314), - [anon_sym_output_error] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_append] = ACTIONS(1314), - [anon_sym_metadata] = ACTIONS(1314), - [anon_sym_move] = ACTIONS(1314), - [anon_sym_read] = ACTIONS(1314), - [anon_sym_workdir] = ACTIONS(1314), - [anon_sym_write] = ACTIONS(1314), - [anon_sym_from_json] = ACTIONS(1314), - [anon_sym_to_json] = ACTIONS(1314), - [anon_sym_to_string] = ACTIONS(1314), - [anon_sym_to_float] = ACTIONS(1314), - [anon_sym_bash] = ACTIONS(1314), - [anon_sym_fish] = ACTIONS(1314), - [anon_sym_raw] = ACTIONS(1314), - [anon_sym_sh] = ACTIONS(1314), - [anon_sym_zsh] = ACTIONS(1314), - [anon_sym_random] = ACTIONS(1314), - [anon_sym_random_boolean] = ACTIONS(1314), - [anon_sym_random_float] = ACTIONS(1314), - [anon_sym_random_integer] = ACTIONS(1314), - [anon_sym_columns] = ACTIONS(1314), - [anon_sym_rows] = ACTIONS(1314), - [anon_sym_reverse] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(2071), + [anon_sym_RBRACE] = ACTIONS(2071), + [anon_sym_SEMI] = ACTIONS(2071), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_RPAREN] = ACTIONS(2071), + [sym_integer] = ACTIONS(2073), + [sym_float] = ACTIONS(2071), + [sym_string] = ACTIONS(2071), + [anon_sym_true] = ACTIONS(2073), + [anon_sym_false] = ACTIONS(2073), + [anon_sym_LBRACK] = ACTIONS(2071), + [anon_sym_COLON] = ACTIONS(153), + [anon_sym_DOT_DOT] = ACTIONS(2071), + [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(2073), + [anon_sym_elseif] = ACTIONS(2071), + [anon_sym_else] = ACTIONS(2073), + [anon_sym_match] = ACTIONS(2073), + [anon_sym_EQ_GT] = ACTIONS(2071), + [anon_sym_while] = ACTIONS(2073), + [anon_sym_for] = ACTIONS(2073), + [anon_sym_asyncfor] = ACTIONS(2071), + [anon_sym_transform] = ACTIONS(2073), + [anon_sym_filter] = ACTIONS(2073), + [anon_sym_find] = ACTIONS(2073), + [anon_sym_remove] = ACTIONS(2073), + [anon_sym_reduce] = ACTIONS(2073), + [anon_sym_select] = ACTIONS(2073), + [anon_sym_insert] = ACTIONS(2073), + [anon_sym_async] = ACTIONS(2073), + [anon_sym_PIPE] = ACTIONS(2073), + [anon_sym_table] = ACTIONS(2073), + [anon_sym_assert] = ACTIONS(2073), + [anon_sym_assert_equal] = ACTIONS(2073), + [anon_sym_download] = ACTIONS(2073), + [anon_sym_help] = ACTIONS(2073), + [anon_sym_length] = ACTIONS(2073), + [anon_sym_output] = ACTIONS(2073), + [anon_sym_output_error] = ACTIONS(2073), + [anon_sym_type] = ACTIONS(2073), + [anon_sym_append] = ACTIONS(2073), + [anon_sym_metadata] = ACTIONS(2073), + [anon_sym_move] = ACTIONS(2073), + [anon_sym_read] = ACTIONS(2073), + [anon_sym_workdir] = ACTIONS(2073), + [anon_sym_write] = ACTIONS(2073), + [anon_sym_from_json] = ACTIONS(2073), + [anon_sym_to_json] = ACTIONS(2073), + [anon_sym_to_string] = ACTIONS(2073), + [anon_sym_to_float] = ACTIONS(2073), + [anon_sym_bash] = ACTIONS(2073), + [anon_sym_fish] = ACTIONS(2073), + [anon_sym_raw] = ACTIONS(2073), + [anon_sym_sh] = ACTIONS(2073), + [anon_sym_zsh] = ACTIONS(2073), + [anon_sym_random] = ACTIONS(2073), + [anon_sym_random_boolean] = ACTIONS(2073), + [anon_sym_random_float] = ACTIONS(2073), + [anon_sym_random_integer] = ACTIONS(2073), + [anon_sym_columns] = ACTIONS(2073), + [anon_sym_rows] = ACTIONS(2073), + [anon_sym_reverse] = ACTIONS(2073), }, [426] = { - [sym_block] = STATE(765), - [sym_statement] = STATE(33), - [sym_expression] = STATE(732), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(620), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(654), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1841), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(315), - [aux_sym_block_repeat1] = STATE(33), - [sym_identifier] = ACTIONS(623), + [sym_expression] = STATE(567), + [sym__expression_kind] = STATE(585), + [aux_sym__expression_list] = STATE(389), + [sym_value] = STATE(585), + [sym_boolean] = STATE(586), + [sym_list] = STATE(586), + [sym_map] = STATE(586), + [sym_index] = STATE(585), + [sym_math] = STATE(585), + [sym_logic] = STATE(585), + [sym_identifier_list] = STATE(1193), + [sym_table] = STATE(586), + [sym_function] = STATE(586), + [sym_function_call] = STATE(585), + [sym__context_defined_function] = STATE(587), + [sym_built_in_function] = STATE(587), + [sym__built_in_function_name] = STATE(429), + [sym_identifier] = ACTIONS(2089), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_if] = ACTIONS(627), - [anon_sym_match] = ACTIONS(629), - [anon_sym_EQ_GT] = ACTIONS(631), - [anon_sym_while] = ACTIONS(633), - [anon_sym_for] = ACTIONS(635), - [anon_sym_asyncfor] = ACTIONS(637), - [anon_sym_transform] = ACTIONS(639), - [anon_sym_filter] = ACTIONS(641), - [anon_sym_find] = ACTIONS(643), - [anon_sym_remove] = ACTIONS(645), - [anon_sym_reduce] = ACTIONS(647), - [anon_sym_select] = ACTIONS(649), - [anon_sym_insert] = ACTIONS(651), - [anon_sym_async] = ACTIONS(653), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(655), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_assert_equal] = ACTIONS(657), - [anon_sym_download] = ACTIONS(657), - [anon_sym_help] = ACTIONS(657), - [anon_sym_length] = ACTIONS(657), - [anon_sym_output] = ACTIONS(657), - [anon_sym_output_error] = ACTIONS(657), - [anon_sym_type] = ACTIONS(657), - [anon_sym_append] = ACTIONS(657), - [anon_sym_metadata] = ACTIONS(657), - [anon_sym_move] = ACTIONS(657), - [anon_sym_read] = ACTIONS(657), - [anon_sym_workdir] = ACTIONS(657), - [anon_sym_write] = ACTIONS(657), - [anon_sym_from_json] = ACTIONS(657), - [anon_sym_to_json] = ACTIONS(657), - [anon_sym_to_string] = ACTIONS(657), - [anon_sym_to_float] = ACTIONS(657), - [anon_sym_bash] = ACTIONS(657), - [anon_sym_fish] = ACTIONS(657), - [anon_sym_raw] = ACTIONS(657), - [anon_sym_sh] = ACTIONS(657), - [anon_sym_zsh] = ACTIONS(657), - [anon_sym_random] = ACTIONS(657), - [anon_sym_random_boolean] = ACTIONS(657), - [anon_sym_random_float] = ACTIONS(657), - [anon_sym_random_integer] = ACTIONS(657), - [anon_sym_columns] = ACTIONS(657), - [anon_sym_rows] = ACTIONS(657), - [anon_sym_reverse] = ACTIONS(657), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_RBRACE] = ACTIONS(1329), + [anon_sym_SEMI] = ACTIONS(1329), + [anon_sym_LPAREN] = ACTIONS(2049), + [anon_sym_RPAREN] = ACTIONS(1329), + [anon_sym_COMMA] = ACTIONS(1329), + [sym_integer] = ACTIONS(2051), + [sym_float] = ACTIONS(2053), + [sym_string] = ACTIONS(2053), + [anon_sym_true] = ACTIONS(2055), + [anon_sym_false] = ACTIONS(2055), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_RBRACK] = ACTIONS(1329), + [anon_sym_COLON] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1331), + [anon_sym_STAR] = ACTIONS(1329), + [anon_sym_SLASH] = ACTIONS(1329), + [anon_sym_PERCENT] = ACTIONS(1329), + [anon_sym_EQ_EQ] = ACTIONS(1329), + [anon_sym_BANG_EQ] = ACTIONS(1329), + [anon_sym_AMP_AMP] = ACTIONS(1329), + [anon_sym_PIPE_PIPE] = ACTIONS(1329), + [anon_sym_GT] = ACTIONS(1331), + [anon_sym_LT] = ACTIONS(1331), + [anon_sym_GT_EQ] = ACTIONS(1329), + [anon_sym_LT_EQ] = ACTIONS(1329), + [anon_sym_EQ_GT] = ACTIONS(2059), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2061), + [anon_sym_assert] = ACTIONS(1927), + [anon_sym_assert_equal] = ACTIONS(1927), + [anon_sym_download] = ACTIONS(1927), + [anon_sym_help] = ACTIONS(1927), + [anon_sym_length] = ACTIONS(1927), + [anon_sym_output] = ACTIONS(1927), + [anon_sym_output_error] = ACTIONS(1927), + [anon_sym_type] = ACTIONS(1927), + [anon_sym_append] = ACTIONS(1927), + [anon_sym_metadata] = ACTIONS(1927), + [anon_sym_move] = ACTIONS(1927), + [anon_sym_read] = ACTIONS(1927), + [anon_sym_workdir] = ACTIONS(1927), + [anon_sym_write] = ACTIONS(1927), + [anon_sym_from_json] = ACTIONS(1927), + [anon_sym_to_json] = ACTIONS(1927), + [anon_sym_to_string] = ACTIONS(1927), + [anon_sym_to_float] = ACTIONS(1927), + [anon_sym_bash] = ACTIONS(1927), + [anon_sym_fish] = ACTIONS(1927), + [anon_sym_raw] = ACTIONS(1927), + [anon_sym_sh] = ACTIONS(1927), + [anon_sym_zsh] = ACTIONS(1927), + [anon_sym_random] = ACTIONS(1927), + [anon_sym_random_boolean] = ACTIONS(1927), + [anon_sym_random_float] = ACTIONS(1927), + [anon_sym_random_integer] = ACTIONS(1927), + [anon_sym_columns] = ACTIONS(1927), + [anon_sym_rows] = ACTIONS(1927), + [anon_sym_reverse] = ACTIONS(1927), }, [427] = { - [sym_statement] = STATE(376), - [sym_expression] = STATE(925), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(867), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(980), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(376), - [sym_identifier] = ACTIONS(5), + [sym_else_if] = STATE(459), + [sym_else] = STATE(496), + [aux_sym_if_else_repeat1] = STATE(459), + [ts_builtin_sym_end] = ACTIONS(2001), + [sym_identifier] = ACTIONS(2003), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(3089), - [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_asyncfor] = 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_async] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(49), - [anon_sym_assert] = ACTIONS(51), - [anon_sym_assert_equal] = ACTIONS(51), - [anon_sym_download] = ACTIONS(51), - [anon_sym_help] = ACTIONS(51), - [anon_sym_length] = ACTIONS(51), - [anon_sym_output] = ACTIONS(51), - [anon_sym_output_error] = ACTIONS(51), - [anon_sym_type] = ACTIONS(51), - [anon_sym_append] = ACTIONS(51), - [anon_sym_metadata] = ACTIONS(51), - [anon_sym_move] = ACTIONS(51), - [anon_sym_read] = ACTIONS(51), - [anon_sym_workdir] = ACTIONS(51), - [anon_sym_write] = ACTIONS(51), - [anon_sym_from_json] = ACTIONS(51), - [anon_sym_to_json] = ACTIONS(51), - [anon_sym_to_string] = ACTIONS(51), - [anon_sym_to_float] = ACTIONS(51), - [anon_sym_bash] = ACTIONS(51), - [anon_sym_fish] = ACTIONS(51), - [anon_sym_raw] = ACTIONS(51), - [anon_sym_sh] = ACTIONS(51), - [anon_sym_zsh] = ACTIONS(51), - [anon_sym_random] = ACTIONS(51), - [anon_sym_random_boolean] = ACTIONS(51), - [anon_sym_random_float] = ACTIONS(51), - [anon_sym_random_integer] = ACTIONS(51), - [anon_sym_columns] = ACTIONS(51), - [anon_sym_rows] = ACTIONS(51), - [anon_sym_reverse] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(2001), + [anon_sym_RBRACE] = ACTIONS(2001), + [anon_sym_SEMI] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_RPAREN] = ACTIONS(2001), + [sym_integer] = ACTIONS(2003), + [sym_float] = ACTIONS(2001), + [sym_string] = ACTIONS(2001), + [anon_sym_true] = ACTIONS(2003), + [anon_sym_false] = ACTIONS(2003), + [anon_sym_LBRACK] = ACTIONS(2001), + [anon_sym_COLON] = ACTIONS(2001), + [anon_sym_PLUS] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_STAR] = ACTIONS(2001), + [anon_sym_SLASH] = ACTIONS(2001), + [anon_sym_PERCENT] = ACTIONS(2001), + [anon_sym_EQ_EQ] = ACTIONS(2001), + [anon_sym_BANG_EQ] = ACTIONS(2001), + [anon_sym_AMP_AMP] = ACTIONS(2001), + [anon_sym_PIPE_PIPE] = ACTIONS(2001), + [anon_sym_GT] = ACTIONS(2003), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_GT_EQ] = ACTIONS(2001), + [anon_sym_LT_EQ] = ACTIONS(2001), + [anon_sym_if] = ACTIONS(2003), + [anon_sym_elseif] = ACTIONS(2211), + [anon_sym_else] = ACTIONS(2243), + [anon_sym_match] = ACTIONS(2003), + [anon_sym_EQ_GT] = ACTIONS(2001), + [anon_sym_while] = ACTIONS(2003), + [anon_sym_for] = ACTIONS(2003), + [anon_sym_asyncfor] = ACTIONS(2001), + [anon_sym_transform] = ACTIONS(2003), + [anon_sym_filter] = ACTIONS(2003), + [anon_sym_find] = ACTIONS(2003), + [anon_sym_remove] = ACTIONS(2003), + [anon_sym_reduce] = ACTIONS(2003), + [anon_sym_select] = ACTIONS(2003), + [anon_sym_insert] = ACTIONS(2003), + [anon_sym_async] = ACTIONS(2003), + [anon_sym_PIPE] = ACTIONS(2003), + [anon_sym_table] = ACTIONS(2003), + [anon_sym_assert] = ACTIONS(2003), + [anon_sym_assert_equal] = ACTIONS(2003), + [anon_sym_download] = ACTIONS(2003), + [anon_sym_help] = ACTIONS(2003), + [anon_sym_length] = ACTIONS(2003), + [anon_sym_output] = ACTIONS(2003), + [anon_sym_output_error] = ACTIONS(2003), + [anon_sym_type] = ACTIONS(2003), + [anon_sym_append] = ACTIONS(2003), + [anon_sym_metadata] = ACTIONS(2003), + [anon_sym_move] = ACTIONS(2003), + [anon_sym_read] = ACTIONS(2003), + [anon_sym_workdir] = ACTIONS(2003), + [anon_sym_write] = ACTIONS(2003), + [anon_sym_from_json] = ACTIONS(2003), + [anon_sym_to_json] = ACTIONS(2003), + [anon_sym_to_string] = ACTIONS(2003), + [anon_sym_to_float] = ACTIONS(2003), + [anon_sym_bash] = ACTIONS(2003), + [anon_sym_fish] = ACTIONS(2003), + [anon_sym_raw] = ACTIONS(2003), + [anon_sym_sh] = ACTIONS(2003), + [anon_sym_zsh] = ACTIONS(2003), + [anon_sym_random] = ACTIONS(2003), + [anon_sym_random_boolean] = ACTIONS(2003), + [anon_sym_random_float] = ACTIONS(2003), + [anon_sym_random_integer] = ACTIONS(2003), + [anon_sym_columns] = ACTIONS(2003), + [anon_sym_rows] = ACTIONS(2003), + [anon_sym_reverse] = ACTIONS(2003), }, [428] = { - [sym_block] = STATE(606), - [sym_statement] = STATE(10), - [sym_expression] = STATE(571), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_logic] = STATE(631), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(558), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(1817), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(265), - [aux_sym_block_repeat1] = STATE(10), - [sym_identifier] = ACTIONS(55), + [ts_builtin_sym_end] = ACTIONS(2245), + [sym_identifier] = ACTIONS(2247), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(59), - [sym_integer] = ACTIONS(61), - [sym_float] = ACTIONS(63), - [sym_string] = ACTIONS(63), - [anon_sym_true] = ACTIONS(65), - [anon_sym_false] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_if] = 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_asyncfor] = ACTIONS(91), - [anon_sym_transform] = ACTIONS(93), - [anon_sym_filter] = ACTIONS(95), - [anon_sym_find] = ACTIONS(97), - [anon_sym_remove] = ACTIONS(99), - [anon_sym_reduce] = ACTIONS(101), - [anon_sym_select] = ACTIONS(103), - [anon_sym_insert] = ACTIONS(105), - [anon_sym_async] = ACTIONS(107), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(111), - [anon_sym_assert] = ACTIONS(113), - [anon_sym_assert_equal] = ACTIONS(113), - [anon_sym_download] = ACTIONS(113), - [anon_sym_help] = ACTIONS(113), - [anon_sym_length] = ACTIONS(113), - [anon_sym_output] = ACTIONS(113), - [anon_sym_output_error] = ACTIONS(113), - [anon_sym_type] = ACTIONS(113), - [anon_sym_append] = ACTIONS(113), - [anon_sym_metadata] = ACTIONS(113), - [anon_sym_move] = ACTIONS(113), - [anon_sym_read] = ACTIONS(113), - [anon_sym_workdir] = ACTIONS(113), - [anon_sym_write] = ACTIONS(113), - [anon_sym_from_json] = ACTIONS(113), - [anon_sym_to_json] = ACTIONS(113), - [anon_sym_to_string] = ACTIONS(113), - [anon_sym_to_float] = ACTIONS(113), - [anon_sym_bash] = ACTIONS(113), - [anon_sym_fish] = ACTIONS(113), - [anon_sym_raw] = ACTIONS(113), - [anon_sym_sh] = ACTIONS(113), - [anon_sym_zsh] = ACTIONS(113), - [anon_sym_random] = ACTIONS(113), - [anon_sym_random_boolean] = ACTIONS(113), - [anon_sym_random_float] = ACTIONS(113), - [anon_sym_random_integer] = ACTIONS(113), - [anon_sym_columns] = ACTIONS(113), - [anon_sym_rows] = ACTIONS(113), - [anon_sym_reverse] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(2245), + [anon_sym_RBRACE] = ACTIONS(2245), + [anon_sym_SEMI] = ACTIONS(2245), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_RPAREN] = ACTIONS(2245), + [anon_sym_COMMA] = ACTIONS(2245), + [sym_integer] = ACTIONS(2247), + [sym_float] = ACTIONS(2245), + [sym_string] = ACTIONS(2245), + [anon_sym_true] = ACTIONS(2247), + [anon_sym_false] = ACTIONS(2247), + [anon_sym_LBRACK] = ACTIONS(2245), + [anon_sym_RBRACK] = ACTIONS(2245), + [anon_sym_COLON] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2245), + [anon_sym_PLUS] = ACTIONS(2245), + [anon_sym_DASH] = ACTIONS(2247), + [anon_sym_STAR] = ACTIONS(2245), + [anon_sym_SLASH] = ACTIONS(2245), + [anon_sym_PERCENT] = ACTIONS(2245), + [anon_sym_EQ_EQ] = ACTIONS(2245), + [anon_sym_BANG_EQ] = ACTIONS(2245), + [anon_sym_AMP_AMP] = ACTIONS(2245), + [anon_sym_PIPE_PIPE] = ACTIONS(2245), + [anon_sym_GT] = ACTIONS(2247), + [anon_sym_LT] = ACTIONS(2247), + [anon_sym_GT_EQ] = ACTIONS(2245), + [anon_sym_LT_EQ] = ACTIONS(2245), + [anon_sym_if] = ACTIONS(2247), + [anon_sym_elseif] = ACTIONS(2245), + [anon_sym_else] = ACTIONS(2247), + [anon_sym_match] = ACTIONS(2247), + [anon_sym_EQ_GT] = ACTIONS(2245), + [anon_sym_while] = ACTIONS(2247), + [anon_sym_for] = ACTIONS(2247), + [anon_sym_asyncfor] = ACTIONS(2245), + [anon_sym_transform] = ACTIONS(2247), + [anon_sym_filter] = ACTIONS(2247), + [anon_sym_find] = ACTIONS(2247), + [anon_sym_remove] = ACTIONS(2247), + [anon_sym_reduce] = ACTIONS(2247), + [anon_sym_select] = ACTIONS(2247), + [anon_sym_insert] = ACTIONS(2247), + [anon_sym_async] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_table] = ACTIONS(2247), + [anon_sym_assert] = ACTIONS(2247), + [anon_sym_assert_equal] = ACTIONS(2247), + [anon_sym_download] = ACTIONS(2247), + [anon_sym_help] = ACTIONS(2247), + [anon_sym_length] = ACTIONS(2247), + [anon_sym_output] = ACTIONS(2247), + [anon_sym_output_error] = ACTIONS(2247), + [anon_sym_type] = ACTIONS(2247), + [anon_sym_append] = ACTIONS(2247), + [anon_sym_metadata] = ACTIONS(2247), + [anon_sym_move] = ACTIONS(2247), + [anon_sym_read] = ACTIONS(2247), + [anon_sym_workdir] = ACTIONS(2247), + [anon_sym_write] = ACTIONS(2247), + [anon_sym_from_json] = ACTIONS(2247), + [anon_sym_to_json] = ACTIONS(2247), + [anon_sym_to_string] = ACTIONS(2247), + [anon_sym_to_float] = ACTIONS(2247), + [anon_sym_bash] = ACTIONS(2247), + [anon_sym_fish] = ACTIONS(2247), + [anon_sym_raw] = ACTIONS(2247), + [anon_sym_sh] = ACTIONS(2247), + [anon_sym_zsh] = ACTIONS(2247), + [anon_sym_random] = ACTIONS(2247), + [anon_sym_random_boolean] = ACTIONS(2247), + [anon_sym_random_float] = ACTIONS(2247), + [anon_sym_random_integer] = ACTIONS(2247), + [anon_sym_columns] = ACTIONS(2247), + [anon_sym_rows] = ACTIONS(2247), + [anon_sym_reverse] = ACTIONS(2247), }, [429] = { - [sym_block] = STATE(1545), - [sym_statement] = STATE(255), - [sym_expression] = STATE(853), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(776), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(710), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1823), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(366), - [aux_sym_block_repeat1] = STATE(255), - [sym_identifier] = ACTIONS(1436), + [sym_expression] = STATE(567), + [sym__expression_kind] = STATE(585), + [aux_sym__expression_list] = STATE(401), + [sym_value] = STATE(585), + [sym_boolean] = STATE(586), + [sym_list] = STATE(586), + [sym_map] = STATE(586), + [sym_index] = STATE(585), + [sym_math] = STATE(585), + [sym_logic] = STATE(585), + [sym_identifier_list] = STATE(1193), + [sym_table] = STATE(586), + [sym_function] = STATE(586), + [sym_function_call] = STATE(585), + [sym__context_defined_function] = STATE(587), + [sym_built_in_function] = STATE(587), + [sym__built_in_function_name] = STATE(429), + [sym_identifier] = ACTIONS(2089), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2164), - [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(843), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_EQ_GT] = ACTIONS(1442), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_for] = ACTIONS(1446), - [anon_sym_asyncfor] = ACTIONS(1448), - [anon_sym_transform] = ACTIONS(1450), - [anon_sym_filter] = ACTIONS(1452), - [anon_sym_find] = ACTIONS(1454), - [anon_sym_remove] = ACTIONS(1456), - [anon_sym_reduce] = ACTIONS(1458), - [anon_sym_select] = ACTIONS(1460), - [anon_sym_insert] = ACTIONS(1462), - [anon_sym_async] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(1466), - [anon_sym_assert] = ACTIONS(1468), - [anon_sym_assert_equal] = ACTIONS(1468), - [anon_sym_download] = ACTIONS(1468), - [anon_sym_help] = ACTIONS(1468), - [anon_sym_length] = ACTIONS(1468), - [anon_sym_output] = ACTIONS(1468), - [anon_sym_output_error] = ACTIONS(1468), - [anon_sym_type] = ACTIONS(1468), - [anon_sym_append] = ACTIONS(1468), - [anon_sym_metadata] = ACTIONS(1468), - [anon_sym_move] = ACTIONS(1468), - [anon_sym_read] = ACTIONS(1468), - [anon_sym_workdir] = ACTIONS(1468), - [anon_sym_write] = ACTIONS(1468), - [anon_sym_from_json] = ACTIONS(1468), - [anon_sym_to_json] = ACTIONS(1468), - [anon_sym_to_string] = ACTIONS(1468), - [anon_sym_to_float] = ACTIONS(1468), - [anon_sym_bash] = ACTIONS(1468), - [anon_sym_fish] = ACTIONS(1468), - [anon_sym_raw] = ACTIONS(1468), - [anon_sym_sh] = ACTIONS(1468), - [anon_sym_zsh] = ACTIONS(1468), - [anon_sym_random] = ACTIONS(1468), - [anon_sym_random_boolean] = ACTIONS(1468), - [anon_sym_random_float] = ACTIONS(1468), - [anon_sym_random_integer] = ACTIONS(1468), - [anon_sym_columns] = ACTIONS(1468), - [anon_sym_rows] = ACTIONS(1468), - [anon_sym_reverse] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_RBRACE] = ACTIONS(1333), + [anon_sym_SEMI] = ACTIONS(1333), + [anon_sym_LPAREN] = ACTIONS(2049), + [anon_sym_RPAREN] = ACTIONS(1333), + [anon_sym_COMMA] = ACTIONS(1333), + [sym_integer] = ACTIONS(2051), + [sym_float] = ACTIONS(2053), + [sym_string] = ACTIONS(2053), + [anon_sym_true] = ACTIONS(2055), + [anon_sym_false] = ACTIONS(2055), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_RBRACK] = ACTIONS(1333), + [anon_sym_COLON] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1333), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_SLASH] = ACTIONS(1333), + [anon_sym_PERCENT] = ACTIONS(1333), + [anon_sym_EQ_EQ] = ACTIONS(1333), + [anon_sym_BANG_EQ] = ACTIONS(1333), + [anon_sym_AMP_AMP] = ACTIONS(1333), + [anon_sym_PIPE_PIPE] = ACTIONS(1333), + [anon_sym_GT] = ACTIONS(1335), + [anon_sym_LT] = ACTIONS(1335), + [anon_sym_GT_EQ] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1333), + [anon_sym_EQ_GT] = ACTIONS(2059), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2061), + [anon_sym_assert] = ACTIONS(1927), + [anon_sym_assert_equal] = ACTIONS(1927), + [anon_sym_download] = ACTIONS(1927), + [anon_sym_help] = ACTIONS(1927), + [anon_sym_length] = ACTIONS(1927), + [anon_sym_output] = ACTIONS(1927), + [anon_sym_output_error] = ACTIONS(1927), + [anon_sym_type] = ACTIONS(1927), + [anon_sym_append] = ACTIONS(1927), + [anon_sym_metadata] = ACTIONS(1927), + [anon_sym_move] = ACTIONS(1927), + [anon_sym_read] = ACTIONS(1927), + [anon_sym_workdir] = ACTIONS(1927), + [anon_sym_write] = ACTIONS(1927), + [anon_sym_from_json] = ACTIONS(1927), + [anon_sym_to_json] = ACTIONS(1927), + [anon_sym_to_string] = ACTIONS(1927), + [anon_sym_to_float] = ACTIONS(1927), + [anon_sym_bash] = ACTIONS(1927), + [anon_sym_fish] = ACTIONS(1927), + [anon_sym_raw] = ACTIONS(1927), + [anon_sym_sh] = ACTIONS(1927), + [anon_sym_zsh] = ACTIONS(1927), + [anon_sym_random] = ACTIONS(1927), + [anon_sym_random_boolean] = ACTIONS(1927), + [anon_sym_random_float] = ACTIONS(1927), + [anon_sym_random_integer] = ACTIONS(1927), + [anon_sym_columns] = ACTIONS(1927), + [anon_sym_rows] = ACTIONS(1927), + [anon_sym_reverse] = ACTIONS(1927), }, [430] = { - [sym_block] = STATE(1524), - [sym_statement] = STATE(43), - [sym_expression] = STATE(601), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_logic] = STATE(706), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(557), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1910), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(284), - [aux_sym_block_repeat1] = STATE(43), - [sym_identifier] = ACTIONS(149), + [ts_builtin_sym_end] = ACTIONS(2249), + [sym_identifier] = ACTIONS(2251), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_if] = ACTIONS(81), - [anon_sym_match] = ACTIONS(165), - [anon_sym_EQ_GT] = ACTIONS(167), - [anon_sym_while] = ACTIONS(169), - [anon_sym_for] = ACTIONS(171), - [anon_sym_asyncfor] = ACTIONS(173), - [anon_sym_transform] = ACTIONS(175), - [anon_sym_filter] = ACTIONS(177), - [anon_sym_find] = ACTIONS(179), - [anon_sym_remove] = ACTIONS(181), - [anon_sym_reduce] = ACTIONS(183), - [anon_sym_select] = ACTIONS(185), - [anon_sym_insert] = ACTIONS(187), - [anon_sym_async] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(191), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_assert_equal] = ACTIONS(193), - [anon_sym_download] = ACTIONS(193), - [anon_sym_help] = ACTIONS(193), - [anon_sym_length] = ACTIONS(193), - [anon_sym_output] = ACTIONS(193), - [anon_sym_output_error] = ACTIONS(193), - [anon_sym_type] = ACTIONS(193), - [anon_sym_append] = ACTIONS(193), - [anon_sym_metadata] = ACTIONS(193), - [anon_sym_move] = ACTIONS(193), - [anon_sym_read] = ACTIONS(193), - [anon_sym_workdir] = ACTIONS(193), - [anon_sym_write] = ACTIONS(193), - [anon_sym_from_json] = ACTIONS(193), - [anon_sym_to_json] = ACTIONS(193), - [anon_sym_to_string] = ACTIONS(193), - [anon_sym_to_float] = ACTIONS(193), - [anon_sym_bash] = ACTIONS(193), - [anon_sym_fish] = ACTIONS(193), - [anon_sym_raw] = ACTIONS(193), - [anon_sym_sh] = ACTIONS(193), - [anon_sym_zsh] = ACTIONS(193), - [anon_sym_random] = ACTIONS(193), - [anon_sym_random_boolean] = ACTIONS(193), - [anon_sym_random_float] = ACTIONS(193), - [anon_sym_random_integer] = ACTIONS(193), - [anon_sym_columns] = ACTIONS(193), - [anon_sym_rows] = ACTIONS(193), - [anon_sym_reverse] = ACTIONS(193), + [anon_sym_LBRACE] = ACTIONS(2249), + [anon_sym_RBRACE] = ACTIONS(2249), + [anon_sym_SEMI] = ACTIONS(2249), + [anon_sym_LPAREN] = ACTIONS(2249), + [anon_sym_RPAREN] = ACTIONS(2249), + [anon_sym_COMMA] = ACTIONS(2249), + [sym_integer] = ACTIONS(2251), + [sym_float] = ACTIONS(2249), + [sym_string] = ACTIONS(2249), + [anon_sym_true] = ACTIONS(2251), + [anon_sym_false] = ACTIONS(2251), + [anon_sym_LBRACK] = ACTIONS(2249), + [anon_sym_RBRACK] = ACTIONS(2249), + [anon_sym_COLON] = ACTIONS(2249), + [anon_sym_DOT_DOT] = ACTIONS(2249), + [anon_sym_PLUS] = ACTIONS(2249), + [anon_sym_DASH] = ACTIONS(2251), + [anon_sym_STAR] = ACTIONS(2249), + [anon_sym_SLASH] = ACTIONS(2249), + [anon_sym_PERCENT] = ACTIONS(2249), + [anon_sym_EQ_EQ] = ACTIONS(2249), + [anon_sym_BANG_EQ] = ACTIONS(2249), + [anon_sym_AMP_AMP] = ACTIONS(2249), + [anon_sym_PIPE_PIPE] = ACTIONS(2249), + [anon_sym_GT] = ACTIONS(2251), + [anon_sym_LT] = ACTIONS(2251), + [anon_sym_GT_EQ] = ACTIONS(2249), + [anon_sym_LT_EQ] = ACTIONS(2249), + [anon_sym_if] = ACTIONS(2251), + [anon_sym_elseif] = ACTIONS(2249), + [anon_sym_else] = ACTIONS(2251), + [anon_sym_match] = ACTIONS(2251), + [anon_sym_EQ_GT] = ACTIONS(2249), + [anon_sym_while] = ACTIONS(2251), + [anon_sym_for] = ACTIONS(2251), + [anon_sym_asyncfor] = ACTIONS(2249), + [anon_sym_transform] = ACTIONS(2251), + [anon_sym_filter] = ACTIONS(2251), + [anon_sym_find] = ACTIONS(2251), + [anon_sym_remove] = ACTIONS(2251), + [anon_sym_reduce] = ACTIONS(2251), + [anon_sym_select] = ACTIONS(2251), + [anon_sym_insert] = ACTIONS(2251), + [anon_sym_async] = ACTIONS(2251), + [anon_sym_PIPE] = ACTIONS(2251), + [anon_sym_table] = ACTIONS(2251), + [anon_sym_assert] = ACTIONS(2251), + [anon_sym_assert_equal] = ACTIONS(2251), + [anon_sym_download] = ACTIONS(2251), + [anon_sym_help] = ACTIONS(2251), + [anon_sym_length] = ACTIONS(2251), + [anon_sym_output] = ACTIONS(2251), + [anon_sym_output_error] = ACTIONS(2251), + [anon_sym_type] = ACTIONS(2251), + [anon_sym_append] = ACTIONS(2251), + [anon_sym_metadata] = ACTIONS(2251), + [anon_sym_move] = ACTIONS(2251), + [anon_sym_read] = ACTIONS(2251), + [anon_sym_workdir] = ACTIONS(2251), + [anon_sym_write] = ACTIONS(2251), + [anon_sym_from_json] = ACTIONS(2251), + [anon_sym_to_json] = ACTIONS(2251), + [anon_sym_to_string] = ACTIONS(2251), + [anon_sym_to_float] = ACTIONS(2251), + [anon_sym_bash] = ACTIONS(2251), + [anon_sym_fish] = ACTIONS(2251), + [anon_sym_raw] = ACTIONS(2251), + [anon_sym_sh] = ACTIONS(2251), + [anon_sym_zsh] = ACTIONS(2251), + [anon_sym_random] = ACTIONS(2251), + [anon_sym_random_boolean] = ACTIONS(2251), + [anon_sym_random_float] = ACTIONS(2251), + [anon_sym_random_integer] = ACTIONS(2251), + [anon_sym_columns] = ACTIONS(2251), + [anon_sym_rows] = ACTIONS(2251), + [anon_sym_reverse] = ACTIONS(2251), }, [431] = { - [sym_block] = STATE(727), - [sym_statement] = STATE(35), - [sym_expression] = STATE(701), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_logic] = STATE(706), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(582), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1866), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(320), - [aux_sym_block_repeat1] = STATE(35), - [sym_identifier] = ACTIONS(149), + [ts_builtin_sym_end] = ACTIONS(2253), + [sym_identifier] = ACTIONS(2255), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_if] = ACTIONS(197), - [anon_sym_match] = ACTIONS(497), - [anon_sym_EQ_GT] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_asyncfor] = ACTIONS(505), - [anon_sym_transform] = ACTIONS(507), - [anon_sym_filter] = ACTIONS(509), - [anon_sym_find] = ACTIONS(511), - [anon_sym_remove] = ACTIONS(513), - [anon_sym_reduce] = ACTIONS(515), - [anon_sym_select] = ACTIONS(517), - [anon_sym_insert] = ACTIONS(519), - [anon_sym_async] = ACTIONS(521), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(523), - [anon_sym_assert] = ACTIONS(525), - [anon_sym_assert_equal] = ACTIONS(525), - [anon_sym_download] = ACTIONS(525), - [anon_sym_help] = ACTIONS(525), - [anon_sym_length] = ACTIONS(525), - [anon_sym_output] = ACTIONS(525), - [anon_sym_output_error] = ACTIONS(525), - [anon_sym_type] = ACTIONS(525), - [anon_sym_append] = ACTIONS(525), - [anon_sym_metadata] = ACTIONS(525), - [anon_sym_move] = ACTIONS(525), - [anon_sym_read] = ACTIONS(525), - [anon_sym_workdir] = ACTIONS(525), - [anon_sym_write] = ACTIONS(525), - [anon_sym_from_json] = ACTIONS(525), - [anon_sym_to_json] = ACTIONS(525), - [anon_sym_to_string] = ACTIONS(525), - [anon_sym_to_float] = ACTIONS(525), - [anon_sym_bash] = ACTIONS(525), - [anon_sym_fish] = ACTIONS(525), - [anon_sym_raw] = ACTIONS(525), - [anon_sym_sh] = ACTIONS(525), - [anon_sym_zsh] = ACTIONS(525), - [anon_sym_random] = ACTIONS(525), - [anon_sym_random_boolean] = ACTIONS(525), - [anon_sym_random_float] = ACTIONS(525), - [anon_sym_random_integer] = ACTIONS(525), - [anon_sym_columns] = ACTIONS(525), - [anon_sym_rows] = ACTIONS(525), - [anon_sym_reverse] = ACTIONS(525), + [anon_sym_LBRACE] = ACTIONS(2253), + [anon_sym_RBRACE] = ACTIONS(2253), + [anon_sym_SEMI] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_RPAREN] = ACTIONS(2253), + [anon_sym_COMMA] = ACTIONS(2253), + [sym_integer] = ACTIONS(2255), + [sym_float] = ACTIONS(2253), + [sym_string] = ACTIONS(2253), + [anon_sym_true] = ACTIONS(2255), + [anon_sym_false] = ACTIONS(2255), + [anon_sym_LBRACK] = ACTIONS(2253), + [anon_sym_RBRACK] = ACTIONS(2253), + [anon_sym_COLON] = ACTIONS(2253), + [anon_sym_DOT_DOT] = ACTIONS(2253), + [anon_sym_PLUS] = ACTIONS(2253), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_STAR] = ACTIONS(2253), + [anon_sym_SLASH] = ACTIONS(2253), + [anon_sym_PERCENT] = ACTIONS(2253), + [anon_sym_EQ_EQ] = ACTIONS(2253), + [anon_sym_BANG_EQ] = ACTIONS(2253), + [anon_sym_AMP_AMP] = ACTIONS(2253), + [anon_sym_PIPE_PIPE] = ACTIONS(2253), + [anon_sym_GT] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2255), + [anon_sym_GT_EQ] = ACTIONS(2253), + [anon_sym_LT_EQ] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(2255), + [anon_sym_elseif] = ACTIONS(2253), + [anon_sym_else] = ACTIONS(2255), + [anon_sym_match] = ACTIONS(2255), + [anon_sym_EQ_GT] = ACTIONS(2253), + [anon_sym_while] = ACTIONS(2255), + [anon_sym_for] = ACTIONS(2255), + [anon_sym_asyncfor] = ACTIONS(2253), + [anon_sym_transform] = ACTIONS(2255), + [anon_sym_filter] = ACTIONS(2255), + [anon_sym_find] = ACTIONS(2255), + [anon_sym_remove] = ACTIONS(2255), + [anon_sym_reduce] = ACTIONS(2255), + [anon_sym_select] = ACTIONS(2255), + [anon_sym_insert] = ACTIONS(2255), + [anon_sym_async] = ACTIONS(2255), + [anon_sym_PIPE] = ACTIONS(2255), + [anon_sym_table] = ACTIONS(2255), + [anon_sym_assert] = ACTIONS(2255), + [anon_sym_assert_equal] = ACTIONS(2255), + [anon_sym_download] = ACTIONS(2255), + [anon_sym_help] = ACTIONS(2255), + [anon_sym_length] = ACTIONS(2255), + [anon_sym_output] = ACTIONS(2255), + [anon_sym_output_error] = ACTIONS(2255), + [anon_sym_type] = ACTIONS(2255), + [anon_sym_append] = ACTIONS(2255), + [anon_sym_metadata] = ACTIONS(2255), + [anon_sym_move] = ACTIONS(2255), + [anon_sym_read] = ACTIONS(2255), + [anon_sym_workdir] = ACTIONS(2255), + [anon_sym_write] = ACTIONS(2255), + [anon_sym_from_json] = ACTIONS(2255), + [anon_sym_to_json] = ACTIONS(2255), + [anon_sym_to_string] = ACTIONS(2255), + [anon_sym_to_float] = ACTIONS(2255), + [anon_sym_bash] = ACTIONS(2255), + [anon_sym_fish] = ACTIONS(2255), + [anon_sym_raw] = ACTIONS(2255), + [anon_sym_sh] = ACTIONS(2255), + [anon_sym_zsh] = ACTIONS(2255), + [anon_sym_random] = ACTIONS(2255), + [anon_sym_random_boolean] = ACTIONS(2255), + [anon_sym_random_float] = ACTIONS(2255), + [anon_sym_random_integer] = ACTIONS(2255), + [anon_sym_columns] = ACTIONS(2255), + [anon_sym_rows] = ACTIONS(2255), + [anon_sym_reverse] = ACTIONS(2255), }, [432] = { - [sym_block] = STATE(603), - [sym_statement] = STATE(10), - [sym_expression] = STATE(571), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_logic] = STATE(631), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(558), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(1817), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(265), - [aux_sym_block_repeat1] = STATE(10), - [sym_identifier] = ACTIONS(55), + [sym_math_operator] = STATE(908), + [sym_logic_operator] = STATE(909), + [ts_builtin_sym_end] = ACTIONS(2026), + [sym_identifier] = ACTIONS(2028), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(59), - [sym_integer] = ACTIONS(61), - [sym_float] = ACTIONS(63), - [sym_string] = ACTIONS(63), - [anon_sym_true] = ACTIONS(65), - [anon_sym_false] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_if] = 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_asyncfor] = ACTIONS(91), - [anon_sym_transform] = ACTIONS(93), - [anon_sym_filter] = ACTIONS(95), - [anon_sym_find] = ACTIONS(97), - [anon_sym_remove] = ACTIONS(99), - [anon_sym_reduce] = ACTIONS(101), - [anon_sym_select] = ACTIONS(103), - [anon_sym_insert] = ACTIONS(105), - [anon_sym_async] = ACTIONS(107), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(111), - [anon_sym_assert] = ACTIONS(113), - [anon_sym_assert_equal] = ACTIONS(113), - [anon_sym_download] = ACTIONS(113), - [anon_sym_help] = ACTIONS(113), - [anon_sym_length] = ACTIONS(113), - [anon_sym_output] = ACTIONS(113), - [anon_sym_output_error] = ACTIONS(113), - [anon_sym_type] = ACTIONS(113), - [anon_sym_append] = ACTIONS(113), - [anon_sym_metadata] = ACTIONS(113), - [anon_sym_move] = ACTIONS(113), - [anon_sym_read] = ACTIONS(113), - [anon_sym_workdir] = ACTIONS(113), - [anon_sym_write] = ACTIONS(113), - [anon_sym_from_json] = ACTIONS(113), - [anon_sym_to_json] = ACTIONS(113), - [anon_sym_to_string] = ACTIONS(113), - [anon_sym_to_float] = ACTIONS(113), - [anon_sym_bash] = ACTIONS(113), - [anon_sym_fish] = ACTIONS(113), - [anon_sym_raw] = ACTIONS(113), - [anon_sym_sh] = ACTIONS(113), - [anon_sym_zsh] = ACTIONS(113), - [anon_sym_random] = ACTIONS(113), - [anon_sym_random_boolean] = ACTIONS(113), - [anon_sym_random_float] = ACTIONS(113), - [anon_sym_random_integer] = ACTIONS(113), - [anon_sym_columns] = ACTIONS(113), - [anon_sym_rows] = ACTIONS(113), - [anon_sym_reverse] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(2026), + [anon_sym_RBRACE] = ACTIONS(2026), + [anon_sym_SEMI] = ACTIONS(2026), + [anon_sym_LPAREN] = ACTIONS(2026), + [anon_sym_RPAREN] = ACTIONS(2026), + [anon_sym_COMMA] = ACTIONS(2026), + [sym_integer] = ACTIONS(2028), + [sym_float] = ACTIONS(2026), + [sym_string] = ACTIONS(2026), + [anon_sym_true] = ACTIONS(2028), + [anon_sym_false] = ACTIONS(2028), + [anon_sym_LBRACK] = ACTIONS(2026), + [anon_sym_RBRACK] = ACTIONS(2026), + [anon_sym_COLON] = ACTIONS(2026), + [anon_sym_DOT_DOT] = ACTIONS(2257), + [anon_sym_PLUS] = ACTIONS(2026), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(2026), + [anon_sym_SLASH] = ACTIONS(2026), + [anon_sym_PERCENT] = ACTIONS(2026), + [anon_sym_EQ_EQ] = ACTIONS(2026), + [anon_sym_BANG_EQ] = ACTIONS(2026), + [anon_sym_AMP_AMP] = ACTIONS(2026), + [anon_sym_PIPE_PIPE] = ACTIONS(2026), + [anon_sym_GT] = ACTIONS(2028), + [anon_sym_LT] = ACTIONS(2028), + [anon_sym_GT_EQ] = ACTIONS(2026), + [anon_sym_LT_EQ] = ACTIONS(2026), + [anon_sym_if] = ACTIONS(2028), + [anon_sym_match] = ACTIONS(2028), + [anon_sym_EQ_GT] = ACTIONS(2026), + [anon_sym_while] = ACTIONS(2028), + [anon_sym_for] = ACTIONS(2028), + [anon_sym_asyncfor] = ACTIONS(2026), + [anon_sym_transform] = ACTIONS(2028), + [anon_sym_filter] = ACTIONS(2028), + [anon_sym_find] = ACTIONS(2028), + [anon_sym_remove] = ACTIONS(2028), + [anon_sym_reduce] = ACTIONS(2028), + [anon_sym_select] = ACTIONS(2028), + [anon_sym_insert] = ACTIONS(2028), + [anon_sym_async] = ACTIONS(2028), + [anon_sym_PIPE] = ACTIONS(2028), + [anon_sym_table] = ACTIONS(2028), + [anon_sym_assert] = ACTIONS(2028), + [anon_sym_assert_equal] = ACTIONS(2028), + [anon_sym_download] = ACTIONS(2028), + [anon_sym_help] = ACTIONS(2028), + [anon_sym_length] = ACTIONS(2028), + [anon_sym_output] = ACTIONS(2028), + [anon_sym_output_error] = ACTIONS(2028), + [anon_sym_type] = ACTIONS(2028), + [anon_sym_append] = ACTIONS(2028), + [anon_sym_metadata] = ACTIONS(2028), + [anon_sym_move] = ACTIONS(2028), + [anon_sym_read] = ACTIONS(2028), + [anon_sym_workdir] = ACTIONS(2028), + [anon_sym_write] = ACTIONS(2028), + [anon_sym_from_json] = ACTIONS(2028), + [anon_sym_to_json] = ACTIONS(2028), + [anon_sym_to_string] = ACTIONS(2028), + [anon_sym_to_float] = ACTIONS(2028), + [anon_sym_bash] = ACTIONS(2028), + [anon_sym_fish] = ACTIONS(2028), + [anon_sym_raw] = ACTIONS(2028), + [anon_sym_sh] = ACTIONS(2028), + [anon_sym_zsh] = ACTIONS(2028), + [anon_sym_random] = ACTIONS(2028), + [anon_sym_random_boolean] = ACTIONS(2028), + [anon_sym_random_float] = ACTIONS(2028), + [anon_sym_random_integer] = ACTIONS(2028), + [anon_sym_columns] = ACTIONS(2028), + [anon_sym_rows] = ACTIONS(2028), + [anon_sym_reverse] = ACTIONS(2028), }, [433] = { - [sym_block] = STATE(1059), - [sym_statement] = STATE(382), - [sym_expression] = STATE(934), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(842), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(983), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [aux_sym_block_repeat1] = STATE(382), - [sym_identifier] = ACTIONS(2162), + [sym_else_if] = STATE(427), + [sym_else] = STATE(482), + [aux_sym_if_else_repeat1] = STATE(427), + [ts_builtin_sym_end] = ACTIONS(2009), + [sym_identifier] = ACTIONS(2011), [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(1570), - [anon_sym_match] = ACTIONS(2166), - [anon_sym_EQ_GT] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(2168), - [anon_sym_for] = ACTIONS(2170), - [anon_sym_asyncfor] = ACTIONS(2172), - [anon_sym_transform] = ACTIONS(2174), - [anon_sym_filter] = ACTIONS(2176), - [anon_sym_find] = ACTIONS(2178), - [anon_sym_remove] = ACTIONS(2180), - [anon_sym_reduce] = ACTIONS(2182), - [anon_sym_select] = ACTIONS(2184), - [anon_sym_insert] = ACTIONS(1224), - [anon_sym_async] = ACTIONS(2186), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(1228), - [anon_sym_assert] = ACTIONS(1230), - [anon_sym_assert_equal] = ACTIONS(1230), - [anon_sym_download] = ACTIONS(1230), - [anon_sym_help] = ACTIONS(1230), - [anon_sym_length] = ACTIONS(1230), - [anon_sym_output] = ACTIONS(1230), - [anon_sym_output_error] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_append] = ACTIONS(1230), - [anon_sym_metadata] = ACTIONS(1230), - [anon_sym_move] = ACTIONS(1230), - [anon_sym_read] = ACTIONS(1230), - [anon_sym_workdir] = ACTIONS(1230), - [anon_sym_write] = ACTIONS(1230), - [anon_sym_from_json] = ACTIONS(1230), - [anon_sym_to_json] = ACTIONS(1230), - [anon_sym_to_string] = ACTIONS(1230), - [anon_sym_to_float] = ACTIONS(1230), - [anon_sym_bash] = ACTIONS(1230), - [anon_sym_fish] = ACTIONS(1230), - [anon_sym_raw] = ACTIONS(1230), - [anon_sym_sh] = ACTIONS(1230), - [anon_sym_zsh] = ACTIONS(1230), - [anon_sym_random] = ACTIONS(1230), - [anon_sym_random_boolean] = ACTIONS(1230), - [anon_sym_random_float] = ACTIONS(1230), - [anon_sym_random_integer] = ACTIONS(1230), - [anon_sym_columns] = ACTIONS(1230), - [anon_sym_rows] = ACTIONS(1230), - [anon_sym_reverse] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(2009), + [anon_sym_RBRACE] = ACTIONS(2009), + [anon_sym_SEMI] = ACTIONS(2009), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_RPAREN] = ACTIONS(2009), + [sym_integer] = ACTIONS(2011), + [sym_float] = ACTIONS(2009), + [sym_string] = ACTIONS(2009), + [anon_sym_true] = ACTIONS(2011), + [anon_sym_false] = ACTIONS(2011), + [anon_sym_LBRACK] = ACTIONS(2009), + [anon_sym_COLON] = ACTIONS(2009), + [anon_sym_PLUS] = ACTIONS(2009), + [anon_sym_DASH] = ACTIONS(2011), + [anon_sym_STAR] = ACTIONS(2009), + [anon_sym_SLASH] = ACTIONS(2009), + [anon_sym_PERCENT] = ACTIONS(2009), + [anon_sym_EQ_EQ] = ACTIONS(2009), + [anon_sym_BANG_EQ] = ACTIONS(2009), + [anon_sym_AMP_AMP] = ACTIONS(2009), + [anon_sym_PIPE_PIPE] = ACTIONS(2009), + [anon_sym_GT] = ACTIONS(2011), + [anon_sym_LT] = ACTIONS(2011), + [anon_sym_GT_EQ] = ACTIONS(2009), + [anon_sym_LT_EQ] = ACTIONS(2009), + [anon_sym_if] = ACTIONS(2011), + [anon_sym_elseif] = ACTIONS(2211), + [anon_sym_else] = ACTIONS(2243), + [anon_sym_match] = ACTIONS(2011), + [anon_sym_EQ_GT] = ACTIONS(2009), + [anon_sym_while] = ACTIONS(2011), + [anon_sym_for] = ACTIONS(2011), + [anon_sym_asyncfor] = ACTIONS(2009), + [anon_sym_transform] = ACTIONS(2011), + [anon_sym_filter] = ACTIONS(2011), + [anon_sym_find] = ACTIONS(2011), + [anon_sym_remove] = ACTIONS(2011), + [anon_sym_reduce] = ACTIONS(2011), + [anon_sym_select] = ACTIONS(2011), + [anon_sym_insert] = ACTIONS(2011), + [anon_sym_async] = ACTIONS(2011), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_table] = ACTIONS(2011), + [anon_sym_assert] = ACTIONS(2011), + [anon_sym_assert_equal] = ACTIONS(2011), + [anon_sym_download] = ACTIONS(2011), + [anon_sym_help] = ACTIONS(2011), + [anon_sym_length] = ACTIONS(2011), + [anon_sym_output] = ACTIONS(2011), + [anon_sym_output_error] = ACTIONS(2011), + [anon_sym_type] = ACTIONS(2011), + [anon_sym_append] = ACTIONS(2011), + [anon_sym_metadata] = ACTIONS(2011), + [anon_sym_move] = ACTIONS(2011), + [anon_sym_read] = ACTIONS(2011), + [anon_sym_workdir] = ACTIONS(2011), + [anon_sym_write] = ACTIONS(2011), + [anon_sym_from_json] = ACTIONS(2011), + [anon_sym_to_json] = ACTIONS(2011), + [anon_sym_to_string] = ACTIONS(2011), + [anon_sym_to_float] = ACTIONS(2011), + [anon_sym_bash] = ACTIONS(2011), + [anon_sym_fish] = ACTIONS(2011), + [anon_sym_raw] = ACTIONS(2011), + [anon_sym_sh] = ACTIONS(2011), + [anon_sym_zsh] = ACTIONS(2011), + [anon_sym_random] = ACTIONS(2011), + [anon_sym_random_boolean] = ACTIONS(2011), + [anon_sym_random_float] = ACTIONS(2011), + [anon_sym_random_integer] = ACTIONS(2011), + [anon_sym_columns] = ACTIONS(2011), + [anon_sym_rows] = ACTIONS(2011), + [anon_sym_reverse] = ACTIONS(2011), }, [434] = { - [sym_block] = STATE(1543), - [sym_statement] = STATE(259), - [sym_expression] = STATE(888), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(822), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(787), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(259), - [sym_identifier] = ACTIONS(1846), + [ts_builtin_sym_end] = ACTIONS(2259), + [sym_identifier] = ACTIONS(2261), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2164), - [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(1284), - [anon_sym_match] = ACTIONS(1850), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(1852), - [anon_sym_for] = ACTIONS(1854), - [anon_sym_asyncfor] = ACTIONS(1856), - [anon_sym_transform] = ACTIONS(1858), - [anon_sym_filter] = ACTIONS(1860), - [anon_sym_find] = ACTIONS(1862), - [anon_sym_remove] = ACTIONS(1864), - [anon_sym_reduce] = ACTIONS(1866), - [anon_sym_select] = ACTIONS(1868), - [anon_sym_insert] = ACTIONS(43), - [anon_sym_async] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(49), - [anon_sym_assert] = ACTIONS(51), - [anon_sym_assert_equal] = ACTIONS(51), - [anon_sym_download] = ACTIONS(51), - [anon_sym_help] = ACTIONS(51), - [anon_sym_length] = ACTIONS(51), - [anon_sym_output] = ACTIONS(51), - [anon_sym_output_error] = ACTIONS(51), - [anon_sym_type] = ACTIONS(51), - [anon_sym_append] = ACTIONS(51), - [anon_sym_metadata] = ACTIONS(51), - [anon_sym_move] = ACTIONS(51), - [anon_sym_read] = ACTIONS(51), - [anon_sym_workdir] = ACTIONS(51), - [anon_sym_write] = ACTIONS(51), - [anon_sym_from_json] = ACTIONS(51), - [anon_sym_to_json] = ACTIONS(51), - [anon_sym_to_string] = ACTIONS(51), - [anon_sym_to_float] = ACTIONS(51), - [anon_sym_bash] = ACTIONS(51), - [anon_sym_fish] = ACTIONS(51), - [anon_sym_raw] = ACTIONS(51), - [anon_sym_sh] = ACTIONS(51), - [anon_sym_zsh] = ACTIONS(51), - [anon_sym_random] = ACTIONS(51), - [anon_sym_random_boolean] = ACTIONS(51), - [anon_sym_random_float] = ACTIONS(51), - [anon_sym_random_integer] = ACTIONS(51), - [anon_sym_columns] = ACTIONS(51), - [anon_sym_rows] = ACTIONS(51), - [anon_sym_reverse] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(2259), + [anon_sym_RBRACE] = ACTIONS(2259), + [anon_sym_SEMI] = ACTIONS(2259), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_RPAREN] = ACTIONS(2259), + [anon_sym_COMMA] = ACTIONS(2259), + [sym_integer] = ACTIONS(2261), + [sym_float] = ACTIONS(2259), + [sym_string] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(2261), + [anon_sym_false] = ACTIONS(2261), + [anon_sym_LBRACK] = ACTIONS(2259), + [anon_sym_RBRACK] = ACTIONS(2259), + [anon_sym_COLON] = ACTIONS(2259), + [anon_sym_DOT_DOT] = ACTIONS(2259), + [anon_sym_PLUS] = ACTIONS(2259), + [anon_sym_DASH] = ACTIONS(2261), + [anon_sym_STAR] = ACTIONS(2259), + [anon_sym_SLASH] = ACTIONS(2259), + [anon_sym_PERCENT] = ACTIONS(2259), + [anon_sym_EQ_EQ] = ACTIONS(2259), + [anon_sym_BANG_EQ] = ACTIONS(2259), + [anon_sym_AMP_AMP] = ACTIONS(2259), + [anon_sym_PIPE_PIPE] = ACTIONS(2259), + [anon_sym_GT] = ACTIONS(2261), + [anon_sym_LT] = ACTIONS(2261), + [anon_sym_GT_EQ] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(2259), + [anon_sym_if] = ACTIONS(2261), + [anon_sym_elseif] = ACTIONS(2259), + [anon_sym_else] = ACTIONS(2261), + [anon_sym_match] = ACTIONS(2261), + [anon_sym_EQ_GT] = ACTIONS(2259), + [anon_sym_while] = ACTIONS(2261), + [anon_sym_for] = ACTIONS(2261), + [anon_sym_asyncfor] = ACTIONS(2259), + [anon_sym_transform] = ACTIONS(2261), + [anon_sym_filter] = ACTIONS(2261), + [anon_sym_find] = ACTIONS(2261), + [anon_sym_remove] = ACTIONS(2261), + [anon_sym_reduce] = ACTIONS(2261), + [anon_sym_select] = ACTIONS(2261), + [anon_sym_insert] = ACTIONS(2261), + [anon_sym_async] = ACTIONS(2261), + [anon_sym_PIPE] = ACTIONS(2261), + [anon_sym_table] = ACTIONS(2261), + [anon_sym_assert] = ACTIONS(2261), + [anon_sym_assert_equal] = ACTIONS(2261), + [anon_sym_download] = ACTIONS(2261), + [anon_sym_help] = ACTIONS(2261), + [anon_sym_length] = ACTIONS(2261), + [anon_sym_output] = ACTIONS(2261), + [anon_sym_output_error] = ACTIONS(2261), + [anon_sym_type] = ACTIONS(2261), + [anon_sym_append] = ACTIONS(2261), + [anon_sym_metadata] = ACTIONS(2261), + [anon_sym_move] = ACTIONS(2261), + [anon_sym_read] = ACTIONS(2261), + [anon_sym_workdir] = ACTIONS(2261), + [anon_sym_write] = ACTIONS(2261), + [anon_sym_from_json] = ACTIONS(2261), + [anon_sym_to_json] = ACTIONS(2261), + [anon_sym_to_string] = ACTIONS(2261), + [anon_sym_to_float] = ACTIONS(2261), + [anon_sym_bash] = ACTIONS(2261), + [anon_sym_fish] = ACTIONS(2261), + [anon_sym_raw] = ACTIONS(2261), + [anon_sym_sh] = ACTIONS(2261), + [anon_sym_zsh] = ACTIONS(2261), + [anon_sym_random] = ACTIONS(2261), + [anon_sym_random_boolean] = ACTIONS(2261), + [anon_sym_random_float] = ACTIONS(2261), + [anon_sym_random_integer] = ACTIONS(2261), + [anon_sym_columns] = ACTIONS(2261), + [anon_sym_rows] = ACTIONS(2261), + [anon_sym_reverse] = ACTIONS(2261), }, [435] = { - [sym_block] = STATE(604), - [sym_statement] = STATE(10), - [sym_expression] = STATE(571), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_logic] = STATE(631), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(558), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(1817), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(265), - [aux_sym_block_repeat1] = STATE(10), - [sym_identifier] = ACTIONS(55), + [ts_builtin_sym_end] = ACTIONS(2263), + [sym_identifier] = ACTIONS(2265), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(59), - [sym_integer] = ACTIONS(61), - [sym_float] = ACTIONS(63), - [sym_string] = ACTIONS(63), - [anon_sym_true] = ACTIONS(65), - [anon_sym_false] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_if] = 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_asyncfor] = ACTIONS(91), - [anon_sym_transform] = ACTIONS(93), - [anon_sym_filter] = ACTIONS(95), - [anon_sym_find] = ACTIONS(97), - [anon_sym_remove] = ACTIONS(99), - [anon_sym_reduce] = ACTIONS(101), - [anon_sym_select] = ACTIONS(103), - [anon_sym_insert] = ACTIONS(105), - [anon_sym_async] = ACTIONS(107), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(111), - [anon_sym_assert] = ACTIONS(113), - [anon_sym_assert_equal] = ACTIONS(113), - [anon_sym_download] = ACTIONS(113), - [anon_sym_help] = ACTIONS(113), - [anon_sym_length] = ACTIONS(113), - [anon_sym_output] = ACTIONS(113), - [anon_sym_output_error] = ACTIONS(113), - [anon_sym_type] = ACTIONS(113), - [anon_sym_append] = ACTIONS(113), - [anon_sym_metadata] = ACTIONS(113), - [anon_sym_move] = ACTIONS(113), - [anon_sym_read] = ACTIONS(113), - [anon_sym_workdir] = ACTIONS(113), - [anon_sym_write] = ACTIONS(113), - [anon_sym_from_json] = ACTIONS(113), - [anon_sym_to_json] = ACTIONS(113), - [anon_sym_to_string] = ACTIONS(113), - [anon_sym_to_float] = ACTIONS(113), - [anon_sym_bash] = ACTIONS(113), - [anon_sym_fish] = ACTIONS(113), - [anon_sym_raw] = ACTIONS(113), - [anon_sym_sh] = ACTIONS(113), - [anon_sym_zsh] = ACTIONS(113), - [anon_sym_random] = ACTIONS(113), - [anon_sym_random_boolean] = ACTIONS(113), - [anon_sym_random_float] = ACTIONS(113), - [anon_sym_random_integer] = ACTIONS(113), - [anon_sym_columns] = ACTIONS(113), - [anon_sym_rows] = ACTIONS(113), - [anon_sym_reverse] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_RBRACE] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_LPAREN] = ACTIONS(2263), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_COMMA] = ACTIONS(2263), + [sym_integer] = ACTIONS(2265), + [sym_float] = ACTIONS(2263), + [sym_string] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(2265), + [anon_sym_false] = ACTIONS(2265), + [anon_sym_LBRACK] = ACTIONS(2263), + [anon_sym_RBRACK] = ACTIONS(2263), + [anon_sym_COLON] = ACTIONS(2263), + [anon_sym_DOT_DOT] = ACTIONS(2263), + [anon_sym_PLUS] = ACTIONS(2263), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_STAR] = ACTIONS(2263), + [anon_sym_SLASH] = ACTIONS(2263), + [anon_sym_PERCENT] = ACTIONS(2263), + [anon_sym_EQ_EQ] = ACTIONS(2263), + [anon_sym_BANG_EQ] = ACTIONS(2263), + [anon_sym_AMP_AMP] = ACTIONS(2263), + [anon_sym_PIPE_PIPE] = ACTIONS(2263), + [anon_sym_GT] = ACTIONS(2265), + [anon_sym_LT] = ACTIONS(2265), + [anon_sym_GT_EQ] = ACTIONS(2263), + [anon_sym_LT_EQ] = ACTIONS(2263), + [anon_sym_if] = ACTIONS(2265), + [anon_sym_elseif] = ACTIONS(2263), + [anon_sym_else] = ACTIONS(2265), + [anon_sym_match] = ACTIONS(2265), + [anon_sym_EQ_GT] = ACTIONS(2263), + [anon_sym_while] = ACTIONS(2265), + [anon_sym_for] = ACTIONS(2265), + [anon_sym_asyncfor] = ACTIONS(2263), + [anon_sym_transform] = ACTIONS(2265), + [anon_sym_filter] = ACTIONS(2265), + [anon_sym_find] = ACTIONS(2265), + [anon_sym_remove] = ACTIONS(2265), + [anon_sym_reduce] = ACTIONS(2265), + [anon_sym_select] = ACTIONS(2265), + [anon_sym_insert] = ACTIONS(2265), + [anon_sym_async] = ACTIONS(2265), + [anon_sym_PIPE] = ACTIONS(2265), + [anon_sym_table] = ACTIONS(2265), + [anon_sym_assert] = ACTIONS(2265), + [anon_sym_assert_equal] = ACTIONS(2265), + [anon_sym_download] = ACTIONS(2265), + [anon_sym_help] = ACTIONS(2265), + [anon_sym_length] = ACTIONS(2265), + [anon_sym_output] = ACTIONS(2265), + [anon_sym_output_error] = ACTIONS(2265), + [anon_sym_type] = ACTIONS(2265), + [anon_sym_append] = ACTIONS(2265), + [anon_sym_metadata] = ACTIONS(2265), + [anon_sym_move] = ACTIONS(2265), + [anon_sym_read] = ACTIONS(2265), + [anon_sym_workdir] = ACTIONS(2265), + [anon_sym_write] = ACTIONS(2265), + [anon_sym_from_json] = ACTIONS(2265), + [anon_sym_to_json] = ACTIONS(2265), + [anon_sym_to_string] = ACTIONS(2265), + [anon_sym_to_float] = ACTIONS(2265), + [anon_sym_bash] = ACTIONS(2265), + [anon_sym_fish] = ACTIONS(2265), + [anon_sym_raw] = ACTIONS(2265), + [anon_sym_sh] = ACTIONS(2265), + [anon_sym_zsh] = ACTIONS(2265), + [anon_sym_random] = ACTIONS(2265), + [anon_sym_random_boolean] = ACTIONS(2265), + [anon_sym_random_float] = ACTIONS(2265), + [anon_sym_random_integer] = ACTIONS(2265), + [anon_sym_columns] = ACTIONS(2265), + [anon_sym_rows] = ACTIONS(2265), + [anon_sym_reverse] = ACTIONS(2265), }, [436] = { - [sym_block] = STATE(1528), - [sym_statement] = STATE(43), - [sym_expression] = STATE(601), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_logic] = STATE(706), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(557), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1910), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(284), - [aux_sym_block_repeat1] = STATE(43), - [sym_identifier] = ACTIONS(149), + [ts_builtin_sym_end] = ACTIONS(2267), + [sym_identifier] = ACTIONS(2269), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_if] = ACTIONS(81), - [anon_sym_match] = ACTIONS(165), - [anon_sym_EQ_GT] = ACTIONS(167), - [anon_sym_while] = ACTIONS(169), - [anon_sym_for] = ACTIONS(171), - [anon_sym_asyncfor] = ACTIONS(173), - [anon_sym_transform] = ACTIONS(175), - [anon_sym_filter] = ACTIONS(177), - [anon_sym_find] = ACTIONS(179), - [anon_sym_remove] = ACTIONS(181), - [anon_sym_reduce] = ACTIONS(183), - [anon_sym_select] = ACTIONS(185), - [anon_sym_insert] = ACTIONS(187), - [anon_sym_async] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(191), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_assert_equal] = ACTIONS(193), - [anon_sym_download] = ACTIONS(193), - [anon_sym_help] = ACTIONS(193), - [anon_sym_length] = ACTIONS(193), - [anon_sym_output] = ACTIONS(193), - [anon_sym_output_error] = ACTIONS(193), - [anon_sym_type] = ACTIONS(193), - [anon_sym_append] = ACTIONS(193), - [anon_sym_metadata] = ACTIONS(193), - [anon_sym_move] = ACTIONS(193), - [anon_sym_read] = ACTIONS(193), - [anon_sym_workdir] = ACTIONS(193), - [anon_sym_write] = ACTIONS(193), - [anon_sym_from_json] = ACTIONS(193), - [anon_sym_to_json] = ACTIONS(193), - [anon_sym_to_string] = ACTIONS(193), - [anon_sym_to_float] = ACTIONS(193), - [anon_sym_bash] = ACTIONS(193), - [anon_sym_fish] = ACTIONS(193), - [anon_sym_raw] = ACTIONS(193), - [anon_sym_sh] = ACTIONS(193), - [anon_sym_zsh] = ACTIONS(193), - [anon_sym_random] = ACTIONS(193), - [anon_sym_random_boolean] = ACTIONS(193), - [anon_sym_random_float] = ACTIONS(193), - [anon_sym_random_integer] = ACTIONS(193), - [anon_sym_columns] = ACTIONS(193), - [anon_sym_rows] = ACTIONS(193), - [anon_sym_reverse] = ACTIONS(193), + [anon_sym_LBRACE] = ACTIONS(2267), + [anon_sym_RBRACE] = ACTIONS(2267), + [anon_sym_SEMI] = ACTIONS(2267), + [anon_sym_LPAREN] = ACTIONS(2267), + [anon_sym_RPAREN] = ACTIONS(2267), + [anon_sym_COMMA] = ACTIONS(2267), + [sym_integer] = ACTIONS(2269), + [sym_float] = ACTIONS(2267), + [sym_string] = ACTIONS(2267), + [anon_sym_true] = ACTIONS(2269), + [anon_sym_false] = ACTIONS(2269), + [anon_sym_LBRACK] = ACTIONS(2267), + [anon_sym_RBRACK] = ACTIONS(2267), + [anon_sym_COLON] = ACTIONS(2267), + [anon_sym_DOT_DOT] = ACTIONS(2267), + [anon_sym_PLUS] = ACTIONS(2267), + [anon_sym_DASH] = ACTIONS(2269), + [anon_sym_STAR] = ACTIONS(2267), + [anon_sym_SLASH] = ACTIONS(2267), + [anon_sym_PERCENT] = ACTIONS(2267), + [anon_sym_EQ_EQ] = ACTIONS(2267), + [anon_sym_BANG_EQ] = ACTIONS(2267), + [anon_sym_AMP_AMP] = ACTIONS(2267), + [anon_sym_PIPE_PIPE] = ACTIONS(2267), + [anon_sym_GT] = ACTIONS(2269), + [anon_sym_LT] = ACTIONS(2269), + [anon_sym_GT_EQ] = ACTIONS(2267), + [anon_sym_LT_EQ] = ACTIONS(2267), + [anon_sym_if] = ACTIONS(2269), + [anon_sym_elseif] = ACTIONS(2267), + [anon_sym_else] = ACTIONS(2269), + [anon_sym_match] = ACTIONS(2269), + [anon_sym_EQ_GT] = ACTIONS(2267), + [anon_sym_while] = ACTIONS(2269), + [anon_sym_for] = ACTIONS(2269), + [anon_sym_asyncfor] = ACTIONS(2267), + [anon_sym_transform] = ACTIONS(2269), + [anon_sym_filter] = ACTIONS(2269), + [anon_sym_find] = ACTIONS(2269), + [anon_sym_remove] = ACTIONS(2269), + [anon_sym_reduce] = ACTIONS(2269), + [anon_sym_select] = ACTIONS(2269), + [anon_sym_insert] = ACTIONS(2269), + [anon_sym_async] = ACTIONS(2269), + [anon_sym_PIPE] = ACTIONS(2269), + [anon_sym_table] = ACTIONS(2269), + [anon_sym_assert] = ACTIONS(2269), + [anon_sym_assert_equal] = ACTIONS(2269), + [anon_sym_download] = ACTIONS(2269), + [anon_sym_help] = ACTIONS(2269), + [anon_sym_length] = ACTIONS(2269), + [anon_sym_output] = ACTIONS(2269), + [anon_sym_output_error] = ACTIONS(2269), + [anon_sym_type] = ACTIONS(2269), + [anon_sym_append] = ACTIONS(2269), + [anon_sym_metadata] = ACTIONS(2269), + [anon_sym_move] = ACTIONS(2269), + [anon_sym_read] = ACTIONS(2269), + [anon_sym_workdir] = ACTIONS(2269), + [anon_sym_write] = ACTIONS(2269), + [anon_sym_from_json] = ACTIONS(2269), + [anon_sym_to_json] = ACTIONS(2269), + [anon_sym_to_string] = ACTIONS(2269), + [anon_sym_to_float] = ACTIONS(2269), + [anon_sym_bash] = ACTIONS(2269), + [anon_sym_fish] = ACTIONS(2269), + [anon_sym_raw] = ACTIONS(2269), + [anon_sym_sh] = ACTIONS(2269), + [anon_sym_zsh] = ACTIONS(2269), + [anon_sym_random] = ACTIONS(2269), + [anon_sym_random_boolean] = ACTIONS(2269), + [anon_sym_random_float] = ACTIONS(2269), + [anon_sym_random_integer] = ACTIONS(2269), + [anon_sym_columns] = ACTIONS(2269), + [anon_sym_rows] = ACTIONS(2269), + [anon_sym_reverse] = ACTIONS(2269), }, [437] = { - [sym_block] = STATE(765), - [sym_statement] = STATE(51), - [sym_expression] = STATE(817), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(748), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(760), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1926), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(351), - [aux_sym_block_repeat1] = STATE(51), - [sym_identifier] = ACTIONS(1280), + [sym_math_operator] = STATE(908), + [sym_logic_operator] = STATE(909), + [ts_builtin_sym_end] = ACTIONS(2026), + [sym_identifier] = ACTIONS(2028), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_match] = ACTIONS(1286), - [anon_sym_EQ_GT] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_asyncfor] = ACTIONS(1294), - [anon_sym_transform] = ACTIONS(1296), - [anon_sym_filter] = ACTIONS(1298), - [anon_sym_find] = ACTIONS(1300), - [anon_sym_remove] = ACTIONS(1302), - [anon_sym_reduce] = ACTIONS(1304), - [anon_sym_select] = ACTIONS(1306), - [anon_sym_insert] = ACTIONS(1308), - [anon_sym_async] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(1312), - [anon_sym_assert] = ACTIONS(1314), - [anon_sym_assert_equal] = ACTIONS(1314), - [anon_sym_download] = ACTIONS(1314), - [anon_sym_help] = ACTIONS(1314), - [anon_sym_length] = ACTIONS(1314), - [anon_sym_output] = ACTIONS(1314), - [anon_sym_output_error] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_append] = ACTIONS(1314), - [anon_sym_metadata] = ACTIONS(1314), - [anon_sym_move] = ACTIONS(1314), - [anon_sym_read] = ACTIONS(1314), - [anon_sym_workdir] = ACTIONS(1314), - [anon_sym_write] = ACTIONS(1314), - [anon_sym_from_json] = ACTIONS(1314), - [anon_sym_to_json] = ACTIONS(1314), - [anon_sym_to_string] = ACTIONS(1314), - [anon_sym_to_float] = ACTIONS(1314), - [anon_sym_bash] = ACTIONS(1314), - [anon_sym_fish] = ACTIONS(1314), - [anon_sym_raw] = ACTIONS(1314), - [anon_sym_sh] = ACTIONS(1314), - [anon_sym_zsh] = ACTIONS(1314), - [anon_sym_random] = ACTIONS(1314), - [anon_sym_random_boolean] = ACTIONS(1314), - [anon_sym_random_float] = ACTIONS(1314), - [anon_sym_random_integer] = ACTIONS(1314), - [anon_sym_columns] = ACTIONS(1314), - [anon_sym_rows] = ACTIONS(1314), - [anon_sym_reverse] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(2026), + [anon_sym_RBRACE] = ACTIONS(2026), + [anon_sym_SEMI] = ACTIONS(2026), + [anon_sym_LPAREN] = ACTIONS(2026), + [anon_sym_RPAREN] = ACTIONS(2026), + [anon_sym_COMMA] = ACTIONS(2026), + [sym_integer] = ACTIONS(2028), + [sym_float] = ACTIONS(2026), + [sym_string] = ACTIONS(2026), + [anon_sym_true] = ACTIONS(2028), + [anon_sym_false] = ACTIONS(2028), + [anon_sym_LBRACK] = ACTIONS(2026), + [anon_sym_RBRACK] = ACTIONS(2026), + [anon_sym_COLON] = ACTIONS(2026), + [anon_sym_DOT_DOT] = ACTIONS(2026), + [anon_sym_PLUS] = ACTIONS(2026), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(2026), + [anon_sym_SLASH] = ACTIONS(2026), + [anon_sym_PERCENT] = ACTIONS(2026), + [anon_sym_EQ_EQ] = ACTIONS(2026), + [anon_sym_BANG_EQ] = ACTIONS(2026), + [anon_sym_AMP_AMP] = ACTIONS(2026), + [anon_sym_PIPE_PIPE] = ACTIONS(2026), + [anon_sym_GT] = ACTIONS(2028), + [anon_sym_LT] = ACTIONS(2028), + [anon_sym_GT_EQ] = ACTIONS(2026), + [anon_sym_LT_EQ] = ACTIONS(2026), + [anon_sym_if] = ACTIONS(2028), + [anon_sym_match] = ACTIONS(2028), + [anon_sym_EQ_GT] = ACTIONS(2026), + [anon_sym_while] = ACTIONS(2028), + [anon_sym_for] = ACTIONS(2028), + [anon_sym_asyncfor] = ACTIONS(2026), + [anon_sym_transform] = ACTIONS(2028), + [anon_sym_filter] = ACTIONS(2028), + [anon_sym_find] = ACTIONS(2028), + [anon_sym_remove] = ACTIONS(2028), + [anon_sym_reduce] = ACTIONS(2028), + [anon_sym_select] = ACTIONS(2028), + [anon_sym_insert] = ACTIONS(2028), + [anon_sym_async] = ACTIONS(2028), + [anon_sym_PIPE] = ACTIONS(2028), + [anon_sym_table] = ACTIONS(2028), + [anon_sym_assert] = ACTIONS(2028), + [anon_sym_assert_equal] = ACTIONS(2028), + [anon_sym_download] = ACTIONS(2028), + [anon_sym_help] = ACTIONS(2028), + [anon_sym_length] = ACTIONS(2028), + [anon_sym_output] = ACTIONS(2028), + [anon_sym_output_error] = ACTIONS(2028), + [anon_sym_type] = ACTIONS(2028), + [anon_sym_append] = ACTIONS(2028), + [anon_sym_metadata] = ACTIONS(2028), + [anon_sym_move] = ACTIONS(2028), + [anon_sym_read] = ACTIONS(2028), + [anon_sym_workdir] = ACTIONS(2028), + [anon_sym_write] = ACTIONS(2028), + [anon_sym_from_json] = ACTIONS(2028), + [anon_sym_to_json] = ACTIONS(2028), + [anon_sym_to_string] = ACTIONS(2028), + [anon_sym_to_float] = ACTIONS(2028), + [anon_sym_bash] = ACTIONS(2028), + [anon_sym_fish] = ACTIONS(2028), + [anon_sym_raw] = ACTIONS(2028), + [anon_sym_sh] = ACTIONS(2028), + [anon_sym_zsh] = ACTIONS(2028), + [anon_sym_random] = ACTIONS(2028), + [anon_sym_random_boolean] = ACTIONS(2028), + [anon_sym_random_float] = ACTIONS(2028), + [anon_sym_random_integer] = ACTIONS(2028), + [anon_sym_columns] = ACTIONS(2028), + [anon_sym_rows] = ACTIONS(2028), + [anon_sym_reverse] = ACTIONS(2028), }, [438] = { - [sym_block] = STATE(606), - [sym_statement] = STATE(27), - [sym_expression] = STATE(663), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_logic] = STATE(631), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(637), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(1998), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(296), - [aux_sym_block_repeat1] = STATE(27), - [sym_identifier] = ACTIONS(55), + [sym_math_operator] = STATE(908), + [sym_logic_operator] = STATE(909), + [ts_builtin_sym_end] = ACTIONS(2067), + [sym_identifier] = ACTIONS(2069), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(59), - [sym_integer] = ACTIONS(61), - [sym_float] = ACTIONS(63), - [sym_string] = ACTIONS(63), - [anon_sym_true] = ACTIONS(65), - [anon_sym_false] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_if] = ACTIONS(311), - [anon_sym_match] = ACTIONS(313), - [anon_sym_EQ_GT] = ACTIONS(315), - [anon_sym_while] = ACTIONS(317), - [anon_sym_for] = ACTIONS(319), - [anon_sym_asyncfor] = ACTIONS(321), - [anon_sym_transform] = ACTIONS(323), - [anon_sym_filter] = ACTIONS(325), - [anon_sym_find] = ACTIONS(327), - [anon_sym_remove] = ACTIONS(329), - [anon_sym_reduce] = ACTIONS(331), - [anon_sym_select] = ACTIONS(333), - [anon_sym_insert] = ACTIONS(335), - [anon_sym_async] = ACTIONS(337), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(339), - [anon_sym_assert] = ACTIONS(341), - [anon_sym_assert_equal] = ACTIONS(341), - [anon_sym_download] = ACTIONS(341), - [anon_sym_help] = ACTIONS(341), - [anon_sym_length] = ACTIONS(341), - [anon_sym_output] = ACTIONS(341), - [anon_sym_output_error] = ACTIONS(341), - [anon_sym_type] = ACTIONS(341), - [anon_sym_append] = ACTIONS(341), - [anon_sym_metadata] = ACTIONS(341), - [anon_sym_move] = ACTIONS(341), - [anon_sym_read] = ACTIONS(341), - [anon_sym_workdir] = ACTIONS(341), - [anon_sym_write] = ACTIONS(341), - [anon_sym_from_json] = ACTIONS(341), - [anon_sym_to_json] = ACTIONS(341), - [anon_sym_to_string] = ACTIONS(341), - [anon_sym_to_float] = ACTIONS(341), - [anon_sym_bash] = ACTIONS(341), - [anon_sym_fish] = ACTIONS(341), - [anon_sym_raw] = ACTIONS(341), - [anon_sym_sh] = ACTIONS(341), - [anon_sym_zsh] = ACTIONS(341), - [anon_sym_random] = ACTIONS(341), - [anon_sym_random_boolean] = ACTIONS(341), - [anon_sym_random_float] = ACTIONS(341), - [anon_sym_random_integer] = ACTIONS(341), - [anon_sym_columns] = ACTIONS(341), - [anon_sym_rows] = ACTIONS(341), - [anon_sym_reverse] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_RBRACE] = ACTIONS(2067), + [anon_sym_SEMI] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_RPAREN] = ACTIONS(2067), + [anon_sym_COMMA] = ACTIONS(2067), + [sym_integer] = ACTIONS(2069), + [sym_float] = ACTIONS(2067), + [sym_string] = ACTIONS(2067), + [anon_sym_true] = ACTIONS(2069), + [anon_sym_false] = ACTIONS(2069), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_RBRACK] = ACTIONS(2067), + [anon_sym_COLON] = ACTIONS(2067), + [anon_sym_DOT_DOT] = ACTIONS(2067), + [anon_sym_PLUS] = ACTIONS(2067), + [anon_sym_DASH] = ACTIONS(2069), + [anon_sym_STAR] = ACTIONS(2067), + [anon_sym_SLASH] = ACTIONS(2067), + [anon_sym_PERCENT] = ACTIONS(2067), + [anon_sym_EQ_EQ] = ACTIONS(2067), + [anon_sym_BANG_EQ] = ACTIONS(2067), + [anon_sym_AMP_AMP] = ACTIONS(2067), + [anon_sym_PIPE_PIPE] = ACTIONS(2067), + [anon_sym_GT] = ACTIONS(2069), + [anon_sym_LT] = ACTIONS(2069), + [anon_sym_GT_EQ] = ACTIONS(2067), + [anon_sym_LT_EQ] = ACTIONS(2067), + [anon_sym_if] = ACTIONS(2069), + [anon_sym_match] = ACTIONS(2069), + [anon_sym_EQ_GT] = ACTIONS(2067), + [anon_sym_while] = ACTIONS(2069), + [anon_sym_for] = ACTIONS(2069), + [anon_sym_asyncfor] = ACTIONS(2067), + [anon_sym_transform] = ACTIONS(2069), + [anon_sym_filter] = ACTIONS(2069), + [anon_sym_find] = ACTIONS(2069), + [anon_sym_remove] = ACTIONS(2069), + [anon_sym_reduce] = ACTIONS(2069), + [anon_sym_select] = ACTIONS(2069), + [anon_sym_insert] = ACTIONS(2069), + [anon_sym_async] = ACTIONS(2069), + [anon_sym_PIPE] = ACTIONS(2069), + [anon_sym_table] = ACTIONS(2069), + [anon_sym_assert] = ACTIONS(2069), + [anon_sym_assert_equal] = ACTIONS(2069), + [anon_sym_download] = ACTIONS(2069), + [anon_sym_help] = ACTIONS(2069), + [anon_sym_length] = ACTIONS(2069), + [anon_sym_output] = ACTIONS(2069), + [anon_sym_output_error] = ACTIONS(2069), + [anon_sym_type] = ACTIONS(2069), + [anon_sym_append] = ACTIONS(2069), + [anon_sym_metadata] = ACTIONS(2069), + [anon_sym_move] = ACTIONS(2069), + [anon_sym_read] = ACTIONS(2069), + [anon_sym_workdir] = ACTIONS(2069), + [anon_sym_write] = ACTIONS(2069), + [anon_sym_from_json] = ACTIONS(2069), + [anon_sym_to_json] = ACTIONS(2069), + [anon_sym_to_string] = ACTIONS(2069), + [anon_sym_to_float] = ACTIONS(2069), + [anon_sym_bash] = ACTIONS(2069), + [anon_sym_fish] = ACTIONS(2069), + [anon_sym_raw] = ACTIONS(2069), + [anon_sym_sh] = ACTIONS(2069), + [anon_sym_zsh] = ACTIONS(2069), + [anon_sym_random] = ACTIONS(2069), + [anon_sym_random_boolean] = ACTIONS(2069), + [anon_sym_random_float] = ACTIONS(2069), + [anon_sym_random_integer] = ACTIONS(2069), + [anon_sym_columns] = ACTIONS(2069), + [anon_sym_rows] = ACTIONS(2069), + [anon_sym_reverse] = ACTIONS(2069), }, [439] = { - [sym_block] = STATE(688), - [sym_statement] = STATE(35), - [sym_expression] = STATE(701), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_logic] = STATE(706), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(582), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1866), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(320), - [aux_sym_block_repeat1] = STATE(35), - [sym_identifier] = ACTIONS(149), + [ts_builtin_sym_end] = ACTIONS(2271), + [sym_identifier] = ACTIONS(2273), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_if] = ACTIONS(197), - [anon_sym_match] = ACTIONS(497), - [anon_sym_EQ_GT] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_asyncfor] = ACTIONS(505), - [anon_sym_transform] = ACTIONS(507), - [anon_sym_filter] = ACTIONS(509), - [anon_sym_find] = ACTIONS(511), - [anon_sym_remove] = ACTIONS(513), - [anon_sym_reduce] = ACTIONS(515), - [anon_sym_select] = ACTIONS(517), - [anon_sym_insert] = ACTIONS(519), - [anon_sym_async] = ACTIONS(521), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(523), - [anon_sym_assert] = ACTIONS(525), - [anon_sym_assert_equal] = ACTIONS(525), - [anon_sym_download] = ACTIONS(525), - [anon_sym_help] = ACTIONS(525), - [anon_sym_length] = ACTIONS(525), - [anon_sym_output] = ACTIONS(525), - [anon_sym_output_error] = ACTIONS(525), - [anon_sym_type] = ACTIONS(525), - [anon_sym_append] = ACTIONS(525), - [anon_sym_metadata] = ACTIONS(525), - [anon_sym_move] = ACTIONS(525), - [anon_sym_read] = ACTIONS(525), - [anon_sym_workdir] = ACTIONS(525), - [anon_sym_write] = ACTIONS(525), - [anon_sym_from_json] = ACTIONS(525), - [anon_sym_to_json] = ACTIONS(525), - [anon_sym_to_string] = ACTIONS(525), - [anon_sym_to_float] = ACTIONS(525), - [anon_sym_bash] = ACTIONS(525), - [anon_sym_fish] = ACTIONS(525), - [anon_sym_raw] = ACTIONS(525), - [anon_sym_sh] = ACTIONS(525), - [anon_sym_zsh] = ACTIONS(525), - [anon_sym_random] = ACTIONS(525), - [anon_sym_random_boolean] = ACTIONS(525), - [anon_sym_random_float] = ACTIONS(525), - [anon_sym_random_integer] = ACTIONS(525), - [anon_sym_columns] = ACTIONS(525), - [anon_sym_rows] = ACTIONS(525), - [anon_sym_reverse] = ACTIONS(525), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_RBRACE] = ACTIONS(2271), + [anon_sym_SEMI] = ACTIONS(2271), + [anon_sym_LPAREN] = ACTIONS(2271), + [anon_sym_RPAREN] = ACTIONS(2271), + [anon_sym_COMMA] = ACTIONS(2271), + [sym_integer] = ACTIONS(2273), + [sym_float] = ACTIONS(2271), + [sym_string] = ACTIONS(2271), + [anon_sym_true] = ACTIONS(2273), + [anon_sym_false] = ACTIONS(2273), + [anon_sym_LBRACK] = ACTIONS(2271), + [anon_sym_RBRACK] = ACTIONS(2271), + [anon_sym_COLON] = ACTIONS(2271), + [anon_sym_DOT_DOT] = ACTIONS(2271), + [anon_sym_PLUS] = ACTIONS(2271), + [anon_sym_DASH] = ACTIONS(2273), + [anon_sym_STAR] = ACTIONS(2271), + [anon_sym_SLASH] = ACTIONS(2271), + [anon_sym_PERCENT] = ACTIONS(2271), + [anon_sym_EQ_EQ] = ACTIONS(2271), + [anon_sym_BANG_EQ] = ACTIONS(2271), + [anon_sym_AMP_AMP] = ACTIONS(2271), + [anon_sym_PIPE_PIPE] = ACTIONS(2271), + [anon_sym_GT] = ACTIONS(2273), + [anon_sym_LT] = ACTIONS(2273), + [anon_sym_GT_EQ] = ACTIONS(2271), + [anon_sym_LT_EQ] = ACTIONS(2271), + [anon_sym_if] = ACTIONS(2273), + [anon_sym_elseif] = ACTIONS(2271), + [anon_sym_else] = ACTIONS(2273), + [anon_sym_match] = ACTIONS(2273), + [anon_sym_EQ_GT] = ACTIONS(2271), + [anon_sym_while] = ACTIONS(2273), + [anon_sym_for] = ACTIONS(2273), + [anon_sym_asyncfor] = ACTIONS(2271), + [anon_sym_transform] = ACTIONS(2273), + [anon_sym_filter] = ACTIONS(2273), + [anon_sym_find] = ACTIONS(2273), + [anon_sym_remove] = ACTIONS(2273), + [anon_sym_reduce] = ACTIONS(2273), + [anon_sym_select] = ACTIONS(2273), + [anon_sym_insert] = ACTIONS(2273), + [anon_sym_async] = ACTIONS(2273), + [anon_sym_PIPE] = ACTIONS(2273), + [anon_sym_table] = ACTIONS(2273), + [anon_sym_assert] = ACTIONS(2273), + [anon_sym_assert_equal] = ACTIONS(2273), + [anon_sym_download] = ACTIONS(2273), + [anon_sym_help] = ACTIONS(2273), + [anon_sym_length] = ACTIONS(2273), + [anon_sym_output] = ACTIONS(2273), + [anon_sym_output_error] = ACTIONS(2273), + [anon_sym_type] = ACTIONS(2273), + [anon_sym_append] = ACTIONS(2273), + [anon_sym_metadata] = ACTIONS(2273), + [anon_sym_move] = ACTIONS(2273), + [anon_sym_read] = ACTIONS(2273), + [anon_sym_workdir] = ACTIONS(2273), + [anon_sym_write] = ACTIONS(2273), + [anon_sym_from_json] = ACTIONS(2273), + [anon_sym_to_json] = ACTIONS(2273), + [anon_sym_to_string] = ACTIONS(2273), + [anon_sym_to_float] = ACTIONS(2273), + [anon_sym_bash] = ACTIONS(2273), + [anon_sym_fish] = ACTIONS(2273), + [anon_sym_raw] = ACTIONS(2273), + [anon_sym_sh] = ACTIONS(2273), + [anon_sym_zsh] = ACTIONS(2273), + [anon_sym_random] = ACTIONS(2273), + [anon_sym_random_boolean] = ACTIONS(2273), + [anon_sym_random_float] = ACTIONS(2273), + [anon_sym_random_integer] = ACTIONS(2273), + [anon_sym_columns] = ACTIONS(2273), + [anon_sym_rows] = ACTIONS(2273), + [anon_sym_reverse] = ACTIONS(2273), }, [440] = { - [sym_block] = STATE(723), - [sym_statement] = STATE(45), - [sym_expression] = STATE(795), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_logic] = STATE(706), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(611), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(2015), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(325), - [aux_sym_block_repeat1] = STATE(45), - [sym_identifier] = ACTIONS(149), + [sym_math_operator] = STATE(784), + [sym_logic_operator] = STATE(783), + [ts_builtin_sym_end] = ACTIONS(2071), + [sym_identifier] = ACTIONS(2073), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_if] = ACTIONS(311), - [anon_sym_match] = ACTIONS(913), - [anon_sym_EQ_GT] = ACTIONS(915), - [anon_sym_while] = ACTIONS(917), - [anon_sym_for] = ACTIONS(919), - [anon_sym_asyncfor] = ACTIONS(921), - [anon_sym_transform] = ACTIONS(923), - [anon_sym_filter] = ACTIONS(925), - [anon_sym_find] = ACTIONS(927), - [anon_sym_remove] = ACTIONS(929), - [anon_sym_reduce] = ACTIONS(931), - [anon_sym_select] = ACTIONS(933), - [anon_sym_insert] = ACTIONS(935), - [anon_sym_async] = ACTIONS(937), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(939), - [anon_sym_assert] = ACTIONS(941), - [anon_sym_assert_equal] = ACTIONS(941), - [anon_sym_download] = ACTIONS(941), - [anon_sym_help] = ACTIONS(941), - [anon_sym_length] = ACTIONS(941), - [anon_sym_output] = ACTIONS(941), - [anon_sym_output_error] = ACTIONS(941), - [anon_sym_type] = ACTIONS(941), - [anon_sym_append] = ACTIONS(941), - [anon_sym_metadata] = ACTIONS(941), - [anon_sym_move] = ACTIONS(941), - [anon_sym_read] = ACTIONS(941), - [anon_sym_workdir] = ACTIONS(941), - [anon_sym_write] = ACTIONS(941), - [anon_sym_from_json] = ACTIONS(941), - [anon_sym_to_json] = ACTIONS(941), - [anon_sym_to_string] = ACTIONS(941), - [anon_sym_to_float] = ACTIONS(941), - [anon_sym_bash] = ACTIONS(941), - [anon_sym_fish] = ACTIONS(941), - [anon_sym_raw] = ACTIONS(941), - [anon_sym_sh] = ACTIONS(941), - [anon_sym_zsh] = ACTIONS(941), - [anon_sym_random] = ACTIONS(941), - [anon_sym_random_boolean] = ACTIONS(941), - [anon_sym_random_float] = ACTIONS(941), - [anon_sym_random_integer] = ACTIONS(941), - [anon_sym_columns] = ACTIONS(941), - [anon_sym_rows] = ACTIONS(941), - [anon_sym_reverse] = ACTIONS(941), + [anon_sym_LBRACE] = ACTIONS(2071), + [anon_sym_RBRACE] = ACTIONS(2071), + [anon_sym_SEMI] = ACTIONS(2071), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_RPAREN] = ACTIONS(2071), + [anon_sym_COMMA] = ACTIONS(2071), + [sym_integer] = ACTIONS(2073), + [sym_float] = ACTIONS(2071), + [sym_string] = ACTIONS(2071), + [anon_sym_true] = ACTIONS(2073), + [anon_sym_false] = ACTIONS(2073), + [anon_sym_LBRACK] = ACTIONS(2071), + [anon_sym_RBRACK] = ACTIONS(2071), + [anon_sym_COLON] = ACTIONS(261), + [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(2073), + [anon_sym_match] = ACTIONS(2073), + [anon_sym_EQ_GT] = ACTIONS(2071), + [anon_sym_while] = ACTIONS(2073), + [anon_sym_for] = ACTIONS(2073), + [anon_sym_asyncfor] = ACTIONS(2071), + [anon_sym_transform] = ACTIONS(2073), + [anon_sym_filter] = ACTIONS(2073), + [anon_sym_find] = ACTIONS(2073), + [anon_sym_remove] = ACTIONS(2073), + [anon_sym_reduce] = ACTIONS(2073), + [anon_sym_select] = ACTIONS(2073), + [anon_sym_insert] = ACTIONS(2073), + [anon_sym_async] = ACTIONS(2073), + [anon_sym_PIPE] = ACTIONS(2073), + [anon_sym_table] = ACTIONS(2073), + [anon_sym_assert] = ACTIONS(2073), + [anon_sym_assert_equal] = ACTIONS(2073), + [anon_sym_download] = ACTIONS(2073), + [anon_sym_help] = ACTIONS(2073), + [anon_sym_length] = ACTIONS(2073), + [anon_sym_output] = ACTIONS(2073), + [anon_sym_output_error] = ACTIONS(2073), + [anon_sym_type] = ACTIONS(2073), + [anon_sym_append] = ACTIONS(2073), + [anon_sym_metadata] = ACTIONS(2073), + [anon_sym_move] = ACTIONS(2073), + [anon_sym_read] = ACTIONS(2073), + [anon_sym_workdir] = ACTIONS(2073), + [anon_sym_write] = ACTIONS(2073), + [anon_sym_from_json] = ACTIONS(2073), + [anon_sym_to_json] = ACTIONS(2073), + [anon_sym_to_string] = ACTIONS(2073), + [anon_sym_to_float] = ACTIONS(2073), + [anon_sym_bash] = ACTIONS(2073), + [anon_sym_fish] = ACTIONS(2073), + [anon_sym_raw] = ACTIONS(2073), + [anon_sym_sh] = ACTIONS(2073), + [anon_sym_zsh] = ACTIONS(2073), + [anon_sym_random] = ACTIONS(2073), + [anon_sym_random_boolean] = ACTIONS(2073), + [anon_sym_random_float] = ACTIONS(2073), + [anon_sym_random_integer] = ACTIONS(2073), + [anon_sym_columns] = ACTIONS(2073), + [anon_sym_rows] = ACTIONS(2073), + [anon_sym_reverse] = ACTIONS(2073), }, [441] = { - [sym_block] = STATE(1545), - [sym_statement] = STATE(257), - [sym_expression] = STATE(853), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(776), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(710), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1823), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(366), - [aux_sym_block_repeat1] = STATE(257), - [sym_identifier] = ACTIONS(1436), + [sym_expression] = STATE(969), + [sym__expression_kind] = STATE(919), + [sym_value] = STATE(919), + [sym_boolean] = STATE(936), + [sym_list] = STATE(936), + [sym_map] = STATE(936), + [sym_index] = STATE(919), + [sym_math] = STATE(919), + [sym_logic] = STATE(919), + [sym_identifier_list] = STATE(1086), + [sym_table] = STATE(936), + [sym_function] = STATE(936), + [sym_function_call] = STATE(919), + [sym__context_defined_function] = STATE(934), + [sym_built_in_function] = STATE(934), + [sym__built_in_function_name] = STATE(550), + [aux_sym_match_repeat1] = STATE(441), + [ts_builtin_sym_end] = ACTIONS(1398), + [sym_identifier] = ACTIONS(1400), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2164), - [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(843), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_EQ_GT] = ACTIONS(1442), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_for] = ACTIONS(1446), - [anon_sym_asyncfor] = ACTIONS(1448), - [anon_sym_transform] = ACTIONS(1450), - [anon_sym_filter] = ACTIONS(1452), - [anon_sym_find] = ACTIONS(1454), - [anon_sym_remove] = ACTIONS(1456), - [anon_sym_reduce] = ACTIONS(1458), - [anon_sym_select] = ACTIONS(1460), - [anon_sym_insert] = ACTIONS(1462), - [anon_sym_async] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(1466), - [anon_sym_assert] = ACTIONS(1468), - [anon_sym_assert_equal] = ACTIONS(1468), - [anon_sym_download] = ACTIONS(1468), - [anon_sym_help] = ACTIONS(1468), - [anon_sym_length] = ACTIONS(1468), - [anon_sym_output] = ACTIONS(1468), - [anon_sym_output_error] = ACTIONS(1468), - [anon_sym_type] = ACTIONS(1468), - [anon_sym_append] = ACTIONS(1468), - [anon_sym_metadata] = ACTIONS(1468), - [anon_sym_move] = ACTIONS(1468), - [anon_sym_read] = ACTIONS(1468), - [anon_sym_workdir] = ACTIONS(1468), - [anon_sym_write] = ACTIONS(1468), - [anon_sym_from_json] = ACTIONS(1468), - [anon_sym_to_json] = ACTIONS(1468), - [anon_sym_to_string] = ACTIONS(1468), - [anon_sym_to_float] = ACTIONS(1468), - [anon_sym_bash] = ACTIONS(1468), - [anon_sym_fish] = ACTIONS(1468), - [anon_sym_raw] = ACTIONS(1468), - [anon_sym_sh] = ACTIONS(1468), - [anon_sym_zsh] = ACTIONS(1468), - [anon_sym_random] = ACTIONS(1468), - [anon_sym_random_boolean] = ACTIONS(1468), - [anon_sym_random_float] = ACTIONS(1468), - [anon_sym_random_integer] = ACTIONS(1468), - [anon_sym_columns] = ACTIONS(1468), - [anon_sym_rows] = ACTIONS(1468), - [anon_sym_reverse] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_RBRACE] = ACTIONS(1398), + [anon_sym_SEMI] = ACTIONS(1398), + [anon_sym_LPAREN] = ACTIONS(1406), + [sym_integer] = ACTIONS(1409), + [sym_float] = ACTIONS(1412), + [sym_string] = ACTIONS(1412), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_LBRACK] = ACTIONS(1418), + [anon_sym_if] = ACTIONS(1421), + [anon_sym_elseif] = ACTIONS(1398), + [anon_sym_else] = ACTIONS(1421), + [anon_sym_match] = ACTIONS(1421), + [anon_sym_EQ_GT] = ACTIONS(1423), + [anon_sym_while] = ACTIONS(1421), + [anon_sym_for] = ACTIONS(1421), + [anon_sym_asyncfor] = ACTIONS(1398), + [anon_sym_transform] = ACTIONS(1421), + [anon_sym_filter] = ACTIONS(1421), + [anon_sym_find] = ACTIONS(1421), + [anon_sym_remove] = ACTIONS(1421), + [anon_sym_reduce] = ACTIONS(1421), + [anon_sym_select] = ACTIONS(1421), + [anon_sym_insert] = ACTIONS(1421), + [anon_sym_async] = ACTIONS(1421), + [anon_sym_PIPE] = ACTIONS(2275), + [anon_sym_table] = ACTIONS(1429), + [anon_sym_assert] = ACTIONS(1432), + [anon_sym_assert_equal] = ACTIONS(1432), + [anon_sym_download] = ACTIONS(1432), + [anon_sym_help] = ACTIONS(1432), + [anon_sym_length] = ACTIONS(1432), + [anon_sym_output] = ACTIONS(1432), + [anon_sym_output_error] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_append] = ACTIONS(1432), + [anon_sym_metadata] = ACTIONS(1432), + [anon_sym_move] = ACTIONS(1432), + [anon_sym_read] = ACTIONS(1432), + [anon_sym_workdir] = ACTIONS(1432), + [anon_sym_write] = ACTIONS(1432), + [anon_sym_from_json] = ACTIONS(1432), + [anon_sym_to_json] = ACTIONS(1432), + [anon_sym_to_string] = ACTIONS(1432), + [anon_sym_to_float] = ACTIONS(1432), + [anon_sym_bash] = ACTIONS(1432), + [anon_sym_fish] = ACTIONS(1432), + [anon_sym_raw] = ACTIONS(1432), + [anon_sym_sh] = ACTIONS(1432), + [anon_sym_zsh] = ACTIONS(1432), + [anon_sym_random] = ACTIONS(1432), + [anon_sym_random_boolean] = ACTIONS(1432), + [anon_sym_random_float] = ACTIONS(1432), + [anon_sym_random_integer] = ACTIONS(1432), + [anon_sym_columns] = ACTIONS(1432), + [anon_sym_rows] = ACTIONS(1432), + [anon_sym_reverse] = ACTIONS(1432), }, [442] = { - [sym_block] = STATE(1025), - [sym_statement] = STATE(352), - [sym_expression] = STATE(877), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(782), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_assignment] = STATE(1023), - [sym_if_else] = STATE(1023), - [sym_if] = STATE(978), - [sym_match] = STATE(1023), - [sym_while] = STATE(1023), - [sym_for] = STATE(1023), - [sym_transform] = STATE(1023), - [sym_filter] = STATE(1023), - [sym_find] = STATE(1023), - [sym_remove] = STATE(1023), - [sym_reduce] = STATE(1023), - [sym_select] = STATE(1023), - [sym_insert] = STATE(1023), - [sym_async] = STATE(1023), - [sym_identifier_list] = STATE(1926), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(351), - [aux_sym_block_repeat1] = STATE(352), - [sym_identifier] = ACTIONS(1639), + [sym_math_operator] = STATE(784), + [sym_logic_operator] = STATE(783), + [ts_builtin_sym_end] = ACTIONS(2075), + [sym_identifier] = ACTIONS(2077), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(1641), - [anon_sym_EQ_GT] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1643), - [anon_sym_for] = ACTIONS(1645), - [anon_sym_asyncfor] = ACTIONS(1647), - [anon_sym_transform] = ACTIONS(1649), - [anon_sym_filter] = ACTIONS(1651), - [anon_sym_find] = ACTIONS(1653), - [anon_sym_remove] = ACTIONS(1655), - [anon_sym_reduce] = ACTIONS(1657), - [anon_sym_select] = ACTIONS(1659), - [anon_sym_insert] = ACTIONS(1308), - [anon_sym_async] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(1312), - [anon_sym_assert] = ACTIONS(1314), - [anon_sym_assert_equal] = ACTIONS(1314), - [anon_sym_download] = ACTIONS(1314), - [anon_sym_help] = ACTIONS(1314), - [anon_sym_length] = ACTIONS(1314), - [anon_sym_output] = ACTIONS(1314), - [anon_sym_output_error] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_append] = ACTIONS(1314), - [anon_sym_metadata] = ACTIONS(1314), - [anon_sym_move] = ACTIONS(1314), - [anon_sym_read] = ACTIONS(1314), - [anon_sym_workdir] = ACTIONS(1314), - [anon_sym_write] = ACTIONS(1314), - [anon_sym_from_json] = ACTIONS(1314), - [anon_sym_to_json] = ACTIONS(1314), - [anon_sym_to_string] = ACTIONS(1314), - [anon_sym_to_float] = ACTIONS(1314), - [anon_sym_bash] = ACTIONS(1314), - [anon_sym_fish] = ACTIONS(1314), - [anon_sym_raw] = ACTIONS(1314), - [anon_sym_sh] = ACTIONS(1314), - [anon_sym_zsh] = ACTIONS(1314), - [anon_sym_random] = ACTIONS(1314), - [anon_sym_random_boolean] = ACTIONS(1314), - [anon_sym_random_float] = ACTIONS(1314), - [anon_sym_random_integer] = ACTIONS(1314), - [anon_sym_columns] = ACTIONS(1314), - [anon_sym_rows] = ACTIONS(1314), - [anon_sym_reverse] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(2075), + [anon_sym_RBRACE] = ACTIONS(2075), + [anon_sym_SEMI] = ACTIONS(2075), + [anon_sym_LPAREN] = ACTIONS(2075), + [anon_sym_RPAREN] = ACTIONS(2075), + [anon_sym_COMMA] = ACTIONS(2075), + [sym_integer] = ACTIONS(2077), + [sym_float] = ACTIONS(2075), + [sym_string] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_LBRACK] = ACTIONS(2075), + [anon_sym_RBRACK] = ACTIONS(2075), + [anon_sym_COLON] = ACTIONS(261), + [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(2077), + [anon_sym_match] = ACTIONS(2077), + [anon_sym_EQ_GT] = ACTIONS(2075), + [anon_sym_while] = ACTIONS(2077), + [anon_sym_for] = ACTIONS(2077), + [anon_sym_asyncfor] = ACTIONS(2075), + [anon_sym_transform] = ACTIONS(2077), + [anon_sym_filter] = ACTIONS(2077), + [anon_sym_find] = ACTIONS(2077), + [anon_sym_remove] = ACTIONS(2077), + [anon_sym_reduce] = ACTIONS(2077), + [anon_sym_select] = ACTIONS(2077), + [anon_sym_insert] = ACTIONS(2077), + [anon_sym_async] = ACTIONS(2077), + [anon_sym_PIPE] = ACTIONS(2077), + [anon_sym_table] = ACTIONS(2077), + [anon_sym_assert] = ACTIONS(2077), + [anon_sym_assert_equal] = ACTIONS(2077), + [anon_sym_download] = ACTIONS(2077), + [anon_sym_help] = ACTIONS(2077), + [anon_sym_length] = ACTIONS(2077), + [anon_sym_output] = ACTIONS(2077), + [anon_sym_output_error] = ACTIONS(2077), + [anon_sym_type] = ACTIONS(2077), + [anon_sym_append] = ACTIONS(2077), + [anon_sym_metadata] = ACTIONS(2077), + [anon_sym_move] = ACTIONS(2077), + [anon_sym_read] = ACTIONS(2077), + [anon_sym_workdir] = ACTIONS(2077), + [anon_sym_write] = ACTIONS(2077), + [anon_sym_from_json] = ACTIONS(2077), + [anon_sym_to_json] = ACTIONS(2077), + [anon_sym_to_string] = ACTIONS(2077), + [anon_sym_to_float] = ACTIONS(2077), + [anon_sym_bash] = ACTIONS(2077), + [anon_sym_fish] = ACTIONS(2077), + [anon_sym_raw] = ACTIONS(2077), + [anon_sym_sh] = ACTIONS(2077), + [anon_sym_zsh] = ACTIONS(2077), + [anon_sym_random] = ACTIONS(2077), + [anon_sym_random_boolean] = ACTIONS(2077), + [anon_sym_random_float] = ACTIONS(2077), + [anon_sym_random_integer] = ACTIONS(2077), + [anon_sym_columns] = ACTIONS(2077), + [anon_sym_rows] = ACTIONS(2077), + [anon_sym_reverse] = ACTIONS(2077), }, [443] = { - [sym_block] = STATE(696), - [sym_statement] = STATE(45), - [sym_expression] = STATE(795), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_logic] = STATE(706), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(611), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(2015), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(325), - [aux_sym_block_repeat1] = STATE(45), - [sym_identifier] = ACTIONS(149), + [sym_math_operator] = STATE(784), + [sym_logic_operator] = STATE(783), + [ts_builtin_sym_end] = ACTIONS(2034), + [sym_identifier] = ACTIONS(2036), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_if] = ACTIONS(311), - [anon_sym_match] = ACTIONS(913), - [anon_sym_EQ_GT] = ACTIONS(915), - [anon_sym_while] = ACTIONS(917), - [anon_sym_for] = ACTIONS(919), - [anon_sym_asyncfor] = ACTIONS(921), - [anon_sym_transform] = ACTIONS(923), - [anon_sym_filter] = ACTIONS(925), - [anon_sym_find] = ACTIONS(927), - [anon_sym_remove] = ACTIONS(929), - [anon_sym_reduce] = ACTIONS(931), - [anon_sym_select] = ACTIONS(933), - [anon_sym_insert] = ACTIONS(935), - [anon_sym_async] = ACTIONS(937), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(939), - [anon_sym_assert] = ACTIONS(941), - [anon_sym_assert_equal] = ACTIONS(941), - [anon_sym_download] = ACTIONS(941), - [anon_sym_help] = ACTIONS(941), - [anon_sym_length] = ACTIONS(941), - [anon_sym_output] = ACTIONS(941), - [anon_sym_output_error] = ACTIONS(941), - [anon_sym_type] = ACTIONS(941), - [anon_sym_append] = ACTIONS(941), - [anon_sym_metadata] = ACTIONS(941), - [anon_sym_move] = ACTIONS(941), - [anon_sym_read] = ACTIONS(941), - [anon_sym_workdir] = ACTIONS(941), - [anon_sym_write] = ACTIONS(941), - [anon_sym_from_json] = ACTIONS(941), - [anon_sym_to_json] = ACTIONS(941), - [anon_sym_to_string] = ACTIONS(941), - [anon_sym_to_float] = ACTIONS(941), - [anon_sym_bash] = ACTIONS(941), - [anon_sym_fish] = ACTIONS(941), - [anon_sym_raw] = ACTIONS(941), - [anon_sym_sh] = ACTIONS(941), - [anon_sym_zsh] = ACTIONS(941), - [anon_sym_random] = ACTIONS(941), - [anon_sym_random_boolean] = ACTIONS(941), - [anon_sym_random_float] = ACTIONS(941), - [anon_sym_random_integer] = ACTIONS(941), - [anon_sym_columns] = ACTIONS(941), - [anon_sym_rows] = ACTIONS(941), - [anon_sym_reverse] = ACTIONS(941), + [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(2168), + [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(261), + [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(2036), + [anon_sym_match] = ACTIONS(2036), + [anon_sym_EQ_GT] = ACTIONS(2034), + [anon_sym_while] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_asyncfor] = ACTIONS(2034), + [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), }, [444] = { - [sym_block] = STATE(1545), - [sym_statement] = STATE(258), - [sym_expression] = STATE(888), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(822), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(787), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(258), - [sym_identifier] = ACTIONS(1846), + [sym_math_operator] = STATE(784), + [sym_logic_operator] = STATE(783), + [ts_builtin_sym_end] = ACTIONS(2063), + [sym_identifier] = ACTIONS(2065), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2164), - [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(1284), - [anon_sym_match] = ACTIONS(1850), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(1852), - [anon_sym_for] = ACTIONS(1854), - [anon_sym_asyncfor] = ACTIONS(1856), - [anon_sym_transform] = ACTIONS(1858), - [anon_sym_filter] = ACTIONS(1860), - [anon_sym_find] = ACTIONS(1862), - [anon_sym_remove] = ACTIONS(1864), - [anon_sym_reduce] = ACTIONS(1866), - [anon_sym_select] = ACTIONS(1868), - [anon_sym_insert] = ACTIONS(43), - [anon_sym_async] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(49), - [anon_sym_assert] = ACTIONS(51), - [anon_sym_assert_equal] = ACTIONS(51), - [anon_sym_download] = ACTIONS(51), - [anon_sym_help] = ACTIONS(51), - [anon_sym_length] = ACTIONS(51), - [anon_sym_output] = ACTIONS(51), - [anon_sym_output_error] = ACTIONS(51), - [anon_sym_type] = ACTIONS(51), - [anon_sym_append] = ACTIONS(51), - [anon_sym_metadata] = ACTIONS(51), - [anon_sym_move] = ACTIONS(51), - [anon_sym_read] = ACTIONS(51), - [anon_sym_workdir] = ACTIONS(51), - [anon_sym_write] = ACTIONS(51), - [anon_sym_from_json] = ACTIONS(51), - [anon_sym_to_json] = ACTIONS(51), - [anon_sym_to_string] = ACTIONS(51), - [anon_sym_to_float] = ACTIONS(51), - [anon_sym_bash] = ACTIONS(51), - [anon_sym_fish] = ACTIONS(51), - [anon_sym_raw] = ACTIONS(51), - [anon_sym_sh] = ACTIONS(51), - [anon_sym_zsh] = ACTIONS(51), - [anon_sym_random] = ACTIONS(51), - [anon_sym_random_boolean] = ACTIONS(51), - [anon_sym_random_float] = ACTIONS(51), - [anon_sym_random_integer] = ACTIONS(51), - [anon_sym_columns] = ACTIONS(51), - [anon_sym_rows] = ACTIONS(51), - [anon_sym_reverse] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(2063), + [anon_sym_RBRACE] = ACTIONS(2063), + [anon_sym_SEMI] = ACTIONS(2063), + [anon_sym_LPAREN] = ACTIONS(2063), + [anon_sym_RPAREN] = ACTIONS(2063), + [anon_sym_COMMA] = ACTIONS(2063), + [sym_integer] = ACTIONS(2065), + [sym_float] = ACTIONS(2063), + [sym_string] = ACTIONS(2063), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_LBRACK] = ACTIONS(2063), + [anon_sym_RBRACK] = ACTIONS(2063), + [anon_sym_COLON] = ACTIONS(2063), + [anon_sym_PLUS] = ACTIONS(2063), + [anon_sym_DASH] = ACTIONS(2065), + [anon_sym_STAR] = ACTIONS(2063), + [anon_sym_SLASH] = ACTIONS(2063), + [anon_sym_PERCENT] = ACTIONS(2063), + [anon_sym_EQ_EQ] = ACTIONS(2063), + [anon_sym_BANG_EQ] = ACTIONS(2063), + [anon_sym_AMP_AMP] = ACTIONS(2063), + [anon_sym_PIPE_PIPE] = ACTIONS(2063), + [anon_sym_GT] = ACTIONS(2065), + [anon_sym_LT] = ACTIONS(2065), + [anon_sym_GT_EQ] = ACTIONS(2063), + [anon_sym_LT_EQ] = ACTIONS(2063), + [anon_sym_if] = ACTIONS(2065), + [anon_sym_match] = ACTIONS(2065), + [anon_sym_EQ_GT] = ACTIONS(2063), + [anon_sym_while] = ACTIONS(2065), + [anon_sym_for] = ACTIONS(2065), + [anon_sym_asyncfor] = ACTIONS(2063), + [anon_sym_transform] = ACTIONS(2065), + [anon_sym_filter] = ACTIONS(2065), + [anon_sym_find] = ACTIONS(2065), + [anon_sym_remove] = ACTIONS(2065), + [anon_sym_reduce] = ACTIONS(2065), + [anon_sym_select] = ACTIONS(2065), + [anon_sym_insert] = ACTIONS(2065), + [anon_sym_async] = ACTIONS(2065), + [anon_sym_PIPE] = ACTIONS(2065), + [anon_sym_table] = ACTIONS(2065), + [anon_sym_assert] = ACTIONS(2065), + [anon_sym_assert_equal] = ACTIONS(2065), + [anon_sym_download] = ACTIONS(2065), + [anon_sym_help] = ACTIONS(2065), + [anon_sym_length] = ACTIONS(2065), + [anon_sym_output] = ACTIONS(2065), + [anon_sym_output_error] = ACTIONS(2065), + [anon_sym_type] = ACTIONS(2065), + [anon_sym_append] = ACTIONS(2065), + [anon_sym_metadata] = ACTIONS(2065), + [anon_sym_move] = ACTIONS(2065), + [anon_sym_read] = ACTIONS(2065), + [anon_sym_workdir] = ACTIONS(2065), + [anon_sym_write] = ACTIONS(2065), + [anon_sym_from_json] = ACTIONS(2065), + [anon_sym_to_json] = ACTIONS(2065), + [anon_sym_to_string] = ACTIONS(2065), + [anon_sym_to_float] = ACTIONS(2065), + [anon_sym_bash] = ACTIONS(2065), + [anon_sym_fish] = ACTIONS(2065), + [anon_sym_raw] = ACTIONS(2065), + [anon_sym_sh] = ACTIONS(2065), + [anon_sym_zsh] = ACTIONS(2065), + [anon_sym_random] = ACTIONS(2065), + [anon_sym_random_boolean] = ACTIONS(2065), + [anon_sym_random_float] = ACTIONS(2065), + [anon_sym_random_integer] = ACTIONS(2065), + [anon_sym_columns] = ACTIONS(2065), + [anon_sym_rows] = ACTIONS(2065), + [anon_sym_reverse] = ACTIONS(2065), }, [445] = { - [sym_block] = STATE(606), - [sym_statement] = STATE(21), - [sym_expression] = STATE(593), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_logic] = STATE(631), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(584), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(1776), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(286), - [aux_sym_block_repeat1] = STATE(21), - [sym_identifier] = ACTIONS(55), + [sym_math_operator] = STATE(784), + [sym_logic_operator] = STATE(783), + [ts_builtin_sym_end] = ACTIONS(2067), + [sym_identifier] = ACTIONS(2069), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(59), - [sym_integer] = ACTIONS(61), - [sym_float] = ACTIONS(63), - [sym_string] = ACTIONS(63), - [anon_sym_true] = ACTIONS(65), - [anon_sym_false] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_if] = ACTIONS(197), - [anon_sym_match] = ACTIONS(199), - [anon_sym_EQ_GT] = ACTIONS(201), - [anon_sym_while] = ACTIONS(203), - [anon_sym_for] = ACTIONS(205), - [anon_sym_asyncfor] = ACTIONS(207), - [anon_sym_transform] = ACTIONS(209), - [anon_sym_filter] = ACTIONS(211), - [anon_sym_find] = ACTIONS(213), - [anon_sym_remove] = ACTIONS(215), - [anon_sym_reduce] = ACTIONS(217), - [anon_sym_select] = ACTIONS(219), - [anon_sym_insert] = ACTIONS(221), - [anon_sym_async] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(225), - [anon_sym_assert] = ACTIONS(227), - [anon_sym_assert_equal] = ACTIONS(227), - [anon_sym_download] = ACTIONS(227), - [anon_sym_help] = ACTIONS(227), - [anon_sym_length] = ACTIONS(227), - [anon_sym_output] = ACTIONS(227), - [anon_sym_output_error] = ACTIONS(227), - [anon_sym_type] = ACTIONS(227), - [anon_sym_append] = ACTIONS(227), - [anon_sym_metadata] = ACTIONS(227), - [anon_sym_move] = ACTIONS(227), - [anon_sym_read] = ACTIONS(227), - [anon_sym_workdir] = ACTIONS(227), - [anon_sym_write] = ACTIONS(227), - [anon_sym_from_json] = ACTIONS(227), - [anon_sym_to_json] = ACTIONS(227), - [anon_sym_to_string] = ACTIONS(227), - [anon_sym_to_float] = ACTIONS(227), - [anon_sym_bash] = ACTIONS(227), - [anon_sym_fish] = ACTIONS(227), - [anon_sym_raw] = ACTIONS(227), - [anon_sym_sh] = ACTIONS(227), - [anon_sym_zsh] = ACTIONS(227), - [anon_sym_random] = ACTIONS(227), - [anon_sym_random_boolean] = ACTIONS(227), - [anon_sym_random_float] = ACTIONS(227), - [anon_sym_random_integer] = ACTIONS(227), - [anon_sym_columns] = ACTIONS(227), - [anon_sym_rows] = ACTIONS(227), - [anon_sym_reverse] = ACTIONS(227), + [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_RBRACE] = ACTIONS(2067), + [anon_sym_SEMI] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_RPAREN] = ACTIONS(2067), + [anon_sym_COMMA] = ACTIONS(2067), + [sym_integer] = ACTIONS(2069), + [sym_float] = ACTIONS(2067), + [sym_string] = ACTIONS(2067), + [anon_sym_true] = ACTIONS(2069), + [anon_sym_false] = ACTIONS(2069), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_RBRACK] = ACTIONS(2067), + [anon_sym_COLON] = ACTIONS(2067), + [anon_sym_PLUS] = ACTIONS(2067), + [anon_sym_DASH] = ACTIONS(2069), + [anon_sym_STAR] = ACTIONS(2067), + [anon_sym_SLASH] = ACTIONS(2067), + [anon_sym_PERCENT] = ACTIONS(2067), + [anon_sym_EQ_EQ] = ACTIONS(2067), + [anon_sym_BANG_EQ] = ACTIONS(2067), + [anon_sym_AMP_AMP] = ACTIONS(2067), + [anon_sym_PIPE_PIPE] = ACTIONS(2067), + [anon_sym_GT] = ACTIONS(2069), + [anon_sym_LT] = ACTIONS(2069), + [anon_sym_GT_EQ] = ACTIONS(2067), + [anon_sym_LT_EQ] = ACTIONS(2067), + [anon_sym_if] = ACTIONS(2069), + [anon_sym_match] = ACTIONS(2069), + [anon_sym_EQ_GT] = ACTIONS(2067), + [anon_sym_while] = ACTIONS(2069), + [anon_sym_for] = ACTIONS(2069), + [anon_sym_asyncfor] = ACTIONS(2067), + [anon_sym_transform] = ACTIONS(2069), + [anon_sym_filter] = ACTIONS(2069), + [anon_sym_find] = ACTIONS(2069), + [anon_sym_remove] = ACTIONS(2069), + [anon_sym_reduce] = ACTIONS(2069), + [anon_sym_select] = ACTIONS(2069), + [anon_sym_insert] = ACTIONS(2069), + [anon_sym_async] = ACTIONS(2069), + [anon_sym_PIPE] = ACTIONS(2069), + [anon_sym_table] = ACTIONS(2069), + [anon_sym_assert] = ACTIONS(2069), + [anon_sym_assert_equal] = ACTIONS(2069), + [anon_sym_download] = ACTIONS(2069), + [anon_sym_help] = ACTIONS(2069), + [anon_sym_length] = ACTIONS(2069), + [anon_sym_output] = ACTIONS(2069), + [anon_sym_output_error] = ACTIONS(2069), + [anon_sym_type] = ACTIONS(2069), + [anon_sym_append] = ACTIONS(2069), + [anon_sym_metadata] = ACTIONS(2069), + [anon_sym_move] = ACTIONS(2069), + [anon_sym_read] = ACTIONS(2069), + [anon_sym_workdir] = ACTIONS(2069), + [anon_sym_write] = ACTIONS(2069), + [anon_sym_from_json] = ACTIONS(2069), + [anon_sym_to_json] = ACTIONS(2069), + [anon_sym_to_string] = ACTIONS(2069), + [anon_sym_to_float] = ACTIONS(2069), + [anon_sym_bash] = ACTIONS(2069), + [anon_sym_fish] = ACTIONS(2069), + [anon_sym_raw] = ACTIONS(2069), + [anon_sym_sh] = ACTIONS(2069), + [anon_sym_zsh] = ACTIONS(2069), + [anon_sym_random] = ACTIONS(2069), + [anon_sym_random_boolean] = ACTIONS(2069), + [anon_sym_random_float] = ACTIONS(2069), + [anon_sym_random_integer] = ACTIONS(2069), + [anon_sym_columns] = ACTIONS(2069), + [anon_sym_rows] = ACTIONS(2069), + [anon_sym_reverse] = ACTIONS(2069), }, [446] = { - [sym_block] = STATE(727), - [sym_statement] = STATE(45), - [sym_expression] = STATE(795), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_logic] = STATE(706), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(611), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(2015), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(325), - [aux_sym_block_repeat1] = STATE(45), - [sym_identifier] = ACTIONS(149), + [sym_expression] = STATE(969), + [sym__expression_kind] = STATE(919), + [sym_value] = STATE(919), + [sym_boolean] = STATE(936), + [sym_list] = STATE(936), + [sym_map] = STATE(936), + [sym_index] = STATE(919), + [sym_math] = STATE(919), + [sym_logic] = STATE(919), + [sym_identifier_list] = STATE(1086), + [sym_table] = STATE(936), + [sym_function] = STATE(936), + [sym_function_call] = STATE(919), + [sym__context_defined_function] = STATE(934), + [sym_built_in_function] = STATE(934), + [sym__built_in_function_name] = STATE(550), + [aux_sym_match_repeat1] = STATE(441), + [ts_builtin_sym_end] = ACTIONS(1337), + [sym_identifier] = ACTIONS(1339), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_if] = ACTIONS(311), - [anon_sym_match] = ACTIONS(913), - [anon_sym_EQ_GT] = ACTIONS(915), - [anon_sym_while] = ACTIONS(917), - [anon_sym_for] = ACTIONS(919), - [anon_sym_asyncfor] = ACTIONS(921), - [anon_sym_transform] = ACTIONS(923), - [anon_sym_filter] = ACTIONS(925), - [anon_sym_find] = ACTIONS(927), - [anon_sym_remove] = ACTIONS(929), - [anon_sym_reduce] = ACTIONS(931), - [anon_sym_select] = ACTIONS(933), - [anon_sym_insert] = ACTIONS(935), - [anon_sym_async] = ACTIONS(937), + [anon_sym_LBRACE] = ACTIONS(1341), + [anon_sym_RBRACE] = ACTIONS(1337), + [anon_sym_SEMI] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(1343), + [sym_integer] = ACTIONS(1345), + [sym_float] = ACTIONS(1347), + [sym_string] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1349), + [anon_sym_false] = ACTIONS(1349), + [anon_sym_LBRACK] = ACTIONS(1351), + [anon_sym_if] = ACTIONS(1353), + [anon_sym_elseif] = ACTIONS(1337), + [anon_sym_else] = ACTIONS(1353), + [anon_sym_match] = ACTIONS(1353), + [anon_sym_EQ_GT] = ACTIONS(1355), + [anon_sym_while] = ACTIONS(1353), + [anon_sym_for] = ACTIONS(1353), + [anon_sym_asyncfor] = ACTIONS(1337), + [anon_sym_transform] = ACTIONS(1353), + [anon_sym_filter] = ACTIONS(1353), + [anon_sym_find] = ACTIONS(1353), + [anon_sym_remove] = ACTIONS(1353), + [anon_sym_reduce] = ACTIONS(1353), + [anon_sym_select] = ACTIONS(1353), + [anon_sym_insert] = ACTIONS(1353), + [anon_sym_async] = ACTIONS(1353), [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(939), - [anon_sym_assert] = ACTIONS(941), - [anon_sym_assert_equal] = ACTIONS(941), - [anon_sym_download] = ACTIONS(941), - [anon_sym_help] = ACTIONS(941), - [anon_sym_length] = ACTIONS(941), - [anon_sym_output] = ACTIONS(941), - [anon_sym_output_error] = ACTIONS(941), - [anon_sym_type] = ACTIONS(941), - [anon_sym_append] = ACTIONS(941), - [anon_sym_metadata] = ACTIONS(941), - [anon_sym_move] = ACTIONS(941), - [anon_sym_read] = ACTIONS(941), - [anon_sym_workdir] = ACTIONS(941), - [anon_sym_write] = ACTIONS(941), - [anon_sym_from_json] = ACTIONS(941), - [anon_sym_to_json] = ACTIONS(941), - [anon_sym_to_string] = ACTIONS(941), - [anon_sym_to_float] = ACTIONS(941), - [anon_sym_bash] = ACTIONS(941), - [anon_sym_fish] = ACTIONS(941), - [anon_sym_raw] = ACTIONS(941), - [anon_sym_sh] = ACTIONS(941), - [anon_sym_zsh] = ACTIONS(941), - [anon_sym_random] = ACTIONS(941), - [anon_sym_random_boolean] = ACTIONS(941), - [anon_sym_random_float] = ACTIONS(941), - [anon_sym_random_integer] = ACTIONS(941), - [anon_sym_columns] = ACTIONS(941), - [anon_sym_rows] = ACTIONS(941), - [anon_sym_reverse] = ACTIONS(941), + [anon_sym_table] = ACTIONS(1357), + [anon_sym_assert] = ACTIONS(1359), + [anon_sym_assert_equal] = ACTIONS(1359), + [anon_sym_download] = ACTIONS(1359), + [anon_sym_help] = ACTIONS(1359), + [anon_sym_length] = ACTIONS(1359), + [anon_sym_output] = ACTIONS(1359), + [anon_sym_output_error] = ACTIONS(1359), + [anon_sym_type] = ACTIONS(1359), + [anon_sym_append] = ACTIONS(1359), + [anon_sym_metadata] = ACTIONS(1359), + [anon_sym_move] = ACTIONS(1359), + [anon_sym_read] = ACTIONS(1359), + [anon_sym_workdir] = ACTIONS(1359), + [anon_sym_write] = ACTIONS(1359), + [anon_sym_from_json] = ACTIONS(1359), + [anon_sym_to_json] = ACTIONS(1359), + [anon_sym_to_string] = ACTIONS(1359), + [anon_sym_to_float] = ACTIONS(1359), + [anon_sym_bash] = ACTIONS(1359), + [anon_sym_fish] = ACTIONS(1359), + [anon_sym_raw] = ACTIONS(1359), + [anon_sym_sh] = ACTIONS(1359), + [anon_sym_zsh] = ACTIONS(1359), + [anon_sym_random] = ACTIONS(1359), + [anon_sym_random_boolean] = ACTIONS(1359), + [anon_sym_random_float] = ACTIONS(1359), + [anon_sym_random_integer] = ACTIONS(1359), + [anon_sym_columns] = ACTIONS(1359), + [anon_sym_rows] = ACTIONS(1359), + [anon_sym_reverse] = ACTIONS(1359), }, [447] = { - [sym_block] = STATE(1543), - [sym_statement] = STATE(60), - [sym_expression] = STATE(756), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(657), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(627), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1752), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(338), - [aux_sym_block_repeat1] = STATE(60), - [sym_identifier] = ACTIONS(875), + [sym_math_operator] = STATE(784), + [sym_logic_operator] = STATE(783), + [ts_builtin_sym_end] = ACTIONS(2079), + [sym_identifier] = ACTIONS(2081), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2164), - [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(245), - [anon_sym_match] = ACTIONS(881), - [anon_sym_EQ_GT] = ACTIONS(883), - [anon_sym_while] = ACTIONS(885), - [anon_sym_for] = ACTIONS(887), - [anon_sym_asyncfor] = ACTIONS(889), - [anon_sym_transform] = ACTIONS(891), - [anon_sym_filter] = ACTIONS(893), - [anon_sym_find] = ACTIONS(895), - [anon_sym_remove] = ACTIONS(897), - [anon_sym_reduce] = ACTIONS(899), - [anon_sym_select] = ACTIONS(901), - [anon_sym_insert] = ACTIONS(903), - [anon_sym_async] = ACTIONS(905), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(907), - [anon_sym_assert] = ACTIONS(909), - [anon_sym_assert_equal] = ACTIONS(909), - [anon_sym_download] = ACTIONS(909), - [anon_sym_help] = ACTIONS(909), - [anon_sym_length] = ACTIONS(909), - [anon_sym_output] = ACTIONS(909), - [anon_sym_output_error] = ACTIONS(909), - [anon_sym_type] = ACTIONS(909), - [anon_sym_append] = ACTIONS(909), - [anon_sym_metadata] = ACTIONS(909), - [anon_sym_move] = ACTIONS(909), - [anon_sym_read] = ACTIONS(909), - [anon_sym_workdir] = ACTIONS(909), - [anon_sym_write] = ACTIONS(909), - [anon_sym_from_json] = ACTIONS(909), - [anon_sym_to_json] = ACTIONS(909), - [anon_sym_to_string] = ACTIONS(909), - [anon_sym_to_float] = ACTIONS(909), - [anon_sym_bash] = ACTIONS(909), - [anon_sym_fish] = ACTIONS(909), - [anon_sym_raw] = ACTIONS(909), - [anon_sym_sh] = ACTIONS(909), - [anon_sym_zsh] = ACTIONS(909), - [anon_sym_random] = ACTIONS(909), - [anon_sym_random_boolean] = ACTIONS(909), - [anon_sym_random_float] = ACTIONS(909), - [anon_sym_random_integer] = ACTIONS(909), - [anon_sym_columns] = ACTIONS(909), - [anon_sym_rows] = ACTIONS(909), - [anon_sym_reverse] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(2079), + [anon_sym_RBRACE] = ACTIONS(2079), + [anon_sym_SEMI] = ACTIONS(2079), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_RPAREN] = ACTIONS(2079), + [anon_sym_COMMA] = ACTIONS(2079), + [sym_integer] = ACTIONS(2081), + [sym_float] = ACTIONS(2079), + [sym_string] = ACTIONS(2079), + [anon_sym_true] = ACTIONS(2081), + [anon_sym_false] = ACTIONS(2081), + [anon_sym_LBRACK] = ACTIONS(2079), + [anon_sym_RBRACK] = ACTIONS(2079), + [anon_sym_COLON] = ACTIONS(261), + [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(2081), + [anon_sym_match] = ACTIONS(2081), + [anon_sym_EQ_GT] = ACTIONS(2079), + [anon_sym_while] = ACTIONS(2081), + [anon_sym_for] = ACTIONS(2081), + [anon_sym_asyncfor] = ACTIONS(2079), + [anon_sym_transform] = ACTIONS(2081), + [anon_sym_filter] = ACTIONS(2081), + [anon_sym_find] = ACTIONS(2081), + [anon_sym_remove] = ACTIONS(2081), + [anon_sym_reduce] = ACTIONS(2081), + [anon_sym_select] = ACTIONS(2081), + [anon_sym_insert] = ACTIONS(2081), + [anon_sym_async] = ACTIONS(2081), + [anon_sym_PIPE] = ACTIONS(2081), + [anon_sym_table] = ACTIONS(2081), + [anon_sym_assert] = ACTIONS(2081), + [anon_sym_assert_equal] = ACTIONS(2081), + [anon_sym_download] = ACTIONS(2081), + [anon_sym_help] = ACTIONS(2081), + [anon_sym_length] = ACTIONS(2081), + [anon_sym_output] = ACTIONS(2081), + [anon_sym_output_error] = ACTIONS(2081), + [anon_sym_type] = ACTIONS(2081), + [anon_sym_append] = ACTIONS(2081), + [anon_sym_metadata] = ACTIONS(2081), + [anon_sym_move] = ACTIONS(2081), + [anon_sym_read] = ACTIONS(2081), + [anon_sym_workdir] = ACTIONS(2081), + [anon_sym_write] = ACTIONS(2081), + [anon_sym_from_json] = ACTIONS(2081), + [anon_sym_to_json] = ACTIONS(2081), + [anon_sym_to_string] = ACTIONS(2081), + [anon_sym_to_float] = ACTIONS(2081), + [anon_sym_bash] = ACTIONS(2081), + [anon_sym_fish] = ACTIONS(2081), + [anon_sym_raw] = ACTIONS(2081), + [anon_sym_sh] = ACTIONS(2081), + [anon_sym_zsh] = ACTIONS(2081), + [anon_sym_random] = ACTIONS(2081), + [anon_sym_random_boolean] = ACTIONS(2081), + [anon_sym_random_float] = ACTIONS(2081), + [anon_sym_random_integer] = ACTIONS(2081), + [anon_sym_columns] = ACTIONS(2081), + [anon_sym_rows] = ACTIONS(2081), + [anon_sym_reverse] = ACTIONS(2081), }, [448] = { - [sym_block] = STATE(803), - [sym_statement] = STATE(33), - [sym_expression] = STATE(732), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(620), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(654), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1841), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(315), - [aux_sym_block_repeat1] = STATE(33), - [sym_identifier] = ACTIONS(623), + [sym_math_operator] = STATE(838), + [sym_logic_operator] = STATE(837), + [ts_builtin_sym_end] = ACTIONS(2041), + [sym_identifier] = ACTIONS(2043), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_if] = ACTIONS(627), - [anon_sym_match] = ACTIONS(629), - [anon_sym_EQ_GT] = ACTIONS(631), - [anon_sym_while] = ACTIONS(633), - [anon_sym_for] = ACTIONS(635), - [anon_sym_asyncfor] = ACTIONS(637), - [anon_sym_transform] = ACTIONS(639), - [anon_sym_filter] = ACTIONS(641), - [anon_sym_find] = ACTIONS(643), - [anon_sym_remove] = ACTIONS(645), - [anon_sym_reduce] = ACTIONS(647), - [anon_sym_select] = ACTIONS(649), - [anon_sym_insert] = ACTIONS(651), - [anon_sym_async] = ACTIONS(653), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(655), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_assert_equal] = ACTIONS(657), - [anon_sym_download] = ACTIONS(657), - [anon_sym_help] = ACTIONS(657), - [anon_sym_length] = ACTIONS(657), - [anon_sym_output] = ACTIONS(657), - [anon_sym_output_error] = ACTIONS(657), - [anon_sym_type] = ACTIONS(657), - [anon_sym_append] = ACTIONS(657), - [anon_sym_metadata] = ACTIONS(657), - [anon_sym_move] = ACTIONS(657), - [anon_sym_read] = ACTIONS(657), - [anon_sym_workdir] = ACTIONS(657), - [anon_sym_write] = ACTIONS(657), - [anon_sym_from_json] = ACTIONS(657), - [anon_sym_to_json] = ACTIONS(657), - [anon_sym_to_string] = ACTIONS(657), - [anon_sym_to_float] = ACTIONS(657), - [anon_sym_bash] = ACTIONS(657), - [anon_sym_fish] = ACTIONS(657), - [anon_sym_raw] = ACTIONS(657), - [anon_sym_sh] = ACTIONS(657), - [anon_sym_zsh] = ACTIONS(657), - [anon_sym_random] = ACTIONS(657), - [anon_sym_random_boolean] = ACTIONS(657), - [anon_sym_random_float] = ACTIONS(657), - [anon_sym_random_integer] = ACTIONS(657), - [anon_sym_columns] = ACTIONS(657), - [anon_sym_rows] = ACTIONS(657), - [anon_sym_reverse] = ACTIONS(657), + [anon_sym_LBRACE] = ACTIONS(2041), + [anon_sym_RBRACE] = ACTIONS(2041), + [anon_sym_SEMI] = ACTIONS(2045), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_RPAREN] = ACTIONS(2041), + [sym_integer] = ACTIONS(2043), + [sym_float] = ACTIONS(2041), + [sym_string] = ACTIONS(2041), + [anon_sym_true] = ACTIONS(2043), + [anon_sym_false] = ACTIONS(2043), + [anon_sym_LBRACK] = ACTIONS(2041), + [anon_sym_COLON] = ACTIONS(225), + [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(2043), + [anon_sym_elseif] = ACTIONS(2041), + [anon_sym_else] = ACTIONS(2043), + [anon_sym_match] = ACTIONS(2043), + [anon_sym_EQ_GT] = ACTIONS(2041), + [anon_sym_while] = ACTIONS(2043), + [anon_sym_for] = ACTIONS(2043), + [anon_sym_asyncfor] = ACTIONS(2041), + [anon_sym_transform] = ACTIONS(2043), + [anon_sym_filter] = ACTIONS(2043), + [anon_sym_find] = ACTIONS(2043), + [anon_sym_remove] = ACTIONS(2043), + [anon_sym_reduce] = ACTIONS(2043), + [anon_sym_select] = ACTIONS(2043), + [anon_sym_insert] = ACTIONS(2043), + [anon_sym_async] = ACTIONS(2043), + [anon_sym_PIPE] = ACTIONS(2043), + [anon_sym_table] = ACTIONS(2043), + [anon_sym_assert] = ACTIONS(2043), + [anon_sym_assert_equal] = ACTIONS(2043), + [anon_sym_download] = ACTIONS(2043), + [anon_sym_help] = ACTIONS(2043), + [anon_sym_length] = ACTIONS(2043), + [anon_sym_output] = ACTIONS(2043), + [anon_sym_output_error] = ACTIONS(2043), + [anon_sym_type] = ACTIONS(2043), + [anon_sym_append] = ACTIONS(2043), + [anon_sym_metadata] = ACTIONS(2043), + [anon_sym_move] = ACTIONS(2043), + [anon_sym_read] = ACTIONS(2043), + [anon_sym_workdir] = ACTIONS(2043), + [anon_sym_write] = ACTIONS(2043), + [anon_sym_from_json] = ACTIONS(2043), + [anon_sym_to_json] = ACTIONS(2043), + [anon_sym_to_string] = ACTIONS(2043), + [anon_sym_to_float] = ACTIONS(2043), + [anon_sym_bash] = ACTIONS(2043), + [anon_sym_fish] = ACTIONS(2043), + [anon_sym_raw] = ACTIONS(2043), + [anon_sym_sh] = ACTIONS(2043), + [anon_sym_zsh] = ACTIONS(2043), + [anon_sym_random] = ACTIONS(2043), + [anon_sym_random_boolean] = ACTIONS(2043), + [anon_sym_random_float] = ACTIONS(2043), + [anon_sym_random_integer] = ACTIONS(2043), + [anon_sym_columns] = ACTIONS(2043), + [anon_sym_rows] = ACTIONS(2043), + [anon_sym_reverse] = ACTIONS(2043), }, [449] = { - [sym_block] = STATE(1653), - [sym_statement] = STATE(371), - [sym_expression] = STATE(934), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(842), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(983), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [aux_sym_block_repeat1] = STATE(371), - [sym_identifier] = ACTIONS(2162), + [sym_math_operator] = STATE(784), + [sym_logic_operator] = STATE(783), + [ts_builtin_sym_end] = ACTIONS(2041), + [sym_identifier] = ACTIONS(2043), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2164), - [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(1570), - [anon_sym_match] = ACTIONS(2166), - [anon_sym_EQ_GT] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(2168), - [anon_sym_for] = ACTIONS(2170), - [anon_sym_asyncfor] = ACTIONS(2172), - [anon_sym_transform] = ACTIONS(2174), - [anon_sym_filter] = ACTIONS(2176), - [anon_sym_find] = ACTIONS(2178), - [anon_sym_remove] = ACTIONS(2180), - [anon_sym_reduce] = ACTIONS(2182), - [anon_sym_select] = ACTIONS(2184), - [anon_sym_insert] = ACTIONS(1224), - [anon_sym_async] = ACTIONS(2186), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(1228), - [anon_sym_assert] = ACTIONS(1230), - [anon_sym_assert_equal] = ACTIONS(1230), - [anon_sym_download] = ACTIONS(1230), - [anon_sym_help] = ACTIONS(1230), - [anon_sym_length] = ACTIONS(1230), - [anon_sym_output] = ACTIONS(1230), - [anon_sym_output_error] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_append] = ACTIONS(1230), - [anon_sym_metadata] = ACTIONS(1230), - [anon_sym_move] = ACTIONS(1230), - [anon_sym_read] = ACTIONS(1230), - [anon_sym_workdir] = ACTIONS(1230), - [anon_sym_write] = ACTIONS(1230), - [anon_sym_from_json] = ACTIONS(1230), - [anon_sym_to_json] = ACTIONS(1230), - [anon_sym_to_string] = ACTIONS(1230), - [anon_sym_to_float] = ACTIONS(1230), - [anon_sym_bash] = ACTIONS(1230), - [anon_sym_fish] = ACTIONS(1230), - [anon_sym_raw] = ACTIONS(1230), - [anon_sym_sh] = ACTIONS(1230), - [anon_sym_zsh] = ACTIONS(1230), - [anon_sym_random] = ACTIONS(1230), - [anon_sym_random_boolean] = ACTIONS(1230), - [anon_sym_random_float] = ACTIONS(1230), - [anon_sym_random_integer] = ACTIONS(1230), - [anon_sym_columns] = ACTIONS(1230), - [anon_sym_rows] = ACTIONS(1230), - [anon_sym_reverse] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(2041), + [anon_sym_RBRACE] = ACTIONS(2041), + [anon_sym_SEMI] = ACTIONS(2181), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_RPAREN] = ACTIONS(2041), + [anon_sym_COMMA] = ACTIONS(2041), + [sym_integer] = ACTIONS(2043), + [sym_float] = ACTIONS(2041), + [sym_string] = ACTIONS(2041), + [anon_sym_true] = ACTIONS(2043), + [anon_sym_false] = ACTIONS(2043), + [anon_sym_LBRACK] = ACTIONS(2041), + [anon_sym_RBRACK] = ACTIONS(2041), + [anon_sym_COLON] = ACTIONS(261), + [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(2043), + [anon_sym_match] = ACTIONS(2043), + [anon_sym_EQ_GT] = ACTIONS(2041), + [anon_sym_while] = ACTIONS(2043), + [anon_sym_for] = ACTIONS(2043), + [anon_sym_asyncfor] = ACTIONS(2041), + [anon_sym_transform] = ACTIONS(2043), + [anon_sym_filter] = ACTIONS(2043), + [anon_sym_find] = ACTIONS(2043), + [anon_sym_remove] = ACTIONS(2043), + [anon_sym_reduce] = ACTIONS(2043), + [anon_sym_select] = ACTIONS(2043), + [anon_sym_insert] = ACTIONS(2043), + [anon_sym_async] = ACTIONS(2043), + [anon_sym_PIPE] = ACTIONS(2043), + [anon_sym_table] = ACTIONS(2043), + [anon_sym_assert] = ACTIONS(2043), + [anon_sym_assert_equal] = ACTIONS(2043), + [anon_sym_download] = ACTIONS(2043), + [anon_sym_help] = ACTIONS(2043), + [anon_sym_length] = ACTIONS(2043), + [anon_sym_output] = ACTIONS(2043), + [anon_sym_output_error] = ACTIONS(2043), + [anon_sym_type] = ACTIONS(2043), + [anon_sym_append] = ACTIONS(2043), + [anon_sym_metadata] = ACTIONS(2043), + [anon_sym_move] = ACTIONS(2043), + [anon_sym_read] = ACTIONS(2043), + [anon_sym_workdir] = ACTIONS(2043), + [anon_sym_write] = ACTIONS(2043), + [anon_sym_from_json] = ACTIONS(2043), + [anon_sym_to_json] = ACTIONS(2043), + [anon_sym_to_string] = ACTIONS(2043), + [anon_sym_to_float] = ACTIONS(2043), + [anon_sym_bash] = ACTIONS(2043), + [anon_sym_fish] = ACTIONS(2043), + [anon_sym_raw] = ACTIONS(2043), + [anon_sym_sh] = ACTIONS(2043), + [anon_sym_zsh] = ACTIONS(2043), + [anon_sym_random] = ACTIONS(2043), + [anon_sym_random_boolean] = ACTIONS(2043), + [anon_sym_random_float] = ACTIONS(2043), + [anon_sym_random_integer] = ACTIONS(2043), + [anon_sym_columns] = ACTIONS(2043), + [anon_sym_rows] = ACTIONS(2043), + [anon_sym_reverse] = ACTIONS(2043), }, [450] = { - [sym_block] = STATE(1543), - [sym_statement] = STATE(107), - [sym_expression] = STATE(824), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(739), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(653), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [aux_sym_block_repeat1] = STATE(107), - [sym_identifier] = ACTIONS(1198), + [sym_math_operator] = STATE(838), + [sym_logic_operator] = STATE(837), + [ts_builtin_sym_end] = ACTIONS(2075), + [sym_identifier] = ACTIONS(2077), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2164), - [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(627), - [anon_sym_match] = ACTIONS(1202), - [anon_sym_EQ_GT] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(1206), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_asyncfor] = ACTIONS(1210), - [anon_sym_transform] = ACTIONS(1212), - [anon_sym_filter] = ACTIONS(1214), - [anon_sym_find] = ACTIONS(1216), - [anon_sym_remove] = ACTIONS(1218), - [anon_sym_reduce] = ACTIONS(1220), - [anon_sym_select] = ACTIONS(1222), - [anon_sym_insert] = ACTIONS(1224), - [anon_sym_async] = ACTIONS(1226), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(1228), - [anon_sym_assert] = ACTIONS(1230), - [anon_sym_assert_equal] = ACTIONS(1230), - [anon_sym_download] = ACTIONS(1230), - [anon_sym_help] = ACTIONS(1230), - [anon_sym_length] = ACTIONS(1230), - [anon_sym_output] = ACTIONS(1230), - [anon_sym_output_error] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_append] = ACTIONS(1230), - [anon_sym_metadata] = ACTIONS(1230), - [anon_sym_move] = ACTIONS(1230), - [anon_sym_read] = ACTIONS(1230), - [anon_sym_workdir] = ACTIONS(1230), - [anon_sym_write] = ACTIONS(1230), - [anon_sym_from_json] = ACTIONS(1230), - [anon_sym_to_json] = ACTIONS(1230), - [anon_sym_to_string] = ACTIONS(1230), - [anon_sym_to_float] = ACTIONS(1230), - [anon_sym_bash] = ACTIONS(1230), - [anon_sym_fish] = ACTIONS(1230), - [anon_sym_raw] = ACTIONS(1230), - [anon_sym_sh] = ACTIONS(1230), - [anon_sym_zsh] = ACTIONS(1230), - [anon_sym_random] = ACTIONS(1230), - [anon_sym_random_boolean] = ACTIONS(1230), - [anon_sym_random_float] = ACTIONS(1230), - [anon_sym_random_integer] = ACTIONS(1230), - [anon_sym_columns] = ACTIONS(1230), - [anon_sym_rows] = ACTIONS(1230), - [anon_sym_reverse] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(2075), + [anon_sym_RBRACE] = ACTIONS(2075), + [anon_sym_SEMI] = ACTIONS(2075), + [anon_sym_LPAREN] = ACTIONS(2075), + [anon_sym_RPAREN] = ACTIONS(2075), + [sym_integer] = ACTIONS(2077), + [sym_float] = ACTIONS(2075), + [sym_string] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_LBRACK] = ACTIONS(2075), + [anon_sym_COLON] = ACTIONS(225), + [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(2077), + [anon_sym_elseif] = ACTIONS(2075), + [anon_sym_else] = ACTIONS(2077), + [anon_sym_match] = ACTIONS(2077), + [anon_sym_EQ_GT] = ACTIONS(2075), + [anon_sym_while] = ACTIONS(2077), + [anon_sym_for] = ACTIONS(2077), + [anon_sym_asyncfor] = ACTIONS(2075), + [anon_sym_transform] = ACTIONS(2077), + [anon_sym_filter] = ACTIONS(2077), + [anon_sym_find] = ACTIONS(2077), + [anon_sym_remove] = ACTIONS(2077), + [anon_sym_reduce] = ACTIONS(2077), + [anon_sym_select] = ACTIONS(2077), + [anon_sym_insert] = ACTIONS(2077), + [anon_sym_async] = ACTIONS(2077), + [anon_sym_PIPE] = ACTIONS(2077), + [anon_sym_table] = ACTIONS(2077), + [anon_sym_assert] = ACTIONS(2077), + [anon_sym_assert_equal] = ACTIONS(2077), + [anon_sym_download] = ACTIONS(2077), + [anon_sym_help] = ACTIONS(2077), + [anon_sym_length] = ACTIONS(2077), + [anon_sym_output] = ACTIONS(2077), + [anon_sym_output_error] = ACTIONS(2077), + [anon_sym_type] = ACTIONS(2077), + [anon_sym_append] = ACTIONS(2077), + [anon_sym_metadata] = ACTIONS(2077), + [anon_sym_move] = ACTIONS(2077), + [anon_sym_read] = ACTIONS(2077), + [anon_sym_workdir] = ACTIONS(2077), + [anon_sym_write] = ACTIONS(2077), + [anon_sym_from_json] = ACTIONS(2077), + [anon_sym_to_json] = ACTIONS(2077), + [anon_sym_to_string] = ACTIONS(2077), + [anon_sym_to_float] = ACTIONS(2077), + [anon_sym_bash] = ACTIONS(2077), + [anon_sym_fish] = ACTIONS(2077), + [anon_sym_raw] = ACTIONS(2077), + [anon_sym_sh] = ACTIONS(2077), + [anon_sym_zsh] = ACTIONS(2077), + [anon_sym_random] = ACTIONS(2077), + [anon_sym_random_boolean] = ACTIONS(2077), + [anon_sym_random_float] = ACTIONS(2077), + [anon_sym_random_integer] = ACTIONS(2077), + [anon_sym_columns] = ACTIONS(2077), + [anon_sym_rows] = ACTIONS(2077), + [anon_sym_reverse] = ACTIONS(2077), }, [451] = { - [sym_block] = STATE(861), - [sym_statement] = STATE(61), - [sym_expression] = STATE(888), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(822), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(787), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(61), - [sym_identifier] = ACTIONS(1846), + [sym_math_operator] = STATE(838), + [sym_logic_operator] = STATE(837), + [ts_builtin_sym_end] = ACTIONS(2079), + [sym_identifier] = ACTIONS(2081), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(877), - [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(1284), - [anon_sym_match] = ACTIONS(1850), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(1852), - [anon_sym_for] = ACTIONS(1854), - [anon_sym_asyncfor] = ACTIONS(1856), - [anon_sym_transform] = ACTIONS(1858), - [anon_sym_filter] = ACTIONS(1860), - [anon_sym_find] = ACTIONS(1862), - [anon_sym_remove] = ACTIONS(1864), - [anon_sym_reduce] = ACTIONS(1866), - [anon_sym_select] = ACTIONS(1868), - [anon_sym_insert] = ACTIONS(43), - [anon_sym_async] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(49), - [anon_sym_assert] = ACTIONS(51), - [anon_sym_assert_equal] = ACTIONS(51), - [anon_sym_download] = ACTIONS(51), - [anon_sym_help] = ACTIONS(51), - [anon_sym_length] = ACTIONS(51), - [anon_sym_output] = ACTIONS(51), - [anon_sym_output_error] = ACTIONS(51), - [anon_sym_type] = ACTIONS(51), - [anon_sym_append] = ACTIONS(51), - [anon_sym_metadata] = ACTIONS(51), - [anon_sym_move] = ACTIONS(51), - [anon_sym_read] = ACTIONS(51), - [anon_sym_workdir] = ACTIONS(51), - [anon_sym_write] = ACTIONS(51), - [anon_sym_from_json] = ACTIONS(51), - [anon_sym_to_json] = ACTIONS(51), - [anon_sym_to_string] = ACTIONS(51), - [anon_sym_to_float] = ACTIONS(51), - [anon_sym_bash] = ACTIONS(51), - [anon_sym_fish] = ACTIONS(51), - [anon_sym_raw] = ACTIONS(51), - [anon_sym_sh] = ACTIONS(51), - [anon_sym_zsh] = ACTIONS(51), - [anon_sym_random] = ACTIONS(51), - [anon_sym_random_boolean] = ACTIONS(51), - [anon_sym_random_float] = ACTIONS(51), - [anon_sym_random_integer] = ACTIONS(51), - [anon_sym_columns] = ACTIONS(51), - [anon_sym_rows] = ACTIONS(51), - [anon_sym_reverse] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(2079), + [anon_sym_RBRACE] = ACTIONS(2079), + [anon_sym_SEMI] = ACTIONS(2079), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_RPAREN] = ACTIONS(2079), + [sym_integer] = ACTIONS(2081), + [sym_float] = ACTIONS(2079), + [sym_string] = ACTIONS(2079), + [anon_sym_true] = ACTIONS(2081), + [anon_sym_false] = ACTIONS(2081), + [anon_sym_LBRACK] = ACTIONS(2079), + [anon_sym_COLON] = ACTIONS(225), + [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(2081), + [anon_sym_elseif] = ACTIONS(2079), + [anon_sym_else] = ACTIONS(2081), + [anon_sym_match] = ACTIONS(2081), + [anon_sym_EQ_GT] = ACTIONS(2079), + [anon_sym_while] = ACTIONS(2081), + [anon_sym_for] = ACTIONS(2081), + [anon_sym_asyncfor] = ACTIONS(2079), + [anon_sym_transform] = ACTIONS(2081), + [anon_sym_filter] = ACTIONS(2081), + [anon_sym_find] = ACTIONS(2081), + [anon_sym_remove] = ACTIONS(2081), + [anon_sym_reduce] = ACTIONS(2081), + [anon_sym_select] = ACTIONS(2081), + [anon_sym_insert] = ACTIONS(2081), + [anon_sym_async] = ACTIONS(2081), + [anon_sym_PIPE] = ACTIONS(2081), + [anon_sym_table] = ACTIONS(2081), + [anon_sym_assert] = ACTIONS(2081), + [anon_sym_assert_equal] = ACTIONS(2081), + [anon_sym_download] = ACTIONS(2081), + [anon_sym_help] = ACTIONS(2081), + [anon_sym_length] = ACTIONS(2081), + [anon_sym_output] = ACTIONS(2081), + [anon_sym_output_error] = ACTIONS(2081), + [anon_sym_type] = ACTIONS(2081), + [anon_sym_append] = ACTIONS(2081), + [anon_sym_metadata] = ACTIONS(2081), + [anon_sym_move] = ACTIONS(2081), + [anon_sym_read] = ACTIONS(2081), + [anon_sym_workdir] = ACTIONS(2081), + [anon_sym_write] = ACTIONS(2081), + [anon_sym_from_json] = ACTIONS(2081), + [anon_sym_to_json] = ACTIONS(2081), + [anon_sym_to_string] = ACTIONS(2081), + [anon_sym_to_float] = ACTIONS(2081), + [anon_sym_bash] = ACTIONS(2081), + [anon_sym_fish] = ACTIONS(2081), + [anon_sym_raw] = ACTIONS(2081), + [anon_sym_sh] = ACTIONS(2081), + [anon_sym_zsh] = ACTIONS(2081), + [anon_sym_random] = ACTIONS(2081), + [anon_sym_random_boolean] = ACTIONS(2081), + [anon_sym_random_float] = ACTIONS(2081), + [anon_sym_random_integer] = ACTIONS(2081), + [anon_sym_columns] = ACTIONS(2081), + [anon_sym_rows] = ACTIONS(2081), + [anon_sym_reverse] = ACTIONS(2081), }, [452] = { - [sym_block] = STATE(1011), - [sym_statement] = STATE(58), - [sym_expression] = STATE(824), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(739), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(653), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [aux_sym_block_repeat1] = STATE(58), - [sym_identifier] = ACTIONS(1198), + [sym_math_operator] = STATE(838), + [sym_logic_operator] = STATE(837), + [ts_builtin_sym_end] = ACTIONS(2063), + [sym_identifier] = ACTIONS(2065), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3083), - [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(627), - [anon_sym_match] = ACTIONS(1202), - [anon_sym_EQ_GT] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(1206), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_asyncfor] = ACTIONS(1210), - [anon_sym_transform] = ACTIONS(1212), - [anon_sym_filter] = ACTIONS(1214), - [anon_sym_find] = ACTIONS(1216), - [anon_sym_remove] = ACTIONS(1218), - [anon_sym_reduce] = ACTIONS(1220), - [anon_sym_select] = ACTIONS(1222), - [anon_sym_insert] = ACTIONS(1224), - [anon_sym_async] = ACTIONS(1226), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(1228), - [anon_sym_assert] = ACTIONS(1230), - [anon_sym_assert_equal] = ACTIONS(1230), - [anon_sym_download] = ACTIONS(1230), - [anon_sym_help] = ACTIONS(1230), - [anon_sym_length] = ACTIONS(1230), - [anon_sym_output] = ACTIONS(1230), - [anon_sym_output_error] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_append] = ACTIONS(1230), - [anon_sym_metadata] = ACTIONS(1230), - [anon_sym_move] = ACTIONS(1230), - [anon_sym_read] = ACTIONS(1230), - [anon_sym_workdir] = ACTIONS(1230), - [anon_sym_write] = ACTIONS(1230), - [anon_sym_from_json] = ACTIONS(1230), - [anon_sym_to_json] = ACTIONS(1230), - [anon_sym_to_string] = ACTIONS(1230), - [anon_sym_to_float] = ACTIONS(1230), - [anon_sym_bash] = ACTIONS(1230), - [anon_sym_fish] = ACTIONS(1230), - [anon_sym_raw] = ACTIONS(1230), - [anon_sym_sh] = ACTIONS(1230), - [anon_sym_zsh] = ACTIONS(1230), - [anon_sym_random] = ACTIONS(1230), - [anon_sym_random_boolean] = ACTIONS(1230), - [anon_sym_random_float] = ACTIONS(1230), - [anon_sym_random_integer] = ACTIONS(1230), - [anon_sym_columns] = ACTIONS(1230), - [anon_sym_rows] = ACTIONS(1230), - [anon_sym_reverse] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(2063), + [anon_sym_RBRACE] = ACTIONS(2063), + [anon_sym_SEMI] = ACTIONS(2063), + [anon_sym_LPAREN] = ACTIONS(2063), + [anon_sym_RPAREN] = ACTIONS(2063), + [sym_integer] = ACTIONS(2065), + [sym_float] = ACTIONS(2063), + [sym_string] = ACTIONS(2063), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_LBRACK] = ACTIONS(2063), + [anon_sym_COLON] = ACTIONS(2063), + [anon_sym_PLUS] = ACTIONS(2063), + [anon_sym_DASH] = ACTIONS(2065), + [anon_sym_STAR] = ACTIONS(2063), + [anon_sym_SLASH] = ACTIONS(2063), + [anon_sym_PERCENT] = ACTIONS(2063), + [anon_sym_EQ_EQ] = ACTIONS(2063), + [anon_sym_BANG_EQ] = ACTIONS(2063), + [anon_sym_AMP_AMP] = ACTIONS(2063), + [anon_sym_PIPE_PIPE] = ACTIONS(2063), + [anon_sym_GT] = ACTIONS(2065), + [anon_sym_LT] = ACTIONS(2065), + [anon_sym_GT_EQ] = ACTIONS(2063), + [anon_sym_LT_EQ] = ACTIONS(2063), + [anon_sym_if] = ACTIONS(2065), + [anon_sym_elseif] = ACTIONS(2063), + [anon_sym_else] = ACTIONS(2065), + [anon_sym_match] = ACTIONS(2065), + [anon_sym_EQ_GT] = ACTIONS(2063), + [anon_sym_while] = ACTIONS(2065), + [anon_sym_for] = ACTIONS(2065), + [anon_sym_asyncfor] = ACTIONS(2063), + [anon_sym_transform] = ACTIONS(2065), + [anon_sym_filter] = ACTIONS(2065), + [anon_sym_find] = ACTIONS(2065), + [anon_sym_remove] = ACTIONS(2065), + [anon_sym_reduce] = ACTIONS(2065), + [anon_sym_select] = ACTIONS(2065), + [anon_sym_insert] = ACTIONS(2065), + [anon_sym_async] = ACTIONS(2065), + [anon_sym_PIPE] = ACTIONS(2065), + [anon_sym_table] = ACTIONS(2065), + [anon_sym_assert] = ACTIONS(2065), + [anon_sym_assert_equal] = ACTIONS(2065), + [anon_sym_download] = ACTIONS(2065), + [anon_sym_help] = ACTIONS(2065), + [anon_sym_length] = ACTIONS(2065), + [anon_sym_output] = ACTIONS(2065), + [anon_sym_output_error] = ACTIONS(2065), + [anon_sym_type] = ACTIONS(2065), + [anon_sym_append] = ACTIONS(2065), + [anon_sym_metadata] = ACTIONS(2065), + [anon_sym_move] = ACTIONS(2065), + [anon_sym_read] = ACTIONS(2065), + [anon_sym_workdir] = ACTIONS(2065), + [anon_sym_write] = ACTIONS(2065), + [anon_sym_from_json] = ACTIONS(2065), + [anon_sym_to_json] = ACTIONS(2065), + [anon_sym_to_string] = ACTIONS(2065), + [anon_sym_to_float] = ACTIONS(2065), + [anon_sym_bash] = ACTIONS(2065), + [anon_sym_fish] = ACTIONS(2065), + [anon_sym_raw] = ACTIONS(2065), + [anon_sym_sh] = ACTIONS(2065), + [anon_sym_zsh] = ACTIONS(2065), + [anon_sym_random] = ACTIONS(2065), + [anon_sym_random_boolean] = ACTIONS(2065), + [anon_sym_random_float] = ACTIONS(2065), + [anon_sym_random_integer] = ACTIONS(2065), + [anon_sym_columns] = ACTIONS(2065), + [anon_sym_rows] = ACTIONS(2065), + [anon_sym_reverse] = ACTIONS(2065), }, [453] = { - [sym_block] = STATE(987), - [sym_statement] = STATE(42), - [sym_expression] = STATE(601), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_logic] = STATE(706), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(557), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1910), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(284), - [aux_sym_block_repeat1] = STATE(42), - [sym_identifier] = ACTIONS(149), + [sym_expression] = STATE(555), + [sym__expression_kind] = STATE(585), + [aux_sym__expression_list] = STATE(375), + [sym_value] = STATE(585), + [sym_boolean] = STATE(586), + [sym_list] = STATE(586), + [sym_map] = STATE(586), + [sym_index] = STATE(585), + [sym_math] = STATE(585), + [sym_logic] = STATE(585), + [sym_identifier_list] = STATE(1105), + [sym_table] = STATE(586), + [sym_function] = STATE(586), + [sym_function_call] = STATE(585), + [sym__context_defined_function] = STATE(587), + [sym_built_in_function] = STATE(587), + [sym__built_in_function_name] = STATE(372), + [sym_identifier] = ACTIONS(1315), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3085), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_if] = ACTIONS(81), - [anon_sym_match] = ACTIONS(165), - [anon_sym_EQ_GT] = ACTIONS(167), - [anon_sym_while] = ACTIONS(169), - [anon_sym_for] = ACTIONS(171), - [anon_sym_asyncfor] = ACTIONS(173), - [anon_sym_transform] = ACTIONS(175), - [anon_sym_filter] = ACTIONS(177), - [anon_sym_find] = ACTIONS(179), - [anon_sym_remove] = ACTIONS(181), - [anon_sym_reduce] = ACTIONS(183), - [anon_sym_select] = ACTIONS(185), - [anon_sym_insert] = ACTIONS(187), - [anon_sym_async] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(191), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_assert_equal] = ACTIONS(193), - [anon_sym_download] = ACTIONS(193), - [anon_sym_help] = ACTIONS(193), - [anon_sym_length] = ACTIONS(193), - [anon_sym_output] = ACTIONS(193), - [anon_sym_output_error] = ACTIONS(193), - [anon_sym_type] = ACTIONS(193), - [anon_sym_append] = ACTIONS(193), - [anon_sym_metadata] = ACTIONS(193), - [anon_sym_move] = ACTIONS(193), - [anon_sym_read] = ACTIONS(193), - [anon_sym_workdir] = ACTIONS(193), - [anon_sym_write] = ACTIONS(193), - [anon_sym_from_json] = ACTIONS(193), - [anon_sym_to_json] = ACTIONS(193), - [anon_sym_to_string] = ACTIONS(193), - [anon_sym_to_float] = ACTIONS(193), - [anon_sym_bash] = ACTIONS(193), - [anon_sym_fish] = ACTIONS(193), - [anon_sym_raw] = ACTIONS(193), - [anon_sym_sh] = ACTIONS(193), - [anon_sym_zsh] = ACTIONS(193), - [anon_sym_random] = ACTIONS(193), - [anon_sym_random_boolean] = ACTIONS(193), - [anon_sym_random_float] = ACTIONS(193), - [anon_sym_random_integer] = ACTIONS(193), - [anon_sym_columns] = ACTIONS(193), - [anon_sym_rows] = ACTIONS(193), - [anon_sym_reverse] = ACTIONS(193), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_RBRACE] = ACTIONS(1313), + [anon_sym_SEMI] = ACTIONS(1313), + [anon_sym_LPAREN] = ACTIONS(2049), + [anon_sym_COMMA] = ACTIONS(1313), + [sym_integer] = ACTIONS(2051), + [sym_float] = ACTIONS(2053), + [sym_string] = ACTIONS(2053), + [anon_sym_true] = ACTIONS(2055), + [anon_sym_false] = ACTIONS(2055), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_COLON] = ACTIONS(1313), + [anon_sym_DOT_DOT] = ACTIONS(1313), + [anon_sym_PLUS] = ACTIONS(1313), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_PERCENT] = ACTIONS(1313), + [anon_sym_EQ_EQ] = ACTIONS(1313), + [anon_sym_BANG_EQ] = ACTIONS(1313), + [anon_sym_AMP_AMP] = ACTIONS(1313), + [anon_sym_PIPE_PIPE] = ACTIONS(1313), + [anon_sym_GT] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(1315), + [anon_sym_GT_EQ] = ACTIONS(1313), + [anon_sym_LT_EQ] = ACTIONS(1313), + [anon_sym_EQ_GT] = ACTIONS(2091), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2093), + [anon_sym_assert] = ACTIONS(2095), + [anon_sym_assert_equal] = ACTIONS(2095), + [anon_sym_download] = ACTIONS(2095), + [anon_sym_help] = ACTIONS(2095), + [anon_sym_length] = ACTIONS(2095), + [anon_sym_output] = ACTIONS(2095), + [anon_sym_output_error] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2095), + [anon_sym_append] = ACTIONS(2095), + [anon_sym_metadata] = ACTIONS(2095), + [anon_sym_move] = ACTIONS(2095), + [anon_sym_read] = ACTIONS(2095), + [anon_sym_workdir] = ACTIONS(2095), + [anon_sym_write] = ACTIONS(2095), + [anon_sym_from_json] = ACTIONS(2095), + [anon_sym_to_json] = ACTIONS(2095), + [anon_sym_to_string] = ACTIONS(2095), + [anon_sym_to_float] = ACTIONS(2095), + [anon_sym_bash] = ACTIONS(2095), + [anon_sym_fish] = ACTIONS(2095), + [anon_sym_raw] = ACTIONS(2095), + [anon_sym_sh] = ACTIONS(2095), + [anon_sym_zsh] = ACTIONS(2095), + [anon_sym_random] = ACTIONS(2095), + [anon_sym_random_boolean] = ACTIONS(2095), + [anon_sym_random_float] = ACTIONS(2095), + [anon_sym_random_integer] = ACTIONS(2095), + [anon_sym_columns] = ACTIONS(2095), + [anon_sym_rows] = ACTIONS(2095), + [anon_sym_reverse] = ACTIONS(2095), }, [454] = { - [sym_statement] = STATE(376), - [sym_expression] = STATE(925), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(867), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(980), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(376), - [sym_identifier] = ACTIONS(5), + [sym_math_operator] = STATE(838), + [sym_logic_operator] = STATE(837), + [ts_builtin_sym_end] = ACTIONS(2071), + [sym_identifier] = ACTIONS(2073), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(3093), - [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_asyncfor] = 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_async] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(49), - [anon_sym_assert] = ACTIONS(51), - [anon_sym_assert_equal] = ACTIONS(51), - [anon_sym_download] = ACTIONS(51), - [anon_sym_help] = ACTIONS(51), - [anon_sym_length] = ACTIONS(51), - [anon_sym_output] = ACTIONS(51), - [anon_sym_output_error] = ACTIONS(51), - [anon_sym_type] = ACTIONS(51), - [anon_sym_append] = ACTIONS(51), - [anon_sym_metadata] = ACTIONS(51), - [anon_sym_move] = ACTIONS(51), - [anon_sym_read] = ACTIONS(51), - [anon_sym_workdir] = ACTIONS(51), - [anon_sym_write] = ACTIONS(51), - [anon_sym_from_json] = ACTIONS(51), - [anon_sym_to_json] = ACTIONS(51), - [anon_sym_to_string] = ACTIONS(51), - [anon_sym_to_float] = ACTIONS(51), - [anon_sym_bash] = ACTIONS(51), - [anon_sym_fish] = ACTIONS(51), - [anon_sym_raw] = ACTIONS(51), - [anon_sym_sh] = ACTIONS(51), - [anon_sym_zsh] = ACTIONS(51), - [anon_sym_random] = ACTIONS(51), - [anon_sym_random_boolean] = ACTIONS(51), - [anon_sym_random_float] = ACTIONS(51), - [anon_sym_random_integer] = ACTIONS(51), - [anon_sym_columns] = ACTIONS(51), - [anon_sym_rows] = ACTIONS(51), - [anon_sym_reverse] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(2071), + [anon_sym_RBRACE] = ACTIONS(2071), + [anon_sym_SEMI] = ACTIONS(2071), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_RPAREN] = ACTIONS(2071), + [sym_integer] = ACTIONS(2073), + [sym_float] = ACTIONS(2071), + [sym_string] = ACTIONS(2071), + [anon_sym_true] = ACTIONS(2073), + [anon_sym_false] = ACTIONS(2073), + [anon_sym_LBRACK] = ACTIONS(2071), + [anon_sym_COLON] = ACTIONS(225), + [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(2073), + [anon_sym_elseif] = ACTIONS(2071), + [anon_sym_else] = ACTIONS(2073), + [anon_sym_match] = ACTIONS(2073), + [anon_sym_EQ_GT] = ACTIONS(2071), + [anon_sym_while] = ACTIONS(2073), + [anon_sym_for] = ACTIONS(2073), + [anon_sym_asyncfor] = ACTIONS(2071), + [anon_sym_transform] = ACTIONS(2073), + [anon_sym_filter] = ACTIONS(2073), + [anon_sym_find] = ACTIONS(2073), + [anon_sym_remove] = ACTIONS(2073), + [anon_sym_reduce] = ACTIONS(2073), + [anon_sym_select] = ACTIONS(2073), + [anon_sym_insert] = ACTIONS(2073), + [anon_sym_async] = ACTIONS(2073), + [anon_sym_PIPE] = ACTIONS(2073), + [anon_sym_table] = ACTIONS(2073), + [anon_sym_assert] = ACTIONS(2073), + [anon_sym_assert_equal] = ACTIONS(2073), + [anon_sym_download] = ACTIONS(2073), + [anon_sym_help] = ACTIONS(2073), + [anon_sym_length] = ACTIONS(2073), + [anon_sym_output] = ACTIONS(2073), + [anon_sym_output_error] = ACTIONS(2073), + [anon_sym_type] = ACTIONS(2073), + [anon_sym_append] = ACTIONS(2073), + [anon_sym_metadata] = ACTIONS(2073), + [anon_sym_move] = ACTIONS(2073), + [anon_sym_read] = ACTIONS(2073), + [anon_sym_workdir] = ACTIONS(2073), + [anon_sym_write] = ACTIONS(2073), + [anon_sym_from_json] = ACTIONS(2073), + [anon_sym_to_json] = ACTIONS(2073), + [anon_sym_to_string] = ACTIONS(2073), + [anon_sym_to_float] = ACTIONS(2073), + [anon_sym_bash] = ACTIONS(2073), + [anon_sym_fish] = ACTIONS(2073), + [anon_sym_raw] = ACTIONS(2073), + [anon_sym_sh] = ACTIONS(2073), + [anon_sym_zsh] = ACTIONS(2073), + [anon_sym_random] = ACTIONS(2073), + [anon_sym_random_boolean] = ACTIONS(2073), + [anon_sym_random_float] = ACTIONS(2073), + [anon_sym_random_integer] = ACTIONS(2073), + [anon_sym_columns] = ACTIONS(2073), + [anon_sym_rows] = ACTIONS(2073), + [anon_sym_reverse] = ACTIONS(2073), }, [455] = { - [sym_block] = STATE(993), - [sym_statement] = STATE(42), - [sym_expression] = STATE(601), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_logic] = STATE(706), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(557), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1910), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(284), - [aux_sym_block_repeat1] = STATE(42), - [sym_identifier] = ACTIONS(149), + [sym_expression] = STATE(990), + [sym__expression_kind] = STATE(919), + [sym_value] = STATE(919), + [sym_boolean] = STATE(936), + [sym_list] = STATE(936), + [sym_map] = STATE(936), + [sym_index] = STATE(919), + [sym_math] = STATE(919), + [sym_logic] = STATE(919), + [sym_identifier_list] = STATE(1086), + [sym_table] = STATE(936), + [sym_function] = STATE(936), + [sym_function_call] = STATE(919), + [sym__context_defined_function] = STATE(934), + [sym_built_in_function] = STATE(934), + [sym__built_in_function_name] = STATE(550), + [aux_sym_match_repeat1] = STATE(455), + [sym_identifier] = ACTIONS(1400), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3085), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_if] = ACTIONS(81), - [anon_sym_match] = ACTIONS(165), - [anon_sym_EQ_GT] = ACTIONS(167), - [anon_sym_while] = ACTIONS(169), - [anon_sym_for] = ACTIONS(171), - [anon_sym_asyncfor] = ACTIONS(173), - [anon_sym_transform] = ACTIONS(175), - [anon_sym_filter] = ACTIONS(177), - [anon_sym_find] = ACTIONS(179), - [anon_sym_remove] = ACTIONS(181), - [anon_sym_reduce] = ACTIONS(183), - [anon_sym_select] = ACTIONS(185), - [anon_sym_insert] = ACTIONS(187), - [anon_sym_async] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(191), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_assert_equal] = ACTIONS(193), - [anon_sym_download] = ACTIONS(193), - [anon_sym_help] = ACTIONS(193), - [anon_sym_length] = ACTIONS(193), - [anon_sym_output] = ACTIONS(193), - [anon_sym_output_error] = ACTIONS(193), - [anon_sym_type] = ACTIONS(193), - [anon_sym_append] = ACTIONS(193), - [anon_sym_metadata] = ACTIONS(193), - [anon_sym_move] = ACTIONS(193), - [anon_sym_read] = ACTIONS(193), - [anon_sym_workdir] = ACTIONS(193), - [anon_sym_write] = ACTIONS(193), - [anon_sym_from_json] = ACTIONS(193), - [anon_sym_to_json] = ACTIONS(193), - [anon_sym_to_string] = ACTIONS(193), - [anon_sym_to_float] = ACTIONS(193), - [anon_sym_bash] = ACTIONS(193), - [anon_sym_fish] = ACTIONS(193), - [anon_sym_raw] = ACTIONS(193), - [anon_sym_sh] = ACTIONS(193), - [anon_sym_zsh] = ACTIONS(193), - [anon_sym_random] = ACTIONS(193), - [anon_sym_random_boolean] = ACTIONS(193), - [anon_sym_random_float] = ACTIONS(193), - [anon_sym_random_integer] = ACTIONS(193), - [anon_sym_columns] = ACTIONS(193), - [anon_sym_rows] = ACTIONS(193), - [anon_sym_reverse] = ACTIONS(193), + [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_RBRACE] = ACTIONS(1398), + [anon_sym_SEMI] = ACTIONS(1398), + [anon_sym_LPAREN] = ACTIONS(1406), + [anon_sym_COMMA] = ACTIONS(1398), + [sym_integer] = ACTIONS(1409), + [sym_float] = ACTIONS(1412), + [sym_string] = ACTIONS(1412), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_LBRACK] = ACTIONS(1418), + [anon_sym_if] = ACTIONS(1421), + [anon_sym_elseif] = ACTIONS(1398), + [anon_sym_else] = ACTIONS(1421), + [anon_sym_match] = ACTIONS(1421), + [anon_sym_EQ_GT] = ACTIONS(1423), + [anon_sym_while] = ACTIONS(1421), + [anon_sym_for] = ACTIONS(1421), + [anon_sym_asyncfor] = ACTIONS(1398), + [anon_sym_transform] = ACTIONS(1421), + [anon_sym_filter] = ACTIONS(1421), + [anon_sym_find] = ACTIONS(1421), + [anon_sym_remove] = ACTIONS(1421), + [anon_sym_reduce] = ACTIONS(1421), + [anon_sym_select] = ACTIONS(1421), + [anon_sym_insert] = ACTIONS(1421), + [anon_sym_async] = ACTIONS(1421), + [anon_sym_PIPE] = ACTIONS(2275), + [anon_sym_table] = ACTIONS(1429), + [anon_sym_assert] = ACTIONS(1432), + [anon_sym_assert_equal] = ACTIONS(1432), + [anon_sym_download] = ACTIONS(1432), + [anon_sym_help] = ACTIONS(1432), + [anon_sym_length] = ACTIONS(1432), + [anon_sym_output] = ACTIONS(1432), + [anon_sym_output_error] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_append] = ACTIONS(1432), + [anon_sym_metadata] = ACTIONS(1432), + [anon_sym_move] = ACTIONS(1432), + [anon_sym_read] = ACTIONS(1432), + [anon_sym_workdir] = ACTIONS(1432), + [anon_sym_write] = ACTIONS(1432), + [anon_sym_from_json] = ACTIONS(1432), + [anon_sym_to_json] = ACTIONS(1432), + [anon_sym_to_string] = ACTIONS(1432), + [anon_sym_to_float] = ACTIONS(1432), + [anon_sym_bash] = ACTIONS(1432), + [anon_sym_fish] = ACTIONS(1432), + [anon_sym_raw] = ACTIONS(1432), + [anon_sym_sh] = ACTIONS(1432), + [anon_sym_zsh] = ACTIONS(1432), + [anon_sym_random] = ACTIONS(1432), + [anon_sym_random_boolean] = ACTIONS(1432), + [anon_sym_random_float] = ACTIONS(1432), + [anon_sym_random_integer] = ACTIONS(1432), + [anon_sym_columns] = ACTIONS(1432), + [anon_sym_rows] = ACTIONS(1432), + [anon_sym_reverse] = ACTIONS(1432), }, [456] = { - [sym_block] = STATE(696), - [sym_statement] = STATE(35), - [sym_expression] = STATE(701), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_logic] = STATE(706), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(582), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1866), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(320), - [aux_sym_block_repeat1] = STATE(35), - [sym_identifier] = ACTIONS(149), + [sym_expression] = STATE(990), + [sym__expression_kind] = STATE(919), + [sym_value] = STATE(919), + [sym_boolean] = STATE(936), + [sym_list] = STATE(936), + [sym_map] = STATE(936), + [sym_index] = STATE(919), + [sym_math] = STATE(919), + [sym_logic] = STATE(919), + [sym_identifier_list] = STATE(1086), + [sym_table] = STATE(936), + [sym_function] = STATE(936), + [sym_function_call] = STATE(919), + [sym__context_defined_function] = STATE(934), + [sym_built_in_function] = STATE(934), + [sym__built_in_function_name] = STATE(550), + [aux_sym_match_repeat1] = STATE(455), + [sym_identifier] = ACTIONS(1339), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_if] = ACTIONS(197), - [anon_sym_match] = ACTIONS(497), - [anon_sym_EQ_GT] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_asyncfor] = ACTIONS(505), - [anon_sym_transform] = ACTIONS(507), - [anon_sym_filter] = ACTIONS(509), - [anon_sym_find] = ACTIONS(511), - [anon_sym_remove] = ACTIONS(513), - [anon_sym_reduce] = ACTIONS(515), - [anon_sym_select] = ACTIONS(517), - [anon_sym_insert] = ACTIONS(519), - [anon_sym_async] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(1341), + [anon_sym_RBRACE] = ACTIONS(1337), + [anon_sym_SEMI] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(1343), + [anon_sym_COMMA] = ACTIONS(1337), + [sym_integer] = ACTIONS(1345), + [sym_float] = ACTIONS(1347), + [sym_string] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1349), + [anon_sym_false] = ACTIONS(1349), + [anon_sym_LBRACK] = ACTIONS(1351), + [anon_sym_if] = ACTIONS(1353), + [anon_sym_elseif] = ACTIONS(1337), + [anon_sym_else] = ACTIONS(1353), + [anon_sym_match] = ACTIONS(1353), + [anon_sym_EQ_GT] = ACTIONS(1355), + [anon_sym_while] = ACTIONS(1353), + [anon_sym_for] = ACTIONS(1353), + [anon_sym_asyncfor] = ACTIONS(1337), + [anon_sym_transform] = ACTIONS(1353), + [anon_sym_filter] = ACTIONS(1353), + [anon_sym_find] = ACTIONS(1353), + [anon_sym_remove] = ACTIONS(1353), + [anon_sym_reduce] = ACTIONS(1353), + [anon_sym_select] = ACTIONS(1353), + [anon_sym_insert] = ACTIONS(1353), + [anon_sym_async] = ACTIONS(1353), [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(523), - [anon_sym_assert] = ACTIONS(525), - [anon_sym_assert_equal] = ACTIONS(525), - [anon_sym_download] = ACTIONS(525), - [anon_sym_help] = ACTIONS(525), - [anon_sym_length] = ACTIONS(525), - [anon_sym_output] = ACTIONS(525), - [anon_sym_output_error] = ACTIONS(525), - [anon_sym_type] = ACTIONS(525), - [anon_sym_append] = ACTIONS(525), - [anon_sym_metadata] = ACTIONS(525), - [anon_sym_move] = ACTIONS(525), - [anon_sym_read] = ACTIONS(525), - [anon_sym_workdir] = ACTIONS(525), - [anon_sym_write] = ACTIONS(525), - [anon_sym_from_json] = ACTIONS(525), - [anon_sym_to_json] = ACTIONS(525), - [anon_sym_to_string] = ACTIONS(525), - [anon_sym_to_float] = ACTIONS(525), - [anon_sym_bash] = ACTIONS(525), - [anon_sym_fish] = ACTIONS(525), - [anon_sym_raw] = ACTIONS(525), - [anon_sym_sh] = ACTIONS(525), - [anon_sym_zsh] = ACTIONS(525), - [anon_sym_random] = ACTIONS(525), - [anon_sym_random_boolean] = ACTIONS(525), - [anon_sym_random_float] = ACTIONS(525), - [anon_sym_random_integer] = ACTIONS(525), - [anon_sym_columns] = ACTIONS(525), - [anon_sym_rows] = ACTIONS(525), - [anon_sym_reverse] = ACTIONS(525), + [anon_sym_table] = ACTIONS(1357), + [anon_sym_assert] = ACTIONS(1359), + [anon_sym_assert_equal] = ACTIONS(1359), + [anon_sym_download] = ACTIONS(1359), + [anon_sym_help] = ACTIONS(1359), + [anon_sym_length] = ACTIONS(1359), + [anon_sym_output] = ACTIONS(1359), + [anon_sym_output_error] = ACTIONS(1359), + [anon_sym_type] = ACTIONS(1359), + [anon_sym_append] = ACTIONS(1359), + [anon_sym_metadata] = ACTIONS(1359), + [anon_sym_move] = ACTIONS(1359), + [anon_sym_read] = ACTIONS(1359), + [anon_sym_workdir] = ACTIONS(1359), + [anon_sym_write] = ACTIONS(1359), + [anon_sym_from_json] = ACTIONS(1359), + [anon_sym_to_json] = ACTIONS(1359), + [anon_sym_to_string] = ACTIONS(1359), + [anon_sym_to_float] = ACTIONS(1359), + [anon_sym_bash] = ACTIONS(1359), + [anon_sym_fish] = ACTIONS(1359), + [anon_sym_raw] = ACTIONS(1359), + [anon_sym_sh] = ACTIONS(1359), + [anon_sym_zsh] = ACTIONS(1359), + [anon_sym_random] = ACTIONS(1359), + [anon_sym_random_boolean] = ACTIONS(1359), + [anon_sym_random_float] = ACTIONS(1359), + [anon_sym_random_integer] = ACTIONS(1359), + [anon_sym_columns] = ACTIONS(1359), + [anon_sym_rows] = ACTIONS(1359), + [anon_sym_reverse] = ACTIONS(1359), }, [457] = { - [sym_block] = STATE(788), - [sym_statement] = STATE(33), - [sym_expression] = STATE(732), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(620), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(654), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1841), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(315), - [aux_sym_block_repeat1] = STATE(33), - [sym_identifier] = ACTIONS(623), + [sym_math_operator] = STATE(838), + [sym_logic_operator] = STATE(837), + [ts_builtin_sym_end] = ACTIONS(2067), + [sym_identifier] = ACTIONS(2069), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_if] = ACTIONS(627), - [anon_sym_match] = ACTIONS(629), - [anon_sym_EQ_GT] = ACTIONS(631), - [anon_sym_while] = ACTIONS(633), - [anon_sym_for] = ACTIONS(635), - [anon_sym_asyncfor] = ACTIONS(637), - [anon_sym_transform] = ACTIONS(639), - [anon_sym_filter] = ACTIONS(641), - [anon_sym_find] = ACTIONS(643), - [anon_sym_remove] = ACTIONS(645), - [anon_sym_reduce] = ACTIONS(647), - [anon_sym_select] = ACTIONS(649), - [anon_sym_insert] = ACTIONS(651), - [anon_sym_async] = ACTIONS(653), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(655), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_assert_equal] = ACTIONS(657), - [anon_sym_download] = ACTIONS(657), - [anon_sym_help] = ACTIONS(657), - [anon_sym_length] = ACTIONS(657), - [anon_sym_output] = ACTIONS(657), - [anon_sym_output_error] = ACTIONS(657), - [anon_sym_type] = ACTIONS(657), - [anon_sym_append] = ACTIONS(657), - [anon_sym_metadata] = ACTIONS(657), - [anon_sym_move] = ACTIONS(657), - [anon_sym_read] = ACTIONS(657), - [anon_sym_workdir] = ACTIONS(657), - [anon_sym_write] = ACTIONS(657), - [anon_sym_from_json] = ACTIONS(657), - [anon_sym_to_json] = ACTIONS(657), - [anon_sym_to_string] = ACTIONS(657), - [anon_sym_to_float] = ACTIONS(657), - [anon_sym_bash] = ACTIONS(657), - [anon_sym_fish] = ACTIONS(657), - [anon_sym_raw] = ACTIONS(657), - [anon_sym_sh] = ACTIONS(657), - [anon_sym_zsh] = ACTIONS(657), - [anon_sym_random] = ACTIONS(657), - [anon_sym_random_boolean] = ACTIONS(657), - [anon_sym_random_float] = ACTIONS(657), - [anon_sym_random_integer] = ACTIONS(657), - [anon_sym_columns] = ACTIONS(657), - [anon_sym_rows] = ACTIONS(657), - [anon_sym_reverse] = ACTIONS(657), + [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_RBRACE] = ACTIONS(2067), + [anon_sym_SEMI] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_RPAREN] = ACTIONS(2067), + [sym_integer] = ACTIONS(2069), + [sym_float] = ACTIONS(2067), + [sym_string] = ACTIONS(2067), + [anon_sym_true] = ACTIONS(2069), + [anon_sym_false] = ACTIONS(2069), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_COLON] = ACTIONS(2067), + [anon_sym_PLUS] = ACTIONS(2067), + [anon_sym_DASH] = ACTIONS(2069), + [anon_sym_STAR] = ACTIONS(2067), + [anon_sym_SLASH] = ACTIONS(2067), + [anon_sym_PERCENT] = ACTIONS(2067), + [anon_sym_EQ_EQ] = ACTIONS(2067), + [anon_sym_BANG_EQ] = ACTIONS(2067), + [anon_sym_AMP_AMP] = ACTIONS(2067), + [anon_sym_PIPE_PIPE] = ACTIONS(2067), + [anon_sym_GT] = ACTIONS(2069), + [anon_sym_LT] = ACTIONS(2069), + [anon_sym_GT_EQ] = ACTIONS(2067), + [anon_sym_LT_EQ] = ACTIONS(2067), + [anon_sym_if] = ACTIONS(2069), + [anon_sym_elseif] = ACTIONS(2067), + [anon_sym_else] = ACTIONS(2069), + [anon_sym_match] = ACTIONS(2069), + [anon_sym_EQ_GT] = ACTIONS(2067), + [anon_sym_while] = ACTIONS(2069), + [anon_sym_for] = ACTIONS(2069), + [anon_sym_asyncfor] = ACTIONS(2067), + [anon_sym_transform] = ACTIONS(2069), + [anon_sym_filter] = ACTIONS(2069), + [anon_sym_find] = ACTIONS(2069), + [anon_sym_remove] = ACTIONS(2069), + [anon_sym_reduce] = ACTIONS(2069), + [anon_sym_select] = ACTIONS(2069), + [anon_sym_insert] = ACTIONS(2069), + [anon_sym_async] = ACTIONS(2069), + [anon_sym_PIPE] = ACTIONS(2069), + [anon_sym_table] = ACTIONS(2069), + [anon_sym_assert] = ACTIONS(2069), + [anon_sym_assert_equal] = ACTIONS(2069), + [anon_sym_download] = ACTIONS(2069), + [anon_sym_help] = ACTIONS(2069), + [anon_sym_length] = ACTIONS(2069), + [anon_sym_output] = ACTIONS(2069), + [anon_sym_output_error] = ACTIONS(2069), + [anon_sym_type] = ACTIONS(2069), + [anon_sym_append] = ACTIONS(2069), + [anon_sym_metadata] = ACTIONS(2069), + [anon_sym_move] = ACTIONS(2069), + [anon_sym_read] = ACTIONS(2069), + [anon_sym_workdir] = ACTIONS(2069), + [anon_sym_write] = ACTIONS(2069), + [anon_sym_from_json] = ACTIONS(2069), + [anon_sym_to_json] = ACTIONS(2069), + [anon_sym_to_string] = ACTIONS(2069), + [anon_sym_to_float] = ACTIONS(2069), + [anon_sym_bash] = ACTIONS(2069), + [anon_sym_fish] = ACTIONS(2069), + [anon_sym_raw] = ACTIONS(2069), + [anon_sym_sh] = ACTIONS(2069), + [anon_sym_zsh] = ACTIONS(2069), + [anon_sym_random] = ACTIONS(2069), + [anon_sym_random_boolean] = ACTIONS(2069), + [anon_sym_random_float] = ACTIONS(2069), + [anon_sym_random_integer] = ACTIONS(2069), + [anon_sym_columns] = ACTIONS(2069), + [anon_sym_rows] = ACTIONS(2069), + [anon_sym_reverse] = ACTIONS(2069), }, [458] = { - [sym_block] = STATE(1059), - [sym_statement] = STATE(381), - [sym_expression] = STATE(925), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(867), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(980), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(381), - [sym_identifier] = ACTIONS(5), + [sym_math_operator] = STATE(908), + [sym_logic_operator] = STATE(909), + [ts_builtin_sym_end] = ACTIONS(2034), + [sym_identifier] = ACTIONS(2036), [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_asyncfor] = 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_async] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(49), - [anon_sym_assert] = ACTIONS(51), - [anon_sym_assert_equal] = ACTIONS(51), - [anon_sym_download] = ACTIONS(51), - [anon_sym_help] = ACTIONS(51), - [anon_sym_length] = ACTIONS(51), - [anon_sym_output] = ACTIONS(51), - [anon_sym_output_error] = ACTIONS(51), - [anon_sym_type] = ACTIONS(51), - [anon_sym_append] = ACTIONS(51), - [anon_sym_metadata] = ACTIONS(51), - [anon_sym_move] = ACTIONS(51), - [anon_sym_read] = ACTIONS(51), - [anon_sym_workdir] = ACTIONS(51), - [anon_sym_write] = ACTIONS(51), - [anon_sym_from_json] = ACTIONS(51), - [anon_sym_to_json] = ACTIONS(51), - [anon_sym_to_string] = ACTIONS(51), - [anon_sym_to_float] = ACTIONS(51), - [anon_sym_bash] = ACTIONS(51), - [anon_sym_fish] = ACTIONS(51), - [anon_sym_raw] = ACTIONS(51), - [anon_sym_sh] = ACTIONS(51), - [anon_sym_zsh] = ACTIONS(51), - [anon_sym_random] = ACTIONS(51), - [anon_sym_random_boolean] = ACTIONS(51), - [anon_sym_random_float] = ACTIONS(51), - [anon_sym_random_integer] = ACTIONS(51), - [anon_sym_columns] = ACTIONS(51), - [anon_sym_rows] = ACTIONS(51), - [anon_sym_reverse] = ACTIONS(51), + [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(2278), + [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_COLON] = ACTIONS(191), + [anon_sym_DOT_DOT] = ACTIONS(2034), + [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(2036), + [anon_sym_match] = ACTIONS(2036), + [anon_sym_EQ_GT] = ACTIONS(2034), + [anon_sym_while] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_asyncfor] = ACTIONS(2034), + [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), }, [459] = { - [sym_statement] = STATE(376), - [sym_expression] = STATE(925), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(867), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(980), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(376), - [sym_identifier] = ACTIONS(5), + [sym_else_if] = STATE(459), + [aux_sym_if_else_repeat1] = STATE(459), + [ts_builtin_sym_end] = ACTIONS(2019), + [sym_identifier] = ACTIONS(2021), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(3095), - [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_asyncfor] = 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_async] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(49), - [anon_sym_assert] = ACTIONS(51), - [anon_sym_assert_equal] = ACTIONS(51), - [anon_sym_download] = ACTIONS(51), - [anon_sym_help] = ACTIONS(51), - [anon_sym_length] = ACTIONS(51), - [anon_sym_output] = ACTIONS(51), - [anon_sym_output_error] = ACTIONS(51), - [anon_sym_type] = ACTIONS(51), - [anon_sym_append] = ACTIONS(51), - [anon_sym_metadata] = ACTIONS(51), - [anon_sym_move] = ACTIONS(51), - [anon_sym_read] = ACTIONS(51), - [anon_sym_workdir] = ACTIONS(51), - [anon_sym_write] = ACTIONS(51), - [anon_sym_from_json] = ACTIONS(51), - [anon_sym_to_json] = ACTIONS(51), - [anon_sym_to_string] = ACTIONS(51), - [anon_sym_to_float] = ACTIONS(51), - [anon_sym_bash] = ACTIONS(51), - [anon_sym_fish] = ACTIONS(51), - [anon_sym_raw] = ACTIONS(51), - [anon_sym_sh] = ACTIONS(51), - [anon_sym_zsh] = ACTIONS(51), - [anon_sym_random] = ACTIONS(51), - [anon_sym_random_boolean] = ACTIONS(51), - [anon_sym_random_float] = ACTIONS(51), - [anon_sym_random_integer] = ACTIONS(51), - [anon_sym_columns] = ACTIONS(51), - [anon_sym_rows] = ACTIONS(51), - [anon_sym_reverse] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(2019), + [anon_sym_RBRACE] = ACTIONS(2019), + [anon_sym_SEMI] = ACTIONS(2019), + [anon_sym_LPAREN] = ACTIONS(2019), + [anon_sym_RPAREN] = ACTIONS(2019), + [sym_integer] = ACTIONS(2021), + [sym_float] = ACTIONS(2019), + [sym_string] = ACTIONS(2019), + [anon_sym_true] = ACTIONS(2021), + [anon_sym_false] = ACTIONS(2021), + [anon_sym_LBRACK] = ACTIONS(2019), + [anon_sym_COLON] = ACTIONS(2019), + [anon_sym_PLUS] = ACTIONS(2019), + [anon_sym_DASH] = ACTIONS(2021), + [anon_sym_STAR] = ACTIONS(2019), + [anon_sym_SLASH] = ACTIONS(2019), + [anon_sym_PERCENT] = ACTIONS(2019), + [anon_sym_EQ_EQ] = ACTIONS(2019), + [anon_sym_BANG_EQ] = ACTIONS(2019), + [anon_sym_AMP_AMP] = ACTIONS(2019), + [anon_sym_PIPE_PIPE] = ACTIONS(2019), + [anon_sym_GT] = ACTIONS(2021), + [anon_sym_LT] = ACTIONS(2021), + [anon_sym_GT_EQ] = ACTIONS(2019), + [anon_sym_LT_EQ] = ACTIONS(2019), + [anon_sym_if] = ACTIONS(2021), + [anon_sym_elseif] = ACTIONS(2280), + [anon_sym_else] = ACTIONS(2021), + [anon_sym_match] = ACTIONS(2021), + [anon_sym_EQ_GT] = ACTIONS(2019), + [anon_sym_while] = ACTIONS(2021), + [anon_sym_for] = ACTIONS(2021), + [anon_sym_asyncfor] = ACTIONS(2019), + [anon_sym_transform] = ACTIONS(2021), + [anon_sym_filter] = ACTIONS(2021), + [anon_sym_find] = ACTIONS(2021), + [anon_sym_remove] = ACTIONS(2021), + [anon_sym_reduce] = ACTIONS(2021), + [anon_sym_select] = ACTIONS(2021), + [anon_sym_insert] = ACTIONS(2021), + [anon_sym_async] = ACTIONS(2021), + [anon_sym_PIPE] = ACTIONS(2021), + [anon_sym_table] = ACTIONS(2021), + [anon_sym_assert] = ACTIONS(2021), + [anon_sym_assert_equal] = ACTIONS(2021), + [anon_sym_download] = ACTIONS(2021), + [anon_sym_help] = ACTIONS(2021), + [anon_sym_length] = ACTIONS(2021), + [anon_sym_output] = ACTIONS(2021), + [anon_sym_output_error] = ACTIONS(2021), + [anon_sym_type] = ACTIONS(2021), + [anon_sym_append] = ACTIONS(2021), + [anon_sym_metadata] = ACTIONS(2021), + [anon_sym_move] = ACTIONS(2021), + [anon_sym_read] = ACTIONS(2021), + [anon_sym_workdir] = ACTIONS(2021), + [anon_sym_write] = ACTIONS(2021), + [anon_sym_from_json] = ACTIONS(2021), + [anon_sym_to_json] = ACTIONS(2021), + [anon_sym_to_string] = ACTIONS(2021), + [anon_sym_to_float] = ACTIONS(2021), + [anon_sym_bash] = ACTIONS(2021), + [anon_sym_fish] = ACTIONS(2021), + [anon_sym_raw] = ACTIONS(2021), + [anon_sym_sh] = ACTIONS(2021), + [anon_sym_zsh] = ACTIONS(2021), + [anon_sym_random] = ACTIONS(2021), + [anon_sym_random_boolean] = ACTIONS(2021), + [anon_sym_random_float] = ACTIONS(2021), + [anon_sym_random_integer] = ACTIONS(2021), + [anon_sym_columns] = ACTIONS(2021), + [anon_sym_rows] = ACTIONS(2021), + [anon_sym_reverse] = ACTIONS(2021), }, [460] = { - [sym_block] = STATE(872), - [sym_statement] = STATE(39), - [sym_expression] = STATE(756), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(657), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(627), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1752), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(338), - [aux_sym_block_repeat1] = STATE(39), - [sym_identifier] = ACTIONS(875), + [sym_math_operator] = STATE(732), + [sym_logic_operator] = STATE(730), + [sym_identifier] = ACTIONS(2043), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(877), - [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(245), - [anon_sym_match] = ACTIONS(881), - [anon_sym_EQ_GT] = ACTIONS(883), - [anon_sym_while] = ACTIONS(885), - [anon_sym_for] = ACTIONS(887), - [anon_sym_asyncfor] = ACTIONS(889), - [anon_sym_transform] = ACTIONS(891), - [anon_sym_filter] = ACTIONS(893), - [anon_sym_find] = ACTIONS(895), - [anon_sym_remove] = ACTIONS(897), - [anon_sym_reduce] = ACTIONS(899), - [anon_sym_select] = ACTIONS(901), - [anon_sym_insert] = ACTIONS(903), - [anon_sym_async] = ACTIONS(905), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(907), - [anon_sym_assert] = ACTIONS(909), - [anon_sym_assert_equal] = ACTIONS(909), - [anon_sym_download] = ACTIONS(909), - [anon_sym_help] = ACTIONS(909), - [anon_sym_length] = ACTIONS(909), - [anon_sym_output] = ACTIONS(909), - [anon_sym_output_error] = ACTIONS(909), - [anon_sym_type] = ACTIONS(909), - [anon_sym_append] = ACTIONS(909), - [anon_sym_metadata] = ACTIONS(909), - [anon_sym_move] = ACTIONS(909), - [anon_sym_read] = ACTIONS(909), - [anon_sym_workdir] = ACTIONS(909), - [anon_sym_write] = ACTIONS(909), - [anon_sym_from_json] = ACTIONS(909), - [anon_sym_to_json] = ACTIONS(909), - [anon_sym_to_string] = ACTIONS(909), - [anon_sym_to_float] = ACTIONS(909), - [anon_sym_bash] = ACTIONS(909), - [anon_sym_fish] = ACTIONS(909), - [anon_sym_raw] = ACTIONS(909), - [anon_sym_sh] = ACTIONS(909), - [anon_sym_zsh] = ACTIONS(909), - [anon_sym_random] = ACTIONS(909), - [anon_sym_random_boolean] = ACTIONS(909), - [anon_sym_random_float] = ACTIONS(909), - [anon_sym_random_integer] = ACTIONS(909), - [anon_sym_columns] = ACTIONS(909), - [anon_sym_rows] = ACTIONS(909), - [anon_sym_reverse] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(2041), + [anon_sym_RBRACE] = ACTIONS(2041), + [anon_sym_SEMI] = ACTIONS(2283), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_COMMA] = ACTIONS(2041), + [sym_integer] = ACTIONS(2043), + [sym_float] = ACTIONS(2041), + [sym_string] = ACTIONS(2041), + [anon_sym_true] = ACTIONS(2043), + [anon_sym_false] = ACTIONS(2043), + [anon_sym_LBRACK] = ACTIONS(2041), + [anon_sym_COLON] = ACTIONS(117), + [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(2043), + [anon_sym_elseif] = ACTIONS(2041), + [anon_sym_else] = ACTIONS(2043), + [anon_sym_match] = ACTIONS(2043), + [anon_sym_EQ_GT] = ACTIONS(2041), + [anon_sym_while] = ACTIONS(2043), + [anon_sym_for] = ACTIONS(2043), + [anon_sym_asyncfor] = ACTIONS(2041), + [anon_sym_transform] = ACTIONS(2043), + [anon_sym_filter] = ACTIONS(2043), + [anon_sym_find] = ACTIONS(2043), + [anon_sym_remove] = ACTIONS(2043), + [anon_sym_reduce] = ACTIONS(2043), + [anon_sym_select] = ACTIONS(2043), + [anon_sym_insert] = ACTIONS(2043), + [anon_sym_async] = ACTIONS(2043), + [anon_sym_PIPE] = ACTIONS(2043), + [anon_sym_table] = ACTIONS(2043), + [anon_sym_assert] = ACTIONS(2043), + [anon_sym_assert_equal] = ACTIONS(2043), + [anon_sym_download] = ACTIONS(2043), + [anon_sym_help] = ACTIONS(2043), + [anon_sym_length] = ACTIONS(2043), + [anon_sym_output] = ACTIONS(2043), + [anon_sym_output_error] = ACTIONS(2043), + [anon_sym_type] = ACTIONS(2043), + [anon_sym_append] = ACTIONS(2043), + [anon_sym_metadata] = ACTIONS(2043), + [anon_sym_move] = ACTIONS(2043), + [anon_sym_read] = ACTIONS(2043), + [anon_sym_workdir] = ACTIONS(2043), + [anon_sym_write] = ACTIONS(2043), + [anon_sym_from_json] = ACTIONS(2043), + [anon_sym_to_json] = ACTIONS(2043), + [anon_sym_to_string] = ACTIONS(2043), + [anon_sym_to_float] = ACTIONS(2043), + [anon_sym_bash] = ACTIONS(2043), + [anon_sym_fish] = ACTIONS(2043), + [anon_sym_raw] = ACTIONS(2043), + [anon_sym_sh] = ACTIONS(2043), + [anon_sym_zsh] = ACTIONS(2043), + [anon_sym_random] = ACTIONS(2043), + [anon_sym_random_boolean] = ACTIONS(2043), + [anon_sym_random_float] = ACTIONS(2043), + [anon_sym_random_integer] = ACTIONS(2043), + [anon_sym_columns] = ACTIONS(2043), + [anon_sym_rows] = ACTIONS(2043), + [anon_sym_reverse] = ACTIONS(2043), }, [461] = { - [sym_block] = STATE(607), - [sym_statement] = STATE(27), - [sym_expression] = STATE(663), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_logic] = STATE(631), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(637), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(1998), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(296), - [aux_sym_block_repeat1] = STATE(27), - [sym_identifier] = ACTIONS(55), + [ts_builtin_sym_end] = ACTIONS(2041), + [sym_identifier] = ACTIONS(2043), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(59), - [sym_integer] = ACTIONS(61), - [sym_float] = ACTIONS(63), - [sym_string] = ACTIONS(63), - [anon_sym_true] = ACTIONS(65), - [anon_sym_false] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_if] = ACTIONS(311), - [anon_sym_match] = ACTIONS(313), - [anon_sym_EQ_GT] = ACTIONS(315), - [anon_sym_while] = ACTIONS(317), - [anon_sym_for] = ACTIONS(319), - [anon_sym_asyncfor] = ACTIONS(321), - [anon_sym_transform] = ACTIONS(323), - [anon_sym_filter] = ACTIONS(325), - [anon_sym_find] = ACTIONS(327), - [anon_sym_remove] = ACTIONS(329), - [anon_sym_reduce] = ACTIONS(331), - [anon_sym_select] = ACTIONS(333), - [anon_sym_insert] = ACTIONS(335), - [anon_sym_async] = ACTIONS(337), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(339), - [anon_sym_assert] = ACTIONS(341), - [anon_sym_assert_equal] = ACTIONS(341), - [anon_sym_download] = ACTIONS(341), - [anon_sym_help] = ACTIONS(341), - [anon_sym_length] = ACTIONS(341), - [anon_sym_output] = ACTIONS(341), - [anon_sym_output_error] = ACTIONS(341), - [anon_sym_type] = ACTIONS(341), - [anon_sym_append] = ACTIONS(341), - [anon_sym_metadata] = ACTIONS(341), - [anon_sym_move] = ACTIONS(341), - [anon_sym_read] = ACTIONS(341), - [anon_sym_workdir] = ACTIONS(341), - [anon_sym_write] = ACTIONS(341), - [anon_sym_from_json] = ACTIONS(341), - [anon_sym_to_json] = ACTIONS(341), - [anon_sym_to_string] = ACTIONS(341), - [anon_sym_to_float] = ACTIONS(341), - [anon_sym_bash] = ACTIONS(341), - [anon_sym_fish] = ACTIONS(341), - [anon_sym_raw] = ACTIONS(341), - [anon_sym_sh] = ACTIONS(341), - [anon_sym_zsh] = ACTIONS(341), - [anon_sym_random] = ACTIONS(341), - [anon_sym_random_boolean] = ACTIONS(341), - [anon_sym_random_float] = ACTIONS(341), - [anon_sym_random_integer] = ACTIONS(341), - [anon_sym_columns] = ACTIONS(341), - [anon_sym_rows] = ACTIONS(341), - [anon_sym_reverse] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(2041), + [anon_sym_RBRACE] = ACTIONS(2041), + [anon_sym_SEMI] = ACTIONS(2181), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_RPAREN] = ACTIONS(2041), + [anon_sym_COMMA] = ACTIONS(2041), + [sym_integer] = ACTIONS(2043), + [sym_float] = ACTIONS(2041), + [sym_string] = ACTIONS(2041), + [anon_sym_true] = ACTIONS(2043), + [anon_sym_false] = ACTIONS(2043), + [anon_sym_LBRACK] = ACTIONS(2041), + [anon_sym_RBRACK] = ACTIONS(2041), + [anon_sym_COLON] = ACTIONS(2041), + [anon_sym_DOT_DOT] = ACTIONS(2041), + [anon_sym_PLUS] = ACTIONS(2041), + [anon_sym_DASH] = ACTIONS(2043), + [anon_sym_STAR] = ACTIONS(2041), + [anon_sym_SLASH] = ACTIONS(2041), + [anon_sym_PERCENT] = ACTIONS(2041), + [anon_sym_EQ_EQ] = ACTIONS(2041), + [anon_sym_BANG_EQ] = ACTIONS(2041), + [anon_sym_AMP_AMP] = ACTIONS(2041), + [anon_sym_PIPE_PIPE] = ACTIONS(2041), + [anon_sym_GT] = ACTIONS(2043), + [anon_sym_LT] = ACTIONS(2043), + [anon_sym_GT_EQ] = ACTIONS(2041), + [anon_sym_LT_EQ] = ACTIONS(2041), + [anon_sym_if] = ACTIONS(2043), + [anon_sym_match] = ACTIONS(2043), + [anon_sym_EQ_GT] = ACTIONS(2041), + [anon_sym_while] = ACTIONS(2043), + [anon_sym_for] = ACTIONS(2043), + [anon_sym_asyncfor] = ACTIONS(2041), + [anon_sym_transform] = ACTIONS(2043), + [anon_sym_filter] = ACTIONS(2043), + [anon_sym_find] = ACTIONS(2043), + [anon_sym_remove] = ACTIONS(2043), + [anon_sym_reduce] = ACTIONS(2043), + [anon_sym_select] = ACTIONS(2043), + [anon_sym_insert] = ACTIONS(2043), + [anon_sym_async] = ACTIONS(2043), + [anon_sym_PIPE] = ACTIONS(2043), + [anon_sym_table] = ACTIONS(2043), + [anon_sym_assert] = ACTIONS(2043), + [anon_sym_assert_equal] = ACTIONS(2043), + [anon_sym_download] = ACTIONS(2043), + [anon_sym_help] = ACTIONS(2043), + [anon_sym_length] = ACTIONS(2043), + [anon_sym_output] = ACTIONS(2043), + [anon_sym_output_error] = ACTIONS(2043), + [anon_sym_type] = ACTIONS(2043), + [anon_sym_append] = ACTIONS(2043), + [anon_sym_metadata] = ACTIONS(2043), + [anon_sym_move] = ACTIONS(2043), + [anon_sym_read] = ACTIONS(2043), + [anon_sym_workdir] = ACTIONS(2043), + [anon_sym_write] = ACTIONS(2043), + [anon_sym_from_json] = ACTIONS(2043), + [anon_sym_to_json] = ACTIONS(2043), + [anon_sym_to_string] = ACTIONS(2043), + [anon_sym_to_float] = ACTIONS(2043), + [anon_sym_bash] = ACTIONS(2043), + [anon_sym_fish] = ACTIONS(2043), + [anon_sym_raw] = ACTIONS(2043), + [anon_sym_sh] = ACTIONS(2043), + [anon_sym_zsh] = ACTIONS(2043), + [anon_sym_random] = ACTIONS(2043), + [anon_sym_random_boolean] = ACTIONS(2043), + [anon_sym_random_float] = ACTIONS(2043), + [anon_sym_random_integer] = ACTIONS(2043), + [anon_sym_columns] = ACTIONS(2043), + [anon_sym_rows] = ACTIONS(2043), + [anon_sym_reverse] = ACTIONS(2043), }, [462] = { - [sym_block] = STATE(872), - [sym_statement] = STATE(61), - [sym_expression] = STATE(888), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(822), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(787), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(61), - [sym_identifier] = ACTIONS(1846), + [ts_builtin_sym_end] = ACTIONS(2227), + [sym_identifier] = ACTIONS(2229), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(877), - [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(1284), - [anon_sym_match] = ACTIONS(1850), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(1852), - [anon_sym_for] = ACTIONS(1854), - [anon_sym_asyncfor] = ACTIONS(1856), - [anon_sym_transform] = ACTIONS(1858), - [anon_sym_filter] = ACTIONS(1860), - [anon_sym_find] = ACTIONS(1862), - [anon_sym_remove] = ACTIONS(1864), - [anon_sym_reduce] = ACTIONS(1866), - [anon_sym_select] = ACTIONS(1868), - [anon_sym_insert] = ACTIONS(43), - [anon_sym_async] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(49), - [anon_sym_assert] = ACTIONS(51), - [anon_sym_assert_equal] = ACTIONS(51), - [anon_sym_download] = ACTIONS(51), - [anon_sym_help] = ACTIONS(51), - [anon_sym_length] = ACTIONS(51), - [anon_sym_output] = ACTIONS(51), - [anon_sym_output_error] = ACTIONS(51), - [anon_sym_type] = ACTIONS(51), - [anon_sym_append] = ACTIONS(51), - [anon_sym_metadata] = ACTIONS(51), - [anon_sym_move] = ACTIONS(51), - [anon_sym_read] = ACTIONS(51), - [anon_sym_workdir] = ACTIONS(51), - [anon_sym_write] = ACTIONS(51), - [anon_sym_from_json] = ACTIONS(51), - [anon_sym_to_json] = ACTIONS(51), - [anon_sym_to_string] = ACTIONS(51), - [anon_sym_to_float] = ACTIONS(51), - [anon_sym_bash] = ACTIONS(51), - [anon_sym_fish] = ACTIONS(51), - [anon_sym_raw] = ACTIONS(51), - [anon_sym_sh] = ACTIONS(51), - [anon_sym_zsh] = ACTIONS(51), - [anon_sym_random] = ACTIONS(51), - [anon_sym_random_boolean] = ACTIONS(51), - [anon_sym_random_float] = ACTIONS(51), - [anon_sym_random_integer] = ACTIONS(51), - [anon_sym_columns] = ACTIONS(51), - [anon_sym_rows] = ACTIONS(51), - [anon_sym_reverse] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(2227), + [anon_sym_RBRACE] = ACTIONS(2227), + [anon_sym_SEMI] = ACTIONS(2227), + [anon_sym_LPAREN] = ACTIONS(2227), + [anon_sym_RPAREN] = ACTIONS(2227), + [anon_sym_COMMA] = ACTIONS(2227), + [sym_integer] = ACTIONS(2229), + [sym_float] = ACTIONS(2227), + [sym_string] = ACTIONS(2227), + [anon_sym_true] = ACTIONS(2229), + [anon_sym_false] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2227), + [anon_sym_RBRACK] = ACTIONS(2227), + [anon_sym_COLON] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2227), + [anon_sym_PLUS] = ACTIONS(2227), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2227), + [anon_sym_SLASH] = ACTIONS(2227), + [anon_sym_PERCENT] = ACTIONS(2227), + [anon_sym_EQ_EQ] = ACTIONS(2227), + [anon_sym_BANG_EQ] = ACTIONS(2227), + [anon_sym_AMP_AMP] = ACTIONS(2227), + [anon_sym_PIPE_PIPE] = ACTIONS(2227), + [anon_sym_GT] = ACTIONS(2229), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_GT_EQ] = ACTIONS(2227), + [anon_sym_LT_EQ] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_match] = ACTIONS(2229), + [anon_sym_EQ_GT] = ACTIONS(2227), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_asyncfor] = ACTIONS(2227), + [anon_sym_transform] = ACTIONS(2229), + [anon_sym_filter] = ACTIONS(2229), + [anon_sym_find] = ACTIONS(2229), + [anon_sym_remove] = ACTIONS(2229), + [anon_sym_reduce] = ACTIONS(2229), + [anon_sym_select] = ACTIONS(2229), + [anon_sym_insert] = ACTIONS(2229), + [anon_sym_async] = ACTIONS(2229), + [anon_sym_PIPE] = ACTIONS(2229), + [anon_sym_table] = ACTIONS(2229), + [anon_sym_assert] = ACTIONS(2229), + [anon_sym_assert_equal] = ACTIONS(2229), + [anon_sym_download] = ACTIONS(2229), + [anon_sym_help] = ACTIONS(2229), + [anon_sym_length] = ACTIONS(2229), + [anon_sym_output] = ACTIONS(2229), + [anon_sym_output_error] = ACTIONS(2229), + [anon_sym_type] = ACTIONS(2229), + [anon_sym_append] = ACTIONS(2229), + [anon_sym_metadata] = ACTIONS(2229), + [anon_sym_move] = ACTIONS(2229), + [anon_sym_read] = ACTIONS(2229), + [anon_sym_workdir] = ACTIONS(2229), + [anon_sym_write] = ACTIONS(2229), + [anon_sym_from_json] = ACTIONS(2229), + [anon_sym_to_json] = ACTIONS(2229), + [anon_sym_to_string] = ACTIONS(2229), + [anon_sym_to_float] = ACTIONS(2229), + [anon_sym_bash] = ACTIONS(2229), + [anon_sym_fish] = ACTIONS(2229), + [anon_sym_raw] = ACTIONS(2229), + [anon_sym_sh] = ACTIONS(2229), + [anon_sym_zsh] = ACTIONS(2229), + [anon_sym_random] = ACTIONS(2229), + [anon_sym_random_boolean] = ACTIONS(2229), + [anon_sym_random_float] = ACTIONS(2229), + [anon_sym_random_integer] = ACTIONS(2229), + [anon_sym_columns] = ACTIONS(2229), + [anon_sym_rows] = ACTIONS(2229), + [anon_sym_reverse] = ACTIONS(2229), }, [463] = { - [sym_block] = STATE(1545), - [sym_statement] = STATE(259), - [sym_expression] = STATE(888), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(822), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(787), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(259), - [sym_identifier] = ACTIONS(1846), + [ts_builtin_sym_end] = ACTIONS(2219), + [sym_identifier] = ACTIONS(2221), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2164), - [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(1284), - [anon_sym_match] = ACTIONS(1850), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(1852), - [anon_sym_for] = ACTIONS(1854), - [anon_sym_asyncfor] = ACTIONS(1856), - [anon_sym_transform] = ACTIONS(1858), - [anon_sym_filter] = ACTIONS(1860), - [anon_sym_find] = ACTIONS(1862), - [anon_sym_remove] = ACTIONS(1864), - [anon_sym_reduce] = ACTIONS(1866), - [anon_sym_select] = ACTIONS(1868), - [anon_sym_insert] = ACTIONS(43), - [anon_sym_async] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(49), - [anon_sym_assert] = ACTIONS(51), - [anon_sym_assert_equal] = ACTIONS(51), - [anon_sym_download] = ACTIONS(51), - [anon_sym_help] = ACTIONS(51), - [anon_sym_length] = ACTIONS(51), - [anon_sym_output] = ACTIONS(51), - [anon_sym_output_error] = ACTIONS(51), - [anon_sym_type] = ACTIONS(51), - [anon_sym_append] = ACTIONS(51), - [anon_sym_metadata] = ACTIONS(51), - [anon_sym_move] = ACTIONS(51), - [anon_sym_read] = ACTIONS(51), - [anon_sym_workdir] = ACTIONS(51), - [anon_sym_write] = ACTIONS(51), - [anon_sym_from_json] = ACTIONS(51), - [anon_sym_to_json] = ACTIONS(51), - [anon_sym_to_string] = ACTIONS(51), - [anon_sym_to_float] = ACTIONS(51), - [anon_sym_bash] = ACTIONS(51), - [anon_sym_fish] = ACTIONS(51), - [anon_sym_raw] = ACTIONS(51), - [anon_sym_sh] = ACTIONS(51), - [anon_sym_zsh] = ACTIONS(51), - [anon_sym_random] = ACTIONS(51), - [anon_sym_random_boolean] = ACTIONS(51), - [anon_sym_random_float] = ACTIONS(51), - [anon_sym_random_integer] = ACTIONS(51), - [anon_sym_columns] = ACTIONS(51), - [anon_sym_rows] = ACTIONS(51), - [anon_sym_reverse] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(2219), + [anon_sym_RBRACE] = ACTIONS(2219), + [anon_sym_SEMI] = ACTIONS(2219), + [anon_sym_LPAREN] = ACTIONS(2219), + [anon_sym_RPAREN] = ACTIONS(2219), + [anon_sym_COMMA] = ACTIONS(2219), + [sym_integer] = ACTIONS(2221), + [sym_float] = ACTIONS(2219), + [sym_string] = ACTIONS(2219), + [anon_sym_true] = ACTIONS(2221), + [anon_sym_false] = ACTIONS(2221), + [anon_sym_LBRACK] = ACTIONS(2219), + [anon_sym_RBRACK] = ACTIONS(2219), + [anon_sym_COLON] = ACTIONS(2219), + [anon_sym_DOT_DOT] = ACTIONS(2219), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2221), + [anon_sym_STAR] = ACTIONS(2219), + [anon_sym_SLASH] = ACTIONS(2219), + [anon_sym_PERCENT] = ACTIONS(2219), + [anon_sym_EQ_EQ] = ACTIONS(2219), + [anon_sym_BANG_EQ] = ACTIONS(2219), + [anon_sym_AMP_AMP] = ACTIONS(2219), + [anon_sym_PIPE_PIPE] = ACTIONS(2219), + [anon_sym_GT] = ACTIONS(2221), + [anon_sym_LT] = ACTIONS(2221), + [anon_sym_GT_EQ] = ACTIONS(2219), + [anon_sym_LT_EQ] = ACTIONS(2219), + [anon_sym_if] = ACTIONS(2221), + [anon_sym_match] = ACTIONS(2221), + [anon_sym_EQ_GT] = ACTIONS(2219), + [anon_sym_while] = ACTIONS(2221), + [anon_sym_for] = ACTIONS(2221), + [anon_sym_asyncfor] = ACTIONS(2219), + [anon_sym_transform] = ACTIONS(2221), + [anon_sym_filter] = ACTIONS(2221), + [anon_sym_find] = ACTIONS(2221), + [anon_sym_remove] = ACTIONS(2221), + [anon_sym_reduce] = ACTIONS(2221), + [anon_sym_select] = ACTIONS(2221), + [anon_sym_insert] = ACTIONS(2221), + [anon_sym_async] = ACTIONS(2221), + [anon_sym_PIPE] = ACTIONS(2221), + [anon_sym_table] = ACTIONS(2221), + [anon_sym_assert] = ACTIONS(2221), + [anon_sym_assert_equal] = ACTIONS(2221), + [anon_sym_download] = ACTIONS(2221), + [anon_sym_help] = ACTIONS(2221), + [anon_sym_length] = ACTIONS(2221), + [anon_sym_output] = ACTIONS(2221), + [anon_sym_output_error] = ACTIONS(2221), + [anon_sym_type] = ACTIONS(2221), + [anon_sym_append] = ACTIONS(2221), + [anon_sym_metadata] = ACTIONS(2221), + [anon_sym_move] = ACTIONS(2221), + [anon_sym_read] = ACTIONS(2221), + [anon_sym_workdir] = ACTIONS(2221), + [anon_sym_write] = ACTIONS(2221), + [anon_sym_from_json] = ACTIONS(2221), + [anon_sym_to_json] = ACTIONS(2221), + [anon_sym_to_string] = ACTIONS(2221), + [anon_sym_to_float] = ACTIONS(2221), + [anon_sym_bash] = ACTIONS(2221), + [anon_sym_fish] = ACTIONS(2221), + [anon_sym_raw] = ACTIONS(2221), + [anon_sym_sh] = ACTIONS(2221), + [anon_sym_zsh] = ACTIONS(2221), + [anon_sym_random] = ACTIONS(2221), + [anon_sym_random_boolean] = ACTIONS(2221), + [anon_sym_random_float] = ACTIONS(2221), + [anon_sym_random_integer] = ACTIONS(2221), + [anon_sym_columns] = ACTIONS(2221), + [anon_sym_rows] = ACTIONS(2221), + [anon_sym_reverse] = ACTIONS(2221), }, [464] = { - [sym_block] = STATE(1524), - [sym_statement] = STATE(48), - [sym_expression] = STATE(683), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_logic] = STATE(706), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(573), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1813), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(311), - [aux_sym_block_repeat1] = STATE(48), - [sym_identifier] = ACTIONS(149), + [ts_builtin_sym_end] = ACTIONS(2177), + [sym_identifier] = ACTIONS(2179), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_if] = ACTIONS(117), - [anon_sym_match] = ACTIONS(279), - [anon_sym_EQ_GT] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_for] = ACTIONS(285), - [anon_sym_asyncfor] = ACTIONS(287), - [anon_sym_transform] = ACTIONS(289), - [anon_sym_filter] = ACTIONS(291), - [anon_sym_find] = ACTIONS(293), - [anon_sym_remove] = ACTIONS(295), - [anon_sym_reduce] = ACTIONS(297), - [anon_sym_select] = ACTIONS(299), - [anon_sym_insert] = ACTIONS(301), - [anon_sym_async] = ACTIONS(303), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(305), - [anon_sym_assert] = ACTIONS(307), - [anon_sym_assert_equal] = ACTIONS(307), - [anon_sym_download] = ACTIONS(307), - [anon_sym_help] = ACTIONS(307), - [anon_sym_length] = ACTIONS(307), - [anon_sym_output] = ACTIONS(307), - [anon_sym_output_error] = ACTIONS(307), - [anon_sym_type] = ACTIONS(307), - [anon_sym_append] = ACTIONS(307), - [anon_sym_metadata] = ACTIONS(307), - [anon_sym_move] = ACTIONS(307), - [anon_sym_read] = ACTIONS(307), - [anon_sym_workdir] = ACTIONS(307), - [anon_sym_write] = ACTIONS(307), - [anon_sym_from_json] = ACTIONS(307), - [anon_sym_to_json] = ACTIONS(307), - [anon_sym_to_string] = ACTIONS(307), - [anon_sym_to_float] = ACTIONS(307), - [anon_sym_bash] = ACTIONS(307), - [anon_sym_fish] = ACTIONS(307), - [anon_sym_raw] = ACTIONS(307), - [anon_sym_sh] = ACTIONS(307), - [anon_sym_zsh] = ACTIONS(307), - [anon_sym_random] = ACTIONS(307), - [anon_sym_random_boolean] = ACTIONS(307), - [anon_sym_random_float] = ACTIONS(307), - [anon_sym_random_integer] = ACTIONS(307), - [anon_sym_columns] = ACTIONS(307), - [anon_sym_rows] = ACTIONS(307), - [anon_sym_reverse] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(2177), + [anon_sym_RBRACE] = ACTIONS(2177), + [anon_sym_SEMI] = ACTIONS(2177), + [anon_sym_LPAREN] = ACTIONS(2177), + [anon_sym_RPAREN] = ACTIONS(2177), + [anon_sym_COMMA] = ACTIONS(2177), + [sym_integer] = ACTIONS(2179), + [sym_float] = ACTIONS(2177), + [sym_string] = ACTIONS(2177), + [anon_sym_true] = ACTIONS(2179), + [anon_sym_false] = ACTIONS(2179), + [anon_sym_LBRACK] = ACTIONS(2177), + [anon_sym_RBRACK] = ACTIONS(2177), + [anon_sym_COLON] = ACTIONS(2177), + [anon_sym_DOT_DOT] = ACTIONS(2177), + [anon_sym_PLUS] = ACTIONS(2177), + [anon_sym_DASH] = ACTIONS(2179), + [anon_sym_STAR] = ACTIONS(2177), + [anon_sym_SLASH] = ACTIONS(2177), + [anon_sym_PERCENT] = ACTIONS(2177), + [anon_sym_EQ_EQ] = ACTIONS(2177), + [anon_sym_BANG_EQ] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2177), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_GT] = ACTIONS(2179), + [anon_sym_LT] = ACTIONS(2179), + [anon_sym_GT_EQ] = ACTIONS(2177), + [anon_sym_LT_EQ] = ACTIONS(2177), + [anon_sym_if] = ACTIONS(2179), + [anon_sym_match] = ACTIONS(2179), + [anon_sym_EQ_GT] = ACTIONS(2177), + [anon_sym_while] = ACTIONS(2179), + [anon_sym_for] = ACTIONS(2179), + [anon_sym_asyncfor] = ACTIONS(2177), + [anon_sym_transform] = ACTIONS(2179), + [anon_sym_filter] = ACTIONS(2179), + [anon_sym_find] = ACTIONS(2179), + [anon_sym_remove] = ACTIONS(2179), + [anon_sym_reduce] = ACTIONS(2179), + [anon_sym_select] = ACTIONS(2179), + [anon_sym_insert] = ACTIONS(2179), + [anon_sym_async] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2179), + [anon_sym_table] = ACTIONS(2179), + [anon_sym_assert] = ACTIONS(2179), + [anon_sym_assert_equal] = ACTIONS(2179), + [anon_sym_download] = ACTIONS(2179), + [anon_sym_help] = ACTIONS(2179), + [anon_sym_length] = ACTIONS(2179), + [anon_sym_output] = ACTIONS(2179), + [anon_sym_output_error] = ACTIONS(2179), + [anon_sym_type] = ACTIONS(2179), + [anon_sym_append] = ACTIONS(2179), + [anon_sym_metadata] = ACTIONS(2179), + [anon_sym_move] = ACTIONS(2179), + [anon_sym_read] = ACTIONS(2179), + [anon_sym_workdir] = ACTIONS(2179), + [anon_sym_write] = ACTIONS(2179), + [anon_sym_from_json] = ACTIONS(2179), + [anon_sym_to_json] = ACTIONS(2179), + [anon_sym_to_string] = ACTIONS(2179), + [anon_sym_to_float] = ACTIONS(2179), + [anon_sym_bash] = ACTIONS(2179), + [anon_sym_fish] = ACTIONS(2179), + [anon_sym_raw] = ACTIONS(2179), + [anon_sym_sh] = ACTIONS(2179), + [anon_sym_zsh] = ACTIONS(2179), + [anon_sym_random] = ACTIONS(2179), + [anon_sym_random_boolean] = ACTIONS(2179), + [anon_sym_random_float] = ACTIONS(2179), + [anon_sym_random_integer] = ACTIONS(2179), + [anon_sym_columns] = ACTIONS(2179), + [anon_sym_rows] = ACTIONS(2179), + [anon_sym_reverse] = ACTIONS(2179), }, [465] = { - [sym_block] = STATE(1503), - [sym_statement] = STATE(370), - [sym_expression] = STATE(934), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(842), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(983), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [aux_sym_block_repeat1] = STATE(370), - [sym_identifier] = ACTIONS(2162), + [sym_math_operator] = STATE(821), + [sym_logic_operator] = STATE(822), + [ts_builtin_sym_end] = ACTIONS(2075), + [sym_identifier] = ACTIONS(2077), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3097), - [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(1570), - [anon_sym_match] = ACTIONS(2166), - [anon_sym_EQ_GT] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(2168), - [anon_sym_for] = ACTIONS(2170), - [anon_sym_asyncfor] = ACTIONS(2172), - [anon_sym_transform] = ACTIONS(2174), - [anon_sym_filter] = ACTIONS(2176), - [anon_sym_find] = ACTIONS(2178), - [anon_sym_remove] = ACTIONS(2180), - [anon_sym_reduce] = ACTIONS(2182), - [anon_sym_select] = ACTIONS(2184), - [anon_sym_insert] = ACTIONS(1224), - [anon_sym_async] = ACTIONS(2186), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(1228), - [anon_sym_assert] = ACTIONS(1230), - [anon_sym_assert_equal] = ACTIONS(1230), - [anon_sym_download] = ACTIONS(1230), - [anon_sym_help] = ACTIONS(1230), - [anon_sym_length] = ACTIONS(1230), - [anon_sym_output] = ACTIONS(1230), - [anon_sym_output_error] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_append] = ACTIONS(1230), - [anon_sym_metadata] = ACTIONS(1230), - [anon_sym_move] = ACTIONS(1230), - [anon_sym_read] = ACTIONS(1230), - [anon_sym_workdir] = ACTIONS(1230), - [anon_sym_write] = ACTIONS(1230), - [anon_sym_from_json] = ACTIONS(1230), - [anon_sym_to_json] = ACTIONS(1230), - [anon_sym_to_string] = ACTIONS(1230), - [anon_sym_to_float] = ACTIONS(1230), - [anon_sym_bash] = ACTIONS(1230), - [anon_sym_fish] = ACTIONS(1230), - [anon_sym_raw] = ACTIONS(1230), - [anon_sym_sh] = ACTIONS(1230), - [anon_sym_zsh] = ACTIONS(1230), - [anon_sym_random] = ACTIONS(1230), - [anon_sym_random_boolean] = ACTIONS(1230), - [anon_sym_random_float] = ACTIONS(1230), - [anon_sym_random_integer] = ACTIONS(1230), - [anon_sym_columns] = ACTIONS(1230), - [anon_sym_rows] = ACTIONS(1230), - [anon_sym_reverse] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(2075), + [anon_sym_RBRACE] = ACTIONS(2075), + [anon_sym_SEMI] = ACTIONS(2075), + [anon_sym_LPAREN] = ACTIONS(2075), + [anon_sym_RPAREN] = ACTIONS(2075), + [sym_integer] = ACTIONS(2077), + [sym_float] = ACTIONS(2075), + [sym_string] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_LBRACK] = ACTIONS(2075), + [anon_sym_COLON] = ACTIONS(526), + [anon_sym_DOT_DOT] = ACTIONS(2075), + [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(2077), + [anon_sym_match] = ACTIONS(2077), + [anon_sym_EQ_GT] = ACTIONS(2075), + [anon_sym_while] = ACTIONS(2077), + [anon_sym_for] = ACTIONS(2077), + [anon_sym_asyncfor] = ACTIONS(2075), + [anon_sym_transform] = ACTIONS(2077), + [anon_sym_filter] = ACTIONS(2077), + [anon_sym_find] = ACTIONS(2077), + [anon_sym_remove] = ACTIONS(2077), + [anon_sym_reduce] = ACTIONS(2077), + [anon_sym_select] = ACTIONS(2077), + [anon_sym_insert] = ACTIONS(2077), + [anon_sym_async] = ACTIONS(2077), + [anon_sym_PIPE] = ACTIONS(2077), + [anon_sym_table] = ACTIONS(2077), + [anon_sym_assert] = ACTIONS(2077), + [anon_sym_assert_equal] = ACTIONS(2077), + [anon_sym_download] = ACTIONS(2077), + [anon_sym_help] = ACTIONS(2077), + [anon_sym_length] = ACTIONS(2077), + [anon_sym_output] = ACTIONS(2077), + [anon_sym_output_error] = ACTIONS(2077), + [anon_sym_type] = ACTIONS(2077), + [anon_sym_append] = ACTIONS(2077), + [anon_sym_metadata] = ACTIONS(2077), + [anon_sym_move] = ACTIONS(2077), + [anon_sym_read] = ACTIONS(2077), + [anon_sym_workdir] = ACTIONS(2077), + [anon_sym_write] = ACTIONS(2077), + [anon_sym_from_json] = ACTIONS(2077), + [anon_sym_to_json] = ACTIONS(2077), + [anon_sym_to_string] = ACTIONS(2077), + [anon_sym_to_float] = ACTIONS(2077), + [anon_sym_bash] = ACTIONS(2077), + [anon_sym_fish] = ACTIONS(2077), + [anon_sym_raw] = ACTIONS(2077), + [anon_sym_sh] = ACTIONS(2077), + [anon_sym_zsh] = ACTIONS(2077), + [anon_sym_random] = ACTIONS(2077), + [anon_sym_random_boolean] = ACTIONS(2077), + [anon_sym_random_float] = ACTIONS(2077), + [anon_sym_random_integer] = ACTIONS(2077), + [anon_sym_columns] = ACTIONS(2077), + [anon_sym_rows] = ACTIONS(2077), + [anon_sym_reverse] = ACTIONS(2077), }, [466] = { - [sym_block] = STATE(1528), - [sym_statement] = STATE(48), - [sym_expression] = STATE(683), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_logic] = STATE(706), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(573), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1813), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(311), - [aux_sym_block_repeat1] = STATE(48), - [sym_identifier] = ACTIONS(149), + [sym_math_operator] = STATE(821), + [sym_logic_operator] = STATE(822), + [ts_builtin_sym_end] = ACTIONS(2079), + [sym_identifier] = ACTIONS(2081), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_if] = ACTIONS(117), - [anon_sym_match] = ACTIONS(279), - [anon_sym_EQ_GT] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_for] = ACTIONS(285), - [anon_sym_asyncfor] = ACTIONS(287), - [anon_sym_transform] = ACTIONS(289), - [anon_sym_filter] = ACTIONS(291), - [anon_sym_find] = ACTIONS(293), - [anon_sym_remove] = ACTIONS(295), - [anon_sym_reduce] = ACTIONS(297), - [anon_sym_select] = ACTIONS(299), - [anon_sym_insert] = ACTIONS(301), - [anon_sym_async] = ACTIONS(303), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(305), - [anon_sym_assert] = ACTIONS(307), - [anon_sym_assert_equal] = ACTIONS(307), - [anon_sym_download] = ACTIONS(307), - [anon_sym_help] = ACTIONS(307), - [anon_sym_length] = ACTIONS(307), - [anon_sym_output] = ACTIONS(307), - [anon_sym_output_error] = ACTIONS(307), - [anon_sym_type] = ACTIONS(307), - [anon_sym_append] = ACTIONS(307), - [anon_sym_metadata] = ACTIONS(307), - [anon_sym_move] = ACTIONS(307), - [anon_sym_read] = ACTIONS(307), - [anon_sym_workdir] = ACTIONS(307), - [anon_sym_write] = ACTIONS(307), - [anon_sym_from_json] = ACTIONS(307), - [anon_sym_to_json] = ACTIONS(307), - [anon_sym_to_string] = ACTIONS(307), - [anon_sym_to_float] = ACTIONS(307), - [anon_sym_bash] = ACTIONS(307), - [anon_sym_fish] = ACTIONS(307), - [anon_sym_raw] = ACTIONS(307), - [anon_sym_sh] = ACTIONS(307), - [anon_sym_zsh] = ACTIONS(307), - [anon_sym_random] = ACTIONS(307), - [anon_sym_random_boolean] = ACTIONS(307), - [anon_sym_random_float] = ACTIONS(307), - [anon_sym_random_integer] = ACTIONS(307), - [anon_sym_columns] = ACTIONS(307), - [anon_sym_rows] = ACTIONS(307), - [anon_sym_reverse] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(2079), + [anon_sym_RBRACE] = ACTIONS(2079), + [anon_sym_SEMI] = ACTIONS(2079), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_RPAREN] = ACTIONS(2079), + [sym_integer] = ACTIONS(2081), + [sym_float] = ACTIONS(2079), + [sym_string] = ACTIONS(2079), + [anon_sym_true] = ACTIONS(2081), + [anon_sym_false] = ACTIONS(2081), + [anon_sym_LBRACK] = ACTIONS(2079), + [anon_sym_COLON] = ACTIONS(526), + [anon_sym_DOT_DOT] = ACTIONS(2079), + [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(2081), + [anon_sym_match] = ACTIONS(2081), + [anon_sym_EQ_GT] = ACTIONS(2079), + [anon_sym_while] = ACTIONS(2081), + [anon_sym_for] = ACTIONS(2081), + [anon_sym_asyncfor] = ACTIONS(2079), + [anon_sym_transform] = ACTIONS(2081), + [anon_sym_filter] = ACTIONS(2081), + [anon_sym_find] = ACTIONS(2081), + [anon_sym_remove] = ACTIONS(2081), + [anon_sym_reduce] = ACTIONS(2081), + [anon_sym_select] = ACTIONS(2081), + [anon_sym_insert] = ACTIONS(2081), + [anon_sym_async] = ACTIONS(2081), + [anon_sym_PIPE] = ACTIONS(2081), + [anon_sym_table] = ACTIONS(2081), + [anon_sym_assert] = ACTIONS(2081), + [anon_sym_assert_equal] = ACTIONS(2081), + [anon_sym_download] = ACTIONS(2081), + [anon_sym_help] = ACTIONS(2081), + [anon_sym_length] = ACTIONS(2081), + [anon_sym_output] = ACTIONS(2081), + [anon_sym_output_error] = ACTIONS(2081), + [anon_sym_type] = ACTIONS(2081), + [anon_sym_append] = ACTIONS(2081), + [anon_sym_metadata] = ACTIONS(2081), + [anon_sym_move] = ACTIONS(2081), + [anon_sym_read] = ACTIONS(2081), + [anon_sym_workdir] = ACTIONS(2081), + [anon_sym_write] = ACTIONS(2081), + [anon_sym_from_json] = ACTIONS(2081), + [anon_sym_to_json] = ACTIONS(2081), + [anon_sym_to_string] = ACTIONS(2081), + [anon_sym_to_float] = ACTIONS(2081), + [anon_sym_bash] = ACTIONS(2081), + [anon_sym_fish] = ACTIONS(2081), + [anon_sym_raw] = ACTIONS(2081), + [anon_sym_sh] = ACTIONS(2081), + [anon_sym_zsh] = ACTIONS(2081), + [anon_sym_random] = ACTIONS(2081), + [anon_sym_random_boolean] = ACTIONS(2081), + [anon_sym_random_float] = ACTIONS(2081), + [anon_sym_random_integer] = ACTIONS(2081), + [anon_sym_columns] = ACTIONS(2081), + [anon_sym_rows] = ACTIONS(2081), + [anon_sym_reverse] = ACTIONS(2081), }, [467] = { - [sym_block] = STATE(872), - [sym_statement] = STATE(57), - [sym_expression] = STATE(853), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(776), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(710), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1823), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(366), - [aux_sym_block_repeat1] = STATE(57), - [sym_identifier] = ACTIONS(1436), + [sym_math_operator] = STATE(821), + [sym_logic_operator] = STATE(822), + [ts_builtin_sym_end] = ACTIONS(2026), + [sym_identifier] = ACTIONS(2028), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(877), - [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(843), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_EQ_GT] = ACTIONS(1442), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_for] = ACTIONS(1446), - [anon_sym_asyncfor] = ACTIONS(1448), - [anon_sym_transform] = ACTIONS(1450), - [anon_sym_filter] = ACTIONS(1452), - [anon_sym_find] = ACTIONS(1454), - [anon_sym_remove] = ACTIONS(1456), - [anon_sym_reduce] = ACTIONS(1458), - [anon_sym_select] = ACTIONS(1460), - [anon_sym_insert] = ACTIONS(1462), - [anon_sym_async] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(1466), - [anon_sym_assert] = ACTIONS(1468), - [anon_sym_assert_equal] = ACTIONS(1468), - [anon_sym_download] = ACTIONS(1468), - [anon_sym_help] = ACTIONS(1468), - [anon_sym_length] = ACTIONS(1468), - [anon_sym_output] = ACTIONS(1468), - [anon_sym_output_error] = ACTIONS(1468), - [anon_sym_type] = ACTIONS(1468), - [anon_sym_append] = ACTIONS(1468), - [anon_sym_metadata] = ACTIONS(1468), - [anon_sym_move] = ACTIONS(1468), - [anon_sym_read] = ACTIONS(1468), - [anon_sym_workdir] = ACTIONS(1468), - [anon_sym_write] = ACTIONS(1468), - [anon_sym_from_json] = ACTIONS(1468), - [anon_sym_to_json] = ACTIONS(1468), - [anon_sym_to_string] = ACTIONS(1468), - [anon_sym_to_float] = ACTIONS(1468), - [anon_sym_bash] = ACTIONS(1468), - [anon_sym_fish] = ACTIONS(1468), - [anon_sym_raw] = ACTIONS(1468), - [anon_sym_sh] = ACTIONS(1468), - [anon_sym_zsh] = ACTIONS(1468), - [anon_sym_random] = ACTIONS(1468), - [anon_sym_random_boolean] = ACTIONS(1468), - [anon_sym_random_float] = ACTIONS(1468), - [anon_sym_random_integer] = ACTIONS(1468), - [anon_sym_columns] = ACTIONS(1468), - [anon_sym_rows] = ACTIONS(1468), - [anon_sym_reverse] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(2026), + [anon_sym_RBRACE] = ACTIONS(2026), + [anon_sym_SEMI] = ACTIONS(2026), + [anon_sym_LPAREN] = ACTIONS(2026), + [anon_sym_RPAREN] = ACTIONS(2026), + [sym_integer] = ACTIONS(2028), + [sym_float] = ACTIONS(2026), + [sym_string] = ACTIONS(2026), + [anon_sym_true] = ACTIONS(2028), + [anon_sym_false] = ACTIONS(2028), + [anon_sym_LBRACK] = ACTIONS(2026), + [anon_sym_COLON] = ACTIONS(2026), + [anon_sym_DOT_DOT] = ACTIONS(2285), + [anon_sym_PLUS] = ACTIONS(2026), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(2026), + [anon_sym_SLASH] = ACTIONS(2026), + [anon_sym_PERCENT] = ACTIONS(2026), + [anon_sym_EQ_EQ] = ACTIONS(2026), + [anon_sym_BANG_EQ] = ACTIONS(2026), + [anon_sym_AMP_AMP] = ACTIONS(2026), + [anon_sym_PIPE_PIPE] = ACTIONS(2026), + [anon_sym_GT] = ACTIONS(2028), + [anon_sym_LT] = ACTIONS(2028), + [anon_sym_GT_EQ] = ACTIONS(2026), + [anon_sym_LT_EQ] = ACTIONS(2026), + [anon_sym_if] = ACTIONS(2028), + [anon_sym_match] = ACTIONS(2028), + [anon_sym_EQ_GT] = ACTIONS(2026), + [anon_sym_while] = ACTIONS(2028), + [anon_sym_for] = ACTIONS(2028), + [anon_sym_asyncfor] = ACTIONS(2026), + [anon_sym_transform] = ACTIONS(2028), + [anon_sym_filter] = ACTIONS(2028), + [anon_sym_find] = ACTIONS(2028), + [anon_sym_remove] = ACTIONS(2028), + [anon_sym_reduce] = ACTIONS(2028), + [anon_sym_select] = ACTIONS(2028), + [anon_sym_insert] = ACTIONS(2028), + [anon_sym_async] = ACTIONS(2028), + [anon_sym_PIPE] = ACTIONS(2028), + [anon_sym_table] = ACTIONS(2028), + [anon_sym_assert] = ACTIONS(2028), + [anon_sym_assert_equal] = ACTIONS(2028), + [anon_sym_download] = ACTIONS(2028), + [anon_sym_help] = ACTIONS(2028), + [anon_sym_length] = ACTIONS(2028), + [anon_sym_output] = ACTIONS(2028), + [anon_sym_output_error] = ACTIONS(2028), + [anon_sym_type] = ACTIONS(2028), + [anon_sym_append] = ACTIONS(2028), + [anon_sym_metadata] = ACTIONS(2028), + [anon_sym_move] = ACTIONS(2028), + [anon_sym_read] = ACTIONS(2028), + [anon_sym_workdir] = ACTIONS(2028), + [anon_sym_write] = ACTIONS(2028), + [anon_sym_from_json] = ACTIONS(2028), + [anon_sym_to_json] = ACTIONS(2028), + [anon_sym_to_string] = ACTIONS(2028), + [anon_sym_to_float] = ACTIONS(2028), + [anon_sym_bash] = ACTIONS(2028), + [anon_sym_fish] = ACTIONS(2028), + [anon_sym_raw] = ACTIONS(2028), + [anon_sym_sh] = ACTIONS(2028), + [anon_sym_zsh] = ACTIONS(2028), + [anon_sym_random] = ACTIONS(2028), + [anon_sym_random_boolean] = ACTIONS(2028), + [anon_sym_random_float] = ACTIONS(2028), + [anon_sym_random_integer] = ACTIONS(2028), + [anon_sym_columns] = ACTIONS(2028), + [anon_sym_rows] = ACTIONS(2028), + [anon_sym_reverse] = ACTIONS(2028), }, [468] = { - [sym_statement] = STATE(376), - [sym_expression] = STATE(925), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(867), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(980), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(376), - [sym_identifier] = ACTIONS(5), + [ts_builtin_sym_end] = ACTIONS(2215), + [sym_identifier] = ACTIONS(2217), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(3099), - [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_asyncfor] = 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_async] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(49), - [anon_sym_assert] = ACTIONS(51), - [anon_sym_assert_equal] = ACTIONS(51), - [anon_sym_download] = ACTIONS(51), - [anon_sym_help] = ACTIONS(51), - [anon_sym_length] = ACTIONS(51), - [anon_sym_output] = ACTIONS(51), - [anon_sym_output_error] = ACTIONS(51), - [anon_sym_type] = ACTIONS(51), - [anon_sym_append] = ACTIONS(51), - [anon_sym_metadata] = ACTIONS(51), - [anon_sym_move] = ACTIONS(51), - [anon_sym_read] = ACTIONS(51), - [anon_sym_workdir] = ACTIONS(51), - [anon_sym_write] = ACTIONS(51), - [anon_sym_from_json] = ACTIONS(51), - [anon_sym_to_json] = ACTIONS(51), - [anon_sym_to_string] = ACTIONS(51), - [anon_sym_to_float] = ACTIONS(51), - [anon_sym_bash] = ACTIONS(51), - [anon_sym_fish] = ACTIONS(51), - [anon_sym_raw] = ACTIONS(51), - [anon_sym_sh] = ACTIONS(51), - [anon_sym_zsh] = ACTIONS(51), - [anon_sym_random] = ACTIONS(51), - [anon_sym_random_boolean] = ACTIONS(51), - [anon_sym_random_float] = ACTIONS(51), - [anon_sym_random_integer] = ACTIONS(51), - [anon_sym_columns] = ACTIONS(51), - [anon_sym_rows] = ACTIONS(51), - [anon_sym_reverse] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_RBRACE] = ACTIONS(2215), + [anon_sym_SEMI] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(2215), + [anon_sym_RPAREN] = ACTIONS(2215), + [anon_sym_COMMA] = ACTIONS(2215), + [sym_integer] = ACTIONS(2217), + [sym_float] = ACTIONS(2215), + [sym_string] = ACTIONS(2215), + [anon_sym_true] = ACTIONS(2217), + [anon_sym_false] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(2215), + [anon_sym_RBRACK] = ACTIONS(2215), + [anon_sym_COLON] = ACTIONS(2215), + [anon_sym_DOT_DOT] = ACTIONS(2215), + [anon_sym_PLUS] = ACTIONS(2215), + [anon_sym_DASH] = ACTIONS(2217), + [anon_sym_STAR] = ACTIONS(2215), + [anon_sym_SLASH] = ACTIONS(2215), + [anon_sym_PERCENT] = ACTIONS(2215), + [anon_sym_EQ_EQ] = ACTIONS(2215), + [anon_sym_BANG_EQ] = ACTIONS(2215), + [anon_sym_AMP_AMP] = ACTIONS(2215), + [anon_sym_PIPE_PIPE] = ACTIONS(2215), + [anon_sym_GT] = ACTIONS(2217), + [anon_sym_LT] = ACTIONS(2217), + [anon_sym_GT_EQ] = ACTIONS(2215), + [anon_sym_LT_EQ] = ACTIONS(2215), + [anon_sym_if] = ACTIONS(2217), + [anon_sym_match] = ACTIONS(2217), + [anon_sym_EQ_GT] = ACTIONS(2215), + [anon_sym_while] = ACTIONS(2217), + [anon_sym_for] = ACTIONS(2217), + [anon_sym_asyncfor] = ACTIONS(2215), + [anon_sym_transform] = ACTIONS(2217), + [anon_sym_filter] = ACTIONS(2217), + [anon_sym_find] = ACTIONS(2217), + [anon_sym_remove] = ACTIONS(2217), + [anon_sym_reduce] = ACTIONS(2217), + [anon_sym_select] = ACTIONS(2217), + [anon_sym_insert] = ACTIONS(2217), + [anon_sym_async] = ACTIONS(2217), + [anon_sym_PIPE] = ACTIONS(2217), + [anon_sym_table] = ACTIONS(2217), + [anon_sym_assert] = ACTIONS(2217), + [anon_sym_assert_equal] = ACTIONS(2217), + [anon_sym_download] = ACTIONS(2217), + [anon_sym_help] = ACTIONS(2217), + [anon_sym_length] = ACTIONS(2217), + [anon_sym_output] = ACTIONS(2217), + [anon_sym_output_error] = ACTIONS(2217), + [anon_sym_type] = ACTIONS(2217), + [anon_sym_append] = ACTIONS(2217), + [anon_sym_metadata] = ACTIONS(2217), + [anon_sym_move] = ACTIONS(2217), + [anon_sym_read] = ACTIONS(2217), + [anon_sym_workdir] = ACTIONS(2217), + [anon_sym_write] = ACTIONS(2217), + [anon_sym_from_json] = ACTIONS(2217), + [anon_sym_to_json] = ACTIONS(2217), + [anon_sym_to_string] = ACTIONS(2217), + [anon_sym_to_float] = ACTIONS(2217), + [anon_sym_bash] = ACTIONS(2217), + [anon_sym_fish] = ACTIONS(2217), + [anon_sym_raw] = ACTIONS(2217), + [anon_sym_sh] = ACTIONS(2217), + [anon_sym_zsh] = ACTIONS(2217), + [anon_sym_random] = ACTIONS(2217), + [anon_sym_random_boolean] = ACTIONS(2217), + [anon_sym_random_float] = ACTIONS(2217), + [anon_sym_random_integer] = ACTIONS(2217), + [anon_sym_columns] = ACTIONS(2217), + [anon_sym_rows] = ACTIONS(2217), + [anon_sym_reverse] = ACTIONS(2217), }, [469] = { - [sym_block] = STATE(704), - [sym_statement] = STATE(35), - [sym_expression] = STATE(701), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_logic] = STATE(706), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(582), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1866), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(320), - [aux_sym_block_repeat1] = STATE(35), - [sym_identifier] = ACTIONS(149), + [sym_math_operator] = STATE(821), + [sym_logic_operator] = STATE(822), + [ts_builtin_sym_end] = ACTIONS(2071), + [sym_identifier] = ACTIONS(2073), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_if] = ACTIONS(197), - [anon_sym_match] = ACTIONS(497), - [anon_sym_EQ_GT] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_asyncfor] = ACTIONS(505), - [anon_sym_transform] = ACTIONS(507), - [anon_sym_filter] = ACTIONS(509), - [anon_sym_find] = ACTIONS(511), - [anon_sym_remove] = ACTIONS(513), - [anon_sym_reduce] = ACTIONS(515), - [anon_sym_select] = ACTIONS(517), - [anon_sym_insert] = ACTIONS(519), - [anon_sym_async] = ACTIONS(521), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(523), - [anon_sym_assert] = ACTIONS(525), - [anon_sym_assert_equal] = ACTIONS(525), - [anon_sym_download] = ACTIONS(525), - [anon_sym_help] = ACTIONS(525), - [anon_sym_length] = ACTIONS(525), - [anon_sym_output] = ACTIONS(525), - [anon_sym_output_error] = ACTIONS(525), - [anon_sym_type] = ACTIONS(525), - [anon_sym_append] = ACTIONS(525), - [anon_sym_metadata] = ACTIONS(525), - [anon_sym_move] = ACTIONS(525), - [anon_sym_read] = ACTIONS(525), - [anon_sym_workdir] = ACTIONS(525), - [anon_sym_write] = ACTIONS(525), - [anon_sym_from_json] = ACTIONS(525), - [anon_sym_to_json] = ACTIONS(525), - [anon_sym_to_string] = ACTIONS(525), - [anon_sym_to_float] = ACTIONS(525), - [anon_sym_bash] = ACTIONS(525), - [anon_sym_fish] = ACTIONS(525), - [anon_sym_raw] = ACTIONS(525), - [anon_sym_sh] = ACTIONS(525), - [anon_sym_zsh] = ACTIONS(525), - [anon_sym_random] = ACTIONS(525), - [anon_sym_random_boolean] = ACTIONS(525), - [anon_sym_random_float] = ACTIONS(525), - [anon_sym_random_integer] = ACTIONS(525), - [anon_sym_columns] = ACTIONS(525), - [anon_sym_rows] = ACTIONS(525), - [anon_sym_reverse] = ACTIONS(525), + [anon_sym_LBRACE] = ACTIONS(2071), + [anon_sym_RBRACE] = ACTIONS(2071), + [anon_sym_SEMI] = ACTIONS(2071), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_RPAREN] = ACTIONS(2071), + [sym_integer] = ACTIONS(2073), + [sym_float] = ACTIONS(2071), + [sym_string] = ACTIONS(2071), + [anon_sym_true] = ACTIONS(2073), + [anon_sym_false] = ACTIONS(2073), + [anon_sym_LBRACK] = ACTIONS(2071), + [anon_sym_COLON] = ACTIONS(526), + [anon_sym_DOT_DOT] = ACTIONS(2071), + [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(2073), + [anon_sym_match] = ACTIONS(2073), + [anon_sym_EQ_GT] = ACTIONS(2071), + [anon_sym_while] = ACTIONS(2073), + [anon_sym_for] = ACTIONS(2073), + [anon_sym_asyncfor] = ACTIONS(2071), + [anon_sym_transform] = ACTIONS(2073), + [anon_sym_filter] = ACTIONS(2073), + [anon_sym_find] = ACTIONS(2073), + [anon_sym_remove] = ACTIONS(2073), + [anon_sym_reduce] = ACTIONS(2073), + [anon_sym_select] = ACTIONS(2073), + [anon_sym_insert] = ACTIONS(2073), + [anon_sym_async] = ACTIONS(2073), + [anon_sym_PIPE] = ACTIONS(2073), + [anon_sym_table] = ACTIONS(2073), + [anon_sym_assert] = ACTIONS(2073), + [anon_sym_assert_equal] = ACTIONS(2073), + [anon_sym_download] = ACTIONS(2073), + [anon_sym_help] = ACTIONS(2073), + [anon_sym_length] = ACTIONS(2073), + [anon_sym_output] = ACTIONS(2073), + [anon_sym_output_error] = ACTIONS(2073), + [anon_sym_type] = ACTIONS(2073), + [anon_sym_append] = ACTIONS(2073), + [anon_sym_metadata] = ACTIONS(2073), + [anon_sym_move] = ACTIONS(2073), + [anon_sym_read] = ACTIONS(2073), + [anon_sym_workdir] = ACTIONS(2073), + [anon_sym_write] = ACTIONS(2073), + [anon_sym_from_json] = ACTIONS(2073), + [anon_sym_to_json] = ACTIONS(2073), + [anon_sym_to_string] = ACTIONS(2073), + [anon_sym_to_float] = ACTIONS(2073), + [anon_sym_bash] = ACTIONS(2073), + [anon_sym_fish] = ACTIONS(2073), + [anon_sym_raw] = ACTIONS(2073), + [anon_sym_sh] = ACTIONS(2073), + [anon_sym_zsh] = ACTIONS(2073), + [anon_sym_random] = ACTIONS(2073), + [anon_sym_random_boolean] = ACTIONS(2073), + [anon_sym_random_float] = ACTIONS(2073), + [anon_sym_random_integer] = ACTIONS(2073), + [anon_sym_columns] = ACTIONS(2073), + [anon_sym_rows] = ACTIONS(2073), + [anon_sym_reverse] = ACTIONS(2073), }, [470] = { - [sym_block] = STATE(1543), - [sym_statement] = STATE(254), - [sym_expression] = STATE(888), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(822), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(787), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(254), - [sym_identifier] = ACTIONS(1846), + [ts_builtin_sym_end] = ACTIONS(2207), + [sym_identifier] = ACTIONS(2209), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2164), - [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(1284), - [anon_sym_match] = ACTIONS(1850), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(1852), - [anon_sym_for] = ACTIONS(1854), - [anon_sym_asyncfor] = ACTIONS(1856), - [anon_sym_transform] = ACTIONS(1858), - [anon_sym_filter] = ACTIONS(1860), - [anon_sym_find] = ACTIONS(1862), - [anon_sym_remove] = ACTIONS(1864), - [anon_sym_reduce] = ACTIONS(1866), - [anon_sym_select] = ACTIONS(1868), - [anon_sym_insert] = ACTIONS(43), - [anon_sym_async] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(49), - [anon_sym_assert] = ACTIONS(51), - [anon_sym_assert_equal] = ACTIONS(51), - [anon_sym_download] = ACTIONS(51), - [anon_sym_help] = ACTIONS(51), - [anon_sym_length] = ACTIONS(51), - [anon_sym_output] = ACTIONS(51), - [anon_sym_output_error] = ACTIONS(51), - [anon_sym_type] = ACTIONS(51), - [anon_sym_append] = ACTIONS(51), - [anon_sym_metadata] = ACTIONS(51), - [anon_sym_move] = ACTIONS(51), - [anon_sym_read] = ACTIONS(51), - [anon_sym_workdir] = ACTIONS(51), - [anon_sym_write] = ACTIONS(51), - [anon_sym_from_json] = ACTIONS(51), - [anon_sym_to_json] = ACTIONS(51), - [anon_sym_to_string] = ACTIONS(51), - [anon_sym_to_float] = ACTIONS(51), - [anon_sym_bash] = ACTIONS(51), - [anon_sym_fish] = ACTIONS(51), - [anon_sym_raw] = ACTIONS(51), - [anon_sym_sh] = ACTIONS(51), - [anon_sym_zsh] = ACTIONS(51), - [anon_sym_random] = ACTIONS(51), - [anon_sym_random_boolean] = ACTIONS(51), - [anon_sym_random_float] = ACTIONS(51), - [anon_sym_random_integer] = ACTIONS(51), - [anon_sym_columns] = ACTIONS(51), - [anon_sym_rows] = ACTIONS(51), - [anon_sym_reverse] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_RBRACE] = ACTIONS(2207), + [anon_sym_SEMI] = ACTIONS(2207), + [anon_sym_LPAREN] = ACTIONS(2207), + [anon_sym_RPAREN] = ACTIONS(2207), + [anon_sym_COMMA] = ACTIONS(2207), + [sym_integer] = ACTIONS(2209), + [sym_float] = ACTIONS(2207), + [sym_string] = ACTIONS(2207), + [anon_sym_true] = ACTIONS(2209), + [anon_sym_false] = ACTIONS(2209), + [anon_sym_LBRACK] = ACTIONS(2207), + [anon_sym_RBRACK] = ACTIONS(2207), + [anon_sym_COLON] = ACTIONS(2207), + [anon_sym_DOT_DOT] = ACTIONS(2207), + [anon_sym_PLUS] = ACTIONS(2207), + [anon_sym_DASH] = ACTIONS(2209), + [anon_sym_STAR] = ACTIONS(2207), + [anon_sym_SLASH] = ACTIONS(2207), + [anon_sym_PERCENT] = ACTIONS(2207), + [anon_sym_EQ_EQ] = ACTIONS(2207), + [anon_sym_BANG_EQ] = ACTIONS(2207), + [anon_sym_AMP_AMP] = ACTIONS(2207), + [anon_sym_PIPE_PIPE] = ACTIONS(2207), + [anon_sym_GT] = ACTIONS(2209), + [anon_sym_LT] = ACTIONS(2209), + [anon_sym_GT_EQ] = ACTIONS(2207), + [anon_sym_LT_EQ] = ACTIONS(2207), + [anon_sym_if] = ACTIONS(2209), + [anon_sym_match] = ACTIONS(2209), + [anon_sym_EQ_GT] = ACTIONS(2207), + [anon_sym_while] = ACTIONS(2209), + [anon_sym_for] = ACTIONS(2209), + [anon_sym_asyncfor] = ACTIONS(2207), + [anon_sym_transform] = ACTIONS(2209), + [anon_sym_filter] = ACTIONS(2209), + [anon_sym_find] = ACTIONS(2209), + [anon_sym_remove] = ACTIONS(2209), + [anon_sym_reduce] = ACTIONS(2209), + [anon_sym_select] = ACTIONS(2209), + [anon_sym_insert] = ACTIONS(2209), + [anon_sym_async] = ACTIONS(2209), + [anon_sym_PIPE] = ACTIONS(2209), + [anon_sym_table] = ACTIONS(2209), + [anon_sym_assert] = ACTIONS(2209), + [anon_sym_assert_equal] = ACTIONS(2209), + [anon_sym_download] = ACTIONS(2209), + [anon_sym_help] = ACTIONS(2209), + [anon_sym_length] = ACTIONS(2209), + [anon_sym_output] = ACTIONS(2209), + [anon_sym_output_error] = ACTIONS(2209), + [anon_sym_type] = ACTIONS(2209), + [anon_sym_append] = ACTIONS(2209), + [anon_sym_metadata] = ACTIONS(2209), + [anon_sym_move] = ACTIONS(2209), + [anon_sym_read] = ACTIONS(2209), + [anon_sym_workdir] = ACTIONS(2209), + [anon_sym_write] = ACTIONS(2209), + [anon_sym_from_json] = ACTIONS(2209), + [anon_sym_to_json] = ACTIONS(2209), + [anon_sym_to_string] = ACTIONS(2209), + [anon_sym_to_float] = ACTIONS(2209), + [anon_sym_bash] = ACTIONS(2209), + [anon_sym_fish] = ACTIONS(2209), + [anon_sym_raw] = ACTIONS(2209), + [anon_sym_sh] = ACTIONS(2209), + [anon_sym_zsh] = ACTIONS(2209), + [anon_sym_random] = ACTIONS(2209), + [anon_sym_random_boolean] = ACTIONS(2209), + [anon_sym_random_float] = ACTIONS(2209), + [anon_sym_random_integer] = ACTIONS(2209), + [anon_sym_columns] = ACTIONS(2209), + [anon_sym_rows] = ACTIONS(2209), + [anon_sym_reverse] = ACTIONS(2209), }, [471] = { - [sym_block] = STATE(861), - [sym_statement] = STATE(46), - [sym_expression] = STATE(824), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(739), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(653), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [aux_sym_block_repeat1] = STATE(46), - [sym_identifier] = ACTIONS(1198), + [ts_builtin_sym_end] = ACTIONS(2203), + [sym_identifier] = ACTIONS(2205), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(877), - [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(627), - [anon_sym_match] = ACTIONS(1202), - [anon_sym_EQ_GT] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(1206), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_asyncfor] = ACTIONS(1210), - [anon_sym_transform] = ACTIONS(1212), - [anon_sym_filter] = ACTIONS(1214), - [anon_sym_find] = ACTIONS(1216), - [anon_sym_remove] = ACTIONS(1218), - [anon_sym_reduce] = ACTIONS(1220), - [anon_sym_select] = ACTIONS(1222), - [anon_sym_insert] = ACTIONS(1224), - [anon_sym_async] = ACTIONS(1226), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(1228), - [anon_sym_assert] = ACTIONS(1230), - [anon_sym_assert_equal] = ACTIONS(1230), - [anon_sym_download] = ACTIONS(1230), - [anon_sym_help] = ACTIONS(1230), - [anon_sym_length] = ACTIONS(1230), - [anon_sym_output] = ACTIONS(1230), - [anon_sym_output_error] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_append] = ACTIONS(1230), - [anon_sym_metadata] = ACTIONS(1230), - [anon_sym_move] = ACTIONS(1230), - [anon_sym_read] = ACTIONS(1230), - [anon_sym_workdir] = ACTIONS(1230), - [anon_sym_write] = ACTIONS(1230), - [anon_sym_from_json] = ACTIONS(1230), - [anon_sym_to_json] = ACTIONS(1230), - [anon_sym_to_string] = ACTIONS(1230), - [anon_sym_to_float] = ACTIONS(1230), - [anon_sym_bash] = ACTIONS(1230), - [anon_sym_fish] = ACTIONS(1230), - [anon_sym_raw] = ACTIONS(1230), - [anon_sym_sh] = ACTIONS(1230), - [anon_sym_zsh] = ACTIONS(1230), - [anon_sym_random] = ACTIONS(1230), - [anon_sym_random_boolean] = ACTIONS(1230), - [anon_sym_random_float] = ACTIONS(1230), - [anon_sym_random_integer] = ACTIONS(1230), - [anon_sym_columns] = ACTIONS(1230), - [anon_sym_rows] = ACTIONS(1230), - [anon_sym_reverse] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(2203), + [anon_sym_RBRACE] = ACTIONS(2203), + [anon_sym_SEMI] = ACTIONS(2203), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2203), + [anon_sym_COMMA] = ACTIONS(2203), + [sym_integer] = ACTIONS(2205), + [sym_float] = ACTIONS(2203), + [sym_string] = ACTIONS(2203), + [anon_sym_true] = ACTIONS(2205), + [anon_sym_false] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(2203), + [anon_sym_RBRACK] = ACTIONS(2203), + [anon_sym_COLON] = ACTIONS(2203), + [anon_sym_DOT_DOT] = ACTIONS(2203), + [anon_sym_PLUS] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_STAR] = ACTIONS(2203), + [anon_sym_SLASH] = ACTIONS(2203), + [anon_sym_PERCENT] = ACTIONS(2203), + [anon_sym_EQ_EQ] = ACTIONS(2203), + [anon_sym_BANG_EQ] = ACTIONS(2203), + [anon_sym_AMP_AMP] = ACTIONS(2203), + [anon_sym_PIPE_PIPE] = ACTIONS(2203), + [anon_sym_GT] = ACTIONS(2205), + [anon_sym_LT] = ACTIONS(2205), + [anon_sym_GT_EQ] = ACTIONS(2203), + [anon_sym_LT_EQ] = ACTIONS(2203), + [anon_sym_if] = ACTIONS(2205), + [anon_sym_match] = ACTIONS(2205), + [anon_sym_EQ_GT] = ACTIONS(2203), + [anon_sym_while] = ACTIONS(2205), + [anon_sym_for] = ACTIONS(2205), + [anon_sym_asyncfor] = ACTIONS(2203), + [anon_sym_transform] = ACTIONS(2205), + [anon_sym_filter] = ACTIONS(2205), + [anon_sym_find] = ACTIONS(2205), + [anon_sym_remove] = ACTIONS(2205), + [anon_sym_reduce] = ACTIONS(2205), + [anon_sym_select] = ACTIONS(2205), + [anon_sym_insert] = ACTIONS(2205), + [anon_sym_async] = ACTIONS(2205), + [anon_sym_PIPE] = ACTIONS(2205), + [anon_sym_table] = ACTIONS(2205), + [anon_sym_assert] = ACTIONS(2205), + [anon_sym_assert_equal] = ACTIONS(2205), + [anon_sym_download] = ACTIONS(2205), + [anon_sym_help] = ACTIONS(2205), + [anon_sym_length] = ACTIONS(2205), + [anon_sym_output] = ACTIONS(2205), + [anon_sym_output_error] = ACTIONS(2205), + [anon_sym_type] = ACTIONS(2205), + [anon_sym_append] = ACTIONS(2205), + [anon_sym_metadata] = ACTIONS(2205), + [anon_sym_move] = ACTIONS(2205), + [anon_sym_read] = ACTIONS(2205), + [anon_sym_workdir] = ACTIONS(2205), + [anon_sym_write] = ACTIONS(2205), + [anon_sym_from_json] = ACTIONS(2205), + [anon_sym_to_json] = ACTIONS(2205), + [anon_sym_to_string] = ACTIONS(2205), + [anon_sym_to_float] = ACTIONS(2205), + [anon_sym_bash] = ACTIONS(2205), + [anon_sym_fish] = ACTIONS(2205), + [anon_sym_raw] = ACTIONS(2205), + [anon_sym_sh] = ACTIONS(2205), + [anon_sym_zsh] = ACTIONS(2205), + [anon_sym_random] = ACTIONS(2205), + [anon_sym_random_boolean] = ACTIONS(2205), + [anon_sym_random_float] = ACTIONS(2205), + [anon_sym_random_integer] = ACTIONS(2205), + [anon_sym_columns] = ACTIONS(2205), + [anon_sym_rows] = ACTIONS(2205), + [anon_sym_reverse] = ACTIONS(2205), }, [472] = { - [sym_statement] = STATE(376), - [sym_expression] = STATE(925), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(867), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(980), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(376), - [sym_identifier] = ACTIONS(5), + [sym_math_operator] = STATE(784), + [sym_logic_operator] = STATE(783), + [ts_builtin_sym_end] = ACTIONS(2034), + [sym_identifier] = ACTIONS(2036), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(3101), - [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_asyncfor] = 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_async] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(49), - [anon_sym_assert] = ACTIONS(51), - [anon_sym_assert_equal] = ACTIONS(51), - [anon_sym_download] = ACTIONS(51), - [anon_sym_help] = ACTIONS(51), - [anon_sym_length] = ACTIONS(51), - [anon_sym_output] = ACTIONS(51), - [anon_sym_output_error] = ACTIONS(51), - [anon_sym_type] = ACTIONS(51), - [anon_sym_append] = ACTIONS(51), - [anon_sym_metadata] = ACTIONS(51), - [anon_sym_move] = ACTIONS(51), - [anon_sym_read] = ACTIONS(51), - [anon_sym_workdir] = ACTIONS(51), - [anon_sym_write] = ACTIONS(51), - [anon_sym_from_json] = ACTIONS(51), - [anon_sym_to_json] = ACTIONS(51), - [anon_sym_to_string] = ACTIONS(51), - [anon_sym_to_float] = ACTIONS(51), - [anon_sym_bash] = ACTIONS(51), - [anon_sym_fish] = ACTIONS(51), - [anon_sym_raw] = ACTIONS(51), - [anon_sym_sh] = ACTIONS(51), - [anon_sym_zsh] = ACTIONS(51), - [anon_sym_random] = ACTIONS(51), - [anon_sym_random_boolean] = ACTIONS(51), - [anon_sym_random_float] = ACTIONS(51), - [anon_sym_random_integer] = ACTIONS(51), - [anon_sym_columns] = ACTIONS(51), - [anon_sym_rows] = ACTIONS(51), - [anon_sym_reverse] = ACTIONS(51), + [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(2278), + [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_COLON] = ACTIONS(261), + [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(2036), + [anon_sym_match] = ACTIONS(2036), + [anon_sym_EQ_GT] = ACTIONS(2034), + [anon_sym_while] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_asyncfor] = ACTIONS(2034), + [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), }, [473] = { - [sym_block] = STATE(688), - [sym_statement] = STATE(17), - [sym_expression] = STATE(601), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_logic] = STATE(706), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(557), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1910), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(284), - [aux_sym_block_repeat1] = STATE(17), - [sym_identifier] = ACTIONS(149), + [sym_math_operator] = STATE(838), + [sym_logic_operator] = STATE(837), + [ts_builtin_sym_end] = ACTIONS(2041), + [sym_identifier] = ACTIONS(2043), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_if] = ACTIONS(81), - [anon_sym_match] = ACTIONS(165), - [anon_sym_EQ_GT] = ACTIONS(167), - [anon_sym_while] = ACTIONS(169), - [anon_sym_for] = ACTIONS(171), - [anon_sym_asyncfor] = ACTIONS(173), - [anon_sym_transform] = ACTIONS(175), - [anon_sym_filter] = ACTIONS(177), - [anon_sym_find] = ACTIONS(179), - [anon_sym_remove] = ACTIONS(181), - [anon_sym_reduce] = ACTIONS(183), - [anon_sym_select] = ACTIONS(185), - [anon_sym_insert] = ACTIONS(187), - [anon_sym_async] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(191), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_assert_equal] = ACTIONS(193), - [anon_sym_download] = ACTIONS(193), - [anon_sym_help] = ACTIONS(193), - [anon_sym_length] = ACTIONS(193), - [anon_sym_output] = ACTIONS(193), - [anon_sym_output_error] = ACTIONS(193), - [anon_sym_type] = ACTIONS(193), - [anon_sym_append] = ACTIONS(193), - [anon_sym_metadata] = ACTIONS(193), - [anon_sym_move] = ACTIONS(193), - [anon_sym_read] = ACTIONS(193), - [anon_sym_workdir] = ACTIONS(193), - [anon_sym_write] = ACTIONS(193), - [anon_sym_from_json] = ACTIONS(193), - [anon_sym_to_json] = ACTIONS(193), - [anon_sym_to_string] = ACTIONS(193), - [anon_sym_to_float] = ACTIONS(193), - [anon_sym_bash] = ACTIONS(193), - [anon_sym_fish] = ACTIONS(193), - [anon_sym_raw] = ACTIONS(193), - [anon_sym_sh] = ACTIONS(193), - [anon_sym_zsh] = ACTIONS(193), - [anon_sym_random] = ACTIONS(193), - [anon_sym_random_boolean] = ACTIONS(193), - [anon_sym_random_float] = ACTIONS(193), - [anon_sym_random_integer] = ACTIONS(193), - [anon_sym_columns] = ACTIONS(193), - [anon_sym_rows] = ACTIONS(193), - [anon_sym_reverse] = ACTIONS(193), + [anon_sym_LBRACE] = ACTIONS(2041), + [anon_sym_RBRACE] = ACTIONS(2041), + [anon_sym_SEMI] = ACTIONS(2283), + [anon_sym_LPAREN] = ACTIONS(2041), + [sym_integer] = ACTIONS(2043), + [sym_float] = ACTIONS(2041), + [sym_string] = ACTIONS(2041), + [anon_sym_true] = ACTIONS(2043), + [anon_sym_false] = ACTIONS(2043), + [anon_sym_LBRACK] = ACTIONS(2041), + [anon_sym_COLON] = ACTIONS(225), + [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(2043), + [anon_sym_elseif] = ACTIONS(2041), + [anon_sym_else] = ACTIONS(2043), + [anon_sym_match] = ACTIONS(2043), + [anon_sym_EQ_GT] = ACTIONS(2041), + [anon_sym_while] = ACTIONS(2043), + [anon_sym_for] = ACTIONS(2043), + [anon_sym_asyncfor] = ACTIONS(2041), + [anon_sym_transform] = ACTIONS(2043), + [anon_sym_filter] = ACTIONS(2043), + [anon_sym_find] = ACTIONS(2043), + [anon_sym_remove] = ACTIONS(2043), + [anon_sym_reduce] = ACTIONS(2043), + [anon_sym_select] = ACTIONS(2043), + [anon_sym_insert] = ACTIONS(2043), + [anon_sym_async] = ACTIONS(2043), + [anon_sym_PIPE] = ACTIONS(2043), + [anon_sym_table] = ACTIONS(2043), + [anon_sym_assert] = ACTIONS(2043), + [anon_sym_assert_equal] = ACTIONS(2043), + [anon_sym_download] = ACTIONS(2043), + [anon_sym_help] = ACTIONS(2043), + [anon_sym_length] = ACTIONS(2043), + [anon_sym_output] = ACTIONS(2043), + [anon_sym_output_error] = ACTIONS(2043), + [anon_sym_type] = ACTIONS(2043), + [anon_sym_append] = ACTIONS(2043), + [anon_sym_metadata] = ACTIONS(2043), + [anon_sym_move] = ACTIONS(2043), + [anon_sym_read] = ACTIONS(2043), + [anon_sym_workdir] = ACTIONS(2043), + [anon_sym_write] = ACTIONS(2043), + [anon_sym_from_json] = ACTIONS(2043), + [anon_sym_to_json] = ACTIONS(2043), + [anon_sym_to_string] = ACTIONS(2043), + [anon_sym_to_float] = ACTIONS(2043), + [anon_sym_bash] = ACTIONS(2043), + [anon_sym_fish] = ACTIONS(2043), + [anon_sym_raw] = ACTIONS(2043), + [anon_sym_sh] = ACTIONS(2043), + [anon_sym_zsh] = ACTIONS(2043), + [anon_sym_random] = ACTIONS(2043), + [anon_sym_random_boolean] = ACTIONS(2043), + [anon_sym_random_float] = ACTIONS(2043), + [anon_sym_random_integer] = ACTIONS(2043), + [anon_sym_columns] = ACTIONS(2043), + [anon_sym_rows] = ACTIONS(2043), + [anon_sym_reverse] = ACTIONS(2043), }, [474] = { - [sym_block] = STATE(851), - [sym_statement] = STATE(61), - [sym_expression] = STATE(888), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(822), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(787), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(61), - [sym_identifier] = ACTIONS(1846), + [ts_builtin_sym_end] = ACTIONS(2199), + [sym_identifier] = ACTIONS(2201), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(877), - [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(1284), - [anon_sym_match] = ACTIONS(1850), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(1852), - [anon_sym_for] = ACTIONS(1854), - [anon_sym_asyncfor] = ACTIONS(1856), - [anon_sym_transform] = ACTIONS(1858), - [anon_sym_filter] = ACTIONS(1860), - [anon_sym_find] = ACTIONS(1862), - [anon_sym_remove] = ACTIONS(1864), - [anon_sym_reduce] = ACTIONS(1866), - [anon_sym_select] = ACTIONS(1868), - [anon_sym_insert] = ACTIONS(43), - [anon_sym_async] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(49), - [anon_sym_assert] = ACTIONS(51), - [anon_sym_assert_equal] = ACTIONS(51), - [anon_sym_download] = ACTIONS(51), - [anon_sym_help] = ACTIONS(51), - [anon_sym_length] = ACTIONS(51), - [anon_sym_output] = ACTIONS(51), - [anon_sym_output_error] = ACTIONS(51), - [anon_sym_type] = ACTIONS(51), - [anon_sym_append] = ACTIONS(51), - [anon_sym_metadata] = ACTIONS(51), - [anon_sym_move] = ACTIONS(51), - [anon_sym_read] = ACTIONS(51), - [anon_sym_workdir] = ACTIONS(51), - [anon_sym_write] = ACTIONS(51), - [anon_sym_from_json] = ACTIONS(51), - [anon_sym_to_json] = ACTIONS(51), - [anon_sym_to_string] = ACTIONS(51), - [anon_sym_to_float] = ACTIONS(51), - [anon_sym_bash] = ACTIONS(51), - [anon_sym_fish] = ACTIONS(51), - [anon_sym_raw] = ACTIONS(51), - [anon_sym_sh] = ACTIONS(51), - [anon_sym_zsh] = ACTIONS(51), - [anon_sym_random] = ACTIONS(51), - [anon_sym_random_boolean] = ACTIONS(51), - [anon_sym_random_float] = ACTIONS(51), - [anon_sym_random_integer] = ACTIONS(51), - [anon_sym_columns] = ACTIONS(51), - [anon_sym_rows] = ACTIONS(51), - [anon_sym_reverse] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(2199), + [anon_sym_RBRACE] = ACTIONS(2199), + [anon_sym_SEMI] = ACTIONS(2199), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_RPAREN] = ACTIONS(2199), + [anon_sym_COMMA] = ACTIONS(2199), + [sym_integer] = ACTIONS(2201), + [sym_float] = ACTIONS(2199), + [sym_string] = ACTIONS(2199), + [anon_sym_true] = ACTIONS(2201), + [anon_sym_false] = ACTIONS(2201), + [anon_sym_LBRACK] = ACTIONS(2199), + [anon_sym_RBRACK] = ACTIONS(2199), + [anon_sym_COLON] = ACTIONS(2199), + [anon_sym_DOT_DOT] = ACTIONS(2199), + [anon_sym_PLUS] = ACTIONS(2199), + [anon_sym_DASH] = ACTIONS(2201), + [anon_sym_STAR] = ACTIONS(2199), + [anon_sym_SLASH] = ACTIONS(2199), + [anon_sym_PERCENT] = ACTIONS(2199), + [anon_sym_EQ_EQ] = ACTIONS(2199), + [anon_sym_BANG_EQ] = ACTIONS(2199), + [anon_sym_AMP_AMP] = ACTIONS(2199), + [anon_sym_PIPE_PIPE] = ACTIONS(2199), + [anon_sym_GT] = ACTIONS(2201), + [anon_sym_LT] = ACTIONS(2201), + [anon_sym_GT_EQ] = ACTIONS(2199), + [anon_sym_LT_EQ] = ACTIONS(2199), + [anon_sym_if] = ACTIONS(2201), + [anon_sym_match] = ACTIONS(2201), + [anon_sym_EQ_GT] = ACTIONS(2199), + [anon_sym_while] = ACTIONS(2201), + [anon_sym_for] = ACTIONS(2201), + [anon_sym_asyncfor] = ACTIONS(2199), + [anon_sym_transform] = ACTIONS(2201), + [anon_sym_filter] = ACTIONS(2201), + [anon_sym_find] = ACTIONS(2201), + [anon_sym_remove] = ACTIONS(2201), + [anon_sym_reduce] = ACTIONS(2201), + [anon_sym_select] = ACTIONS(2201), + [anon_sym_insert] = ACTIONS(2201), + [anon_sym_async] = ACTIONS(2201), + [anon_sym_PIPE] = ACTIONS(2201), + [anon_sym_table] = ACTIONS(2201), + [anon_sym_assert] = ACTIONS(2201), + [anon_sym_assert_equal] = ACTIONS(2201), + [anon_sym_download] = ACTIONS(2201), + [anon_sym_help] = ACTIONS(2201), + [anon_sym_length] = ACTIONS(2201), + [anon_sym_output] = ACTIONS(2201), + [anon_sym_output_error] = ACTIONS(2201), + [anon_sym_type] = ACTIONS(2201), + [anon_sym_append] = ACTIONS(2201), + [anon_sym_metadata] = ACTIONS(2201), + [anon_sym_move] = ACTIONS(2201), + [anon_sym_read] = ACTIONS(2201), + [anon_sym_workdir] = ACTIONS(2201), + [anon_sym_write] = ACTIONS(2201), + [anon_sym_from_json] = ACTIONS(2201), + [anon_sym_to_json] = ACTIONS(2201), + [anon_sym_to_string] = ACTIONS(2201), + [anon_sym_to_float] = ACTIONS(2201), + [anon_sym_bash] = ACTIONS(2201), + [anon_sym_fish] = ACTIONS(2201), + [anon_sym_raw] = ACTIONS(2201), + [anon_sym_sh] = ACTIONS(2201), + [anon_sym_zsh] = ACTIONS(2201), + [anon_sym_random] = ACTIONS(2201), + [anon_sym_random_boolean] = ACTIONS(2201), + [anon_sym_random_float] = ACTIONS(2201), + [anon_sym_random_integer] = ACTIONS(2201), + [anon_sym_columns] = ACTIONS(2201), + [anon_sym_rows] = ACTIONS(2201), + [anon_sym_reverse] = ACTIONS(2201), }, [475] = { - [sym_block] = STATE(803), - [sym_statement] = STATE(22), - [sym_expression] = STATE(685), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(576), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(647), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1984), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(302), - [aux_sym_block_repeat1] = STATE(22), - [sym_identifier] = ACTIONS(229), + [sym_math_operator] = STATE(821), + [sym_logic_operator] = STATE(822), + [ts_builtin_sym_end] = ACTIONS(2026), + [sym_identifier] = ACTIONS(2028), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_if] = ACTIONS(245), - [anon_sym_match] = ACTIONS(247), - [anon_sym_EQ_GT] = ACTIONS(249), - [anon_sym_while] = ACTIONS(251), - [anon_sym_for] = ACTIONS(253), - [anon_sym_asyncfor] = ACTIONS(255), - [anon_sym_transform] = ACTIONS(257), - [anon_sym_filter] = ACTIONS(259), - [anon_sym_find] = ACTIONS(261), - [anon_sym_remove] = ACTIONS(263), - [anon_sym_reduce] = ACTIONS(265), - [anon_sym_select] = ACTIONS(267), - [anon_sym_insert] = ACTIONS(269), - [anon_sym_async] = ACTIONS(271), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(275), - [anon_sym_assert_equal] = ACTIONS(275), - [anon_sym_download] = ACTIONS(275), - [anon_sym_help] = ACTIONS(275), - [anon_sym_length] = ACTIONS(275), - [anon_sym_output] = ACTIONS(275), - [anon_sym_output_error] = ACTIONS(275), - [anon_sym_type] = ACTIONS(275), - [anon_sym_append] = ACTIONS(275), - [anon_sym_metadata] = ACTIONS(275), - [anon_sym_move] = ACTIONS(275), - [anon_sym_read] = ACTIONS(275), - [anon_sym_workdir] = ACTIONS(275), - [anon_sym_write] = ACTIONS(275), - [anon_sym_from_json] = ACTIONS(275), - [anon_sym_to_json] = ACTIONS(275), - [anon_sym_to_string] = ACTIONS(275), - [anon_sym_to_float] = ACTIONS(275), - [anon_sym_bash] = ACTIONS(275), - [anon_sym_fish] = ACTIONS(275), - [anon_sym_raw] = ACTIONS(275), - [anon_sym_sh] = ACTIONS(275), - [anon_sym_zsh] = ACTIONS(275), - [anon_sym_random] = ACTIONS(275), - [anon_sym_random_boolean] = ACTIONS(275), - [anon_sym_random_float] = ACTIONS(275), - [anon_sym_random_integer] = ACTIONS(275), - [anon_sym_columns] = ACTIONS(275), - [anon_sym_rows] = ACTIONS(275), - [anon_sym_reverse] = ACTIONS(275), + [anon_sym_LBRACE] = ACTIONS(2026), + [anon_sym_RBRACE] = ACTIONS(2026), + [anon_sym_SEMI] = ACTIONS(2026), + [anon_sym_LPAREN] = ACTIONS(2026), + [anon_sym_RPAREN] = ACTIONS(2026), + [sym_integer] = ACTIONS(2028), + [sym_float] = ACTIONS(2026), + [sym_string] = ACTIONS(2026), + [anon_sym_true] = ACTIONS(2028), + [anon_sym_false] = ACTIONS(2028), + [anon_sym_LBRACK] = ACTIONS(2026), + [anon_sym_COLON] = ACTIONS(2026), + [anon_sym_DOT_DOT] = ACTIONS(2026), + [anon_sym_PLUS] = ACTIONS(2026), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(2026), + [anon_sym_SLASH] = ACTIONS(2026), + [anon_sym_PERCENT] = ACTIONS(2026), + [anon_sym_EQ_EQ] = ACTIONS(2026), + [anon_sym_BANG_EQ] = ACTIONS(2026), + [anon_sym_AMP_AMP] = ACTIONS(2026), + [anon_sym_PIPE_PIPE] = ACTIONS(2026), + [anon_sym_GT] = ACTIONS(2028), + [anon_sym_LT] = ACTIONS(2028), + [anon_sym_GT_EQ] = ACTIONS(2026), + [anon_sym_LT_EQ] = ACTIONS(2026), + [anon_sym_if] = ACTIONS(2028), + [anon_sym_match] = ACTIONS(2028), + [anon_sym_EQ_GT] = ACTIONS(2026), + [anon_sym_while] = ACTIONS(2028), + [anon_sym_for] = ACTIONS(2028), + [anon_sym_asyncfor] = ACTIONS(2026), + [anon_sym_transform] = ACTIONS(2028), + [anon_sym_filter] = ACTIONS(2028), + [anon_sym_find] = ACTIONS(2028), + [anon_sym_remove] = ACTIONS(2028), + [anon_sym_reduce] = ACTIONS(2028), + [anon_sym_select] = ACTIONS(2028), + [anon_sym_insert] = ACTIONS(2028), + [anon_sym_async] = ACTIONS(2028), + [anon_sym_PIPE] = ACTIONS(2028), + [anon_sym_table] = ACTIONS(2028), + [anon_sym_assert] = ACTIONS(2028), + [anon_sym_assert_equal] = ACTIONS(2028), + [anon_sym_download] = ACTIONS(2028), + [anon_sym_help] = ACTIONS(2028), + [anon_sym_length] = ACTIONS(2028), + [anon_sym_output] = ACTIONS(2028), + [anon_sym_output_error] = ACTIONS(2028), + [anon_sym_type] = ACTIONS(2028), + [anon_sym_append] = ACTIONS(2028), + [anon_sym_metadata] = ACTIONS(2028), + [anon_sym_move] = ACTIONS(2028), + [anon_sym_read] = ACTIONS(2028), + [anon_sym_workdir] = ACTIONS(2028), + [anon_sym_write] = ACTIONS(2028), + [anon_sym_from_json] = ACTIONS(2028), + [anon_sym_to_json] = ACTIONS(2028), + [anon_sym_to_string] = ACTIONS(2028), + [anon_sym_to_float] = ACTIONS(2028), + [anon_sym_bash] = ACTIONS(2028), + [anon_sym_fish] = ACTIONS(2028), + [anon_sym_raw] = ACTIONS(2028), + [anon_sym_sh] = ACTIONS(2028), + [anon_sym_zsh] = ACTIONS(2028), + [anon_sym_random] = ACTIONS(2028), + [anon_sym_random_boolean] = ACTIONS(2028), + [anon_sym_random_float] = ACTIONS(2028), + [anon_sym_random_integer] = ACTIONS(2028), + [anon_sym_columns] = ACTIONS(2028), + [anon_sym_rows] = ACTIONS(2028), + [anon_sym_reverse] = ACTIONS(2028), }, [476] = { - [sym_block] = STATE(723), - [sym_statement] = STATE(24), - [sym_expression] = STATE(683), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_logic] = STATE(706), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(573), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1813), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(311), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(149), + [sym_expression] = STATE(567), + [sym__expression_kind] = STATE(585), + [aux_sym__expression_list] = STATE(426), + [sym_value] = STATE(585), + [sym_boolean] = STATE(586), + [sym_list] = STATE(586), + [sym_map] = STATE(586), + [sym_index] = STATE(585), + [sym_math] = STATE(585), + [sym_logic] = STATE(585), + [sym_identifier_list] = STATE(1193), + [sym_table] = STATE(586), + [sym_function] = STATE(586), + [sym_function_call] = STATE(585), + [sym__context_defined_function] = STATE(587), + [sym_built_in_function] = STATE(587), + [sym__built_in_function_name] = STATE(429), + [sym_identifier] = ACTIONS(1315), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_if] = ACTIONS(117), - [anon_sym_match] = ACTIONS(279), - [anon_sym_EQ_GT] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_for] = ACTIONS(285), - [anon_sym_asyncfor] = ACTIONS(287), - [anon_sym_transform] = ACTIONS(289), - [anon_sym_filter] = ACTIONS(291), - [anon_sym_find] = ACTIONS(293), - [anon_sym_remove] = ACTIONS(295), - [anon_sym_reduce] = ACTIONS(297), - [anon_sym_select] = ACTIONS(299), - [anon_sym_insert] = ACTIONS(301), - [anon_sym_async] = ACTIONS(303), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(305), - [anon_sym_assert] = ACTIONS(307), - [anon_sym_assert_equal] = ACTIONS(307), - [anon_sym_download] = ACTIONS(307), - [anon_sym_help] = ACTIONS(307), - [anon_sym_length] = ACTIONS(307), - [anon_sym_output] = ACTIONS(307), - [anon_sym_output_error] = ACTIONS(307), - [anon_sym_type] = ACTIONS(307), - [anon_sym_append] = ACTIONS(307), - [anon_sym_metadata] = ACTIONS(307), - [anon_sym_move] = ACTIONS(307), - [anon_sym_read] = ACTIONS(307), - [anon_sym_workdir] = ACTIONS(307), - [anon_sym_write] = ACTIONS(307), - [anon_sym_from_json] = ACTIONS(307), - [anon_sym_to_json] = ACTIONS(307), - [anon_sym_to_string] = ACTIONS(307), - [anon_sym_to_float] = ACTIONS(307), - [anon_sym_bash] = ACTIONS(307), - [anon_sym_fish] = ACTIONS(307), - [anon_sym_raw] = ACTIONS(307), - [anon_sym_sh] = ACTIONS(307), - [anon_sym_zsh] = ACTIONS(307), - [anon_sym_random] = ACTIONS(307), - [anon_sym_random_boolean] = ACTIONS(307), - [anon_sym_random_float] = ACTIONS(307), - [anon_sym_random_integer] = ACTIONS(307), - [anon_sym_columns] = ACTIONS(307), - [anon_sym_rows] = ACTIONS(307), - [anon_sym_reverse] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_RBRACE] = ACTIONS(1313), + [anon_sym_SEMI] = ACTIONS(1313), + [anon_sym_LPAREN] = ACTIONS(2049), + [anon_sym_COMMA] = ACTIONS(1313), + [sym_integer] = ACTIONS(2051), + [sym_float] = ACTIONS(2053), + [sym_string] = ACTIONS(2053), + [anon_sym_true] = ACTIONS(2055), + [anon_sym_false] = ACTIONS(2055), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_COLON] = ACTIONS(1313), + [anon_sym_PLUS] = ACTIONS(1313), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_PERCENT] = ACTIONS(1313), + [anon_sym_EQ_EQ] = ACTIONS(1313), + [anon_sym_BANG_EQ] = ACTIONS(1313), + [anon_sym_AMP_AMP] = ACTIONS(1313), + [anon_sym_PIPE_PIPE] = ACTIONS(1313), + [anon_sym_GT] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(1315), + [anon_sym_GT_EQ] = ACTIONS(1313), + [anon_sym_LT_EQ] = ACTIONS(1313), + [anon_sym_EQ_GT] = ACTIONS(2059), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2061), + [anon_sym_assert] = ACTIONS(1927), + [anon_sym_assert_equal] = ACTIONS(1927), + [anon_sym_download] = ACTIONS(1927), + [anon_sym_help] = ACTIONS(1927), + [anon_sym_length] = ACTIONS(1927), + [anon_sym_output] = ACTIONS(1927), + [anon_sym_output_error] = ACTIONS(1927), + [anon_sym_type] = ACTIONS(1927), + [anon_sym_append] = ACTIONS(1927), + [anon_sym_metadata] = ACTIONS(1927), + [anon_sym_move] = ACTIONS(1927), + [anon_sym_read] = ACTIONS(1927), + [anon_sym_workdir] = ACTIONS(1927), + [anon_sym_write] = ACTIONS(1927), + [anon_sym_from_json] = ACTIONS(1927), + [anon_sym_to_json] = ACTIONS(1927), + [anon_sym_to_string] = ACTIONS(1927), + [anon_sym_to_float] = ACTIONS(1927), + [anon_sym_bash] = ACTIONS(1927), + [anon_sym_fish] = ACTIONS(1927), + [anon_sym_raw] = ACTIONS(1927), + [anon_sym_sh] = ACTIONS(1927), + [anon_sym_zsh] = ACTIONS(1927), + [anon_sym_random] = ACTIONS(1927), + [anon_sym_random_boolean] = ACTIONS(1927), + [anon_sym_random_float] = ACTIONS(1927), + [anon_sym_random_integer] = ACTIONS(1927), + [anon_sym_columns] = ACTIONS(1927), + [anon_sym_rows] = ACTIONS(1927), + [anon_sym_reverse] = ACTIONS(1927), }, [477] = { - [sym_block] = STATE(1069), - [sym_statement] = STATE(382), - [sym_expression] = STATE(934), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(842), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(983), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [aux_sym_block_repeat1] = STATE(382), - [sym_identifier] = ACTIONS(2162), + [sym_math_operator] = STATE(821), + [sym_logic_operator] = STATE(822), + [ts_builtin_sym_end] = ACTIONS(2067), + [sym_identifier] = ACTIONS(2069), [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(1570), - [anon_sym_match] = ACTIONS(2166), - [anon_sym_EQ_GT] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(2168), - [anon_sym_for] = ACTIONS(2170), - [anon_sym_asyncfor] = ACTIONS(2172), - [anon_sym_transform] = ACTIONS(2174), - [anon_sym_filter] = ACTIONS(2176), - [anon_sym_find] = ACTIONS(2178), - [anon_sym_remove] = ACTIONS(2180), - [anon_sym_reduce] = ACTIONS(2182), - [anon_sym_select] = ACTIONS(2184), - [anon_sym_insert] = ACTIONS(1224), - [anon_sym_async] = ACTIONS(2186), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(1228), - [anon_sym_assert] = ACTIONS(1230), - [anon_sym_assert_equal] = ACTIONS(1230), - [anon_sym_download] = ACTIONS(1230), - [anon_sym_help] = ACTIONS(1230), - [anon_sym_length] = ACTIONS(1230), - [anon_sym_output] = ACTIONS(1230), - [anon_sym_output_error] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_append] = ACTIONS(1230), - [anon_sym_metadata] = ACTIONS(1230), - [anon_sym_move] = ACTIONS(1230), - [anon_sym_read] = ACTIONS(1230), - [anon_sym_workdir] = ACTIONS(1230), - [anon_sym_write] = ACTIONS(1230), - [anon_sym_from_json] = ACTIONS(1230), - [anon_sym_to_json] = ACTIONS(1230), - [anon_sym_to_string] = ACTIONS(1230), - [anon_sym_to_float] = ACTIONS(1230), - [anon_sym_bash] = ACTIONS(1230), - [anon_sym_fish] = ACTIONS(1230), - [anon_sym_raw] = ACTIONS(1230), - [anon_sym_sh] = ACTIONS(1230), - [anon_sym_zsh] = ACTIONS(1230), - [anon_sym_random] = ACTIONS(1230), - [anon_sym_random_boolean] = ACTIONS(1230), - [anon_sym_random_float] = ACTIONS(1230), - [anon_sym_random_integer] = ACTIONS(1230), - [anon_sym_columns] = ACTIONS(1230), - [anon_sym_rows] = ACTIONS(1230), - [anon_sym_reverse] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_RBRACE] = ACTIONS(2067), + [anon_sym_SEMI] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_RPAREN] = ACTIONS(2067), + [sym_integer] = ACTIONS(2069), + [sym_float] = ACTIONS(2067), + [sym_string] = ACTIONS(2067), + [anon_sym_true] = ACTIONS(2069), + [anon_sym_false] = ACTIONS(2069), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_COLON] = ACTIONS(2067), + [anon_sym_DOT_DOT] = ACTIONS(2067), + [anon_sym_PLUS] = ACTIONS(2067), + [anon_sym_DASH] = ACTIONS(2069), + [anon_sym_STAR] = ACTIONS(2067), + [anon_sym_SLASH] = ACTIONS(2067), + [anon_sym_PERCENT] = ACTIONS(2067), + [anon_sym_EQ_EQ] = ACTIONS(2067), + [anon_sym_BANG_EQ] = ACTIONS(2067), + [anon_sym_AMP_AMP] = ACTIONS(2067), + [anon_sym_PIPE_PIPE] = ACTIONS(2067), + [anon_sym_GT] = ACTIONS(2069), + [anon_sym_LT] = ACTIONS(2069), + [anon_sym_GT_EQ] = ACTIONS(2067), + [anon_sym_LT_EQ] = ACTIONS(2067), + [anon_sym_if] = ACTIONS(2069), + [anon_sym_match] = ACTIONS(2069), + [anon_sym_EQ_GT] = ACTIONS(2067), + [anon_sym_while] = ACTIONS(2069), + [anon_sym_for] = ACTIONS(2069), + [anon_sym_asyncfor] = ACTIONS(2067), + [anon_sym_transform] = ACTIONS(2069), + [anon_sym_filter] = ACTIONS(2069), + [anon_sym_find] = ACTIONS(2069), + [anon_sym_remove] = ACTIONS(2069), + [anon_sym_reduce] = ACTIONS(2069), + [anon_sym_select] = ACTIONS(2069), + [anon_sym_insert] = ACTIONS(2069), + [anon_sym_async] = ACTIONS(2069), + [anon_sym_PIPE] = ACTIONS(2069), + [anon_sym_table] = ACTIONS(2069), + [anon_sym_assert] = ACTIONS(2069), + [anon_sym_assert_equal] = ACTIONS(2069), + [anon_sym_download] = ACTIONS(2069), + [anon_sym_help] = ACTIONS(2069), + [anon_sym_length] = ACTIONS(2069), + [anon_sym_output] = ACTIONS(2069), + [anon_sym_output_error] = ACTIONS(2069), + [anon_sym_type] = ACTIONS(2069), + [anon_sym_append] = ACTIONS(2069), + [anon_sym_metadata] = ACTIONS(2069), + [anon_sym_move] = ACTIONS(2069), + [anon_sym_read] = ACTIONS(2069), + [anon_sym_workdir] = ACTIONS(2069), + [anon_sym_write] = ACTIONS(2069), + [anon_sym_from_json] = ACTIONS(2069), + [anon_sym_to_json] = ACTIONS(2069), + [anon_sym_to_string] = ACTIONS(2069), + [anon_sym_to_float] = ACTIONS(2069), + [anon_sym_bash] = ACTIONS(2069), + [anon_sym_fish] = ACTIONS(2069), + [anon_sym_raw] = ACTIONS(2069), + [anon_sym_sh] = ACTIONS(2069), + [anon_sym_zsh] = ACTIONS(2069), + [anon_sym_random] = ACTIONS(2069), + [anon_sym_random_boolean] = ACTIONS(2069), + [anon_sym_random_float] = ACTIONS(2069), + [anon_sym_random_integer] = ACTIONS(2069), + [anon_sym_columns] = ACTIONS(2069), + [anon_sym_rows] = ACTIONS(2069), + [anon_sym_reverse] = ACTIONS(2069), }, [478] = { - [sym_block] = STATE(848), - [sym_statement] = STATE(39), - [sym_expression] = STATE(756), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(657), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(627), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1752), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(338), - [aux_sym_block_repeat1] = STATE(39), - [sym_identifier] = ACTIONS(875), + [ts_builtin_sym_end] = ACTIONS(2223), + [sym_identifier] = ACTIONS(2225), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(877), - [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(245), - [anon_sym_match] = ACTIONS(881), - [anon_sym_EQ_GT] = ACTIONS(883), - [anon_sym_while] = ACTIONS(885), - [anon_sym_for] = ACTIONS(887), - [anon_sym_asyncfor] = ACTIONS(889), - [anon_sym_transform] = ACTIONS(891), - [anon_sym_filter] = ACTIONS(893), - [anon_sym_find] = ACTIONS(895), - [anon_sym_remove] = ACTIONS(897), - [anon_sym_reduce] = ACTIONS(899), - [anon_sym_select] = ACTIONS(901), - [anon_sym_insert] = ACTIONS(903), - [anon_sym_async] = ACTIONS(905), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(907), - [anon_sym_assert] = ACTIONS(909), - [anon_sym_assert_equal] = ACTIONS(909), - [anon_sym_download] = ACTIONS(909), - [anon_sym_help] = ACTIONS(909), - [anon_sym_length] = ACTIONS(909), - [anon_sym_output] = ACTIONS(909), - [anon_sym_output_error] = ACTIONS(909), - [anon_sym_type] = ACTIONS(909), - [anon_sym_append] = ACTIONS(909), - [anon_sym_metadata] = ACTIONS(909), - [anon_sym_move] = ACTIONS(909), - [anon_sym_read] = ACTIONS(909), - [anon_sym_workdir] = ACTIONS(909), - [anon_sym_write] = ACTIONS(909), - [anon_sym_from_json] = ACTIONS(909), - [anon_sym_to_json] = ACTIONS(909), - [anon_sym_to_string] = ACTIONS(909), - [anon_sym_to_float] = ACTIONS(909), - [anon_sym_bash] = ACTIONS(909), - [anon_sym_fish] = ACTIONS(909), - [anon_sym_raw] = ACTIONS(909), - [anon_sym_sh] = ACTIONS(909), - [anon_sym_zsh] = ACTIONS(909), - [anon_sym_random] = ACTIONS(909), - [anon_sym_random_boolean] = ACTIONS(909), - [anon_sym_random_float] = ACTIONS(909), - [anon_sym_random_integer] = ACTIONS(909), - [anon_sym_columns] = ACTIONS(909), - [anon_sym_rows] = ACTIONS(909), - [anon_sym_reverse] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(2223), + [anon_sym_RBRACE] = ACTIONS(2223), + [anon_sym_SEMI] = ACTIONS(2223), + [anon_sym_LPAREN] = ACTIONS(2223), + [anon_sym_RPAREN] = ACTIONS(2223), + [anon_sym_COMMA] = ACTIONS(2223), + [sym_integer] = ACTIONS(2225), + [sym_float] = ACTIONS(2223), + [sym_string] = ACTIONS(2223), + [anon_sym_true] = ACTIONS(2225), + [anon_sym_false] = ACTIONS(2225), + [anon_sym_LBRACK] = ACTIONS(2223), + [anon_sym_RBRACK] = ACTIONS(2223), + [anon_sym_COLON] = ACTIONS(2223), + [anon_sym_DOT_DOT] = ACTIONS(2223), + [anon_sym_PLUS] = ACTIONS(2223), + [anon_sym_DASH] = ACTIONS(2225), + [anon_sym_STAR] = ACTIONS(2223), + [anon_sym_SLASH] = ACTIONS(2223), + [anon_sym_PERCENT] = ACTIONS(2223), + [anon_sym_EQ_EQ] = ACTIONS(2223), + [anon_sym_BANG_EQ] = ACTIONS(2223), + [anon_sym_AMP_AMP] = ACTIONS(2223), + [anon_sym_PIPE_PIPE] = ACTIONS(2223), + [anon_sym_GT] = ACTIONS(2225), + [anon_sym_LT] = ACTIONS(2225), + [anon_sym_GT_EQ] = ACTIONS(2223), + [anon_sym_LT_EQ] = ACTIONS(2223), + [anon_sym_if] = ACTIONS(2225), + [anon_sym_match] = ACTIONS(2225), + [anon_sym_EQ_GT] = ACTIONS(2223), + [anon_sym_while] = ACTIONS(2225), + [anon_sym_for] = ACTIONS(2225), + [anon_sym_asyncfor] = ACTIONS(2223), + [anon_sym_transform] = ACTIONS(2225), + [anon_sym_filter] = ACTIONS(2225), + [anon_sym_find] = ACTIONS(2225), + [anon_sym_remove] = ACTIONS(2225), + [anon_sym_reduce] = ACTIONS(2225), + [anon_sym_select] = ACTIONS(2225), + [anon_sym_insert] = ACTIONS(2225), + [anon_sym_async] = ACTIONS(2225), + [anon_sym_PIPE] = ACTIONS(2225), + [anon_sym_table] = ACTIONS(2225), + [anon_sym_assert] = ACTIONS(2225), + [anon_sym_assert_equal] = ACTIONS(2225), + [anon_sym_download] = ACTIONS(2225), + [anon_sym_help] = ACTIONS(2225), + [anon_sym_length] = ACTIONS(2225), + [anon_sym_output] = ACTIONS(2225), + [anon_sym_output_error] = ACTIONS(2225), + [anon_sym_type] = ACTIONS(2225), + [anon_sym_append] = ACTIONS(2225), + [anon_sym_metadata] = ACTIONS(2225), + [anon_sym_move] = ACTIONS(2225), + [anon_sym_read] = ACTIONS(2225), + [anon_sym_workdir] = ACTIONS(2225), + [anon_sym_write] = ACTIONS(2225), + [anon_sym_from_json] = ACTIONS(2225), + [anon_sym_to_json] = ACTIONS(2225), + [anon_sym_to_string] = ACTIONS(2225), + [anon_sym_to_float] = ACTIONS(2225), + [anon_sym_bash] = ACTIONS(2225), + [anon_sym_fish] = ACTIONS(2225), + [anon_sym_raw] = ACTIONS(2225), + [anon_sym_sh] = ACTIONS(2225), + [anon_sym_zsh] = ACTIONS(2225), + [anon_sym_random] = ACTIONS(2225), + [anon_sym_random_boolean] = ACTIONS(2225), + [anon_sym_random_float] = ACTIONS(2225), + [anon_sym_random_integer] = ACTIONS(2225), + [anon_sym_columns] = ACTIONS(2225), + [anon_sym_rows] = ACTIONS(2225), + [anon_sym_reverse] = ACTIONS(2225), }, [479] = { - [sym_block] = STATE(872), - [sym_statement] = STATE(46), - [sym_expression] = STATE(824), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(739), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(653), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [aux_sym_block_repeat1] = STATE(46), - [sym_identifier] = ACTIONS(1198), + [sym_math_operator] = STATE(821), + [sym_logic_operator] = STATE(822), + [ts_builtin_sym_end] = ACTIONS(2041), + [sym_identifier] = ACTIONS(2043), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(877), - [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(627), - [anon_sym_match] = ACTIONS(1202), - [anon_sym_EQ_GT] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(1206), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_asyncfor] = ACTIONS(1210), - [anon_sym_transform] = ACTIONS(1212), - [anon_sym_filter] = ACTIONS(1214), - [anon_sym_find] = ACTIONS(1216), - [anon_sym_remove] = ACTIONS(1218), - [anon_sym_reduce] = ACTIONS(1220), - [anon_sym_select] = ACTIONS(1222), - [anon_sym_insert] = ACTIONS(1224), - [anon_sym_async] = ACTIONS(1226), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(1228), - [anon_sym_assert] = ACTIONS(1230), - [anon_sym_assert_equal] = ACTIONS(1230), - [anon_sym_download] = ACTIONS(1230), - [anon_sym_help] = ACTIONS(1230), - [anon_sym_length] = ACTIONS(1230), - [anon_sym_output] = ACTIONS(1230), - [anon_sym_output_error] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_append] = ACTIONS(1230), - [anon_sym_metadata] = ACTIONS(1230), - [anon_sym_move] = ACTIONS(1230), - [anon_sym_read] = ACTIONS(1230), - [anon_sym_workdir] = ACTIONS(1230), - [anon_sym_write] = ACTIONS(1230), - [anon_sym_from_json] = ACTIONS(1230), - [anon_sym_to_json] = ACTIONS(1230), - [anon_sym_to_string] = ACTIONS(1230), - [anon_sym_to_float] = ACTIONS(1230), - [anon_sym_bash] = ACTIONS(1230), - [anon_sym_fish] = ACTIONS(1230), - [anon_sym_raw] = ACTIONS(1230), - [anon_sym_sh] = ACTIONS(1230), - [anon_sym_zsh] = ACTIONS(1230), - [anon_sym_random] = ACTIONS(1230), - [anon_sym_random_boolean] = ACTIONS(1230), - [anon_sym_random_float] = ACTIONS(1230), - [anon_sym_random_integer] = ACTIONS(1230), - [anon_sym_columns] = ACTIONS(1230), - [anon_sym_rows] = ACTIONS(1230), - [anon_sym_reverse] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(2041), + [anon_sym_RBRACE] = ACTIONS(2041), + [anon_sym_SEMI] = ACTIONS(2181), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_RPAREN] = ACTIONS(2041), + [sym_integer] = ACTIONS(2043), + [sym_float] = ACTIONS(2041), + [sym_string] = ACTIONS(2041), + [anon_sym_true] = ACTIONS(2043), + [anon_sym_false] = ACTIONS(2043), + [anon_sym_LBRACK] = ACTIONS(2041), + [anon_sym_COLON] = ACTIONS(526), + [anon_sym_DOT_DOT] = ACTIONS(2041), + [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(2043), + [anon_sym_match] = ACTIONS(2043), + [anon_sym_EQ_GT] = ACTIONS(2041), + [anon_sym_while] = ACTIONS(2043), + [anon_sym_for] = ACTIONS(2043), + [anon_sym_asyncfor] = ACTIONS(2041), + [anon_sym_transform] = ACTIONS(2043), + [anon_sym_filter] = ACTIONS(2043), + [anon_sym_find] = ACTIONS(2043), + [anon_sym_remove] = ACTIONS(2043), + [anon_sym_reduce] = ACTIONS(2043), + [anon_sym_select] = ACTIONS(2043), + [anon_sym_insert] = ACTIONS(2043), + [anon_sym_async] = ACTIONS(2043), + [anon_sym_PIPE] = ACTIONS(2043), + [anon_sym_table] = ACTIONS(2043), + [anon_sym_assert] = ACTIONS(2043), + [anon_sym_assert_equal] = ACTIONS(2043), + [anon_sym_download] = ACTIONS(2043), + [anon_sym_help] = ACTIONS(2043), + [anon_sym_length] = ACTIONS(2043), + [anon_sym_output] = ACTIONS(2043), + [anon_sym_output_error] = ACTIONS(2043), + [anon_sym_type] = ACTIONS(2043), + [anon_sym_append] = ACTIONS(2043), + [anon_sym_metadata] = ACTIONS(2043), + [anon_sym_move] = ACTIONS(2043), + [anon_sym_read] = ACTIONS(2043), + [anon_sym_workdir] = ACTIONS(2043), + [anon_sym_write] = ACTIONS(2043), + [anon_sym_from_json] = ACTIONS(2043), + [anon_sym_to_json] = ACTIONS(2043), + [anon_sym_to_string] = ACTIONS(2043), + [anon_sym_to_float] = ACTIONS(2043), + [anon_sym_bash] = ACTIONS(2043), + [anon_sym_fish] = ACTIONS(2043), + [anon_sym_raw] = ACTIONS(2043), + [anon_sym_sh] = ACTIONS(2043), + [anon_sym_zsh] = ACTIONS(2043), + [anon_sym_random] = ACTIONS(2043), + [anon_sym_random_boolean] = ACTIONS(2043), + [anon_sym_random_float] = ACTIONS(2043), + [anon_sym_random_integer] = ACTIONS(2043), + [anon_sym_columns] = ACTIONS(2043), + [anon_sym_rows] = ACTIONS(2043), + [anon_sym_reverse] = ACTIONS(2043), }, [480] = { - [sym_block] = STATE(858), - [sym_statement] = STATE(39), - [sym_expression] = STATE(756), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(657), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(627), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1752), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(338), - [aux_sym_block_repeat1] = STATE(39), - [sym_identifier] = ACTIONS(875), + [ts_builtin_sym_end] = ACTIONS(2191), + [sym_identifier] = ACTIONS(2193), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(877), - [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(245), - [anon_sym_match] = ACTIONS(881), - [anon_sym_EQ_GT] = ACTIONS(883), - [anon_sym_while] = ACTIONS(885), - [anon_sym_for] = ACTIONS(887), - [anon_sym_asyncfor] = ACTIONS(889), - [anon_sym_transform] = ACTIONS(891), - [anon_sym_filter] = ACTIONS(893), - [anon_sym_find] = ACTIONS(895), - [anon_sym_remove] = ACTIONS(897), - [anon_sym_reduce] = ACTIONS(899), - [anon_sym_select] = ACTIONS(901), - [anon_sym_insert] = ACTIONS(903), - [anon_sym_async] = ACTIONS(905), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(907), - [anon_sym_assert] = ACTIONS(909), - [anon_sym_assert_equal] = ACTIONS(909), - [anon_sym_download] = ACTIONS(909), - [anon_sym_help] = ACTIONS(909), - [anon_sym_length] = ACTIONS(909), - [anon_sym_output] = ACTIONS(909), - [anon_sym_output_error] = ACTIONS(909), - [anon_sym_type] = ACTIONS(909), - [anon_sym_append] = ACTIONS(909), - [anon_sym_metadata] = ACTIONS(909), - [anon_sym_move] = ACTIONS(909), - [anon_sym_read] = ACTIONS(909), - [anon_sym_workdir] = ACTIONS(909), - [anon_sym_write] = ACTIONS(909), - [anon_sym_from_json] = ACTIONS(909), - [anon_sym_to_json] = ACTIONS(909), - [anon_sym_to_string] = ACTIONS(909), - [anon_sym_to_float] = ACTIONS(909), - [anon_sym_bash] = ACTIONS(909), - [anon_sym_fish] = ACTIONS(909), - [anon_sym_raw] = ACTIONS(909), - [anon_sym_sh] = ACTIONS(909), - [anon_sym_zsh] = ACTIONS(909), - [anon_sym_random] = ACTIONS(909), - [anon_sym_random_boolean] = ACTIONS(909), - [anon_sym_random_float] = ACTIONS(909), - [anon_sym_random_integer] = ACTIONS(909), - [anon_sym_columns] = ACTIONS(909), - [anon_sym_rows] = ACTIONS(909), - [anon_sym_reverse] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_RBRACE] = ACTIONS(2191), + [anon_sym_SEMI] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_RPAREN] = ACTIONS(2191), + [anon_sym_COMMA] = ACTIONS(2191), + [sym_integer] = ACTIONS(2193), + [sym_float] = ACTIONS(2191), + [sym_string] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(2193), + [anon_sym_false] = ACTIONS(2193), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_RBRACK] = ACTIONS(2191), + [anon_sym_COLON] = ACTIONS(2191), + [anon_sym_DOT_DOT] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_DASH] = ACTIONS(2193), + [anon_sym_STAR] = ACTIONS(2191), + [anon_sym_SLASH] = ACTIONS(2191), + [anon_sym_PERCENT] = ACTIONS(2191), + [anon_sym_EQ_EQ] = ACTIONS(2191), + [anon_sym_BANG_EQ] = ACTIONS(2191), + [anon_sym_AMP_AMP] = ACTIONS(2191), + [anon_sym_PIPE_PIPE] = ACTIONS(2191), + [anon_sym_GT] = ACTIONS(2193), + [anon_sym_LT] = ACTIONS(2193), + [anon_sym_GT_EQ] = ACTIONS(2191), + [anon_sym_LT_EQ] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2193), + [anon_sym_match] = ACTIONS(2193), + [anon_sym_EQ_GT] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2193), + [anon_sym_for] = ACTIONS(2193), + [anon_sym_asyncfor] = ACTIONS(2191), + [anon_sym_transform] = ACTIONS(2193), + [anon_sym_filter] = ACTIONS(2193), + [anon_sym_find] = ACTIONS(2193), + [anon_sym_remove] = ACTIONS(2193), + [anon_sym_reduce] = ACTIONS(2193), + [anon_sym_select] = ACTIONS(2193), + [anon_sym_insert] = ACTIONS(2193), + [anon_sym_async] = ACTIONS(2193), + [anon_sym_PIPE] = ACTIONS(2193), + [anon_sym_table] = ACTIONS(2193), + [anon_sym_assert] = ACTIONS(2193), + [anon_sym_assert_equal] = ACTIONS(2193), + [anon_sym_download] = ACTIONS(2193), + [anon_sym_help] = ACTIONS(2193), + [anon_sym_length] = ACTIONS(2193), + [anon_sym_output] = ACTIONS(2193), + [anon_sym_output_error] = ACTIONS(2193), + [anon_sym_type] = ACTIONS(2193), + [anon_sym_append] = ACTIONS(2193), + [anon_sym_metadata] = ACTIONS(2193), + [anon_sym_move] = ACTIONS(2193), + [anon_sym_read] = ACTIONS(2193), + [anon_sym_workdir] = ACTIONS(2193), + [anon_sym_write] = ACTIONS(2193), + [anon_sym_from_json] = ACTIONS(2193), + [anon_sym_to_json] = ACTIONS(2193), + [anon_sym_to_string] = ACTIONS(2193), + [anon_sym_to_float] = ACTIONS(2193), + [anon_sym_bash] = ACTIONS(2193), + [anon_sym_fish] = ACTIONS(2193), + [anon_sym_raw] = ACTIONS(2193), + [anon_sym_sh] = ACTIONS(2193), + [anon_sym_zsh] = ACTIONS(2193), + [anon_sym_random] = ACTIONS(2193), + [anon_sym_random_boolean] = ACTIONS(2193), + [anon_sym_random_float] = ACTIONS(2193), + [anon_sym_random_integer] = ACTIONS(2193), + [anon_sym_columns] = ACTIONS(2193), + [anon_sym_rows] = ACTIONS(2193), + [anon_sym_reverse] = ACTIONS(2193), }, [481] = { - [sym_block] = STATE(851), - [sym_statement] = STATE(46), - [sym_expression] = STATE(824), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(739), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(653), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [aux_sym_block_repeat1] = STATE(46), - [sym_identifier] = ACTIONS(1198), + [ts_builtin_sym_end] = ACTIONS(2132), + [sym_identifier] = ACTIONS(2134), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(877), - [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(627), - [anon_sym_match] = ACTIONS(1202), - [anon_sym_EQ_GT] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(1206), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_asyncfor] = ACTIONS(1210), - [anon_sym_transform] = ACTIONS(1212), - [anon_sym_filter] = ACTIONS(1214), - [anon_sym_find] = ACTIONS(1216), - [anon_sym_remove] = ACTIONS(1218), - [anon_sym_reduce] = ACTIONS(1220), - [anon_sym_select] = ACTIONS(1222), - [anon_sym_insert] = ACTIONS(1224), - [anon_sym_async] = ACTIONS(1226), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(1228), - [anon_sym_assert] = ACTIONS(1230), - [anon_sym_assert_equal] = ACTIONS(1230), - [anon_sym_download] = ACTIONS(1230), - [anon_sym_help] = ACTIONS(1230), - [anon_sym_length] = ACTIONS(1230), - [anon_sym_output] = ACTIONS(1230), - [anon_sym_output_error] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_append] = ACTIONS(1230), - [anon_sym_metadata] = ACTIONS(1230), - [anon_sym_move] = ACTIONS(1230), - [anon_sym_read] = ACTIONS(1230), - [anon_sym_workdir] = ACTIONS(1230), - [anon_sym_write] = ACTIONS(1230), - [anon_sym_from_json] = ACTIONS(1230), - [anon_sym_to_json] = ACTIONS(1230), - [anon_sym_to_string] = ACTIONS(1230), - [anon_sym_to_float] = ACTIONS(1230), - [anon_sym_bash] = ACTIONS(1230), - [anon_sym_fish] = ACTIONS(1230), - [anon_sym_raw] = ACTIONS(1230), - [anon_sym_sh] = ACTIONS(1230), - [anon_sym_zsh] = ACTIONS(1230), - [anon_sym_random] = ACTIONS(1230), - [anon_sym_random_boolean] = ACTIONS(1230), - [anon_sym_random_float] = ACTIONS(1230), - [anon_sym_random_integer] = ACTIONS(1230), - [anon_sym_columns] = ACTIONS(1230), - [anon_sym_rows] = ACTIONS(1230), - [anon_sym_reverse] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(2132), + [anon_sym_RBRACE] = ACTIONS(2132), + [anon_sym_SEMI] = ACTIONS(2132), + [anon_sym_LPAREN] = ACTIONS(2132), + [anon_sym_RPAREN] = ACTIONS(2132), + [anon_sym_COMMA] = ACTIONS(2132), + [sym_integer] = ACTIONS(2134), + [sym_float] = ACTIONS(2132), + [sym_string] = ACTIONS(2132), + [anon_sym_true] = ACTIONS(2134), + [anon_sym_false] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2132), + [anon_sym_RBRACK] = ACTIONS(2132), + [anon_sym_COLON] = ACTIONS(2132), + [anon_sym_DOT_DOT] = ACTIONS(2132), + [anon_sym_PLUS] = ACTIONS(2132), + [anon_sym_DASH] = ACTIONS(2134), + [anon_sym_STAR] = ACTIONS(2132), + [anon_sym_SLASH] = ACTIONS(2132), + [anon_sym_PERCENT] = ACTIONS(2132), + [anon_sym_EQ_EQ] = ACTIONS(2132), + [anon_sym_BANG_EQ] = ACTIONS(2132), + [anon_sym_AMP_AMP] = ACTIONS(2132), + [anon_sym_PIPE_PIPE] = ACTIONS(2132), + [anon_sym_GT] = ACTIONS(2134), + [anon_sym_LT] = ACTIONS(2134), + [anon_sym_GT_EQ] = ACTIONS(2132), + [anon_sym_LT_EQ] = ACTIONS(2132), + [anon_sym_if] = ACTIONS(2134), + [anon_sym_match] = ACTIONS(2134), + [anon_sym_EQ_GT] = ACTIONS(2132), + [anon_sym_while] = ACTIONS(2134), + [anon_sym_for] = ACTIONS(2134), + [anon_sym_asyncfor] = ACTIONS(2132), + [anon_sym_transform] = ACTIONS(2134), + [anon_sym_filter] = ACTIONS(2134), + [anon_sym_find] = ACTIONS(2134), + [anon_sym_remove] = ACTIONS(2134), + [anon_sym_reduce] = ACTIONS(2134), + [anon_sym_select] = ACTIONS(2134), + [anon_sym_insert] = ACTIONS(2134), + [anon_sym_async] = ACTIONS(2134), + [anon_sym_PIPE] = ACTIONS(2134), + [anon_sym_table] = ACTIONS(2134), + [anon_sym_assert] = ACTIONS(2134), + [anon_sym_assert_equal] = ACTIONS(2134), + [anon_sym_download] = ACTIONS(2134), + [anon_sym_help] = ACTIONS(2134), + [anon_sym_length] = ACTIONS(2134), + [anon_sym_output] = ACTIONS(2134), + [anon_sym_output_error] = ACTIONS(2134), + [anon_sym_type] = ACTIONS(2134), + [anon_sym_append] = ACTIONS(2134), + [anon_sym_metadata] = ACTIONS(2134), + [anon_sym_move] = ACTIONS(2134), + [anon_sym_read] = ACTIONS(2134), + [anon_sym_workdir] = ACTIONS(2134), + [anon_sym_write] = ACTIONS(2134), + [anon_sym_from_json] = ACTIONS(2134), + [anon_sym_to_json] = ACTIONS(2134), + [anon_sym_to_string] = ACTIONS(2134), + [anon_sym_to_float] = ACTIONS(2134), + [anon_sym_bash] = ACTIONS(2134), + [anon_sym_fish] = ACTIONS(2134), + [anon_sym_raw] = ACTIONS(2134), + [anon_sym_sh] = ACTIONS(2134), + [anon_sym_zsh] = ACTIONS(2134), + [anon_sym_random] = ACTIONS(2134), + [anon_sym_random_boolean] = ACTIONS(2134), + [anon_sym_random_float] = ACTIONS(2134), + [anon_sym_random_integer] = ACTIONS(2134), + [anon_sym_columns] = ACTIONS(2134), + [anon_sym_rows] = ACTIONS(2134), + [anon_sym_reverse] = ACTIONS(2134), }, [482] = { - [sym_block] = STATE(704), - [sym_statement] = STATE(24), - [sym_expression] = STATE(683), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_logic] = STATE(706), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(573), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1813), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(311), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(149), + [ts_builtin_sym_end] = ACTIONS(2001), + [sym_identifier] = ACTIONS(2003), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_if] = ACTIONS(117), - [anon_sym_match] = ACTIONS(279), - [anon_sym_EQ_GT] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_for] = ACTIONS(285), - [anon_sym_asyncfor] = ACTIONS(287), - [anon_sym_transform] = ACTIONS(289), - [anon_sym_filter] = ACTIONS(291), - [anon_sym_find] = ACTIONS(293), - [anon_sym_remove] = ACTIONS(295), - [anon_sym_reduce] = ACTIONS(297), - [anon_sym_select] = ACTIONS(299), - [anon_sym_insert] = ACTIONS(301), - [anon_sym_async] = ACTIONS(303), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(305), - [anon_sym_assert] = ACTIONS(307), - [anon_sym_assert_equal] = ACTIONS(307), - [anon_sym_download] = ACTIONS(307), - [anon_sym_help] = ACTIONS(307), - [anon_sym_length] = ACTIONS(307), - [anon_sym_output] = ACTIONS(307), - [anon_sym_output_error] = ACTIONS(307), - [anon_sym_type] = ACTIONS(307), - [anon_sym_append] = ACTIONS(307), - [anon_sym_metadata] = ACTIONS(307), - [anon_sym_move] = ACTIONS(307), - [anon_sym_read] = ACTIONS(307), - [anon_sym_workdir] = ACTIONS(307), - [anon_sym_write] = ACTIONS(307), - [anon_sym_from_json] = ACTIONS(307), - [anon_sym_to_json] = ACTIONS(307), - [anon_sym_to_string] = ACTIONS(307), - [anon_sym_to_float] = ACTIONS(307), - [anon_sym_bash] = ACTIONS(307), - [anon_sym_fish] = ACTIONS(307), - [anon_sym_raw] = ACTIONS(307), - [anon_sym_sh] = ACTIONS(307), - [anon_sym_zsh] = ACTIONS(307), - [anon_sym_random] = ACTIONS(307), - [anon_sym_random_boolean] = ACTIONS(307), - [anon_sym_random_float] = ACTIONS(307), - [anon_sym_random_integer] = ACTIONS(307), - [anon_sym_columns] = ACTIONS(307), - [anon_sym_rows] = ACTIONS(307), - [anon_sym_reverse] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(2001), + [anon_sym_RBRACE] = ACTIONS(2001), + [anon_sym_SEMI] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_RPAREN] = ACTIONS(2001), + [anon_sym_COMMA] = ACTIONS(2001), + [sym_integer] = ACTIONS(2003), + [sym_float] = ACTIONS(2001), + [sym_string] = ACTIONS(2001), + [anon_sym_true] = ACTIONS(2003), + [anon_sym_false] = ACTIONS(2003), + [anon_sym_LBRACK] = ACTIONS(2001), + [anon_sym_RBRACK] = ACTIONS(2001), + [anon_sym_COLON] = ACTIONS(2001), + [anon_sym_DOT_DOT] = ACTIONS(2001), + [anon_sym_PLUS] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_STAR] = ACTIONS(2001), + [anon_sym_SLASH] = ACTIONS(2001), + [anon_sym_PERCENT] = ACTIONS(2001), + [anon_sym_EQ_EQ] = ACTIONS(2001), + [anon_sym_BANG_EQ] = ACTIONS(2001), + [anon_sym_AMP_AMP] = ACTIONS(2001), + [anon_sym_PIPE_PIPE] = ACTIONS(2001), + [anon_sym_GT] = ACTIONS(2003), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_GT_EQ] = ACTIONS(2001), + [anon_sym_LT_EQ] = ACTIONS(2001), + [anon_sym_if] = ACTIONS(2003), + [anon_sym_match] = ACTIONS(2003), + [anon_sym_EQ_GT] = ACTIONS(2001), + [anon_sym_while] = ACTIONS(2003), + [anon_sym_for] = ACTIONS(2003), + [anon_sym_asyncfor] = ACTIONS(2001), + [anon_sym_transform] = ACTIONS(2003), + [anon_sym_filter] = ACTIONS(2003), + [anon_sym_find] = ACTIONS(2003), + [anon_sym_remove] = ACTIONS(2003), + [anon_sym_reduce] = ACTIONS(2003), + [anon_sym_select] = ACTIONS(2003), + [anon_sym_insert] = ACTIONS(2003), + [anon_sym_async] = ACTIONS(2003), + [anon_sym_PIPE] = ACTIONS(2003), + [anon_sym_table] = ACTIONS(2003), + [anon_sym_assert] = ACTIONS(2003), + [anon_sym_assert_equal] = ACTIONS(2003), + [anon_sym_download] = ACTIONS(2003), + [anon_sym_help] = ACTIONS(2003), + [anon_sym_length] = ACTIONS(2003), + [anon_sym_output] = ACTIONS(2003), + [anon_sym_output_error] = ACTIONS(2003), + [anon_sym_type] = ACTIONS(2003), + [anon_sym_append] = ACTIONS(2003), + [anon_sym_metadata] = ACTIONS(2003), + [anon_sym_move] = ACTIONS(2003), + [anon_sym_read] = ACTIONS(2003), + [anon_sym_workdir] = ACTIONS(2003), + [anon_sym_write] = ACTIONS(2003), + [anon_sym_from_json] = ACTIONS(2003), + [anon_sym_to_json] = ACTIONS(2003), + [anon_sym_to_string] = ACTIONS(2003), + [anon_sym_to_float] = ACTIONS(2003), + [anon_sym_bash] = ACTIONS(2003), + [anon_sym_fish] = ACTIONS(2003), + [anon_sym_raw] = ACTIONS(2003), + [anon_sym_sh] = ACTIONS(2003), + [anon_sym_zsh] = ACTIONS(2003), + [anon_sym_random] = ACTIONS(2003), + [anon_sym_random_boolean] = ACTIONS(2003), + [anon_sym_random_float] = ACTIONS(2003), + [anon_sym_random_integer] = ACTIONS(2003), + [anon_sym_columns] = ACTIONS(2003), + [anon_sym_rows] = ACTIONS(2003), + [anon_sym_reverse] = ACTIONS(2003), }, [483] = { - [sym_block] = STATE(688), - [sym_statement] = STATE(24), - [sym_expression] = STATE(683), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_logic] = STATE(706), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(573), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1813), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(311), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(149), + [ts_builtin_sym_end] = ACTIONS(2148), + [sym_identifier] = ACTIONS(2150), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_if] = ACTIONS(117), - [anon_sym_match] = ACTIONS(279), - [anon_sym_EQ_GT] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_for] = ACTIONS(285), - [anon_sym_asyncfor] = ACTIONS(287), - [anon_sym_transform] = ACTIONS(289), - [anon_sym_filter] = ACTIONS(291), - [anon_sym_find] = ACTIONS(293), - [anon_sym_remove] = ACTIONS(295), - [anon_sym_reduce] = ACTIONS(297), - [anon_sym_select] = ACTIONS(299), - [anon_sym_insert] = ACTIONS(301), - [anon_sym_async] = ACTIONS(303), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(305), - [anon_sym_assert] = ACTIONS(307), - [anon_sym_assert_equal] = ACTIONS(307), - [anon_sym_download] = ACTIONS(307), - [anon_sym_help] = ACTIONS(307), - [anon_sym_length] = ACTIONS(307), - [anon_sym_output] = ACTIONS(307), - [anon_sym_output_error] = ACTIONS(307), - [anon_sym_type] = ACTIONS(307), - [anon_sym_append] = ACTIONS(307), - [anon_sym_metadata] = ACTIONS(307), - [anon_sym_move] = ACTIONS(307), - [anon_sym_read] = ACTIONS(307), - [anon_sym_workdir] = ACTIONS(307), - [anon_sym_write] = ACTIONS(307), - [anon_sym_from_json] = ACTIONS(307), - [anon_sym_to_json] = ACTIONS(307), - [anon_sym_to_string] = ACTIONS(307), - [anon_sym_to_float] = ACTIONS(307), - [anon_sym_bash] = ACTIONS(307), - [anon_sym_fish] = ACTIONS(307), - [anon_sym_raw] = ACTIONS(307), - [anon_sym_sh] = ACTIONS(307), - [anon_sym_zsh] = ACTIONS(307), - [anon_sym_random] = ACTIONS(307), - [anon_sym_random_boolean] = ACTIONS(307), - [anon_sym_random_float] = ACTIONS(307), - [anon_sym_random_integer] = ACTIONS(307), - [anon_sym_columns] = ACTIONS(307), - [anon_sym_rows] = ACTIONS(307), - [anon_sym_reverse] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(2148), + [anon_sym_RBRACE] = ACTIONS(2148), + [anon_sym_SEMI] = ACTIONS(2148), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_RPAREN] = ACTIONS(2148), + [anon_sym_COMMA] = ACTIONS(2148), + [sym_integer] = ACTIONS(2150), + [sym_float] = ACTIONS(2148), + [sym_string] = ACTIONS(2148), + [anon_sym_true] = ACTIONS(2150), + [anon_sym_false] = ACTIONS(2150), + [anon_sym_LBRACK] = ACTIONS(2148), + [anon_sym_RBRACK] = ACTIONS(2148), + [anon_sym_COLON] = ACTIONS(2148), + [anon_sym_DOT_DOT] = ACTIONS(2148), + [anon_sym_PLUS] = ACTIONS(2148), + [anon_sym_DASH] = ACTIONS(2150), + [anon_sym_STAR] = ACTIONS(2148), + [anon_sym_SLASH] = ACTIONS(2148), + [anon_sym_PERCENT] = ACTIONS(2148), + [anon_sym_EQ_EQ] = ACTIONS(2148), + [anon_sym_BANG_EQ] = ACTIONS(2148), + [anon_sym_AMP_AMP] = ACTIONS(2148), + [anon_sym_PIPE_PIPE] = ACTIONS(2148), + [anon_sym_GT] = ACTIONS(2150), + [anon_sym_LT] = ACTIONS(2150), + [anon_sym_GT_EQ] = ACTIONS(2148), + [anon_sym_LT_EQ] = ACTIONS(2148), + [anon_sym_if] = ACTIONS(2150), + [anon_sym_match] = ACTIONS(2150), + [anon_sym_EQ_GT] = ACTIONS(2148), + [anon_sym_while] = ACTIONS(2150), + [anon_sym_for] = ACTIONS(2150), + [anon_sym_asyncfor] = ACTIONS(2148), + [anon_sym_transform] = ACTIONS(2150), + [anon_sym_filter] = ACTIONS(2150), + [anon_sym_find] = ACTIONS(2150), + [anon_sym_remove] = ACTIONS(2150), + [anon_sym_reduce] = ACTIONS(2150), + [anon_sym_select] = ACTIONS(2150), + [anon_sym_insert] = ACTIONS(2150), + [anon_sym_async] = ACTIONS(2150), + [anon_sym_PIPE] = ACTIONS(2150), + [anon_sym_table] = ACTIONS(2150), + [anon_sym_assert] = ACTIONS(2150), + [anon_sym_assert_equal] = ACTIONS(2150), + [anon_sym_download] = ACTIONS(2150), + [anon_sym_help] = ACTIONS(2150), + [anon_sym_length] = ACTIONS(2150), + [anon_sym_output] = ACTIONS(2150), + [anon_sym_output_error] = ACTIONS(2150), + [anon_sym_type] = ACTIONS(2150), + [anon_sym_append] = ACTIONS(2150), + [anon_sym_metadata] = ACTIONS(2150), + [anon_sym_move] = ACTIONS(2150), + [anon_sym_read] = ACTIONS(2150), + [anon_sym_workdir] = ACTIONS(2150), + [anon_sym_write] = ACTIONS(2150), + [anon_sym_from_json] = ACTIONS(2150), + [anon_sym_to_json] = ACTIONS(2150), + [anon_sym_to_string] = ACTIONS(2150), + [anon_sym_to_float] = ACTIONS(2150), + [anon_sym_bash] = ACTIONS(2150), + [anon_sym_fish] = ACTIONS(2150), + [anon_sym_raw] = ACTIONS(2150), + [anon_sym_sh] = ACTIONS(2150), + [anon_sym_zsh] = ACTIONS(2150), + [anon_sym_random] = ACTIONS(2150), + [anon_sym_random_boolean] = ACTIONS(2150), + [anon_sym_random_float] = ACTIONS(2150), + [anon_sym_random_integer] = ACTIONS(2150), + [anon_sym_columns] = ACTIONS(2150), + [anon_sym_rows] = ACTIONS(2150), + [anon_sym_reverse] = ACTIONS(2150), }, [484] = { - [sym_block] = STATE(788), - [sym_statement] = STATE(22), - [sym_expression] = STATE(685), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(576), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(647), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1984), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(302), - [aux_sym_block_repeat1] = STATE(22), - [sym_identifier] = ACTIONS(229), + [ts_builtin_sym_end] = ACTIONS(2152), + [sym_identifier] = ACTIONS(2154), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_if] = ACTIONS(245), - [anon_sym_match] = ACTIONS(247), - [anon_sym_EQ_GT] = ACTIONS(249), - [anon_sym_while] = ACTIONS(251), - [anon_sym_for] = ACTIONS(253), - [anon_sym_asyncfor] = ACTIONS(255), - [anon_sym_transform] = ACTIONS(257), - [anon_sym_filter] = ACTIONS(259), - [anon_sym_find] = ACTIONS(261), - [anon_sym_remove] = ACTIONS(263), - [anon_sym_reduce] = ACTIONS(265), - [anon_sym_select] = ACTIONS(267), - [anon_sym_insert] = ACTIONS(269), - [anon_sym_async] = ACTIONS(271), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(275), - [anon_sym_assert_equal] = ACTIONS(275), - [anon_sym_download] = ACTIONS(275), - [anon_sym_help] = ACTIONS(275), - [anon_sym_length] = ACTIONS(275), - [anon_sym_output] = ACTIONS(275), - [anon_sym_output_error] = ACTIONS(275), - [anon_sym_type] = ACTIONS(275), - [anon_sym_append] = ACTIONS(275), - [anon_sym_metadata] = ACTIONS(275), - [anon_sym_move] = ACTIONS(275), - [anon_sym_read] = ACTIONS(275), - [anon_sym_workdir] = ACTIONS(275), - [anon_sym_write] = ACTIONS(275), - [anon_sym_from_json] = ACTIONS(275), - [anon_sym_to_json] = ACTIONS(275), - [anon_sym_to_string] = ACTIONS(275), - [anon_sym_to_float] = ACTIONS(275), - [anon_sym_bash] = ACTIONS(275), - [anon_sym_fish] = ACTIONS(275), - [anon_sym_raw] = ACTIONS(275), - [anon_sym_sh] = ACTIONS(275), - [anon_sym_zsh] = ACTIONS(275), - [anon_sym_random] = ACTIONS(275), - [anon_sym_random_boolean] = ACTIONS(275), - [anon_sym_random_float] = ACTIONS(275), - [anon_sym_random_integer] = ACTIONS(275), - [anon_sym_columns] = ACTIONS(275), - [anon_sym_rows] = ACTIONS(275), - [anon_sym_reverse] = ACTIONS(275), + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_RBRACE] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_LPAREN] = ACTIONS(2152), + [anon_sym_RPAREN] = ACTIONS(2152), + [anon_sym_COMMA] = ACTIONS(2152), + [sym_integer] = ACTIONS(2154), + [sym_float] = ACTIONS(2152), + [sym_string] = ACTIONS(2152), + [anon_sym_true] = ACTIONS(2154), + [anon_sym_false] = ACTIONS(2154), + [anon_sym_LBRACK] = ACTIONS(2152), + [anon_sym_RBRACK] = ACTIONS(2152), + [anon_sym_COLON] = ACTIONS(2152), + [anon_sym_DOT_DOT] = ACTIONS(2152), + [anon_sym_PLUS] = ACTIONS(2152), + [anon_sym_DASH] = ACTIONS(2154), + [anon_sym_STAR] = ACTIONS(2152), + [anon_sym_SLASH] = ACTIONS(2152), + [anon_sym_PERCENT] = ACTIONS(2152), + [anon_sym_EQ_EQ] = ACTIONS(2152), + [anon_sym_BANG_EQ] = ACTIONS(2152), + [anon_sym_AMP_AMP] = ACTIONS(2152), + [anon_sym_PIPE_PIPE] = ACTIONS(2152), + [anon_sym_GT] = ACTIONS(2154), + [anon_sym_LT] = ACTIONS(2154), + [anon_sym_GT_EQ] = ACTIONS(2152), + [anon_sym_LT_EQ] = ACTIONS(2152), + [anon_sym_if] = ACTIONS(2154), + [anon_sym_match] = ACTIONS(2154), + [anon_sym_EQ_GT] = ACTIONS(2152), + [anon_sym_while] = ACTIONS(2154), + [anon_sym_for] = ACTIONS(2154), + [anon_sym_asyncfor] = ACTIONS(2152), + [anon_sym_transform] = ACTIONS(2154), + [anon_sym_filter] = ACTIONS(2154), + [anon_sym_find] = ACTIONS(2154), + [anon_sym_remove] = ACTIONS(2154), + [anon_sym_reduce] = ACTIONS(2154), + [anon_sym_select] = ACTIONS(2154), + [anon_sym_insert] = ACTIONS(2154), + [anon_sym_async] = ACTIONS(2154), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_table] = ACTIONS(2154), + [anon_sym_assert] = ACTIONS(2154), + [anon_sym_assert_equal] = ACTIONS(2154), + [anon_sym_download] = ACTIONS(2154), + [anon_sym_help] = ACTIONS(2154), + [anon_sym_length] = ACTIONS(2154), + [anon_sym_output] = ACTIONS(2154), + [anon_sym_output_error] = ACTIONS(2154), + [anon_sym_type] = ACTIONS(2154), + [anon_sym_append] = ACTIONS(2154), + [anon_sym_metadata] = ACTIONS(2154), + [anon_sym_move] = ACTIONS(2154), + [anon_sym_read] = ACTIONS(2154), + [anon_sym_workdir] = ACTIONS(2154), + [anon_sym_write] = ACTIONS(2154), + [anon_sym_from_json] = ACTIONS(2154), + [anon_sym_to_json] = ACTIONS(2154), + [anon_sym_to_string] = ACTIONS(2154), + [anon_sym_to_float] = ACTIONS(2154), + [anon_sym_bash] = ACTIONS(2154), + [anon_sym_fish] = ACTIONS(2154), + [anon_sym_raw] = ACTIONS(2154), + [anon_sym_sh] = ACTIONS(2154), + [anon_sym_zsh] = ACTIONS(2154), + [anon_sym_random] = ACTIONS(2154), + [anon_sym_random_boolean] = ACTIONS(2154), + [anon_sym_random_float] = ACTIONS(2154), + [anon_sym_random_integer] = ACTIONS(2154), + [anon_sym_columns] = ACTIONS(2154), + [anon_sym_rows] = ACTIONS(2154), + [anon_sym_reverse] = ACTIONS(2154), }, [485] = { - [sym_block] = STATE(607), - [sym_statement] = STATE(12), - [sym_expression] = STATE(583), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_logic] = STATE(631), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(567), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(2030), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(271), - [aux_sym_block_repeat1] = STATE(12), - [sym_identifier] = ACTIONS(55), + [ts_builtin_sym_end] = ACTIONS(2144), + [sym_identifier] = ACTIONS(2146), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(59), - [sym_integer] = ACTIONS(61), - [sym_float] = ACTIONS(63), - [sym_string] = ACTIONS(63), - [anon_sym_true] = ACTIONS(65), - [anon_sym_false] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(67), - [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_asyncfor] = ACTIONS(127), - [anon_sym_transform] = ACTIONS(129), - [anon_sym_filter] = ACTIONS(131), - [anon_sym_find] = ACTIONS(133), - [anon_sym_remove] = ACTIONS(135), - [anon_sym_reduce] = ACTIONS(137), - [anon_sym_select] = ACTIONS(139), - [anon_sym_insert] = ACTIONS(141), - [anon_sym_async] = ACTIONS(143), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(147), - [anon_sym_assert_equal] = ACTIONS(147), - [anon_sym_download] = ACTIONS(147), - [anon_sym_help] = ACTIONS(147), - [anon_sym_length] = ACTIONS(147), - [anon_sym_output] = ACTIONS(147), - [anon_sym_output_error] = ACTIONS(147), - [anon_sym_type] = ACTIONS(147), - [anon_sym_append] = ACTIONS(147), - [anon_sym_metadata] = ACTIONS(147), - [anon_sym_move] = ACTIONS(147), - [anon_sym_read] = ACTIONS(147), - [anon_sym_workdir] = ACTIONS(147), - [anon_sym_write] = ACTIONS(147), - [anon_sym_from_json] = ACTIONS(147), - [anon_sym_to_json] = ACTIONS(147), - [anon_sym_to_string] = ACTIONS(147), - [anon_sym_to_float] = ACTIONS(147), - [anon_sym_bash] = ACTIONS(147), - [anon_sym_fish] = ACTIONS(147), - [anon_sym_raw] = ACTIONS(147), - [anon_sym_sh] = ACTIONS(147), - [anon_sym_zsh] = ACTIONS(147), - [anon_sym_random] = ACTIONS(147), - [anon_sym_random_boolean] = ACTIONS(147), - [anon_sym_random_float] = ACTIONS(147), - [anon_sym_random_integer] = ACTIONS(147), - [anon_sym_columns] = ACTIONS(147), - [anon_sym_rows] = ACTIONS(147), - [anon_sym_reverse] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(2144), + [anon_sym_RBRACE] = ACTIONS(2144), + [anon_sym_SEMI] = ACTIONS(2144), + [anon_sym_LPAREN] = ACTIONS(2144), + [anon_sym_RPAREN] = ACTIONS(2144), + [anon_sym_COMMA] = ACTIONS(2144), + [sym_integer] = ACTIONS(2146), + [sym_float] = ACTIONS(2144), + [sym_string] = ACTIONS(2144), + [anon_sym_true] = ACTIONS(2146), + [anon_sym_false] = ACTIONS(2146), + [anon_sym_LBRACK] = ACTIONS(2144), + [anon_sym_RBRACK] = ACTIONS(2144), + [anon_sym_COLON] = ACTIONS(2144), + [anon_sym_DOT_DOT] = ACTIONS(2144), + [anon_sym_PLUS] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2146), + [anon_sym_STAR] = ACTIONS(2144), + [anon_sym_SLASH] = ACTIONS(2144), + [anon_sym_PERCENT] = ACTIONS(2144), + [anon_sym_EQ_EQ] = ACTIONS(2144), + [anon_sym_BANG_EQ] = ACTIONS(2144), + [anon_sym_AMP_AMP] = ACTIONS(2144), + [anon_sym_PIPE_PIPE] = ACTIONS(2144), + [anon_sym_GT] = ACTIONS(2146), + [anon_sym_LT] = ACTIONS(2146), + [anon_sym_GT_EQ] = ACTIONS(2144), + [anon_sym_LT_EQ] = ACTIONS(2144), + [anon_sym_if] = ACTIONS(2146), + [anon_sym_match] = ACTIONS(2146), + [anon_sym_EQ_GT] = ACTIONS(2144), + [anon_sym_while] = ACTIONS(2146), + [anon_sym_for] = ACTIONS(2146), + [anon_sym_asyncfor] = ACTIONS(2144), + [anon_sym_transform] = ACTIONS(2146), + [anon_sym_filter] = ACTIONS(2146), + [anon_sym_find] = ACTIONS(2146), + [anon_sym_remove] = ACTIONS(2146), + [anon_sym_reduce] = ACTIONS(2146), + [anon_sym_select] = ACTIONS(2146), + [anon_sym_insert] = ACTIONS(2146), + [anon_sym_async] = ACTIONS(2146), + [anon_sym_PIPE] = ACTIONS(2146), + [anon_sym_table] = ACTIONS(2146), + [anon_sym_assert] = ACTIONS(2146), + [anon_sym_assert_equal] = ACTIONS(2146), + [anon_sym_download] = ACTIONS(2146), + [anon_sym_help] = ACTIONS(2146), + [anon_sym_length] = ACTIONS(2146), + [anon_sym_output] = ACTIONS(2146), + [anon_sym_output_error] = ACTIONS(2146), + [anon_sym_type] = ACTIONS(2146), + [anon_sym_append] = ACTIONS(2146), + [anon_sym_metadata] = ACTIONS(2146), + [anon_sym_move] = ACTIONS(2146), + [anon_sym_read] = ACTIONS(2146), + [anon_sym_workdir] = ACTIONS(2146), + [anon_sym_write] = ACTIONS(2146), + [anon_sym_from_json] = ACTIONS(2146), + [anon_sym_to_json] = ACTIONS(2146), + [anon_sym_to_string] = ACTIONS(2146), + [anon_sym_to_float] = ACTIONS(2146), + [anon_sym_bash] = ACTIONS(2146), + [anon_sym_fish] = ACTIONS(2146), + [anon_sym_raw] = ACTIONS(2146), + [anon_sym_sh] = ACTIONS(2146), + [anon_sym_zsh] = ACTIONS(2146), + [anon_sym_random] = ACTIONS(2146), + [anon_sym_random_boolean] = ACTIONS(2146), + [anon_sym_random_float] = ACTIONS(2146), + [anon_sym_random_integer] = ACTIONS(2146), + [anon_sym_columns] = ACTIONS(2146), + [anon_sym_rows] = ACTIONS(2146), + [anon_sym_reverse] = ACTIONS(2146), }, [486] = { - [sym_block] = STATE(1069), - [sym_statement] = STATE(381), - [sym_expression] = STATE(925), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(867), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(980), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(381), - [sym_identifier] = ACTIONS(5), + [ts_builtin_sym_end] = ACTIONS(2140), + [sym_identifier] = ACTIONS(2142), [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_asyncfor] = 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_async] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(49), - [anon_sym_assert] = ACTIONS(51), - [anon_sym_assert_equal] = ACTIONS(51), - [anon_sym_download] = ACTIONS(51), - [anon_sym_help] = ACTIONS(51), - [anon_sym_length] = ACTIONS(51), - [anon_sym_output] = ACTIONS(51), - [anon_sym_output_error] = ACTIONS(51), - [anon_sym_type] = ACTIONS(51), - [anon_sym_append] = ACTIONS(51), - [anon_sym_metadata] = ACTIONS(51), - [anon_sym_move] = ACTIONS(51), - [anon_sym_read] = ACTIONS(51), - [anon_sym_workdir] = ACTIONS(51), - [anon_sym_write] = ACTIONS(51), - [anon_sym_from_json] = ACTIONS(51), - [anon_sym_to_json] = ACTIONS(51), - [anon_sym_to_string] = ACTIONS(51), - [anon_sym_to_float] = ACTIONS(51), - [anon_sym_bash] = ACTIONS(51), - [anon_sym_fish] = ACTIONS(51), - [anon_sym_raw] = ACTIONS(51), - [anon_sym_sh] = ACTIONS(51), - [anon_sym_zsh] = ACTIONS(51), - [anon_sym_random] = ACTIONS(51), - [anon_sym_random_boolean] = ACTIONS(51), - [anon_sym_random_float] = ACTIONS(51), - [anon_sym_random_integer] = ACTIONS(51), - [anon_sym_columns] = ACTIONS(51), - [anon_sym_rows] = ACTIONS(51), - [anon_sym_reverse] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(2140), + [anon_sym_RBRACE] = ACTIONS(2140), + [anon_sym_SEMI] = ACTIONS(2140), + [anon_sym_LPAREN] = ACTIONS(2140), + [anon_sym_RPAREN] = ACTIONS(2140), + [anon_sym_COMMA] = ACTIONS(2140), + [sym_integer] = ACTIONS(2142), + [sym_float] = ACTIONS(2140), + [sym_string] = ACTIONS(2140), + [anon_sym_true] = ACTIONS(2142), + [anon_sym_false] = ACTIONS(2142), + [anon_sym_LBRACK] = ACTIONS(2140), + [anon_sym_RBRACK] = ACTIONS(2140), + [anon_sym_COLON] = ACTIONS(2140), + [anon_sym_DOT_DOT] = ACTIONS(2140), + [anon_sym_PLUS] = ACTIONS(2140), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_STAR] = ACTIONS(2140), + [anon_sym_SLASH] = ACTIONS(2140), + [anon_sym_PERCENT] = ACTIONS(2140), + [anon_sym_EQ_EQ] = ACTIONS(2140), + [anon_sym_BANG_EQ] = ACTIONS(2140), + [anon_sym_AMP_AMP] = ACTIONS(2140), + [anon_sym_PIPE_PIPE] = ACTIONS(2140), + [anon_sym_GT] = ACTIONS(2142), + [anon_sym_LT] = ACTIONS(2142), + [anon_sym_GT_EQ] = ACTIONS(2140), + [anon_sym_LT_EQ] = ACTIONS(2140), + [anon_sym_if] = ACTIONS(2142), + [anon_sym_match] = ACTIONS(2142), + [anon_sym_EQ_GT] = ACTIONS(2140), + [anon_sym_while] = ACTIONS(2142), + [anon_sym_for] = ACTIONS(2142), + [anon_sym_asyncfor] = ACTIONS(2140), + [anon_sym_transform] = ACTIONS(2142), + [anon_sym_filter] = ACTIONS(2142), + [anon_sym_find] = ACTIONS(2142), + [anon_sym_remove] = ACTIONS(2142), + [anon_sym_reduce] = ACTIONS(2142), + [anon_sym_select] = ACTIONS(2142), + [anon_sym_insert] = ACTIONS(2142), + [anon_sym_async] = ACTIONS(2142), + [anon_sym_PIPE] = ACTIONS(2142), + [anon_sym_table] = ACTIONS(2142), + [anon_sym_assert] = ACTIONS(2142), + [anon_sym_assert_equal] = ACTIONS(2142), + [anon_sym_download] = ACTIONS(2142), + [anon_sym_help] = ACTIONS(2142), + [anon_sym_length] = ACTIONS(2142), + [anon_sym_output] = ACTIONS(2142), + [anon_sym_output_error] = ACTIONS(2142), + [anon_sym_type] = ACTIONS(2142), + [anon_sym_append] = ACTIONS(2142), + [anon_sym_metadata] = ACTIONS(2142), + [anon_sym_move] = ACTIONS(2142), + [anon_sym_read] = ACTIONS(2142), + [anon_sym_workdir] = ACTIONS(2142), + [anon_sym_write] = ACTIONS(2142), + [anon_sym_from_json] = ACTIONS(2142), + [anon_sym_to_json] = ACTIONS(2142), + [anon_sym_to_string] = ACTIONS(2142), + [anon_sym_to_float] = ACTIONS(2142), + [anon_sym_bash] = ACTIONS(2142), + [anon_sym_fish] = ACTIONS(2142), + [anon_sym_raw] = ACTIONS(2142), + [anon_sym_sh] = ACTIONS(2142), + [anon_sym_zsh] = ACTIONS(2142), + [anon_sym_random] = ACTIONS(2142), + [anon_sym_random_boolean] = ACTIONS(2142), + [anon_sym_random_float] = ACTIONS(2142), + [anon_sym_random_integer] = ACTIONS(2142), + [anon_sym_columns] = ACTIONS(2142), + [anon_sym_rows] = ACTIONS(2142), + [anon_sym_reverse] = ACTIONS(2142), }, [487] = { - [sym_block] = STATE(603), - [sym_statement] = STATE(27), - [sym_expression] = STATE(663), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_logic] = STATE(631), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(637), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(1998), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(296), - [aux_sym_block_repeat1] = STATE(27), - [sym_identifier] = ACTIONS(55), + [ts_builtin_sym_end] = ACTIONS(2136), + [sym_identifier] = ACTIONS(2138), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(59), - [sym_integer] = ACTIONS(61), - [sym_float] = ACTIONS(63), - [sym_string] = ACTIONS(63), - [anon_sym_true] = ACTIONS(65), - [anon_sym_false] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_if] = ACTIONS(311), - [anon_sym_match] = ACTIONS(313), - [anon_sym_EQ_GT] = ACTIONS(315), - [anon_sym_while] = ACTIONS(317), - [anon_sym_for] = ACTIONS(319), - [anon_sym_asyncfor] = ACTIONS(321), - [anon_sym_transform] = ACTIONS(323), - [anon_sym_filter] = ACTIONS(325), - [anon_sym_find] = ACTIONS(327), - [anon_sym_remove] = ACTIONS(329), - [anon_sym_reduce] = ACTIONS(331), - [anon_sym_select] = ACTIONS(333), - [anon_sym_insert] = ACTIONS(335), - [anon_sym_async] = ACTIONS(337), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(339), - [anon_sym_assert] = ACTIONS(341), - [anon_sym_assert_equal] = ACTIONS(341), - [anon_sym_download] = ACTIONS(341), - [anon_sym_help] = ACTIONS(341), - [anon_sym_length] = ACTIONS(341), - [anon_sym_output] = ACTIONS(341), - [anon_sym_output_error] = ACTIONS(341), - [anon_sym_type] = ACTIONS(341), - [anon_sym_append] = ACTIONS(341), - [anon_sym_metadata] = ACTIONS(341), - [anon_sym_move] = ACTIONS(341), - [anon_sym_read] = ACTIONS(341), - [anon_sym_workdir] = ACTIONS(341), - [anon_sym_write] = ACTIONS(341), - [anon_sym_from_json] = ACTIONS(341), - [anon_sym_to_json] = ACTIONS(341), - [anon_sym_to_string] = ACTIONS(341), - [anon_sym_to_float] = ACTIONS(341), - [anon_sym_bash] = ACTIONS(341), - [anon_sym_fish] = ACTIONS(341), - [anon_sym_raw] = ACTIONS(341), - [anon_sym_sh] = ACTIONS(341), - [anon_sym_zsh] = ACTIONS(341), - [anon_sym_random] = ACTIONS(341), - [anon_sym_random_boolean] = ACTIONS(341), - [anon_sym_random_float] = ACTIONS(341), - [anon_sym_random_integer] = ACTIONS(341), - [anon_sym_columns] = ACTIONS(341), - [anon_sym_rows] = ACTIONS(341), - [anon_sym_reverse] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(2136), + [anon_sym_RBRACE] = ACTIONS(2136), + [anon_sym_SEMI] = ACTIONS(2136), + [anon_sym_LPAREN] = ACTIONS(2136), + [anon_sym_RPAREN] = ACTIONS(2136), + [anon_sym_COMMA] = ACTIONS(2136), + [sym_integer] = ACTIONS(2138), + [sym_float] = ACTIONS(2136), + [sym_string] = ACTIONS(2136), + [anon_sym_true] = ACTIONS(2138), + [anon_sym_false] = ACTIONS(2138), + [anon_sym_LBRACK] = ACTIONS(2136), + [anon_sym_RBRACK] = ACTIONS(2136), + [anon_sym_COLON] = ACTIONS(2136), + [anon_sym_DOT_DOT] = ACTIONS(2136), + [anon_sym_PLUS] = ACTIONS(2136), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(2136), + [anon_sym_SLASH] = ACTIONS(2136), + [anon_sym_PERCENT] = ACTIONS(2136), + [anon_sym_EQ_EQ] = ACTIONS(2136), + [anon_sym_BANG_EQ] = ACTIONS(2136), + [anon_sym_AMP_AMP] = ACTIONS(2136), + [anon_sym_PIPE_PIPE] = ACTIONS(2136), + [anon_sym_GT] = ACTIONS(2138), + [anon_sym_LT] = ACTIONS(2138), + [anon_sym_GT_EQ] = ACTIONS(2136), + [anon_sym_LT_EQ] = ACTIONS(2136), + [anon_sym_if] = ACTIONS(2138), + [anon_sym_match] = ACTIONS(2138), + [anon_sym_EQ_GT] = ACTIONS(2136), + [anon_sym_while] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2138), + [anon_sym_asyncfor] = ACTIONS(2136), + [anon_sym_transform] = ACTIONS(2138), + [anon_sym_filter] = ACTIONS(2138), + [anon_sym_find] = ACTIONS(2138), + [anon_sym_remove] = ACTIONS(2138), + [anon_sym_reduce] = ACTIONS(2138), + [anon_sym_select] = ACTIONS(2138), + [anon_sym_insert] = ACTIONS(2138), + [anon_sym_async] = ACTIONS(2138), + [anon_sym_PIPE] = ACTIONS(2138), + [anon_sym_table] = ACTIONS(2138), + [anon_sym_assert] = ACTIONS(2138), + [anon_sym_assert_equal] = ACTIONS(2138), + [anon_sym_download] = ACTIONS(2138), + [anon_sym_help] = ACTIONS(2138), + [anon_sym_length] = ACTIONS(2138), + [anon_sym_output] = ACTIONS(2138), + [anon_sym_output_error] = ACTIONS(2138), + [anon_sym_type] = ACTIONS(2138), + [anon_sym_append] = ACTIONS(2138), + [anon_sym_metadata] = ACTIONS(2138), + [anon_sym_move] = ACTIONS(2138), + [anon_sym_read] = ACTIONS(2138), + [anon_sym_workdir] = ACTIONS(2138), + [anon_sym_write] = ACTIONS(2138), + [anon_sym_from_json] = ACTIONS(2138), + [anon_sym_to_json] = ACTIONS(2138), + [anon_sym_to_string] = ACTIONS(2138), + [anon_sym_to_float] = ACTIONS(2138), + [anon_sym_bash] = ACTIONS(2138), + [anon_sym_fish] = ACTIONS(2138), + [anon_sym_raw] = ACTIONS(2138), + [anon_sym_sh] = ACTIONS(2138), + [anon_sym_zsh] = ACTIONS(2138), + [anon_sym_random] = ACTIONS(2138), + [anon_sym_random_boolean] = ACTIONS(2138), + [anon_sym_random_float] = ACTIONS(2138), + [anon_sym_random_integer] = ACTIONS(2138), + [anon_sym_columns] = ACTIONS(2138), + [anon_sym_rows] = ACTIONS(2138), + [anon_sym_reverse] = ACTIONS(2138), }, [488] = { - [sym_block] = STATE(1004), - [sym_statement] = STATE(260), - [sym_expression] = STATE(888), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(822), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(787), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(260), - [sym_identifier] = ACTIONS(1846), + [ts_builtin_sym_end] = ACTIONS(2195), + [sym_identifier] = ACTIONS(2197), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3083), - [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(1284), - [anon_sym_match] = ACTIONS(1850), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(1852), - [anon_sym_for] = ACTIONS(1854), - [anon_sym_asyncfor] = ACTIONS(1856), - [anon_sym_transform] = ACTIONS(1858), - [anon_sym_filter] = ACTIONS(1860), - [anon_sym_find] = ACTIONS(1862), - [anon_sym_remove] = ACTIONS(1864), - [anon_sym_reduce] = ACTIONS(1866), - [anon_sym_select] = ACTIONS(1868), - [anon_sym_insert] = ACTIONS(43), - [anon_sym_async] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(49), - [anon_sym_assert] = ACTIONS(51), - [anon_sym_assert_equal] = ACTIONS(51), - [anon_sym_download] = ACTIONS(51), - [anon_sym_help] = ACTIONS(51), - [anon_sym_length] = ACTIONS(51), - [anon_sym_output] = ACTIONS(51), - [anon_sym_output_error] = ACTIONS(51), - [anon_sym_type] = ACTIONS(51), - [anon_sym_append] = ACTIONS(51), - [anon_sym_metadata] = ACTIONS(51), - [anon_sym_move] = ACTIONS(51), - [anon_sym_read] = ACTIONS(51), - [anon_sym_workdir] = ACTIONS(51), - [anon_sym_write] = ACTIONS(51), - [anon_sym_from_json] = ACTIONS(51), - [anon_sym_to_json] = ACTIONS(51), - [anon_sym_to_string] = ACTIONS(51), - [anon_sym_to_float] = ACTIONS(51), - [anon_sym_bash] = ACTIONS(51), - [anon_sym_fish] = ACTIONS(51), - [anon_sym_raw] = ACTIONS(51), - [anon_sym_sh] = ACTIONS(51), - [anon_sym_zsh] = ACTIONS(51), - [anon_sym_random] = ACTIONS(51), - [anon_sym_random_boolean] = ACTIONS(51), - [anon_sym_random_float] = ACTIONS(51), - [anon_sym_random_integer] = ACTIONS(51), - [anon_sym_columns] = ACTIONS(51), - [anon_sym_rows] = ACTIONS(51), - [anon_sym_reverse] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(2195), + [anon_sym_RBRACE] = ACTIONS(2195), + [anon_sym_SEMI] = ACTIONS(2195), + [anon_sym_LPAREN] = ACTIONS(2195), + [anon_sym_RPAREN] = ACTIONS(2195), + [anon_sym_COMMA] = ACTIONS(2195), + [sym_integer] = ACTIONS(2197), + [sym_float] = ACTIONS(2195), + [sym_string] = ACTIONS(2195), + [anon_sym_true] = ACTIONS(2197), + [anon_sym_false] = ACTIONS(2197), + [anon_sym_LBRACK] = ACTIONS(2195), + [anon_sym_RBRACK] = ACTIONS(2195), + [anon_sym_COLON] = ACTIONS(2195), + [anon_sym_DOT_DOT] = ACTIONS(2195), + [anon_sym_PLUS] = ACTIONS(2195), + [anon_sym_DASH] = ACTIONS(2197), + [anon_sym_STAR] = ACTIONS(2195), + [anon_sym_SLASH] = ACTIONS(2195), + [anon_sym_PERCENT] = ACTIONS(2195), + [anon_sym_EQ_EQ] = ACTIONS(2195), + [anon_sym_BANG_EQ] = ACTIONS(2195), + [anon_sym_AMP_AMP] = ACTIONS(2195), + [anon_sym_PIPE_PIPE] = ACTIONS(2195), + [anon_sym_GT] = ACTIONS(2197), + [anon_sym_LT] = ACTIONS(2197), + [anon_sym_GT_EQ] = ACTIONS(2195), + [anon_sym_LT_EQ] = ACTIONS(2195), + [anon_sym_if] = ACTIONS(2197), + [anon_sym_match] = ACTIONS(2197), + [anon_sym_EQ_GT] = ACTIONS(2195), + [anon_sym_while] = ACTIONS(2197), + [anon_sym_for] = ACTIONS(2197), + [anon_sym_asyncfor] = ACTIONS(2195), + [anon_sym_transform] = ACTIONS(2197), + [anon_sym_filter] = ACTIONS(2197), + [anon_sym_find] = ACTIONS(2197), + [anon_sym_remove] = ACTIONS(2197), + [anon_sym_reduce] = ACTIONS(2197), + [anon_sym_select] = ACTIONS(2197), + [anon_sym_insert] = ACTIONS(2197), + [anon_sym_async] = ACTIONS(2197), + [anon_sym_PIPE] = ACTIONS(2197), + [anon_sym_table] = ACTIONS(2197), + [anon_sym_assert] = ACTIONS(2197), + [anon_sym_assert_equal] = ACTIONS(2197), + [anon_sym_download] = ACTIONS(2197), + [anon_sym_help] = ACTIONS(2197), + [anon_sym_length] = ACTIONS(2197), + [anon_sym_output] = ACTIONS(2197), + [anon_sym_output_error] = ACTIONS(2197), + [anon_sym_type] = ACTIONS(2197), + [anon_sym_append] = ACTIONS(2197), + [anon_sym_metadata] = ACTIONS(2197), + [anon_sym_move] = ACTIONS(2197), + [anon_sym_read] = ACTIONS(2197), + [anon_sym_workdir] = ACTIONS(2197), + [anon_sym_write] = ACTIONS(2197), + [anon_sym_from_json] = ACTIONS(2197), + [anon_sym_to_json] = ACTIONS(2197), + [anon_sym_to_string] = ACTIONS(2197), + [anon_sym_to_float] = ACTIONS(2197), + [anon_sym_bash] = ACTIONS(2197), + [anon_sym_fish] = ACTIONS(2197), + [anon_sym_raw] = ACTIONS(2197), + [anon_sym_sh] = ACTIONS(2197), + [anon_sym_zsh] = ACTIONS(2197), + [anon_sym_random] = ACTIONS(2197), + [anon_sym_random_boolean] = ACTIONS(2197), + [anon_sym_random_float] = ACTIONS(2197), + [anon_sym_random_integer] = ACTIONS(2197), + [anon_sym_columns] = ACTIONS(2197), + [anon_sym_rows] = ACTIONS(2197), + [anon_sym_reverse] = ACTIONS(2197), }, [489] = { - [sym_block] = STATE(622), - [sym_statement] = STATE(12), - [sym_expression] = STATE(583), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_logic] = STATE(631), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(567), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(2030), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(271), - [aux_sym_block_repeat1] = STATE(12), - [sym_identifier] = ACTIONS(55), + [ts_builtin_sym_end] = ACTIONS(2183), + [sym_identifier] = ACTIONS(2185), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(59), - [sym_integer] = ACTIONS(61), - [sym_float] = ACTIONS(63), - [sym_string] = ACTIONS(63), - [anon_sym_true] = ACTIONS(65), - [anon_sym_false] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(67), - [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_asyncfor] = ACTIONS(127), - [anon_sym_transform] = ACTIONS(129), - [anon_sym_filter] = ACTIONS(131), - [anon_sym_find] = ACTIONS(133), - [anon_sym_remove] = ACTIONS(135), - [anon_sym_reduce] = ACTIONS(137), - [anon_sym_select] = ACTIONS(139), - [anon_sym_insert] = ACTIONS(141), - [anon_sym_async] = ACTIONS(143), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(147), - [anon_sym_assert_equal] = ACTIONS(147), - [anon_sym_download] = ACTIONS(147), - [anon_sym_help] = ACTIONS(147), - [anon_sym_length] = ACTIONS(147), - [anon_sym_output] = ACTIONS(147), - [anon_sym_output_error] = ACTIONS(147), - [anon_sym_type] = ACTIONS(147), - [anon_sym_append] = ACTIONS(147), - [anon_sym_metadata] = ACTIONS(147), - [anon_sym_move] = ACTIONS(147), - [anon_sym_read] = ACTIONS(147), - [anon_sym_workdir] = ACTIONS(147), - [anon_sym_write] = ACTIONS(147), - [anon_sym_from_json] = ACTIONS(147), - [anon_sym_to_json] = ACTIONS(147), - [anon_sym_to_string] = ACTIONS(147), - [anon_sym_to_float] = ACTIONS(147), - [anon_sym_bash] = ACTIONS(147), - [anon_sym_fish] = ACTIONS(147), - [anon_sym_raw] = ACTIONS(147), - [anon_sym_sh] = ACTIONS(147), - [anon_sym_zsh] = ACTIONS(147), - [anon_sym_random] = ACTIONS(147), - [anon_sym_random_boolean] = ACTIONS(147), - [anon_sym_random_float] = ACTIONS(147), - [anon_sym_random_integer] = ACTIONS(147), - [anon_sym_columns] = ACTIONS(147), - [anon_sym_rows] = ACTIONS(147), - [anon_sym_reverse] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(2183), + [anon_sym_RBRACE] = ACTIONS(2183), + [anon_sym_SEMI] = ACTIONS(2183), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_RPAREN] = ACTIONS(2183), + [anon_sym_COMMA] = ACTIONS(2183), + [sym_integer] = ACTIONS(2185), + [sym_float] = ACTIONS(2183), + [sym_string] = ACTIONS(2183), + [anon_sym_true] = ACTIONS(2185), + [anon_sym_false] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2183), + [anon_sym_RBRACK] = ACTIONS(2183), + [anon_sym_COLON] = ACTIONS(2183), + [anon_sym_DOT_DOT] = ACTIONS(2183), + [anon_sym_PLUS] = ACTIONS(2183), + [anon_sym_DASH] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(2183), + [anon_sym_SLASH] = ACTIONS(2183), + [anon_sym_PERCENT] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2183), + [anon_sym_BANG_EQ] = ACTIONS(2183), + [anon_sym_AMP_AMP] = ACTIONS(2183), + [anon_sym_PIPE_PIPE] = ACTIONS(2183), + [anon_sym_GT] = ACTIONS(2185), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_GT_EQ] = ACTIONS(2183), + [anon_sym_LT_EQ] = ACTIONS(2183), + [anon_sym_if] = ACTIONS(2185), + [anon_sym_match] = ACTIONS(2185), + [anon_sym_EQ_GT] = ACTIONS(2183), + [anon_sym_while] = ACTIONS(2185), + [anon_sym_for] = ACTIONS(2185), + [anon_sym_asyncfor] = ACTIONS(2183), + [anon_sym_transform] = ACTIONS(2185), + [anon_sym_filter] = ACTIONS(2185), + [anon_sym_find] = ACTIONS(2185), + [anon_sym_remove] = ACTIONS(2185), + [anon_sym_reduce] = ACTIONS(2185), + [anon_sym_select] = ACTIONS(2185), + [anon_sym_insert] = ACTIONS(2185), + [anon_sym_async] = ACTIONS(2185), + [anon_sym_PIPE] = ACTIONS(2185), + [anon_sym_table] = ACTIONS(2185), + [anon_sym_assert] = ACTIONS(2185), + [anon_sym_assert_equal] = ACTIONS(2185), + [anon_sym_download] = ACTIONS(2185), + [anon_sym_help] = ACTIONS(2185), + [anon_sym_length] = ACTIONS(2185), + [anon_sym_output] = ACTIONS(2185), + [anon_sym_output_error] = ACTIONS(2185), + [anon_sym_type] = ACTIONS(2185), + [anon_sym_append] = ACTIONS(2185), + [anon_sym_metadata] = ACTIONS(2185), + [anon_sym_move] = ACTIONS(2185), + [anon_sym_read] = ACTIONS(2185), + [anon_sym_workdir] = ACTIONS(2185), + [anon_sym_write] = ACTIONS(2185), + [anon_sym_from_json] = ACTIONS(2185), + [anon_sym_to_json] = ACTIONS(2185), + [anon_sym_to_string] = ACTIONS(2185), + [anon_sym_to_float] = ACTIONS(2185), + [anon_sym_bash] = ACTIONS(2185), + [anon_sym_fish] = ACTIONS(2185), + [anon_sym_raw] = ACTIONS(2185), + [anon_sym_sh] = ACTIONS(2185), + [anon_sym_zsh] = ACTIONS(2185), + [anon_sym_random] = ACTIONS(2185), + [anon_sym_random_boolean] = ACTIONS(2185), + [anon_sym_random_float] = ACTIONS(2185), + [anon_sym_random_integer] = ACTIONS(2185), + [anon_sym_columns] = ACTIONS(2185), + [anon_sym_rows] = ACTIONS(2185), + [anon_sym_reverse] = ACTIONS(2185), }, [490] = { - [sym_block] = STATE(723), - [sym_statement] = STATE(35), - [sym_expression] = STATE(701), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_logic] = STATE(706), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(582), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1866), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(320), - [aux_sym_block_repeat1] = STATE(35), - [sym_identifier] = ACTIONS(149), + [ts_builtin_sym_end] = ACTIONS(2173), + [sym_identifier] = ACTIONS(2175), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_if] = ACTIONS(197), - [anon_sym_match] = ACTIONS(497), - [anon_sym_EQ_GT] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_asyncfor] = ACTIONS(505), - [anon_sym_transform] = ACTIONS(507), - [anon_sym_filter] = ACTIONS(509), - [anon_sym_find] = ACTIONS(511), - [anon_sym_remove] = ACTIONS(513), - [anon_sym_reduce] = ACTIONS(515), - [anon_sym_select] = ACTIONS(517), - [anon_sym_insert] = ACTIONS(519), - [anon_sym_async] = ACTIONS(521), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(523), - [anon_sym_assert] = ACTIONS(525), - [anon_sym_assert_equal] = ACTIONS(525), - [anon_sym_download] = ACTIONS(525), - [anon_sym_help] = ACTIONS(525), - [anon_sym_length] = ACTIONS(525), - [anon_sym_output] = ACTIONS(525), - [anon_sym_output_error] = ACTIONS(525), - [anon_sym_type] = ACTIONS(525), - [anon_sym_append] = ACTIONS(525), - [anon_sym_metadata] = ACTIONS(525), - [anon_sym_move] = ACTIONS(525), - [anon_sym_read] = ACTIONS(525), - [anon_sym_workdir] = ACTIONS(525), - [anon_sym_write] = ACTIONS(525), - [anon_sym_from_json] = ACTIONS(525), - [anon_sym_to_json] = ACTIONS(525), - [anon_sym_to_string] = ACTIONS(525), - [anon_sym_to_float] = ACTIONS(525), - [anon_sym_bash] = ACTIONS(525), - [anon_sym_fish] = ACTIONS(525), - [anon_sym_raw] = ACTIONS(525), - [anon_sym_sh] = ACTIONS(525), - [anon_sym_zsh] = ACTIONS(525), - [anon_sym_random] = ACTIONS(525), - [anon_sym_random_boolean] = ACTIONS(525), - [anon_sym_random_float] = ACTIONS(525), - [anon_sym_random_integer] = ACTIONS(525), - [anon_sym_columns] = ACTIONS(525), - [anon_sym_rows] = ACTIONS(525), - [anon_sym_reverse] = ACTIONS(525), + [anon_sym_LBRACE] = ACTIONS(2173), + [anon_sym_RBRACE] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(2173), + [anon_sym_RPAREN] = ACTIONS(2173), + [anon_sym_COMMA] = ACTIONS(2173), + [sym_integer] = ACTIONS(2175), + [sym_float] = ACTIONS(2173), + [sym_string] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2175), + [anon_sym_false] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_RBRACK] = ACTIONS(2173), + [anon_sym_COLON] = ACTIONS(2173), + [anon_sym_DOT_DOT] = ACTIONS(2173), + [anon_sym_PLUS] = ACTIONS(2173), + [anon_sym_DASH] = ACTIONS(2175), + [anon_sym_STAR] = ACTIONS(2173), + [anon_sym_SLASH] = ACTIONS(2173), + [anon_sym_PERCENT] = ACTIONS(2173), + [anon_sym_EQ_EQ] = ACTIONS(2173), + [anon_sym_BANG_EQ] = ACTIONS(2173), + [anon_sym_AMP_AMP] = ACTIONS(2173), + [anon_sym_PIPE_PIPE] = ACTIONS(2173), + [anon_sym_GT] = ACTIONS(2175), + [anon_sym_LT] = ACTIONS(2175), + [anon_sym_GT_EQ] = ACTIONS(2173), + [anon_sym_LT_EQ] = ACTIONS(2173), + [anon_sym_if] = ACTIONS(2175), + [anon_sym_match] = ACTIONS(2175), + [anon_sym_EQ_GT] = ACTIONS(2173), + [anon_sym_while] = ACTIONS(2175), + [anon_sym_for] = ACTIONS(2175), + [anon_sym_asyncfor] = ACTIONS(2173), + [anon_sym_transform] = ACTIONS(2175), + [anon_sym_filter] = ACTIONS(2175), + [anon_sym_find] = ACTIONS(2175), + [anon_sym_remove] = ACTIONS(2175), + [anon_sym_reduce] = ACTIONS(2175), + [anon_sym_select] = ACTIONS(2175), + [anon_sym_insert] = ACTIONS(2175), + [anon_sym_async] = ACTIONS(2175), + [anon_sym_PIPE] = ACTIONS(2175), + [anon_sym_table] = ACTIONS(2175), + [anon_sym_assert] = ACTIONS(2175), + [anon_sym_assert_equal] = ACTIONS(2175), + [anon_sym_download] = ACTIONS(2175), + [anon_sym_help] = ACTIONS(2175), + [anon_sym_length] = ACTIONS(2175), + [anon_sym_output] = ACTIONS(2175), + [anon_sym_output_error] = ACTIONS(2175), + [anon_sym_type] = ACTIONS(2175), + [anon_sym_append] = ACTIONS(2175), + [anon_sym_metadata] = ACTIONS(2175), + [anon_sym_move] = ACTIONS(2175), + [anon_sym_read] = ACTIONS(2175), + [anon_sym_workdir] = ACTIONS(2175), + [anon_sym_write] = ACTIONS(2175), + [anon_sym_from_json] = ACTIONS(2175), + [anon_sym_to_json] = ACTIONS(2175), + [anon_sym_to_string] = ACTIONS(2175), + [anon_sym_to_float] = ACTIONS(2175), + [anon_sym_bash] = ACTIONS(2175), + [anon_sym_fish] = ACTIONS(2175), + [anon_sym_raw] = ACTIONS(2175), + [anon_sym_sh] = ACTIONS(2175), + [anon_sym_zsh] = ACTIONS(2175), + [anon_sym_random] = ACTIONS(2175), + [anon_sym_random_boolean] = ACTIONS(2175), + [anon_sym_random_float] = ACTIONS(2175), + [anon_sym_random_integer] = ACTIONS(2175), + [anon_sym_columns] = ACTIONS(2175), + [anon_sym_rows] = ACTIONS(2175), + [anon_sym_reverse] = ACTIONS(2175), }, [491] = { - [sym_statement] = STATE(376), - [sym_expression] = STATE(925), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(867), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(980), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(376), - [sym_identifier] = ACTIONS(5), + [ts_builtin_sym_end] = ACTIONS(2231), + [sym_identifier] = ACTIONS(2233), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(3103), - [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_asyncfor] = 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_async] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(49), - [anon_sym_assert] = ACTIONS(51), - [anon_sym_assert_equal] = ACTIONS(51), - [anon_sym_download] = ACTIONS(51), - [anon_sym_help] = ACTIONS(51), - [anon_sym_length] = ACTIONS(51), - [anon_sym_output] = ACTIONS(51), - [anon_sym_output_error] = ACTIONS(51), - [anon_sym_type] = ACTIONS(51), - [anon_sym_append] = ACTIONS(51), - [anon_sym_metadata] = ACTIONS(51), - [anon_sym_move] = ACTIONS(51), - [anon_sym_read] = ACTIONS(51), - [anon_sym_workdir] = ACTIONS(51), - [anon_sym_write] = ACTIONS(51), - [anon_sym_from_json] = ACTIONS(51), - [anon_sym_to_json] = ACTIONS(51), - [anon_sym_to_string] = ACTIONS(51), - [anon_sym_to_float] = ACTIONS(51), - [anon_sym_bash] = ACTIONS(51), - [anon_sym_fish] = ACTIONS(51), - [anon_sym_raw] = ACTIONS(51), - [anon_sym_sh] = ACTIONS(51), - [anon_sym_zsh] = ACTIONS(51), - [anon_sym_random] = ACTIONS(51), - [anon_sym_random_boolean] = ACTIONS(51), - [anon_sym_random_float] = ACTIONS(51), - [anon_sym_random_integer] = ACTIONS(51), - [anon_sym_columns] = ACTIONS(51), - [anon_sym_rows] = ACTIONS(51), - [anon_sym_reverse] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(2231), + [anon_sym_RBRACE] = ACTIONS(2231), + [anon_sym_SEMI] = ACTIONS(2231), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_RPAREN] = ACTIONS(2231), + [anon_sym_COMMA] = ACTIONS(2231), + [sym_integer] = ACTIONS(2233), + [sym_float] = ACTIONS(2231), + [sym_string] = ACTIONS(2231), + [anon_sym_true] = ACTIONS(2233), + [anon_sym_false] = ACTIONS(2233), + [anon_sym_LBRACK] = ACTIONS(2231), + [anon_sym_RBRACK] = ACTIONS(2231), + [anon_sym_COLON] = ACTIONS(2231), + [anon_sym_DOT_DOT] = ACTIONS(2231), + [anon_sym_PLUS] = ACTIONS(2231), + [anon_sym_DASH] = ACTIONS(2233), + [anon_sym_STAR] = ACTIONS(2231), + [anon_sym_SLASH] = ACTIONS(2231), + [anon_sym_PERCENT] = ACTIONS(2231), + [anon_sym_EQ_EQ] = ACTIONS(2231), + [anon_sym_BANG_EQ] = ACTIONS(2231), + [anon_sym_AMP_AMP] = ACTIONS(2231), + [anon_sym_PIPE_PIPE] = ACTIONS(2231), + [anon_sym_GT] = ACTIONS(2233), + [anon_sym_LT] = ACTIONS(2233), + [anon_sym_GT_EQ] = ACTIONS(2231), + [anon_sym_LT_EQ] = ACTIONS(2231), + [anon_sym_if] = ACTIONS(2233), + [anon_sym_match] = ACTIONS(2233), + [anon_sym_EQ_GT] = ACTIONS(2231), + [anon_sym_while] = ACTIONS(2233), + [anon_sym_for] = ACTIONS(2233), + [anon_sym_asyncfor] = ACTIONS(2231), + [anon_sym_transform] = ACTIONS(2233), + [anon_sym_filter] = ACTIONS(2233), + [anon_sym_find] = ACTIONS(2233), + [anon_sym_remove] = ACTIONS(2233), + [anon_sym_reduce] = ACTIONS(2233), + [anon_sym_select] = ACTIONS(2233), + [anon_sym_insert] = ACTIONS(2233), + [anon_sym_async] = ACTIONS(2233), + [anon_sym_PIPE] = ACTIONS(2233), + [anon_sym_table] = ACTIONS(2233), + [anon_sym_assert] = ACTIONS(2233), + [anon_sym_assert_equal] = ACTIONS(2233), + [anon_sym_download] = ACTIONS(2233), + [anon_sym_help] = ACTIONS(2233), + [anon_sym_length] = ACTIONS(2233), + [anon_sym_output] = ACTIONS(2233), + [anon_sym_output_error] = ACTIONS(2233), + [anon_sym_type] = ACTIONS(2233), + [anon_sym_append] = ACTIONS(2233), + [anon_sym_metadata] = ACTIONS(2233), + [anon_sym_move] = ACTIONS(2233), + [anon_sym_read] = ACTIONS(2233), + [anon_sym_workdir] = ACTIONS(2233), + [anon_sym_write] = ACTIONS(2233), + [anon_sym_from_json] = ACTIONS(2233), + [anon_sym_to_json] = ACTIONS(2233), + [anon_sym_to_string] = ACTIONS(2233), + [anon_sym_to_float] = ACTIONS(2233), + [anon_sym_bash] = ACTIONS(2233), + [anon_sym_fish] = ACTIONS(2233), + [anon_sym_raw] = ACTIONS(2233), + [anon_sym_sh] = ACTIONS(2233), + [anon_sym_zsh] = ACTIONS(2233), + [anon_sym_random] = ACTIONS(2233), + [anon_sym_random_boolean] = ACTIONS(2233), + [anon_sym_random_float] = ACTIONS(2233), + [anon_sym_random_integer] = ACTIONS(2233), + [anon_sym_columns] = ACTIONS(2233), + [anon_sym_rows] = ACTIONS(2233), + [anon_sym_reverse] = ACTIONS(2233), }, [492] = { - [sym_block] = STATE(799), - [sym_statement] = STATE(22), - [sym_expression] = STATE(685), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(576), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(647), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1984), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(302), - [aux_sym_block_repeat1] = STATE(22), - [sym_identifier] = ACTIONS(229), + [ts_builtin_sym_end] = ACTIONS(1361), + [sym_identifier] = ACTIONS(1384), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_if] = ACTIONS(245), - [anon_sym_match] = ACTIONS(247), - [anon_sym_EQ_GT] = ACTIONS(249), - [anon_sym_while] = ACTIONS(251), - [anon_sym_for] = ACTIONS(253), - [anon_sym_asyncfor] = ACTIONS(255), - [anon_sym_transform] = ACTIONS(257), - [anon_sym_filter] = ACTIONS(259), - [anon_sym_find] = ACTIONS(261), - [anon_sym_remove] = ACTIONS(263), - [anon_sym_reduce] = ACTIONS(265), - [anon_sym_select] = ACTIONS(267), - [anon_sym_insert] = ACTIONS(269), - [anon_sym_async] = ACTIONS(271), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(275), - [anon_sym_assert_equal] = ACTIONS(275), - [anon_sym_download] = ACTIONS(275), - [anon_sym_help] = ACTIONS(275), - [anon_sym_length] = ACTIONS(275), - [anon_sym_output] = ACTIONS(275), - [anon_sym_output_error] = ACTIONS(275), - [anon_sym_type] = ACTIONS(275), - [anon_sym_append] = ACTIONS(275), - [anon_sym_metadata] = ACTIONS(275), - [anon_sym_move] = ACTIONS(275), - [anon_sym_read] = ACTIONS(275), - [anon_sym_workdir] = ACTIONS(275), - [anon_sym_write] = ACTIONS(275), - [anon_sym_from_json] = ACTIONS(275), - [anon_sym_to_json] = ACTIONS(275), - [anon_sym_to_string] = ACTIONS(275), - [anon_sym_to_float] = ACTIONS(275), - [anon_sym_bash] = ACTIONS(275), - [anon_sym_fish] = ACTIONS(275), - [anon_sym_raw] = ACTIONS(275), - [anon_sym_sh] = ACTIONS(275), - [anon_sym_zsh] = ACTIONS(275), - [anon_sym_random] = ACTIONS(275), - [anon_sym_random_boolean] = ACTIONS(275), - [anon_sym_random_float] = ACTIONS(275), - [anon_sym_random_integer] = ACTIONS(275), - [anon_sym_columns] = ACTIONS(275), - [anon_sym_rows] = ACTIONS(275), - [anon_sym_reverse] = ACTIONS(275), + [anon_sym_LBRACE] = ACTIONS(1361), + [anon_sym_RBRACE] = ACTIONS(1361), + [anon_sym_SEMI] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(1361), + [anon_sym_RPAREN] = ACTIONS(1361), + [anon_sym_COMMA] = ACTIONS(1361), + [sym_integer] = ACTIONS(1384), + [sym_float] = ACTIONS(1361), + [sym_string] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1384), + [anon_sym_false] = ACTIONS(1384), + [anon_sym_LBRACK] = ACTIONS(1361), + [anon_sym_RBRACK] = ACTIONS(1361), + [anon_sym_COLON] = ACTIONS(1361), + [anon_sym_DOT_DOT] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1361), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_SLASH] = ACTIONS(1361), + [anon_sym_PERCENT] = ACTIONS(1361), + [anon_sym_EQ_EQ] = ACTIONS(1361), + [anon_sym_BANG_EQ] = ACTIONS(1361), + [anon_sym_AMP_AMP] = ACTIONS(1361), + [anon_sym_PIPE_PIPE] = ACTIONS(1361), + [anon_sym_GT] = ACTIONS(1384), + [anon_sym_LT] = ACTIONS(1384), + [anon_sym_GT_EQ] = ACTIONS(1361), + [anon_sym_LT_EQ] = ACTIONS(1361), + [anon_sym_if] = ACTIONS(1384), + [anon_sym_match] = ACTIONS(1384), + [anon_sym_EQ_GT] = ACTIONS(1361), + [anon_sym_while] = ACTIONS(1384), + [anon_sym_for] = ACTIONS(1384), + [anon_sym_asyncfor] = ACTIONS(1361), + [anon_sym_transform] = ACTIONS(1384), + [anon_sym_filter] = ACTIONS(1384), + [anon_sym_find] = ACTIONS(1384), + [anon_sym_remove] = ACTIONS(1384), + [anon_sym_reduce] = ACTIONS(1384), + [anon_sym_select] = ACTIONS(1384), + [anon_sym_insert] = ACTIONS(1384), + [anon_sym_async] = ACTIONS(1384), + [anon_sym_PIPE] = ACTIONS(1384), + [anon_sym_table] = ACTIONS(1384), + [anon_sym_assert] = ACTIONS(1384), + [anon_sym_assert_equal] = ACTIONS(1384), + [anon_sym_download] = ACTIONS(1384), + [anon_sym_help] = ACTIONS(1384), + [anon_sym_length] = ACTIONS(1384), + [anon_sym_output] = ACTIONS(1384), + [anon_sym_output_error] = ACTIONS(1384), + [anon_sym_type] = ACTIONS(1384), + [anon_sym_append] = ACTIONS(1384), + [anon_sym_metadata] = ACTIONS(1384), + [anon_sym_move] = ACTIONS(1384), + [anon_sym_read] = ACTIONS(1384), + [anon_sym_workdir] = ACTIONS(1384), + [anon_sym_write] = ACTIONS(1384), + [anon_sym_from_json] = ACTIONS(1384), + [anon_sym_to_json] = ACTIONS(1384), + [anon_sym_to_string] = ACTIONS(1384), + [anon_sym_to_float] = ACTIONS(1384), + [anon_sym_bash] = ACTIONS(1384), + [anon_sym_fish] = ACTIONS(1384), + [anon_sym_raw] = ACTIONS(1384), + [anon_sym_sh] = ACTIONS(1384), + [anon_sym_zsh] = ACTIONS(1384), + [anon_sym_random] = ACTIONS(1384), + [anon_sym_random_boolean] = ACTIONS(1384), + [anon_sym_random_float] = ACTIONS(1384), + [anon_sym_random_integer] = ACTIONS(1384), + [anon_sym_columns] = ACTIONS(1384), + [anon_sym_rows] = ACTIONS(1384), + [anon_sym_reverse] = ACTIONS(1384), }, [493] = { - [sym_statement] = STATE(376), - [sym_expression] = STATE(925), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(867), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(980), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(376), - [sym_identifier] = ACTIONS(5), + [ts_builtin_sym_end] = ACTIONS(2263), + [sym_identifier] = ACTIONS(2265), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(3105), - [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_asyncfor] = 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_async] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(49), - [anon_sym_assert] = ACTIONS(51), - [anon_sym_assert_equal] = ACTIONS(51), - [anon_sym_download] = ACTIONS(51), - [anon_sym_help] = ACTIONS(51), - [anon_sym_length] = ACTIONS(51), - [anon_sym_output] = ACTIONS(51), - [anon_sym_output_error] = ACTIONS(51), - [anon_sym_type] = ACTIONS(51), - [anon_sym_append] = ACTIONS(51), - [anon_sym_metadata] = ACTIONS(51), - [anon_sym_move] = ACTIONS(51), - [anon_sym_read] = ACTIONS(51), - [anon_sym_workdir] = ACTIONS(51), - [anon_sym_write] = ACTIONS(51), - [anon_sym_from_json] = ACTIONS(51), - [anon_sym_to_json] = ACTIONS(51), - [anon_sym_to_string] = ACTIONS(51), - [anon_sym_to_float] = ACTIONS(51), - [anon_sym_bash] = ACTIONS(51), - [anon_sym_fish] = ACTIONS(51), - [anon_sym_raw] = ACTIONS(51), - [anon_sym_sh] = ACTIONS(51), - [anon_sym_zsh] = ACTIONS(51), - [anon_sym_random] = ACTIONS(51), - [anon_sym_random_boolean] = ACTIONS(51), - [anon_sym_random_float] = ACTIONS(51), - [anon_sym_random_integer] = ACTIONS(51), - [anon_sym_columns] = ACTIONS(51), - [anon_sym_rows] = ACTIONS(51), - [anon_sym_reverse] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_RBRACE] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_LPAREN] = ACTIONS(2263), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_COMMA] = ACTIONS(2263), + [sym_integer] = ACTIONS(2265), + [sym_float] = ACTIONS(2263), + [sym_string] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(2265), + [anon_sym_false] = ACTIONS(2265), + [anon_sym_LBRACK] = ACTIONS(2263), + [anon_sym_RBRACK] = ACTIONS(2263), + [anon_sym_COLON] = ACTIONS(2263), + [anon_sym_DOT_DOT] = ACTIONS(2263), + [anon_sym_PLUS] = ACTIONS(2263), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_STAR] = ACTIONS(2263), + [anon_sym_SLASH] = ACTIONS(2263), + [anon_sym_PERCENT] = ACTIONS(2263), + [anon_sym_EQ_EQ] = ACTIONS(2263), + [anon_sym_BANG_EQ] = ACTIONS(2263), + [anon_sym_AMP_AMP] = ACTIONS(2263), + [anon_sym_PIPE_PIPE] = ACTIONS(2263), + [anon_sym_GT] = ACTIONS(2265), + [anon_sym_LT] = ACTIONS(2265), + [anon_sym_GT_EQ] = ACTIONS(2263), + [anon_sym_LT_EQ] = ACTIONS(2263), + [anon_sym_if] = ACTIONS(2265), + [anon_sym_match] = ACTIONS(2265), + [anon_sym_EQ_GT] = ACTIONS(2263), + [anon_sym_while] = ACTIONS(2265), + [anon_sym_for] = ACTIONS(2265), + [anon_sym_asyncfor] = ACTIONS(2263), + [anon_sym_transform] = ACTIONS(2265), + [anon_sym_filter] = ACTIONS(2265), + [anon_sym_find] = ACTIONS(2265), + [anon_sym_remove] = ACTIONS(2265), + [anon_sym_reduce] = ACTIONS(2265), + [anon_sym_select] = ACTIONS(2265), + [anon_sym_insert] = ACTIONS(2265), + [anon_sym_async] = ACTIONS(2265), + [anon_sym_PIPE] = ACTIONS(2265), + [anon_sym_table] = ACTIONS(2265), + [anon_sym_assert] = ACTIONS(2265), + [anon_sym_assert_equal] = ACTIONS(2265), + [anon_sym_download] = ACTIONS(2265), + [anon_sym_help] = ACTIONS(2265), + [anon_sym_length] = ACTIONS(2265), + [anon_sym_output] = ACTIONS(2265), + [anon_sym_output_error] = ACTIONS(2265), + [anon_sym_type] = ACTIONS(2265), + [anon_sym_append] = ACTIONS(2265), + [anon_sym_metadata] = ACTIONS(2265), + [anon_sym_move] = ACTIONS(2265), + [anon_sym_read] = ACTIONS(2265), + [anon_sym_workdir] = ACTIONS(2265), + [anon_sym_write] = ACTIONS(2265), + [anon_sym_from_json] = ACTIONS(2265), + [anon_sym_to_json] = ACTIONS(2265), + [anon_sym_to_string] = ACTIONS(2265), + [anon_sym_to_float] = ACTIONS(2265), + [anon_sym_bash] = ACTIONS(2265), + [anon_sym_fish] = ACTIONS(2265), + [anon_sym_raw] = ACTIONS(2265), + [anon_sym_sh] = ACTIONS(2265), + [anon_sym_zsh] = ACTIONS(2265), + [anon_sym_random] = ACTIONS(2265), + [anon_sym_random_boolean] = ACTIONS(2265), + [anon_sym_random_float] = ACTIONS(2265), + [anon_sym_random_integer] = ACTIONS(2265), + [anon_sym_columns] = ACTIONS(2265), + [anon_sym_rows] = ACTIONS(2265), + [anon_sym_reverse] = ACTIONS(2265), }, [494] = { - [sym_block] = STATE(604), - [sym_statement] = STATE(27), - [sym_expression] = STATE(663), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_logic] = STATE(631), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(637), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(1998), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(296), - [aux_sym_block_repeat1] = STATE(27), - [sym_identifier] = ACTIONS(55), + [ts_builtin_sym_end] = ACTIONS(2259), + [sym_identifier] = ACTIONS(2261), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(59), - [sym_integer] = ACTIONS(61), - [sym_float] = ACTIONS(63), - [sym_string] = ACTIONS(63), - [anon_sym_true] = ACTIONS(65), - [anon_sym_false] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_if] = ACTIONS(311), - [anon_sym_match] = ACTIONS(313), - [anon_sym_EQ_GT] = ACTIONS(315), - [anon_sym_while] = ACTIONS(317), - [anon_sym_for] = ACTIONS(319), - [anon_sym_asyncfor] = ACTIONS(321), - [anon_sym_transform] = ACTIONS(323), - [anon_sym_filter] = ACTIONS(325), - [anon_sym_find] = ACTIONS(327), - [anon_sym_remove] = ACTIONS(329), - [anon_sym_reduce] = ACTIONS(331), - [anon_sym_select] = ACTIONS(333), - [anon_sym_insert] = ACTIONS(335), - [anon_sym_async] = ACTIONS(337), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(339), - [anon_sym_assert] = ACTIONS(341), - [anon_sym_assert_equal] = ACTIONS(341), - [anon_sym_download] = ACTIONS(341), - [anon_sym_help] = ACTIONS(341), - [anon_sym_length] = ACTIONS(341), - [anon_sym_output] = ACTIONS(341), - [anon_sym_output_error] = ACTIONS(341), - [anon_sym_type] = ACTIONS(341), - [anon_sym_append] = ACTIONS(341), - [anon_sym_metadata] = ACTIONS(341), - [anon_sym_move] = ACTIONS(341), - [anon_sym_read] = ACTIONS(341), - [anon_sym_workdir] = ACTIONS(341), - [anon_sym_write] = ACTIONS(341), - [anon_sym_from_json] = ACTIONS(341), - [anon_sym_to_json] = ACTIONS(341), - [anon_sym_to_string] = ACTIONS(341), - [anon_sym_to_float] = ACTIONS(341), - [anon_sym_bash] = ACTIONS(341), - [anon_sym_fish] = ACTIONS(341), - [anon_sym_raw] = ACTIONS(341), - [anon_sym_sh] = ACTIONS(341), - [anon_sym_zsh] = ACTIONS(341), - [anon_sym_random] = ACTIONS(341), - [anon_sym_random_boolean] = ACTIONS(341), - [anon_sym_random_float] = ACTIONS(341), - [anon_sym_random_integer] = ACTIONS(341), - [anon_sym_columns] = ACTIONS(341), - [anon_sym_rows] = ACTIONS(341), - [anon_sym_reverse] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(2259), + [anon_sym_RBRACE] = ACTIONS(2259), + [anon_sym_SEMI] = ACTIONS(2259), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_RPAREN] = ACTIONS(2259), + [anon_sym_COMMA] = ACTIONS(2259), + [sym_integer] = ACTIONS(2261), + [sym_float] = ACTIONS(2259), + [sym_string] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(2261), + [anon_sym_false] = ACTIONS(2261), + [anon_sym_LBRACK] = ACTIONS(2259), + [anon_sym_RBRACK] = ACTIONS(2259), + [anon_sym_COLON] = ACTIONS(2259), + [anon_sym_DOT_DOT] = ACTIONS(2259), + [anon_sym_PLUS] = ACTIONS(2259), + [anon_sym_DASH] = ACTIONS(2261), + [anon_sym_STAR] = ACTIONS(2259), + [anon_sym_SLASH] = ACTIONS(2259), + [anon_sym_PERCENT] = ACTIONS(2259), + [anon_sym_EQ_EQ] = ACTIONS(2259), + [anon_sym_BANG_EQ] = ACTIONS(2259), + [anon_sym_AMP_AMP] = ACTIONS(2259), + [anon_sym_PIPE_PIPE] = ACTIONS(2259), + [anon_sym_GT] = ACTIONS(2261), + [anon_sym_LT] = ACTIONS(2261), + [anon_sym_GT_EQ] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(2259), + [anon_sym_if] = ACTIONS(2261), + [anon_sym_match] = ACTIONS(2261), + [anon_sym_EQ_GT] = ACTIONS(2259), + [anon_sym_while] = ACTIONS(2261), + [anon_sym_for] = ACTIONS(2261), + [anon_sym_asyncfor] = ACTIONS(2259), + [anon_sym_transform] = ACTIONS(2261), + [anon_sym_filter] = ACTIONS(2261), + [anon_sym_find] = ACTIONS(2261), + [anon_sym_remove] = ACTIONS(2261), + [anon_sym_reduce] = ACTIONS(2261), + [anon_sym_select] = ACTIONS(2261), + [anon_sym_insert] = ACTIONS(2261), + [anon_sym_async] = ACTIONS(2261), + [anon_sym_PIPE] = ACTIONS(2261), + [anon_sym_table] = ACTIONS(2261), + [anon_sym_assert] = ACTIONS(2261), + [anon_sym_assert_equal] = ACTIONS(2261), + [anon_sym_download] = ACTIONS(2261), + [anon_sym_help] = ACTIONS(2261), + [anon_sym_length] = ACTIONS(2261), + [anon_sym_output] = ACTIONS(2261), + [anon_sym_output_error] = ACTIONS(2261), + [anon_sym_type] = ACTIONS(2261), + [anon_sym_append] = ACTIONS(2261), + [anon_sym_metadata] = ACTIONS(2261), + [anon_sym_move] = ACTIONS(2261), + [anon_sym_read] = ACTIONS(2261), + [anon_sym_workdir] = ACTIONS(2261), + [anon_sym_write] = ACTIONS(2261), + [anon_sym_from_json] = ACTIONS(2261), + [anon_sym_to_json] = ACTIONS(2261), + [anon_sym_to_string] = ACTIONS(2261), + [anon_sym_to_float] = ACTIONS(2261), + [anon_sym_bash] = ACTIONS(2261), + [anon_sym_fish] = ACTIONS(2261), + [anon_sym_raw] = ACTIONS(2261), + [anon_sym_sh] = ACTIONS(2261), + [anon_sym_zsh] = ACTIONS(2261), + [anon_sym_random] = ACTIONS(2261), + [anon_sym_random_boolean] = ACTIONS(2261), + [anon_sym_random_float] = ACTIONS(2261), + [anon_sym_random_integer] = ACTIONS(2261), + [anon_sym_columns] = ACTIONS(2261), + [anon_sym_rows] = ACTIONS(2261), + [anon_sym_reverse] = ACTIONS(2261), }, [495] = { - [sym_statement] = STATE(376), - [sym_expression] = STATE(925), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(867), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(980), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(376), - [sym_identifier] = ACTIONS(5), + [sym_math_operator] = STATE(821), + [sym_logic_operator] = STATE(822), + [ts_builtin_sym_end] = ACTIONS(2063), + [sym_identifier] = ACTIONS(2065), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(3107), - [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_asyncfor] = 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_async] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(49), - [anon_sym_assert] = ACTIONS(51), - [anon_sym_assert_equal] = ACTIONS(51), - [anon_sym_download] = ACTIONS(51), - [anon_sym_help] = ACTIONS(51), - [anon_sym_length] = ACTIONS(51), - [anon_sym_output] = ACTIONS(51), - [anon_sym_output_error] = ACTIONS(51), - [anon_sym_type] = ACTIONS(51), - [anon_sym_append] = ACTIONS(51), - [anon_sym_metadata] = ACTIONS(51), - [anon_sym_move] = ACTIONS(51), - [anon_sym_read] = ACTIONS(51), - [anon_sym_workdir] = ACTIONS(51), - [anon_sym_write] = ACTIONS(51), - [anon_sym_from_json] = ACTIONS(51), - [anon_sym_to_json] = ACTIONS(51), - [anon_sym_to_string] = ACTIONS(51), - [anon_sym_to_float] = ACTIONS(51), - [anon_sym_bash] = ACTIONS(51), - [anon_sym_fish] = ACTIONS(51), - [anon_sym_raw] = ACTIONS(51), - [anon_sym_sh] = ACTIONS(51), - [anon_sym_zsh] = ACTIONS(51), - [anon_sym_random] = ACTIONS(51), - [anon_sym_random_boolean] = ACTIONS(51), - [anon_sym_random_float] = ACTIONS(51), - [anon_sym_random_integer] = ACTIONS(51), - [anon_sym_columns] = ACTIONS(51), - [anon_sym_rows] = ACTIONS(51), - [anon_sym_reverse] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(2063), + [anon_sym_RBRACE] = ACTIONS(2063), + [anon_sym_SEMI] = ACTIONS(2063), + [anon_sym_LPAREN] = ACTIONS(2063), + [anon_sym_RPAREN] = ACTIONS(2063), + [sym_integer] = ACTIONS(2065), + [sym_float] = ACTIONS(2063), + [sym_string] = ACTIONS(2063), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_LBRACK] = ACTIONS(2063), + [anon_sym_COLON] = ACTIONS(2063), + [anon_sym_DOT_DOT] = ACTIONS(2063), + [anon_sym_PLUS] = ACTIONS(2063), + [anon_sym_DASH] = ACTIONS(2065), + [anon_sym_STAR] = ACTIONS(2063), + [anon_sym_SLASH] = ACTIONS(2063), + [anon_sym_PERCENT] = ACTIONS(2063), + [anon_sym_EQ_EQ] = ACTIONS(2063), + [anon_sym_BANG_EQ] = ACTIONS(2063), + [anon_sym_AMP_AMP] = ACTIONS(2063), + [anon_sym_PIPE_PIPE] = ACTIONS(2063), + [anon_sym_GT] = ACTIONS(2065), + [anon_sym_LT] = ACTIONS(2065), + [anon_sym_GT_EQ] = ACTIONS(2063), + [anon_sym_LT_EQ] = ACTIONS(2063), + [anon_sym_if] = ACTIONS(2065), + [anon_sym_match] = ACTIONS(2065), + [anon_sym_EQ_GT] = ACTIONS(2063), + [anon_sym_while] = ACTIONS(2065), + [anon_sym_for] = ACTIONS(2065), + [anon_sym_asyncfor] = ACTIONS(2063), + [anon_sym_transform] = ACTIONS(2065), + [anon_sym_filter] = ACTIONS(2065), + [anon_sym_find] = ACTIONS(2065), + [anon_sym_remove] = ACTIONS(2065), + [anon_sym_reduce] = ACTIONS(2065), + [anon_sym_select] = ACTIONS(2065), + [anon_sym_insert] = ACTIONS(2065), + [anon_sym_async] = ACTIONS(2065), + [anon_sym_PIPE] = ACTIONS(2065), + [anon_sym_table] = ACTIONS(2065), + [anon_sym_assert] = ACTIONS(2065), + [anon_sym_assert_equal] = ACTIONS(2065), + [anon_sym_download] = ACTIONS(2065), + [anon_sym_help] = ACTIONS(2065), + [anon_sym_length] = ACTIONS(2065), + [anon_sym_output] = ACTIONS(2065), + [anon_sym_output_error] = ACTIONS(2065), + [anon_sym_type] = ACTIONS(2065), + [anon_sym_append] = ACTIONS(2065), + [anon_sym_metadata] = ACTIONS(2065), + [anon_sym_move] = ACTIONS(2065), + [anon_sym_read] = ACTIONS(2065), + [anon_sym_workdir] = ACTIONS(2065), + [anon_sym_write] = ACTIONS(2065), + [anon_sym_from_json] = ACTIONS(2065), + [anon_sym_to_json] = ACTIONS(2065), + [anon_sym_to_string] = ACTIONS(2065), + [anon_sym_to_float] = ACTIONS(2065), + [anon_sym_bash] = ACTIONS(2065), + [anon_sym_fish] = ACTIONS(2065), + [anon_sym_raw] = ACTIONS(2065), + [anon_sym_sh] = ACTIONS(2065), + [anon_sym_zsh] = ACTIONS(2065), + [anon_sym_random] = ACTIONS(2065), + [anon_sym_random_boolean] = ACTIONS(2065), + [anon_sym_random_float] = ACTIONS(2065), + [anon_sym_random_integer] = ACTIONS(2065), + [anon_sym_columns] = ACTIONS(2065), + [anon_sym_rows] = ACTIONS(2065), + [anon_sym_reverse] = ACTIONS(2065), }, [496] = { - [sym_block] = STATE(607), - [sym_statement] = STATE(10), - [sym_expression] = STATE(571), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_logic] = STATE(631), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(558), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(1817), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(265), - [aux_sym_block_repeat1] = STATE(10), - [sym_identifier] = ACTIONS(55), + [ts_builtin_sym_end] = ACTIONS(2249), + [sym_identifier] = ACTIONS(2251), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(59), - [sym_integer] = ACTIONS(61), - [sym_float] = ACTIONS(63), - [sym_string] = ACTIONS(63), - [anon_sym_true] = ACTIONS(65), - [anon_sym_false] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_if] = 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_asyncfor] = ACTIONS(91), - [anon_sym_transform] = ACTIONS(93), - [anon_sym_filter] = ACTIONS(95), - [anon_sym_find] = ACTIONS(97), - [anon_sym_remove] = ACTIONS(99), - [anon_sym_reduce] = ACTIONS(101), - [anon_sym_select] = ACTIONS(103), - [anon_sym_insert] = ACTIONS(105), - [anon_sym_async] = ACTIONS(107), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(111), - [anon_sym_assert] = ACTIONS(113), - [anon_sym_assert_equal] = ACTIONS(113), - [anon_sym_download] = ACTIONS(113), - [anon_sym_help] = ACTIONS(113), - [anon_sym_length] = ACTIONS(113), - [anon_sym_output] = ACTIONS(113), - [anon_sym_output_error] = ACTIONS(113), - [anon_sym_type] = ACTIONS(113), - [anon_sym_append] = ACTIONS(113), - [anon_sym_metadata] = ACTIONS(113), - [anon_sym_move] = ACTIONS(113), - [anon_sym_read] = ACTIONS(113), - [anon_sym_workdir] = ACTIONS(113), - [anon_sym_write] = ACTIONS(113), - [anon_sym_from_json] = ACTIONS(113), - [anon_sym_to_json] = ACTIONS(113), - [anon_sym_to_string] = ACTIONS(113), - [anon_sym_to_float] = ACTIONS(113), - [anon_sym_bash] = ACTIONS(113), - [anon_sym_fish] = ACTIONS(113), - [anon_sym_raw] = ACTIONS(113), - [anon_sym_sh] = ACTIONS(113), - [anon_sym_zsh] = ACTIONS(113), - [anon_sym_random] = ACTIONS(113), - [anon_sym_random_boolean] = ACTIONS(113), - [anon_sym_random_float] = ACTIONS(113), - [anon_sym_random_integer] = ACTIONS(113), - [anon_sym_columns] = ACTIONS(113), - [anon_sym_rows] = ACTIONS(113), - [anon_sym_reverse] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(2249), + [anon_sym_RBRACE] = ACTIONS(2249), + [anon_sym_SEMI] = ACTIONS(2249), + [anon_sym_LPAREN] = ACTIONS(2249), + [anon_sym_RPAREN] = ACTIONS(2249), + [anon_sym_COMMA] = ACTIONS(2249), + [sym_integer] = ACTIONS(2251), + [sym_float] = ACTIONS(2249), + [sym_string] = ACTIONS(2249), + [anon_sym_true] = ACTIONS(2251), + [anon_sym_false] = ACTIONS(2251), + [anon_sym_LBRACK] = ACTIONS(2249), + [anon_sym_RBRACK] = ACTIONS(2249), + [anon_sym_COLON] = ACTIONS(2249), + [anon_sym_DOT_DOT] = ACTIONS(2249), + [anon_sym_PLUS] = ACTIONS(2249), + [anon_sym_DASH] = ACTIONS(2251), + [anon_sym_STAR] = ACTIONS(2249), + [anon_sym_SLASH] = ACTIONS(2249), + [anon_sym_PERCENT] = ACTIONS(2249), + [anon_sym_EQ_EQ] = ACTIONS(2249), + [anon_sym_BANG_EQ] = ACTIONS(2249), + [anon_sym_AMP_AMP] = ACTIONS(2249), + [anon_sym_PIPE_PIPE] = ACTIONS(2249), + [anon_sym_GT] = ACTIONS(2251), + [anon_sym_LT] = ACTIONS(2251), + [anon_sym_GT_EQ] = ACTIONS(2249), + [anon_sym_LT_EQ] = ACTIONS(2249), + [anon_sym_if] = ACTIONS(2251), + [anon_sym_match] = ACTIONS(2251), + [anon_sym_EQ_GT] = ACTIONS(2249), + [anon_sym_while] = ACTIONS(2251), + [anon_sym_for] = ACTIONS(2251), + [anon_sym_asyncfor] = ACTIONS(2249), + [anon_sym_transform] = ACTIONS(2251), + [anon_sym_filter] = ACTIONS(2251), + [anon_sym_find] = ACTIONS(2251), + [anon_sym_remove] = ACTIONS(2251), + [anon_sym_reduce] = ACTIONS(2251), + [anon_sym_select] = ACTIONS(2251), + [anon_sym_insert] = ACTIONS(2251), + [anon_sym_async] = ACTIONS(2251), + [anon_sym_PIPE] = ACTIONS(2251), + [anon_sym_table] = ACTIONS(2251), + [anon_sym_assert] = ACTIONS(2251), + [anon_sym_assert_equal] = ACTIONS(2251), + [anon_sym_download] = ACTIONS(2251), + [anon_sym_help] = ACTIONS(2251), + [anon_sym_length] = ACTIONS(2251), + [anon_sym_output] = ACTIONS(2251), + [anon_sym_output_error] = ACTIONS(2251), + [anon_sym_type] = ACTIONS(2251), + [anon_sym_append] = ACTIONS(2251), + [anon_sym_metadata] = ACTIONS(2251), + [anon_sym_move] = ACTIONS(2251), + [anon_sym_read] = ACTIONS(2251), + [anon_sym_workdir] = ACTIONS(2251), + [anon_sym_write] = ACTIONS(2251), + [anon_sym_from_json] = ACTIONS(2251), + [anon_sym_to_json] = ACTIONS(2251), + [anon_sym_to_string] = ACTIONS(2251), + [anon_sym_to_float] = ACTIONS(2251), + [anon_sym_bash] = ACTIONS(2251), + [anon_sym_fish] = ACTIONS(2251), + [anon_sym_raw] = ACTIONS(2251), + [anon_sym_sh] = ACTIONS(2251), + [anon_sym_zsh] = ACTIONS(2251), + [anon_sym_random] = ACTIONS(2251), + [anon_sym_random_boolean] = ACTIONS(2251), + [anon_sym_random_float] = ACTIONS(2251), + [anon_sym_random_integer] = ACTIONS(2251), + [anon_sym_columns] = ACTIONS(2251), + [anon_sym_rows] = ACTIONS(2251), + [anon_sym_reverse] = ACTIONS(2251), }, [497] = { - [sym_block] = STATE(858), - [sym_statement] = STATE(61), - [sym_expression] = STATE(888), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(822), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(787), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(61), - [sym_identifier] = ACTIONS(1846), + [ts_builtin_sym_end] = ACTIONS(2245), + [sym_identifier] = ACTIONS(2247), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(877), - [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(1284), - [anon_sym_match] = ACTIONS(1850), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(1852), - [anon_sym_for] = ACTIONS(1854), - [anon_sym_asyncfor] = ACTIONS(1856), - [anon_sym_transform] = ACTIONS(1858), - [anon_sym_filter] = ACTIONS(1860), - [anon_sym_find] = ACTIONS(1862), - [anon_sym_remove] = ACTIONS(1864), - [anon_sym_reduce] = ACTIONS(1866), - [anon_sym_select] = ACTIONS(1868), - [anon_sym_insert] = ACTIONS(43), - [anon_sym_async] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(49), - [anon_sym_assert] = ACTIONS(51), - [anon_sym_assert_equal] = ACTIONS(51), - [anon_sym_download] = ACTIONS(51), - [anon_sym_help] = ACTIONS(51), - [anon_sym_length] = ACTIONS(51), - [anon_sym_output] = ACTIONS(51), - [anon_sym_output_error] = ACTIONS(51), - [anon_sym_type] = ACTIONS(51), - [anon_sym_append] = ACTIONS(51), - [anon_sym_metadata] = ACTIONS(51), - [anon_sym_move] = ACTIONS(51), - [anon_sym_read] = ACTIONS(51), - [anon_sym_workdir] = ACTIONS(51), - [anon_sym_write] = ACTIONS(51), - [anon_sym_from_json] = ACTIONS(51), - [anon_sym_to_json] = ACTIONS(51), - [anon_sym_to_string] = ACTIONS(51), - [anon_sym_to_float] = ACTIONS(51), - [anon_sym_bash] = ACTIONS(51), - [anon_sym_fish] = ACTIONS(51), - [anon_sym_raw] = ACTIONS(51), - [anon_sym_sh] = ACTIONS(51), - [anon_sym_zsh] = ACTIONS(51), - [anon_sym_random] = ACTIONS(51), - [anon_sym_random_boolean] = ACTIONS(51), - [anon_sym_random_float] = ACTIONS(51), - [anon_sym_random_integer] = ACTIONS(51), - [anon_sym_columns] = ACTIONS(51), - [anon_sym_rows] = ACTIONS(51), - [anon_sym_reverse] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(2245), + [anon_sym_RBRACE] = ACTIONS(2245), + [anon_sym_SEMI] = ACTIONS(2245), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_RPAREN] = ACTIONS(2245), + [anon_sym_COMMA] = ACTIONS(2245), + [sym_integer] = ACTIONS(2247), + [sym_float] = ACTIONS(2245), + [sym_string] = ACTIONS(2245), + [anon_sym_true] = ACTIONS(2247), + [anon_sym_false] = ACTIONS(2247), + [anon_sym_LBRACK] = ACTIONS(2245), + [anon_sym_RBRACK] = ACTIONS(2245), + [anon_sym_COLON] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2245), + [anon_sym_PLUS] = ACTIONS(2245), + [anon_sym_DASH] = ACTIONS(2247), + [anon_sym_STAR] = ACTIONS(2245), + [anon_sym_SLASH] = ACTIONS(2245), + [anon_sym_PERCENT] = ACTIONS(2245), + [anon_sym_EQ_EQ] = ACTIONS(2245), + [anon_sym_BANG_EQ] = ACTIONS(2245), + [anon_sym_AMP_AMP] = ACTIONS(2245), + [anon_sym_PIPE_PIPE] = ACTIONS(2245), + [anon_sym_GT] = ACTIONS(2247), + [anon_sym_LT] = ACTIONS(2247), + [anon_sym_GT_EQ] = ACTIONS(2245), + [anon_sym_LT_EQ] = ACTIONS(2245), + [anon_sym_if] = ACTIONS(2247), + [anon_sym_match] = ACTIONS(2247), + [anon_sym_EQ_GT] = ACTIONS(2245), + [anon_sym_while] = ACTIONS(2247), + [anon_sym_for] = ACTIONS(2247), + [anon_sym_asyncfor] = ACTIONS(2245), + [anon_sym_transform] = ACTIONS(2247), + [anon_sym_filter] = ACTIONS(2247), + [anon_sym_find] = ACTIONS(2247), + [anon_sym_remove] = ACTIONS(2247), + [anon_sym_reduce] = ACTIONS(2247), + [anon_sym_select] = ACTIONS(2247), + [anon_sym_insert] = ACTIONS(2247), + [anon_sym_async] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_table] = ACTIONS(2247), + [anon_sym_assert] = ACTIONS(2247), + [anon_sym_assert_equal] = ACTIONS(2247), + [anon_sym_download] = ACTIONS(2247), + [anon_sym_help] = ACTIONS(2247), + [anon_sym_length] = ACTIONS(2247), + [anon_sym_output] = ACTIONS(2247), + [anon_sym_output_error] = ACTIONS(2247), + [anon_sym_type] = ACTIONS(2247), + [anon_sym_append] = ACTIONS(2247), + [anon_sym_metadata] = ACTIONS(2247), + [anon_sym_move] = ACTIONS(2247), + [anon_sym_read] = ACTIONS(2247), + [anon_sym_workdir] = ACTIONS(2247), + [anon_sym_write] = ACTIONS(2247), + [anon_sym_from_json] = ACTIONS(2247), + [anon_sym_to_json] = ACTIONS(2247), + [anon_sym_to_string] = ACTIONS(2247), + [anon_sym_to_float] = ACTIONS(2247), + [anon_sym_bash] = ACTIONS(2247), + [anon_sym_fish] = ACTIONS(2247), + [anon_sym_raw] = ACTIONS(2247), + [anon_sym_sh] = ACTIONS(2247), + [anon_sym_zsh] = ACTIONS(2247), + [anon_sym_random] = ACTIONS(2247), + [anon_sym_random_boolean] = ACTIONS(2247), + [anon_sym_random_float] = ACTIONS(2247), + [anon_sym_random_integer] = ACTIONS(2247), + [anon_sym_columns] = ACTIONS(2247), + [anon_sym_rows] = ACTIONS(2247), + [anon_sym_reverse] = ACTIONS(2247), }, [498] = { - [sym_block] = STATE(622), - [sym_statement] = STATE(10), - [sym_expression] = STATE(571), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_logic] = STATE(631), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(558), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(1817), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(265), - [aux_sym_block_repeat1] = STATE(10), - [sym_identifier] = ACTIONS(55), + [ts_builtin_sym_end] = ACTIONS(2271), + [sym_identifier] = ACTIONS(2273), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(59), - [sym_integer] = ACTIONS(61), - [sym_float] = ACTIONS(63), - [sym_string] = ACTIONS(63), - [anon_sym_true] = ACTIONS(65), - [anon_sym_false] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_if] = 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_asyncfor] = ACTIONS(91), - [anon_sym_transform] = ACTIONS(93), - [anon_sym_filter] = ACTIONS(95), - [anon_sym_find] = ACTIONS(97), - [anon_sym_remove] = ACTIONS(99), - [anon_sym_reduce] = ACTIONS(101), - [anon_sym_select] = ACTIONS(103), - [anon_sym_insert] = ACTIONS(105), - [anon_sym_async] = ACTIONS(107), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(111), - [anon_sym_assert] = ACTIONS(113), - [anon_sym_assert_equal] = ACTIONS(113), - [anon_sym_download] = ACTIONS(113), - [anon_sym_help] = ACTIONS(113), - [anon_sym_length] = ACTIONS(113), - [anon_sym_output] = ACTIONS(113), - [anon_sym_output_error] = ACTIONS(113), - [anon_sym_type] = ACTIONS(113), - [anon_sym_append] = ACTIONS(113), - [anon_sym_metadata] = ACTIONS(113), - [anon_sym_move] = ACTIONS(113), - [anon_sym_read] = ACTIONS(113), - [anon_sym_workdir] = ACTIONS(113), - [anon_sym_write] = ACTIONS(113), - [anon_sym_from_json] = ACTIONS(113), - [anon_sym_to_json] = ACTIONS(113), - [anon_sym_to_string] = ACTIONS(113), - [anon_sym_to_float] = ACTIONS(113), - [anon_sym_bash] = ACTIONS(113), - [anon_sym_fish] = ACTIONS(113), - [anon_sym_raw] = ACTIONS(113), - [anon_sym_sh] = ACTIONS(113), - [anon_sym_zsh] = ACTIONS(113), - [anon_sym_random] = ACTIONS(113), - [anon_sym_random_boolean] = ACTIONS(113), - [anon_sym_random_float] = ACTIONS(113), - [anon_sym_random_integer] = ACTIONS(113), - [anon_sym_columns] = ACTIONS(113), - [anon_sym_rows] = ACTIONS(113), - [anon_sym_reverse] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_RBRACE] = ACTIONS(2271), + [anon_sym_SEMI] = ACTIONS(2271), + [anon_sym_LPAREN] = ACTIONS(2271), + [anon_sym_RPAREN] = ACTIONS(2271), + [anon_sym_COMMA] = ACTIONS(2271), + [sym_integer] = ACTIONS(2273), + [sym_float] = ACTIONS(2271), + [sym_string] = ACTIONS(2271), + [anon_sym_true] = ACTIONS(2273), + [anon_sym_false] = ACTIONS(2273), + [anon_sym_LBRACK] = ACTIONS(2271), + [anon_sym_RBRACK] = ACTIONS(2271), + [anon_sym_COLON] = ACTIONS(2271), + [anon_sym_DOT_DOT] = ACTIONS(2271), + [anon_sym_PLUS] = ACTIONS(2271), + [anon_sym_DASH] = ACTIONS(2273), + [anon_sym_STAR] = ACTIONS(2271), + [anon_sym_SLASH] = ACTIONS(2271), + [anon_sym_PERCENT] = ACTIONS(2271), + [anon_sym_EQ_EQ] = ACTIONS(2271), + [anon_sym_BANG_EQ] = ACTIONS(2271), + [anon_sym_AMP_AMP] = ACTIONS(2271), + [anon_sym_PIPE_PIPE] = ACTIONS(2271), + [anon_sym_GT] = ACTIONS(2273), + [anon_sym_LT] = ACTIONS(2273), + [anon_sym_GT_EQ] = ACTIONS(2271), + [anon_sym_LT_EQ] = ACTIONS(2271), + [anon_sym_if] = ACTIONS(2273), + [anon_sym_match] = ACTIONS(2273), + [anon_sym_EQ_GT] = ACTIONS(2271), + [anon_sym_while] = ACTIONS(2273), + [anon_sym_for] = ACTIONS(2273), + [anon_sym_asyncfor] = ACTIONS(2271), + [anon_sym_transform] = ACTIONS(2273), + [anon_sym_filter] = ACTIONS(2273), + [anon_sym_find] = ACTIONS(2273), + [anon_sym_remove] = ACTIONS(2273), + [anon_sym_reduce] = ACTIONS(2273), + [anon_sym_select] = ACTIONS(2273), + [anon_sym_insert] = ACTIONS(2273), + [anon_sym_async] = ACTIONS(2273), + [anon_sym_PIPE] = ACTIONS(2273), + [anon_sym_table] = ACTIONS(2273), + [anon_sym_assert] = ACTIONS(2273), + [anon_sym_assert_equal] = ACTIONS(2273), + [anon_sym_download] = ACTIONS(2273), + [anon_sym_help] = ACTIONS(2273), + [anon_sym_length] = ACTIONS(2273), + [anon_sym_output] = ACTIONS(2273), + [anon_sym_output_error] = ACTIONS(2273), + [anon_sym_type] = ACTIONS(2273), + [anon_sym_append] = ACTIONS(2273), + [anon_sym_metadata] = ACTIONS(2273), + [anon_sym_move] = ACTIONS(2273), + [anon_sym_read] = ACTIONS(2273), + [anon_sym_workdir] = ACTIONS(2273), + [anon_sym_write] = ACTIONS(2273), + [anon_sym_from_json] = ACTIONS(2273), + [anon_sym_to_json] = ACTIONS(2273), + [anon_sym_to_string] = ACTIONS(2273), + [anon_sym_to_float] = ACTIONS(2273), + [anon_sym_bash] = ACTIONS(2273), + [anon_sym_fish] = ACTIONS(2273), + [anon_sym_raw] = ACTIONS(2273), + [anon_sym_sh] = ACTIONS(2273), + [anon_sym_zsh] = ACTIONS(2273), + [anon_sym_random] = ACTIONS(2273), + [anon_sym_random_boolean] = ACTIONS(2273), + [anon_sym_random_float] = ACTIONS(2273), + [anon_sym_random_integer] = ACTIONS(2273), + [anon_sym_columns] = ACTIONS(2273), + [anon_sym_rows] = ACTIONS(2273), + [anon_sym_reverse] = ACTIONS(2273), }, [499] = { - [sym_block] = STATE(1545), - [sym_statement] = STATE(254), - [sym_expression] = STATE(888), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(822), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(787), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(254), - [sym_identifier] = ACTIONS(1846), + [ts_builtin_sym_end] = ACTIONS(2239), + [sym_identifier] = ACTIONS(2241), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2164), - [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(1284), - [anon_sym_match] = ACTIONS(1850), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(1852), - [anon_sym_for] = ACTIONS(1854), - [anon_sym_asyncfor] = ACTIONS(1856), - [anon_sym_transform] = ACTIONS(1858), - [anon_sym_filter] = ACTIONS(1860), - [anon_sym_find] = ACTIONS(1862), - [anon_sym_remove] = ACTIONS(1864), - [anon_sym_reduce] = ACTIONS(1866), - [anon_sym_select] = ACTIONS(1868), - [anon_sym_insert] = ACTIONS(43), - [anon_sym_async] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(49), - [anon_sym_assert] = ACTIONS(51), - [anon_sym_assert_equal] = ACTIONS(51), - [anon_sym_download] = ACTIONS(51), - [anon_sym_help] = ACTIONS(51), - [anon_sym_length] = ACTIONS(51), - [anon_sym_output] = ACTIONS(51), - [anon_sym_output_error] = ACTIONS(51), - [anon_sym_type] = ACTIONS(51), - [anon_sym_append] = ACTIONS(51), - [anon_sym_metadata] = ACTIONS(51), - [anon_sym_move] = ACTIONS(51), - [anon_sym_read] = ACTIONS(51), - [anon_sym_workdir] = ACTIONS(51), - [anon_sym_write] = ACTIONS(51), - [anon_sym_from_json] = ACTIONS(51), - [anon_sym_to_json] = ACTIONS(51), - [anon_sym_to_string] = ACTIONS(51), - [anon_sym_to_float] = ACTIONS(51), - [anon_sym_bash] = ACTIONS(51), - [anon_sym_fish] = ACTIONS(51), - [anon_sym_raw] = ACTIONS(51), - [anon_sym_sh] = ACTIONS(51), - [anon_sym_zsh] = ACTIONS(51), - [anon_sym_random] = ACTIONS(51), - [anon_sym_random_boolean] = ACTIONS(51), - [anon_sym_random_float] = ACTIONS(51), - [anon_sym_random_integer] = ACTIONS(51), - [anon_sym_columns] = ACTIONS(51), - [anon_sym_rows] = ACTIONS(51), - [anon_sym_reverse] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_RBRACE] = ACTIONS(2239), + [anon_sym_SEMI] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(2239), + [anon_sym_RPAREN] = ACTIONS(2239), + [anon_sym_COMMA] = ACTIONS(2239), + [sym_integer] = ACTIONS(2241), + [sym_float] = ACTIONS(2239), + [sym_string] = ACTIONS(2239), + [anon_sym_true] = ACTIONS(2241), + [anon_sym_false] = ACTIONS(2241), + [anon_sym_LBRACK] = ACTIONS(2239), + [anon_sym_RBRACK] = ACTIONS(2239), + [anon_sym_COLON] = ACTIONS(2239), + [anon_sym_DOT_DOT] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2239), + [anon_sym_DASH] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(2239), + [anon_sym_SLASH] = ACTIONS(2239), + [anon_sym_PERCENT] = ACTIONS(2239), + [anon_sym_EQ_EQ] = ACTIONS(2239), + [anon_sym_BANG_EQ] = ACTIONS(2239), + [anon_sym_AMP_AMP] = ACTIONS(2239), + [anon_sym_PIPE_PIPE] = ACTIONS(2239), + [anon_sym_GT] = ACTIONS(2241), + [anon_sym_LT] = ACTIONS(2241), + [anon_sym_GT_EQ] = ACTIONS(2239), + [anon_sym_LT_EQ] = ACTIONS(2239), + [anon_sym_if] = ACTIONS(2241), + [anon_sym_match] = ACTIONS(2241), + [anon_sym_EQ_GT] = ACTIONS(2239), + [anon_sym_while] = ACTIONS(2241), + [anon_sym_for] = ACTIONS(2241), + [anon_sym_asyncfor] = ACTIONS(2239), + [anon_sym_transform] = ACTIONS(2241), + [anon_sym_filter] = ACTIONS(2241), + [anon_sym_find] = ACTIONS(2241), + [anon_sym_remove] = ACTIONS(2241), + [anon_sym_reduce] = ACTIONS(2241), + [anon_sym_select] = ACTIONS(2241), + [anon_sym_insert] = ACTIONS(2241), + [anon_sym_async] = ACTIONS(2241), + [anon_sym_PIPE] = ACTIONS(2241), + [anon_sym_table] = ACTIONS(2241), + [anon_sym_assert] = ACTIONS(2241), + [anon_sym_assert_equal] = ACTIONS(2241), + [anon_sym_download] = ACTIONS(2241), + [anon_sym_help] = ACTIONS(2241), + [anon_sym_length] = ACTIONS(2241), + [anon_sym_output] = ACTIONS(2241), + [anon_sym_output_error] = ACTIONS(2241), + [anon_sym_type] = ACTIONS(2241), + [anon_sym_append] = ACTIONS(2241), + [anon_sym_metadata] = ACTIONS(2241), + [anon_sym_move] = ACTIONS(2241), + [anon_sym_read] = ACTIONS(2241), + [anon_sym_workdir] = ACTIONS(2241), + [anon_sym_write] = ACTIONS(2241), + [anon_sym_from_json] = ACTIONS(2241), + [anon_sym_to_json] = ACTIONS(2241), + [anon_sym_to_string] = ACTIONS(2241), + [anon_sym_to_float] = ACTIONS(2241), + [anon_sym_bash] = ACTIONS(2241), + [anon_sym_fish] = ACTIONS(2241), + [anon_sym_raw] = ACTIONS(2241), + [anon_sym_sh] = ACTIONS(2241), + [anon_sym_zsh] = ACTIONS(2241), + [anon_sym_random] = ACTIONS(2241), + [anon_sym_random_boolean] = ACTIONS(2241), + [anon_sym_random_float] = ACTIONS(2241), + [anon_sym_random_integer] = ACTIONS(2241), + [anon_sym_columns] = ACTIONS(2241), + [anon_sym_rows] = ACTIONS(2241), + [anon_sym_reverse] = ACTIONS(2241), }, [500] = { - [sym_block] = STATE(696), - [sym_statement] = STATE(24), - [sym_expression] = STATE(683), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_logic] = STATE(706), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(573), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1813), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(311), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(149), + [ts_builtin_sym_end] = ACTIONS(2235), + [sym_identifier] = ACTIONS(2237), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_if] = ACTIONS(117), - [anon_sym_match] = ACTIONS(279), - [anon_sym_EQ_GT] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_for] = ACTIONS(285), - [anon_sym_asyncfor] = ACTIONS(287), - [anon_sym_transform] = ACTIONS(289), - [anon_sym_filter] = ACTIONS(291), - [anon_sym_find] = ACTIONS(293), - [anon_sym_remove] = ACTIONS(295), - [anon_sym_reduce] = ACTIONS(297), - [anon_sym_select] = ACTIONS(299), - [anon_sym_insert] = ACTIONS(301), - [anon_sym_async] = ACTIONS(303), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(305), - [anon_sym_assert] = ACTIONS(307), - [anon_sym_assert_equal] = ACTIONS(307), - [anon_sym_download] = ACTIONS(307), - [anon_sym_help] = ACTIONS(307), - [anon_sym_length] = ACTIONS(307), - [anon_sym_output] = ACTIONS(307), - [anon_sym_output_error] = ACTIONS(307), - [anon_sym_type] = ACTIONS(307), - [anon_sym_append] = ACTIONS(307), - [anon_sym_metadata] = ACTIONS(307), - [anon_sym_move] = ACTIONS(307), - [anon_sym_read] = ACTIONS(307), - [anon_sym_workdir] = ACTIONS(307), - [anon_sym_write] = ACTIONS(307), - [anon_sym_from_json] = ACTIONS(307), - [anon_sym_to_json] = ACTIONS(307), - [anon_sym_to_string] = ACTIONS(307), - [anon_sym_to_float] = ACTIONS(307), - [anon_sym_bash] = ACTIONS(307), - [anon_sym_fish] = ACTIONS(307), - [anon_sym_raw] = ACTIONS(307), - [anon_sym_sh] = ACTIONS(307), - [anon_sym_zsh] = ACTIONS(307), - [anon_sym_random] = ACTIONS(307), - [anon_sym_random_boolean] = ACTIONS(307), - [anon_sym_random_float] = ACTIONS(307), - [anon_sym_random_integer] = ACTIONS(307), - [anon_sym_columns] = ACTIONS(307), - [anon_sym_rows] = ACTIONS(307), - [anon_sym_reverse] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_RBRACE] = ACTIONS(2235), + [anon_sym_SEMI] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_RPAREN] = ACTIONS(2235), + [anon_sym_COMMA] = ACTIONS(2235), + [sym_integer] = ACTIONS(2237), + [sym_float] = ACTIONS(2235), + [sym_string] = ACTIONS(2235), + [anon_sym_true] = ACTIONS(2237), + [anon_sym_false] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_RBRACK] = ACTIONS(2235), + [anon_sym_COLON] = ACTIONS(2235), + [anon_sym_DOT_DOT] = ACTIONS(2235), + [anon_sym_PLUS] = ACTIONS(2235), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_STAR] = ACTIONS(2235), + [anon_sym_SLASH] = ACTIONS(2235), + [anon_sym_PERCENT] = ACTIONS(2235), + [anon_sym_EQ_EQ] = ACTIONS(2235), + [anon_sym_BANG_EQ] = ACTIONS(2235), + [anon_sym_AMP_AMP] = ACTIONS(2235), + [anon_sym_PIPE_PIPE] = ACTIONS(2235), + [anon_sym_GT] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2237), + [anon_sym_GT_EQ] = ACTIONS(2235), + [anon_sym_LT_EQ] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_match] = ACTIONS(2237), + [anon_sym_EQ_GT] = ACTIONS(2235), + [anon_sym_while] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_asyncfor] = ACTIONS(2235), + [anon_sym_transform] = ACTIONS(2237), + [anon_sym_filter] = ACTIONS(2237), + [anon_sym_find] = ACTIONS(2237), + [anon_sym_remove] = ACTIONS(2237), + [anon_sym_reduce] = ACTIONS(2237), + [anon_sym_select] = ACTIONS(2237), + [anon_sym_insert] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_PIPE] = ACTIONS(2237), + [anon_sym_table] = ACTIONS(2237), + [anon_sym_assert] = ACTIONS(2237), + [anon_sym_assert_equal] = ACTIONS(2237), + [anon_sym_download] = ACTIONS(2237), + [anon_sym_help] = ACTIONS(2237), + [anon_sym_length] = ACTIONS(2237), + [anon_sym_output] = ACTIONS(2237), + [anon_sym_output_error] = ACTIONS(2237), + [anon_sym_type] = ACTIONS(2237), + [anon_sym_append] = ACTIONS(2237), + [anon_sym_metadata] = ACTIONS(2237), + [anon_sym_move] = ACTIONS(2237), + [anon_sym_read] = ACTIONS(2237), + [anon_sym_workdir] = ACTIONS(2237), + [anon_sym_write] = ACTIONS(2237), + [anon_sym_from_json] = ACTIONS(2237), + [anon_sym_to_json] = ACTIONS(2237), + [anon_sym_to_string] = ACTIONS(2237), + [anon_sym_to_float] = ACTIONS(2237), + [anon_sym_bash] = ACTIONS(2237), + [anon_sym_fish] = ACTIONS(2237), + [anon_sym_raw] = ACTIONS(2237), + [anon_sym_sh] = ACTIONS(2237), + [anon_sym_zsh] = ACTIONS(2237), + [anon_sym_random] = ACTIONS(2237), + [anon_sym_random_boolean] = ACTIONS(2237), + [anon_sym_random_float] = ACTIONS(2237), + [anon_sym_random_integer] = ACTIONS(2237), + [anon_sym_columns] = ACTIONS(2237), + [anon_sym_rows] = ACTIONS(2237), + [anon_sym_reverse] = ACTIONS(2237), }, [501] = { - [sym_block] = STATE(1021), - [sym_statement] = STATE(352), - [sym_expression] = STATE(877), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(782), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_assignment] = STATE(1023), - [sym_if_else] = STATE(1023), - [sym_if] = STATE(978), - [sym_match] = STATE(1023), - [sym_while] = STATE(1023), - [sym_for] = STATE(1023), - [sym_transform] = STATE(1023), - [sym_filter] = STATE(1023), - [sym_find] = STATE(1023), - [sym_remove] = STATE(1023), - [sym_reduce] = STATE(1023), - [sym_select] = STATE(1023), - [sym_insert] = STATE(1023), - [sym_async] = STATE(1023), - [sym_identifier_list] = STATE(1926), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(351), - [aux_sym_block_repeat1] = STATE(352), - [sym_identifier] = ACTIONS(1639), + [ts_builtin_sym_end] = ACTIONS(2267), + [sym_identifier] = ACTIONS(2269), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(1641), - [anon_sym_EQ_GT] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1643), - [anon_sym_for] = ACTIONS(1645), - [anon_sym_asyncfor] = ACTIONS(1647), - [anon_sym_transform] = ACTIONS(1649), - [anon_sym_filter] = ACTIONS(1651), - [anon_sym_find] = ACTIONS(1653), - [anon_sym_remove] = ACTIONS(1655), - [anon_sym_reduce] = ACTIONS(1657), - [anon_sym_select] = ACTIONS(1659), - [anon_sym_insert] = ACTIONS(1308), - [anon_sym_async] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(1312), - [anon_sym_assert] = ACTIONS(1314), - [anon_sym_assert_equal] = ACTIONS(1314), - [anon_sym_download] = ACTIONS(1314), - [anon_sym_help] = ACTIONS(1314), - [anon_sym_length] = ACTIONS(1314), - [anon_sym_output] = ACTIONS(1314), - [anon_sym_output_error] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_append] = ACTIONS(1314), - [anon_sym_metadata] = ACTIONS(1314), - [anon_sym_move] = ACTIONS(1314), - [anon_sym_read] = ACTIONS(1314), - [anon_sym_workdir] = ACTIONS(1314), - [anon_sym_write] = ACTIONS(1314), - [anon_sym_from_json] = ACTIONS(1314), - [anon_sym_to_json] = ACTIONS(1314), - [anon_sym_to_string] = ACTIONS(1314), - [anon_sym_to_float] = ACTIONS(1314), - [anon_sym_bash] = ACTIONS(1314), - [anon_sym_fish] = ACTIONS(1314), - [anon_sym_raw] = ACTIONS(1314), - [anon_sym_sh] = ACTIONS(1314), - [anon_sym_zsh] = ACTIONS(1314), - [anon_sym_random] = ACTIONS(1314), - [anon_sym_random_boolean] = ACTIONS(1314), - [anon_sym_random_float] = ACTIONS(1314), - [anon_sym_random_integer] = ACTIONS(1314), - [anon_sym_columns] = ACTIONS(1314), - [anon_sym_rows] = ACTIONS(1314), - [anon_sym_reverse] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(2267), + [anon_sym_RBRACE] = ACTIONS(2267), + [anon_sym_SEMI] = ACTIONS(2267), + [anon_sym_LPAREN] = ACTIONS(2267), + [anon_sym_RPAREN] = ACTIONS(2267), + [anon_sym_COMMA] = ACTIONS(2267), + [sym_integer] = ACTIONS(2269), + [sym_float] = ACTIONS(2267), + [sym_string] = ACTIONS(2267), + [anon_sym_true] = ACTIONS(2269), + [anon_sym_false] = ACTIONS(2269), + [anon_sym_LBRACK] = ACTIONS(2267), + [anon_sym_RBRACK] = ACTIONS(2267), + [anon_sym_COLON] = ACTIONS(2267), + [anon_sym_DOT_DOT] = ACTIONS(2267), + [anon_sym_PLUS] = ACTIONS(2267), + [anon_sym_DASH] = ACTIONS(2269), + [anon_sym_STAR] = ACTIONS(2267), + [anon_sym_SLASH] = ACTIONS(2267), + [anon_sym_PERCENT] = ACTIONS(2267), + [anon_sym_EQ_EQ] = ACTIONS(2267), + [anon_sym_BANG_EQ] = ACTIONS(2267), + [anon_sym_AMP_AMP] = ACTIONS(2267), + [anon_sym_PIPE_PIPE] = ACTIONS(2267), + [anon_sym_GT] = ACTIONS(2269), + [anon_sym_LT] = ACTIONS(2269), + [anon_sym_GT_EQ] = ACTIONS(2267), + [anon_sym_LT_EQ] = ACTIONS(2267), + [anon_sym_if] = ACTIONS(2269), + [anon_sym_match] = ACTIONS(2269), + [anon_sym_EQ_GT] = ACTIONS(2267), + [anon_sym_while] = ACTIONS(2269), + [anon_sym_for] = ACTIONS(2269), + [anon_sym_asyncfor] = ACTIONS(2267), + [anon_sym_transform] = ACTIONS(2269), + [anon_sym_filter] = ACTIONS(2269), + [anon_sym_find] = ACTIONS(2269), + [anon_sym_remove] = ACTIONS(2269), + [anon_sym_reduce] = ACTIONS(2269), + [anon_sym_select] = ACTIONS(2269), + [anon_sym_insert] = ACTIONS(2269), + [anon_sym_async] = ACTIONS(2269), + [anon_sym_PIPE] = ACTIONS(2269), + [anon_sym_table] = ACTIONS(2269), + [anon_sym_assert] = ACTIONS(2269), + [anon_sym_assert_equal] = ACTIONS(2269), + [anon_sym_download] = ACTIONS(2269), + [anon_sym_help] = ACTIONS(2269), + [anon_sym_length] = ACTIONS(2269), + [anon_sym_output] = ACTIONS(2269), + [anon_sym_output_error] = ACTIONS(2269), + [anon_sym_type] = ACTIONS(2269), + [anon_sym_append] = ACTIONS(2269), + [anon_sym_metadata] = ACTIONS(2269), + [anon_sym_move] = ACTIONS(2269), + [anon_sym_read] = ACTIONS(2269), + [anon_sym_workdir] = ACTIONS(2269), + [anon_sym_write] = ACTIONS(2269), + [anon_sym_from_json] = ACTIONS(2269), + [anon_sym_to_json] = ACTIONS(2269), + [anon_sym_to_string] = ACTIONS(2269), + [anon_sym_to_float] = ACTIONS(2269), + [anon_sym_bash] = ACTIONS(2269), + [anon_sym_fish] = ACTIONS(2269), + [anon_sym_raw] = ACTIONS(2269), + [anon_sym_sh] = ACTIONS(2269), + [anon_sym_zsh] = ACTIONS(2269), + [anon_sym_random] = ACTIONS(2269), + [anon_sym_random_boolean] = ACTIONS(2269), + [anon_sym_random_float] = ACTIONS(2269), + [anon_sym_random_integer] = ACTIONS(2269), + [anon_sym_columns] = ACTIONS(2269), + [anon_sym_rows] = ACTIONS(2269), + [anon_sym_reverse] = ACTIONS(2269), }, [502] = { - [sym_block] = STATE(622), - [sym_statement] = STATE(27), - [sym_expression] = STATE(663), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_logic] = STATE(631), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(637), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(1998), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(296), - [aux_sym_block_repeat1] = STATE(27), - [sym_identifier] = ACTIONS(55), + [sym_expression] = STATE(594), + [sym__expression_kind] = STATE(585), + [aux_sym__expression_list] = STATE(511), + [sym_value] = STATE(585), + [sym_boolean] = STATE(586), + [sym_list] = STATE(586), + [sym_map] = STATE(586), + [sym_index] = STATE(585), + [sym_math] = STATE(585), + [sym_logic] = STATE(585), + [sym_identifier_list] = STATE(1105), + [sym_table] = STATE(586), + [sym_function] = STATE(586), + [sym_function_call] = STATE(585), + [sym__context_defined_function] = STATE(587), + [sym_built_in_function] = STATE(587), + [sym__built_in_function_name] = STATE(372), + [sym_identifier] = ACTIONS(2089), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(59), - [sym_integer] = ACTIONS(61), - [sym_float] = ACTIONS(63), - [sym_string] = ACTIONS(63), - [anon_sym_true] = ACTIONS(65), - [anon_sym_false] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_if] = ACTIONS(311), - [anon_sym_match] = ACTIONS(313), - [anon_sym_EQ_GT] = ACTIONS(315), - [anon_sym_while] = ACTIONS(317), - [anon_sym_for] = ACTIONS(319), - [anon_sym_asyncfor] = ACTIONS(321), - [anon_sym_transform] = ACTIONS(323), - [anon_sym_filter] = ACTIONS(325), - [anon_sym_find] = ACTIONS(327), - [anon_sym_remove] = ACTIONS(329), - [anon_sym_reduce] = ACTIONS(331), - [anon_sym_select] = ACTIONS(333), - [anon_sym_insert] = ACTIONS(335), - [anon_sym_async] = ACTIONS(337), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(339), - [anon_sym_assert] = ACTIONS(341), - [anon_sym_assert_equal] = ACTIONS(341), - [anon_sym_download] = ACTIONS(341), - [anon_sym_help] = ACTIONS(341), - [anon_sym_length] = ACTIONS(341), - [anon_sym_output] = ACTIONS(341), - [anon_sym_output_error] = ACTIONS(341), - [anon_sym_type] = ACTIONS(341), - [anon_sym_append] = ACTIONS(341), - [anon_sym_metadata] = ACTIONS(341), - [anon_sym_move] = ACTIONS(341), - [anon_sym_read] = ACTIONS(341), - [anon_sym_workdir] = ACTIONS(341), - [anon_sym_write] = ACTIONS(341), - [anon_sym_from_json] = ACTIONS(341), - [anon_sym_to_json] = ACTIONS(341), - [anon_sym_to_string] = ACTIONS(341), - [anon_sym_to_float] = ACTIONS(341), - [anon_sym_bash] = ACTIONS(341), - [anon_sym_fish] = ACTIONS(341), - [anon_sym_raw] = ACTIONS(341), - [anon_sym_sh] = ACTIONS(341), - [anon_sym_zsh] = ACTIONS(341), - [anon_sym_random] = ACTIONS(341), - [anon_sym_random_boolean] = ACTIONS(341), - [anon_sym_random_float] = ACTIONS(341), - [anon_sym_random_integer] = ACTIONS(341), - [anon_sym_columns] = ACTIONS(341), - [anon_sym_rows] = ACTIONS(341), - [anon_sym_reverse] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2049), + [anon_sym_RPAREN] = ACTIONS(1333), + [sym_integer] = ACTIONS(2051), + [sym_float] = ACTIONS(2053), + [sym_string] = ACTIONS(2053), + [anon_sym_true] = ACTIONS(2055), + [anon_sym_false] = ACTIONS(2055), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_COLON] = ACTIONS(1333), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1333), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_SLASH] = ACTIONS(1333), + [anon_sym_PERCENT] = ACTIONS(1333), + [anon_sym_EQ_EQ] = ACTIONS(1333), + [anon_sym_BANG_EQ] = ACTIONS(1333), + [anon_sym_AMP_AMP] = ACTIONS(1333), + [anon_sym_PIPE_PIPE] = ACTIONS(1333), + [anon_sym_GT] = ACTIONS(1335), + [anon_sym_LT] = ACTIONS(1335), + [anon_sym_GT_EQ] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1333), + [anon_sym_EQ_GT] = ACTIONS(2091), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2093), + [anon_sym_assert] = ACTIONS(2095), + [anon_sym_assert_equal] = ACTIONS(2095), + [anon_sym_download] = ACTIONS(2095), + [anon_sym_help] = ACTIONS(2095), + [anon_sym_length] = ACTIONS(2095), + [anon_sym_output] = ACTIONS(2095), + [anon_sym_output_error] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2095), + [anon_sym_append] = ACTIONS(2095), + [anon_sym_metadata] = ACTIONS(2095), + [anon_sym_move] = ACTIONS(2095), + [anon_sym_read] = ACTIONS(2095), + [anon_sym_workdir] = ACTIONS(2095), + [anon_sym_write] = ACTIONS(2095), + [anon_sym_from_json] = ACTIONS(2095), + [anon_sym_to_json] = ACTIONS(2095), + [anon_sym_to_string] = ACTIONS(2095), + [anon_sym_to_float] = ACTIONS(2095), + [anon_sym_bash] = ACTIONS(2095), + [anon_sym_fish] = ACTIONS(2095), + [anon_sym_raw] = ACTIONS(2095), + [anon_sym_sh] = ACTIONS(2095), + [anon_sym_zsh] = ACTIONS(2095), + [anon_sym_random] = ACTIONS(2095), + [anon_sym_random_boolean] = ACTIONS(2095), + [anon_sym_random_float] = ACTIONS(2095), + [anon_sym_random_integer] = ACTIONS(2095), + [anon_sym_columns] = ACTIONS(2095), + [anon_sym_rows] = ACTIONS(2095), + [anon_sym_reverse] = ACTIONS(2095), }, [503] = { - [sym_block] = STATE(1545), - [sym_statement] = STATE(60), - [sym_expression] = STATE(756), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(657), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(627), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1752), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(338), - [aux_sym_block_repeat1] = STATE(60), - [sym_identifier] = ACTIONS(875), + [sym_expression] = STATE(594), + [sym__expression_kind] = STATE(585), + [aux_sym__expression_list] = STATE(514), + [sym_value] = STATE(585), + [sym_boolean] = STATE(586), + [sym_list] = STATE(586), + [sym_map] = STATE(586), + [sym_index] = STATE(585), + [sym_math] = STATE(585), + [sym_logic] = STATE(585), + [sym_identifier_list] = STATE(1105), + [sym_table] = STATE(586), + [sym_function] = STATE(586), + [sym_function_call] = STATE(585), + [sym__context_defined_function] = STATE(587), + [sym_built_in_function] = STATE(587), + [sym__built_in_function_name] = STATE(372), + [sym_identifier] = ACTIONS(2089), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2164), - [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(245), - [anon_sym_match] = ACTIONS(881), - [anon_sym_EQ_GT] = ACTIONS(883), - [anon_sym_while] = ACTIONS(885), - [anon_sym_for] = ACTIONS(887), - [anon_sym_asyncfor] = ACTIONS(889), - [anon_sym_transform] = ACTIONS(891), - [anon_sym_filter] = ACTIONS(893), - [anon_sym_find] = ACTIONS(895), - [anon_sym_remove] = ACTIONS(897), - [anon_sym_reduce] = ACTIONS(899), - [anon_sym_select] = ACTIONS(901), - [anon_sym_insert] = ACTIONS(903), - [anon_sym_async] = ACTIONS(905), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(907), - [anon_sym_assert] = ACTIONS(909), - [anon_sym_assert_equal] = ACTIONS(909), - [anon_sym_download] = ACTIONS(909), - [anon_sym_help] = ACTIONS(909), - [anon_sym_length] = ACTIONS(909), - [anon_sym_output] = ACTIONS(909), - [anon_sym_output_error] = ACTIONS(909), - [anon_sym_type] = ACTIONS(909), - [anon_sym_append] = ACTIONS(909), - [anon_sym_metadata] = ACTIONS(909), - [anon_sym_move] = ACTIONS(909), - [anon_sym_read] = ACTIONS(909), - [anon_sym_workdir] = ACTIONS(909), - [anon_sym_write] = ACTIONS(909), - [anon_sym_from_json] = ACTIONS(909), - [anon_sym_to_json] = ACTIONS(909), - [anon_sym_to_string] = ACTIONS(909), - [anon_sym_to_float] = ACTIONS(909), - [anon_sym_bash] = ACTIONS(909), - [anon_sym_fish] = ACTIONS(909), - [anon_sym_raw] = ACTIONS(909), - [anon_sym_sh] = ACTIONS(909), - [anon_sym_zsh] = ACTIONS(909), - [anon_sym_random] = ACTIONS(909), - [anon_sym_random_boolean] = ACTIONS(909), - [anon_sym_random_float] = ACTIONS(909), - [anon_sym_random_integer] = ACTIONS(909), - [anon_sym_columns] = ACTIONS(909), - [anon_sym_rows] = ACTIONS(909), - [anon_sym_reverse] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2049), + [anon_sym_RPAREN] = ACTIONS(1329), + [sym_integer] = ACTIONS(2051), + [sym_float] = ACTIONS(2053), + [sym_string] = ACTIONS(2053), + [anon_sym_true] = ACTIONS(2055), + [anon_sym_false] = ACTIONS(2055), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_COLON] = ACTIONS(1329), + [anon_sym_DOT_DOT] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1331), + [anon_sym_STAR] = ACTIONS(1329), + [anon_sym_SLASH] = ACTIONS(1329), + [anon_sym_PERCENT] = ACTIONS(1329), + [anon_sym_EQ_EQ] = ACTIONS(1329), + [anon_sym_BANG_EQ] = ACTIONS(1329), + [anon_sym_AMP_AMP] = ACTIONS(1329), + [anon_sym_PIPE_PIPE] = ACTIONS(1329), + [anon_sym_GT] = ACTIONS(1331), + [anon_sym_LT] = ACTIONS(1331), + [anon_sym_GT_EQ] = ACTIONS(1329), + [anon_sym_LT_EQ] = ACTIONS(1329), + [anon_sym_EQ_GT] = ACTIONS(2091), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2093), + [anon_sym_assert] = ACTIONS(2095), + [anon_sym_assert_equal] = ACTIONS(2095), + [anon_sym_download] = ACTIONS(2095), + [anon_sym_help] = ACTIONS(2095), + [anon_sym_length] = ACTIONS(2095), + [anon_sym_output] = ACTIONS(2095), + [anon_sym_output_error] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2095), + [anon_sym_append] = ACTIONS(2095), + [anon_sym_metadata] = ACTIONS(2095), + [anon_sym_move] = ACTIONS(2095), + [anon_sym_read] = ACTIONS(2095), + [anon_sym_workdir] = ACTIONS(2095), + [anon_sym_write] = ACTIONS(2095), + [anon_sym_from_json] = ACTIONS(2095), + [anon_sym_to_json] = ACTIONS(2095), + [anon_sym_to_string] = ACTIONS(2095), + [anon_sym_to_float] = ACTIONS(2095), + [anon_sym_bash] = ACTIONS(2095), + [anon_sym_fish] = ACTIONS(2095), + [anon_sym_raw] = ACTIONS(2095), + [anon_sym_sh] = ACTIONS(2095), + [anon_sym_zsh] = ACTIONS(2095), + [anon_sym_random] = ACTIONS(2095), + [anon_sym_random_boolean] = ACTIONS(2095), + [anon_sym_random_float] = ACTIONS(2095), + [anon_sym_random_integer] = ACTIONS(2095), + [anon_sym_columns] = ACTIONS(2095), + [anon_sym_rows] = ACTIONS(2095), + [anon_sym_reverse] = ACTIONS(2095), }, [504] = { - [sym_block] = STATE(777), - [sym_statement] = STATE(51), - [sym_expression] = STATE(817), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(748), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(760), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1926), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(351), - [aux_sym_block_repeat1] = STATE(51), - [sym_identifier] = ACTIONS(1280), + [sym_expression] = STATE(963), + [sym__expression_kind] = STATE(919), + [sym_value] = STATE(919), + [sym_boolean] = STATE(936), + [sym_list] = STATE(936), + [sym_map] = STATE(936), + [sym_index] = STATE(919), + [sym_math] = STATE(919), + [sym_math_operator] = STATE(749), + [sym_logic] = STATE(919), + [sym_logic_operator] = STATE(748), + [sym_identifier_list] = STATE(1086), + [sym_table] = STATE(936), + [sym_function] = STATE(936), + [sym_function_call] = STATE(919), + [sym__context_defined_function] = STATE(934), + [sym_built_in_function] = STATE(934), + [sym__built_in_function_name] = STATE(550), + [aux_sym_match_repeat1] = STATE(515), + [sym_identifier] = ACTIONS(1339), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_match] = ACTIONS(1286), - [anon_sym_EQ_GT] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_asyncfor] = ACTIONS(1294), - [anon_sym_transform] = ACTIONS(1296), - [anon_sym_filter] = ACTIONS(1298), - [anon_sym_find] = ACTIONS(1300), - [anon_sym_remove] = ACTIONS(1302), - [anon_sym_reduce] = ACTIONS(1304), - [anon_sym_select] = ACTIONS(1306), - [anon_sym_insert] = ACTIONS(1308), - [anon_sym_async] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(1312), - [anon_sym_assert] = ACTIONS(1314), - [anon_sym_assert_equal] = ACTIONS(1314), - [anon_sym_download] = ACTIONS(1314), - [anon_sym_help] = ACTIONS(1314), - [anon_sym_length] = ACTIONS(1314), - [anon_sym_output] = ACTIONS(1314), - [anon_sym_output_error] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_append] = ACTIONS(1314), - [anon_sym_metadata] = ACTIONS(1314), - [anon_sym_move] = ACTIONS(1314), - [anon_sym_read] = ACTIONS(1314), - [anon_sym_workdir] = ACTIONS(1314), - [anon_sym_write] = ACTIONS(1314), - [anon_sym_from_json] = ACTIONS(1314), - [anon_sym_to_json] = ACTIONS(1314), - [anon_sym_to_string] = ACTIONS(1314), - [anon_sym_to_float] = ACTIONS(1314), - [anon_sym_bash] = ACTIONS(1314), - [anon_sym_fish] = ACTIONS(1314), - [anon_sym_raw] = ACTIONS(1314), - [anon_sym_sh] = ACTIONS(1314), - [anon_sym_zsh] = ACTIONS(1314), - [anon_sym_random] = ACTIONS(1314), - [anon_sym_random_boolean] = ACTIONS(1314), - [anon_sym_random_float] = ACTIONS(1314), - [anon_sym_random_integer] = ACTIONS(1314), - [anon_sym_columns] = ACTIONS(1314), - [anon_sym_rows] = ACTIONS(1314), - [anon_sym_reverse] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1341), + [anon_sym_LPAREN] = ACTIONS(1343), + [sym_integer] = ACTIONS(1345), + [sym_float] = ACTIONS(1347), + [sym_string] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1349), + [anon_sym_false] = ACTIONS(1349), + [anon_sym_LBRACK] = ACTIONS(1351), + [anon_sym_COLON] = ACTIONS(2287), + [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(1355), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1357), + [anon_sym_assert] = ACTIONS(1359), + [anon_sym_assert_equal] = ACTIONS(1359), + [anon_sym_download] = ACTIONS(1359), + [anon_sym_help] = ACTIONS(1359), + [anon_sym_length] = ACTIONS(1359), + [anon_sym_output] = ACTIONS(1359), + [anon_sym_output_error] = ACTIONS(1359), + [anon_sym_type] = ACTIONS(1359), + [anon_sym_append] = ACTIONS(1359), + [anon_sym_metadata] = ACTIONS(1359), + [anon_sym_move] = ACTIONS(1359), + [anon_sym_read] = ACTIONS(1359), + [anon_sym_workdir] = ACTIONS(1359), + [anon_sym_write] = ACTIONS(1359), + [anon_sym_from_json] = ACTIONS(1359), + [anon_sym_to_json] = ACTIONS(1359), + [anon_sym_to_string] = ACTIONS(1359), + [anon_sym_to_float] = ACTIONS(1359), + [anon_sym_bash] = ACTIONS(1359), + [anon_sym_fish] = ACTIONS(1359), + [anon_sym_raw] = ACTIONS(1359), + [anon_sym_sh] = ACTIONS(1359), + [anon_sym_zsh] = ACTIONS(1359), + [anon_sym_random] = ACTIONS(1359), + [anon_sym_random_boolean] = ACTIONS(1359), + [anon_sym_random_float] = ACTIONS(1359), + [anon_sym_random_integer] = ACTIONS(1359), + [anon_sym_columns] = ACTIONS(1359), + [anon_sym_rows] = ACTIONS(1359), + [anon_sym_reverse] = ACTIONS(1359), }, [505] = { - [sym_block] = STATE(777), - [sym_statement] = STATE(22), - [sym_expression] = STATE(685), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(576), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(647), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1984), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(302), - [aux_sym_block_repeat1] = STATE(22), - [sym_identifier] = ACTIONS(229), + [sym_expression] = STATE(998), + [sym__expression_kind] = STATE(919), + [sym_value] = STATE(919), + [sym_boolean] = STATE(936), + [sym_list] = STATE(936), + [sym_map] = STATE(936), + [sym_index] = STATE(919), + [sym_math] = STATE(919), + [sym_math_operator] = STATE(749), + [sym_logic] = STATE(919), + [sym_logic_operator] = STATE(748), + [sym_identifier_list] = STATE(1086), + [sym_table] = STATE(936), + [sym_function] = STATE(936), + [sym_function_call] = STATE(919), + [sym__context_defined_function] = STATE(934), + [sym_built_in_function] = STATE(934), + [sym__built_in_function_name] = STATE(550), + [aux_sym_match_repeat1] = STATE(198), + [sym_identifier] = ACTIONS(1339), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_if] = ACTIONS(245), - [anon_sym_match] = ACTIONS(247), - [anon_sym_EQ_GT] = ACTIONS(249), - [anon_sym_while] = ACTIONS(251), - [anon_sym_for] = ACTIONS(253), - [anon_sym_asyncfor] = ACTIONS(255), - [anon_sym_transform] = ACTIONS(257), - [anon_sym_filter] = ACTIONS(259), - [anon_sym_find] = ACTIONS(261), - [anon_sym_remove] = ACTIONS(263), - [anon_sym_reduce] = ACTIONS(265), - [anon_sym_select] = ACTIONS(267), - [anon_sym_insert] = ACTIONS(269), - [anon_sym_async] = ACTIONS(271), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(275), - [anon_sym_assert_equal] = ACTIONS(275), - [anon_sym_download] = ACTIONS(275), - [anon_sym_help] = ACTIONS(275), - [anon_sym_length] = ACTIONS(275), - [anon_sym_output] = ACTIONS(275), - [anon_sym_output_error] = ACTIONS(275), - [anon_sym_type] = ACTIONS(275), - [anon_sym_append] = ACTIONS(275), - [anon_sym_metadata] = ACTIONS(275), - [anon_sym_move] = ACTIONS(275), - [anon_sym_read] = ACTIONS(275), - [anon_sym_workdir] = ACTIONS(275), - [anon_sym_write] = ACTIONS(275), - [anon_sym_from_json] = ACTIONS(275), - [anon_sym_to_json] = ACTIONS(275), - [anon_sym_to_string] = ACTIONS(275), - [anon_sym_to_float] = ACTIONS(275), - [anon_sym_bash] = ACTIONS(275), - [anon_sym_fish] = ACTIONS(275), - [anon_sym_raw] = ACTIONS(275), - [anon_sym_sh] = ACTIONS(275), - [anon_sym_zsh] = ACTIONS(275), - [anon_sym_random] = ACTIONS(275), - [anon_sym_random_boolean] = ACTIONS(275), - [anon_sym_random_float] = ACTIONS(275), - [anon_sym_random_integer] = ACTIONS(275), - [anon_sym_columns] = ACTIONS(275), - [anon_sym_rows] = ACTIONS(275), - [anon_sym_reverse] = ACTIONS(275), + [anon_sym_LBRACE] = ACTIONS(1341), + [anon_sym_LPAREN] = ACTIONS(1343), + [sym_integer] = ACTIONS(1345), + [sym_float] = ACTIONS(1347), + [sym_string] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1349), + [anon_sym_false] = ACTIONS(1349), + [anon_sym_LBRACK] = ACTIONS(1351), + [anon_sym_COLON] = ACTIONS(2287), + [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(1355), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1357), + [anon_sym_assert] = ACTIONS(1359), + [anon_sym_assert_equal] = ACTIONS(1359), + [anon_sym_download] = ACTIONS(1359), + [anon_sym_help] = ACTIONS(1359), + [anon_sym_length] = ACTIONS(1359), + [anon_sym_output] = ACTIONS(1359), + [anon_sym_output_error] = ACTIONS(1359), + [anon_sym_type] = ACTIONS(1359), + [anon_sym_append] = ACTIONS(1359), + [anon_sym_metadata] = ACTIONS(1359), + [anon_sym_move] = ACTIONS(1359), + [anon_sym_read] = ACTIONS(1359), + [anon_sym_workdir] = ACTIONS(1359), + [anon_sym_write] = ACTIONS(1359), + [anon_sym_from_json] = ACTIONS(1359), + [anon_sym_to_json] = ACTIONS(1359), + [anon_sym_to_string] = ACTIONS(1359), + [anon_sym_to_float] = ACTIONS(1359), + [anon_sym_bash] = ACTIONS(1359), + [anon_sym_fish] = ACTIONS(1359), + [anon_sym_raw] = ACTIONS(1359), + [anon_sym_sh] = ACTIONS(1359), + [anon_sym_zsh] = ACTIONS(1359), + [anon_sym_random] = ACTIONS(1359), + [anon_sym_random_boolean] = ACTIONS(1359), + [anon_sym_random_float] = ACTIONS(1359), + [anon_sym_random_integer] = ACTIONS(1359), + [anon_sym_columns] = ACTIONS(1359), + [anon_sym_rows] = ACTIONS(1359), + [anon_sym_reverse] = ACTIONS(1359), }, [506] = { - [sym_block] = STATE(1004), - [sym_statement] = STATE(256), - [sym_expression] = STATE(853), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(776), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(710), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1823), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(366), - [aux_sym_block_repeat1] = STATE(256), - [sym_identifier] = ACTIONS(1436), + [sym_expression] = STATE(981), + [sym__expression_kind] = STATE(919), + [sym_value] = STATE(919), + [sym_boolean] = STATE(936), + [sym_list] = STATE(936), + [sym_map] = STATE(936), + [sym_index] = STATE(919), + [sym_math] = STATE(919), + [sym_math_operator] = STATE(749), + [sym_logic] = STATE(919), + [sym_logic_operator] = STATE(748), + [sym_identifier_list] = STATE(1086), + [sym_table] = STATE(936), + [sym_function] = STATE(936), + [sym_function_call] = STATE(919), + [sym__context_defined_function] = STATE(934), + [sym_built_in_function] = STATE(934), + [sym__built_in_function_name] = STATE(550), + [aux_sym_match_repeat1] = STATE(232), + [sym_identifier] = ACTIONS(1339), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3083), - [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(843), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_EQ_GT] = ACTIONS(1442), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_for] = ACTIONS(1446), - [anon_sym_asyncfor] = ACTIONS(1448), - [anon_sym_transform] = ACTIONS(1450), - [anon_sym_filter] = ACTIONS(1452), - [anon_sym_find] = ACTIONS(1454), - [anon_sym_remove] = ACTIONS(1456), - [anon_sym_reduce] = ACTIONS(1458), - [anon_sym_select] = ACTIONS(1460), - [anon_sym_insert] = ACTIONS(1462), - [anon_sym_async] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(1466), - [anon_sym_assert] = ACTIONS(1468), - [anon_sym_assert_equal] = ACTIONS(1468), - [anon_sym_download] = ACTIONS(1468), - [anon_sym_help] = ACTIONS(1468), - [anon_sym_length] = ACTIONS(1468), - [anon_sym_output] = ACTIONS(1468), - [anon_sym_output_error] = ACTIONS(1468), - [anon_sym_type] = ACTIONS(1468), - [anon_sym_append] = ACTIONS(1468), - [anon_sym_metadata] = ACTIONS(1468), - [anon_sym_move] = ACTIONS(1468), - [anon_sym_read] = ACTIONS(1468), - [anon_sym_workdir] = ACTIONS(1468), - [anon_sym_write] = ACTIONS(1468), - [anon_sym_from_json] = ACTIONS(1468), - [anon_sym_to_json] = ACTIONS(1468), - [anon_sym_to_string] = ACTIONS(1468), - [anon_sym_to_float] = ACTIONS(1468), - [anon_sym_bash] = ACTIONS(1468), - [anon_sym_fish] = ACTIONS(1468), - [anon_sym_raw] = ACTIONS(1468), - [anon_sym_sh] = ACTIONS(1468), - [anon_sym_zsh] = ACTIONS(1468), - [anon_sym_random] = ACTIONS(1468), - [anon_sym_random_boolean] = ACTIONS(1468), - [anon_sym_random_float] = ACTIONS(1468), - [anon_sym_random_integer] = ACTIONS(1468), - [anon_sym_columns] = ACTIONS(1468), - [anon_sym_rows] = ACTIONS(1468), - [anon_sym_reverse] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1341), + [anon_sym_LPAREN] = ACTIONS(1343), + [sym_integer] = ACTIONS(1345), + [sym_float] = ACTIONS(1347), + [sym_string] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1349), + [anon_sym_false] = ACTIONS(1349), + [anon_sym_LBRACK] = ACTIONS(1351), + [anon_sym_COLON] = ACTIONS(2287), + [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(1355), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1357), + [anon_sym_assert] = ACTIONS(1359), + [anon_sym_assert_equal] = ACTIONS(1359), + [anon_sym_download] = ACTIONS(1359), + [anon_sym_help] = ACTIONS(1359), + [anon_sym_length] = ACTIONS(1359), + [anon_sym_output] = ACTIONS(1359), + [anon_sym_output_error] = ACTIONS(1359), + [anon_sym_type] = ACTIONS(1359), + [anon_sym_append] = ACTIONS(1359), + [anon_sym_metadata] = ACTIONS(1359), + [anon_sym_move] = ACTIONS(1359), + [anon_sym_read] = ACTIONS(1359), + [anon_sym_workdir] = ACTIONS(1359), + [anon_sym_write] = ACTIONS(1359), + [anon_sym_from_json] = ACTIONS(1359), + [anon_sym_to_json] = ACTIONS(1359), + [anon_sym_to_string] = ACTIONS(1359), + [anon_sym_to_float] = ACTIONS(1359), + [anon_sym_bash] = ACTIONS(1359), + [anon_sym_fish] = ACTIONS(1359), + [anon_sym_raw] = ACTIONS(1359), + [anon_sym_sh] = ACTIONS(1359), + [anon_sym_zsh] = ACTIONS(1359), + [anon_sym_random] = ACTIONS(1359), + [anon_sym_random_boolean] = ACTIONS(1359), + [anon_sym_random_float] = ACTIONS(1359), + [anon_sym_random_integer] = ACTIONS(1359), + [anon_sym_columns] = ACTIONS(1359), + [anon_sym_rows] = ACTIONS(1359), + [anon_sym_reverse] = ACTIONS(1359), }, [507] = { - [sym_block] = STATE(1011), - [sym_statement] = STATE(256), - [sym_expression] = STATE(853), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(776), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(710), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1823), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(366), - [aux_sym_block_repeat1] = STATE(256), - [sym_identifier] = ACTIONS(1436), + [sym_expression] = STATE(990), + [sym__expression_kind] = STATE(919), + [sym_value] = STATE(919), + [sym_boolean] = STATE(936), + [sym_list] = STATE(936), + [sym_map] = STATE(936), + [sym_index] = STATE(919), + [sym_math] = STATE(919), + [sym_math_operator] = STATE(749), + [sym_logic] = STATE(919), + [sym_logic_operator] = STATE(748), + [sym_identifier_list] = STATE(1086), + [sym_table] = STATE(936), + [sym_function] = STATE(936), + [sym_function_call] = STATE(919), + [sym__context_defined_function] = STATE(934), + [sym_built_in_function] = STATE(934), + [sym__built_in_function_name] = STATE(550), + [aux_sym_match_repeat1] = STATE(456), + [sym_identifier] = ACTIONS(1339), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3083), - [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(843), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_EQ_GT] = ACTIONS(1442), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_for] = ACTIONS(1446), - [anon_sym_asyncfor] = ACTIONS(1448), - [anon_sym_transform] = ACTIONS(1450), - [anon_sym_filter] = ACTIONS(1452), - [anon_sym_find] = ACTIONS(1454), - [anon_sym_remove] = ACTIONS(1456), - [anon_sym_reduce] = ACTIONS(1458), - [anon_sym_select] = ACTIONS(1460), - [anon_sym_insert] = ACTIONS(1462), - [anon_sym_async] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(1466), - [anon_sym_assert] = ACTIONS(1468), - [anon_sym_assert_equal] = ACTIONS(1468), - [anon_sym_download] = ACTIONS(1468), - [anon_sym_help] = ACTIONS(1468), - [anon_sym_length] = ACTIONS(1468), - [anon_sym_output] = ACTIONS(1468), - [anon_sym_output_error] = ACTIONS(1468), - [anon_sym_type] = ACTIONS(1468), - [anon_sym_append] = ACTIONS(1468), - [anon_sym_metadata] = ACTIONS(1468), - [anon_sym_move] = ACTIONS(1468), - [anon_sym_read] = ACTIONS(1468), - [anon_sym_workdir] = ACTIONS(1468), - [anon_sym_write] = ACTIONS(1468), - [anon_sym_from_json] = ACTIONS(1468), - [anon_sym_to_json] = ACTIONS(1468), - [anon_sym_to_string] = ACTIONS(1468), - [anon_sym_to_float] = ACTIONS(1468), - [anon_sym_bash] = ACTIONS(1468), - [anon_sym_fish] = ACTIONS(1468), - [anon_sym_raw] = ACTIONS(1468), - [anon_sym_sh] = ACTIONS(1468), - [anon_sym_zsh] = ACTIONS(1468), - [anon_sym_random] = ACTIONS(1468), - [anon_sym_random_boolean] = ACTIONS(1468), - [anon_sym_random_float] = ACTIONS(1468), - [anon_sym_random_integer] = ACTIONS(1468), - [anon_sym_columns] = ACTIONS(1468), - [anon_sym_rows] = ACTIONS(1468), - [anon_sym_reverse] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1341), + [anon_sym_LPAREN] = ACTIONS(1343), + [sym_integer] = ACTIONS(1345), + [sym_float] = ACTIONS(1347), + [sym_string] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1349), + [anon_sym_false] = ACTIONS(1349), + [anon_sym_LBRACK] = ACTIONS(1351), + [anon_sym_COLON] = ACTIONS(2287), + [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(1355), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1357), + [anon_sym_assert] = ACTIONS(1359), + [anon_sym_assert_equal] = ACTIONS(1359), + [anon_sym_download] = ACTIONS(1359), + [anon_sym_help] = ACTIONS(1359), + [anon_sym_length] = ACTIONS(1359), + [anon_sym_output] = ACTIONS(1359), + [anon_sym_output_error] = ACTIONS(1359), + [anon_sym_type] = ACTIONS(1359), + [anon_sym_append] = ACTIONS(1359), + [anon_sym_metadata] = ACTIONS(1359), + [anon_sym_move] = ACTIONS(1359), + [anon_sym_read] = ACTIONS(1359), + [anon_sym_workdir] = ACTIONS(1359), + [anon_sym_write] = ACTIONS(1359), + [anon_sym_from_json] = ACTIONS(1359), + [anon_sym_to_json] = ACTIONS(1359), + [anon_sym_to_string] = ACTIONS(1359), + [anon_sym_to_float] = ACTIONS(1359), + [anon_sym_bash] = ACTIONS(1359), + [anon_sym_fish] = ACTIONS(1359), + [anon_sym_raw] = ACTIONS(1359), + [anon_sym_sh] = ACTIONS(1359), + [anon_sym_zsh] = ACTIONS(1359), + [anon_sym_random] = ACTIONS(1359), + [anon_sym_random_boolean] = ACTIONS(1359), + [anon_sym_random_float] = ACTIONS(1359), + [anon_sym_random_integer] = ACTIONS(1359), + [anon_sym_columns] = ACTIONS(1359), + [anon_sym_rows] = ACTIONS(1359), + [anon_sym_reverse] = ACTIONS(1359), }, [508] = { - [sym_block] = STATE(861), - [sym_statement] = STATE(57), - [sym_expression] = STATE(853), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(776), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(710), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1823), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(366), - [aux_sym_block_repeat1] = STATE(57), - [sym_identifier] = ACTIONS(1436), + [sym_expression] = STATE(972), + [sym__expression_kind] = STATE(919), + [sym_value] = STATE(919), + [sym_boolean] = STATE(936), + [sym_list] = STATE(936), + [sym_map] = STATE(936), + [sym_index] = STATE(919), + [sym_math] = STATE(919), + [sym_math_operator] = STATE(749), + [sym_logic] = STATE(919), + [sym_logic_operator] = STATE(748), + [sym_identifier_list] = STATE(1086), + [sym_table] = STATE(936), + [sym_function] = STATE(936), + [sym_function_call] = STATE(919), + [sym__context_defined_function] = STATE(934), + [sym_built_in_function] = STATE(934), + [sym__built_in_function_name] = STATE(550), + [aux_sym_match_repeat1] = STATE(172), + [sym_identifier] = ACTIONS(1339), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(877), - [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(843), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_EQ_GT] = ACTIONS(1442), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_for] = ACTIONS(1446), - [anon_sym_asyncfor] = ACTIONS(1448), - [anon_sym_transform] = ACTIONS(1450), - [anon_sym_filter] = ACTIONS(1452), - [anon_sym_find] = ACTIONS(1454), - [anon_sym_remove] = ACTIONS(1456), - [anon_sym_reduce] = ACTIONS(1458), - [anon_sym_select] = ACTIONS(1460), - [anon_sym_insert] = ACTIONS(1462), - [anon_sym_async] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(1466), - [anon_sym_assert] = ACTIONS(1468), - [anon_sym_assert_equal] = ACTIONS(1468), - [anon_sym_download] = ACTIONS(1468), - [anon_sym_help] = ACTIONS(1468), - [anon_sym_length] = ACTIONS(1468), - [anon_sym_output] = ACTIONS(1468), - [anon_sym_output_error] = ACTIONS(1468), - [anon_sym_type] = ACTIONS(1468), - [anon_sym_append] = ACTIONS(1468), - [anon_sym_metadata] = ACTIONS(1468), - [anon_sym_move] = ACTIONS(1468), - [anon_sym_read] = ACTIONS(1468), - [anon_sym_workdir] = ACTIONS(1468), - [anon_sym_write] = ACTIONS(1468), - [anon_sym_from_json] = ACTIONS(1468), - [anon_sym_to_json] = ACTIONS(1468), - [anon_sym_to_string] = ACTIONS(1468), - [anon_sym_to_float] = ACTIONS(1468), - [anon_sym_bash] = ACTIONS(1468), - [anon_sym_fish] = ACTIONS(1468), - [anon_sym_raw] = ACTIONS(1468), - [anon_sym_sh] = ACTIONS(1468), - [anon_sym_zsh] = ACTIONS(1468), - [anon_sym_random] = ACTIONS(1468), - [anon_sym_random_boolean] = ACTIONS(1468), - [anon_sym_random_float] = ACTIONS(1468), - [anon_sym_random_integer] = ACTIONS(1468), - [anon_sym_columns] = ACTIONS(1468), - [anon_sym_rows] = ACTIONS(1468), - [anon_sym_reverse] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1341), + [anon_sym_LPAREN] = ACTIONS(1343), + [sym_integer] = ACTIONS(1345), + [sym_float] = ACTIONS(1347), + [sym_string] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1349), + [anon_sym_false] = ACTIONS(1349), + [anon_sym_LBRACK] = ACTIONS(1351), + [anon_sym_COLON] = ACTIONS(2287), + [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(1355), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1357), + [anon_sym_assert] = ACTIONS(1359), + [anon_sym_assert_equal] = ACTIONS(1359), + [anon_sym_download] = ACTIONS(1359), + [anon_sym_help] = ACTIONS(1359), + [anon_sym_length] = ACTIONS(1359), + [anon_sym_output] = ACTIONS(1359), + [anon_sym_output_error] = ACTIONS(1359), + [anon_sym_type] = ACTIONS(1359), + [anon_sym_append] = ACTIONS(1359), + [anon_sym_metadata] = ACTIONS(1359), + [anon_sym_move] = ACTIONS(1359), + [anon_sym_read] = ACTIONS(1359), + [anon_sym_workdir] = ACTIONS(1359), + [anon_sym_write] = ACTIONS(1359), + [anon_sym_from_json] = ACTIONS(1359), + [anon_sym_to_json] = ACTIONS(1359), + [anon_sym_to_string] = ACTIONS(1359), + [anon_sym_to_float] = ACTIONS(1359), + [anon_sym_bash] = ACTIONS(1359), + [anon_sym_fish] = ACTIONS(1359), + [anon_sym_raw] = ACTIONS(1359), + [anon_sym_sh] = ACTIONS(1359), + [anon_sym_zsh] = ACTIONS(1359), + [anon_sym_random] = ACTIONS(1359), + [anon_sym_random_boolean] = ACTIONS(1359), + [anon_sym_random_float] = ACTIONS(1359), + [anon_sym_random_integer] = ACTIONS(1359), + [anon_sym_columns] = ACTIONS(1359), + [anon_sym_rows] = ACTIONS(1359), + [anon_sym_reverse] = ACTIONS(1359), }, [509] = { - [sym_block] = STATE(1545), - [sym_statement] = STATE(253), - [sym_expression] = STATE(853), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(776), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(710), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1823), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(366), - [aux_sym_block_repeat1] = STATE(253), - [sym_identifier] = ACTIONS(1436), + [sym_expression] = STATE(963), + [sym__expression_kind] = STATE(919), + [sym_value] = STATE(919), + [sym_boolean] = STATE(936), + [sym_list] = STATE(936), + [sym_map] = STATE(936), + [sym_index] = STATE(919), + [sym_math] = STATE(919), + [sym_logic] = STATE(919), + [sym_identifier_list] = STATE(1086), + [sym_table] = STATE(936), + [sym_function] = STATE(936), + [sym_function_call] = STATE(919), + [sym__context_defined_function] = STATE(934), + [sym_built_in_function] = STATE(934), + [sym__built_in_function_name] = STATE(550), + [aux_sym_match_repeat1] = STATE(509), + [sym_identifier] = ACTIONS(1400), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2164), - [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(843), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_EQ_GT] = ACTIONS(1442), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_for] = ACTIONS(1446), - [anon_sym_asyncfor] = ACTIONS(1448), - [anon_sym_transform] = ACTIONS(1450), - [anon_sym_filter] = ACTIONS(1452), - [anon_sym_find] = ACTIONS(1454), - [anon_sym_remove] = ACTIONS(1456), - [anon_sym_reduce] = ACTIONS(1458), - [anon_sym_select] = ACTIONS(1460), - [anon_sym_insert] = ACTIONS(1462), - [anon_sym_async] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(1466), - [anon_sym_assert] = ACTIONS(1468), - [anon_sym_assert_equal] = ACTIONS(1468), - [anon_sym_download] = ACTIONS(1468), - [anon_sym_help] = ACTIONS(1468), - [anon_sym_length] = ACTIONS(1468), - [anon_sym_output] = ACTIONS(1468), - [anon_sym_output_error] = ACTIONS(1468), - [anon_sym_type] = ACTIONS(1468), - [anon_sym_append] = ACTIONS(1468), - [anon_sym_metadata] = ACTIONS(1468), - [anon_sym_move] = ACTIONS(1468), - [anon_sym_read] = ACTIONS(1468), - [anon_sym_workdir] = ACTIONS(1468), - [anon_sym_write] = ACTIONS(1468), - [anon_sym_from_json] = ACTIONS(1468), - [anon_sym_to_json] = ACTIONS(1468), - [anon_sym_to_string] = ACTIONS(1468), - [anon_sym_to_float] = ACTIONS(1468), - [anon_sym_bash] = ACTIONS(1468), - [anon_sym_fish] = ACTIONS(1468), - [anon_sym_raw] = ACTIONS(1468), - [anon_sym_sh] = ACTIONS(1468), - [anon_sym_zsh] = ACTIONS(1468), - [anon_sym_random] = ACTIONS(1468), - [anon_sym_random_boolean] = ACTIONS(1468), - [anon_sym_random_float] = ACTIONS(1468), - [anon_sym_random_integer] = ACTIONS(1468), - [anon_sym_columns] = ACTIONS(1468), - [anon_sym_rows] = ACTIONS(1468), - [anon_sym_reverse] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_RBRACE] = ACTIONS(1398), + [anon_sym_SEMI] = ACTIONS(1398), + [anon_sym_LPAREN] = ACTIONS(1406), + [anon_sym_COMMA] = ACTIONS(1398), + [sym_integer] = ACTIONS(1409), + [sym_float] = ACTIONS(1412), + [sym_string] = ACTIONS(1412), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_LBRACK] = ACTIONS(1418), + [anon_sym_if] = ACTIONS(1421), + [anon_sym_match] = ACTIONS(1421), + [anon_sym_EQ_GT] = ACTIONS(1423), + [anon_sym_while] = ACTIONS(1421), + [anon_sym_for] = ACTIONS(1421), + [anon_sym_asyncfor] = ACTIONS(1398), + [anon_sym_transform] = ACTIONS(1421), + [anon_sym_filter] = ACTIONS(1421), + [anon_sym_find] = ACTIONS(1421), + [anon_sym_remove] = ACTIONS(1421), + [anon_sym_reduce] = ACTIONS(1421), + [anon_sym_select] = ACTIONS(1421), + [anon_sym_insert] = ACTIONS(1421), + [anon_sym_async] = ACTIONS(1421), + [anon_sym_PIPE] = ACTIONS(2275), + [anon_sym_table] = ACTIONS(1429), + [anon_sym_assert] = ACTIONS(1432), + [anon_sym_assert_equal] = ACTIONS(1432), + [anon_sym_download] = ACTIONS(1432), + [anon_sym_help] = ACTIONS(1432), + [anon_sym_length] = ACTIONS(1432), + [anon_sym_output] = ACTIONS(1432), + [anon_sym_output_error] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_append] = ACTIONS(1432), + [anon_sym_metadata] = ACTIONS(1432), + [anon_sym_move] = ACTIONS(1432), + [anon_sym_read] = ACTIONS(1432), + [anon_sym_workdir] = ACTIONS(1432), + [anon_sym_write] = ACTIONS(1432), + [anon_sym_from_json] = ACTIONS(1432), + [anon_sym_to_json] = ACTIONS(1432), + [anon_sym_to_string] = ACTIONS(1432), + [anon_sym_to_float] = ACTIONS(1432), + [anon_sym_bash] = ACTIONS(1432), + [anon_sym_fish] = ACTIONS(1432), + [anon_sym_raw] = ACTIONS(1432), + [anon_sym_sh] = ACTIONS(1432), + [anon_sym_zsh] = ACTIONS(1432), + [anon_sym_random] = ACTIONS(1432), + [anon_sym_random_boolean] = ACTIONS(1432), + [anon_sym_random_float] = ACTIONS(1432), + [anon_sym_random_integer] = ACTIONS(1432), + [anon_sym_columns] = ACTIONS(1432), + [anon_sym_rows] = ACTIONS(1432), + [anon_sym_reverse] = ACTIONS(1432), }, [510] = { - [sym_block] = STATE(727), - [sym_statement] = STATE(24), - [sym_expression] = STATE(683), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_logic] = STATE(706), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(573), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1813), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(311), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(149), + [sym_expression] = STATE(996), + [sym__expression_kind] = STATE(919), + [sym_value] = STATE(919), + [sym_boolean] = STATE(936), + [sym_list] = STATE(936), + [sym_map] = STATE(936), + [sym_index] = STATE(919), + [sym_math] = STATE(919), + [sym_math_operator] = STATE(749), + [sym_logic] = STATE(919), + [sym_logic_operator] = STATE(748), + [sym_identifier_list] = STATE(1086), + [sym_table] = STATE(936), + [sym_function] = STATE(936), + [sym_function_call] = STATE(919), + [sym__context_defined_function] = STATE(934), + [sym_built_in_function] = STATE(934), + [sym__built_in_function_name] = STATE(550), + [aux_sym_match_repeat1] = STATE(513), + [sym_identifier] = ACTIONS(1339), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_if] = ACTIONS(117), - [anon_sym_match] = ACTIONS(279), - [anon_sym_EQ_GT] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_for] = ACTIONS(285), - [anon_sym_asyncfor] = ACTIONS(287), - [anon_sym_transform] = ACTIONS(289), - [anon_sym_filter] = ACTIONS(291), - [anon_sym_find] = ACTIONS(293), - [anon_sym_remove] = ACTIONS(295), - [anon_sym_reduce] = ACTIONS(297), - [anon_sym_select] = ACTIONS(299), - [anon_sym_insert] = ACTIONS(301), - [anon_sym_async] = ACTIONS(303), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(305), - [anon_sym_assert] = ACTIONS(307), - [anon_sym_assert_equal] = ACTIONS(307), - [anon_sym_download] = ACTIONS(307), - [anon_sym_help] = ACTIONS(307), - [anon_sym_length] = ACTIONS(307), - [anon_sym_output] = ACTIONS(307), - [anon_sym_output_error] = ACTIONS(307), - [anon_sym_type] = ACTIONS(307), - [anon_sym_append] = ACTIONS(307), - [anon_sym_metadata] = ACTIONS(307), - [anon_sym_move] = ACTIONS(307), - [anon_sym_read] = ACTIONS(307), - [anon_sym_workdir] = ACTIONS(307), - [anon_sym_write] = ACTIONS(307), - [anon_sym_from_json] = ACTIONS(307), - [anon_sym_to_json] = ACTIONS(307), - [anon_sym_to_string] = ACTIONS(307), - [anon_sym_to_float] = ACTIONS(307), - [anon_sym_bash] = ACTIONS(307), - [anon_sym_fish] = ACTIONS(307), - [anon_sym_raw] = ACTIONS(307), - [anon_sym_sh] = ACTIONS(307), - [anon_sym_zsh] = ACTIONS(307), - [anon_sym_random] = ACTIONS(307), - [anon_sym_random_boolean] = ACTIONS(307), - [anon_sym_random_float] = ACTIONS(307), - [anon_sym_random_integer] = ACTIONS(307), - [anon_sym_columns] = ACTIONS(307), - [anon_sym_rows] = ACTIONS(307), - [anon_sym_reverse] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(1341), + [anon_sym_LPAREN] = ACTIONS(1343), + [sym_integer] = ACTIONS(1345), + [sym_float] = ACTIONS(1347), + [sym_string] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1349), + [anon_sym_false] = ACTIONS(1349), + [anon_sym_LBRACK] = ACTIONS(1351), + [anon_sym_COLON] = ACTIONS(2287), + [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(1355), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1357), + [anon_sym_assert] = ACTIONS(1359), + [anon_sym_assert_equal] = ACTIONS(1359), + [anon_sym_download] = ACTIONS(1359), + [anon_sym_help] = ACTIONS(1359), + [anon_sym_length] = ACTIONS(1359), + [anon_sym_output] = ACTIONS(1359), + [anon_sym_output_error] = ACTIONS(1359), + [anon_sym_type] = ACTIONS(1359), + [anon_sym_append] = ACTIONS(1359), + [anon_sym_metadata] = ACTIONS(1359), + [anon_sym_move] = ACTIONS(1359), + [anon_sym_read] = ACTIONS(1359), + [anon_sym_workdir] = ACTIONS(1359), + [anon_sym_write] = ACTIONS(1359), + [anon_sym_from_json] = ACTIONS(1359), + [anon_sym_to_json] = ACTIONS(1359), + [anon_sym_to_string] = ACTIONS(1359), + [anon_sym_to_float] = ACTIONS(1359), + [anon_sym_bash] = ACTIONS(1359), + [anon_sym_fish] = ACTIONS(1359), + [anon_sym_raw] = ACTIONS(1359), + [anon_sym_sh] = ACTIONS(1359), + [anon_sym_zsh] = ACTIONS(1359), + [anon_sym_random] = ACTIONS(1359), + [anon_sym_random_boolean] = ACTIONS(1359), + [anon_sym_random_float] = ACTIONS(1359), + [anon_sym_random_integer] = ACTIONS(1359), + [anon_sym_columns] = ACTIONS(1359), + [anon_sym_rows] = ACTIONS(1359), + [anon_sym_reverse] = ACTIONS(1359), }, [511] = { - [sym_block] = STATE(858), - [sym_statement] = STATE(57), - [sym_expression] = STATE(853), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(776), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(710), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1823), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(366), - [aux_sym_block_repeat1] = STATE(57), - [sym_identifier] = ACTIONS(1436), + [sym_expression] = STATE(594), + [sym__expression_kind] = STATE(585), + [aux_sym__expression_list] = STATE(514), + [sym_value] = STATE(585), + [sym_boolean] = STATE(586), + [sym_list] = STATE(586), + [sym_map] = STATE(586), + [sym_index] = STATE(585), + [sym_math] = STATE(585), + [sym_logic] = STATE(585), + [sym_identifier_list] = STATE(1105), + [sym_table] = STATE(586), + [sym_function] = STATE(586), + [sym_function_call] = STATE(585), + [sym__context_defined_function] = STATE(587), + [sym_built_in_function] = STATE(587), + [sym__built_in_function_name] = STATE(372), + [sym_identifier] = ACTIONS(2089), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(877), - [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(843), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_EQ_GT] = ACTIONS(1442), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_for] = ACTIONS(1446), - [anon_sym_asyncfor] = ACTIONS(1448), - [anon_sym_transform] = ACTIONS(1450), - [anon_sym_filter] = ACTIONS(1452), - [anon_sym_find] = ACTIONS(1454), - [anon_sym_remove] = ACTIONS(1456), - [anon_sym_reduce] = ACTIONS(1458), - [anon_sym_select] = ACTIONS(1460), - [anon_sym_insert] = ACTIONS(1462), - [anon_sym_async] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(1466), - [anon_sym_assert] = ACTIONS(1468), - [anon_sym_assert_equal] = ACTIONS(1468), - [anon_sym_download] = ACTIONS(1468), - [anon_sym_help] = ACTIONS(1468), - [anon_sym_length] = ACTIONS(1468), - [anon_sym_output] = ACTIONS(1468), - [anon_sym_output_error] = ACTIONS(1468), - [anon_sym_type] = ACTIONS(1468), - [anon_sym_append] = ACTIONS(1468), - [anon_sym_metadata] = ACTIONS(1468), - [anon_sym_move] = ACTIONS(1468), - [anon_sym_read] = ACTIONS(1468), - [anon_sym_workdir] = ACTIONS(1468), - [anon_sym_write] = ACTIONS(1468), - [anon_sym_from_json] = ACTIONS(1468), - [anon_sym_to_json] = ACTIONS(1468), - [anon_sym_to_string] = ACTIONS(1468), - [anon_sym_to_float] = ACTIONS(1468), - [anon_sym_bash] = ACTIONS(1468), - [anon_sym_fish] = ACTIONS(1468), - [anon_sym_raw] = ACTIONS(1468), - [anon_sym_sh] = ACTIONS(1468), - [anon_sym_zsh] = ACTIONS(1468), - [anon_sym_random] = ACTIONS(1468), - [anon_sym_random_boolean] = ACTIONS(1468), - [anon_sym_random_float] = ACTIONS(1468), - [anon_sym_random_integer] = ACTIONS(1468), - [anon_sym_columns] = ACTIONS(1468), - [anon_sym_rows] = ACTIONS(1468), - [anon_sym_reverse] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2049), + [anon_sym_RPAREN] = ACTIONS(1321), + [sym_integer] = ACTIONS(2051), + [sym_float] = ACTIONS(2053), + [sym_string] = ACTIONS(2053), + [anon_sym_true] = ACTIONS(2055), + [anon_sym_false] = ACTIONS(2055), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_COLON] = ACTIONS(1321), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_PLUS] = ACTIONS(1321), + [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_STAR] = ACTIONS(1321), + [anon_sym_SLASH] = ACTIONS(1321), + [anon_sym_PERCENT] = ACTIONS(1321), + [anon_sym_EQ_EQ] = ACTIONS(1321), + [anon_sym_BANG_EQ] = ACTIONS(1321), + [anon_sym_AMP_AMP] = ACTIONS(1321), + [anon_sym_PIPE_PIPE] = ACTIONS(1321), + [anon_sym_GT] = ACTIONS(1327), + [anon_sym_LT] = ACTIONS(1327), + [anon_sym_GT_EQ] = ACTIONS(1321), + [anon_sym_LT_EQ] = ACTIONS(1321), + [anon_sym_EQ_GT] = ACTIONS(2091), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2093), + [anon_sym_assert] = ACTIONS(2095), + [anon_sym_assert_equal] = ACTIONS(2095), + [anon_sym_download] = ACTIONS(2095), + [anon_sym_help] = ACTIONS(2095), + [anon_sym_length] = ACTIONS(2095), + [anon_sym_output] = ACTIONS(2095), + [anon_sym_output_error] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2095), + [anon_sym_append] = ACTIONS(2095), + [anon_sym_metadata] = ACTIONS(2095), + [anon_sym_move] = ACTIONS(2095), + [anon_sym_read] = ACTIONS(2095), + [anon_sym_workdir] = ACTIONS(2095), + [anon_sym_write] = ACTIONS(2095), + [anon_sym_from_json] = ACTIONS(2095), + [anon_sym_to_json] = ACTIONS(2095), + [anon_sym_to_string] = ACTIONS(2095), + [anon_sym_to_float] = ACTIONS(2095), + [anon_sym_bash] = ACTIONS(2095), + [anon_sym_fish] = ACTIONS(2095), + [anon_sym_raw] = ACTIONS(2095), + [anon_sym_sh] = ACTIONS(2095), + [anon_sym_zsh] = ACTIONS(2095), + [anon_sym_random] = ACTIONS(2095), + [anon_sym_random_boolean] = ACTIONS(2095), + [anon_sym_random_float] = ACTIONS(2095), + [anon_sym_random_integer] = ACTIONS(2095), + [anon_sym_columns] = ACTIONS(2095), + [anon_sym_rows] = ACTIONS(2095), + [anon_sym_reverse] = ACTIONS(2095), }, [512] = { - [sym_block] = STATE(788), - [sym_statement] = STATE(38), - [sym_expression] = STATE(779), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(655), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(724), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1860), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(341), - [aux_sym_block_repeat1] = STATE(38), - [sym_identifier] = ACTIONS(839), + [sym_expression] = STATE(994), + [sym__expression_kind] = STATE(919), + [sym_value] = STATE(919), + [sym_boolean] = STATE(936), + [sym_list] = STATE(936), + [sym_map] = STATE(936), + [sym_index] = STATE(919), + [sym_math] = STATE(919), + [sym_math_operator] = STATE(749), + [sym_logic] = STATE(919), + [sym_logic_operator] = STATE(748), + [sym_identifier_list] = STATE(1086), + [sym_table] = STATE(936), + [sym_function] = STATE(936), + [sym_function_call] = STATE(919), + [sym__context_defined_function] = STATE(934), + [sym_built_in_function] = STATE(934), + [sym__built_in_function_name] = STATE(550), + [aux_sym_match_repeat1] = STATE(580), + [sym_identifier] = ACTIONS(1339), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_if] = ACTIONS(843), - [anon_sym_match] = ACTIONS(845), - [anon_sym_EQ_GT] = ACTIONS(847), - [anon_sym_while] = ACTIONS(849), - [anon_sym_for] = ACTIONS(851), - [anon_sym_asyncfor] = 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(867), - [anon_sym_async] = ACTIONS(869), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(871), - [anon_sym_assert] = ACTIONS(873), - [anon_sym_assert_equal] = ACTIONS(873), - [anon_sym_download] = ACTIONS(873), - [anon_sym_help] = ACTIONS(873), - [anon_sym_length] = ACTIONS(873), - [anon_sym_output] = ACTIONS(873), - [anon_sym_output_error] = ACTIONS(873), - [anon_sym_type] = ACTIONS(873), - [anon_sym_append] = ACTIONS(873), - [anon_sym_metadata] = ACTIONS(873), - [anon_sym_move] = ACTIONS(873), - [anon_sym_read] = ACTIONS(873), - [anon_sym_workdir] = ACTIONS(873), - [anon_sym_write] = ACTIONS(873), - [anon_sym_from_json] = ACTIONS(873), - [anon_sym_to_json] = ACTIONS(873), - [anon_sym_to_string] = ACTIONS(873), - [anon_sym_to_float] = ACTIONS(873), - [anon_sym_bash] = ACTIONS(873), - [anon_sym_fish] = ACTIONS(873), - [anon_sym_raw] = ACTIONS(873), - [anon_sym_sh] = ACTIONS(873), - [anon_sym_zsh] = ACTIONS(873), - [anon_sym_random] = ACTIONS(873), - [anon_sym_random_boolean] = ACTIONS(873), - [anon_sym_random_float] = ACTIONS(873), - [anon_sym_random_integer] = ACTIONS(873), - [anon_sym_columns] = ACTIONS(873), - [anon_sym_rows] = ACTIONS(873), - [anon_sym_reverse] = ACTIONS(873), + [anon_sym_LBRACE] = ACTIONS(1341), + [anon_sym_LPAREN] = ACTIONS(1343), + [sym_integer] = ACTIONS(1345), + [sym_float] = ACTIONS(1347), + [sym_string] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1349), + [anon_sym_false] = ACTIONS(1349), + [anon_sym_LBRACK] = ACTIONS(1351), + [anon_sym_COLON] = ACTIONS(2287), + [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(1355), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1357), + [anon_sym_assert] = ACTIONS(1359), + [anon_sym_assert_equal] = ACTIONS(1359), + [anon_sym_download] = ACTIONS(1359), + [anon_sym_help] = ACTIONS(1359), + [anon_sym_length] = ACTIONS(1359), + [anon_sym_output] = ACTIONS(1359), + [anon_sym_output_error] = ACTIONS(1359), + [anon_sym_type] = ACTIONS(1359), + [anon_sym_append] = ACTIONS(1359), + [anon_sym_metadata] = ACTIONS(1359), + [anon_sym_move] = ACTIONS(1359), + [anon_sym_read] = ACTIONS(1359), + [anon_sym_workdir] = ACTIONS(1359), + [anon_sym_write] = ACTIONS(1359), + [anon_sym_from_json] = ACTIONS(1359), + [anon_sym_to_json] = ACTIONS(1359), + [anon_sym_to_string] = ACTIONS(1359), + [anon_sym_to_float] = ACTIONS(1359), + [anon_sym_bash] = ACTIONS(1359), + [anon_sym_fish] = ACTIONS(1359), + [anon_sym_raw] = ACTIONS(1359), + [anon_sym_sh] = ACTIONS(1359), + [anon_sym_zsh] = ACTIONS(1359), + [anon_sym_random] = ACTIONS(1359), + [anon_sym_random_boolean] = ACTIONS(1359), + [anon_sym_random_float] = ACTIONS(1359), + [anon_sym_random_integer] = ACTIONS(1359), + [anon_sym_columns] = ACTIONS(1359), + [anon_sym_rows] = ACTIONS(1359), + [anon_sym_reverse] = ACTIONS(1359), }, [513] = { - [sym_statement] = STATE(376), - [sym_expression] = STATE(925), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(867), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(980), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(376), - [sym_identifier] = ACTIONS(5), + [sym_expression] = STATE(996), + [sym__expression_kind] = STATE(919), + [sym_value] = STATE(919), + [sym_boolean] = STATE(936), + [sym_list] = STATE(936), + [sym_map] = STATE(936), + [sym_index] = STATE(919), + [sym_math] = STATE(919), + [sym_logic] = STATE(919), + [sym_identifier_list] = STATE(1086), + [sym_table] = STATE(936), + [sym_function] = STATE(936), + [sym_function_call] = STATE(919), + [sym__context_defined_function] = STATE(934), + [sym_built_in_function] = STATE(934), + [sym__built_in_function_name] = STATE(550), + [aux_sym_match_repeat1] = STATE(525), + [ts_builtin_sym_end] = ACTIONS(1337), + [sym_identifier] = ACTIONS(1339), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(3109), - [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_asyncfor] = 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_async] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(1341), + [anon_sym_RBRACE] = ACTIONS(1337), + [anon_sym_SEMI] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(1343), + [sym_integer] = ACTIONS(1345), + [sym_float] = ACTIONS(1347), + [sym_string] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1349), + [anon_sym_false] = ACTIONS(1349), + [anon_sym_LBRACK] = ACTIONS(1351), + [anon_sym_if] = ACTIONS(1353), + [anon_sym_match] = ACTIONS(1353), + [anon_sym_EQ_GT] = ACTIONS(1355), + [anon_sym_while] = ACTIONS(1353), + [anon_sym_for] = ACTIONS(1353), + [anon_sym_asyncfor] = ACTIONS(1337), + [anon_sym_transform] = ACTIONS(1353), + [anon_sym_filter] = ACTIONS(1353), + [anon_sym_find] = ACTIONS(1353), + [anon_sym_remove] = ACTIONS(1353), + [anon_sym_reduce] = ACTIONS(1353), + [anon_sym_select] = ACTIONS(1353), + [anon_sym_insert] = ACTIONS(1353), + [anon_sym_async] = ACTIONS(1353), [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(49), - [anon_sym_assert] = ACTIONS(51), - [anon_sym_assert_equal] = ACTIONS(51), - [anon_sym_download] = ACTIONS(51), - [anon_sym_help] = ACTIONS(51), - [anon_sym_length] = ACTIONS(51), - [anon_sym_output] = ACTIONS(51), - [anon_sym_output_error] = ACTIONS(51), - [anon_sym_type] = ACTIONS(51), - [anon_sym_append] = ACTIONS(51), - [anon_sym_metadata] = ACTIONS(51), - [anon_sym_move] = ACTIONS(51), - [anon_sym_read] = ACTIONS(51), - [anon_sym_workdir] = ACTIONS(51), - [anon_sym_write] = ACTIONS(51), - [anon_sym_from_json] = ACTIONS(51), - [anon_sym_to_json] = ACTIONS(51), - [anon_sym_to_string] = ACTIONS(51), - [anon_sym_to_float] = ACTIONS(51), - [anon_sym_bash] = ACTIONS(51), - [anon_sym_fish] = ACTIONS(51), - [anon_sym_raw] = ACTIONS(51), - [anon_sym_sh] = ACTIONS(51), - [anon_sym_zsh] = ACTIONS(51), - [anon_sym_random] = ACTIONS(51), - [anon_sym_random_boolean] = ACTIONS(51), - [anon_sym_random_float] = ACTIONS(51), - [anon_sym_random_integer] = ACTIONS(51), - [anon_sym_columns] = ACTIONS(51), - [anon_sym_rows] = ACTIONS(51), - [anon_sym_reverse] = ACTIONS(51), + [anon_sym_table] = ACTIONS(1357), + [anon_sym_assert] = ACTIONS(1359), + [anon_sym_assert_equal] = ACTIONS(1359), + [anon_sym_download] = ACTIONS(1359), + [anon_sym_help] = ACTIONS(1359), + [anon_sym_length] = ACTIONS(1359), + [anon_sym_output] = ACTIONS(1359), + [anon_sym_output_error] = ACTIONS(1359), + [anon_sym_type] = ACTIONS(1359), + [anon_sym_append] = ACTIONS(1359), + [anon_sym_metadata] = ACTIONS(1359), + [anon_sym_move] = ACTIONS(1359), + [anon_sym_read] = ACTIONS(1359), + [anon_sym_workdir] = ACTIONS(1359), + [anon_sym_write] = ACTIONS(1359), + [anon_sym_from_json] = ACTIONS(1359), + [anon_sym_to_json] = ACTIONS(1359), + [anon_sym_to_string] = ACTIONS(1359), + [anon_sym_to_float] = ACTIONS(1359), + [anon_sym_bash] = ACTIONS(1359), + [anon_sym_fish] = ACTIONS(1359), + [anon_sym_raw] = ACTIONS(1359), + [anon_sym_sh] = ACTIONS(1359), + [anon_sym_zsh] = ACTIONS(1359), + [anon_sym_random] = ACTIONS(1359), + [anon_sym_random_boolean] = ACTIONS(1359), + [anon_sym_random_float] = ACTIONS(1359), + [anon_sym_random_integer] = ACTIONS(1359), + [anon_sym_columns] = ACTIONS(1359), + [anon_sym_rows] = ACTIONS(1359), + [anon_sym_reverse] = ACTIONS(1359), }, [514] = { - [sym_block] = STATE(765), - [sym_statement] = STATE(22), - [sym_expression] = STATE(685), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(576), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(647), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1984), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(302), - [aux_sym_block_repeat1] = STATE(22), - [sym_identifier] = ACTIONS(229), + [sym_expression] = STATE(594), + [sym__expression_kind] = STATE(585), + [aux_sym__expression_list] = STATE(514), + [sym_value] = STATE(585), + [sym_boolean] = STATE(586), + [sym_list] = STATE(586), + [sym_map] = STATE(586), + [sym_index] = STATE(585), + [sym_math] = STATE(585), + [sym_logic] = STATE(585), + [sym_identifier_list] = STATE(1105), + [sym_table] = STATE(586), + [sym_function] = STATE(586), + [sym_function_call] = STATE(585), + [sym__context_defined_function] = STATE(587), + [sym_built_in_function] = STATE(587), + [sym__built_in_function_name] = STATE(372), + [sym_identifier] = ACTIONS(2097), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_if] = ACTIONS(245), - [anon_sym_match] = ACTIONS(247), - [anon_sym_EQ_GT] = ACTIONS(249), - [anon_sym_while] = ACTIONS(251), - [anon_sym_for] = ACTIONS(253), - [anon_sym_asyncfor] = ACTIONS(255), - [anon_sym_transform] = ACTIONS(257), - [anon_sym_filter] = ACTIONS(259), - [anon_sym_find] = ACTIONS(261), - [anon_sym_remove] = ACTIONS(263), - [anon_sym_reduce] = ACTIONS(265), - [anon_sym_select] = ACTIONS(267), - [anon_sym_insert] = ACTIONS(269), - [anon_sym_async] = ACTIONS(271), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(275), - [anon_sym_assert_equal] = ACTIONS(275), - [anon_sym_download] = ACTIONS(275), - [anon_sym_help] = ACTIONS(275), - [anon_sym_length] = ACTIONS(275), - [anon_sym_output] = ACTIONS(275), - [anon_sym_output_error] = ACTIONS(275), - [anon_sym_type] = ACTIONS(275), - [anon_sym_append] = ACTIONS(275), - [anon_sym_metadata] = ACTIONS(275), - [anon_sym_move] = ACTIONS(275), - [anon_sym_read] = ACTIONS(275), - [anon_sym_workdir] = ACTIONS(275), - [anon_sym_write] = ACTIONS(275), - [anon_sym_from_json] = ACTIONS(275), - [anon_sym_to_json] = ACTIONS(275), - [anon_sym_to_string] = ACTIONS(275), - [anon_sym_to_float] = ACTIONS(275), - [anon_sym_bash] = ACTIONS(275), - [anon_sym_fish] = ACTIONS(275), - [anon_sym_raw] = ACTIONS(275), - [anon_sym_sh] = ACTIONS(275), - [anon_sym_zsh] = ACTIONS(275), - [anon_sym_random] = ACTIONS(275), - [anon_sym_random_boolean] = ACTIONS(275), - [anon_sym_random_float] = ACTIONS(275), - [anon_sym_random_integer] = ACTIONS(275), - [anon_sym_columns] = ACTIONS(275), - [anon_sym_rows] = ACTIONS(275), - [anon_sym_reverse] = ACTIONS(275), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_LPAREN] = ACTIONS(2103), + [anon_sym_RPAREN] = ACTIONS(1361), + [sym_integer] = ACTIONS(2106), + [sym_float] = ACTIONS(2109), + [sym_string] = ACTIONS(2109), + [anon_sym_true] = ACTIONS(2112), + [anon_sym_false] = ACTIONS(2112), + [anon_sym_LBRACK] = ACTIONS(2115), + [anon_sym_COLON] = ACTIONS(1361), + [anon_sym_DOT_DOT] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1361), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_SLASH] = ACTIONS(1361), + [anon_sym_PERCENT] = ACTIONS(1361), + [anon_sym_EQ_EQ] = ACTIONS(1361), + [anon_sym_BANG_EQ] = ACTIONS(1361), + [anon_sym_AMP_AMP] = ACTIONS(1361), + [anon_sym_PIPE_PIPE] = ACTIONS(1361), + [anon_sym_GT] = ACTIONS(1384), + [anon_sym_LT] = ACTIONS(1384), + [anon_sym_GT_EQ] = ACTIONS(1361), + [anon_sym_LT_EQ] = ACTIONS(1361), + [anon_sym_EQ_GT] = ACTIONS(2118), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_table] = ACTIONS(2121), + [anon_sym_assert] = ACTIONS(2124), + [anon_sym_assert_equal] = ACTIONS(2124), + [anon_sym_download] = ACTIONS(2124), + [anon_sym_help] = ACTIONS(2124), + [anon_sym_length] = ACTIONS(2124), + [anon_sym_output] = ACTIONS(2124), + [anon_sym_output_error] = ACTIONS(2124), + [anon_sym_type] = ACTIONS(2124), + [anon_sym_append] = ACTIONS(2124), + [anon_sym_metadata] = ACTIONS(2124), + [anon_sym_move] = ACTIONS(2124), + [anon_sym_read] = ACTIONS(2124), + [anon_sym_workdir] = ACTIONS(2124), + [anon_sym_write] = ACTIONS(2124), + [anon_sym_from_json] = ACTIONS(2124), + [anon_sym_to_json] = ACTIONS(2124), + [anon_sym_to_string] = ACTIONS(2124), + [anon_sym_to_float] = ACTIONS(2124), + [anon_sym_bash] = ACTIONS(2124), + [anon_sym_fish] = ACTIONS(2124), + [anon_sym_raw] = ACTIONS(2124), + [anon_sym_sh] = ACTIONS(2124), + [anon_sym_zsh] = ACTIONS(2124), + [anon_sym_random] = ACTIONS(2124), + [anon_sym_random_boolean] = ACTIONS(2124), + [anon_sym_random_float] = ACTIONS(2124), + [anon_sym_random_integer] = ACTIONS(2124), + [anon_sym_columns] = ACTIONS(2124), + [anon_sym_rows] = ACTIONS(2124), + [anon_sym_reverse] = ACTIONS(2124), }, [515] = { - [sym_block] = STATE(861), - [sym_statement] = STATE(39), - [sym_expression] = STATE(756), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(657), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(627), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1752), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(338), - [aux_sym_block_repeat1] = STATE(39), - [sym_identifier] = ACTIONS(875), + [sym_expression] = STATE(963), + [sym__expression_kind] = STATE(919), + [sym_value] = STATE(919), + [sym_boolean] = STATE(936), + [sym_list] = STATE(936), + [sym_map] = STATE(936), + [sym_index] = STATE(919), + [sym_math] = STATE(919), + [sym_logic] = STATE(919), + [sym_identifier_list] = STATE(1086), + [sym_table] = STATE(936), + [sym_function] = STATE(936), + [sym_function_call] = STATE(919), + [sym__context_defined_function] = STATE(934), + [sym_built_in_function] = STATE(934), + [sym__built_in_function_name] = STATE(550), + [aux_sym_match_repeat1] = STATE(509), + [sym_identifier] = ACTIONS(1339), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(877), - [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(245), - [anon_sym_match] = ACTIONS(881), - [anon_sym_EQ_GT] = ACTIONS(883), - [anon_sym_while] = ACTIONS(885), - [anon_sym_for] = ACTIONS(887), - [anon_sym_asyncfor] = ACTIONS(889), - [anon_sym_transform] = ACTIONS(891), - [anon_sym_filter] = ACTIONS(893), - [anon_sym_find] = ACTIONS(895), - [anon_sym_remove] = ACTIONS(897), - [anon_sym_reduce] = ACTIONS(899), - [anon_sym_select] = ACTIONS(901), - [anon_sym_insert] = ACTIONS(903), - [anon_sym_async] = ACTIONS(905), + [anon_sym_LBRACE] = ACTIONS(1341), + [anon_sym_RBRACE] = ACTIONS(1337), + [anon_sym_SEMI] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(1343), + [anon_sym_COMMA] = ACTIONS(1337), + [sym_integer] = ACTIONS(1345), + [sym_float] = ACTIONS(1347), + [sym_string] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1349), + [anon_sym_false] = ACTIONS(1349), + [anon_sym_LBRACK] = ACTIONS(1351), + [anon_sym_if] = ACTIONS(1353), + [anon_sym_match] = ACTIONS(1353), + [anon_sym_EQ_GT] = ACTIONS(1355), + [anon_sym_while] = ACTIONS(1353), + [anon_sym_for] = ACTIONS(1353), + [anon_sym_asyncfor] = ACTIONS(1337), + [anon_sym_transform] = ACTIONS(1353), + [anon_sym_filter] = ACTIONS(1353), + [anon_sym_find] = ACTIONS(1353), + [anon_sym_remove] = ACTIONS(1353), + [anon_sym_reduce] = ACTIONS(1353), + [anon_sym_select] = ACTIONS(1353), + [anon_sym_insert] = ACTIONS(1353), + [anon_sym_async] = ACTIONS(1353), [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(907), - [anon_sym_assert] = ACTIONS(909), - [anon_sym_assert_equal] = ACTIONS(909), - [anon_sym_download] = ACTIONS(909), - [anon_sym_help] = ACTIONS(909), - [anon_sym_length] = ACTIONS(909), - [anon_sym_output] = ACTIONS(909), - [anon_sym_output_error] = ACTIONS(909), - [anon_sym_type] = ACTIONS(909), - [anon_sym_append] = ACTIONS(909), - [anon_sym_metadata] = ACTIONS(909), - [anon_sym_move] = ACTIONS(909), - [anon_sym_read] = ACTIONS(909), - [anon_sym_workdir] = ACTIONS(909), - [anon_sym_write] = ACTIONS(909), - [anon_sym_from_json] = ACTIONS(909), - [anon_sym_to_json] = ACTIONS(909), - [anon_sym_to_string] = ACTIONS(909), - [anon_sym_to_float] = ACTIONS(909), - [anon_sym_bash] = ACTIONS(909), - [anon_sym_fish] = ACTIONS(909), - [anon_sym_raw] = ACTIONS(909), - [anon_sym_sh] = ACTIONS(909), - [anon_sym_zsh] = ACTIONS(909), - [anon_sym_random] = ACTIONS(909), - [anon_sym_random_boolean] = ACTIONS(909), - [anon_sym_random_float] = ACTIONS(909), - [anon_sym_random_integer] = ACTIONS(909), - [anon_sym_columns] = ACTIONS(909), - [anon_sym_rows] = ACTIONS(909), - [anon_sym_reverse] = ACTIONS(909), + [anon_sym_table] = ACTIONS(1357), + [anon_sym_assert] = ACTIONS(1359), + [anon_sym_assert_equal] = ACTIONS(1359), + [anon_sym_download] = ACTIONS(1359), + [anon_sym_help] = ACTIONS(1359), + [anon_sym_length] = ACTIONS(1359), + [anon_sym_output] = ACTIONS(1359), + [anon_sym_output_error] = ACTIONS(1359), + [anon_sym_type] = ACTIONS(1359), + [anon_sym_append] = ACTIONS(1359), + [anon_sym_metadata] = ACTIONS(1359), + [anon_sym_move] = ACTIONS(1359), + [anon_sym_read] = ACTIONS(1359), + [anon_sym_workdir] = ACTIONS(1359), + [anon_sym_write] = ACTIONS(1359), + [anon_sym_from_json] = ACTIONS(1359), + [anon_sym_to_json] = ACTIONS(1359), + [anon_sym_to_string] = ACTIONS(1359), + [anon_sym_to_float] = ACTIONS(1359), + [anon_sym_bash] = ACTIONS(1359), + [anon_sym_fish] = ACTIONS(1359), + [anon_sym_raw] = ACTIONS(1359), + [anon_sym_sh] = ACTIONS(1359), + [anon_sym_zsh] = ACTIONS(1359), + [anon_sym_random] = ACTIONS(1359), + [anon_sym_random_boolean] = ACTIONS(1359), + [anon_sym_random_float] = ACTIONS(1359), + [anon_sym_random_integer] = ACTIONS(1359), + [anon_sym_columns] = ACTIONS(1359), + [anon_sym_rows] = ACTIONS(1359), + [anon_sym_reverse] = ACTIONS(1359), }, [516] = { - [sym_block] = STATE(1025), - [sym_statement] = STATE(358), - [sym_expression] = STATE(859), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(754), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_assignment] = STATE(1023), - [sym_if_else] = STATE(1023), - [sym_if] = STATE(985), - [sym_match] = STATE(1023), - [sym_while] = STATE(1023), - [sym_for] = STATE(1023), - [sym_transform] = STATE(1023), - [sym_filter] = STATE(1023), - [sym_find] = STATE(1023), - [sym_remove] = STATE(1023), - [sym_reduce] = STATE(1023), - [sym_select] = STATE(1023), - [sym_insert] = STATE(1023), - [sym_async] = STATE(1023), - [sym_identifier_list] = STATE(1841), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(315), - [aux_sym_block_repeat1] = STATE(358), - [sym_identifier] = ACTIONS(1566), + [sym_math_operator] = STATE(851), + [sym_logic_operator] = STATE(857), + [ts_builtin_sym_end] = ACTIONS(2041), + [sym_identifier] = ACTIONS(2043), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_if] = ACTIONS(1570), - [anon_sym_match] = ACTIONS(1572), - [anon_sym_EQ_GT] = ACTIONS(631), - [anon_sym_while] = ACTIONS(1574), - [anon_sym_for] = ACTIONS(1576), - [anon_sym_asyncfor] = ACTIONS(1578), - [anon_sym_transform] = ACTIONS(1580), - [anon_sym_filter] = ACTIONS(1582), - [anon_sym_find] = ACTIONS(1584), - [anon_sym_remove] = ACTIONS(1586), - [anon_sym_reduce] = ACTIONS(1588), - [anon_sym_select] = ACTIONS(1590), - [anon_sym_insert] = ACTIONS(651), - [anon_sym_async] = ACTIONS(1592), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(655), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_assert_equal] = ACTIONS(657), - [anon_sym_download] = ACTIONS(657), - [anon_sym_help] = ACTIONS(657), - [anon_sym_length] = ACTIONS(657), - [anon_sym_output] = ACTIONS(657), - [anon_sym_output_error] = ACTIONS(657), - [anon_sym_type] = ACTIONS(657), - [anon_sym_append] = ACTIONS(657), - [anon_sym_metadata] = ACTIONS(657), - [anon_sym_move] = ACTIONS(657), - [anon_sym_read] = ACTIONS(657), - [anon_sym_workdir] = ACTIONS(657), - [anon_sym_write] = ACTIONS(657), - [anon_sym_from_json] = ACTIONS(657), - [anon_sym_to_json] = ACTIONS(657), - [anon_sym_to_string] = ACTIONS(657), - [anon_sym_to_float] = ACTIONS(657), - [anon_sym_bash] = ACTIONS(657), - [anon_sym_fish] = ACTIONS(657), - [anon_sym_raw] = ACTIONS(657), - [anon_sym_sh] = ACTIONS(657), - [anon_sym_zsh] = ACTIONS(657), - [anon_sym_random] = ACTIONS(657), - [anon_sym_random_boolean] = ACTIONS(657), - [anon_sym_random_float] = ACTIONS(657), - [anon_sym_random_integer] = ACTIONS(657), - [anon_sym_columns] = ACTIONS(657), - [anon_sym_rows] = ACTIONS(657), - [anon_sym_reverse] = ACTIONS(657), + [anon_sym_LBRACE] = ACTIONS(2041), + [anon_sym_RBRACE] = ACTIONS(2041), + [anon_sym_SEMI] = ACTIONS(2181), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_RPAREN] = ACTIONS(2041), + [sym_integer] = ACTIONS(2043), + [sym_float] = ACTIONS(2041), + [sym_string] = ACTIONS(2041), + [anon_sym_true] = ACTIONS(2043), + [anon_sym_false] = ACTIONS(2043), + [anon_sym_LBRACK] = ACTIONS(2041), + [anon_sym_COLON] = ACTIONS(869), + [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(2043), + [anon_sym_match] = ACTIONS(2043), + [anon_sym_EQ_GT] = ACTIONS(2041), + [anon_sym_while] = ACTIONS(2043), + [anon_sym_for] = ACTIONS(2043), + [anon_sym_asyncfor] = ACTIONS(2041), + [anon_sym_transform] = ACTIONS(2043), + [anon_sym_filter] = ACTIONS(2043), + [anon_sym_find] = ACTIONS(2043), + [anon_sym_remove] = ACTIONS(2043), + [anon_sym_reduce] = ACTIONS(2043), + [anon_sym_select] = ACTIONS(2043), + [anon_sym_insert] = ACTIONS(2043), + [anon_sym_async] = ACTIONS(2043), + [anon_sym_PIPE] = ACTIONS(2043), + [anon_sym_table] = ACTIONS(2043), + [anon_sym_assert] = ACTIONS(2043), + [anon_sym_assert_equal] = ACTIONS(2043), + [anon_sym_download] = ACTIONS(2043), + [anon_sym_help] = ACTIONS(2043), + [anon_sym_length] = ACTIONS(2043), + [anon_sym_output] = ACTIONS(2043), + [anon_sym_output_error] = ACTIONS(2043), + [anon_sym_type] = ACTIONS(2043), + [anon_sym_append] = ACTIONS(2043), + [anon_sym_metadata] = ACTIONS(2043), + [anon_sym_move] = ACTIONS(2043), + [anon_sym_read] = ACTIONS(2043), + [anon_sym_workdir] = ACTIONS(2043), + [anon_sym_write] = ACTIONS(2043), + [anon_sym_from_json] = ACTIONS(2043), + [anon_sym_to_json] = ACTIONS(2043), + [anon_sym_to_string] = ACTIONS(2043), + [anon_sym_to_float] = ACTIONS(2043), + [anon_sym_bash] = ACTIONS(2043), + [anon_sym_fish] = ACTIONS(2043), + [anon_sym_raw] = ACTIONS(2043), + [anon_sym_sh] = ACTIONS(2043), + [anon_sym_zsh] = ACTIONS(2043), + [anon_sym_random] = ACTIONS(2043), + [anon_sym_random_boolean] = ACTIONS(2043), + [anon_sym_random_float] = ACTIONS(2043), + [anon_sym_random_integer] = ACTIONS(2043), + [anon_sym_columns] = ACTIONS(2043), + [anon_sym_rows] = ACTIONS(2043), + [anon_sym_reverse] = ACTIONS(2043), }, [517] = { - [sym_block] = STATE(1017), - [sym_statement] = STATE(352), - [sym_expression] = STATE(877), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(782), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_assignment] = STATE(1023), - [sym_if_else] = STATE(1023), - [sym_if] = STATE(978), - [sym_match] = STATE(1023), - [sym_while] = STATE(1023), - [sym_for] = STATE(1023), - [sym_transform] = STATE(1023), - [sym_filter] = STATE(1023), - [sym_find] = STATE(1023), - [sym_remove] = STATE(1023), - [sym_reduce] = STATE(1023), - [sym_select] = STATE(1023), - [sym_insert] = STATE(1023), - [sym_async] = STATE(1023), - [sym_identifier_list] = STATE(1926), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(351), - [aux_sym_block_repeat1] = STATE(352), - [sym_identifier] = ACTIONS(1639), + [sym_math_operator] = STATE(851), + [sym_logic_operator] = STATE(857), + [ts_builtin_sym_end] = ACTIONS(2075), + [sym_identifier] = ACTIONS(2077), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(1641), - [anon_sym_EQ_GT] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1643), - [anon_sym_for] = ACTIONS(1645), - [anon_sym_asyncfor] = ACTIONS(1647), - [anon_sym_transform] = ACTIONS(1649), - [anon_sym_filter] = ACTIONS(1651), - [anon_sym_find] = ACTIONS(1653), - [anon_sym_remove] = ACTIONS(1655), - [anon_sym_reduce] = ACTIONS(1657), - [anon_sym_select] = ACTIONS(1659), - [anon_sym_insert] = ACTIONS(1308), - [anon_sym_async] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(1312), - [anon_sym_assert] = ACTIONS(1314), - [anon_sym_assert_equal] = ACTIONS(1314), - [anon_sym_download] = ACTIONS(1314), - [anon_sym_help] = ACTIONS(1314), - [anon_sym_length] = ACTIONS(1314), - [anon_sym_output] = ACTIONS(1314), - [anon_sym_output_error] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_append] = ACTIONS(1314), - [anon_sym_metadata] = ACTIONS(1314), - [anon_sym_move] = ACTIONS(1314), - [anon_sym_read] = ACTIONS(1314), - [anon_sym_workdir] = ACTIONS(1314), - [anon_sym_write] = ACTIONS(1314), - [anon_sym_from_json] = ACTIONS(1314), - [anon_sym_to_json] = ACTIONS(1314), - [anon_sym_to_string] = ACTIONS(1314), - [anon_sym_to_float] = ACTIONS(1314), - [anon_sym_bash] = ACTIONS(1314), - [anon_sym_fish] = ACTIONS(1314), - [anon_sym_raw] = ACTIONS(1314), - [anon_sym_sh] = ACTIONS(1314), - [anon_sym_zsh] = ACTIONS(1314), - [anon_sym_random] = ACTIONS(1314), - [anon_sym_random_boolean] = ACTIONS(1314), - [anon_sym_random_float] = ACTIONS(1314), - [anon_sym_random_integer] = ACTIONS(1314), - [anon_sym_columns] = ACTIONS(1314), - [anon_sym_rows] = ACTIONS(1314), - [anon_sym_reverse] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(2075), + [anon_sym_RBRACE] = ACTIONS(2075), + [anon_sym_SEMI] = ACTIONS(2075), + [anon_sym_LPAREN] = ACTIONS(2075), + [anon_sym_RPAREN] = ACTIONS(2075), + [sym_integer] = ACTIONS(2077), + [sym_float] = ACTIONS(2075), + [sym_string] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_LBRACK] = ACTIONS(2075), + [anon_sym_COLON] = ACTIONS(869), + [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(2077), + [anon_sym_match] = ACTIONS(2077), + [anon_sym_EQ_GT] = ACTIONS(2075), + [anon_sym_while] = ACTIONS(2077), + [anon_sym_for] = ACTIONS(2077), + [anon_sym_asyncfor] = ACTIONS(2075), + [anon_sym_transform] = ACTIONS(2077), + [anon_sym_filter] = ACTIONS(2077), + [anon_sym_find] = ACTIONS(2077), + [anon_sym_remove] = ACTIONS(2077), + [anon_sym_reduce] = ACTIONS(2077), + [anon_sym_select] = ACTIONS(2077), + [anon_sym_insert] = ACTIONS(2077), + [anon_sym_async] = ACTIONS(2077), + [anon_sym_PIPE] = ACTIONS(2077), + [anon_sym_table] = ACTIONS(2077), + [anon_sym_assert] = ACTIONS(2077), + [anon_sym_assert_equal] = ACTIONS(2077), + [anon_sym_download] = ACTIONS(2077), + [anon_sym_help] = ACTIONS(2077), + [anon_sym_length] = ACTIONS(2077), + [anon_sym_output] = ACTIONS(2077), + [anon_sym_output_error] = ACTIONS(2077), + [anon_sym_type] = ACTIONS(2077), + [anon_sym_append] = ACTIONS(2077), + [anon_sym_metadata] = ACTIONS(2077), + [anon_sym_move] = ACTIONS(2077), + [anon_sym_read] = ACTIONS(2077), + [anon_sym_workdir] = ACTIONS(2077), + [anon_sym_write] = ACTIONS(2077), + [anon_sym_from_json] = ACTIONS(2077), + [anon_sym_to_json] = ACTIONS(2077), + [anon_sym_to_string] = ACTIONS(2077), + [anon_sym_to_float] = ACTIONS(2077), + [anon_sym_bash] = ACTIONS(2077), + [anon_sym_fish] = ACTIONS(2077), + [anon_sym_raw] = ACTIONS(2077), + [anon_sym_sh] = ACTIONS(2077), + [anon_sym_zsh] = ACTIONS(2077), + [anon_sym_random] = ACTIONS(2077), + [anon_sym_random_boolean] = ACTIONS(2077), + [anon_sym_random_float] = ACTIONS(2077), + [anon_sym_random_integer] = ACTIONS(2077), + [anon_sym_columns] = ACTIONS(2077), + [anon_sym_rows] = ACTIONS(2077), + [anon_sym_reverse] = ACTIONS(2077), }, [518] = { - [sym_block] = STATE(604), - [sym_statement] = STATE(12), - [sym_expression] = STATE(583), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_logic] = STATE(631), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(567), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(2030), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(271), - [aux_sym_block_repeat1] = STATE(12), - [sym_identifier] = ACTIONS(55), + [sym_math_operator] = STATE(851), + [sym_logic_operator] = STATE(857), + [ts_builtin_sym_end] = ACTIONS(2067), + [sym_identifier] = ACTIONS(2069), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(59), - [sym_integer] = ACTIONS(61), - [sym_float] = ACTIONS(63), - [sym_string] = ACTIONS(63), - [anon_sym_true] = ACTIONS(65), - [anon_sym_false] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(67), - [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_asyncfor] = ACTIONS(127), - [anon_sym_transform] = ACTIONS(129), - [anon_sym_filter] = ACTIONS(131), - [anon_sym_find] = ACTIONS(133), - [anon_sym_remove] = ACTIONS(135), - [anon_sym_reduce] = ACTIONS(137), - [anon_sym_select] = ACTIONS(139), - [anon_sym_insert] = ACTIONS(141), - [anon_sym_async] = ACTIONS(143), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(147), - [anon_sym_assert_equal] = ACTIONS(147), - [anon_sym_download] = ACTIONS(147), - [anon_sym_help] = ACTIONS(147), - [anon_sym_length] = ACTIONS(147), - [anon_sym_output] = ACTIONS(147), - [anon_sym_output_error] = ACTIONS(147), - [anon_sym_type] = ACTIONS(147), - [anon_sym_append] = ACTIONS(147), - [anon_sym_metadata] = ACTIONS(147), - [anon_sym_move] = ACTIONS(147), - [anon_sym_read] = ACTIONS(147), - [anon_sym_workdir] = ACTIONS(147), - [anon_sym_write] = ACTIONS(147), - [anon_sym_from_json] = ACTIONS(147), - [anon_sym_to_json] = ACTIONS(147), - [anon_sym_to_string] = ACTIONS(147), - [anon_sym_to_float] = ACTIONS(147), - [anon_sym_bash] = ACTIONS(147), - [anon_sym_fish] = ACTIONS(147), - [anon_sym_raw] = ACTIONS(147), - [anon_sym_sh] = ACTIONS(147), - [anon_sym_zsh] = ACTIONS(147), - [anon_sym_random] = ACTIONS(147), - [anon_sym_random_boolean] = ACTIONS(147), - [anon_sym_random_float] = ACTIONS(147), - [anon_sym_random_integer] = ACTIONS(147), - [anon_sym_columns] = ACTIONS(147), - [anon_sym_rows] = ACTIONS(147), - [anon_sym_reverse] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_RBRACE] = ACTIONS(2067), + [anon_sym_SEMI] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_RPAREN] = ACTIONS(2067), + [sym_integer] = ACTIONS(2069), + [sym_float] = ACTIONS(2067), + [sym_string] = ACTIONS(2067), + [anon_sym_true] = ACTIONS(2069), + [anon_sym_false] = ACTIONS(2069), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_COLON] = ACTIONS(2067), + [anon_sym_PLUS] = ACTIONS(2067), + [anon_sym_DASH] = ACTIONS(2069), + [anon_sym_STAR] = ACTIONS(2067), + [anon_sym_SLASH] = ACTIONS(2067), + [anon_sym_PERCENT] = ACTIONS(2067), + [anon_sym_EQ_EQ] = ACTIONS(2067), + [anon_sym_BANG_EQ] = ACTIONS(2067), + [anon_sym_AMP_AMP] = ACTIONS(2067), + [anon_sym_PIPE_PIPE] = ACTIONS(2067), + [anon_sym_GT] = ACTIONS(2069), + [anon_sym_LT] = ACTIONS(2069), + [anon_sym_GT_EQ] = ACTIONS(2067), + [anon_sym_LT_EQ] = ACTIONS(2067), + [anon_sym_if] = ACTIONS(2069), + [anon_sym_match] = ACTIONS(2069), + [anon_sym_EQ_GT] = ACTIONS(2067), + [anon_sym_while] = ACTIONS(2069), + [anon_sym_for] = ACTIONS(2069), + [anon_sym_asyncfor] = ACTIONS(2067), + [anon_sym_transform] = ACTIONS(2069), + [anon_sym_filter] = ACTIONS(2069), + [anon_sym_find] = ACTIONS(2069), + [anon_sym_remove] = ACTIONS(2069), + [anon_sym_reduce] = ACTIONS(2069), + [anon_sym_select] = ACTIONS(2069), + [anon_sym_insert] = ACTIONS(2069), + [anon_sym_async] = ACTIONS(2069), + [anon_sym_PIPE] = ACTIONS(2069), + [anon_sym_table] = ACTIONS(2069), + [anon_sym_assert] = ACTIONS(2069), + [anon_sym_assert_equal] = ACTIONS(2069), + [anon_sym_download] = ACTIONS(2069), + [anon_sym_help] = ACTIONS(2069), + [anon_sym_length] = ACTIONS(2069), + [anon_sym_output] = ACTIONS(2069), + [anon_sym_output_error] = ACTIONS(2069), + [anon_sym_type] = ACTIONS(2069), + [anon_sym_append] = ACTIONS(2069), + [anon_sym_metadata] = ACTIONS(2069), + [anon_sym_move] = ACTIONS(2069), + [anon_sym_read] = ACTIONS(2069), + [anon_sym_workdir] = ACTIONS(2069), + [anon_sym_write] = ACTIONS(2069), + [anon_sym_from_json] = ACTIONS(2069), + [anon_sym_to_json] = ACTIONS(2069), + [anon_sym_to_string] = ACTIONS(2069), + [anon_sym_to_float] = ACTIONS(2069), + [anon_sym_bash] = ACTIONS(2069), + [anon_sym_fish] = ACTIONS(2069), + [anon_sym_raw] = ACTIONS(2069), + [anon_sym_sh] = ACTIONS(2069), + [anon_sym_zsh] = ACTIONS(2069), + [anon_sym_random] = ACTIONS(2069), + [anon_sym_random_boolean] = ACTIONS(2069), + [anon_sym_random_float] = ACTIONS(2069), + [anon_sym_random_integer] = ACTIONS(2069), + [anon_sym_columns] = ACTIONS(2069), + [anon_sym_rows] = ACTIONS(2069), + [anon_sym_reverse] = ACTIONS(2069), }, [519] = { - [sym_block] = STATE(1543), - [sym_statement] = STATE(253), - [sym_expression] = STATE(853), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(776), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(710), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1823), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(366), - [aux_sym_block_repeat1] = STATE(253), - [sym_identifier] = ACTIONS(1436), + [sym_expression] = STATE(969), + [sym__expression_kind] = STATE(919), + [sym_value] = STATE(919), + [sym_boolean] = STATE(936), + [sym_list] = STATE(936), + [sym_map] = STATE(936), + [sym_index] = STATE(919), + [sym_math] = STATE(919), + [sym_math_operator] = STATE(749), + [sym_logic] = STATE(919), + [sym_logic_operator] = STATE(748), + [sym_identifier_list] = STATE(1086), + [sym_table] = STATE(936), + [sym_function] = STATE(936), + [sym_function_call] = STATE(919), + [sym__context_defined_function] = STATE(934), + [sym_built_in_function] = STATE(934), + [sym__built_in_function_name] = STATE(550), + [aux_sym_match_repeat1] = STATE(446), + [sym_identifier] = ACTIONS(1339), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2164), - [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(843), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_EQ_GT] = ACTIONS(1442), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_for] = ACTIONS(1446), - [anon_sym_asyncfor] = ACTIONS(1448), - [anon_sym_transform] = ACTIONS(1450), - [anon_sym_filter] = ACTIONS(1452), - [anon_sym_find] = ACTIONS(1454), - [anon_sym_remove] = ACTIONS(1456), - [anon_sym_reduce] = ACTIONS(1458), - [anon_sym_select] = ACTIONS(1460), - [anon_sym_insert] = ACTIONS(1462), - [anon_sym_async] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(1466), - [anon_sym_assert] = ACTIONS(1468), - [anon_sym_assert_equal] = ACTIONS(1468), - [anon_sym_download] = ACTIONS(1468), - [anon_sym_help] = ACTIONS(1468), - [anon_sym_length] = ACTIONS(1468), - [anon_sym_output] = ACTIONS(1468), - [anon_sym_output_error] = ACTIONS(1468), - [anon_sym_type] = ACTIONS(1468), - [anon_sym_append] = ACTIONS(1468), - [anon_sym_metadata] = ACTIONS(1468), - [anon_sym_move] = ACTIONS(1468), - [anon_sym_read] = ACTIONS(1468), - [anon_sym_workdir] = ACTIONS(1468), - [anon_sym_write] = ACTIONS(1468), - [anon_sym_from_json] = ACTIONS(1468), - [anon_sym_to_json] = ACTIONS(1468), - [anon_sym_to_string] = ACTIONS(1468), - [anon_sym_to_float] = ACTIONS(1468), - [anon_sym_bash] = ACTIONS(1468), - [anon_sym_fish] = ACTIONS(1468), - [anon_sym_raw] = ACTIONS(1468), - [anon_sym_sh] = ACTIONS(1468), - [anon_sym_zsh] = ACTIONS(1468), - [anon_sym_random] = ACTIONS(1468), - [anon_sym_random_boolean] = ACTIONS(1468), - [anon_sym_random_float] = ACTIONS(1468), - [anon_sym_random_integer] = ACTIONS(1468), - [anon_sym_columns] = ACTIONS(1468), - [anon_sym_rows] = ACTIONS(1468), - [anon_sym_reverse] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1341), + [anon_sym_LPAREN] = ACTIONS(1343), + [sym_integer] = ACTIONS(1345), + [sym_float] = ACTIONS(1347), + [sym_string] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1349), + [anon_sym_false] = ACTIONS(1349), + [anon_sym_LBRACK] = ACTIONS(1351), + [anon_sym_COLON] = ACTIONS(2287), + [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(1355), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1357), + [anon_sym_assert] = ACTIONS(1359), + [anon_sym_assert_equal] = ACTIONS(1359), + [anon_sym_download] = ACTIONS(1359), + [anon_sym_help] = ACTIONS(1359), + [anon_sym_length] = ACTIONS(1359), + [anon_sym_output] = ACTIONS(1359), + [anon_sym_output_error] = ACTIONS(1359), + [anon_sym_type] = ACTIONS(1359), + [anon_sym_append] = ACTIONS(1359), + [anon_sym_metadata] = ACTIONS(1359), + [anon_sym_move] = ACTIONS(1359), + [anon_sym_read] = ACTIONS(1359), + [anon_sym_workdir] = ACTIONS(1359), + [anon_sym_write] = ACTIONS(1359), + [anon_sym_from_json] = ACTIONS(1359), + [anon_sym_to_json] = ACTIONS(1359), + [anon_sym_to_string] = ACTIONS(1359), + [anon_sym_to_float] = ACTIONS(1359), + [anon_sym_bash] = ACTIONS(1359), + [anon_sym_fish] = ACTIONS(1359), + [anon_sym_raw] = ACTIONS(1359), + [anon_sym_sh] = ACTIONS(1359), + [anon_sym_zsh] = ACTIONS(1359), + [anon_sym_random] = ACTIONS(1359), + [anon_sym_random_boolean] = ACTIONS(1359), + [anon_sym_random_float] = ACTIONS(1359), + [anon_sym_random_integer] = ACTIONS(1359), + [anon_sym_columns] = ACTIONS(1359), + [anon_sym_rows] = ACTIONS(1359), + [anon_sym_reverse] = ACTIONS(1359), }, [520] = { - [sym_block] = STATE(858), - [sym_statement] = STATE(46), - [sym_expression] = STATE(824), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(739), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(653), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [aux_sym_block_repeat1] = STATE(46), - [sym_identifier] = ACTIONS(1198), + [sym_expression] = STATE(965), + [sym__expression_kind] = STATE(919), + [sym_value] = STATE(919), + [sym_boolean] = STATE(936), + [sym_list] = STATE(936), + [sym_map] = STATE(936), + [sym_index] = STATE(919), + [sym_math] = STATE(919), + [sym_math_operator] = STATE(749), + [sym_logic] = STATE(919), + [sym_logic_operator] = STATE(748), + [sym_identifier_list] = STATE(1086), + [sym_table] = STATE(936), + [sym_function] = STATE(936), + [sym_function_call] = STATE(919), + [sym__context_defined_function] = STATE(934), + [sym_built_in_function] = STATE(934), + [sym__built_in_function_name] = STATE(550), + [aux_sym_match_repeat1] = STATE(178), + [sym_identifier] = ACTIONS(1339), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(877), - [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(627), - [anon_sym_match] = ACTIONS(1202), - [anon_sym_EQ_GT] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(1206), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_asyncfor] = ACTIONS(1210), - [anon_sym_transform] = ACTIONS(1212), - [anon_sym_filter] = ACTIONS(1214), - [anon_sym_find] = ACTIONS(1216), - [anon_sym_remove] = ACTIONS(1218), - [anon_sym_reduce] = ACTIONS(1220), - [anon_sym_select] = ACTIONS(1222), - [anon_sym_insert] = ACTIONS(1224), - [anon_sym_async] = ACTIONS(1226), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(1228), - [anon_sym_assert] = ACTIONS(1230), - [anon_sym_assert_equal] = ACTIONS(1230), - [anon_sym_download] = ACTIONS(1230), - [anon_sym_help] = ACTIONS(1230), - [anon_sym_length] = ACTIONS(1230), - [anon_sym_output] = ACTIONS(1230), - [anon_sym_output_error] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_append] = ACTIONS(1230), - [anon_sym_metadata] = ACTIONS(1230), - [anon_sym_move] = ACTIONS(1230), - [anon_sym_read] = ACTIONS(1230), - [anon_sym_workdir] = ACTIONS(1230), - [anon_sym_write] = ACTIONS(1230), - [anon_sym_from_json] = ACTIONS(1230), - [anon_sym_to_json] = ACTIONS(1230), - [anon_sym_to_string] = ACTIONS(1230), - [anon_sym_to_float] = ACTIONS(1230), - [anon_sym_bash] = ACTIONS(1230), - [anon_sym_fish] = ACTIONS(1230), - [anon_sym_raw] = ACTIONS(1230), - [anon_sym_sh] = ACTIONS(1230), - [anon_sym_zsh] = ACTIONS(1230), - [anon_sym_random] = ACTIONS(1230), - [anon_sym_random_boolean] = ACTIONS(1230), - [anon_sym_random_float] = ACTIONS(1230), - [anon_sym_random_integer] = ACTIONS(1230), - [anon_sym_columns] = ACTIONS(1230), - [anon_sym_rows] = ACTIONS(1230), - [anon_sym_reverse] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1341), + [anon_sym_LPAREN] = ACTIONS(1343), + [sym_integer] = ACTIONS(1345), + [sym_float] = ACTIONS(1347), + [sym_string] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1349), + [anon_sym_false] = ACTIONS(1349), + [anon_sym_LBRACK] = ACTIONS(1351), + [anon_sym_COLON] = ACTIONS(2287), + [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(1355), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1357), + [anon_sym_assert] = ACTIONS(1359), + [anon_sym_assert_equal] = ACTIONS(1359), + [anon_sym_download] = ACTIONS(1359), + [anon_sym_help] = ACTIONS(1359), + [anon_sym_length] = ACTIONS(1359), + [anon_sym_output] = ACTIONS(1359), + [anon_sym_output_error] = ACTIONS(1359), + [anon_sym_type] = ACTIONS(1359), + [anon_sym_append] = ACTIONS(1359), + [anon_sym_metadata] = ACTIONS(1359), + [anon_sym_move] = ACTIONS(1359), + [anon_sym_read] = ACTIONS(1359), + [anon_sym_workdir] = ACTIONS(1359), + [anon_sym_write] = ACTIONS(1359), + [anon_sym_from_json] = ACTIONS(1359), + [anon_sym_to_json] = ACTIONS(1359), + [anon_sym_to_string] = ACTIONS(1359), + [anon_sym_to_float] = ACTIONS(1359), + [anon_sym_bash] = ACTIONS(1359), + [anon_sym_fish] = ACTIONS(1359), + [anon_sym_raw] = ACTIONS(1359), + [anon_sym_sh] = ACTIONS(1359), + [anon_sym_zsh] = ACTIONS(1359), + [anon_sym_random] = ACTIONS(1359), + [anon_sym_random_boolean] = ACTIONS(1359), + [anon_sym_random_float] = ACTIONS(1359), + [anon_sym_random_integer] = ACTIONS(1359), + [anon_sym_columns] = ACTIONS(1359), + [anon_sym_rows] = ACTIONS(1359), + [anon_sym_reverse] = ACTIONS(1359), }, [521] = { - [sym_block] = STATE(1543), - [sym_statement] = STATE(258), - [sym_expression] = STATE(888), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(822), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(787), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(258), - [sym_identifier] = ACTIONS(1846), + [sym_math_operator] = STATE(851), + [sym_logic_operator] = STATE(857), + [ts_builtin_sym_end] = ACTIONS(2063), + [sym_identifier] = ACTIONS(2065), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2164), - [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(1284), - [anon_sym_match] = ACTIONS(1850), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(1852), - [anon_sym_for] = ACTIONS(1854), - [anon_sym_asyncfor] = ACTIONS(1856), - [anon_sym_transform] = ACTIONS(1858), - [anon_sym_filter] = ACTIONS(1860), - [anon_sym_find] = ACTIONS(1862), - [anon_sym_remove] = ACTIONS(1864), - [anon_sym_reduce] = ACTIONS(1866), - [anon_sym_select] = ACTIONS(1868), - [anon_sym_insert] = ACTIONS(43), - [anon_sym_async] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(49), - [anon_sym_assert] = ACTIONS(51), - [anon_sym_assert_equal] = ACTIONS(51), - [anon_sym_download] = ACTIONS(51), - [anon_sym_help] = ACTIONS(51), - [anon_sym_length] = ACTIONS(51), - [anon_sym_output] = ACTIONS(51), - [anon_sym_output_error] = ACTIONS(51), - [anon_sym_type] = ACTIONS(51), - [anon_sym_append] = ACTIONS(51), - [anon_sym_metadata] = ACTIONS(51), - [anon_sym_move] = ACTIONS(51), - [anon_sym_read] = ACTIONS(51), - [anon_sym_workdir] = ACTIONS(51), - [anon_sym_write] = ACTIONS(51), - [anon_sym_from_json] = ACTIONS(51), - [anon_sym_to_json] = ACTIONS(51), - [anon_sym_to_string] = ACTIONS(51), - [anon_sym_to_float] = ACTIONS(51), - [anon_sym_bash] = ACTIONS(51), - [anon_sym_fish] = ACTIONS(51), - [anon_sym_raw] = ACTIONS(51), - [anon_sym_sh] = ACTIONS(51), - [anon_sym_zsh] = ACTIONS(51), - [anon_sym_random] = ACTIONS(51), - [anon_sym_random_boolean] = ACTIONS(51), - [anon_sym_random_float] = ACTIONS(51), - [anon_sym_random_integer] = ACTIONS(51), - [anon_sym_columns] = ACTIONS(51), - [anon_sym_rows] = ACTIONS(51), - [anon_sym_reverse] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(2063), + [anon_sym_RBRACE] = ACTIONS(2063), + [anon_sym_SEMI] = ACTIONS(2063), + [anon_sym_LPAREN] = ACTIONS(2063), + [anon_sym_RPAREN] = ACTIONS(2063), + [sym_integer] = ACTIONS(2065), + [sym_float] = ACTIONS(2063), + [sym_string] = ACTIONS(2063), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_LBRACK] = ACTIONS(2063), + [anon_sym_COLON] = ACTIONS(2063), + [anon_sym_PLUS] = ACTIONS(2063), + [anon_sym_DASH] = ACTIONS(2065), + [anon_sym_STAR] = ACTIONS(2063), + [anon_sym_SLASH] = ACTIONS(2063), + [anon_sym_PERCENT] = ACTIONS(2063), + [anon_sym_EQ_EQ] = ACTIONS(2063), + [anon_sym_BANG_EQ] = ACTIONS(2063), + [anon_sym_AMP_AMP] = ACTIONS(2063), + [anon_sym_PIPE_PIPE] = ACTIONS(2063), + [anon_sym_GT] = ACTIONS(2065), + [anon_sym_LT] = ACTIONS(2065), + [anon_sym_GT_EQ] = ACTIONS(2063), + [anon_sym_LT_EQ] = ACTIONS(2063), + [anon_sym_if] = ACTIONS(2065), + [anon_sym_match] = ACTIONS(2065), + [anon_sym_EQ_GT] = ACTIONS(2063), + [anon_sym_while] = ACTIONS(2065), + [anon_sym_for] = ACTIONS(2065), + [anon_sym_asyncfor] = ACTIONS(2063), + [anon_sym_transform] = ACTIONS(2065), + [anon_sym_filter] = ACTIONS(2065), + [anon_sym_find] = ACTIONS(2065), + [anon_sym_remove] = ACTIONS(2065), + [anon_sym_reduce] = ACTIONS(2065), + [anon_sym_select] = ACTIONS(2065), + [anon_sym_insert] = ACTIONS(2065), + [anon_sym_async] = ACTIONS(2065), + [anon_sym_PIPE] = ACTIONS(2065), + [anon_sym_table] = ACTIONS(2065), + [anon_sym_assert] = ACTIONS(2065), + [anon_sym_assert_equal] = ACTIONS(2065), + [anon_sym_download] = ACTIONS(2065), + [anon_sym_help] = ACTIONS(2065), + [anon_sym_length] = ACTIONS(2065), + [anon_sym_output] = ACTIONS(2065), + [anon_sym_output_error] = ACTIONS(2065), + [anon_sym_type] = ACTIONS(2065), + [anon_sym_append] = ACTIONS(2065), + [anon_sym_metadata] = ACTIONS(2065), + [anon_sym_move] = ACTIONS(2065), + [anon_sym_read] = ACTIONS(2065), + [anon_sym_workdir] = ACTIONS(2065), + [anon_sym_write] = ACTIONS(2065), + [anon_sym_from_json] = ACTIONS(2065), + [anon_sym_to_json] = ACTIONS(2065), + [anon_sym_to_string] = ACTIONS(2065), + [anon_sym_to_float] = ACTIONS(2065), + [anon_sym_bash] = ACTIONS(2065), + [anon_sym_fish] = ACTIONS(2065), + [anon_sym_raw] = ACTIONS(2065), + [anon_sym_sh] = ACTIONS(2065), + [anon_sym_zsh] = ACTIONS(2065), + [anon_sym_random] = ACTIONS(2065), + [anon_sym_random_boolean] = ACTIONS(2065), + [anon_sym_random_float] = ACTIONS(2065), + [anon_sym_random_integer] = ACTIONS(2065), + [anon_sym_columns] = ACTIONS(2065), + [anon_sym_rows] = ACTIONS(2065), + [anon_sym_reverse] = ACTIONS(2065), }, [522] = { - [sym_block] = STATE(1004), - [sym_statement] = STATE(58), - [sym_expression] = STATE(824), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(739), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(653), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [aux_sym_block_repeat1] = STATE(58), - [sym_identifier] = ACTIONS(1198), + [sym_expression] = STATE(961), + [sym__expression_kind] = STATE(919), + [sym_value] = STATE(919), + [sym_boolean] = STATE(936), + [sym_list] = STATE(936), + [sym_map] = STATE(936), + [sym_index] = STATE(919), + [sym_math] = STATE(919), + [sym_math_operator] = STATE(749), + [sym_logic] = STATE(919), + [sym_logic_operator] = STATE(748), + [sym_identifier_list] = STATE(1086), + [sym_table] = STATE(936), + [sym_function] = STATE(936), + [sym_function_call] = STATE(919), + [sym__context_defined_function] = STATE(934), + [sym_built_in_function] = STATE(934), + [sym__built_in_function_name] = STATE(550), + [aux_sym_match_repeat1] = STATE(206), + [sym_identifier] = ACTIONS(1339), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3083), - [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(627), - [anon_sym_match] = ACTIONS(1202), - [anon_sym_EQ_GT] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(1206), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_asyncfor] = ACTIONS(1210), - [anon_sym_transform] = ACTIONS(1212), - [anon_sym_filter] = ACTIONS(1214), - [anon_sym_find] = ACTIONS(1216), - [anon_sym_remove] = ACTIONS(1218), - [anon_sym_reduce] = ACTIONS(1220), - [anon_sym_select] = ACTIONS(1222), - [anon_sym_insert] = ACTIONS(1224), - [anon_sym_async] = ACTIONS(1226), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(1228), - [anon_sym_assert] = ACTIONS(1230), - [anon_sym_assert_equal] = ACTIONS(1230), - [anon_sym_download] = ACTIONS(1230), - [anon_sym_help] = ACTIONS(1230), - [anon_sym_length] = ACTIONS(1230), - [anon_sym_output] = ACTIONS(1230), - [anon_sym_output_error] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_append] = ACTIONS(1230), - [anon_sym_metadata] = ACTIONS(1230), - [anon_sym_move] = ACTIONS(1230), - [anon_sym_read] = ACTIONS(1230), - [anon_sym_workdir] = ACTIONS(1230), - [anon_sym_write] = ACTIONS(1230), - [anon_sym_from_json] = ACTIONS(1230), - [anon_sym_to_json] = ACTIONS(1230), - [anon_sym_to_string] = ACTIONS(1230), - [anon_sym_to_float] = ACTIONS(1230), - [anon_sym_bash] = ACTIONS(1230), - [anon_sym_fish] = ACTIONS(1230), - [anon_sym_raw] = ACTIONS(1230), - [anon_sym_sh] = ACTIONS(1230), - [anon_sym_zsh] = ACTIONS(1230), - [anon_sym_random] = ACTIONS(1230), - [anon_sym_random_boolean] = ACTIONS(1230), - [anon_sym_random_float] = ACTIONS(1230), - [anon_sym_random_integer] = ACTIONS(1230), - [anon_sym_columns] = ACTIONS(1230), - [anon_sym_rows] = ACTIONS(1230), - [anon_sym_reverse] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1341), + [anon_sym_LPAREN] = ACTIONS(1343), + [sym_integer] = ACTIONS(1345), + [sym_float] = ACTIONS(1347), + [sym_string] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1349), + [anon_sym_false] = ACTIONS(1349), + [anon_sym_LBRACK] = ACTIONS(1351), + [anon_sym_COLON] = ACTIONS(2287), + [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(1355), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1357), + [anon_sym_assert] = ACTIONS(1359), + [anon_sym_assert_equal] = ACTIONS(1359), + [anon_sym_download] = ACTIONS(1359), + [anon_sym_help] = ACTIONS(1359), + [anon_sym_length] = ACTIONS(1359), + [anon_sym_output] = ACTIONS(1359), + [anon_sym_output_error] = ACTIONS(1359), + [anon_sym_type] = ACTIONS(1359), + [anon_sym_append] = ACTIONS(1359), + [anon_sym_metadata] = ACTIONS(1359), + [anon_sym_move] = ACTIONS(1359), + [anon_sym_read] = ACTIONS(1359), + [anon_sym_workdir] = ACTIONS(1359), + [anon_sym_write] = ACTIONS(1359), + [anon_sym_from_json] = ACTIONS(1359), + [anon_sym_to_json] = ACTIONS(1359), + [anon_sym_to_string] = ACTIONS(1359), + [anon_sym_to_float] = ACTIONS(1359), + [anon_sym_bash] = ACTIONS(1359), + [anon_sym_fish] = ACTIONS(1359), + [anon_sym_raw] = ACTIONS(1359), + [anon_sym_sh] = ACTIONS(1359), + [anon_sym_zsh] = ACTIONS(1359), + [anon_sym_random] = ACTIONS(1359), + [anon_sym_random_boolean] = ACTIONS(1359), + [anon_sym_random_float] = ACTIONS(1359), + [anon_sym_random_integer] = ACTIONS(1359), + [anon_sym_columns] = ACTIONS(1359), + [anon_sym_rows] = ACTIONS(1359), + [anon_sym_reverse] = ACTIONS(1359), }, [523] = { - [sym_block] = STATE(848), - [sym_statement] = STATE(46), - [sym_expression] = STATE(824), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(739), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(653), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [aux_sym_block_repeat1] = STATE(46), - [sym_identifier] = ACTIONS(1198), + [sym_expression] = STATE(984), + [sym__expression_kind] = STATE(919), + [sym_value] = STATE(919), + [sym_boolean] = STATE(936), + [sym_list] = STATE(936), + [sym_map] = STATE(936), + [sym_index] = STATE(919), + [sym_math] = STATE(919), + [sym_math_operator] = STATE(749), + [sym_logic] = STATE(919), + [sym_logic_operator] = STATE(748), + [sym_identifier_list] = STATE(1086), + [sym_table] = STATE(936), + [sym_function] = STATE(936), + [sym_function_call] = STATE(919), + [sym__context_defined_function] = STATE(934), + [sym_built_in_function] = STATE(934), + [sym__built_in_function_name] = STATE(550), + [aux_sym_match_repeat1] = STATE(215), + [sym_identifier] = ACTIONS(1339), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(877), - [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(627), - [anon_sym_match] = ACTIONS(1202), - [anon_sym_EQ_GT] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(1206), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_asyncfor] = ACTIONS(1210), - [anon_sym_transform] = ACTIONS(1212), - [anon_sym_filter] = ACTIONS(1214), - [anon_sym_find] = ACTIONS(1216), - [anon_sym_remove] = ACTIONS(1218), - [anon_sym_reduce] = ACTIONS(1220), - [anon_sym_select] = ACTIONS(1222), - [anon_sym_insert] = ACTIONS(1224), - [anon_sym_async] = ACTIONS(1226), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(1228), - [anon_sym_assert] = ACTIONS(1230), - [anon_sym_assert_equal] = ACTIONS(1230), - [anon_sym_download] = ACTIONS(1230), - [anon_sym_help] = ACTIONS(1230), - [anon_sym_length] = ACTIONS(1230), - [anon_sym_output] = ACTIONS(1230), - [anon_sym_output_error] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_append] = ACTIONS(1230), - [anon_sym_metadata] = ACTIONS(1230), - [anon_sym_move] = ACTIONS(1230), - [anon_sym_read] = ACTIONS(1230), - [anon_sym_workdir] = ACTIONS(1230), - [anon_sym_write] = ACTIONS(1230), - [anon_sym_from_json] = ACTIONS(1230), - [anon_sym_to_json] = ACTIONS(1230), - [anon_sym_to_string] = ACTIONS(1230), - [anon_sym_to_float] = ACTIONS(1230), - [anon_sym_bash] = ACTIONS(1230), - [anon_sym_fish] = ACTIONS(1230), - [anon_sym_raw] = ACTIONS(1230), - [anon_sym_sh] = ACTIONS(1230), - [anon_sym_zsh] = ACTIONS(1230), - [anon_sym_random] = ACTIONS(1230), - [anon_sym_random_boolean] = ACTIONS(1230), - [anon_sym_random_float] = ACTIONS(1230), - [anon_sym_random_integer] = ACTIONS(1230), - [anon_sym_columns] = ACTIONS(1230), - [anon_sym_rows] = ACTIONS(1230), - [anon_sym_reverse] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1341), + [anon_sym_LPAREN] = ACTIONS(1343), + [sym_integer] = ACTIONS(1345), + [sym_float] = ACTIONS(1347), + [sym_string] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1349), + [anon_sym_false] = ACTIONS(1349), + [anon_sym_LBRACK] = ACTIONS(1351), + [anon_sym_COLON] = ACTIONS(2287), + [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(1355), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1357), + [anon_sym_assert] = ACTIONS(1359), + [anon_sym_assert_equal] = ACTIONS(1359), + [anon_sym_download] = ACTIONS(1359), + [anon_sym_help] = ACTIONS(1359), + [anon_sym_length] = ACTIONS(1359), + [anon_sym_output] = ACTIONS(1359), + [anon_sym_output_error] = ACTIONS(1359), + [anon_sym_type] = ACTIONS(1359), + [anon_sym_append] = ACTIONS(1359), + [anon_sym_metadata] = ACTIONS(1359), + [anon_sym_move] = ACTIONS(1359), + [anon_sym_read] = ACTIONS(1359), + [anon_sym_workdir] = ACTIONS(1359), + [anon_sym_write] = ACTIONS(1359), + [anon_sym_from_json] = ACTIONS(1359), + [anon_sym_to_json] = ACTIONS(1359), + [anon_sym_to_string] = ACTIONS(1359), + [anon_sym_to_float] = ACTIONS(1359), + [anon_sym_bash] = ACTIONS(1359), + [anon_sym_fish] = ACTIONS(1359), + [anon_sym_raw] = ACTIONS(1359), + [anon_sym_sh] = ACTIONS(1359), + [anon_sym_zsh] = ACTIONS(1359), + [anon_sym_random] = ACTIONS(1359), + [anon_sym_random_boolean] = ACTIONS(1359), + [anon_sym_random_float] = ACTIONS(1359), + [anon_sym_random_integer] = ACTIONS(1359), + [anon_sym_columns] = ACTIONS(1359), + [anon_sym_rows] = ACTIONS(1359), + [anon_sym_reverse] = ACTIONS(1359), }, [524] = { - [sym_block] = STATE(851), - [sym_statement] = STATE(57), - [sym_expression] = STATE(853), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(776), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(710), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1823), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(366), - [aux_sym_block_repeat1] = STATE(57), - [sym_identifier] = ACTIONS(1436), + [sym_math_operator] = STATE(851), + [sym_logic_operator] = STATE(857), + [ts_builtin_sym_end] = ACTIONS(2071), + [sym_identifier] = ACTIONS(2073), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(877), - [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(843), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_EQ_GT] = ACTIONS(1442), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_for] = ACTIONS(1446), - [anon_sym_asyncfor] = ACTIONS(1448), - [anon_sym_transform] = ACTIONS(1450), - [anon_sym_filter] = ACTIONS(1452), - [anon_sym_find] = ACTIONS(1454), - [anon_sym_remove] = ACTIONS(1456), - [anon_sym_reduce] = ACTIONS(1458), - [anon_sym_select] = ACTIONS(1460), - [anon_sym_insert] = ACTIONS(1462), - [anon_sym_async] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(1466), - [anon_sym_assert] = ACTIONS(1468), - [anon_sym_assert_equal] = ACTIONS(1468), - [anon_sym_download] = ACTIONS(1468), - [anon_sym_help] = ACTIONS(1468), - [anon_sym_length] = ACTIONS(1468), - [anon_sym_output] = ACTIONS(1468), - [anon_sym_output_error] = ACTIONS(1468), - [anon_sym_type] = ACTIONS(1468), - [anon_sym_append] = ACTIONS(1468), - [anon_sym_metadata] = ACTIONS(1468), - [anon_sym_move] = ACTIONS(1468), - [anon_sym_read] = ACTIONS(1468), - [anon_sym_workdir] = ACTIONS(1468), - [anon_sym_write] = ACTIONS(1468), - [anon_sym_from_json] = ACTIONS(1468), - [anon_sym_to_json] = ACTIONS(1468), - [anon_sym_to_string] = ACTIONS(1468), - [anon_sym_to_float] = ACTIONS(1468), - [anon_sym_bash] = ACTIONS(1468), - [anon_sym_fish] = ACTIONS(1468), - [anon_sym_raw] = ACTIONS(1468), - [anon_sym_sh] = ACTIONS(1468), - [anon_sym_zsh] = ACTIONS(1468), - [anon_sym_random] = ACTIONS(1468), - [anon_sym_random_boolean] = ACTIONS(1468), - [anon_sym_random_float] = ACTIONS(1468), - [anon_sym_random_integer] = ACTIONS(1468), - [anon_sym_columns] = ACTIONS(1468), - [anon_sym_rows] = ACTIONS(1468), - [anon_sym_reverse] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(2071), + [anon_sym_RBRACE] = ACTIONS(2071), + [anon_sym_SEMI] = ACTIONS(2071), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_RPAREN] = ACTIONS(2071), + [sym_integer] = ACTIONS(2073), + [sym_float] = ACTIONS(2071), + [sym_string] = ACTIONS(2071), + [anon_sym_true] = ACTIONS(2073), + [anon_sym_false] = ACTIONS(2073), + [anon_sym_LBRACK] = ACTIONS(2071), + [anon_sym_COLON] = ACTIONS(869), + [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(2073), + [anon_sym_match] = ACTIONS(2073), + [anon_sym_EQ_GT] = ACTIONS(2071), + [anon_sym_while] = ACTIONS(2073), + [anon_sym_for] = ACTIONS(2073), + [anon_sym_asyncfor] = ACTIONS(2071), + [anon_sym_transform] = ACTIONS(2073), + [anon_sym_filter] = ACTIONS(2073), + [anon_sym_find] = ACTIONS(2073), + [anon_sym_remove] = ACTIONS(2073), + [anon_sym_reduce] = ACTIONS(2073), + [anon_sym_select] = ACTIONS(2073), + [anon_sym_insert] = ACTIONS(2073), + [anon_sym_async] = ACTIONS(2073), + [anon_sym_PIPE] = ACTIONS(2073), + [anon_sym_table] = ACTIONS(2073), + [anon_sym_assert] = ACTIONS(2073), + [anon_sym_assert_equal] = ACTIONS(2073), + [anon_sym_download] = ACTIONS(2073), + [anon_sym_help] = ACTIONS(2073), + [anon_sym_length] = ACTIONS(2073), + [anon_sym_output] = ACTIONS(2073), + [anon_sym_output_error] = ACTIONS(2073), + [anon_sym_type] = ACTIONS(2073), + [anon_sym_append] = ACTIONS(2073), + [anon_sym_metadata] = ACTIONS(2073), + [anon_sym_move] = ACTIONS(2073), + [anon_sym_read] = ACTIONS(2073), + [anon_sym_workdir] = ACTIONS(2073), + [anon_sym_write] = ACTIONS(2073), + [anon_sym_from_json] = ACTIONS(2073), + [anon_sym_to_json] = ACTIONS(2073), + [anon_sym_to_string] = ACTIONS(2073), + [anon_sym_to_float] = ACTIONS(2073), + [anon_sym_bash] = ACTIONS(2073), + [anon_sym_fish] = ACTIONS(2073), + [anon_sym_raw] = ACTIONS(2073), + [anon_sym_sh] = ACTIONS(2073), + [anon_sym_zsh] = ACTIONS(2073), + [anon_sym_random] = ACTIONS(2073), + [anon_sym_random_boolean] = ACTIONS(2073), + [anon_sym_random_float] = ACTIONS(2073), + [anon_sym_random_integer] = ACTIONS(2073), + [anon_sym_columns] = ACTIONS(2073), + [anon_sym_rows] = ACTIONS(2073), + [anon_sym_reverse] = ACTIONS(2073), }, [525] = { - [sym_block] = STATE(765), - [sym_statement] = STATE(38), - [sym_expression] = STATE(779), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(655), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(724), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1860), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(341), - [aux_sym_block_repeat1] = STATE(38), - [sym_identifier] = ACTIONS(839), + [sym_expression] = STATE(996), + [sym__expression_kind] = STATE(919), + [sym_value] = STATE(919), + [sym_boolean] = STATE(936), + [sym_list] = STATE(936), + [sym_map] = STATE(936), + [sym_index] = STATE(919), + [sym_math] = STATE(919), + [sym_logic] = STATE(919), + [sym_identifier_list] = STATE(1086), + [sym_table] = STATE(936), + [sym_function] = STATE(936), + [sym_function_call] = STATE(919), + [sym__context_defined_function] = STATE(934), + [sym_built_in_function] = STATE(934), + [sym__built_in_function_name] = STATE(550), + [aux_sym_match_repeat1] = STATE(525), + [ts_builtin_sym_end] = ACTIONS(1398), + [sym_identifier] = ACTIONS(1400), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_if] = ACTIONS(843), - [anon_sym_match] = ACTIONS(845), - [anon_sym_EQ_GT] = ACTIONS(847), - [anon_sym_while] = ACTIONS(849), - [anon_sym_for] = ACTIONS(851), - [anon_sym_asyncfor] = 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(867), - [anon_sym_async] = ACTIONS(869), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(871), - [anon_sym_assert] = ACTIONS(873), - [anon_sym_assert_equal] = ACTIONS(873), - [anon_sym_download] = ACTIONS(873), - [anon_sym_help] = ACTIONS(873), - [anon_sym_length] = ACTIONS(873), - [anon_sym_output] = ACTIONS(873), - [anon_sym_output_error] = ACTIONS(873), - [anon_sym_type] = ACTIONS(873), - [anon_sym_append] = ACTIONS(873), - [anon_sym_metadata] = ACTIONS(873), - [anon_sym_move] = ACTIONS(873), - [anon_sym_read] = ACTIONS(873), - [anon_sym_workdir] = ACTIONS(873), - [anon_sym_write] = ACTIONS(873), - [anon_sym_from_json] = ACTIONS(873), - [anon_sym_to_json] = ACTIONS(873), - [anon_sym_to_string] = ACTIONS(873), - [anon_sym_to_float] = ACTIONS(873), - [anon_sym_bash] = ACTIONS(873), - [anon_sym_fish] = ACTIONS(873), - [anon_sym_raw] = ACTIONS(873), - [anon_sym_sh] = ACTIONS(873), - [anon_sym_zsh] = ACTIONS(873), - [anon_sym_random] = ACTIONS(873), - [anon_sym_random_boolean] = ACTIONS(873), - [anon_sym_random_float] = ACTIONS(873), - [anon_sym_random_integer] = ACTIONS(873), - [anon_sym_columns] = ACTIONS(873), - [anon_sym_rows] = ACTIONS(873), - [anon_sym_reverse] = ACTIONS(873), + [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_RBRACE] = ACTIONS(1398), + [anon_sym_SEMI] = ACTIONS(1398), + [anon_sym_LPAREN] = ACTIONS(1406), + [sym_integer] = ACTIONS(1409), + [sym_float] = ACTIONS(1412), + [sym_string] = ACTIONS(1412), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_LBRACK] = ACTIONS(1418), + [anon_sym_if] = ACTIONS(1421), + [anon_sym_match] = ACTIONS(1421), + [anon_sym_EQ_GT] = ACTIONS(1423), + [anon_sym_while] = ACTIONS(1421), + [anon_sym_for] = ACTIONS(1421), + [anon_sym_asyncfor] = ACTIONS(1398), + [anon_sym_transform] = ACTIONS(1421), + [anon_sym_filter] = ACTIONS(1421), + [anon_sym_find] = ACTIONS(1421), + [anon_sym_remove] = ACTIONS(1421), + [anon_sym_reduce] = ACTIONS(1421), + [anon_sym_select] = ACTIONS(1421), + [anon_sym_insert] = ACTIONS(1421), + [anon_sym_async] = ACTIONS(1421), + [anon_sym_PIPE] = ACTIONS(2275), + [anon_sym_table] = ACTIONS(1429), + [anon_sym_assert] = ACTIONS(1432), + [anon_sym_assert_equal] = ACTIONS(1432), + [anon_sym_download] = ACTIONS(1432), + [anon_sym_help] = ACTIONS(1432), + [anon_sym_length] = ACTIONS(1432), + [anon_sym_output] = ACTIONS(1432), + [anon_sym_output_error] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_append] = ACTIONS(1432), + [anon_sym_metadata] = ACTIONS(1432), + [anon_sym_move] = ACTIONS(1432), + [anon_sym_read] = ACTIONS(1432), + [anon_sym_workdir] = ACTIONS(1432), + [anon_sym_write] = ACTIONS(1432), + [anon_sym_from_json] = ACTIONS(1432), + [anon_sym_to_json] = ACTIONS(1432), + [anon_sym_to_string] = ACTIONS(1432), + [anon_sym_to_float] = ACTIONS(1432), + [anon_sym_bash] = ACTIONS(1432), + [anon_sym_fish] = ACTIONS(1432), + [anon_sym_raw] = ACTIONS(1432), + [anon_sym_sh] = ACTIONS(1432), + [anon_sym_zsh] = ACTIONS(1432), + [anon_sym_random] = ACTIONS(1432), + [anon_sym_random_boolean] = ACTIONS(1432), + [anon_sym_random_float] = ACTIONS(1432), + [anon_sym_random_integer] = ACTIONS(1432), + [anon_sym_columns] = ACTIONS(1432), + [anon_sym_rows] = ACTIONS(1432), + [anon_sym_reverse] = ACTIONS(1432), }, [526] = { - [sym_block] = STATE(1543), - [sym_statement] = STATE(255), - [sym_expression] = STATE(853), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(776), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(710), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1823), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(366), - [aux_sym_block_repeat1] = STATE(255), - [sym_identifier] = ACTIONS(1436), + [sym_expression] = STATE(983), + [sym__expression_kind] = STATE(919), + [sym_value] = STATE(919), + [sym_boolean] = STATE(936), + [sym_list] = STATE(936), + [sym_map] = STATE(936), + [sym_index] = STATE(919), + [sym_math] = STATE(919), + [sym_math_operator] = STATE(749), + [sym_logic] = STATE(919), + [sym_logic_operator] = STATE(748), + [sym_identifier_list] = STATE(1086), + [sym_table] = STATE(936), + [sym_function] = STATE(936), + [sym_function_call] = STATE(919), + [sym__context_defined_function] = STATE(934), + [sym_built_in_function] = STATE(934), + [sym__built_in_function_name] = STATE(550), + [aux_sym_match_repeat1] = STATE(183), + [sym_identifier] = ACTIONS(1339), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2164), - [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(843), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_EQ_GT] = ACTIONS(1442), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_for] = ACTIONS(1446), - [anon_sym_asyncfor] = ACTIONS(1448), - [anon_sym_transform] = ACTIONS(1450), - [anon_sym_filter] = ACTIONS(1452), - [anon_sym_find] = ACTIONS(1454), - [anon_sym_remove] = ACTIONS(1456), - [anon_sym_reduce] = ACTIONS(1458), - [anon_sym_select] = ACTIONS(1460), - [anon_sym_insert] = ACTIONS(1462), - [anon_sym_async] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(1466), - [anon_sym_assert] = ACTIONS(1468), - [anon_sym_assert_equal] = ACTIONS(1468), - [anon_sym_download] = ACTIONS(1468), - [anon_sym_help] = ACTIONS(1468), - [anon_sym_length] = ACTIONS(1468), - [anon_sym_output] = ACTIONS(1468), - [anon_sym_output_error] = ACTIONS(1468), - [anon_sym_type] = ACTIONS(1468), - [anon_sym_append] = ACTIONS(1468), - [anon_sym_metadata] = ACTIONS(1468), - [anon_sym_move] = ACTIONS(1468), - [anon_sym_read] = ACTIONS(1468), - [anon_sym_workdir] = ACTIONS(1468), - [anon_sym_write] = ACTIONS(1468), - [anon_sym_from_json] = ACTIONS(1468), - [anon_sym_to_json] = ACTIONS(1468), - [anon_sym_to_string] = ACTIONS(1468), - [anon_sym_to_float] = ACTIONS(1468), - [anon_sym_bash] = ACTIONS(1468), - [anon_sym_fish] = ACTIONS(1468), - [anon_sym_raw] = ACTIONS(1468), - [anon_sym_sh] = ACTIONS(1468), - [anon_sym_zsh] = ACTIONS(1468), - [anon_sym_random] = ACTIONS(1468), - [anon_sym_random_boolean] = ACTIONS(1468), - [anon_sym_random_float] = ACTIONS(1468), - [anon_sym_random_integer] = ACTIONS(1468), - [anon_sym_columns] = ACTIONS(1468), - [anon_sym_rows] = ACTIONS(1468), - [anon_sym_reverse] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1341), + [anon_sym_LPAREN] = ACTIONS(1343), + [sym_integer] = ACTIONS(1345), + [sym_float] = ACTIONS(1347), + [sym_string] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1349), + [anon_sym_false] = ACTIONS(1349), + [anon_sym_LBRACK] = ACTIONS(1351), + [anon_sym_COLON] = ACTIONS(2287), + [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(1355), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1357), + [anon_sym_assert] = ACTIONS(1359), + [anon_sym_assert_equal] = ACTIONS(1359), + [anon_sym_download] = ACTIONS(1359), + [anon_sym_help] = ACTIONS(1359), + [anon_sym_length] = ACTIONS(1359), + [anon_sym_output] = ACTIONS(1359), + [anon_sym_output_error] = ACTIONS(1359), + [anon_sym_type] = ACTIONS(1359), + [anon_sym_append] = ACTIONS(1359), + [anon_sym_metadata] = ACTIONS(1359), + [anon_sym_move] = ACTIONS(1359), + [anon_sym_read] = ACTIONS(1359), + [anon_sym_workdir] = ACTIONS(1359), + [anon_sym_write] = ACTIONS(1359), + [anon_sym_from_json] = ACTIONS(1359), + [anon_sym_to_json] = ACTIONS(1359), + [anon_sym_to_string] = ACTIONS(1359), + [anon_sym_to_float] = ACTIONS(1359), + [anon_sym_bash] = ACTIONS(1359), + [anon_sym_fish] = ACTIONS(1359), + [anon_sym_raw] = ACTIONS(1359), + [anon_sym_sh] = ACTIONS(1359), + [anon_sym_zsh] = ACTIONS(1359), + [anon_sym_random] = ACTIONS(1359), + [anon_sym_random_boolean] = ACTIONS(1359), + [anon_sym_random_float] = ACTIONS(1359), + [anon_sym_random_integer] = ACTIONS(1359), + [anon_sym_columns] = ACTIONS(1359), + [anon_sym_rows] = ACTIONS(1359), + [anon_sym_reverse] = ACTIONS(1359), }, [527] = { - [sym_block] = STATE(777), - [sym_statement] = STATE(38), - [sym_expression] = STATE(779), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(655), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(724), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1860), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(341), - [aux_sym_block_repeat1] = STATE(38), - [sym_identifier] = ACTIONS(839), + [sym_expression] = STATE(594), + [sym__expression_kind] = STATE(585), + [aux_sym__expression_list] = STATE(503), + [sym_value] = STATE(585), + [sym_boolean] = STATE(586), + [sym_list] = STATE(586), + [sym_map] = STATE(586), + [sym_index] = STATE(585), + [sym_math] = STATE(585), + [sym_logic] = STATE(585), + [sym_identifier_list] = STATE(1105), + [sym_table] = STATE(586), + [sym_function] = STATE(586), + [sym_function_call] = STATE(585), + [sym__context_defined_function] = STATE(587), + [sym_built_in_function] = STATE(587), + [sym__built_in_function_name] = STATE(372), + [sym_identifier] = ACTIONS(2089), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_if] = ACTIONS(843), - [anon_sym_match] = ACTIONS(845), - [anon_sym_EQ_GT] = ACTIONS(847), - [anon_sym_while] = ACTIONS(849), - [anon_sym_for] = ACTIONS(851), - [anon_sym_asyncfor] = 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(867), - [anon_sym_async] = ACTIONS(869), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(871), - [anon_sym_assert] = ACTIONS(873), - [anon_sym_assert_equal] = ACTIONS(873), - [anon_sym_download] = ACTIONS(873), - [anon_sym_help] = ACTIONS(873), - [anon_sym_length] = ACTIONS(873), - [anon_sym_output] = ACTIONS(873), - [anon_sym_output_error] = ACTIONS(873), - [anon_sym_type] = ACTIONS(873), - [anon_sym_append] = ACTIONS(873), - [anon_sym_metadata] = ACTIONS(873), - [anon_sym_move] = ACTIONS(873), - [anon_sym_read] = ACTIONS(873), - [anon_sym_workdir] = ACTIONS(873), - [anon_sym_write] = ACTIONS(873), - [anon_sym_from_json] = ACTIONS(873), - [anon_sym_to_json] = ACTIONS(873), - [anon_sym_to_string] = ACTIONS(873), - [anon_sym_to_float] = ACTIONS(873), - [anon_sym_bash] = ACTIONS(873), - [anon_sym_fish] = ACTIONS(873), - [anon_sym_raw] = ACTIONS(873), - [anon_sym_sh] = ACTIONS(873), - [anon_sym_zsh] = ACTIONS(873), - [anon_sym_random] = ACTIONS(873), - [anon_sym_random_boolean] = ACTIONS(873), - [anon_sym_random_float] = ACTIONS(873), - [anon_sym_random_integer] = ACTIONS(873), - [anon_sym_columns] = ACTIONS(873), - [anon_sym_rows] = ACTIONS(873), - [anon_sym_reverse] = ACTIONS(873), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2049), + [anon_sym_RPAREN] = ACTIONS(1313), + [sym_integer] = ACTIONS(2051), + [sym_float] = ACTIONS(2053), + [sym_string] = ACTIONS(2053), + [anon_sym_true] = ACTIONS(2055), + [anon_sym_false] = ACTIONS(2055), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_COLON] = ACTIONS(1313), + [anon_sym_DOT_DOT] = ACTIONS(1313), + [anon_sym_PLUS] = ACTIONS(1313), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_PERCENT] = ACTIONS(1313), + [anon_sym_EQ_EQ] = ACTIONS(1313), + [anon_sym_BANG_EQ] = ACTIONS(1313), + [anon_sym_AMP_AMP] = ACTIONS(1313), + [anon_sym_PIPE_PIPE] = ACTIONS(1313), + [anon_sym_GT] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(1315), + [anon_sym_GT_EQ] = ACTIONS(1313), + [anon_sym_LT_EQ] = ACTIONS(1313), + [anon_sym_EQ_GT] = ACTIONS(2091), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2093), + [anon_sym_assert] = ACTIONS(2095), + [anon_sym_assert_equal] = ACTIONS(2095), + [anon_sym_download] = ACTIONS(2095), + [anon_sym_help] = ACTIONS(2095), + [anon_sym_length] = ACTIONS(2095), + [anon_sym_output] = ACTIONS(2095), + [anon_sym_output_error] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2095), + [anon_sym_append] = ACTIONS(2095), + [anon_sym_metadata] = ACTIONS(2095), + [anon_sym_move] = ACTIONS(2095), + [anon_sym_read] = ACTIONS(2095), + [anon_sym_workdir] = ACTIONS(2095), + [anon_sym_write] = ACTIONS(2095), + [anon_sym_from_json] = ACTIONS(2095), + [anon_sym_to_json] = ACTIONS(2095), + [anon_sym_to_string] = ACTIONS(2095), + [anon_sym_to_float] = ACTIONS(2095), + [anon_sym_bash] = ACTIONS(2095), + [anon_sym_fish] = ACTIONS(2095), + [anon_sym_raw] = ACTIONS(2095), + [anon_sym_sh] = ACTIONS(2095), + [anon_sym_zsh] = ACTIONS(2095), + [anon_sym_random] = ACTIONS(2095), + [anon_sym_random_boolean] = ACTIONS(2095), + [anon_sym_random_float] = ACTIONS(2095), + [anon_sym_random_integer] = ACTIONS(2095), + [anon_sym_columns] = ACTIONS(2095), + [anon_sym_rows] = ACTIONS(2095), + [anon_sym_reverse] = ACTIONS(2095), }, [528] = { - [sym_block] = STATE(1021), - [sym_statement] = STATE(358), - [sym_expression] = STATE(859), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(754), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_assignment] = STATE(1023), - [sym_if_else] = STATE(1023), - [sym_if] = STATE(985), - [sym_match] = STATE(1023), - [sym_while] = STATE(1023), - [sym_for] = STATE(1023), - [sym_transform] = STATE(1023), - [sym_filter] = STATE(1023), - [sym_find] = STATE(1023), - [sym_remove] = STATE(1023), - [sym_reduce] = STATE(1023), - [sym_select] = STATE(1023), - [sym_insert] = STATE(1023), - [sym_async] = STATE(1023), - [sym_identifier_list] = STATE(1841), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(315), - [aux_sym_block_repeat1] = STATE(358), - [sym_identifier] = ACTIONS(1566), + [sym_math_operator] = STATE(851), + [sym_logic_operator] = STATE(857), + [ts_builtin_sym_end] = ACTIONS(2079), + [sym_identifier] = ACTIONS(2081), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_if] = ACTIONS(1570), - [anon_sym_match] = ACTIONS(1572), - [anon_sym_EQ_GT] = ACTIONS(631), - [anon_sym_while] = ACTIONS(1574), - [anon_sym_for] = ACTIONS(1576), - [anon_sym_asyncfor] = ACTIONS(1578), - [anon_sym_transform] = ACTIONS(1580), - [anon_sym_filter] = ACTIONS(1582), - [anon_sym_find] = ACTIONS(1584), - [anon_sym_remove] = ACTIONS(1586), - [anon_sym_reduce] = ACTIONS(1588), - [anon_sym_select] = ACTIONS(1590), - [anon_sym_insert] = ACTIONS(651), - [anon_sym_async] = ACTIONS(1592), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(655), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_assert_equal] = ACTIONS(657), - [anon_sym_download] = ACTIONS(657), - [anon_sym_help] = ACTIONS(657), - [anon_sym_length] = ACTIONS(657), - [anon_sym_output] = ACTIONS(657), - [anon_sym_output_error] = ACTIONS(657), - [anon_sym_type] = ACTIONS(657), - [anon_sym_append] = ACTIONS(657), - [anon_sym_metadata] = ACTIONS(657), - [anon_sym_move] = ACTIONS(657), - [anon_sym_read] = ACTIONS(657), - [anon_sym_workdir] = ACTIONS(657), - [anon_sym_write] = ACTIONS(657), - [anon_sym_from_json] = ACTIONS(657), - [anon_sym_to_json] = ACTIONS(657), - [anon_sym_to_string] = ACTIONS(657), - [anon_sym_to_float] = ACTIONS(657), - [anon_sym_bash] = ACTIONS(657), - [anon_sym_fish] = ACTIONS(657), - [anon_sym_raw] = ACTIONS(657), - [anon_sym_sh] = ACTIONS(657), - [anon_sym_zsh] = ACTIONS(657), - [anon_sym_random] = ACTIONS(657), - [anon_sym_random_boolean] = ACTIONS(657), - [anon_sym_random_float] = ACTIONS(657), - [anon_sym_random_integer] = ACTIONS(657), - [anon_sym_columns] = ACTIONS(657), - [anon_sym_rows] = ACTIONS(657), - [anon_sym_reverse] = ACTIONS(657), + [anon_sym_LBRACE] = ACTIONS(2079), + [anon_sym_RBRACE] = ACTIONS(2079), + [anon_sym_SEMI] = ACTIONS(2079), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_RPAREN] = ACTIONS(2079), + [sym_integer] = ACTIONS(2081), + [sym_float] = ACTIONS(2079), + [sym_string] = ACTIONS(2079), + [anon_sym_true] = ACTIONS(2081), + [anon_sym_false] = ACTIONS(2081), + [anon_sym_LBRACK] = ACTIONS(2079), + [anon_sym_COLON] = ACTIONS(869), + [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(2081), + [anon_sym_match] = ACTIONS(2081), + [anon_sym_EQ_GT] = ACTIONS(2079), + [anon_sym_while] = ACTIONS(2081), + [anon_sym_for] = ACTIONS(2081), + [anon_sym_asyncfor] = ACTIONS(2079), + [anon_sym_transform] = ACTIONS(2081), + [anon_sym_filter] = ACTIONS(2081), + [anon_sym_find] = ACTIONS(2081), + [anon_sym_remove] = ACTIONS(2081), + [anon_sym_reduce] = ACTIONS(2081), + [anon_sym_select] = ACTIONS(2081), + [anon_sym_insert] = ACTIONS(2081), + [anon_sym_async] = ACTIONS(2081), + [anon_sym_PIPE] = ACTIONS(2081), + [anon_sym_table] = ACTIONS(2081), + [anon_sym_assert] = ACTIONS(2081), + [anon_sym_assert_equal] = ACTIONS(2081), + [anon_sym_download] = ACTIONS(2081), + [anon_sym_help] = ACTIONS(2081), + [anon_sym_length] = ACTIONS(2081), + [anon_sym_output] = ACTIONS(2081), + [anon_sym_output_error] = ACTIONS(2081), + [anon_sym_type] = ACTIONS(2081), + [anon_sym_append] = ACTIONS(2081), + [anon_sym_metadata] = ACTIONS(2081), + [anon_sym_move] = ACTIONS(2081), + [anon_sym_read] = ACTIONS(2081), + [anon_sym_workdir] = ACTIONS(2081), + [anon_sym_write] = ACTIONS(2081), + [anon_sym_from_json] = ACTIONS(2081), + [anon_sym_to_json] = ACTIONS(2081), + [anon_sym_to_string] = ACTIONS(2081), + [anon_sym_to_float] = ACTIONS(2081), + [anon_sym_bash] = ACTIONS(2081), + [anon_sym_fish] = ACTIONS(2081), + [anon_sym_raw] = ACTIONS(2081), + [anon_sym_sh] = ACTIONS(2081), + [anon_sym_zsh] = ACTIONS(2081), + [anon_sym_random] = ACTIONS(2081), + [anon_sym_random_boolean] = ACTIONS(2081), + [anon_sym_random_float] = ACTIONS(2081), + [anon_sym_random_integer] = ACTIONS(2081), + [anon_sym_columns] = ACTIONS(2081), + [anon_sym_rows] = ACTIONS(2081), + [anon_sym_reverse] = ACTIONS(2081), }, [529] = { - [sym_block] = STATE(1017), - [sym_statement] = STATE(358), - [sym_expression] = STATE(859), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(754), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_assignment] = STATE(1023), - [sym_if_else] = STATE(1023), - [sym_if] = STATE(985), - [sym_match] = STATE(1023), - [sym_while] = STATE(1023), - [sym_for] = STATE(1023), - [sym_transform] = STATE(1023), - [sym_filter] = STATE(1023), - [sym_find] = STATE(1023), - [sym_remove] = STATE(1023), - [sym_reduce] = STATE(1023), - [sym_select] = STATE(1023), - [sym_insert] = STATE(1023), - [sym_async] = STATE(1023), - [sym_identifier_list] = STATE(1841), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(315), - [aux_sym_block_repeat1] = STATE(358), - [sym_identifier] = ACTIONS(1566), + [sym_expression] = STATE(982), + [sym__expression_kind] = STATE(919), + [sym_value] = STATE(919), + [sym_boolean] = STATE(936), + [sym_list] = STATE(936), + [sym_map] = STATE(936), + [sym_index] = STATE(919), + [sym_math] = STATE(919), + [sym_math_operator] = STATE(749), + [sym_logic] = STATE(919), + [sym_logic_operator] = STATE(748), + [sym_identifier_list] = STATE(1086), + [sym_table] = STATE(936), + [sym_function] = STATE(936), + [sym_function_call] = STATE(919), + [sym__context_defined_function] = STATE(934), + [sym_built_in_function] = STATE(934), + [sym__built_in_function_name] = STATE(550), + [aux_sym_match_repeat1] = STATE(190), + [sym_identifier] = ACTIONS(1339), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_if] = ACTIONS(1570), - [anon_sym_match] = ACTIONS(1572), - [anon_sym_EQ_GT] = ACTIONS(631), - [anon_sym_while] = ACTIONS(1574), - [anon_sym_for] = ACTIONS(1576), - [anon_sym_asyncfor] = ACTIONS(1578), - [anon_sym_transform] = ACTIONS(1580), - [anon_sym_filter] = ACTIONS(1582), - [anon_sym_find] = ACTIONS(1584), - [anon_sym_remove] = ACTIONS(1586), - [anon_sym_reduce] = ACTIONS(1588), - [anon_sym_select] = ACTIONS(1590), - [anon_sym_insert] = ACTIONS(651), - [anon_sym_async] = ACTIONS(1592), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(655), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_assert_equal] = ACTIONS(657), - [anon_sym_download] = ACTIONS(657), - [anon_sym_help] = ACTIONS(657), - [anon_sym_length] = ACTIONS(657), - [anon_sym_output] = ACTIONS(657), - [anon_sym_output_error] = ACTIONS(657), - [anon_sym_type] = ACTIONS(657), - [anon_sym_append] = ACTIONS(657), - [anon_sym_metadata] = ACTIONS(657), - [anon_sym_move] = ACTIONS(657), - [anon_sym_read] = ACTIONS(657), - [anon_sym_workdir] = ACTIONS(657), - [anon_sym_write] = ACTIONS(657), - [anon_sym_from_json] = ACTIONS(657), - [anon_sym_to_json] = ACTIONS(657), - [anon_sym_to_string] = ACTIONS(657), - [anon_sym_to_float] = ACTIONS(657), - [anon_sym_bash] = ACTIONS(657), - [anon_sym_fish] = ACTIONS(657), - [anon_sym_raw] = ACTIONS(657), - [anon_sym_sh] = ACTIONS(657), - [anon_sym_zsh] = ACTIONS(657), - [anon_sym_random] = ACTIONS(657), - [anon_sym_random_boolean] = ACTIONS(657), - [anon_sym_random_float] = ACTIONS(657), - [anon_sym_random_integer] = ACTIONS(657), - [anon_sym_columns] = ACTIONS(657), - [anon_sym_rows] = ACTIONS(657), - [anon_sym_reverse] = ACTIONS(657), + [anon_sym_LBRACE] = ACTIONS(1341), + [anon_sym_LPAREN] = ACTIONS(1343), + [sym_integer] = ACTIONS(1345), + [sym_float] = ACTIONS(1347), + [sym_string] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1349), + [anon_sym_false] = ACTIONS(1349), + [anon_sym_LBRACK] = ACTIONS(1351), + [anon_sym_COLON] = ACTIONS(2287), + [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(1355), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(1357), + [anon_sym_assert] = ACTIONS(1359), + [anon_sym_assert_equal] = ACTIONS(1359), + [anon_sym_download] = ACTIONS(1359), + [anon_sym_help] = ACTIONS(1359), + [anon_sym_length] = ACTIONS(1359), + [anon_sym_output] = ACTIONS(1359), + [anon_sym_output_error] = ACTIONS(1359), + [anon_sym_type] = ACTIONS(1359), + [anon_sym_append] = ACTIONS(1359), + [anon_sym_metadata] = ACTIONS(1359), + [anon_sym_move] = ACTIONS(1359), + [anon_sym_read] = ACTIONS(1359), + [anon_sym_workdir] = ACTIONS(1359), + [anon_sym_write] = ACTIONS(1359), + [anon_sym_from_json] = ACTIONS(1359), + [anon_sym_to_json] = ACTIONS(1359), + [anon_sym_to_string] = ACTIONS(1359), + [anon_sym_to_float] = ACTIONS(1359), + [anon_sym_bash] = ACTIONS(1359), + [anon_sym_fish] = ACTIONS(1359), + [anon_sym_raw] = ACTIONS(1359), + [anon_sym_sh] = ACTIONS(1359), + [anon_sym_zsh] = ACTIONS(1359), + [anon_sym_random] = ACTIONS(1359), + [anon_sym_random_boolean] = ACTIONS(1359), + [anon_sym_random_float] = ACTIONS(1359), + [anon_sym_random_integer] = ACTIONS(1359), + [anon_sym_columns] = ACTIONS(1359), + [anon_sym_rows] = ACTIONS(1359), + [anon_sym_reverse] = ACTIONS(1359), }, [530] = { - [sym_block] = STATE(1004), - [sym_statement] = STATE(54), - [sym_expression] = STATE(756), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(657), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(627), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1752), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(338), - [aux_sym_block_repeat1] = STATE(54), - [sym_identifier] = ACTIONS(875), + [sym_expression] = STATE(594), + [sym__expression_kind] = STATE(585), + [aux_sym__expression_list] = STATE(503), + [sym_value] = STATE(585), + [sym_boolean] = STATE(586), + [sym_list] = STATE(586), + [sym_map] = STATE(586), + [sym_index] = STATE(585), + [sym_math] = STATE(585), + [sym_logic] = STATE(585), + [sym_identifier_list] = STATE(1105), + [sym_table] = STATE(586), + [sym_function] = STATE(586), + [sym_function_call] = STATE(585), + [sym__context_defined_function] = STATE(587), + [sym_built_in_function] = STATE(587), + [sym__built_in_function_name] = STATE(372), + [sym_identifier] = ACTIONS(2089), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3083), - [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(245), - [anon_sym_match] = ACTIONS(881), - [anon_sym_EQ_GT] = ACTIONS(883), - [anon_sym_while] = ACTIONS(885), - [anon_sym_for] = ACTIONS(887), - [anon_sym_asyncfor] = ACTIONS(889), - [anon_sym_transform] = ACTIONS(891), - [anon_sym_filter] = ACTIONS(893), - [anon_sym_find] = ACTIONS(895), - [anon_sym_remove] = ACTIONS(897), - [anon_sym_reduce] = ACTIONS(899), - [anon_sym_select] = ACTIONS(901), - [anon_sym_insert] = ACTIONS(903), - [anon_sym_async] = ACTIONS(905), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(907), - [anon_sym_assert] = ACTIONS(909), - [anon_sym_assert_equal] = ACTIONS(909), - [anon_sym_download] = ACTIONS(909), - [anon_sym_help] = ACTIONS(909), - [anon_sym_length] = ACTIONS(909), - [anon_sym_output] = ACTIONS(909), - [anon_sym_output_error] = ACTIONS(909), - [anon_sym_type] = ACTIONS(909), - [anon_sym_append] = ACTIONS(909), - [anon_sym_metadata] = ACTIONS(909), - [anon_sym_move] = ACTIONS(909), - [anon_sym_read] = ACTIONS(909), - [anon_sym_workdir] = ACTIONS(909), - [anon_sym_write] = ACTIONS(909), - [anon_sym_from_json] = ACTIONS(909), - [anon_sym_to_json] = ACTIONS(909), - [anon_sym_to_string] = ACTIONS(909), - [anon_sym_to_float] = ACTIONS(909), - [anon_sym_bash] = ACTIONS(909), - [anon_sym_fish] = ACTIONS(909), - [anon_sym_raw] = ACTIONS(909), - [anon_sym_sh] = ACTIONS(909), - [anon_sym_zsh] = ACTIONS(909), - [anon_sym_random] = ACTIONS(909), - [anon_sym_random_boolean] = ACTIONS(909), - [anon_sym_random_float] = ACTIONS(909), - [anon_sym_random_integer] = ACTIONS(909), - [anon_sym_columns] = ACTIONS(909), - [anon_sym_rows] = ACTIONS(909), - [anon_sym_reverse] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2049), + [sym_integer] = ACTIONS(2051), + [sym_float] = ACTIONS(2053), + [sym_string] = ACTIONS(2053), + [anon_sym_true] = ACTIONS(2055), + [anon_sym_false] = ACTIONS(2055), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_COLON] = ACTIONS(1313), + [anon_sym_DOT_DOT] = ACTIONS(1313), + [anon_sym_PLUS] = ACTIONS(1313), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_PERCENT] = ACTIONS(1313), + [anon_sym_EQ_EQ] = ACTIONS(1313), + [anon_sym_BANG_EQ] = ACTIONS(1313), + [anon_sym_AMP_AMP] = ACTIONS(1313), + [anon_sym_PIPE_PIPE] = ACTIONS(1313), + [anon_sym_GT] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(1315), + [anon_sym_GT_EQ] = ACTIONS(1313), + [anon_sym_LT_EQ] = ACTIONS(1313), + [anon_sym_EQ_GT] = ACTIONS(1313), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2093), + [anon_sym_assert] = ACTIONS(2095), + [anon_sym_assert_equal] = ACTIONS(2095), + [anon_sym_download] = ACTIONS(2095), + [anon_sym_help] = ACTIONS(2095), + [anon_sym_length] = ACTIONS(2095), + [anon_sym_output] = ACTIONS(2095), + [anon_sym_output_error] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2095), + [anon_sym_append] = ACTIONS(2095), + [anon_sym_metadata] = ACTIONS(2095), + [anon_sym_move] = ACTIONS(2095), + [anon_sym_read] = ACTIONS(2095), + [anon_sym_workdir] = ACTIONS(2095), + [anon_sym_write] = ACTIONS(2095), + [anon_sym_from_json] = ACTIONS(2095), + [anon_sym_to_json] = ACTIONS(2095), + [anon_sym_to_string] = ACTIONS(2095), + [anon_sym_to_float] = ACTIONS(2095), + [anon_sym_bash] = ACTIONS(2095), + [anon_sym_fish] = ACTIONS(2095), + [anon_sym_raw] = ACTIONS(2095), + [anon_sym_sh] = ACTIONS(2095), + [anon_sym_zsh] = ACTIONS(2095), + [anon_sym_random] = ACTIONS(2095), + [anon_sym_random_boolean] = ACTIONS(2095), + [anon_sym_random_float] = ACTIONS(2095), + [anon_sym_random_integer] = ACTIONS(2095), + [anon_sym_columns] = ACTIONS(2095), + [anon_sym_rows] = ACTIONS(2095), + [anon_sym_reverse] = ACTIONS(2095), }, [531] = { - [sym_statement] = STATE(376), - [sym_expression] = STATE(925), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(867), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(980), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [aux_sym_block_repeat1] = STATE(376), - [sym_identifier] = ACTIONS(5), + [sym_expression] = STATE(622), + [sym__expression_kind] = STATE(585), + [aux_sym__expression_list] = STATE(548), + [sym_value] = STATE(585), + [sym_boolean] = STATE(586), + [sym_list] = STATE(586), + [sym_map] = STATE(586), + [sym_index] = STATE(585), + [sym_math] = STATE(585), + [sym_logic] = STATE(585), + [sym_identifier_list] = STATE(1193), + [sym_table] = STATE(586), + [sym_function] = STATE(586), + [sym_function_call] = STATE(585), + [sym__context_defined_function] = STATE(587), + [sym_built_in_function] = STATE(587), + [sym__built_in_function_name] = STATE(429), + [sym_identifier] = ACTIONS(1315), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(3111), - [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_asyncfor] = 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_async] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(49), - [anon_sym_assert] = ACTIONS(51), - [anon_sym_assert_equal] = ACTIONS(51), - [anon_sym_download] = ACTIONS(51), - [anon_sym_help] = ACTIONS(51), - [anon_sym_length] = ACTIONS(51), - [anon_sym_output] = ACTIONS(51), - [anon_sym_output_error] = ACTIONS(51), - [anon_sym_type] = ACTIONS(51), - [anon_sym_append] = ACTIONS(51), - [anon_sym_metadata] = ACTIONS(51), - [anon_sym_move] = ACTIONS(51), - [anon_sym_read] = ACTIONS(51), - [anon_sym_workdir] = ACTIONS(51), - [anon_sym_write] = ACTIONS(51), - [anon_sym_from_json] = ACTIONS(51), - [anon_sym_to_json] = ACTIONS(51), - [anon_sym_to_string] = ACTIONS(51), - [anon_sym_to_float] = ACTIONS(51), - [anon_sym_bash] = ACTIONS(51), - [anon_sym_fish] = ACTIONS(51), - [anon_sym_raw] = ACTIONS(51), - [anon_sym_sh] = ACTIONS(51), - [anon_sym_zsh] = ACTIONS(51), - [anon_sym_random] = ACTIONS(51), - [anon_sym_random_boolean] = ACTIONS(51), - [anon_sym_random_float] = ACTIONS(51), - [anon_sym_random_integer] = ACTIONS(51), - [anon_sym_columns] = ACTIONS(51), - [anon_sym_rows] = ACTIONS(51), - [anon_sym_reverse] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2049), + [sym_integer] = ACTIONS(2051), + [sym_float] = ACTIONS(2053), + [sym_string] = ACTIONS(2053), + [anon_sym_true] = ACTIONS(2055), + [anon_sym_false] = ACTIONS(2055), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_COLON] = ACTIONS(1313), + [anon_sym_PLUS] = ACTIONS(1313), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_PERCENT] = ACTIONS(1313), + [anon_sym_EQ_EQ] = ACTIONS(1313), + [anon_sym_BANG_EQ] = ACTIONS(1313), + [anon_sym_AMP_AMP] = ACTIONS(1313), + [anon_sym_PIPE_PIPE] = ACTIONS(1313), + [anon_sym_GT] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(1315), + [anon_sym_GT_EQ] = ACTIONS(1313), + [anon_sym_LT_EQ] = ACTIONS(1313), + [anon_sym_EQ_GT] = ACTIONS(2059), + [anon_sym_in] = ACTIONS(2289), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2061), + [anon_sym_assert] = ACTIONS(1927), + [anon_sym_assert_equal] = ACTIONS(1927), + [anon_sym_download] = ACTIONS(1927), + [anon_sym_help] = ACTIONS(1927), + [anon_sym_length] = ACTIONS(1927), + [anon_sym_output] = ACTIONS(1927), + [anon_sym_output_error] = ACTIONS(1927), + [anon_sym_type] = ACTIONS(1927), + [anon_sym_append] = ACTIONS(1927), + [anon_sym_metadata] = ACTIONS(1927), + [anon_sym_move] = ACTIONS(1927), + [anon_sym_read] = ACTIONS(1927), + [anon_sym_workdir] = ACTIONS(1927), + [anon_sym_write] = ACTIONS(1927), + [anon_sym_from_json] = ACTIONS(1927), + [anon_sym_to_json] = ACTIONS(1927), + [anon_sym_to_string] = ACTIONS(1927), + [anon_sym_to_float] = ACTIONS(1927), + [anon_sym_bash] = ACTIONS(1927), + [anon_sym_fish] = ACTIONS(1927), + [anon_sym_raw] = ACTIONS(1927), + [anon_sym_sh] = ACTIONS(1927), + [anon_sym_zsh] = ACTIONS(1927), + [anon_sym_random] = ACTIONS(1927), + [anon_sym_random_boolean] = ACTIONS(1927), + [anon_sym_random_float] = ACTIONS(1927), + [anon_sym_random_integer] = ACTIONS(1927), + [anon_sym_columns] = ACTIONS(1927), + [anon_sym_rows] = ACTIONS(1927), + [anon_sym_reverse] = ACTIONS(1927), }, [532] = { - [sym_block] = STATE(606), - [sym_statement] = STATE(12), - [sym_expression] = STATE(583), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_logic] = STATE(631), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(567), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(2030), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(271), - [aux_sym_block_repeat1] = STATE(12), - [sym_identifier] = ACTIONS(55), + [sym_expression] = STATE(622), + [sym__expression_kind] = STATE(585), + [aux_sym__expression_list] = STATE(548), + [sym_value] = STATE(585), + [sym_boolean] = STATE(586), + [sym_list] = STATE(586), + [sym_map] = STATE(586), + [sym_index] = STATE(585), + [sym_math] = STATE(585), + [sym_logic] = STATE(585), + [sym_identifier_list] = STATE(1193), + [sym_table] = STATE(586), + [sym_function] = STATE(586), + [sym_function_call] = STATE(585), + [sym__context_defined_function] = STATE(587), + [sym_built_in_function] = STATE(587), + [sym__built_in_function_name] = STATE(429), + [sym_identifier] = ACTIONS(1315), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(59), - [sym_integer] = ACTIONS(61), - [sym_float] = ACTIONS(63), - [sym_string] = ACTIONS(63), - [anon_sym_true] = ACTIONS(65), - [anon_sym_false] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(67), - [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_asyncfor] = ACTIONS(127), - [anon_sym_transform] = ACTIONS(129), - [anon_sym_filter] = ACTIONS(131), - [anon_sym_find] = ACTIONS(133), - [anon_sym_remove] = ACTIONS(135), - [anon_sym_reduce] = ACTIONS(137), - [anon_sym_select] = ACTIONS(139), - [anon_sym_insert] = ACTIONS(141), - [anon_sym_async] = ACTIONS(143), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(147), - [anon_sym_assert_equal] = ACTIONS(147), - [anon_sym_download] = ACTIONS(147), - [anon_sym_help] = ACTIONS(147), - [anon_sym_length] = ACTIONS(147), - [anon_sym_output] = ACTIONS(147), - [anon_sym_output_error] = ACTIONS(147), - [anon_sym_type] = ACTIONS(147), - [anon_sym_append] = ACTIONS(147), - [anon_sym_metadata] = ACTIONS(147), - [anon_sym_move] = ACTIONS(147), - [anon_sym_read] = ACTIONS(147), - [anon_sym_workdir] = ACTIONS(147), - [anon_sym_write] = ACTIONS(147), - [anon_sym_from_json] = ACTIONS(147), - [anon_sym_to_json] = ACTIONS(147), - [anon_sym_to_string] = ACTIONS(147), - [anon_sym_to_float] = ACTIONS(147), - [anon_sym_bash] = ACTIONS(147), - [anon_sym_fish] = ACTIONS(147), - [anon_sym_raw] = ACTIONS(147), - [anon_sym_sh] = ACTIONS(147), - [anon_sym_zsh] = ACTIONS(147), - [anon_sym_random] = ACTIONS(147), - [anon_sym_random_boolean] = ACTIONS(147), - [anon_sym_random_float] = ACTIONS(147), - [anon_sym_random_integer] = ACTIONS(147), - [anon_sym_columns] = ACTIONS(147), - [anon_sym_rows] = ACTIONS(147), - [anon_sym_reverse] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2049), + [sym_integer] = ACTIONS(2051), + [sym_float] = ACTIONS(2053), + [sym_string] = ACTIONS(2053), + [anon_sym_true] = ACTIONS(2055), + [anon_sym_false] = ACTIONS(2055), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_COLON] = ACTIONS(1313), + [anon_sym_PLUS] = ACTIONS(1313), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_PERCENT] = ACTIONS(1313), + [anon_sym_EQ_EQ] = ACTIONS(1313), + [anon_sym_BANG_EQ] = ACTIONS(1313), + [anon_sym_AMP_AMP] = ACTIONS(1313), + [anon_sym_PIPE_PIPE] = ACTIONS(1313), + [anon_sym_GT] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(1315), + [anon_sym_GT_EQ] = ACTIONS(1313), + [anon_sym_LT_EQ] = ACTIONS(1313), + [anon_sym_EQ_GT] = ACTIONS(2059), + [anon_sym_in] = ACTIONS(2291), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2061), + [anon_sym_assert] = ACTIONS(1927), + [anon_sym_assert_equal] = ACTIONS(1927), + [anon_sym_download] = ACTIONS(1927), + [anon_sym_help] = ACTIONS(1927), + [anon_sym_length] = ACTIONS(1927), + [anon_sym_output] = ACTIONS(1927), + [anon_sym_output_error] = ACTIONS(1927), + [anon_sym_type] = ACTIONS(1927), + [anon_sym_append] = ACTIONS(1927), + [anon_sym_metadata] = ACTIONS(1927), + [anon_sym_move] = ACTIONS(1927), + [anon_sym_read] = ACTIONS(1927), + [anon_sym_workdir] = ACTIONS(1927), + [anon_sym_write] = ACTIONS(1927), + [anon_sym_from_json] = ACTIONS(1927), + [anon_sym_to_json] = ACTIONS(1927), + [anon_sym_to_string] = ACTIONS(1927), + [anon_sym_to_float] = ACTIONS(1927), + [anon_sym_bash] = ACTIONS(1927), + [anon_sym_fish] = ACTIONS(1927), + [anon_sym_raw] = ACTIONS(1927), + [anon_sym_sh] = ACTIONS(1927), + [anon_sym_zsh] = ACTIONS(1927), + [anon_sym_random] = ACTIONS(1927), + [anon_sym_random_boolean] = ACTIONS(1927), + [anon_sym_random_float] = ACTIONS(1927), + [anon_sym_random_integer] = ACTIONS(1927), + [anon_sym_columns] = ACTIONS(1927), + [anon_sym_rows] = ACTIONS(1927), + [anon_sym_reverse] = ACTIONS(1927), }, [533] = { - [sym_block] = STATE(603), - [sym_statement] = STATE(12), - [sym_expression] = STATE(583), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_logic] = STATE(631), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(567), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(2030), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(271), - [aux_sym_block_repeat1] = STATE(12), - [sym_identifier] = ACTIONS(55), + [sym_expression] = STATE(622), + [sym__expression_kind] = STATE(585), + [aux_sym__expression_list] = STATE(548), + [sym_value] = STATE(585), + [sym_boolean] = STATE(586), + [sym_list] = STATE(586), + [sym_map] = STATE(586), + [sym_index] = STATE(585), + [sym_math] = STATE(585), + [sym_logic] = STATE(585), + [sym_identifier_list] = STATE(1193), + [sym_table] = STATE(586), + [sym_function] = STATE(586), + [sym_function_call] = STATE(585), + [sym__context_defined_function] = STATE(587), + [sym_built_in_function] = STATE(587), + [sym__built_in_function_name] = STATE(429), + [sym_identifier] = ACTIONS(1315), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(59), - [sym_integer] = ACTIONS(61), - [sym_float] = ACTIONS(63), - [sym_string] = ACTIONS(63), - [anon_sym_true] = ACTIONS(65), - [anon_sym_false] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(67), - [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_asyncfor] = ACTIONS(127), - [anon_sym_transform] = ACTIONS(129), - [anon_sym_filter] = ACTIONS(131), - [anon_sym_find] = ACTIONS(133), - [anon_sym_remove] = ACTIONS(135), - [anon_sym_reduce] = ACTIONS(137), - [anon_sym_select] = ACTIONS(139), - [anon_sym_insert] = ACTIONS(141), - [anon_sym_async] = ACTIONS(143), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(147), - [anon_sym_assert_equal] = ACTIONS(147), - [anon_sym_download] = ACTIONS(147), - [anon_sym_help] = ACTIONS(147), - [anon_sym_length] = ACTIONS(147), - [anon_sym_output] = ACTIONS(147), - [anon_sym_output_error] = ACTIONS(147), - [anon_sym_type] = ACTIONS(147), - [anon_sym_append] = ACTIONS(147), - [anon_sym_metadata] = ACTIONS(147), - [anon_sym_move] = ACTIONS(147), - [anon_sym_read] = ACTIONS(147), - [anon_sym_workdir] = ACTIONS(147), - [anon_sym_write] = ACTIONS(147), - [anon_sym_from_json] = ACTIONS(147), - [anon_sym_to_json] = ACTIONS(147), - [anon_sym_to_string] = ACTIONS(147), - [anon_sym_to_float] = ACTIONS(147), - [anon_sym_bash] = ACTIONS(147), - [anon_sym_fish] = ACTIONS(147), - [anon_sym_raw] = ACTIONS(147), - [anon_sym_sh] = ACTIONS(147), - [anon_sym_zsh] = ACTIONS(147), - [anon_sym_random] = ACTIONS(147), - [anon_sym_random_boolean] = ACTIONS(147), - [anon_sym_random_float] = ACTIONS(147), - [anon_sym_random_integer] = ACTIONS(147), - [anon_sym_columns] = ACTIONS(147), - [anon_sym_rows] = ACTIONS(147), - [anon_sym_reverse] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2049), + [sym_integer] = ACTIONS(2051), + [sym_float] = ACTIONS(2053), + [sym_string] = ACTIONS(2053), + [anon_sym_true] = ACTIONS(2055), + [anon_sym_false] = ACTIONS(2055), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_COLON] = ACTIONS(1313), + [anon_sym_PLUS] = ACTIONS(1313), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_PERCENT] = ACTIONS(1313), + [anon_sym_EQ_EQ] = ACTIONS(1313), + [anon_sym_BANG_EQ] = ACTIONS(1313), + [anon_sym_AMP_AMP] = ACTIONS(1313), + [anon_sym_PIPE_PIPE] = ACTIONS(1313), + [anon_sym_GT] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(1315), + [anon_sym_GT_EQ] = ACTIONS(1313), + [anon_sym_LT_EQ] = ACTIONS(1313), + [anon_sym_EQ_GT] = ACTIONS(2059), + [anon_sym_in] = ACTIONS(2293), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2061), + [anon_sym_assert] = ACTIONS(1927), + [anon_sym_assert_equal] = ACTIONS(1927), + [anon_sym_download] = ACTIONS(1927), + [anon_sym_help] = ACTIONS(1927), + [anon_sym_length] = ACTIONS(1927), + [anon_sym_output] = ACTIONS(1927), + [anon_sym_output_error] = ACTIONS(1927), + [anon_sym_type] = ACTIONS(1927), + [anon_sym_append] = ACTIONS(1927), + [anon_sym_metadata] = ACTIONS(1927), + [anon_sym_move] = ACTIONS(1927), + [anon_sym_read] = ACTIONS(1927), + [anon_sym_workdir] = ACTIONS(1927), + [anon_sym_write] = ACTIONS(1927), + [anon_sym_from_json] = ACTIONS(1927), + [anon_sym_to_json] = ACTIONS(1927), + [anon_sym_to_string] = ACTIONS(1927), + [anon_sym_to_float] = ACTIONS(1927), + [anon_sym_bash] = ACTIONS(1927), + [anon_sym_fish] = ACTIONS(1927), + [anon_sym_raw] = ACTIONS(1927), + [anon_sym_sh] = ACTIONS(1927), + [anon_sym_zsh] = ACTIONS(1927), + [anon_sym_random] = ACTIONS(1927), + [anon_sym_random_boolean] = ACTIONS(1927), + [anon_sym_random_float] = ACTIONS(1927), + [anon_sym_random_integer] = ACTIONS(1927), + [anon_sym_columns] = ACTIONS(1927), + [anon_sym_rows] = ACTIONS(1927), + [anon_sym_reverse] = ACTIONS(1927), }, [534] = { - [sym_statement] = STATE(865), - [sym_expression] = STATE(756), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(657), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(627), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1752), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(338), - [sym_identifier] = ACTIONS(875), + [sym_expression] = STATE(622), + [sym__expression_kind] = STATE(585), + [aux_sym__expression_list] = STATE(548), + [sym_value] = STATE(585), + [sym_boolean] = STATE(586), + [sym_list] = STATE(586), + [sym_map] = STATE(586), + [sym_index] = STATE(585), + [sym_math] = STATE(585), + [sym_logic] = STATE(585), + [sym_identifier_list] = STATE(1193), + [sym_table] = STATE(586), + [sym_function] = STATE(586), + [sym_function_call] = STATE(585), + [sym__context_defined_function] = STATE(587), + [sym_built_in_function] = STATE(587), + [sym__built_in_function_name] = STATE(429), + [sym_identifier] = ACTIONS(1315), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2383), - [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(245), - [anon_sym_match] = ACTIONS(881), - [anon_sym_EQ_GT] = ACTIONS(883), - [anon_sym_while] = ACTIONS(885), - [anon_sym_for] = ACTIONS(887), - [anon_sym_asyncfor] = ACTIONS(889), - [anon_sym_transform] = ACTIONS(891), - [anon_sym_filter] = ACTIONS(893), - [anon_sym_find] = ACTIONS(895), - [anon_sym_remove] = ACTIONS(897), - [anon_sym_reduce] = ACTIONS(899), - [anon_sym_select] = ACTIONS(901), - [anon_sym_insert] = ACTIONS(903), - [anon_sym_async] = ACTIONS(905), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(907), - [anon_sym_assert] = ACTIONS(909), - [anon_sym_assert_equal] = ACTIONS(909), - [anon_sym_download] = ACTIONS(909), - [anon_sym_help] = ACTIONS(909), - [anon_sym_length] = ACTIONS(909), - [anon_sym_output] = ACTIONS(909), - [anon_sym_output_error] = ACTIONS(909), - [anon_sym_type] = ACTIONS(909), - [anon_sym_append] = ACTIONS(909), - [anon_sym_metadata] = ACTIONS(909), - [anon_sym_move] = ACTIONS(909), - [anon_sym_read] = ACTIONS(909), - [anon_sym_workdir] = ACTIONS(909), - [anon_sym_write] = ACTIONS(909), - [anon_sym_from_json] = ACTIONS(909), - [anon_sym_to_json] = ACTIONS(909), - [anon_sym_to_string] = ACTIONS(909), - [anon_sym_to_float] = ACTIONS(909), - [anon_sym_bash] = ACTIONS(909), - [anon_sym_fish] = ACTIONS(909), - [anon_sym_raw] = ACTIONS(909), - [anon_sym_sh] = ACTIONS(909), - [anon_sym_zsh] = ACTIONS(909), - [anon_sym_random] = ACTIONS(909), - [anon_sym_random_boolean] = ACTIONS(909), - [anon_sym_random_float] = ACTIONS(909), - [anon_sym_random_integer] = ACTIONS(909), - [anon_sym_columns] = ACTIONS(909), - [anon_sym_rows] = ACTIONS(909), - [anon_sym_reverse] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2049), + [sym_integer] = ACTIONS(2051), + [sym_float] = ACTIONS(2053), + [sym_string] = ACTIONS(2053), + [anon_sym_true] = ACTIONS(2055), + [anon_sym_false] = ACTIONS(2055), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_COLON] = ACTIONS(1313), + [anon_sym_PLUS] = ACTIONS(1313), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_PERCENT] = ACTIONS(1313), + [anon_sym_EQ_EQ] = ACTIONS(1313), + [anon_sym_BANG_EQ] = ACTIONS(1313), + [anon_sym_AMP_AMP] = ACTIONS(1313), + [anon_sym_PIPE_PIPE] = ACTIONS(1313), + [anon_sym_GT] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(1315), + [anon_sym_GT_EQ] = ACTIONS(1313), + [anon_sym_LT_EQ] = ACTIONS(1313), + [anon_sym_EQ_GT] = ACTIONS(2059), + [anon_sym_in] = ACTIONS(2295), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2061), + [anon_sym_assert] = ACTIONS(1927), + [anon_sym_assert_equal] = ACTIONS(1927), + [anon_sym_download] = ACTIONS(1927), + [anon_sym_help] = ACTIONS(1927), + [anon_sym_length] = ACTIONS(1927), + [anon_sym_output] = ACTIONS(1927), + [anon_sym_output_error] = ACTIONS(1927), + [anon_sym_type] = ACTIONS(1927), + [anon_sym_append] = ACTIONS(1927), + [anon_sym_metadata] = ACTIONS(1927), + [anon_sym_move] = ACTIONS(1927), + [anon_sym_read] = ACTIONS(1927), + [anon_sym_workdir] = ACTIONS(1927), + [anon_sym_write] = ACTIONS(1927), + [anon_sym_from_json] = ACTIONS(1927), + [anon_sym_to_json] = ACTIONS(1927), + [anon_sym_to_string] = ACTIONS(1927), + [anon_sym_to_float] = ACTIONS(1927), + [anon_sym_bash] = ACTIONS(1927), + [anon_sym_fish] = ACTIONS(1927), + [anon_sym_raw] = ACTIONS(1927), + [anon_sym_sh] = ACTIONS(1927), + [anon_sym_zsh] = ACTIONS(1927), + [anon_sym_random] = ACTIONS(1927), + [anon_sym_random_boolean] = ACTIONS(1927), + [anon_sym_random_float] = ACTIONS(1927), + [anon_sym_random_integer] = ACTIONS(1927), + [anon_sym_columns] = ACTIONS(1927), + [anon_sym_rows] = ACTIONS(1927), + [anon_sym_reverse] = ACTIONS(1927), }, [535] = { - [sym_statement] = STATE(865), - [sym_expression] = STATE(853), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(776), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(710), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1823), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(366), - [sym_identifier] = ACTIONS(1436), + [sym_math_operator] = STATE(851), + [sym_logic_operator] = STATE(857), + [ts_builtin_sym_end] = ACTIONS(2041), + [sym_identifier] = ACTIONS(2043), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2383), - [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(843), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_EQ_GT] = ACTIONS(1442), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_for] = ACTIONS(1446), - [anon_sym_asyncfor] = ACTIONS(1448), - [anon_sym_transform] = ACTIONS(1450), - [anon_sym_filter] = ACTIONS(1452), - [anon_sym_find] = ACTIONS(1454), - [anon_sym_remove] = ACTIONS(1456), - [anon_sym_reduce] = ACTIONS(1458), - [anon_sym_select] = ACTIONS(1460), - [anon_sym_insert] = ACTIONS(1462), - [anon_sym_async] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(1466), - [anon_sym_assert] = ACTIONS(1468), - [anon_sym_assert_equal] = ACTIONS(1468), - [anon_sym_download] = ACTIONS(1468), - [anon_sym_help] = ACTIONS(1468), - [anon_sym_length] = ACTIONS(1468), - [anon_sym_output] = ACTIONS(1468), - [anon_sym_output_error] = ACTIONS(1468), - [anon_sym_type] = ACTIONS(1468), - [anon_sym_append] = ACTIONS(1468), - [anon_sym_metadata] = ACTIONS(1468), - [anon_sym_move] = ACTIONS(1468), - [anon_sym_read] = ACTIONS(1468), - [anon_sym_workdir] = ACTIONS(1468), - [anon_sym_write] = ACTIONS(1468), - [anon_sym_from_json] = ACTIONS(1468), - [anon_sym_to_json] = ACTIONS(1468), - [anon_sym_to_string] = ACTIONS(1468), - [anon_sym_to_float] = ACTIONS(1468), - [anon_sym_bash] = ACTIONS(1468), - [anon_sym_fish] = ACTIONS(1468), - [anon_sym_raw] = ACTIONS(1468), - [anon_sym_sh] = ACTIONS(1468), - [anon_sym_zsh] = ACTIONS(1468), - [anon_sym_random] = ACTIONS(1468), - [anon_sym_random_boolean] = ACTIONS(1468), - [anon_sym_random_float] = ACTIONS(1468), - [anon_sym_random_integer] = ACTIONS(1468), - [anon_sym_columns] = ACTIONS(1468), - [anon_sym_rows] = ACTIONS(1468), - [anon_sym_reverse] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(2041), + [anon_sym_RBRACE] = ACTIONS(2041), + [anon_sym_SEMI] = ACTIONS(2297), + [anon_sym_LPAREN] = ACTIONS(2041), + [sym_integer] = ACTIONS(2043), + [sym_float] = ACTIONS(2041), + [sym_string] = ACTIONS(2041), + [anon_sym_true] = ACTIONS(2043), + [anon_sym_false] = ACTIONS(2043), + [anon_sym_LBRACK] = ACTIONS(2041), + [anon_sym_COLON] = ACTIONS(869), + [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(2043), + [anon_sym_match] = ACTIONS(2043), + [anon_sym_EQ_GT] = ACTIONS(2041), + [anon_sym_while] = ACTIONS(2043), + [anon_sym_for] = ACTIONS(2043), + [anon_sym_asyncfor] = ACTIONS(2041), + [anon_sym_transform] = ACTIONS(2043), + [anon_sym_filter] = ACTIONS(2043), + [anon_sym_find] = ACTIONS(2043), + [anon_sym_remove] = ACTIONS(2043), + [anon_sym_reduce] = ACTIONS(2043), + [anon_sym_select] = ACTIONS(2043), + [anon_sym_insert] = ACTIONS(2043), + [anon_sym_async] = ACTIONS(2043), + [anon_sym_PIPE] = ACTIONS(2043), + [anon_sym_table] = ACTIONS(2043), + [anon_sym_assert] = ACTIONS(2043), + [anon_sym_assert_equal] = ACTIONS(2043), + [anon_sym_download] = ACTIONS(2043), + [anon_sym_help] = ACTIONS(2043), + [anon_sym_length] = ACTIONS(2043), + [anon_sym_output] = ACTIONS(2043), + [anon_sym_output_error] = ACTIONS(2043), + [anon_sym_type] = ACTIONS(2043), + [anon_sym_append] = ACTIONS(2043), + [anon_sym_metadata] = ACTIONS(2043), + [anon_sym_move] = ACTIONS(2043), + [anon_sym_read] = ACTIONS(2043), + [anon_sym_workdir] = ACTIONS(2043), + [anon_sym_write] = ACTIONS(2043), + [anon_sym_from_json] = ACTIONS(2043), + [anon_sym_to_json] = ACTIONS(2043), + [anon_sym_to_string] = ACTIONS(2043), + [anon_sym_to_float] = ACTIONS(2043), + [anon_sym_bash] = ACTIONS(2043), + [anon_sym_fish] = ACTIONS(2043), + [anon_sym_raw] = ACTIONS(2043), + [anon_sym_sh] = ACTIONS(2043), + [anon_sym_zsh] = ACTIONS(2043), + [anon_sym_random] = ACTIONS(2043), + [anon_sym_random_boolean] = ACTIONS(2043), + [anon_sym_random_float] = ACTIONS(2043), + [anon_sym_random_integer] = ACTIONS(2043), + [anon_sym_columns] = ACTIONS(2043), + [anon_sym_rows] = ACTIONS(2043), + [anon_sym_reverse] = ACTIONS(2043), }, [536] = { - [sym_statement] = STATE(1064), - [sym_expression] = STATE(925), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(867), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(980), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [sym_identifier] = ACTIONS(5), + [sym_expression] = STATE(622), + [sym__expression_kind] = STATE(585), + [aux_sym__expression_list] = STATE(548), + [sym_value] = STATE(585), + [sym_boolean] = STATE(586), + [sym_list] = STATE(586), + [sym_map] = STATE(586), + [sym_index] = STATE(585), + [sym_math] = STATE(585), + [sym_logic] = STATE(585), + [sym_identifier_list] = STATE(1193), + [sym_table] = STATE(586), + [sym_function] = STATE(586), + [sym_function_call] = STATE(585), + [sym__context_defined_function] = STATE(587), + [sym_built_in_function] = STATE(587), + [sym__built_in_function_name] = STATE(429), + [sym_identifier] = ACTIONS(1315), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2383), - [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_asyncfor] = 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_async] = ACTIONS(45), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(49), - [anon_sym_assert] = ACTIONS(51), - [anon_sym_assert_equal] = ACTIONS(51), - [anon_sym_download] = ACTIONS(51), - [anon_sym_help] = ACTIONS(51), - [anon_sym_length] = ACTIONS(51), - [anon_sym_output] = ACTIONS(51), - [anon_sym_output_error] = ACTIONS(51), - [anon_sym_type] = ACTIONS(51), - [anon_sym_append] = ACTIONS(51), - [anon_sym_metadata] = ACTIONS(51), - [anon_sym_move] = ACTIONS(51), - [anon_sym_read] = ACTIONS(51), - [anon_sym_workdir] = ACTIONS(51), - [anon_sym_write] = ACTIONS(51), - [anon_sym_from_json] = ACTIONS(51), - [anon_sym_to_json] = ACTIONS(51), - [anon_sym_to_string] = ACTIONS(51), - [anon_sym_to_float] = ACTIONS(51), - [anon_sym_bash] = ACTIONS(51), - [anon_sym_fish] = ACTIONS(51), - [anon_sym_raw] = ACTIONS(51), - [anon_sym_sh] = ACTIONS(51), - [anon_sym_zsh] = ACTIONS(51), - [anon_sym_random] = ACTIONS(51), - [anon_sym_random_boolean] = ACTIONS(51), - [anon_sym_random_float] = ACTIONS(51), - [anon_sym_random_integer] = ACTIONS(51), - [anon_sym_columns] = ACTIONS(51), - [anon_sym_rows] = ACTIONS(51), - [anon_sym_reverse] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2049), + [sym_integer] = ACTIONS(2051), + [sym_float] = ACTIONS(2053), + [sym_string] = ACTIONS(2053), + [anon_sym_true] = ACTIONS(2055), + [anon_sym_false] = ACTIONS(2055), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_COLON] = ACTIONS(1313), + [anon_sym_PLUS] = ACTIONS(1313), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_PERCENT] = ACTIONS(1313), + [anon_sym_EQ_EQ] = ACTIONS(1313), + [anon_sym_BANG_EQ] = ACTIONS(1313), + [anon_sym_AMP_AMP] = ACTIONS(1313), + [anon_sym_PIPE_PIPE] = ACTIONS(1313), + [anon_sym_GT] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(1315), + [anon_sym_GT_EQ] = ACTIONS(1313), + [anon_sym_LT_EQ] = ACTIONS(1313), + [anon_sym_EQ_GT] = ACTIONS(2059), + [anon_sym_in] = ACTIONS(2299), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2061), + [anon_sym_assert] = ACTIONS(1927), + [anon_sym_assert_equal] = ACTIONS(1927), + [anon_sym_download] = ACTIONS(1927), + [anon_sym_help] = ACTIONS(1927), + [anon_sym_length] = ACTIONS(1927), + [anon_sym_output] = ACTIONS(1927), + [anon_sym_output_error] = ACTIONS(1927), + [anon_sym_type] = ACTIONS(1927), + [anon_sym_append] = ACTIONS(1927), + [anon_sym_metadata] = ACTIONS(1927), + [anon_sym_move] = ACTIONS(1927), + [anon_sym_read] = ACTIONS(1927), + [anon_sym_workdir] = ACTIONS(1927), + [anon_sym_write] = ACTIONS(1927), + [anon_sym_from_json] = ACTIONS(1927), + [anon_sym_to_json] = ACTIONS(1927), + [anon_sym_to_string] = ACTIONS(1927), + [anon_sym_to_float] = ACTIONS(1927), + [anon_sym_bash] = ACTIONS(1927), + [anon_sym_fish] = ACTIONS(1927), + [anon_sym_raw] = ACTIONS(1927), + [anon_sym_sh] = ACTIONS(1927), + [anon_sym_zsh] = ACTIONS(1927), + [anon_sym_random] = ACTIONS(1927), + [anon_sym_random_boolean] = ACTIONS(1927), + [anon_sym_random_float] = ACTIONS(1927), + [anon_sym_random_integer] = ACTIONS(1927), + [anon_sym_columns] = ACTIONS(1927), + [anon_sym_rows] = ACTIONS(1927), + [anon_sym_reverse] = ACTIONS(1927), }, [537] = { - [sym_statement] = STATE(1665), - [sym_expression] = STATE(1554), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1529), - [sym_math] = STATE(1539), - [sym_logic] = STATE(1539), - [sym_assignment] = STATE(1650), - [sym_if_else] = STATE(1650), - [sym_if] = STATE(1638), - [sym_match] = STATE(1650), - [sym_while] = STATE(1650), - [sym_for] = STATE(1650), - [sym_transform] = STATE(1650), - [sym_filter] = STATE(1650), - [sym_find] = STATE(1650), - [sym_remove] = STATE(1650), - [sym_reduce] = STATE(1650), - [sym_select] = STATE(1650), - [sym_insert] = STATE(1650), - [sym_async] = STATE(1650), - [sym_identifier_list] = STATE(1793), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(780), - [sym_identifier] = ACTIONS(3113), + [sym_expression] = STATE(622), + [sym__expression_kind] = STATE(585), + [aux_sym__expression_list] = STATE(548), + [sym_value] = STATE(585), + [sym_boolean] = STATE(586), + [sym_list] = STATE(586), + [sym_map] = STATE(586), + [sym_index] = STATE(585), + [sym_math] = STATE(585), + [sym_logic] = STATE(585), + [sym_identifier_list] = STATE(1193), + [sym_table] = STATE(586), + [sym_function] = STATE(586), + [sym_function_call] = STATE(585), + [sym__context_defined_function] = STATE(587), + [sym_built_in_function] = STATE(587), + [sym__built_in_function_name] = STATE(429), + [sym_identifier] = ACTIONS(1315), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_LPAREN] = ACTIONS(2455), - [sym_integer] = ACTIONS(2457), - [sym_float] = ACTIONS(2459), - [sym_string] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(2461), - [anon_sym_false] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_if] = ACTIONS(3115), - [anon_sym_match] = ACTIONS(3117), - [anon_sym_EQ_GT] = ACTIONS(3119), - [anon_sym_while] = ACTIONS(3121), - [anon_sym_for] = ACTIONS(3123), - [anon_sym_asyncfor] = ACTIONS(3125), - [anon_sym_transform] = ACTIONS(3127), - [anon_sym_filter] = ACTIONS(3129), - [anon_sym_find] = ACTIONS(3131), - [anon_sym_remove] = ACTIONS(3133), - [anon_sym_reduce] = ACTIONS(3135), - [anon_sym_select] = ACTIONS(3137), - [anon_sym_insert] = ACTIONS(3139), - [anon_sym_async] = ACTIONS(3141), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(3143), - [anon_sym_assert] = ACTIONS(3145), - [anon_sym_assert_equal] = ACTIONS(3145), - [anon_sym_download] = ACTIONS(3145), - [anon_sym_help] = ACTIONS(3145), - [anon_sym_length] = ACTIONS(3145), - [anon_sym_output] = ACTIONS(3145), - [anon_sym_output_error] = ACTIONS(3145), - [anon_sym_type] = ACTIONS(3145), - [anon_sym_append] = ACTIONS(3145), - [anon_sym_metadata] = ACTIONS(3145), - [anon_sym_move] = ACTIONS(3145), - [anon_sym_read] = ACTIONS(3145), - [anon_sym_workdir] = ACTIONS(3145), - [anon_sym_write] = ACTIONS(3145), - [anon_sym_from_json] = ACTIONS(3145), - [anon_sym_to_json] = ACTIONS(3145), - [anon_sym_to_string] = ACTIONS(3145), - [anon_sym_to_float] = ACTIONS(3145), - [anon_sym_bash] = ACTIONS(3145), - [anon_sym_fish] = ACTIONS(3145), - [anon_sym_raw] = ACTIONS(3145), - [anon_sym_sh] = ACTIONS(3145), - [anon_sym_zsh] = ACTIONS(3145), - [anon_sym_random] = ACTIONS(3145), - [anon_sym_random_boolean] = ACTIONS(3145), - [anon_sym_random_float] = ACTIONS(3145), - [anon_sym_random_integer] = ACTIONS(3145), - [anon_sym_columns] = ACTIONS(3145), - [anon_sym_rows] = ACTIONS(3145), - [anon_sym_reverse] = ACTIONS(3145), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2049), + [sym_integer] = ACTIONS(2051), + [sym_float] = ACTIONS(2053), + [sym_string] = ACTIONS(2053), + [anon_sym_true] = ACTIONS(2055), + [anon_sym_false] = ACTIONS(2055), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_COLON] = ACTIONS(1313), + [anon_sym_PLUS] = ACTIONS(1313), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_PERCENT] = ACTIONS(1313), + [anon_sym_EQ_EQ] = ACTIONS(1313), + [anon_sym_BANG_EQ] = ACTIONS(1313), + [anon_sym_AMP_AMP] = ACTIONS(1313), + [anon_sym_PIPE_PIPE] = ACTIONS(1313), + [anon_sym_GT] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(1315), + [anon_sym_GT_EQ] = ACTIONS(1313), + [anon_sym_LT_EQ] = ACTIONS(1313), + [anon_sym_EQ_GT] = ACTIONS(2059), + [anon_sym_in] = ACTIONS(2301), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2061), + [anon_sym_assert] = ACTIONS(1927), + [anon_sym_assert_equal] = ACTIONS(1927), + [anon_sym_download] = ACTIONS(1927), + [anon_sym_help] = ACTIONS(1927), + [anon_sym_length] = ACTIONS(1927), + [anon_sym_output] = ACTIONS(1927), + [anon_sym_output_error] = ACTIONS(1927), + [anon_sym_type] = ACTIONS(1927), + [anon_sym_append] = ACTIONS(1927), + [anon_sym_metadata] = ACTIONS(1927), + [anon_sym_move] = ACTIONS(1927), + [anon_sym_read] = ACTIONS(1927), + [anon_sym_workdir] = ACTIONS(1927), + [anon_sym_write] = ACTIONS(1927), + [anon_sym_from_json] = ACTIONS(1927), + [anon_sym_to_json] = ACTIONS(1927), + [anon_sym_to_string] = ACTIONS(1927), + [anon_sym_to_float] = ACTIONS(1927), + [anon_sym_bash] = ACTIONS(1927), + [anon_sym_fish] = ACTIONS(1927), + [anon_sym_raw] = ACTIONS(1927), + [anon_sym_sh] = ACTIONS(1927), + [anon_sym_zsh] = ACTIONS(1927), + [anon_sym_random] = ACTIONS(1927), + [anon_sym_random_boolean] = ACTIONS(1927), + [anon_sym_random_float] = ACTIONS(1927), + [anon_sym_random_integer] = ACTIONS(1927), + [anon_sym_columns] = ACTIONS(1927), + [anon_sym_rows] = ACTIONS(1927), + [anon_sym_reverse] = ACTIONS(1927), }, [538] = { - [sym_statement] = STATE(596), - [sym_expression] = STATE(663), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_logic] = STATE(631), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(637), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(1998), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(296), - [sym_identifier] = ACTIONS(55), + [sym_expression] = STATE(622), + [sym__expression_kind] = STATE(585), + [aux_sym__expression_list] = STATE(548), + [sym_value] = STATE(585), + [sym_boolean] = STATE(586), + [sym_list] = STATE(586), + [sym_map] = STATE(586), + [sym_index] = STATE(585), + [sym_math] = STATE(585), + [sym_logic] = STATE(585), + [sym_identifier_list] = STATE(1193), + [sym_table] = STATE(586), + [sym_function] = STATE(586), + [sym_function_call] = STATE(585), + [sym__context_defined_function] = STATE(587), + [sym_built_in_function] = STATE(587), + [sym__built_in_function_name] = STATE(429), + [sym_identifier] = ACTIONS(1315), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2445), - [anon_sym_LPAREN] = ACTIONS(59), - [sym_integer] = ACTIONS(61), - [sym_float] = ACTIONS(63), - [sym_string] = ACTIONS(63), - [anon_sym_true] = ACTIONS(65), - [anon_sym_false] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_if] = ACTIONS(311), - [anon_sym_match] = ACTIONS(313), - [anon_sym_EQ_GT] = ACTIONS(315), - [anon_sym_while] = ACTIONS(317), - [anon_sym_for] = ACTIONS(319), - [anon_sym_asyncfor] = ACTIONS(321), - [anon_sym_transform] = ACTIONS(323), - [anon_sym_filter] = ACTIONS(325), - [anon_sym_find] = ACTIONS(327), - [anon_sym_remove] = ACTIONS(329), - [anon_sym_reduce] = ACTIONS(331), - [anon_sym_select] = ACTIONS(333), - [anon_sym_insert] = ACTIONS(335), - [anon_sym_async] = ACTIONS(337), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(339), - [anon_sym_assert] = ACTIONS(341), - [anon_sym_assert_equal] = ACTIONS(341), - [anon_sym_download] = ACTIONS(341), - [anon_sym_help] = ACTIONS(341), - [anon_sym_length] = ACTIONS(341), - [anon_sym_output] = ACTIONS(341), - [anon_sym_output_error] = ACTIONS(341), - [anon_sym_type] = ACTIONS(341), - [anon_sym_append] = ACTIONS(341), - [anon_sym_metadata] = ACTIONS(341), - [anon_sym_move] = ACTIONS(341), - [anon_sym_read] = ACTIONS(341), - [anon_sym_workdir] = ACTIONS(341), - [anon_sym_write] = ACTIONS(341), - [anon_sym_from_json] = ACTIONS(341), - [anon_sym_to_json] = ACTIONS(341), - [anon_sym_to_string] = ACTIONS(341), - [anon_sym_to_float] = ACTIONS(341), - [anon_sym_bash] = ACTIONS(341), - [anon_sym_fish] = ACTIONS(341), - [anon_sym_raw] = ACTIONS(341), - [anon_sym_sh] = ACTIONS(341), - [anon_sym_zsh] = ACTIONS(341), - [anon_sym_random] = ACTIONS(341), - [anon_sym_random_boolean] = ACTIONS(341), - [anon_sym_random_float] = ACTIONS(341), - [anon_sym_random_integer] = ACTIONS(341), - [anon_sym_columns] = ACTIONS(341), - [anon_sym_rows] = ACTIONS(341), - [anon_sym_reverse] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2049), + [sym_integer] = ACTIONS(2051), + [sym_float] = ACTIONS(2053), + [sym_string] = ACTIONS(2053), + [anon_sym_true] = ACTIONS(2055), + [anon_sym_false] = ACTIONS(2055), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_COLON] = ACTIONS(1313), + [anon_sym_PLUS] = ACTIONS(1313), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_PERCENT] = ACTIONS(1313), + [anon_sym_EQ_EQ] = ACTIONS(1313), + [anon_sym_BANG_EQ] = ACTIONS(1313), + [anon_sym_AMP_AMP] = ACTIONS(1313), + [anon_sym_PIPE_PIPE] = ACTIONS(1313), + [anon_sym_GT] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(1315), + [anon_sym_GT_EQ] = ACTIONS(1313), + [anon_sym_LT_EQ] = ACTIONS(1313), + [anon_sym_EQ_GT] = ACTIONS(2059), + [anon_sym_in] = ACTIONS(2303), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2061), + [anon_sym_assert] = ACTIONS(1927), + [anon_sym_assert_equal] = ACTIONS(1927), + [anon_sym_download] = ACTIONS(1927), + [anon_sym_help] = ACTIONS(1927), + [anon_sym_length] = ACTIONS(1927), + [anon_sym_output] = ACTIONS(1927), + [anon_sym_output_error] = ACTIONS(1927), + [anon_sym_type] = ACTIONS(1927), + [anon_sym_append] = ACTIONS(1927), + [anon_sym_metadata] = ACTIONS(1927), + [anon_sym_move] = ACTIONS(1927), + [anon_sym_read] = ACTIONS(1927), + [anon_sym_workdir] = ACTIONS(1927), + [anon_sym_write] = ACTIONS(1927), + [anon_sym_from_json] = ACTIONS(1927), + [anon_sym_to_json] = ACTIONS(1927), + [anon_sym_to_string] = ACTIONS(1927), + [anon_sym_to_float] = ACTIONS(1927), + [anon_sym_bash] = ACTIONS(1927), + [anon_sym_fish] = ACTIONS(1927), + [anon_sym_raw] = ACTIONS(1927), + [anon_sym_sh] = ACTIONS(1927), + [anon_sym_zsh] = ACTIONS(1927), + [anon_sym_random] = ACTIONS(1927), + [anon_sym_random_boolean] = ACTIONS(1927), + [anon_sym_random_float] = ACTIONS(1927), + [anon_sym_random_integer] = ACTIONS(1927), + [anon_sym_columns] = ACTIONS(1927), + [anon_sym_rows] = ACTIONS(1927), + [anon_sym_reverse] = ACTIONS(1927), }, [539] = { - [sym_statement] = STATE(865), - [sym_expression] = STATE(824), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(739), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(653), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [sym_identifier] = ACTIONS(1198), + [sym_expression] = STATE(622), + [sym__expression_kind] = STATE(585), + [aux_sym__expression_list] = STATE(548), + [sym_value] = STATE(585), + [sym_boolean] = STATE(586), + [sym_list] = STATE(586), + [sym_map] = STATE(586), + [sym_index] = STATE(585), + [sym_math] = STATE(585), + [sym_logic] = STATE(585), + [sym_identifier_list] = STATE(1193), + [sym_table] = STATE(586), + [sym_function] = STATE(586), + [sym_function_call] = STATE(585), + [sym__context_defined_function] = STATE(587), + [sym_built_in_function] = STATE(587), + [sym__built_in_function_name] = STATE(429), + [sym_identifier] = ACTIONS(1315), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2383), - [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(627), - [anon_sym_match] = ACTIONS(1202), - [anon_sym_EQ_GT] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(1206), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_asyncfor] = ACTIONS(1210), - [anon_sym_transform] = ACTIONS(1212), - [anon_sym_filter] = ACTIONS(1214), - [anon_sym_find] = ACTIONS(1216), - [anon_sym_remove] = ACTIONS(1218), - [anon_sym_reduce] = ACTIONS(1220), - [anon_sym_select] = ACTIONS(1222), - [anon_sym_insert] = ACTIONS(1224), - [anon_sym_async] = ACTIONS(1226), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(1228), - [anon_sym_assert] = ACTIONS(1230), - [anon_sym_assert_equal] = ACTIONS(1230), - [anon_sym_download] = ACTIONS(1230), - [anon_sym_help] = ACTIONS(1230), - [anon_sym_length] = ACTIONS(1230), - [anon_sym_output] = ACTIONS(1230), - [anon_sym_output_error] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_append] = ACTIONS(1230), - [anon_sym_metadata] = ACTIONS(1230), - [anon_sym_move] = ACTIONS(1230), - [anon_sym_read] = ACTIONS(1230), - [anon_sym_workdir] = ACTIONS(1230), - [anon_sym_write] = ACTIONS(1230), - [anon_sym_from_json] = ACTIONS(1230), - [anon_sym_to_json] = ACTIONS(1230), - [anon_sym_to_string] = ACTIONS(1230), - [anon_sym_to_float] = ACTIONS(1230), - [anon_sym_bash] = ACTIONS(1230), - [anon_sym_fish] = ACTIONS(1230), - [anon_sym_raw] = ACTIONS(1230), - [anon_sym_sh] = ACTIONS(1230), - [anon_sym_zsh] = ACTIONS(1230), - [anon_sym_random] = ACTIONS(1230), - [anon_sym_random_boolean] = ACTIONS(1230), - [anon_sym_random_float] = ACTIONS(1230), - [anon_sym_random_integer] = ACTIONS(1230), - [anon_sym_columns] = ACTIONS(1230), - [anon_sym_rows] = ACTIONS(1230), - [anon_sym_reverse] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2049), + [sym_integer] = ACTIONS(2051), + [sym_float] = ACTIONS(2053), + [sym_string] = ACTIONS(2053), + [anon_sym_true] = ACTIONS(2055), + [anon_sym_false] = ACTIONS(2055), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_COLON] = ACTIONS(1313), + [anon_sym_PLUS] = ACTIONS(1313), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_PERCENT] = ACTIONS(1313), + [anon_sym_EQ_EQ] = ACTIONS(1313), + [anon_sym_BANG_EQ] = ACTIONS(1313), + [anon_sym_AMP_AMP] = ACTIONS(1313), + [anon_sym_PIPE_PIPE] = ACTIONS(1313), + [anon_sym_GT] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(1315), + [anon_sym_GT_EQ] = ACTIONS(1313), + [anon_sym_LT_EQ] = ACTIONS(1313), + [anon_sym_EQ_GT] = ACTIONS(2059), + [anon_sym_in] = ACTIONS(2305), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2061), + [anon_sym_assert] = ACTIONS(1927), + [anon_sym_assert_equal] = ACTIONS(1927), + [anon_sym_download] = ACTIONS(1927), + [anon_sym_help] = ACTIONS(1927), + [anon_sym_length] = ACTIONS(1927), + [anon_sym_output] = ACTIONS(1927), + [anon_sym_output_error] = ACTIONS(1927), + [anon_sym_type] = ACTIONS(1927), + [anon_sym_append] = ACTIONS(1927), + [anon_sym_metadata] = ACTIONS(1927), + [anon_sym_move] = ACTIONS(1927), + [anon_sym_read] = ACTIONS(1927), + [anon_sym_workdir] = ACTIONS(1927), + [anon_sym_write] = ACTIONS(1927), + [anon_sym_from_json] = ACTIONS(1927), + [anon_sym_to_json] = ACTIONS(1927), + [anon_sym_to_string] = ACTIONS(1927), + [anon_sym_to_float] = ACTIONS(1927), + [anon_sym_bash] = ACTIONS(1927), + [anon_sym_fish] = ACTIONS(1927), + [anon_sym_raw] = ACTIONS(1927), + [anon_sym_sh] = ACTIONS(1927), + [anon_sym_zsh] = ACTIONS(1927), + [anon_sym_random] = ACTIONS(1927), + [anon_sym_random_boolean] = ACTIONS(1927), + [anon_sym_random_float] = ACTIONS(1927), + [anon_sym_random_integer] = ACTIONS(1927), + [anon_sym_columns] = ACTIONS(1927), + [anon_sym_rows] = ACTIONS(1927), + [anon_sym_reverse] = ACTIONS(1927), }, [540] = { - [sym_statement] = STATE(1027), - [sym_expression] = STATE(877), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(782), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_assignment] = STATE(1023), - [sym_if_else] = STATE(1023), - [sym_if] = STATE(978), - [sym_match] = STATE(1023), - [sym_while] = STATE(1023), - [sym_for] = STATE(1023), - [sym_transform] = STATE(1023), - [sym_filter] = STATE(1023), - [sym_find] = STATE(1023), - [sym_remove] = STATE(1023), - [sym_reduce] = STATE(1023), - [sym_select] = STATE(1023), - [sym_insert] = STATE(1023), - [sym_async] = STATE(1023), - [sym_identifier_list] = STATE(1926), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(351), - [sym_identifier] = ACTIONS(1639), + [sym_expression] = STATE(622), + [sym__expression_kind] = STATE(585), + [aux_sym__expression_list] = STATE(540), + [sym_value] = STATE(585), + [sym_boolean] = STATE(586), + [sym_list] = STATE(586), + [sym_map] = STATE(586), + [sym_index] = STATE(585), + [sym_math] = STATE(585), + [sym_logic] = STATE(585), + [sym_identifier_list] = STATE(1193), + [sym_table] = STATE(586), + [sym_function] = STATE(586), + [sym_function_call] = STATE(585), + [sym__context_defined_function] = STATE(587), + [sym_built_in_function] = STATE(587), + [sym__built_in_function_name] = STATE(429), + [sym_identifier] = ACTIONS(2097), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2626), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(1641), - [anon_sym_EQ_GT] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1643), - [anon_sym_for] = ACTIONS(1645), - [anon_sym_asyncfor] = ACTIONS(1647), - [anon_sym_transform] = ACTIONS(1649), - [anon_sym_filter] = ACTIONS(1651), - [anon_sym_find] = ACTIONS(1653), - [anon_sym_remove] = ACTIONS(1655), - [anon_sym_reduce] = ACTIONS(1657), - [anon_sym_select] = ACTIONS(1659), - [anon_sym_insert] = ACTIONS(1308), - [anon_sym_async] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(1312), - [anon_sym_assert] = ACTIONS(1314), - [anon_sym_assert_equal] = ACTIONS(1314), - [anon_sym_download] = ACTIONS(1314), - [anon_sym_help] = ACTIONS(1314), - [anon_sym_length] = ACTIONS(1314), - [anon_sym_output] = ACTIONS(1314), - [anon_sym_output_error] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_append] = ACTIONS(1314), - [anon_sym_metadata] = ACTIONS(1314), - [anon_sym_move] = ACTIONS(1314), - [anon_sym_read] = ACTIONS(1314), - [anon_sym_workdir] = ACTIONS(1314), - [anon_sym_write] = ACTIONS(1314), - [anon_sym_from_json] = ACTIONS(1314), - [anon_sym_to_json] = ACTIONS(1314), - [anon_sym_to_string] = ACTIONS(1314), - [anon_sym_to_float] = ACTIONS(1314), - [anon_sym_bash] = ACTIONS(1314), - [anon_sym_fish] = ACTIONS(1314), - [anon_sym_raw] = ACTIONS(1314), - [anon_sym_sh] = ACTIONS(1314), - [anon_sym_zsh] = ACTIONS(1314), - [anon_sym_random] = ACTIONS(1314), - [anon_sym_random_boolean] = ACTIONS(1314), - [anon_sym_random_float] = ACTIONS(1314), - [anon_sym_random_integer] = ACTIONS(1314), - [anon_sym_columns] = ACTIONS(1314), - [anon_sym_rows] = ACTIONS(1314), - [anon_sym_reverse] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_LPAREN] = ACTIONS(2103), + [anon_sym_RPAREN] = ACTIONS(1361), + [sym_integer] = ACTIONS(2106), + [sym_float] = ACTIONS(2109), + [sym_string] = ACTIONS(2109), + [anon_sym_true] = ACTIONS(2112), + [anon_sym_false] = ACTIONS(2112), + [anon_sym_LBRACK] = ACTIONS(2115), + [anon_sym_COLON] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1361), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_SLASH] = ACTIONS(1361), + [anon_sym_PERCENT] = ACTIONS(1361), + [anon_sym_EQ_EQ] = ACTIONS(1361), + [anon_sym_BANG_EQ] = ACTIONS(1361), + [anon_sym_AMP_AMP] = ACTIONS(1361), + [anon_sym_PIPE_PIPE] = ACTIONS(1361), + [anon_sym_GT] = ACTIONS(1384), + [anon_sym_LT] = ACTIONS(1384), + [anon_sym_GT_EQ] = ACTIONS(1361), + [anon_sym_LT_EQ] = ACTIONS(1361), + [anon_sym_EQ_GT] = ACTIONS(2156), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_table] = ACTIONS(2159), + [anon_sym_assert] = ACTIONS(2162), + [anon_sym_assert_equal] = ACTIONS(2162), + [anon_sym_download] = ACTIONS(2162), + [anon_sym_help] = ACTIONS(2162), + [anon_sym_length] = ACTIONS(2162), + [anon_sym_output] = ACTIONS(2162), + [anon_sym_output_error] = ACTIONS(2162), + [anon_sym_type] = ACTIONS(2162), + [anon_sym_append] = ACTIONS(2162), + [anon_sym_metadata] = ACTIONS(2162), + [anon_sym_move] = ACTIONS(2162), + [anon_sym_read] = ACTIONS(2162), + [anon_sym_workdir] = ACTIONS(2162), + [anon_sym_write] = ACTIONS(2162), + [anon_sym_from_json] = ACTIONS(2162), + [anon_sym_to_json] = ACTIONS(2162), + [anon_sym_to_string] = ACTIONS(2162), + [anon_sym_to_float] = ACTIONS(2162), + [anon_sym_bash] = ACTIONS(2162), + [anon_sym_fish] = ACTIONS(2162), + [anon_sym_raw] = ACTIONS(2162), + [anon_sym_sh] = ACTIONS(2162), + [anon_sym_zsh] = ACTIONS(2162), + [anon_sym_random] = ACTIONS(2162), + [anon_sym_random_boolean] = ACTIONS(2162), + [anon_sym_random_float] = ACTIONS(2162), + [anon_sym_random_integer] = ACTIONS(2162), + [anon_sym_columns] = ACTIONS(2162), + [anon_sym_rows] = ACTIONS(2162), + [anon_sym_reverse] = ACTIONS(2162), }, [541] = { - [sym_statement] = STATE(1649), - [sym_expression] = STATE(1554), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1529), - [sym_math] = STATE(1539), - [sym_logic] = STATE(1539), - [sym_assignment] = STATE(1650), - [sym_if_else] = STATE(1650), - [sym_if] = STATE(1638), - [sym_match] = STATE(1650), - [sym_while] = STATE(1650), - [sym_for] = STATE(1650), - [sym_transform] = STATE(1650), - [sym_filter] = STATE(1650), - [sym_find] = STATE(1650), - [sym_remove] = STATE(1650), - [sym_reduce] = STATE(1650), - [sym_select] = STATE(1650), - [sym_insert] = STATE(1650), - [sym_async] = STATE(1650), - [sym_identifier_list] = STATE(1793), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(780), - [sym_identifier] = ACTIONS(3113), + [sym_expression] = STATE(622), + [sym__expression_kind] = STATE(585), + [aux_sym__expression_list] = STATE(548), + [sym_value] = STATE(585), + [sym_boolean] = STATE(586), + [sym_list] = STATE(586), + [sym_map] = STATE(586), + [sym_index] = STATE(585), + [sym_math] = STATE(585), + [sym_logic] = STATE(585), + [sym_identifier_list] = STATE(1193), + [sym_table] = STATE(586), + [sym_function] = STATE(586), + [sym_function_call] = STATE(585), + [sym__context_defined_function] = STATE(587), + [sym_built_in_function] = STATE(587), + [sym__built_in_function_name] = STATE(429), + [sym_identifier] = ACTIONS(2089), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_LPAREN] = ACTIONS(2455), - [sym_integer] = ACTIONS(2457), - [sym_float] = ACTIONS(2459), - [sym_string] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(2461), - [anon_sym_false] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_if] = ACTIONS(3115), - [anon_sym_match] = ACTIONS(3117), - [anon_sym_EQ_GT] = ACTIONS(3119), - [anon_sym_while] = ACTIONS(3121), - [anon_sym_for] = ACTIONS(3123), - [anon_sym_asyncfor] = ACTIONS(3125), - [anon_sym_transform] = ACTIONS(3127), - [anon_sym_filter] = ACTIONS(3129), - [anon_sym_find] = ACTIONS(3131), - [anon_sym_remove] = ACTIONS(3133), - [anon_sym_reduce] = ACTIONS(3135), - [anon_sym_select] = ACTIONS(3137), - [anon_sym_insert] = ACTIONS(3139), - [anon_sym_async] = ACTIONS(3141), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(3143), - [anon_sym_assert] = ACTIONS(3145), - [anon_sym_assert_equal] = ACTIONS(3145), - [anon_sym_download] = ACTIONS(3145), - [anon_sym_help] = ACTIONS(3145), - [anon_sym_length] = ACTIONS(3145), - [anon_sym_output] = ACTIONS(3145), - [anon_sym_output_error] = ACTIONS(3145), - [anon_sym_type] = ACTIONS(3145), - [anon_sym_append] = ACTIONS(3145), - [anon_sym_metadata] = ACTIONS(3145), - [anon_sym_move] = ACTIONS(3145), - [anon_sym_read] = ACTIONS(3145), - [anon_sym_workdir] = ACTIONS(3145), - [anon_sym_write] = ACTIONS(3145), - [anon_sym_from_json] = ACTIONS(3145), - [anon_sym_to_json] = ACTIONS(3145), - [anon_sym_to_string] = ACTIONS(3145), - [anon_sym_to_float] = ACTIONS(3145), - [anon_sym_bash] = ACTIONS(3145), - [anon_sym_fish] = ACTIONS(3145), - [anon_sym_raw] = ACTIONS(3145), - [anon_sym_sh] = ACTIONS(3145), - [anon_sym_zsh] = ACTIONS(3145), - [anon_sym_random] = ACTIONS(3145), - [anon_sym_random_boolean] = ACTIONS(3145), - [anon_sym_random_float] = ACTIONS(3145), - [anon_sym_random_integer] = ACTIONS(3145), - [anon_sym_columns] = ACTIONS(3145), - [anon_sym_rows] = ACTIONS(3145), - [anon_sym_reverse] = ACTIONS(3145), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2049), + [anon_sym_RPAREN] = ACTIONS(1313), + [sym_integer] = ACTIONS(2051), + [sym_float] = ACTIONS(2053), + [sym_string] = ACTIONS(2053), + [anon_sym_true] = ACTIONS(2055), + [anon_sym_false] = ACTIONS(2055), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_COLON] = ACTIONS(1313), + [anon_sym_PLUS] = ACTIONS(1313), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_PERCENT] = ACTIONS(1313), + [anon_sym_EQ_EQ] = ACTIONS(1313), + [anon_sym_BANG_EQ] = ACTIONS(1313), + [anon_sym_AMP_AMP] = ACTIONS(1313), + [anon_sym_PIPE_PIPE] = ACTIONS(1313), + [anon_sym_GT] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(1315), + [anon_sym_GT_EQ] = ACTIONS(1313), + [anon_sym_LT_EQ] = ACTIONS(1313), + [anon_sym_EQ_GT] = ACTIONS(2059), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2061), + [anon_sym_assert] = ACTIONS(1927), + [anon_sym_assert_equal] = ACTIONS(1927), + [anon_sym_download] = ACTIONS(1927), + [anon_sym_help] = ACTIONS(1927), + [anon_sym_length] = ACTIONS(1927), + [anon_sym_output] = ACTIONS(1927), + [anon_sym_output_error] = ACTIONS(1927), + [anon_sym_type] = ACTIONS(1927), + [anon_sym_append] = ACTIONS(1927), + [anon_sym_metadata] = ACTIONS(1927), + [anon_sym_move] = ACTIONS(1927), + [anon_sym_read] = ACTIONS(1927), + [anon_sym_workdir] = ACTIONS(1927), + [anon_sym_write] = ACTIONS(1927), + [anon_sym_from_json] = ACTIONS(1927), + [anon_sym_to_json] = ACTIONS(1927), + [anon_sym_to_string] = ACTIONS(1927), + [anon_sym_to_float] = ACTIONS(1927), + [anon_sym_bash] = ACTIONS(1927), + [anon_sym_fish] = ACTIONS(1927), + [anon_sym_raw] = ACTIONS(1927), + [anon_sym_sh] = ACTIONS(1927), + [anon_sym_zsh] = ACTIONS(1927), + [anon_sym_random] = ACTIONS(1927), + [anon_sym_random_boolean] = ACTIONS(1927), + [anon_sym_random_float] = ACTIONS(1927), + [anon_sym_random_integer] = ACTIONS(1927), + [anon_sym_columns] = ACTIONS(1927), + [anon_sym_rows] = ACTIONS(1927), + [anon_sym_reverse] = ACTIONS(1927), }, [542] = { - [sym_statement] = STATE(796), - [sym_expression] = STATE(732), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(620), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(654), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1841), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(315), - [sym_identifier] = ACTIONS(623), + [sym_expression] = STATE(594), + [sym__expression_kind] = STATE(585), + [aux_sym__expression_list] = STATE(503), + [sym_value] = STATE(585), + [sym_boolean] = STATE(586), + [sym_list] = STATE(586), + [sym_map] = STATE(586), + [sym_index] = STATE(585), + [sym_math] = STATE(585), + [sym_logic] = STATE(585), + [sym_identifier_list] = STATE(1105), + [sym_table] = STATE(586), + [sym_function] = STATE(586), + [sym_function_call] = STATE(585), + [sym__context_defined_function] = STATE(587), + [sym_built_in_function] = STATE(587), + [sym__built_in_function_name] = STATE(372), + [sym_identifier] = ACTIONS(1315), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2626), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_if] = ACTIONS(627), - [anon_sym_match] = ACTIONS(629), - [anon_sym_EQ_GT] = ACTIONS(631), - [anon_sym_while] = ACTIONS(633), - [anon_sym_for] = ACTIONS(635), - [anon_sym_asyncfor] = ACTIONS(637), - [anon_sym_transform] = ACTIONS(639), - [anon_sym_filter] = ACTIONS(641), - [anon_sym_find] = ACTIONS(643), - [anon_sym_remove] = ACTIONS(645), - [anon_sym_reduce] = ACTIONS(647), - [anon_sym_select] = ACTIONS(649), - [anon_sym_insert] = ACTIONS(651), - [anon_sym_async] = ACTIONS(653), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(655), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_assert_equal] = ACTIONS(657), - [anon_sym_download] = ACTIONS(657), - [anon_sym_help] = ACTIONS(657), - [anon_sym_length] = ACTIONS(657), - [anon_sym_output] = ACTIONS(657), - [anon_sym_output_error] = ACTIONS(657), - [anon_sym_type] = ACTIONS(657), - [anon_sym_append] = ACTIONS(657), - [anon_sym_metadata] = ACTIONS(657), - [anon_sym_move] = ACTIONS(657), - [anon_sym_read] = ACTIONS(657), - [anon_sym_workdir] = ACTIONS(657), - [anon_sym_write] = ACTIONS(657), - [anon_sym_from_json] = ACTIONS(657), - [anon_sym_to_json] = ACTIONS(657), - [anon_sym_to_string] = ACTIONS(657), - [anon_sym_to_float] = ACTIONS(657), - [anon_sym_bash] = ACTIONS(657), - [anon_sym_fish] = ACTIONS(657), - [anon_sym_raw] = ACTIONS(657), - [anon_sym_sh] = ACTIONS(657), - [anon_sym_zsh] = ACTIONS(657), - [anon_sym_random] = ACTIONS(657), - [anon_sym_random_boolean] = ACTIONS(657), - [anon_sym_random_float] = ACTIONS(657), - [anon_sym_random_integer] = ACTIONS(657), - [anon_sym_columns] = ACTIONS(657), - [anon_sym_rows] = ACTIONS(657), - [anon_sym_reverse] = ACTIONS(657), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2049), + [sym_integer] = ACTIONS(2051), + [sym_float] = ACTIONS(2053), + [sym_string] = ACTIONS(2053), + [anon_sym_true] = ACTIONS(2055), + [anon_sym_false] = ACTIONS(2055), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_COLON] = ACTIONS(1313), + [anon_sym_DOT_DOT] = ACTIONS(1313), + [anon_sym_PLUS] = ACTIONS(1313), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_PERCENT] = ACTIONS(1313), + [anon_sym_EQ_EQ] = ACTIONS(1313), + [anon_sym_BANG_EQ] = ACTIONS(1313), + [anon_sym_AMP_AMP] = ACTIONS(1313), + [anon_sym_PIPE_PIPE] = ACTIONS(1313), + [anon_sym_GT] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(1315), + [anon_sym_GT_EQ] = ACTIONS(1313), + [anon_sym_LT_EQ] = ACTIONS(1313), + [anon_sym_EQ_GT] = ACTIONS(2091), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2093), + [anon_sym_assert] = ACTIONS(2095), + [anon_sym_assert_equal] = ACTIONS(2095), + [anon_sym_download] = ACTIONS(2095), + [anon_sym_help] = ACTIONS(2095), + [anon_sym_length] = ACTIONS(2095), + [anon_sym_output] = ACTIONS(2095), + [anon_sym_output_error] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2095), + [anon_sym_append] = ACTIONS(2095), + [anon_sym_metadata] = ACTIONS(2095), + [anon_sym_move] = ACTIONS(2095), + [anon_sym_read] = ACTIONS(2095), + [anon_sym_workdir] = ACTIONS(2095), + [anon_sym_write] = ACTIONS(2095), + [anon_sym_from_json] = ACTIONS(2095), + [anon_sym_to_json] = ACTIONS(2095), + [anon_sym_to_string] = ACTIONS(2095), + [anon_sym_to_float] = ACTIONS(2095), + [anon_sym_bash] = ACTIONS(2095), + [anon_sym_fish] = ACTIONS(2095), + [anon_sym_raw] = ACTIONS(2095), + [anon_sym_sh] = ACTIONS(2095), + [anon_sym_zsh] = ACTIONS(2095), + [anon_sym_random] = ACTIONS(2095), + [anon_sym_random_boolean] = ACTIONS(2095), + [anon_sym_random_float] = ACTIONS(2095), + [anon_sym_random_integer] = ACTIONS(2095), + [anon_sym_columns] = ACTIONS(2095), + [anon_sym_rows] = ACTIONS(2095), + [anon_sym_reverse] = ACTIONS(2095), }, [543] = { - [sym_statement] = STATE(865), - [sym_expression] = STATE(888), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(822), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(870), - [sym_if_else] = STATE(870), - [sym_if] = STATE(787), - [sym_match] = STATE(870), - [sym_while] = STATE(870), - [sym_for] = STATE(870), - [sym_transform] = STATE(870), - [sym_filter] = STATE(870), - [sym_find] = STATE(870), - [sym_remove] = STATE(870), - [sym_reduce] = STATE(870), - [sym_select] = STATE(870), - [sym_insert] = STATE(870), - [sym_async] = STATE(870), - [sym_identifier_list] = STATE(1890), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(380), - [sym_identifier] = ACTIONS(1846), + [sym_expression] = STATE(622), + [sym__expression_kind] = STATE(585), + [aux_sym__expression_list] = STATE(540), + [sym_value] = STATE(585), + [sym_boolean] = STATE(586), + [sym_list] = STATE(586), + [sym_map] = STATE(586), + [sym_index] = STATE(585), + [sym_math] = STATE(585), + [sym_logic] = STATE(585), + [sym_identifier_list] = STATE(1193), + [sym_table] = STATE(586), + [sym_function] = STATE(586), + [sym_function_call] = STATE(585), + [sym__context_defined_function] = STATE(587), + [sym_built_in_function] = STATE(587), + [sym__built_in_function_name] = STATE(429), + [sym_identifier] = ACTIONS(2089), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2383), - [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(1284), - [anon_sym_match] = ACTIONS(1850), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(1852), - [anon_sym_for] = ACTIONS(1854), - [anon_sym_asyncfor] = ACTIONS(1856), - [anon_sym_transform] = ACTIONS(1858), - [anon_sym_filter] = ACTIONS(1860), - [anon_sym_find] = ACTIONS(1862), - [anon_sym_remove] = ACTIONS(1864), - [anon_sym_reduce] = ACTIONS(1866), - [anon_sym_select] = ACTIONS(1868), - [anon_sym_insert] = ACTIONS(43), - [anon_sym_async] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(49), - [anon_sym_assert] = ACTIONS(51), - [anon_sym_assert_equal] = ACTIONS(51), - [anon_sym_download] = ACTIONS(51), - [anon_sym_help] = ACTIONS(51), - [anon_sym_length] = ACTIONS(51), - [anon_sym_output] = ACTIONS(51), - [anon_sym_output_error] = ACTIONS(51), - [anon_sym_type] = ACTIONS(51), - [anon_sym_append] = ACTIONS(51), - [anon_sym_metadata] = ACTIONS(51), - [anon_sym_move] = ACTIONS(51), - [anon_sym_read] = ACTIONS(51), - [anon_sym_workdir] = ACTIONS(51), - [anon_sym_write] = ACTIONS(51), - [anon_sym_from_json] = ACTIONS(51), - [anon_sym_to_json] = ACTIONS(51), - [anon_sym_to_string] = ACTIONS(51), - [anon_sym_to_float] = ACTIONS(51), - [anon_sym_bash] = ACTIONS(51), - [anon_sym_fish] = ACTIONS(51), - [anon_sym_raw] = ACTIONS(51), - [anon_sym_sh] = ACTIONS(51), - [anon_sym_zsh] = ACTIONS(51), - [anon_sym_random] = ACTIONS(51), - [anon_sym_random_boolean] = ACTIONS(51), - [anon_sym_random_float] = ACTIONS(51), - [anon_sym_random_integer] = ACTIONS(51), - [anon_sym_columns] = ACTIONS(51), - [anon_sym_rows] = ACTIONS(51), - [anon_sym_reverse] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2049), + [anon_sym_RPAREN] = ACTIONS(1321), + [sym_integer] = ACTIONS(2051), + [sym_float] = ACTIONS(2053), + [sym_string] = ACTIONS(2053), + [anon_sym_true] = ACTIONS(2055), + [anon_sym_false] = ACTIONS(2055), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_COLON] = ACTIONS(1321), + [anon_sym_PLUS] = ACTIONS(1321), + [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_STAR] = ACTIONS(1321), + [anon_sym_SLASH] = ACTIONS(1321), + [anon_sym_PERCENT] = ACTIONS(1321), + [anon_sym_EQ_EQ] = ACTIONS(1321), + [anon_sym_BANG_EQ] = ACTIONS(1321), + [anon_sym_AMP_AMP] = ACTIONS(1321), + [anon_sym_PIPE_PIPE] = ACTIONS(1321), + [anon_sym_GT] = ACTIONS(1327), + [anon_sym_LT] = ACTIONS(1327), + [anon_sym_GT_EQ] = ACTIONS(1321), + [anon_sym_LT_EQ] = ACTIONS(1321), + [anon_sym_EQ_GT] = ACTIONS(2059), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2061), + [anon_sym_assert] = ACTIONS(1927), + [anon_sym_assert_equal] = ACTIONS(1927), + [anon_sym_download] = ACTIONS(1927), + [anon_sym_help] = ACTIONS(1927), + [anon_sym_length] = ACTIONS(1927), + [anon_sym_output] = ACTIONS(1927), + [anon_sym_output_error] = ACTIONS(1927), + [anon_sym_type] = ACTIONS(1927), + [anon_sym_append] = ACTIONS(1927), + [anon_sym_metadata] = ACTIONS(1927), + [anon_sym_move] = ACTIONS(1927), + [anon_sym_read] = ACTIONS(1927), + [anon_sym_workdir] = ACTIONS(1927), + [anon_sym_write] = ACTIONS(1927), + [anon_sym_from_json] = ACTIONS(1927), + [anon_sym_to_json] = ACTIONS(1927), + [anon_sym_to_string] = ACTIONS(1927), + [anon_sym_to_float] = ACTIONS(1927), + [anon_sym_bash] = ACTIONS(1927), + [anon_sym_fish] = ACTIONS(1927), + [anon_sym_raw] = ACTIONS(1927), + [anon_sym_sh] = ACTIONS(1927), + [anon_sym_zsh] = ACTIONS(1927), + [anon_sym_random] = ACTIONS(1927), + [anon_sym_random_boolean] = ACTIONS(1927), + [anon_sym_random_float] = ACTIONS(1927), + [anon_sym_random_integer] = ACTIONS(1927), + [anon_sym_columns] = ACTIONS(1927), + [anon_sym_rows] = ACTIONS(1927), + [anon_sym_reverse] = ACTIONS(1927), }, [544] = { - [sym_statement] = STATE(687), - [sym_expression] = STATE(795), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_logic] = STATE(706), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(611), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(2015), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(325), - [sym_identifier] = ACTIONS(149), + [sym_expression] = STATE(622), + [sym__expression_kind] = STATE(585), + [aux_sym__expression_list] = STATE(548), + [sym_value] = STATE(585), + [sym_boolean] = STATE(586), + [sym_list] = STATE(586), + [sym_map] = STATE(586), + [sym_index] = STATE(585), + [sym_math] = STATE(585), + [sym_logic] = STATE(585), + [sym_identifier_list] = STATE(1193), + [sym_table] = STATE(586), + [sym_function] = STATE(586), + [sym_function_call] = STATE(585), + [sym__context_defined_function] = STATE(587), + [sym_built_in_function] = STATE(587), + [sym__built_in_function_name] = STATE(429), + [sym_identifier] = ACTIONS(1315), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1923), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_if] = ACTIONS(311), - [anon_sym_match] = ACTIONS(913), - [anon_sym_EQ_GT] = ACTIONS(915), - [anon_sym_while] = ACTIONS(917), - [anon_sym_for] = ACTIONS(919), - [anon_sym_asyncfor] = ACTIONS(921), - [anon_sym_transform] = ACTIONS(923), - [anon_sym_filter] = ACTIONS(925), - [anon_sym_find] = ACTIONS(927), - [anon_sym_remove] = ACTIONS(929), - [anon_sym_reduce] = ACTIONS(931), - [anon_sym_select] = ACTIONS(933), - [anon_sym_insert] = ACTIONS(935), - [anon_sym_async] = ACTIONS(937), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(939), - [anon_sym_assert] = ACTIONS(941), - [anon_sym_assert_equal] = ACTIONS(941), - [anon_sym_download] = ACTIONS(941), - [anon_sym_help] = ACTIONS(941), - [anon_sym_length] = ACTIONS(941), - [anon_sym_output] = ACTIONS(941), - [anon_sym_output_error] = ACTIONS(941), - [anon_sym_type] = ACTIONS(941), - [anon_sym_append] = ACTIONS(941), - [anon_sym_metadata] = ACTIONS(941), - [anon_sym_move] = ACTIONS(941), - [anon_sym_read] = ACTIONS(941), - [anon_sym_workdir] = ACTIONS(941), - [anon_sym_write] = ACTIONS(941), - [anon_sym_from_json] = ACTIONS(941), - [anon_sym_to_json] = ACTIONS(941), - [anon_sym_to_string] = ACTIONS(941), - [anon_sym_to_float] = ACTIONS(941), - [anon_sym_bash] = ACTIONS(941), - [anon_sym_fish] = ACTIONS(941), - [anon_sym_raw] = ACTIONS(941), - [anon_sym_sh] = ACTIONS(941), - [anon_sym_zsh] = ACTIONS(941), - [anon_sym_random] = ACTIONS(941), - [anon_sym_random_boolean] = ACTIONS(941), - [anon_sym_random_float] = ACTIONS(941), - [anon_sym_random_integer] = ACTIONS(941), - [anon_sym_columns] = ACTIONS(941), - [anon_sym_rows] = ACTIONS(941), - [anon_sym_reverse] = ACTIONS(941), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2049), + [sym_integer] = ACTIONS(2051), + [sym_float] = ACTIONS(2053), + [sym_string] = ACTIONS(2053), + [anon_sym_true] = ACTIONS(2055), + [anon_sym_false] = ACTIONS(2055), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_COLON] = ACTIONS(1313), + [anon_sym_PLUS] = ACTIONS(1313), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_PERCENT] = ACTIONS(1313), + [anon_sym_EQ_EQ] = ACTIONS(1313), + [anon_sym_BANG_EQ] = ACTIONS(1313), + [anon_sym_AMP_AMP] = ACTIONS(1313), + [anon_sym_PIPE_PIPE] = ACTIONS(1313), + [anon_sym_GT] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(1315), + [anon_sym_GT_EQ] = ACTIONS(1313), + [anon_sym_LT_EQ] = ACTIONS(1313), + [anon_sym_EQ_GT] = ACTIONS(2059), + [anon_sym_in] = ACTIONS(2307), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2061), + [anon_sym_assert] = ACTIONS(1927), + [anon_sym_assert_equal] = ACTIONS(1927), + [anon_sym_download] = ACTIONS(1927), + [anon_sym_help] = ACTIONS(1927), + [anon_sym_length] = ACTIONS(1927), + [anon_sym_output] = ACTIONS(1927), + [anon_sym_output_error] = ACTIONS(1927), + [anon_sym_type] = ACTIONS(1927), + [anon_sym_append] = ACTIONS(1927), + [anon_sym_metadata] = ACTIONS(1927), + [anon_sym_move] = ACTIONS(1927), + [anon_sym_read] = ACTIONS(1927), + [anon_sym_workdir] = ACTIONS(1927), + [anon_sym_write] = ACTIONS(1927), + [anon_sym_from_json] = ACTIONS(1927), + [anon_sym_to_json] = ACTIONS(1927), + [anon_sym_to_string] = ACTIONS(1927), + [anon_sym_to_float] = ACTIONS(1927), + [anon_sym_bash] = ACTIONS(1927), + [anon_sym_fish] = ACTIONS(1927), + [anon_sym_raw] = ACTIONS(1927), + [anon_sym_sh] = ACTIONS(1927), + [anon_sym_zsh] = ACTIONS(1927), + [anon_sym_random] = ACTIONS(1927), + [anon_sym_random_boolean] = ACTIONS(1927), + [anon_sym_random_float] = ACTIONS(1927), + [anon_sym_random_integer] = ACTIONS(1927), + [anon_sym_columns] = ACTIONS(1927), + [anon_sym_rows] = ACTIONS(1927), + [anon_sym_reverse] = ACTIONS(1927), }, [545] = { - [sym_statement] = STATE(796), - [sym_expression] = STATE(685), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(576), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(647), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1984), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(302), - [sym_identifier] = ACTIONS(229), + [sym_expression] = STATE(622), + [sym__expression_kind] = STATE(585), + [aux_sym__expression_list] = STATE(548), + [sym_value] = STATE(585), + [sym_boolean] = STATE(586), + [sym_list] = STATE(586), + [sym_map] = STATE(586), + [sym_index] = STATE(585), + [sym_math] = STATE(585), + [sym_logic] = STATE(585), + [sym_identifier_list] = STATE(1193), + [sym_table] = STATE(586), + [sym_function] = STATE(586), + [sym_function_call] = STATE(585), + [sym__context_defined_function] = STATE(587), + [sym_built_in_function] = STATE(587), + [sym__built_in_function_name] = STATE(429), + [sym_identifier] = ACTIONS(1315), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2626), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_if] = ACTIONS(245), - [anon_sym_match] = ACTIONS(247), - [anon_sym_EQ_GT] = ACTIONS(249), - [anon_sym_while] = ACTIONS(251), - [anon_sym_for] = ACTIONS(253), - [anon_sym_asyncfor] = ACTIONS(255), - [anon_sym_transform] = ACTIONS(257), - [anon_sym_filter] = ACTIONS(259), - [anon_sym_find] = ACTIONS(261), - [anon_sym_remove] = ACTIONS(263), - [anon_sym_reduce] = ACTIONS(265), - [anon_sym_select] = ACTIONS(267), - [anon_sym_insert] = ACTIONS(269), - [anon_sym_async] = ACTIONS(271), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(275), - [anon_sym_assert_equal] = ACTIONS(275), - [anon_sym_download] = ACTIONS(275), - [anon_sym_help] = ACTIONS(275), - [anon_sym_length] = ACTIONS(275), - [anon_sym_output] = ACTIONS(275), - [anon_sym_output_error] = ACTIONS(275), - [anon_sym_type] = ACTIONS(275), - [anon_sym_append] = ACTIONS(275), - [anon_sym_metadata] = ACTIONS(275), - [anon_sym_move] = ACTIONS(275), - [anon_sym_read] = ACTIONS(275), - [anon_sym_workdir] = ACTIONS(275), - [anon_sym_write] = ACTIONS(275), - [anon_sym_from_json] = ACTIONS(275), - [anon_sym_to_json] = ACTIONS(275), - [anon_sym_to_string] = ACTIONS(275), - [anon_sym_to_float] = ACTIONS(275), - [anon_sym_bash] = ACTIONS(275), - [anon_sym_fish] = ACTIONS(275), - [anon_sym_raw] = ACTIONS(275), - [anon_sym_sh] = ACTIONS(275), - [anon_sym_zsh] = ACTIONS(275), - [anon_sym_random] = ACTIONS(275), - [anon_sym_random_boolean] = ACTIONS(275), - [anon_sym_random_float] = ACTIONS(275), - [anon_sym_random_integer] = ACTIONS(275), - [anon_sym_columns] = ACTIONS(275), - [anon_sym_rows] = ACTIONS(275), - [anon_sym_reverse] = ACTIONS(275), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2049), + [sym_integer] = ACTIONS(2051), + [sym_float] = ACTIONS(2053), + [sym_string] = ACTIONS(2053), + [anon_sym_true] = ACTIONS(2055), + [anon_sym_false] = ACTIONS(2055), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_COLON] = ACTIONS(1313), + [anon_sym_PLUS] = ACTIONS(1313), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_PERCENT] = ACTIONS(1313), + [anon_sym_EQ_EQ] = ACTIONS(1313), + [anon_sym_BANG_EQ] = ACTIONS(1313), + [anon_sym_AMP_AMP] = ACTIONS(1313), + [anon_sym_PIPE_PIPE] = ACTIONS(1313), + [anon_sym_GT] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(1315), + [anon_sym_GT_EQ] = ACTIONS(1313), + [anon_sym_LT_EQ] = ACTIONS(1313), + [anon_sym_EQ_GT] = ACTIONS(2059), + [anon_sym_in] = ACTIONS(2309), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2061), + [anon_sym_assert] = ACTIONS(1927), + [anon_sym_assert_equal] = ACTIONS(1927), + [anon_sym_download] = ACTIONS(1927), + [anon_sym_help] = ACTIONS(1927), + [anon_sym_length] = ACTIONS(1927), + [anon_sym_output] = ACTIONS(1927), + [anon_sym_output_error] = ACTIONS(1927), + [anon_sym_type] = ACTIONS(1927), + [anon_sym_append] = ACTIONS(1927), + [anon_sym_metadata] = ACTIONS(1927), + [anon_sym_move] = ACTIONS(1927), + [anon_sym_read] = ACTIONS(1927), + [anon_sym_workdir] = ACTIONS(1927), + [anon_sym_write] = ACTIONS(1927), + [anon_sym_from_json] = ACTIONS(1927), + [anon_sym_to_json] = ACTIONS(1927), + [anon_sym_to_string] = ACTIONS(1927), + [anon_sym_to_float] = ACTIONS(1927), + [anon_sym_bash] = ACTIONS(1927), + [anon_sym_fish] = ACTIONS(1927), + [anon_sym_raw] = ACTIONS(1927), + [anon_sym_sh] = ACTIONS(1927), + [anon_sym_zsh] = ACTIONS(1927), + [anon_sym_random] = ACTIONS(1927), + [anon_sym_random_boolean] = ACTIONS(1927), + [anon_sym_random_float] = ACTIONS(1927), + [anon_sym_random_integer] = ACTIONS(1927), + [anon_sym_columns] = ACTIONS(1927), + [anon_sym_rows] = ACTIONS(1927), + [anon_sym_reverse] = ACTIONS(1927), }, [546] = { - [sym_statement] = STATE(1665), - [sym_expression] = STATE(1554), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1529), - [sym_math] = STATE(1539), - [sym_logic] = STATE(1539), - [sym_assignment] = STATE(1650), - [sym_if_else] = STATE(1650), - [sym_if] = STATE(1638), - [sym_match] = STATE(1650), - [sym_while] = STATE(1650), - [sym_for] = STATE(1650), - [sym_transform] = STATE(1650), - [sym_filter] = STATE(1650), - [sym_find] = STATE(1650), - [sym_remove] = STATE(1650), - [sym_reduce] = STATE(1650), - [sym_select] = STATE(1650), - [sym_insert] = STATE(1650), - [sym_async] = STATE(1650), - [sym_identifier_list] = STATE(1793), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(780), - [sym_identifier] = ACTIONS(3147), + [sym_expression] = STATE(622), + [sym__expression_kind] = STATE(585), + [aux_sym__expression_list] = STATE(548), + [sym_value] = STATE(585), + [sym_boolean] = STATE(586), + [sym_list] = STATE(586), + [sym_map] = STATE(586), + [sym_index] = STATE(585), + [sym_math] = STATE(585), + [sym_logic] = STATE(585), + [sym_identifier_list] = STATE(1193), + [sym_table] = STATE(586), + [sym_function] = STATE(586), + [sym_function_call] = STATE(585), + [sym__context_defined_function] = STATE(587), + [sym_built_in_function] = STATE(587), + [sym__built_in_function_name] = STATE(429), + [sym_identifier] = ACTIONS(1315), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3153), - [sym_integer] = ACTIONS(3156), - [sym_float] = ACTIONS(3159), - [sym_string] = ACTIONS(3159), - [anon_sym_true] = ACTIONS(3162), - [anon_sym_false] = ACTIONS(3162), - [anon_sym_LBRACK] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3168), - [anon_sym_match] = ACTIONS(3171), - [anon_sym_EQ_GT] = ACTIONS(3174), - [anon_sym_while] = ACTIONS(3177), - [anon_sym_for] = ACTIONS(3180), - [anon_sym_asyncfor] = ACTIONS(3183), - [anon_sym_transform] = ACTIONS(3186), - [anon_sym_filter] = ACTIONS(3189), - [anon_sym_find] = ACTIONS(3192), - [anon_sym_remove] = ACTIONS(3195), - [anon_sym_reduce] = ACTIONS(3198), - [anon_sym_select] = ACTIONS(3201), - [anon_sym_insert] = ACTIONS(3204), - [anon_sym_async] = ACTIONS(3207), - [anon_sym_PIPE] = ACTIONS(3210), - [anon_sym_table] = ACTIONS(3213), - [anon_sym_assert] = ACTIONS(3216), - [anon_sym_assert_equal] = ACTIONS(3216), - [anon_sym_download] = ACTIONS(3216), - [anon_sym_help] = ACTIONS(3216), - [anon_sym_length] = ACTIONS(3216), - [anon_sym_output] = ACTIONS(3216), - [anon_sym_output_error] = ACTIONS(3216), - [anon_sym_type] = ACTIONS(3216), - [anon_sym_append] = ACTIONS(3216), - [anon_sym_metadata] = ACTIONS(3216), - [anon_sym_move] = ACTIONS(3216), - [anon_sym_read] = ACTIONS(3216), - [anon_sym_workdir] = ACTIONS(3216), - [anon_sym_write] = ACTIONS(3216), - [anon_sym_from_json] = ACTIONS(3216), - [anon_sym_to_json] = ACTIONS(3216), - [anon_sym_to_string] = ACTIONS(3216), - [anon_sym_to_float] = ACTIONS(3216), - [anon_sym_bash] = ACTIONS(3216), - [anon_sym_fish] = ACTIONS(3216), - [anon_sym_raw] = ACTIONS(3216), - [anon_sym_sh] = ACTIONS(3216), - [anon_sym_zsh] = ACTIONS(3216), - [anon_sym_random] = ACTIONS(3216), - [anon_sym_random_boolean] = ACTIONS(3216), - [anon_sym_random_float] = ACTIONS(3216), - [anon_sym_random_integer] = ACTIONS(3216), - [anon_sym_columns] = ACTIONS(3216), - [anon_sym_rows] = ACTIONS(3216), - [anon_sym_reverse] = ACTIONS(3216), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2049), + [sym_integer] = ACTIONS(2051), + [sym_float] = ACTIONS(2053), + [sym_string] = ACTIONS(2053), + [anon_sym_true] = ACTIONS(2055), + [anon_sym_false] = ACTIONS(2055), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_COLON] = ACTIONS(1313), + [anon_sym_PLUS] = ACTIONS(1313), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_PERCENT] = ACTIONS(1313), + [anon_sym_EQ_EQ] = ACTIONS(1313), + [anon_sym_BANG_EQ] = ACTIONS(1313), + [anon_sym_AMP_AMP] = ACTIONS(1313), + [anon_sym_PIPE_PIPE] = ACTIONS(1313), + [anon_sym_GT] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(1315), + [anon_sym_GT_EQ] = ACTIONS(1313), + [anon_sym_LT_EQ] = ACTIONS(1313), + [anon_sym_EQ_GT] = ACTIONS(2059), + [anon_sym_in] = ACTIONS(2311), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2061), + [anon_sym_assert] = ACTIONS(1927), + [anon_sym_assert_equal] = ACTIONS(1927), + [anon_sym_download] = ACTIONS(1927), + [anon_sym_help] = ACTIONS(1927), + [anon_sym_length] = ACTIONS(1927), + [anon_sym_output] = ACTIONS(1927), + [anon_sym_output_error] = ACTIONS(1927), + [anon_sym_type] = ACTIONS(1927), + [anon_sym_append] = ACTIONS(1927), + [anon_sym_metadata] = ACTIONS(1927), + [anon_sym_move] = ACTIONS(1927), + [anon_sym_read] = ACTIONS(1927), + [anon_sym_workdir] = ACTIONS(1927), + [anon_sym_write] = ACTIONS(1927), + [anon_sym_from_json] = ACTIONS(1927), + [anon_sym_to_json] = ACTIONS(1927), + [anon_sym_to_string] = ACTIONS(1927), + [anon_sym_to_float] = ACTIONS(1927), + [anon_sym_bash] = ACTIONS(1927), + [anon_sym_fish] = ACTIONS(1927), + [anon_sym_raw] = ACTIONS(1927), + [anon_sym_sh] = ACTIONS(1927), + [anon_sym_zsh] = ACTIONS(1927), + [anon_sym_random] = ACTIONS(1927), + [anon_sym_random_boolean] = ACTIONS(1927), + [anon_sym_random_float] = ACTIONS(1927), + [anon_sym_random_integer] = ACTIONS(1927), + [anon_sym_columns] = ACTIONS(1927), + [anon_sym_rows] = ACTIONS(1927), + [anon_sym_reverse] = ACTIONS(1927), }, [547] = { - [sym_statement] = STATE(596), - [sym_expression] = STATE(593), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_logic] = STATE(631), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(584), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(1776), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(286), - [sym_identifier] = ACTIONS(55), + [sym_math_operator] = STATE(784), + [sym_logic_operator] = STATE(783), + [sym_identifier] = ACTIONS(2043), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2445), - [anon_sym_LPAREN] = ACTIONS(59), - [sym_integer] = ACTIONS(61), - [sym_float] = ACTIONS(63), - [sym_string] = ACTIONS(63), - [anon_sym_true] = ACTIONS(65), - [anon_sym_false] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_if] = ACTIONS(197), - [anon_sym_match] = ACTIONS(199), - [anon_sym_EQ_GT] = ACTIONS(201), - [anon_sym_while] = ACTIONS(203), - [anon_sym_for] = ACTIONS(205), - [anon_sym_asyncfor] = ACTIONS(207), - [anon_sym_transform] = ACTIONS(209), - [anon_sym_filter] = ACTIONS(211), - [anon_sym_find] = ACTIONS(213), - [anon_sym_remove] = ACTIONS(215), - [anon_sym_reduce] = ACTIONS(217), - [anon_sym_select] = ACTIONS(219), - [anon_sym_insert] = ACTIONS(221), - [anon_sym_async] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(225), - [anon_sym_assert] = ACTIONS(227), - [anon_sym_assert_equal] = ACTIONS(227), - [anon_sym_download] = ACTIONS(227), - [anon_sym_help] = ACTIONS(227), - [anon_sym_length] = ACTIONS(227), - [anon_sym_output] = ACTIONS(227), - [anon_sym_output_error] = ACTIONS(227), - [anon_sym_type] = ACTIONS(227), - [anon_sym_append] = ACTIONS(227), - [anon_sym_metadata] = ACTIONS(227), - [anon_sym_move] = ACTIONS(227), - [anon_sym_read] = ACTIONS(227), - [anon_sym_workdir] = ACTIONS(227), - [anon_sym_write] = ACTIONS(227), - [anon_sym_from_json] = ACTIONS(227), - [anon_sym_to_json] = ACTIONS(227), - [anon_sym_to_string] = ACTIONS(227), - [anon_sym_to_float] = ACTIONS(227), - [anon_sym_bash] = ACTIONS(227), - [anon_sym_fish] = ACTIONS(227), - [anon_sym_raw] = ACTIONS(227), - [anon_sym_sh] = ACTIONS(227), - [anon_sym_zsh] = ACTIONS(227), - [anon_sym_random] = ACTIONS(227), - [anon_sym_random_boolean] = ACTIONS(227), - [anon_sym_random_float] = ACTIONS(227), - [anon_sym_random_integer] = ACTIONS(227), - [anon_sym_columns] = ACTIONS(227), - [anon_sym_rows] = ACTIONS(227), - [anon_sym_reverse] = ACTIONS(227), + [anon_sym_LBRACE] = ACTIONS(2041), + [anon_sym_RBRACE] = ACTIONS(2041), + [anon_sym_SEMI] = ACTIONS(2297), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_COMMA] = ACTIONS(2041), + [sym_integer] = ACTIONS(2043), + [sym_float] = ACTIONS(2041), + [sym_string] = ACTIONS(2041), + [anon_sym_true] = ACTIONS(2043), + [anon_sym_false] = ACTIONS(2043), + [anon_sym_LBRACK] = ACTIONS(2041), + [anon_sym_COLON] = ACTIONS(261), + [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(2043), + [anon_sym_match] = ACTIONS(2043), + [anon_sym_EQ_GT] = ACTIONS(2041), + [anon_sym_while] = ACTIONS(2043), + [anon_sym_for] = ACTIONS(2043), + [anon_sym_asyncfor] = ACTIONS(2041), + [anon_sym_transform] = ACTIONS(2043), + [anon_sym_filter] = ACTIONS(2043), + [anon_sym_find] = ACTIONS(2043), + [anon_sym_remove] = ACTIONS(2043), + [anon_sym_reduce] = ACTIONS(2043), + [anon_sym_select] = ACTIONS(2043), + [anon_sym_insert] = ACTIONS(2043), + [anon_sym_async] = ACTIONS(2043), + [anon_sym_PIPE] = ACTIONS(2043), + [anon_sym_table] = ACTIONS(2043), + [anon_sym_assert] = ACTIONS(2043), + [anon_sym_assert_equal] = ACTIONS(2043), + [anon_sym_download] = ACTIONS(2043), + [anon_sym_help] = ACTIONS(2043), + [anon_sym_length] = ACTIONS(2043), + [anon_sym_output] = ACTIONS(2043), + [anon_sym_output_error] = ACTIONS(2043), + [anon_sym_type] = ACTIONS(2043), + [anon_sym_append] = ACTIONS(2043), + [anon_sym_metadata] = ACTIONS(2043), + [anon_sym_move] = ACTIONS(2043), + [anon_sym_read] = ACTIONS(2043), + [anon_sym_workdir] = ACTIONS(2043), + [anon_sym_write] = ACTIONS(2043), + [anon_sym_from_json] = ACTIONS(2043), + [anon_sym_to_json] = ACTIONS(2043), + [anon_sym_to_string] = ACTIONS(2043), + [anon_sym_to_float] = ACTIONS(2043), + [anon_sym_bash] = ACTIONS(2043), + [anon_sym_fish] = ACTIONS(2043), + [anon_sym_raw] = ACTIONS(2043), + [anon_sym_sh] = ACTIONS(2043), + [anon_sym_zsh] = ACTIONS(2043), + [anon_sym_random] = ACTIONS(2043), + [anon_sym_random_boolean] = ACTIONS(2043), + [anon_sym_random_float] = ACTIONS(2043), + [anon_sym_random_integer] = ACTIONS(2043), + [anon_sym_columns] = ACTIONS(2043), + [anon_sym_rows] = ACTIONS(2043), + [anon_sym_reverse] = ACTIONS(2043), }, [548] = { - [sym_statement] = STATE(1027), - [sym_expression] = STATE(859), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(754), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_assignment] = STATE(1023), - [sym_if_else] = STATE(1023), - [sym_if] = STATE(985), - [sym_match] = STATE(1023), - [sym_while] = STATE(1023), - [sym_for] = STATE(1023), - [sym_transform] = STATE(1023), - [sym_filter] = STATE(1023), - [sym_find] = STATE(1023), - [sym_remove] = STATE(1023), - [sym_reduce] = STATE(1023), - [sym_select] = STATE(1023), - [sym_insert] = STATE(1023), - [sym_async] = STATE(1023), - [sym_identifier_list] = STATE(1841), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(315), - [sym_identifier] = ACTIONS(1566), + [sym_expression] = STATE(622), + [sym__expression_kind] = STATE(585), + [aux_sym__expression_list] = STATE(540), + [sym_value] = STATE(585), + [sym_boolean] = STATE(586), + [sym_list] = STATE(586), + [sym_map] = STATE(586), + [sym_index] = STATE(585), + [sym_math] = STATE(585), + [sym_logic] = STATE(585), + [sym_identifier_list] = STATE(1193), + [sym_table] = STATE(586), + [sym_function] = STATE(586), + [sym_function_call] = STATE(585), + [sym__context_defined_function] = STATE(587), + [sym_built_in_function] = STATE(587), + [sym__built_in_function_name] = STATE(429), + [sym_identifier] = ACTIONS(2089), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2626), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_if] = ACTIONS(1570), - [anon_sym_match] = ACTIONS(1572), - [anon_sym_EQ_GT] = ACTIONS(631), - [anon_sym_while] = ACTIONS(1574), - [anon_sym_for] = ACTIONS(1576), - [anon_sym_asyncfor] = ACTIONS(1578), - [anon_sym_transform] = ACTIONS(1580), - [anon_sym_filter] = ACTIONS(1582), - [anon_sym_find] = ACTIONS(1584), - [anon_sym_remove] = ACTIONS(1586), - [anon_sym_reduce] = ACTIONS(1588), - [anon_sym_select] = ACTIONS(1590), - [anon_sym_insert] = ACTIONS(651), - [anon_sym_async] = ACTIONS(1592), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(655), - [anon_sym_assert] = ACTIONS(657), - [anon_sym_assert_equal] = ACTIONS(657), - [anon_sym_download] = ACTIONS(657), - [anon_sym_help] = ACTIONS(657), - [anon_sym_length] = ACTIONS(657), - [anon_sym_output] = ACTIONS(657), - [anon_sym_output_error] = ACTIONS(657), - [anon_sym_type] = ACTIONS(657), - [anon_sym_append] = ACTIONS(657), - [anon_sym_metadata] = ACTIONS(657), - [anon_sym_move] = ACTIONS(657), - [anon_sym_read] = ACTIONS(657), - [anon_sym_workdir] = ACTIONS(657), - [anon_sym_write] = ACTIONS(657), - [anon_sym_from_json] = ACTIONS(657), - [anon_sym_to_json] = ACTIONS(657), - [anon_sym_to_string] = ACTIONS(657), - [anon_sym_to_float] = ACTIONS(657), - [anon_sym_bash] = ACTIONS(657), - [anon_sym_fish] = ACTIONS(657), - [anon_sym_raw] = ACTIONS(657), - [anon_sym_sh] = ACTIONS(657), - [anon_sym_zsh] = ACTIONS(657), - [anon_sym_random] = ACTIONS(657), - [anon_sym_random_boolean] = ACTIONS(657), - [anon_sym_random_float] = ACTIONS(657), - [anon_sym_random_integer] = ACTIONS(657), - [anon_sym_columns] = ACTIONS(657), - [anon_sym_rows] = ACTIONS(657), - [anon_sym_reverse] = ACTIONS(657), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2049), + [anon_sym_RPAREN] = ACTIONS(1329), + [sym_integer] = ACTIONS(2051), + [sym_float] = ACTIONS(2053), + [sym_string] = ACTIONS(2053), + [anon_sym_true] = ACTIONS(2055), + [anon_sym_false] = ACTIONS(2055), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_COLON] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1331), + [anon_sym_STAR] = ACTIONS(1329), + [anon_sym_SLASH] = ACTIONS(1329), + [anon_sym_PERCENT] = ACTIONS(1329), + [anon_sym_EQ_EQ] = ACTIONS(1329), + [anon_sym_BANG_EQ] = ACTIONS(1329), + [anon_sym_AMP_AMP] = ACTIONS(1329), + [anon_sym_PIPE_PIPE] = ACTIONS(1329), + [anon_sym_GT] = ACTIONS(1331), + [anon_sym_LT] = ACTIONS(1331), + [anon_sym_GT_EQ] = ACTIONS(1329), + [anon_sym_LT_EQ] = ACTIONS(1329), + [anon_sym_EQ_GT] = ACTIONS(2059), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2061), + [anon_sym_assert] = ACTIONS(1927), + [anon_sym_assert_equal] = ACTIONS(1927), + [anon_sym_download] = ACTIONS(1927), + [anon_sym_help] = ACTIONS(1927), + [anon_sym_length] = ACTIONS(1927), + [anon_sym_output] = ACTIONS(1927), + [anon_sym_output_error] = ACTIONS(1927), + [anon_sym_type] = ACTIONS(1927), + [anon_sym_append] = ACTIONS(1927), + [anon_sym_metadata] = ACTIONS(1927), + [anon_sym_move] = ACTIONS(1927), + [anon_sym_read] = ACTIONS(1927), + [anon_sym_workdir] = ACTIONS(1927), + [anon_sym_write] = ACTIONS(1927), + [anon_sym_from_json] = ACTIONS(1927), + [anon_sym_to_json] = ACTIONS(1927), + [anon_sym_to_string] = ACTIONS(1927), + [anon_sym_to_float] = ACTIONS(1927), + [anon_sym_bash] = ACTIONS(1927), + [anon_sym_fish] = ACTIONS(1927), + [anon_sym_raw] = ACTIONS(1927), + [anon_sym_sh] = ACTIONS(1927), + [anon_sym_zsh] = ACTIONS(1927), + [anon_sym_random] = ACTIONS(1927), + [anon_sym_random_boolean] = ACTIONS(1927), + [anon_sym_random_float] = ACTIONS(1927), + [anon_sym_random_integer] = ACTIONS(1927), + [anon_sym_columns] = ACTIONS(1927), + [anon_sym_rows] = ACTIONS(1927), + [anon_sym_reverse] = ACTIONS(1927), }, [549] = { - [sym_statement] = STATE(796), - [sym_expression] = STATE(779), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(655), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(724), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1860), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(341), - [sym_identifier] = ACTIONS(839), + [sym_expression] = STATE(622), + [sym__expression_kind] = STATE(585), + [aux_sym__expression_list] = STATE(548), + [sym_value] = STATE(585), + [sym_boolean] = STATE(586), + [sym_list] = STATE(586), + [sym_map] = STATE(586), + [sym_index] = STATE(585), + [sym_math] = STATE(585), + [sym_logic] = STATE(585), + [sym_identifier_list] = STATE(1193), + [sym_table] = STATE(586), + [sym_function] = STATE(586), + [sym_function_call] = STATE(585), + [sym__context_defined_function] = STATE(587), + [sym_built_in_function] = STATE(587), + [sym__built_in_function_name] = STATE(429), + [sym_identifier] = ACTIONS(1315), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2626), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_if] = ACTIONS(843), - [anon_sym_match] = ACTIONS(845), - [anon_sym_EQ_GT] = ACTIONS(847), - [anon_sym_while] = ACTIONS(849), - [anon_sym_for] = ACTIONS(851), - [anon_sym_asyncfor] = 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(867), - [anon_sym_async] = ACTIONS(869), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(871), - [anon_sym_assert] = ACTIONS(873), - [anon_sym_assert_equal] = ACTIONS(873), - [anon_sym_download] = ACTIONS(873), - [anon_sym_help] = ACTIONS(873), - [anon_sym_length] = ACTIONS(873), - [anon_sym_output] = ACTIONS(873), - [anon_sym_output_error] = ACTIONS(873), - [anon_sym_type] = ACTIONS(873), - [anon_sym_append] = ACTIONS(873), - [anon_sym_metadata] = ACTIONS(873), - [anon_sym_move] = ACTIONS(873), - [anon_sym_read] = ACTIONS(873), - [anon_sym_workdir] = ACTIONS(873), - [anon_sym_write] = ACTIONS(873), - [anon_sym_from_json] = ACTIONS(873), - [anon_sym_to_json] = ACTIONS(873), - [anon_sym_to_string] = ACTIONS(873), - [anon_sym_to_float] = ACTIONS(873), - [anon_sym_bash] = ACTIONS(873), - [anon_sym_fish] = ACTIONS(873), - [anon_sym_raw] = ACTIONS(873), - [anon_sym_sh] = ACTIONS(873), - [anon_sym_zsh] = ACTIONS(873), - [anon_sym_random] = ACTIONS(873), - [anon_sym_random_boolean] = ACTIONS(873), - [anon_sym_random_float] = ACTIONS(873), - [anon_sym_random_integer] = ACTIONS(873), - [anon_sym_columns] = ACTIONS(873), - [anon_sym_rows] = ACTIONS(873), - [anon_sym_reverse] = ACTIONS(873), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2049), + [sym_integer] = ACTIONS(2051), + [sym_float] = ACTIONS(2053), + [sym_string] = ACTIONS(2053), + [anon_sym_true] = ACTIONS(2055), + [anon_sym_false] = ACTIONS(2055), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_COLON] = ACTIONS(1313), + [anon_sym_PLUS] = ACTIONS(1313), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_PERCENT] = ACTIONS(1313), + [anon_sym_EQ_EQ] = ACTIONS(1313), + [anon_sym_BANG_EQ] = ACTIONS(1313), + [anon_sym_AMP_AMP] = ACTIONS(1313), + [anon_sym_PIPE_PIPE] = ACTIONS(1313), + [anon_sym_GT] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(1315), + [anon_sym_GT_EQ] = ACTIONS(1313), + [anon_sym_LT_EQ] = ACTIONS(1313), + [anon_sym_EQ_GT] = ACTIONS(2059), + [anon_sym_in] = ACTIONS(2313), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2061), + [anon_sym_assert] = ACTIONS(1927), + [anon_sym_assert_equal] = ACTIONS(1927), + [anon_sym_download] = ACTIONS(1927), + [anon_sym_help] = ACTIONS(1927), + [anon_sym_length] = ACTIONS(1927), + [anon_sym_output] = ACTIONS(1927), + [anon_sym_output_error] = ACTIONS(1927), + [anon_sym_type] = ACTIONS(1927), + [anon_sym_append] = ACTIONS(1927), + [anon_sym_metadata] = ACTIONS(1927), + [anon_sym_move] = ACTIONS(1927), + [anon_sym_read] = ACTIONS(1927), + [anon_sym_workdir] = ACTIONS(1927), + [anon_sym_write] = ACTIONS(1927), + [anon_sym_from_json] = ACTIONS(1927), + [anon_sym_to_json] = ACTIONS(1927), + [anon_sym_to_string] = ACTIONS(1927), + [anon_sym_to_float] = ACTIONS(1927), + [anon_sym_bash] = ACTIONS(1927), + [anon_sym_fish] = ACTIONS(1927), + [anon_sym_raw] = ACTIONS(1927), + [anon_sym_sh] = ACTIONS(1927), + [anon_sym_zsh] = ACTIONS(1927), + [anon_sym_random] = ACTIONS(1927), + [anon_sym_random_boolean] = ACTIONS(1927), + [anon_sym_random_float] = ACTIONS(1927), + [anon_sym_random_integer] = ACTIONS(1927), + [anon_sym_columns] = ACTIONS(1927), + [anon_sym_rows] = ACTIONS(1927), + [anon_sym_reverse] = ACTIONS(1927), }, [550] = { - [sym_statement] = STATE(687), - [sym_expression] = STATE(601), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_logic] = STATE(706), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(557), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1910), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(284), - [sym_identifier] = ACTIONS(149), + [sym_expression] = STATE(622), + [sym__expression_kind] = STATE(585), + [aux_sym__expression_list] = STATE(543), + [sym_value] = STATE(585), + [sym_boolean] = STATE(586), + [sym_list] = STATE(586), + [sym_map] = STATE(586), + [sym_index] = STATE(585), + [sym_math] = STATE(585), + [sym_logic] = STATE(585), + [sym_identifier_list] = STATE(1193), + [sym_table] = STATE(586), + [sym_function] = STATE(586), + [sym_function_call] = STATE(585), + [sym__context_defined_function] = STATE(587), + [sym_built_in_function] = STATE(587), + [sym__built_in_function_name] = STATE(429), + [sym_identifier] = ACTIONS(2089), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1923), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_if] = ACTIONS(81), - [anon_sym_match] = ACTIONS(165), - [anon_sym_EQ_GT] = ACTIONS(167), - [anon_sym_while] = ACTIONS(169), - [anon_sym_for] = ACTIONS(171), - [anon_sym_asyncfor] = ACTIONS(173), - [anon_sym_transform] = ACTIONS(175), - [anon_sym_filter] = ACTIONS(177), - [anon_sym_find] = ACTIONS(179), - [anon_sym_remove] = ACTIONS(181), - [anon_sym_reduce] = ACTIONS(183), - [anon_sym_select] = ACTIONS(185), - [anon_sym_insert] = ACTIONS(187), - [anon_sym_async] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(191), - [anon_sym_assert] = ACTIONS(193), - [anon_sym_assert_equal] = ACTIONS(193), - [anon_sym_download] = ACTIONS(193), - [anon_sym_help] = ACTIONS(193), - [anon_sym_length] = ACTIONS(193), - [anon_sym_output] = ACTIONS(193), - [anon_sym_output_error] = ACTIONS(193), - [anon_sym_type] = ACTIONS(193), - [anon_sym_append] = ACTIONS(193), - [anon_sym_metadata] = ACTIONS(193), - [anon_sym_move] = ACTIONS(193), - [anon_sym_read] = ACTIONS(193), - [anon_sym_workdir] = ACTIONS(193), - [anon_sym_write] = ACTIONS(193), - [anon_sym_from_json] = ACTIONS(193), - [anon_sym_to_json] = ACTIONS(193), - [anon_sym_to_string] = ACTIONS(193), - [anon_sym_to_float] = ACTIONS(193), - [anon_sym_bash] = ACTIONS(193), - [anon_sym_fish] = ACTIONS(193), - [anon_sym_raw] = ACTIONS(193), - [anon_sym_sh] = ACTIONS(193), - [anon_sym_zsh] = ACTIONS(193), - [anon_sym_random] = ACTIONS(193), - [anon_sym_random_boolean] = ACTIONS(193), - [anon_sym_random_float] = ACTIONS(193), - [anon_sym_random_integer] = ACTIONS(193), - [anon_sym_columns] = ACTIONS(193), - [anon_sym_rows] = ACTIONS(193), - [anon_sym_reverse] = ACTIONS(193), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2049), + [anon_sym_RPAREN] = ACTIONS(1333), + [sym_integer] = ACTIONS(2051), + [sym_float] = ACTIONS(2053), + [sym_string] = ACTIONS(2053), + [anon_sym_true] = ACTIONS(2055), + [anon_sym_false] = ACTIONS(2055), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_COLON] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1333), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_SLASH] = ACTIONS(1333), + [anon_sym_PERCENT] = ACTIONS(1333), + [anon_sym_EQ_EQ] = ACTIONS(1333), + [anon_sym_BANG_EQ] = ACTIONS(1333), + [anon_sym_AMP_AMP] = ACTIONS(1333), + [anon_sym_PIPE_PIPE] = ACTIONS(1333), + [anon_sym_GT] = ACTIONS(1335), + [anon_sym_LT] = ACTIONS(1335), + [anon_sym_GT_EQ] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1333), + [anon_sym_EQ_GT] = ACTIONS(2059), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2061), + [anon_sym_assert] = ACTIONS(1927), + [anon_sym_assert_equal] = ACTIONS(1927), + [anon_sym_download] = ACTIONS(1927), + [anon_sym_help] = ACTIONS(1927), + [anon_sym_length] = ACTIONS(1927), + [anon_sym_output] = ACTIONS(1927), + [anon_sym_output_error] = ACTIONS(1927), + [anon_sym_type] = ACTIONS(1927), + [anon_sym_append] = ACTIONS(1927), + [anon_sym_metadata] = ACTIONS(1927), + [anon_sym_move] = ACTIONS(1927), + [anon_sym_read] = ACTIONS(1927), + [anon_sym_workdir] = ACTIONS(1927), + [anon_sym_write] = ACTIONS(1927), + [anon_sym_from_json] = ACTIONS(1927), + [anon_sym_to_json] = ACTIONS(1927), + [anon_sym_to_string] = ACTIONS(1927), + [anon_sym_to_float] = ACTIONS(1927), + [anon_sym_bash] = ACTIONS(1927), + [anon_sym_fish] = ACTIONS(1927), + [anon_sym_raw] = ACTIONS(1927), + [anon_sym_sh] = ACTIONS(1927), + [anon_sym_zsh] = ACTIONS(1927), + [anon_sym_random] = ACTIONS(1927), + [anon_sym_random_boolean] = ACTIONS(1927), + [anon_sym_random_float] = ACTIONS(1927), + [anon_sym_random_integer] = ACTIONS(1927), + [anon_sym_columns] = ACTIONS(1927), + [anon_sym_rows] = ACTIONS(1927), + [anon_sym_reverse] = ACTIONS(1927), }, [551] = { - [sym_statement] = STATE(687), - [sym_expression] = STATE(701), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_logic] = STATE(706), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(582), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1866), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(320), - [sym_identifier] = ACTIONS(149), + [sym_expression] = STATE(622), + [sym__expression_kind] = STATE(585), + [aux_sym__expression_list] = STATE(548), + [sym_value] = STATE(585), + [sym_boolean] = STATE(586), + [sym_list] = STATE(586), + [sym_map] = STATE(586), + [sym_index] = STATE(585), + [sym_math] = STATE(585), + [sym_logic] = STATE(585), + [sym_identifier_list] = STATE(1193), + [sym_table] = STATE(586), + [sym_function] = STATE(586), + [sym_function_call] = STATE(585), + [sym__context_defined_function] = STATE(587), + [sym_built_in_function] = STATE(587), + [sym__built_in_function_name] = STATE(429), + [sym_identifier] = ACTIONS(1315), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1923), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_if] = ACTIONS(197), - [anon_sym_match] = ACTIONS(497), - [anon_sym_EQ_GT] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_asyncfor] = ACTIONS(505), - [anon_sym_transform] = ACTIONS(507), - [anon_sym_filter] = ACTIONS(509), - [anon_sym_find] = ACTIONS(511), - [anon_sym_remove] = ACTIONS(513), - [anon_sym_reduce] = ACTIONS(515), - [anon_sym_select] = ACTIONS(517), - [anon_sym_insert] = ACTIONS(519), - [anon_sym_async] = ACTIONS(521), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(523), - [anon_sym_assert] = ACTIONS(525), - [anon_sym_assert_equal] = ACTIONS(525), - [anon_sym_download] = ACTIONS(525), - [anon_sym_help] = ACTIONS(525), - [anon_sym_length] = ACTIONS(525), - [anon_sym_output] = ACTIONS(525), - [anon_sym_output_error] = ACTIONS(525), - [anon_sym_type] = ACTIONS(525), - [anon_sym_append] = ACTIONS(525), - [anon_sym_metadata] = ACTIONS(525), - [anon_sym_move] = ACTIONS(525), - [anon_sym_read] = ACTIONS(525), - [anon_sym_workdir] = ACTIONS(525), - [anon_sym_write] = ACTIONS(525), - [anon_sym_from_json] = ACTIONS(525), - [anon_sym_to_json] = ACTIONS(525), - [anon_sym_to_string] = ACTIONS(525), - [anon_sym_to_float] = ACTIONS(525), - [anon_sym_bash] = ACTIONS(525), - [anon_sym_fish] = ACTIONS(525), - [anon_sym_raw] = ACTIONS(525), - [anon_sym_sh] = ACTIONS(525), - [anon_sym_zsh] = ACTIONS(525), - [anon_sym_random] = ACTIONS(525), - [anon_sym_random_boolean] = ACTIONS(525), - [anon_sym_random_float] = ACTIONS(525), - [anon_sym_random_integer] = ACTIONS(525), - [anon_sym_columns] = ACTIONS(525), - [anon_sym_rows] = ACTIONS(525), - [anon_sym_reverse] = ACTIONS(525), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2049), + [sym_integer] = ACTIONS(2051), + [sym_float] = ACTIONS(2053), + [sym_string] = ACTIONS(2053), + [anon_sym_true] = ACTIONS(2055), + [anon_sym_false] = ACTIONS(2055), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_COLON] = ACTIONS(1313), + [anon_sym_PLUS] = ACTIONS(1313), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_PERCENT] = ACTIONS(1313), + [anon_sym_EQ_EQ] = ACTIONS(1313), + [anon_sym_BANG_EQ] = ACTIONS(1313), + [anon_sym_AMP_AMP] = ACTIONS(1313), + [anon_sym_PIPE_PIPE] = ACTIONS(1313), + [anon_sym_GT] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(1315), + [anon_sym_GT_EQ] = ACTIONS(1313), + [anon_sym_LT_EQ] = ACTIONS(1313), + [anon_sym_EQ_GT] = ACTIONS(2059), + [anon_sym_in] = ACTIONS(2315), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2061), + [anon_sym_assert] = ACTIONS(1927), + [anon_sym_assert_equal] = ACTIONS(1927), + [anon_sym_download] = ACTIONS(1927), + [anon_sym_help] = ACTIONS(1927), + [anon_sym_length] = ACTIONS(1927), + [anon_sym_output] = ACTIONS(1927), + [anon_sym_output_error] = ACTIONS(1927), + [anon_sym_type] = ACTIONS(1927), + [anon_sym_append] = ACTIONS(1927), + [anon_sym_metadata] = ACTIONS(1927), + [anon_sym_move] = ACTIONS(1927), + [anon_sym_read] = ACTIONS(1927), + [anon_sym_workdir] = ACTIONS(1927), + [anon_sym_write] = ACTIONS(1927), + [anon_sym_from_json] = ACTIONS(1927), + [anon_sym_to_json] = ACTIONS(1927), + [anon_sym_to_string] = ACTIONS(1927), + [anon_sym_to_float] = ACTIONS(1927), + [anon_sym_bash] = ACTIONS(1927), + [anon_sym_fish] = ACTIONS(1927), + [anon_sym_raw] = ACTIONS(1927), + [anon_sym_sh] = ACTIONS(1927), + [anon_sym_zsh] = ACTIONS(1927), + [anon_sym_random] = ACTIONS(1927), + [anon_sym_random_boolean] = ACTIONS(1927), + [anon_sym_random_float] = ACTIONS(1927), + [anon_sym_random_integer] = ACTIONS(1927), + [anon_sym_columns] = ACTIONS(1927), + [anon_sym_rows] = ACTIONS(1927), + [anon_sym_reverse] = ACTIONS(1927), }, [552] = { - [sym_statement] = STATE(596), - [sym_expression] = STATE(583), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_logic] = STATE(631), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(567), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(2030), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(271), - [sym_identifier] = ACTIONS(55), + [sym_expression] = STATE(622), + [sym__expression_kind] = STATE(585), + [aux_sym__expression_list] = STATE(548), + [sym_value] = STATE(585), + [sym_boolean] = STATE(586), + [sym_list] = STATE(586), + [sym_map] = STATE(586), + [sym_index] = STATE(585), + [sym_math] = STATE(585), + [sym_logic] = STATE(585), + [sym_identifier_list] = STATE(1193), + [sym_table] = STATE(586), + [sym_function] = STATE(586), + [sym_function_call] = STATE(585), + [sym__context_defined_function] = STATE(587), + [sym_built_in_function] = STATE(587), + [sym__built_in_function_name] = STATE(429), + [sym_identifier] = ACTIONS(1315), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2445), - [anon_sym_LPAREN] = ACTIONS(59), - [sym_integer] = ACTIONS(61), - [sym_float] = ACTIONS(63), - [sym_string] = ACTIONS(63), - [anon_sym_true] = ACTIONS(65), - [anon_sym_false] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(67), - [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_asyncfor] = ACTIONS(127), - [anon_sym_transform] = ACTIONS(129), - [anon_sym_filter] = ACTIONS(131), - [anon_sym_find] = ACTIONS(133), - [anon_sym_remove] = ACTIONS(135), - [anon_sym_reduce] = ACTIONS(137), - [anon_sym_select] = ACTIONS(139), - [anon_sym_insert] = ACTIONS(141), - [anon_sym_async] = ACTIONS(143), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(145), - [anon_sym_assert] = ACTIONS(147), - [anon_sym_assert_equal] = ACTIONS(147), - [anon_sym_download] = ACTIONS(147), - [anon_sym_help] = ACTIONS(147), - [anon_sym_length] = ACTIONS(147), - [anon_sym_output] = ACTIONS(147), - [anon_sym_output_error] = ACTIONS(147), - [anon_sym_type] = ACTIONS(147), - [anon_sym_append] = ACTIONS(147), - [anon_sym_metadata] = ACTIONS(147), - [anon_sym_move] = ACTIONS(147), - [anon_sym_read] = ACTIONS(147), - [anon_sym_workdir] = ACTIONS(147), - [anon_sym_write] = ACTIONS(147), - [anon_sym_from_json] = ACTIONS(147), - [anon_sym_to_json] = ACTIONS(147), - [anon_sym_to_string] = ACTIONS(147), - [anon_sym_to_float] = ACTIONS(147), - [anon_sym_bash] = ACTIONS(147), - [anon_sym_fish] = ACTIONS(147), - [anon_sym_raw] = ACTIONS(147), - [anon_sym_sh] = ACTIONS(147), - [anon_sym_zsh] = ACTIONS(147), - [anon_sym_random] = ACTIONS(147), - [anon_sym_random_boolean] = ACTIONS(147), - [anon_sym_random_float] = ACTIONS(147), - [anon_sym_random_integer] = ACTIONS(147), - [anon_sym_columns] = ACTIONS(147), - [anon_sym_rows] = ACTIONS(147), - [anon_sym_reverse] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2049), + [sym_integer] = ACTIONS(2051), + [sym_float] = ACTIONS(2053), + [sym_string] = ACTIONS(2053), + [anon_sym_true] = ACTIONS(2055), + [anon_sym_false] = ACTIONS(2055), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_COLON] = ACTIONS(1313), + [anon_sym_PLUS] = ACTIONS(1313), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_PERCENT] = ACTIONS(1313), + [anon_sym_EQ_EQ] = ACTIONS(1313), + [anon_sym_BANG_EQ] = ACTIONS(1313), + [anon_sym_AMP_AMP] = ACTIONS(1313), + [anon_sym_PIPE_PIPE] = ACTIONS(1313), + [anon_sym_GT] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(1315), + [anon_sym_GT_EQ] = ACTIONS(1313), + [anon_sym_LT_EQ] = ACTIONS(1313), + [anon_sym_EQ_GT] = ACTIONS(2059), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2061), + [anon_sym_assert] = ACTIONS(1927), + [anon_sym_assert_equal] = ACTIONS(1927), + [anon_sym_download] = ACTIONS(1927), + [anon_sym_help] = ACTIONS(1927), + [anon_sym_length] = ACTIONS(1927), + [anon_sym_output] = ACTIONS(1927), + [anon_sym_output_error] = ACTIONS(1927), + [anon_sym_type] = ACTIONS(1927), + [anon_sym_append] = ACTIONS(1927), + [anon_sym_metadata] = ACTIONS(1927), + [anon_sym_move] = ACTIONS(1927), + [anon_sym_read] = ACTIONS(1927), + [anon_sym_workdir] = ACTIONS(1927), + [anon_sym_write] = ACTIONS(1927), + [anon_sym_from_json] = ACTIONS(1927), + [anon_sym_to_json] = ACTIONS(1927), + [anon_sym_to_string] = ACTIONS(1927), + [anon_sym_to_float] = ACTIONS(1927), + [anon_sym_bash] = ACTIONS(1927), + [anon_sym_fish] = ACTIONS(1927), + [anon_sym_raw] = ACTIONS(1927), + [anon_sym_sh] = ACTIONS(1927), + [anon_sym_zsh] = ACTIONS(1927), + [anon_sym_random] = ACTIONS(1927), + [anon_sym_random_boolean] = ACTIONS(1927), + [anon_sym_random_float] = ACTIONS(1927), + [anon_sym_random_integer] = ACTIONS(1927), + [anon_sym_columns] = ACTIONS(1927), + [anon_sym_rows] = ACTIONS(1927), + [anon_sym_reverse] = ACTIONS(1927), }, [553] = { - [sym_statement] = STATE(796), - [sym_expression] = STATE(817), - [sym__expression_kind] = STATE(759), - [sym_value] = STATE(759), - [sym_boolean] = STATE(757), - [sym_list] = STATE(757), - [sym_map] = STATE(757), - [sym_index] = STATE(748), - [sym_math] = STATE(759), - [sym_logic] = STATE(759), - [sym_assignment] = STATE(781), - [sym_if_else] = STATE(781), - [sym_if] = STATE(760), - [sym_match] = STATE(781), - [sym_while] = STATE(781), - [sym_for] = STATE(781), - [sym_transform] = STATE(781), - [sym_filter] = STATE(781), - [sym_find] = STATE(781), - [sym_remove] = STATE(781), - [sym_reduce] = STATE(781), - [sym_select] = STATE(781), - [sym_insert] = STATE(781), - [sym_async] = STATE(781), - [sym_identifier_list] = STATE(1926), - [sym_table] = STATE(757), - [sym_function] = STATE(757), - [sym_function_call] = STATE(759), - [sym__context_defined_function] = STATE(761), - [sym_built_in_function] = STATE(761), - [sym__built_in_function_name] = STATE(351), - [sym_identifier] = ACTIONS(1280), + [sym_expression] = STATE(622), + [sym__expression_kind] = STATE(585), + [aux_sym__expression_list] = STATE(548), + [sym_value] = STATE(585), + [sym_boolean] = STATE(586), + [sym_list] = STATE(586), + [sym_map] = STATE(586), + [sym_index] = STATE(585), + [sym_math] = STATE(585), + [sym_logic] = STATE(585), + [sym_identifier_list] = STATE(1193), + [sym_table] = STATE(586), + [sym_function] = STATE(586), + [sym_function_call] = STATE(585), + [sym__context_defined_function] = STATE(587), + [sym_built_in_function] = STATE(587), + [sym__built_in_function_name] = STATE(429), + [sym_identifier] = ACTIONS(2089), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2626), - [anon_sym_LPAREN] = ACTIONS(233), - [sym_integer] = ACTIONS(235), - [sym_float] = ACTIONS(237), - [sym_string] = ACTIONS(237), - [anon_sym_true] = ACTIONS(239), - [anon_sym_false] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(241), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_match] = ACTIONS(1286), - [anon_sym_EQ_GT] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_asyncfor] = ACTIONS(1294), - [anon_sym_transform] = ACTIONS(1296), - [anon_sym_filter] = ACTIONS(1298), - [anon_sym_find] = ACTIONS(1300), - [anon_sym_remove] = ACTIONS(1302), - [anon_sym_reduce] = ACTIONS(1304), - [anon_sym_select] = ACTIONS(1306), - [anon_sym_insert] = ACTIONS(1308), - [anon_sym_async] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(1312), - [anon_sym_assert] = ACTIONS(1314), - [anon_sym_assert_equal] = ACTIONS(1314), - [anon_sym_download] = ACTIONS(1314), - [anon_sym_help] = ACTIONS(1314), - [anon_sym_length] = ACTIONS(1314), - [anon_sym_output] = ACTIONS(1314), - [anon_sym_output_error] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_append] = ACTIONS(1314), - [anon_sym_metadata] = ACTIONS(1314), - [anon_sym_move] = ACTIONS(1314), - [anon_sym_read] = ACTIONS(1314), - [anon_sym_workdir] = ACTIONS(1314), - [anon_sym_write] = ACTIONS(1314), - [anon_sym_from_json] = ACTIONS(1314), - [anon_sym_to_json] = ACTIONS(1314), - [anon_sym_to_string] = ACTIONS(1314), - [anon_sym_to_float] = ACTIONS(1314), - [anon_sym_bash] = ACTIONS(1314), - [anon_sym_fish] = ACTIONS(1314), - [anon_sym_raw] = ACTIONS(1314), - [anon_sym_sh] = ACTIONS(1314), - [anon_sym_zsh] = ACTIONS(1314), - [anon_sym_random] = ACTIONS(1314), - [anon_sym_random_boolean] = ACTIONS(1314), - [anon_sym_random_float] = ACTIONS(1314), - [anon_sym_random_integer] = ACTIONS(1314), - [anon_sym_columns] = ACTIONS(1314), - [anon_sym_rows] = ACTIONS(1314), - [anon_sym_reverse] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2049), + [sym_integer] = ACTIONS(2051), + [sym_float] = ACTIONS(2053), + [sym_string] = ACTIONS(2053), + [anon_sym_true] = ACTIONS(2055), + [anon_sym_false] = ACTIONS(2055), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_COLON] = ACTIONS(1313), + [anon_sym_PLUS] = ACTIONS(1313), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_PERCENT] = ACTIONS(1313), + [anon_sym_EQ_EQ] = ACTIONS(1313), + [anon_sym_BANG_EQ] = ACTIONS(1313), + [anon_sym_AMP_AMP] = ACTIONS(1313), + [anon_sym_PIPE_PIPE] = ACTIONS(1313), + [anon_sym_GT] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(1315), + [anon_sym_GT_EQ] = ACTIONS(1313), + [anon_sym_LT_EQ] = ACTIONS(1313), + [anon_sym_EQ_GT] = ACTIONS(1313), + [anon_sym_PIPE] = ACTIONS(109), + [anon_sym_table] = ACTIONS(2061), + [anon_sym_assert] = ACTIONS(1927), + [anon_sym_assert_equal] = ACTIONS(1927), + [anon_sym_download] = ACTIONS(1927), + [anon_sym_help] = ACTIONS(1927), + [anon_sym_length] = ACTIONS(1927), + [anon_sym_output] = ACTIONS(1927), + [anon_sym_output_error] = ACTIONS(1927), + [anon_sym_type] = ACTIONS(1927), + [anon_sym_append] = ACTIONS(1927), + [anon_sym_metadata] = ACTIONS(1927), + [anon_sym_move] = ACTIONS(1927), + [anon_sym_read] = ACTIONS(1927), + [anon_sym_workdir] = ACTIONS(1927), + [anon_sym_write] = ACTIONS(1927), + [anon_sym_from_json] = ACTIONS(1927), + [anon_sym_to_json] = ACTIONS(1927), + [anon_sym_to_string] = ACTIONS(1927), + [anon_sym_to_float] = ACTIONS(1927), + [anon_sym_bash] = ACTIONS(1927), + [anon_sym_fish] = ACTIONS(1927), + [anon_sym_raw] = ACTIONS(1927), + [anon_sym_sh] = ACTIONS(1927), + [anon_sym_zsh] = ACTIONS(1927), + [anon_sym_random] = ACTIONS(1927), + [anon_sym_random_boolean] = ACTIONS(1927), + [anon_sym_random_float] = ACTIONS(1927), + [anon_sym_random_integer] = ACTIONS(1927), + [anon_sym_columns] = ACTIONS(1927), + [anon_sym_rows] = ACTIONS(1927), + [anon_sym_reverse] = ACTIONS(1927), }, [554] = { - [sym_statement] = STATE(1064), - [sym_expression] = STATE(934), - [sym__expression_kind] = STATE(866), - [sym_value] = STATE(866), - [sym_boolean] = STATE(844), - [sym_list] = STATE(844), - [sym_map] = STATE(844), - [sym_index] = STATE(842), - [sym_math] = STATE(866), - [sym_logic] = STATE(866), - [sym_assignment] = STATE(1075), - [sym_if_else] = STATE(1075), - [sym_if] = STATE(983), - [sym_match] = STATE(1075), - [sym_while] = STATE(1075), - [sym_for] = STATE(1075), - [sym_transform] = STATE(1075), - [sym_filter] = STATE(1075), - [sym_find] = STATE(1075), - [sym_remove] = STATE(1075), - [sym_reduce] = STATE(1075), - [sym_select] = STATE(1075), - [sym_insert] = STATE(1075), - [sym_async] = STATE(1075), - [sym_identifier_list] = STATE(2042), - [sym_table] = STATE(844), - [sym_function] = STATE(844), - [sym_function_call] = STATE(866), - [sym__context_defined_function] = STATE(874), - [sym_built_in_function] = STATE(874), - [sym__built_in_function_name] = STATE(360), - [sym_identifier] = ACTIONS(2162), + [sym_math_operator] = STATE(868), + [sym_logic_operator] = STATE(869), + [sym_identifier] = ACTIONS(2065), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2383), - [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(1570), - [anon_sym_match] = ACTIONS(2166), - [anon_sym_EQ_GT] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(2168), - [anon_sym_for] = ACTIONS(2170), - [anon_sym_asyncfor] = ACTIONS(2172), - [anon_sym_transform] = ACTIONS(2174), - [anon_sym_filter] = ACTIONS(2176), - [anon_sym_find] = ACTIONS(2178), - [anon_sym_remove] = ACTIONS(2180), - [anon_sym_reduce] = ACTIONS(2182), - [anon_sym_select] = ACTIONS(2184), - [anon_sym_insert] = ACTIONS(1224), - [anon_sym_async] = ACTIONS(2186), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(1228), - [anon_sym_assert] = ACTIONS(1230), - [anon_sym_assert_equal] = ACTIONS(1230), - [anon_sym_download] = ACTIONS(1230), - [anon_sym_help] = ACTIONS(1230), - [anon_sym_length] = ACTIONS(1230), - [anon_sym_output] = ACTIONS(1230), - [anon_sym_output_error] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_append] = ACTIONS(1230), - [anon_sym_metadata] = ACTIONS(1230), - [anon_sym_move] = ACTIONS(1230), - [anon_sym_read] = ACTIONS(1230), - [anon_sym_workdir] = ACTIONS(1230), - [anon_sym_write] = ACTIONS(1230), - [anon_sym_from_json] = ACTIONS(1230), - [anon_sym_to_json] = ACTIONS(1230), - [anon_sym_to_string] = ACTIONS(1230), - [anon_sym_to_float] = ACTIONS(1230), - [anon_sym_bash] = ACTIONS(1230), - [anon_sym_fish] = ACTIONS(1230), - [anon_sym_raw] = ACTIONS(1230), - [anon_sym_sh] = ACTIONS(1230), - [anon_sym_zsh] = ACTIONS(1230), - [anon_sym_random] = ACTIONS(1230), - [anon_sym_random_boolean] = ACTIONS(1230), - [anon_sym_random_float] = ACTIONS(1230), - [anon_sym_random_integer] = ACTIONS(1230), - [anon_sym_columns] = ACTIONS(1230), - [anon_sym_rows] = ACTIONS(1230), - [anon_sym_reverse] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(2063), + [anon_sym_RBRACE] = ACTIONS(2063), + [anon_sym_SEMI] = ACTIONS(2063), + [anon_sym_LPAREN] = ACTIONS(2063), + [anon_sym_RPAREN] = ACTIONS(2063), + [anon_sym_COMMA] = ACTIONS(2063), + [sym_integer] = ACTIONS(2065), + [sym_float] = ACTIONS(2063), + [sym_string] = ACTIONS(2063), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_LBRACK] = ACTIONS(2063), + [anon_sym_RBRACK] = ACTIONS(2063), + [anon_sym_COLON] = ACTIONS(2063), + [anon_sym_DOT_DOT] = ACTIONS(2063), + [anon_sym_PLUS] = ACTIONS(2063), + [anon_sym_DASH] = ACTIONS(2065), + [anon_sym_STAR] = ACTIONS(2063), + [anon_sym_SLASH] = ACTIONS(2063), + [anon_sym_PERCENT] = ACTIONS(2063), + [anon_sym_EQ_EQ] = ACTIONS(2063), + [anon_sym_BANG_EQ] = ACTIONS(2063), + [anon_sym_AMP_AMP] = ACTIONS(2063), + [anon_sym_PIPE_PIPE] = ACTIONS(2063), + [anon_sym_GT] = ACTIONS(2065), + [anon_sym_LT] = ACTIONS(2065), + [anon_sym_GT_EQ] = ACTIONS(2063), + [anon_sym_LT_EQ] = ACTIONS(2063), + [anon_sym_EQ_GT] = ACTIONS(2063), + [anon_sym_PIPE] = ACTIONS(2065), + [anon_sym_table] = ACTIONS(2065), + [anon_sym_assert] = ACTIONS(2065), + [anon_sym_assert_equal] = ACTIONS(2065), + [anon_sym_download] = ACTIONS(2065), + [anon_sym_help] = ACTIONS(2065), + [anon_sym_length] = ACTIONS(2065), + [anon_sym_output] = ACTIONS(2065), + [anon_sym_output_error] = ACTIONS(2065), + [anon_sym_type] = ACTIONS(2065), + [anon_sym_append] = ACTIONS(2065), + [anon_sym_metadata] = ACTIONS(2065), + [anon_sym_move] = ACTIONS(2065), + [anon_sym_read] = ACTIONS(2065), + [anon_sym_workdir] = ACTIONS(2065), + [anon_sym_write] = ACTIONS(2065), + [anon_sym_from_json] = ACTIONS(2065), + [anon_sym_to_json] = ACTIONS(2065), + [anon_sym_to_string] = ACTIONS(2065), + [anon_sym_to_float] = ACTIONS(2065), + [anon_sym_bash] = ACTIONS(2065), + [anon_sym_fish] = ACTIONS(2065), + [anon_sym_raw] = ACTIONS(2065), + [anon_sym_sh] = ACTIONS(2065), + [anon_sym_zsh] = ACTIONS(2065), + [anon_sym_random] = ACTIONS(2065), + [anon_sym_random_boolean] = ACTIONS(2065), + [anon_sym_random_float] = ACTIONS(2065), + [anon_sym_random_integer] = ACTIONS(2065), + [anon_sym_columns] = ACTIONS(2065), + [anon_sym_rows] = ACTIONS(2065), + [anon_sym_reverse] = ACTIONS(2065), }, [555] = { - [sym_statement] = STATE(596), - [sym_expression] = STATE(571), - [sym__expression_kind] = STATE(631), - [sym_value] = STATE(631), - [sym_boolean] = STATE(633), - [sym_list] = STATE(633), - [sym_map] = STATE(633), - [sym_index] = STATE(631), - [sym_math] = STATE(631), - [sym_logic] = STATE(631), - [sym_assignment] = STATE(592), - [sym_if_else] = STATE(592), - [sym_if] = STATE(558), - [sym_match] = STATE(592), - [sym_while] = STATE(592), - [sym_for] = STATE(592), - [sym_transform] = STATE(592), - [sym_filter] = STATE(592), - [sym_find] = STATE(592), - [sym_remove] = STATE(592), - [sym_reduce] = STATE(592), - [sym_select] = STATE(592), - [sym_insert] = STATE(592), - [sym_async] = STATE(592), - [sym_identifier_list] = STATE(1817), - [sym_table] = STATE(633), - [sym_function] = STATE(633), - [sym_function_call] = STATE(631), - [sym__context_defined_function] = STATE(628), - [sym_built_in_function] = STATE(628), - [sym__built_in_function_name] = STATE(265), - [sym_identifier] = ACTIONS(55), + [sym_math_operator] = STATE(868), + [sym_logic_operator] = STATE(869), + [sym_identifier] = ACTIONS(2036), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2445), - [anon_sym_LPAREN] = ACTIONS(59), - [sym_integer] = ACTIONS(61), - [sym_float] = ACTIONS(63), - [sym_string] = ACTIONS(63), - [anon_sym_true] = ACTIONS(65), - [anon_sym_false] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(67), - [anon_sym_if] = 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_asyncfor] = ACTIONS(91), - [anon_sym_transform] = ACTIONS(93), - [anon_sym_filter] = ACTIONS(95), - [anon_sym_find] = ACTIONS(97), - [anon_sym_remove] = ACTIONS(99), - [anon_sym_reduce] = ACTIONS(101), - [anon_sym_select] = ACTIONS(103), - [anon_sym_insert] = ACTIONS(105), - [anon_sym_async] = ACTIONS(107), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(111), - [anon_sym_assert] = ACTIONS(113), - [anon_sym_assert_equal] = ACTIONS(113), - [anon_sym_download] = ACTIONS(113), - [anon_sym_help] = ACTIONS(113), - [anon_sym_length] = ACTIONS(113), - [anon_sym_output] = ACTIONS(113), - [anon_sym_output_error] = ACTIONS(113), - [anon_sym_type] = ACTIONS(113), - [anon_sym_append] = ACTIONS(113), - [anon_sym_metadata] = ACTIONS(113), - [anon_sym_move] = ACTIONS(113), - [anon_sym_read] = ACTIONS(113), - [anon_sym_workdir] = ACTIONS(113), - [anon_sym_write] = ACTIONS(113), - [anon_sym_from_json] = ACTIONS(113), - [anon_sym_to_json] = ACTIONS(113), - [anon_sym_to_string] = ACTIONS(113), - [anon_sym_to_float] = ACTIONS(113), - [anon_sym_bash] = ACTIONS(113), - [anon_sym_fish] = ACTIONS(113), - [anon_sym_raw] = ACTIONS(113), - [anon_sym_sh] = ACTIONS(113), - [anon_sym_zsh] = ACTIONS(113), - [anon_sym_random] = ACTIONS(113), - [anon_sym_random_boolean] = ACTIONS(113), - [anon_sym_random_float] = ACTIONS(113), - [anon_sym_random_integer] = ACTIONS(113), - [anon_sym_columns] = ACTIONS(113), - [anon_sym_rows] = ACTIONS(113), - [anon_sym_reverse] = ACTIONS(113), + [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(2317), + [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(2320), + [anon_sym_DOT_DOT] = ACTIONS(2034), + [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(2034), + [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), }, [556] = { - [sym_statement] = STATE(687), - [sym_expression] = STATE(683), - [sym__expression_kind] = STATE(706), - [sym_value] = STATE(706), - [sym_boolean] = STATE(713), - [sym_list] = STATE(713), - [sym_map] = STATE(713), - [sym_index] = STATE(706), - [sym_math] = STATE(706), - [sym_logic] = STATE(706), - [sym_assignment] = STATE(699), - [sym_if_else] = STATE(699), - [sym_if] = STATE(573), - [sym_match] = STATE(699), - [sym_while] = STATE(699), - [sym_for] = STATE(699), - [sym_transform] = STATE(699), - [sym_filter] = STATE(699), - [sym_find] = STATE(699), - [sym_remove] = STATE(699), - [sym_reduce] = STATE(699), - [sym_select] = STATE(699), - [sym_insert] = STATE(699), - [sym_async] = STATE(699), - [sym_identifier_list] = STATE(1813), - [sym_table] = STATE(713), - [sym_function] = STATE(713), - [sym_function_call] = STATE(706), - [sym__context_defined_function] = STATE(703), - [sym_built_in_function] = STATE(703), - [sym__built_in_function_name] = STATE(311), - [sym_identifier] = ACTIONS(149), + [sym_math_operator] = STATE(868), + [sym_logic_operator] = STATE(869), + [sym_identifier] = ACTIONS(2077), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1923), - [anon_sym_LPAREN] = ACTIONS(153), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(157), - [sym_string] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_if] = ACTIONS(117), - [anon_sym_match] = ACTIONS(279), - [anon_sym_EQ_GT] = ACTIONS(281), - [anon_sym_while] = ACTIONS(283), - [anon_sym_for] = ACTIONS(285), - [anon_sym_asyncfor] = ACTIONS(287), - [anon_sym_transform] = ACTIONS(289), - [anon_sym_filter] = ACTIONS(291), - [anon_sym_find] = ACTIONS(293), - [anon_sym_remove] = ACTIONS(295), - [anon_sym_reduce] = ACTIONS(297), - [anon_sym_select] = ACTIONS(299), - [anon_sym_insert] = ACTIONS(301), - [anon_sym_async] = ACTIONS(303), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(305), - [anon_sym_assert] = ACTIONS(307), - [anon_sym_assert_equal] = ACTIONS(307), - [anon_sym_download] = ACTIONS(307), - [anon_sym_help] = ACTIONS(307), - [anon_sym_length] = ACTIONS(307), - [anon_sym_output] = ACTIONS(307), - [anon_sym_output_error] = ACTIONS(307), - [anon_sym_type] = ACTIONS(307), - [anon_sym_append] = ACTIONS(307), - [anon_sym_metadata] = ACTIONS(307), - [anon_sym_move] = ACTIONS(307), - [anon_sym_read] = ACTIONS(307), - [anon_sym_workdir] = ACTIONS(307), - [anon_sym_write] = ACTIONS(307), - [anon_sym_from_json] = ACTIONS(307), - [anon_sym_to_json] = ACTIONS(307), - [anon_sym_to_string] = ACTIONS(307), - [anon_sym_to_float] = ACTIONS(307), - [anon_sym_bash] = ACTIONS(307), - [anon_sym_fish] = ACTIONS(307), - [anon_sym_raw] = ACTIONS(307), - [anon_sym_sh] = ACTIONS(307), - [anon_sym_zsh] = ACTIONS(307), - [anon_sym_random] = ACTIONS(307), - [anon_sym_random_boolean] = ACTIONS(307), - [anon_sym_random_float] = ACTIONS(307), - [anon_sym_random_integer] = ACTIONS(307), - [anon_sym_columns] = ACTIONS(307), - [anon_sym_rows] = ACTIONS(307), - [anon_sym_reverse] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(2075), + [anon_sym_RBRACE] = ACTIONS(2075), + [anon_sym_SEMI] = ACTIONS(2075), + [anon_sym_LPAREN] = ACTIONS(2075), + [anon_sym_RPAREN] = ACTIONS(2075), + [anon_sym_COMMA] = ACTIONS(2075), + [sym_integer] = ACTIONS(2077), + [sym_float] = ACTIONS(2075), + [sym_string] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_LBRACK] = ACTIONS(2075), + [anon_sym_RBRACK] = ACTIONS(2075), + [anon_sym_COLON] = ACTIONS(2320), + [anon_sym_DOT_DOT] = ACTIONS(2075), + [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(2075), + [anon_sym_PIPE] = ACTIONS(2077), + [anon_sym_table] = ACTIONS(2077), + [anon_sym_assert] = ACTIONS(2077), + [anon_sym_assert_equal] = ACTIONS(2077), + [anon_sym_download] = ACTIONS(2077), + [anon_sym_help] = ACTIONS(2077), + [anon_sym_length] = ACTIONS(2077), + [anon_sym_output] = ACTIONS(2077), + [anon_sym_output_error] = ACTIONS(2077), + [anon_sym_type] = ACTIONS(2077), + [anon_sym_append] = ACTIONS(2077), + [anon_sym_metadata] = ACTIONS(2077), + [anon_sym_move] = ACTIONS(2077), + [anon_sym_read] = ACTIONS(2077), + [anon_sym_workdir] = ACTIONS(2077), + [anon_sym_write] = ACTIONS(2077), + [anon_sym_from_json] = ACTIONS(2077), + [anon_sym_to_json] = ACTIONS(2077), + [anon_sym_to_string] = ACTIONS(2077), + [anon_sym_to_float] = ACTIONS(2077), + [anon_sym_bash] = ACTIONS(2077), + [anon_sym_fish] = ACTIONS(2077), + [anon_sym_raw] = ACTIONS(2077), + [anon_sym_sh] = ACTIONS(2077), + [anon_sym_zsh] = ACTIONS(2077), + [anon_sym_random] = ACTIONS(2077), + [anon_sym_random_boolean] = ACTIONS(2077), + [anon_sym_random_float] = ACTIONS(2077), + [anon_sym_random_integer] = ACTIONS(2077), + [anon_sym_columns] = ACTIONS(2077), + [anon_sym_rows] = ACTIONS(2077), + [anon_sym_reverse] = ACTIONS(2077), }, [557] = { - [sym_else_if] = STATE(560), - [sym_else] = STATE(711), - [aux_sym_if_else_repeat1] = STATE(560), - [ts_builtin_sym_end] = ACTIONS(3219), - [sym_identifier] = ACTIONS(3221), + [sym_math_operator] = STATE(868), + [sym_logic_operator] = STATE(869), + [sym_identifier] = ACTIONS(2069), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_RPAREN] = ACTIONS(3219), - [anon_sym_COMMA] = ACTIONS(3219), - [sym_integer] = ACTIONS(3221), - [sym_float] = ACTIONS(3219), - [sym_string] = ACTIONS(3219), - [anon_sym_true] = ACTIONS(3221), - [anon_sym_false] = ACTIONS(3221), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_RBRACK] = ACTIONS(3219), - [anon_sym_EQ] = ACTIONS(3221), - [anon_sym_COLON] = ACTIONS(3219), - [anon_sym_DOT_DOT] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3221), - [anon_sym_DASH] = ACTIONS(3221), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_PERCENT] = ACTIONS(3219), - [anon_sym_EQ_EQ] = ACTIONS(3219), - [anon_sym_BANG_EQ] = ACTIONS(3219), - [anon_sym_AMP_AMP] = ACTIONS(3219), - [anon_sym_PIPE_PIPE] = ACTIONS(3219), - [anon_sym_GT] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3221), - [anon_sym_GT_EQ] = ACTIONS(3219), - [anon_sym_LT_EQ] = ACTIONS(3219), - [anon_sym_PLUS_EQ] = ACTIONS(3219), - [anon_sym_DASH_EQ] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3221), - [anon_sym_elseif] = ACTIONS(3223), - [anon_sym_else] = ACTIONS(3225), - [anon_sym_match] = ACTIONS(3221), - [anon_sym_EQ_GT] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3221), - [anon_sym_for] = ACTIONS(3221), - [anon_sym_asyncfor] = ACTIONS(3219), - [anon_sym_transform] = ACTIONS(3221), - [anon_sym_filter] = ACTIONS(3221), - [anon_sym_find] = ACTIONS(3221), - [anon_sym_remove] = ACTIONS(3221), - [anon_sym_reduce] = ACTIONS(3221), - [anon_sym_select] = ACTIONS(3221), - [anon_sym_insert] = ACTIONS(3221), - [anon_sym_async] = ACTIONS(3221), - [anon_sym_PIPE] = ACTIONS(3221), - [anon_sym_table] = ACTIONS(3221), - [anon_sym_assert] = ACTIONS(3221), - [anon_sym_assert_equal] = ACTIONS(3221), - [anon_sym_download] = ACTIONS(3221), - [anon_sym_help] = ACTIONS(3221), - [anon_sym_length] = ACTIONS(3221), - [anon_sym_output] = ACTIONS(3221), - [anon_sym_output_error] = ACTIONS(3221), - [anon_sym_type] = ACTIONS(3221), - [anon_sym_append] = ACTIONS(3221), - [anon_sym_metadata] = ACTIONS(3221), - [anon_sym_move] = ACTIONS(3221), - [anon_sym_read] = ACTIONS(3221), - [anon_sym_workdir] = ACTIONS(3221), - [anon_sym_write] = ACTIONS(3221), - [anon_sym_from_json] = ACTIONS(3221), - [anon_sym_to_json] = ACTIONS(3221), - [anon_sym_to_string] = ACTIONS(3221), - [anon_sym_to_float] = ACTIONS(3221), - [anon_sym_bash] = ACTIONS(3221), - [anon_sym_fish] = ACTIONS(3221), - [anon_sym_raw] = ACTIONS(3221), - [anon_sym_sh] = ACTIONS(3221), - [anon_sym_zsh] = ACTIONS(3221), - [anon_sym_random] = ACTIONS(3221), - [anon_sym_random_boolean] = ACTIONS(3221), - [anon_sym_random_float] = ACTIONS(3221), - [anon_sym_random_integer] = ACTIONS(3221), - [anon_sym_columns] = ACTIONS(3221), - [anon_sym_rows] = ACTIONS(3221), - [anon_sym_reverse] = ACTIONS(3221), + [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_RBRACE] = ACTIONS(2067), + [anon_sym_SEMI] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_RPAREN] = ACTIONS(2067), + [anon_sym_COMMA] = ACTIONS(2067), + [sym_integer] = ACTIONS(2069), + [sym_float] = ACTIONS(2067), + [sym_string] = ACTIONS(2067), + [anon_sym_true] = ACTIONS(2069), + [anon_sym_false] = ACTIONS(2069), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_RBRACK] = ACTIONS(2067), + [anon_sym_COLON] = ACTIONS(2067), + [anon_sym_DOT_DOT] = ACTIONS(2067), + [anon_sym_PLUS] = ACTIONS(2067), + [anon_sym_DASH] = ACTIONS(2069), + [anon_sym_STAR] = ACTIONS(2067), + [anon_sym_SLASH] = ACTIONS(2067), + [anon_sym_PERCENT] = ACTIONS(2067), + [anon_sym_EQ_EQ] = ACTIONS(2067), + [anon_sym_BANG_EQ] = ACTIONS(2067), + [anon_sym_AMP_AMP] = ACTIONS(2067), + [anon_sym_PIPE_PIPE] = ACTIONS(2067), + [anon_sym_GT] = ACTIONS(2069), + [anon_sym_LT] = ACTIONS(2069), + [anon_sym_GT_EQ] = ACTIONS(2067), + [anon_sym_LT_EQ] = ACTIONS(2067), + [anon_sym_EQ_GT] = ACTIONS(2067), + [anon_sym_PIPE] = ACTIONS(2069), + [anon_sym_table] = ACTIONS(2069), + [anon_sym_assert] = ACTIONS(2069), + [anon_sym_assert_equal] = ACTIONS(2069), + [anon_sym_download] = ACTIONS(2069), + [anon_sym_help] = ACTIONS(2069), + [anon_sym_length] = ACTIONS(2069), + [anon_sym_output] = ACTIONS(2069), + [anon_sym_output_error] = ACTIONS(2069), + [anon_sym_type] = ACTIONS(2069), + [anon_sym_append] = ACTIONS(2069), + [anon_sym_metadata] = ACTIONS(2069), + [anon_sym_move] = ACTIONS(2069), + [anon_sym_read] = ACTIONS(2069), + [anon_sym_workdir] = ACTIONS(2069), + [anon_sym_write] = ACTIONS(2069), + [anon_sym_from_json] = ACTIONS(2069), + [anon_sym_to_json] = ACTIONS(2069), + [anon_sym_to_string] = ACTIONS(2069), + [anon_sym_to_float] = ACTIONS(2069), + [anon_sym_bash] = ACTIONS(2069), + [anon_sym_fish] = ACTIONS(2069), + [anon_sym_raw] = ACTIONS(2069), + [anon_sym_sh] = ACTIONS(2069), + [anon_sym_zsh] = ACTIONS(2069), + [anon_sym_random] = ACTIONS(2069), + [anon_sym_random_boolean] = ACTIONS(2069), + [anon_sym_random_float] = ACTIONS(2069), + [anon_sym_random_integer] = ACTIONS(2069), + [anon_sym_columns] = ACTIONS(2069), + [anon_sym_rows] = ACTIONS(2069), + [anon_sym_reverse] = ACTIONS(2069), }, [558] = { - [sym_else_if] = STATE(559), - [sym_else] = STATE(595), - [aux_sym_if_else_repeat1] = STATE(559), - [ts_builtin_sym_end] = ACTIONS(3219), - [sym_identifier] = ACTIONS(3221), + [sym_math_operator] = STATE(868), + [sym_logic_operator] = STATE(869), + [sym_identifier] = ACTIONS(2081), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_RPAREN] = ACTIONS(3219), - [anon_sym_COMMA] = ACTIONS(3219), - [sym_integer] = ACTIONS(3221), - [sym_float] = ACTIONS(3219), - [sym_string] = ACTIONS(3219), - [anon_sym_true] = ACTIONS(3221), - [anon_sym_false] = ACTIONS(3221), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_RBRACK] = ACTIONS(3219), - [anon_sym_EQ] = ACTIONS(3221), - [anon_sym_COLON] = ACTIONS(3219), - [anon_sym_DOT_DOT] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3221), - [anon_sym_DASH] = ACTIONS(3221), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_PERCENT] = ACTIONS(3219), - [anon_sym_EQ_EQ] = ACTIONS(3219), - [anon_sym_BANG_EQ] = ACTIONS(3219), - [anon_sym_AMP_AMP] = ACTIONS(3219), - [anon_sym_PIPE_PIPE] = ACTIONS(3219), - [anon_sym_GT] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3221), - [anon_sym_GT_EQ] = ACTIONS(3219), - [anon_sym_LT_EQ] = ACTIONS(3219), - [anon_sym_PLUS_EQ] = ACTIONS(3219), - [anon_sym_DASH_EQ] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3221), - [anon_sym_elseif] = ACTIONS(3223), - [anon_sym_else] = ACTIONS(3227), - [anon_sym_match] = ACTIONS(3221), - [anon_sym_EQ_GT] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3221), - [anon_sym_for] = ACTIONS(3221), - [anon_sym_asyncfor] = ACTIONS(3219), - [anon_sym_transform] = ACTIONS(3221), - [anon_sym_filter] = ACTIONS(3221), - [anon_sym_find] = ACTIONS(3221), - [anon_sym_remove] = ACTIONS(3221), - [anon_sym_reduce] = ACTIONS(3221), - [anon_sym_select] = ACTIONS(3221), - [anon_sym_insert] = ACTIONS(3221), - [anon_sym_async] = ACTIONS(3221), - [anon_sym_PIPE] = ACTIONS(3221), - [anon_sym_table] = ACTIONS(3221), - [anon_sym_assert] = ACTIONS(3221), - [anon_sym_assert_equal] = ACTIONS(3221), - [anon_sym_download] = ACTIONS(3221), - [anon_sym_help] = ACTIONS(3221), - [anon_sym_length] = ACTIONS(3221), - [anon_sym_output] = ACTIONS(3221), - [anon_sym_output_error] = ACTIONS(3221), - [anon_sym_type] = ACTIONS(3221), - [anon_sym_append] = ACTIONS(3221), - [anon_sym_metadata] = ACTIONS(3221), - [anon_sym_move] = ACTIONS(3221), - [anon_sym_read] = ACTIONS(3221), - [anon_sym_workdir] = ACTIONS(3221), - [anon_sym_write] = ACTIONS(3221), - [anon_sym_from_json] = ACTIONS(3221), - [anon_sym_to_json] = ACTIONS(3221), - [anon_sym_to_string] = ACTIONS(3221), - [anon_sym_to_float] = ACTIONS(3221), - [anon_sym_bash] = ACTIONS(3221), - [anon_sym_fish] = ACTIONS(3221), - [anon_sym_raw] = ACTIONS(3221), - [anon_sym_sh] = ACTIONS(3221), - [anon_sym_zsh] = ACTIONS(3221), - [anon_sym_random] = ACTIONS(3221), - [anon_sym_random_boolean] = ACTIONS(3221), - [anon_sym_random_float] = ACTIONS(3221), - [anon_sym_random_integer] = ACTIONS(3221), - [anon_sym_columns] = ACTIONS(3221), - [anon_sym_rows] = ACTIONS(3221), - [anon_sym_reverse] = ACTIONS(3221), + [anon_sym_LBRACE] = ACTIONS(2079), + [anon_sym_RBRACE] = ACTIONS(2079), + [anon_sym_SEMI] = ACTIONS(2079), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_RPAREN] = ACTIONS(2079), + [anon_sym_COMMA] = ACTIONS(2079), + [sym_integer] = ACTIONS(2081), + [sym_float] = ACTIONS(2079), + [sym_string] = ACTIONS(2079), + [anon_sym_true] = ACTIONS(2081), + [anon_sym_false] = ACTIONS(2081), + [anon_sym_LBRACK] = ACTIONS(2079), + [anon_sym_RBRACK] = ACTIONS(2079), + [anon_sym_COLON] = ACTIONS(2320), + [anon_sym_DOT_DOT] = ACTIONS(2079), + [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(2079), + [anon_sym_PIPE] = ACTIONS(2081), + [anon_sym_table] = ACTIONS(2081), + [anon_sym_assert] = ACTIONS(2081), + [anon_sym_assert_equal] = ACTIONS(2081), + [anon_sym_download] = ACTIONS(2081), + [anon_sym_help] = ACTIONS(2081), + [anon_sym_length] = ACTIONS(2081), + [anon_sym_output] = ACTIONS(2081), + [anon_sym_output_error] = ACTIONS(2081), + [anon_sym_type] = ACTIONS(2081), + [anon_sym_append] = ACTIONS(2081), + [anon_sym_metadata] = ACTIONS(2081), + [anon_sym_move] = ACTIONS(2081), + [anon_sym_read] = ACTIONS(2081), + [anon_sym_workdir] = ACTIONS(2081), + [anon_sym_write] = ACTIONS(2081), + [anon_sym_from_json] = ACTIONS(2081), + [anon_sym_to_json] = ACTIONS(2081), + [anon_sym_to_string] = ACTIONS(2081), + [anon_sym_to_float] = ACTIONS(2081), + [anon_sym_bash] = ACTIONS(2081), + [anon_sym_fish] = ACTIONS(2081), + [anon_sym_raw] = ACTIONS(2081), + [anon_sym_sh] = ACTIONS(2081), + [anon_sym_zsh] = ACTIONS(2081), + [anon_sym_random] = ACTIONS(2081), + [anon_sym_random_boolean] = ACTIONS(2081), + [anon_sym_random_float] = ACTIONS(2081), + [anon_sym_random_integer] = ACTIONS(2081), + [anon_sym_columns] = ACTIONS(2081), + [anon_sym_rows] = ACTIONS(2081), + [anon_sym_reverse] = ACTIONS(2081), }, [559] = { - [sym_else_if] = STATE(570), - [sym_else] = STATE(605), - [aux_sym_if_else_repeat1] = STATE(570), - [ts_builtin_sym_end] = ACTIONS(3229), - [sym_identifier] = ACTIONS(3231), + [sym_math_operator] = STATE(868), + [sym_logic_operator] = STATE(869), + [sym_identifier] = ACTIONS(2028), [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3229), - [anon_sym_RBRACE] = ACTIONS(3229), - [anon_sym_SEMI] = ACTIONS(3229), - [anon_sym_LPAREN] = ACTIONS(3229), - [anon_sym_RPAREN] = ACTIONS(3229), - [anon_sym_COMMA] = ACTIONS(3229), - [sym_integer] = ACTIONS(3231), - [sym_float] = ACTIONS(3229), - [sym_string] = ACTIONS(3229), - [anon_sym_true] = ACTIONS(3231), - [anon_sym_false] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3229), - [anon_sym_RBRACK] = ACTIONS(3229), - [anon_sym_EQ] = ACTIONS(3231), - [anon_sym_COLON] = ACTIONS(3229), - [anon_sym_DOT_DOT] = ACTIONS(3229), - [anon_sym_PLUS] = ACTIONS(3231), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_SLASH] = ACTIONS(3229), - [anon_sym_PERCENT] = ACTIONS(3229), - [anon_sym_EQ_EQ] = ACTIONS(3229), - [anon_sym_BANG_EQ] = ACTIONS(3229), - [anon_sym_AMP_AMP] = ACTIONS(3229), - [anon_sym_PIPE_PIPE] = ACTIONS(3229), - [anon_sym_GT] = ACTIONS(3231), - [anon_sym_LT] = ACTIONS(3231), - [anon_sym_GT_EQ] = ACTIONS(3229), - [anon_sym_LT_EQ] = ACTIONS(3229), - [anon_sym_PLUS_EQ] = ACTIONS(3229), - [anon_sym_DASH_EQ] = ACTIONS(3229), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_elseif] = ACTIONS(3223), - [anon_sym_else] = ACTIONS(3227), - [anon_sym_match] = ACTIONS(3231), - [anon_sym_EQ_GT] = ACTIONS(3229), - [anon_sym_while] = ACTIONS(3231), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_asyncfor] = ACTIONS(3229), - [anon_sym_transform] = ACTIONS(3231), - [anon_sym_filter] = ACTIONS(3231), - [anon_sym_find] = ACTIONS(3231), - [anon_sym_remove] = ACTIONS(3231), - [anon_sym_reduce] = ACTIONS(3231), - [anon_sym_select] = ACTIONS(3231), - [anon_sym_insert] = ACTIONS(3231), - [anon_sym_async] = ACTIONS(3231), - [anon_sym_PIPE] = ACTIONS(3231), - [anon_sym_table] = ACTIONS(3231), - [anon_sym_assert] = ACTIONS(3231), - [anon_sym_assert_equal] = ACTIONS(3231), - [anon_sym_download] = ACTIONS(3231), - [anon_sym_help] = ACTIONS(3231), - [anon_sym_length] = ACTIONS(3231), - [anon_sym_output] = ACTIONS(3231), - [anon_sym_output_error] = ACTIONS(3231), - [anon_sym_type] = ACTIONS(3231), - [anon_sym_append] = ACTIONS(3231), - [anon_sym_metadata] = ACTIONS(3231), - [anon_sym_move] = ACTIONS(3231), - [anon_sym_read] = ACTIONS(3231), - [anon_sym_workdir] = ACTIONS(3231), - [anon_sym_write] = ACTIONS(3231), - [anon_sym_from_json] = ACTIONS(3231), - [anon_sym_to_json] = ACTIONS(3231), - [anon_sym_to_string] = ACTIONS(3231), - [anon_sym_to_float] = ACTIONS(3231), - [anon_sym_bash] = ACTIONS(3231), - [anon_sym_fish] = ACTIONS(3231), - [anon_sym_raw] = ACTIONS(3231), - [anon_sym_sh] = ACTIONS(3231), - [anon_sym_zsh] = ACTIONS(3231), - [anon_sym_random] = ACTIONS(3231), - [anon_sym_random_boolean] = ACTIONS(3231), - [anon_sym_random_float] = ACTIONS(3231), - [anon_sym_random_integer] = ACTIONS(3231), - [anon_sym_columns] = ACTIONS(3231), - [anon_sym_rows] = ACTIONS(3231), - [anon_sym_reverse] = ACTIONS(3231), + [anon_sym_LBRACE] = ACTIONS(2026), + [anon_sym_RBRACE] = ACTIONS(2026), + [anon_sym_SEMI] = ACTIONS(2026), + [anon_sym_LPAREN] = ACTIONS(2026), + [anon_sym_RPAREN] = ACTIONS(2026), + [anon_sym_COMMA] = ACTIONS(2026), + [sym_integer] = ACTIONS(2028), + [sym_float] = ACTIONS(2026), + [sym_string] = ACTIONS(2026), + [anon_sym_true] = ACTIONS(2028), + [anon_sym_false] = ACTIONS(2028), + [anon_sym_LBRACK] = ACTIONS(2026), + [anon_sym_RBRACK] = ACTIONS(2026), + [anon_sym_COLON] = ACTIONS(2026), + [anon_sym_DOT_DOT] = ACTIONS(2026), + [anon_sym_PLUS] = ACTIONS(2026), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(2026), + [anon_sym_SLASH] = ACTIONS(2026), + [anon_sym_PERCENT] = ACTIONS(2026), + [anon_sym_EQ_EQ] = ACTIONS(2026), + [anon_sym_BANG_EQ] = ACTIONS(2026), + [anon_sym_AMP_AMP] = ACTIONS(2026), + [anon_sym_PIPE_PIPE] = ACTIONS(2026), + [anon_sym_GT] = ACTIONS(2028), + [anon_sym_LT] = ACTIONS(2028), + [anon_sym_GT_EQ] = ACTIONS(2026), + [anon_sym_LT_EQ] = ACTIONS(2026), + [anon_sym_EQ_GT] = ACTIONS(2026), + [anon_sym_PIPE] = ACTIONS(2028), + [anon_sym_table] = ACTIONS(2028), + [anon_sym_assert] = ACTIONS(2028), + [anon_sym_assert_equal] = ACTIONS(2028), + [anon_sym_download] = ACTIONS(2028), + [anon_sym_help] = ACTIONS(2028), + [anon_sym_length] = ACTIONS(2028), + [anon_sym_output] = ACTIONS(2028), + [anon_sym_output_error] = ACTIONS(2028), + [anon_sym_type] = ACTIONS(2028), + [anon_sym_append] = ACTIONS(2028), + [anon_sym_metadata] = ACTIONS(2028), + [anon_sym_move] = ACTIONS(2028), + [anon_sym_read] = ACTIONS(2028), + [anon_sym_workdir] = ACTIONS(2028), + [anon_sym_write] = ACTIONS(2028), + [anon_sym_from_json] = ACTIONS(2028), + [anon_sym_to_json] = ACTIONS(2028), + [anon_sym_to_string] = ACTIONS(2028), + [anon_sym_to_float] = ACTIONS(2028), + [anon_sym_bash] = ACTIONS(2028), + [anon_sym_fish] = ACTIONS(2028), + [anon_sym_raw] = ACTIONS(2028), + [anon_sym_sh] = ACTIONS(2028), + [anon_sym_zsh] = ACTIONS(2028), + [anon_sym_random] = ACTIONS(2028), + [anon_sym_random_boolean] = ACTIONS(2028), + [anon_sym_random_float] = ACTIONS(2028), + [anon_sym_random_integer] = ACTIONS(2028), + [anon_sym_columns] = ACTIONS(2028), + [anon_sym_rows] = ACTIONS(2028), + [anon_sym_reverse] = ACTIONS(2028), }, [560] = { - [sym_else_if] = STATE(570), - [sym_else] = STATE(725), - [aux_sym_if_else_repeat1] = STATE(570), - [ts_builtin_sym_end] = ACTIONS(3229), - [sym_identifier] = ACTIONS(3231), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3229), - [anon_sym_RBRACE] = ACTIONS(3229), - [anon_sym_SEMI] = ACTIONS(3229), - [anon_sym_LPAREN] = ACTIONS(3229), - [anon_sym_RPAREN] = ACTIONS(3229), - [anon_sym_COMMA] = ACTIONS(3229), - [sym_integer] = ACTIONS(3231), - [sym_float] = ACTIONS(3229), - [sym_string] = ACTIONS(3229), - [anon_sym_true] = ACTIONS(3231), - [anon_sym_false] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3229), - [anon_sym_RBRACK] = ACTIONS(3229), - [anon_sym_EQ] = ACTIONS(3231), - [anon_sym_COLON] = ACTIONS(3229), - [anon_sym_DOT_DOT] = ACTIONS(3229), - [anon_sym_PLUS] = ACTIONS(3231), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_SLASH] = ACTIONS(3229), - [anon_sym_PERCENT] = ACTIONS(3229), - [anon_sym_EQ_EQ] = ACTIONS(3229), - [anon_sym_BANG_EQ] = ACTIONS(3229), - [anon_sym_AMP_AMP] = ACTIONS(3229), - [anon_sym_PIPE_PIPE] = ACTIONS(3229), - [anon_sym_GT] = ACTIONS(3231), - [anon_sym_LT] = ACTIONS(3231), - [anon_sym_GT_EQ] = ACTIONS(3229), - [anon_sym_LT_EQ] = ACTIONS(3229), - [anon_sym_PLUS_EQ] = ACTIONS(3229), - [anon_sym_DASH_EQ] = ACTIONS(3229), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_elseif] = ACTIONS(3223), - [anon_sym_else] = ACTIONS(3225), - [anon_sym_match] = ACTIONS(3231), - [anon_sym_EQ_GT] = ACTIONS(3229), - [anon_sym_while] = ACTIONS(3231), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_asyncfor] = ACTIONS(3229), - [anon_sym_transform] = ACTIONS(3231), - [anon_sym_filter] = ACTIONS(3231), - [anon_sym_find] = ACTIONS(3231), - [anon_sym_remove] = ACTIONS(3231), - [anon_sym_reduce] = ACTIONS(3231), - [anon_sym_select] = ACTIONS(3231), - [anon_sym_insert] = ACTIONS(3231), - [anon_sym_async] = ACTIONS(3231), - [anon_sym_PIPE] = ACTIONS(3231), - [anon_sym_table] = ACTIONS(3231), - [anon_sym_assert] = ACTIONS(3231), - [anon_sym_assert_equal] = ACTIONS(3231), - [anon_sym_download] = ACTIONS(3231), - [anon_sym_help] = ACTIONS(3231), - [anon_sym_length] = ACTIONS(3231), - [anon_sym_output] = ACTIONS(3231), - [anon_sym_output_error] = ACTIONS(3231), - [anon_sym_type] = ACTIONS(3231), - [anon_sym_append] = ACTIONS(3231), - [anon_sym_metadata] = ACTIONS(3231), - [anon_sym_move] = ACTIONS(3231), - [anon_sym_read] = ACTIONS(3231), - [anon_sym_workdir] = ACTIONS(3231), - [anon_sym_write] = ACTIONS(3231), - [anon_sym_from_json] = ACTIONS(3231), - [anon_sym_to_json] = ACTIONS(3231), - [anon_sym_to_string] = ACTIONS(3231), - [anon_sym_to_float] = ACTIONS(3231), - [anon_sym_bash] = ACTIONS(3231), - [anon_sym_fish] = ACTIONS(3231), - [anon_sym_raw] = ACTIONS(3231), - [anon_sym_sh] = ACTIONS(3231), - [anon_sym_zsh] = ACTIONS(3231), - [anon_sym_random] = ACTIONS(3231), - [anon_sym_random_boolean] = ACTIONS(3231), - [anon_sym_random_float] = ACTIONS(3231), - [anon_sym_random_integer] = ACTIONS(3231), - [anon_sym_columns] = ACTIONS(3231), - [anon_sym_rows] = ACTIONS(3231), - [anon_sym_reverse] = ACTIONS(3231), - }, - [561] = { - [sym_math_operator] = STATE(1313), - [sym_logic_operator] = STATE(1312), - [ts_builtin_sym_end] = ACTIONS(3233), - [sym_identifier] = ACTIONS(3235), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3233), - [anon_sym_RBRACE] = ACTIONS(3233), - [anon_sym_SEMI] = ACTIONS(3233), - [anon_sym_LPAREN] = ACTIONS(3233), - [anon_sym_RPAREN] = ACTIONS(3233), - [anon_sym_COMMA] = ACTIONS(3237), - [sym_integer] = ACTIONS(3235), - [sym_float] = ACTIONS(3233), - [sym_string] = ACTIONS(3233), - [anon_sym_true] = ACTIONS(3235), - [anon_sym_false] = ACTIONS(3235), - [anon_sym_LBRACK] = ACTIONS(3233), - [anon_sym_RBRACK] = ACTIONS(3233), - [anon_sym_EQ] = ACTIONS(3235), - [anon_sym_COLON] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3233), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_PLUS_EQ] = ACTIONS(3233), - [anon_sym_DASH_EQ] = ACTIONS(3233), - [anon_sym_if] = ACTIONS(3235), - [anon_sym_elseif] = ACTIONS(3233), - [anon_sym_else] = ACTIONS(3235), - [anon_sym_match] = ACTIONS(3235), - [anon_sym_EQ_GT] = ACTIONS(3233), - [anon_sym_while] = ACTIONS(3235), - [anon_sym_for] = ACTIONS(3235), - [anon_sym_asyncfor] = ACTIONS(3233), - [anon_sym_transform] = ACTIONS(3235), - [anon_sym_filter] = ACTIONS(3235), - [anon_sym_find] = ACTIONS(3235), - [anon_sym_remove] = ACTIONS(3235), - [anon_sym_reduce] = ACTIONS(3235), - [anon_sym_select] = ACTIONS(3235), - [anon_sym_insert] = ACTIONS(3235), - [anon_sym_async] = ACTIONS(3235), - [anon_sym_PIPE] = ACTIONS(3235), - [anon_sym_table] = ACTIONS(3235), - [anon_sym_assert] = ACTIONS(3235), - [anon_sym_assert_equal] = ACTIONS(3235), - [anon_sym_download] = ACTIONS(3235), - [anon_sym_help] = ACTIONS(3235), - [anon_sym_length] = ACTIONS(3235), - [anon_sym_output] = ACTIONS(3235), - [anon_sym_output_error] = ACTIONS(3235), - [anon_sym_type] = ACTIONS(3235), - [anon_sym_append] = ACTIONS(3235), - [anon_sym_metadata] = ACTIONS(3235), - [anon_sym_move] = ACTIONS(3235), - [anon_sym_read] = ACTIONS(3235), - [anon_sym_workdir] = ACTIONS(3235), - [anon_sym_write] = ACTIONS(3235), - [anon_sym_from_json] = ACTIONS(3235), - [anon_sym_to_json] = ACTIONS(3235), - [anon_sym_to_string] = ACTIONS(3235), - [anon_sym_to_float] = ACTIONS(3235), - [anon_sym_bash] = ACTIONS(3235), - [anon_sym_fish] = ACTIONS(3235), - [anon_sym_raw] = ACTIONS(3235), - [anon_sym_sh] = ACTIONS(3235), - [anon_sym_zsh] = ACTIONS(3235), - [anon_sym_random] = ACTIONS(3235), - [anon_sym_random_boolean] = ACTIONS(3235), - [anon_sym_random_float] = ACTIONS(3235), - [anon_sym_random_integer] = ACTIONS(3235), - [anon_sym_columns] = ACTIONS(3235), - [anon_sym_rows] = ACTIONS(3235), - [anon_sym_reverse] = ACTIONS(3235), - }, - [562] = { - [sym_math_operator] = STATE(1313), - [sym_logic_operator] = STATE(1312), - [ts_builtin_sym_end] = ACTIONS(3240), - [sym_identifier] = ACTIONS(3242), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3240), - [anon_sym_SEMI] = ACTIONS(3240), - [anon_sym_LPAREN] = ACTIONS(3240), - [anon_sym_RPAREN] = ACTIONS(3240), - [anon_sym_COMMA] = ACTIONS(3240), - [sym_integer] = ACTIONS(3242), - [sym_float] = ACTIONS(3240), - [sym_string] = ACTIONS(3240), - [anon_sym_true] = ACTIONS(3242), - [anon_sym_false] = ACTIONS(3242), - [anon_sym_LBRACK] = ACTIONS(3240), - [anon_sym_RBRACK] = ACTIONS(3240), - [anon_sym_EQ] = ACTIONS(3242), - [anon_sym_COLON] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3240), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_PLUS_EQ] = ACTIONS(3240), - [anon_sym_DASH_EQ] = ACTIONS(3240), - [anon_sym_if] = ACTIONS(3242), - [anon_sym_elseif] = ACTIONS(3240), - [anon_sym_else] = ACTIONS(3242), - [anon_sym_match] = ACTIONS(3242), - [anon_sym_EQ_GT] = ACTIONS(3240), - [anon_sym_while] = ACTIONS(3242), - [anon_sym_for] = ACTIONS(3242), - [anon_sym_asyncfor] = ACTIONS(3240), - [anon_sym_transform] = ACTIONS(3242), - [anon_sym_filter] = ACTIONS(3242), - [anon_sym_find] = ACTIONS(3242), - [anon_sym_remove] = ACTIONS(3242), - [anon_sym_reduce] = ACTIONS(3242), - [anon_sym_select] = ACTIONS(3242), - [anon_sym_insert] = ACTIONS(3242), - [anon_sym_async] = ACTIONS(3242), - [anon_sym_PIPE] = ACTIONS(3242), - [anon_sym_table] = ACTIONS(3242), - [anon_sym_assert] = ACTIONS(3242), - [anon_sym_assert_equal] = ACTIONS(3242), - [anon_sym_download] = ACTIONS(3242), - [anon_sym_help] = ACTIONS(3242), - [anon_sym_length] = ACTIONS(3242), - [anon_sym_output] = ACTIONS(3242), - [anon_sym_output_error] = ACTIONS(3242), - [anon_sym_type] = ACTIONS(3242), - [anon_sym_append] = ACTIONS(3242), - [anon_sym_metadata] = ACTIONS(3242), - [anon_sym_move] = ACTIONS(3242), - [anon_sym_read] = ACTIONS(3242), - [anon_sym_workdir] = ACTIONS(3242), - [anon_sym_write] = ACTIONS(3242), - [anon_sym_from_json] = ACTIONS(3242), - [anon_sym_to_json] = ACTIONS(3242), - [anon_sym_to_string] = ACTIONS(3242), - [anon_sym_to_float] = ACTIONS(3242), - [anon_sym_bash] = ACTIONS(3242), - [anon_sym_fish] = ACTIONS(3242), - [anon_sym_raw] = ACTIONS(3242), - [anon_sym_sh] = ACTIONS(3242), - [anon_sym_zsh] = ACTIONS(3242), - [anon_sym_random] = ACTIONS(3242), - [anon_sym_random_boolean] = ACTIONS(3242), - [anon_sym_random_float] = ACTIONS(3242), - [anon_sym_random_integer] = ACTIONS(3242), - [anon_sym_columns] = ACTIONS(3242), - [anon_sym_rows] = ACTIONS(3242), - [anon_sym_reverse] = ACTIONS(3242), - }, - [563] = { - [sym_math_operator] = STATE(1313), - [sym_logic_operator] = STATE(1312), - [ts_builtin_sym_end] = ACTIONS(3244), - [sym_identifier] = ACTIONS(3246), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_RBRACE] = ACTIONS(3244), - [anon_sym_SEMI] = ACTIONS(3244), - [anon_sym_LPAREN] = ACTIONS(3244), - [anon_sym_RPAREN] = ACTIONS(3244), - [anon_sym_COMMA] = ACTIONS(3244), - [sym_integer] = ACTIONS(3246), - [sym_float] = ACTIONS(3244), - [sym_string] = ACTIONS(3244), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_LBRACK] = ACTIONS(3244), - [anon_sym_RBRACK] = ACTIONS(3244), - [anon_sym_EQ] = ACTIONS(3246), - [anon_sym_COLON] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3244), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_PLUS_EQ] = ACTIONS(3244), - [anon_sym_DASH_EQ] = ACTIONS(3244), - [anon_sym_if] = ACTIONS(3246), - [anon_sym_elseif] = ACTIONS(3244), - [anon_sym_else] = ACTIONS(3246), - [anon_sym_match] = ACTIONS(3246), - [anon_sym_EQ_GT] = ACTIONS(3244), - [anon_sym_while] = ACTIONS(3246), - [anon_sym_for] = ACTIONS(3246), - [anon_sym_asyncfor] = ACTIONS(3244), - [anon_sym_transform] = ACTIONS(3246), - [anon_sym_filter] = ACTIONS(3246), - [anon_sym_find] = ACTIONS(3246), - [anon_sym_remove] = ACTIONS(3246), - [anon_sym_reduce] = ACTIONS(3246), - [anon_sym_select] = ACTIONS(3246), - [anon_sym_insert] = ACTIONS(3246), - [anon_sym_async] = ACTIONS(3246), - [anon_sym_PIPE] = ACTIONS(3246), - [anon_sym_table] = ACTIONS(3246), - [anon_sym_assert] = ACTIONS(3246), - [anon_sym_assert_equal] = ACTIONS(3246), - [anon_sym_download] = ACTIONS(3246), - [anon_sym_help] = ACTIONS(3246), - [anon_sym_length] = ACTIONS(3246), - [anon_sym_output] = ACTIONS(3246), - [anon_sym_output_error] = ACTIONS(3246), - [anon_sym_type] = ACTIONS(3246), - [anon_sym_append] = ACTIONS(3246), - [anon_sym_metadata] = ACTIONS(3246), - [anon_sym_move] = ACTIONS(3246), - [anon_sym_read] = ACTIONS(3246), - [anon_sym_workdir] = ACTIONS(3246), - [anon_sym_write] = ACTIONS(3246), - [anon_sym_from_json] = ACTIONS(3246), - [anon_sym_to_json] = ACTIONS(3246), - [anon_sym_to_string] = ACTIONS(3246), - [anon_sym_to_float] = ACTIONS(3246), - [anon_sym_bash] = ACTIONS(3246), - [anon_sym_fish] = ACTIONS(3246), - [anon_sym_raw] = ACTIONS(3246), - [anon_sym_sh] = ACTIONS(3246), - [anon_sym_zsh] = ACTIONS(3246), - [anon_sym_random] = ACTIONS(3246), - [anon_sym_random_boolean] = ACTIONS(3246), - [anon_sym_random_float] = ACTIONS(3246), - [anon_sym_random_integer] = ACTIONS(3246), - [anon_sym_columns] = ACTIONS(3246), - [anon_sym_rows] = ACTIONS(3246), - [anon_sym_reverse] = ACTIONS(3246), - }, - [564] = { - [sym_math_operator] = STATE(1313), - [sym_logic_operator] = STATE(1312), - [ts_builtin_sym_end] = ACTIONS(3248), - [sym_identifier] = ACTIONS(3250), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3248), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(3248), - [anon_sym_RPAREN] = ACTIONS(3248), - [anon_sym_COMMA] = ACTIONS(3248), - [sym_integer] = ACTIONS(3250), - [sym_float] = ACTIONS(3248), - [sym_string] = ACTIONS(3248), - [anon_sym_true] = ACTIONS(3250), - [anon_sym_false] = ACTIONS(3250), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_RBRACK] = ACTIONS(3248), - [anon_sym_EQ] = ACTIONS(3250), - [anon_sym_COLON] = ACTIONS(3248), - [anon_sym_DOT_DOT] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3250), - [anon_sym_DASH] = ACTIONS(3250), - [anon_sym_STAR] = ACTIONS(3248), - [anon_sym_SLASH] = ACTIONS(3248), - [anon_sym_PERCENT] = ACTIONS(3248), - [anon_sym_EQ_EQ] = ACTIONS(3248), - [anon_sym_BANG_EQ] = ACTIONS(3248), - [anon_sym_AMP_AMP] = ACTIONS(3248), - [anon_sym_PIPE_PIPE] = ACTIONS(3248), - [anon_sym_GT] = ACTIONS(3250), - [anon_sym_LT] = ACTIONS(3250), - [anon_sym_GT_EQ] = ACTIONS(3248), - [anon_sym_LT_EQ] = ACTIONS(3248), - [anon_sym_PLUS_EQ] = ACTIONS(3248), - [anon_sym_DASH_EQ] = ACTIONS(3248), - [anon_sym_if] = ACTIONS(3250), - [anon_sym_elseif] = ACTIONS(3248), - [anon_sym_else] = ACTIONS(3250), - [anon_sym_match] = ACTIONS(3250), - [anon_sym_EQ_GT] = ACTIONS(3248), - [anon_sym_while] = ACTIONS(3250), - [anon_sym_for] = ACTIONS(3250), - [anon_sym_asyncfor] = ACTIONS(3248), - [anon_sym_transform] = ACTIONS(3250), - [anon_sym_filter] = ACTIONS(3250), - [anon_sym_find] = ACTIONS(3250), - [anon_sym_remove] = ACTIONS(3250), - [anon_sym_reduce] = ACTIONS(3250), - [anon_sym_select] = ACTIONS(3250), - [anon_sym_insert] = ACTIONS(3250), - [anon_sym_async] = ACTIONS(3250), - [anon_sym_PIPE] = ACTIONS(3250), - [anon_sym_table] = ACTIONS(3250), - [anon_sym_assert] = ACTIONS(3250), - [anon_sym_assert_equal] = ACTIONS(3250), - [anon_sym_download] = ACTIONS(3250), - [anon_sym_help] = ACTIONS(3250), - [anon_sym_length] = ACTIONS(3250), - [anon_sym_output] = ACTIONS(3250), - [anon_sym_output_error] = ACTIONS(3250), - [anon_sym_type] = ACTIONS(3250), - [anon_sym_append] = ACTIONS(3250), - [anon_sym_metadata] = ACTIONS(3250), - [anon_sym_move] = ACTIONS(3250), - [anon_sym_read] = ACTIONS(3250), - [anon_sym_workdir] = ACTIONS(3250), - [anon_sym_write] = ACTIONS(3250), - [anon_sym_from_json] = ACTIONS(3250), - [anon_sym_to_json] = ACTIONS(3250), - [anon_sym_to_string] = ACTIONS(3250), - [anon_sym_to_float] = ACTIONS(3250), - [anon_sym_bash] = ACTIONS(3250), - [anon_sym_fish] = ACTIONS(3250), - [anon_sym_raw] = ACTIONS(3250), - [anon_sym_sh] = ACTIONS(3250), - [anon_sym_zsh] = ACTIONS(3250), - [anon_sym_random] = ACTIONS(3250), - [anon_sym_random_boolean] = ACTIONS(3250), - [anon_sym_random_float] = ACTIONS(3250), - [anon_sym_random_integer] = ACTIONS(3250), - [anon_sym_columns] = ACTIONS(3250), - [anon_sym_rows] = ACTIONS(3250), - [anon_sym_reverse] = ACTIONS(3250), - }, - [565] = { - [sym_math_operator] = STATE(1313), - [sym_logic_operator] = STATE(1312), - [ts_builtin_sym_end] = ACTIONS(3252), - [sym_identifier] = ACTIONS(3254), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3252), - [anon_sym_RBRACE] = ACTIONS(3252), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_LPAREN] = ACTIONS(3252), - [anon_sym_RPAREN] = ACTIONS(3252), - [anon_sym_COMMA] = ACTIONS(3252), - [sym_integer] = ACTIONS(3254), - [sym_float] = ACTIONS(3252), - [sym_string] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_RBRACK] = ACTIONS(3252), - [anon_sym_EQ] = ACTIONS(3254), - [anon_sym_COLON] = ACTIONS(3252), - [anon_sym_DOT_DOT] = ACTIONS(3252), - [anon_sym_PLUS] = ACTIONS(3254), - [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_STAR] = ACTIONS(3252), - [anon_sym_SLASH] = ACTIONS(3252), - [anon_sym_PERCENT] = ACTIONS(3252), - [anon_sym_EQ_EQ] = ACTIONS(3252), - [anon_sym_BANG_EQ] = ACTIONS(3252), - [anon_sym_AMP_AMP] = ACTIONS(3252), - [anon_sym_PIPE_PIPE] = ACTIONS(3252), - [anon_sym_GT] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(3254), - [anon_sym_GT_EQ] = ACTIONS(3252), - [anon_sym_LT_EQ] = ACTIONS(3252), - [anon_sym_PLUS_EQ] = ACTIONS(3252), - [anon_sym_DASH_EQ] = ACTIONS(3252), - [anon_sym_if] = ACTIONS(3254), - [anon_sym_elseif] = ACTIONS(3252), - [anon_sym_else] = ACTIONS(3254), - [anon_sym_match] = ACTIONS(3254), - [anon_sym_EQ_GT] = ACTIONS(3252), - [anon_sym_while] = ACTIONS(3254), - [anon_sym_for] = ACTIONS(3254), - [anon_sym_asyncfor] = ACTIONS(3252), - [anon_sym_transform] = ACTIONS(3254), - [anon_sym_filter] = ACTIONS(3254), - [anon_sym_find] = ACTIONS(3254), - [anon_sym_remove] = ACTIONS(3254), - [anon_sym_reduce] = ACTIONS(3254), - [anon_sym_select] = ACTIONS(3254), - [anon_sym_insert] = ACTIONS(3254), - [anon_sym_async] = ACTIONS(3254), - [anon_sym_PIPE] = ACTIONS(3254), - [anon_sym_table] = ACTIONS(3254), - [anon_sym_assert] = ACTIONS(3254), - [anon_sym_assert_equal] = ACTIONS(3254), - [anon_sym_download] = ACTIONS(3254), - [anon_sym_help] = ACTIONS(3254), - [anon_sym_length] = ACTIONS(3254), - [anon_sym_output] = ACTIONS(3254), - [anon_sym_output_error] = ACTIONS(3254), - [anon_sym_type] = ACTIONS(3254), - [anon_sym_append] = ACTIONS(3254), - [anon_sym_metadata] = ACTIONS(3254), - [anon_sym_move] = ACTIONS(3254), - [anon_sym_read] = ACTIONS(3254), - [anon_sym_workdir] = ACTIONS(3254), - [anon_sym_write] = ACTIONS(3254), - [anon_sym_from_json] = ACTIONS(3254), - [anon_sym_to_json] = ACTIONS(3254), - [anon_sym_to_string] = ACTIONS(3254), - [anon_sym_to_float] = ACTIONS(3254), - [anon_sym_bash] = ACTIONS(3254), - [anon_sym_fish] = ACTIONS(3254), - [anon_sym_raw] = ACTIONS(3254), - [anon_sym_sh] = ACTIONS(3254), - [anon_sym_zsh] = ACTIONS(3254), - [anon_sym_random] = ACTIONS(3254), - [anon_sym_random_boolean] = ACTIONS(3254), - [anon_sym_random_float] = ACTIONS(3254), - [anon_sym_random_integer] = ACTIONS(3254), - [anon_sym_columns] = ACTIONS(3254), - [anon_sym_rows] = ACTIONS(3254), - [anon_sym_reverse] = ACTIONS(3254), - }, - [566] = { - [sym_else_if] = STATE(580), - [sym_else] = STATE(725), - [aux_sym_if_else_repeat1] = STATE(580), - [ts_builtin_sym_end] = ACTIONS(3229), - [sym_identifier] = ACTIONS(3231), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3229), - [anon_sym_RBRACE] = ACTIONS(3229), - [anon_sym_SEMI] = ACTIONS(3229), - [anon_sym_LPAREN] = ACTIONS(3229), - [anon_sym_RPAREN] = ACTIONS(3229), - [anon_sym_COMMA] = ACTIONS(3229), - [sym_integer] = ACTIONS(3231), - [sym_float] = ACTIONS(3229), - [sym_string] = ACTIONS(3229), - [anon_sym_true] = ACTIONS(3231), - [anon_sym_false] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3229), - [anon_sym_RBRACK] = ACTIONS(3229), - [anon_sym_EQ] = ACTIONS(3231), - [anon_sym_COLON] = ACTIONS(3229), - [anon_sym_PLUS] = ACTIONS(3231), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_SLASH] = ACTIONS(3229), - [anon_sym_PERCENT] = ACTIONS(3229), - [anon_sym_EQ_EQ] = ACTIONS(3229), - [anon_sym_BANG_EQ] = ACTIONS(3229), - [anon_sym_AMP_AMP] = ACTIONS(3229), - [anon_sym_PIPE_PIPE] = ACTIONS(3229), - [anon_sym_GT] = ACTIONS(3231), - [anon_sym_LT] = ACTIONS(3231), - [anon_sym_GT_EQ] = ACTIONS(3229), - [anon_sym_LT_EQ] = ACTIONS(3229), - [anon_sym_PLUS_EQ] = ACTIONS(3229), - [anon_sym_DASH_EQ] = ACTIONS(3229), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_elseif] = ACTIONS(3256), - [anon_sym_else] = ACTIONS(3258), - [anon_sym_match] = ACTIONS(3231), - [anon_sym_EQ_GT] = ACTIONS(3229), - [anon_sym_while] = ACTIONS(3231), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_asyncfor] = ACTIONS(3229), - [anon_sym_transform] = ACTIONS(3231), - [anon_sym_filter] = ACTIONS(3231), - [anon_sym_find] = ACTIONS(3231), - [anon_sym_remove] = ACTIONS(3231), - [anon_sym_reduce] = ACTIONS(3231), - [anon_sym_select] = ACTIONS(3231), - [anon_sym_insert] = ACTIONS(3231), - [anon_sym_async] = ACTIONS(3231), - [anon_sym_PIPE] = ACTIONS(3231), - [anon_sym_table] = ACTIONS(3231), - [anon_sym_assert] = ACTIONS(3231), - [anon_sym_assert_equal] = ACTIONS(3231), - [anon_sym_download] = ACTIONS(3231), - [anon_sym_help] = ACTIONS(3231), - [anon_sym_length] = ACTIONS(3231), - [anon_sym_output] = ACTIONS(3231), - [anon_sym_output_error] = ACTIONS(3231), - [anon_sym_type] = ACTIONS(3231), - [anon_sym_append] = ACTIONS(3231), - [anon_sym_metadata] = ACTIONS(3231), - [anon_sym_move] = ACTIONS(3231), - [anon_sym_read] = ACTIONS(3231), - [anon_sym_workdir] = ACTIONS(3231), - [anon_sym_write] = ACTIONS(3231), - [anon_sym_from_json] = ACTIONS(3231), - [anon_sym_to_json] = ACTIONS(3231), - [anon_sym_to_string] = ACTIONS(3231), - [anon_sym_to_float] = ACTIONS(3231), - [anon_sym_bash] = ACTIONS(3231), - [anon_sym_fish] = ACTIONS(3231), - [anon_sym_raw] = ACTIONS(3231), - [anon_sym_sh] = ACTIONS(3231), - [anon_sym_zsh] = ACTIONS(3231), - [anon_sym_random] = ACTIONS(3231), - [anon_sym_random_boolean] = ACTIONS(3231), - [anon_sym_random_float] = ACTIONS(3231), - [anon_sym_random_integer] = ACTIONS(3231), - [anon_sym_columns] = ACTIONS(3231), - [anon_sym_rows] = ACTIONS(3231), - [anon_sym_reverse] = ACTIONS(3231), - }, - [567] = { - [sym_else_if] = STATE(574), - [sym_else] = STATE(595), - [aux_sym_if_else_repeat1] = STATE(574), - [ts_builtin_sym_end] = ACTIONS(3219), - [sym_identifier] = ACTIONS(3221), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_RPAREN] = ACTIONS(3219), - [anon_sym_COMMA] = ACTIONS(3219), - [sym_integer] = ACTIONS(3221), - [sym_float] = ACTIONS(3219), - [sym_string] = ACTIONS(3219), - [anon_sym_true] = ACTIONS(3221), - [anon_sym_false] = ACTIONS(3221), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_RBRACK] = ACTIONS(3219), - [anon_sym_EQ] = ACTIONS(3221), - [anon_sym_COLON] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3221), - [anon_sym_DASH] = ACTIONS(3221), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_PERCENT] = ACTIONS(3219), - [anon_sym_EQ_EQ] = ACTIONS(3219), - [anon_sym_BANG_EQ] = ACTIONS(3219), - [anon_sym_AMP_AMP] = ACTIONS(3219), - [anon_sym_PIPE_PIPE] = ACTIONS(3219), - [anon_sym_GT] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3221), - [anon_sym_GT_EQ] = ACTIONS(3219), - [anon_sym_LT_EQ] = ACTIONS(3219), - [anon_sym_PLUS_EQ] = ACTIONS(3219), - [anon_sym_DASH_EQ] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3221), - [anon_sym_elseif] = ACTIONS(3256), - [anon_sym_else] = ACTIONS(3260), - [anon_sym_match] = ACTIONS(3221), - [anon_sym_EQ_GT] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3221), - [anon_sym_for] = ACTIONS(3221), - [anon_sym_asyncfor] = ACTIONS(3219), - [anon_sym_transform] = ACTIONS(3221), - [anon_sym_filter] = ACTIONS(3221), - [anon_sym_find] = ACTIONS(3221), - [anon_sym_remove] = ACTIONS(3221), - [anon_sym_reduce] = ACTIONS(3221), - [anon_sym_select] = ACTIONS(3221), - [anon_sym_insert] = ACTIONS(3221), - [anon_sym_async] = ACTIONS(3221), - [anon_sym_PIPE] = ACTIONS(3221), - [anon_sym_table] = ACTIONS(3221), - [anon_sym_assert] = ACTIONS(3221), - [anon_sym_assert_equal] = ACTIONS(3221), - [anon_sym_download] = ACTIONS(3221), - [anon_sym_help] = ACTIONS(3221), - [anon_sym_length] = ACTIONS(3221), - [anon_sym_output] = ACTIONS(3221), - [anon_sym_output_error] = ACTIONS(3221), - [anon_sym_type] = ACTIONS(3221), - [anon_sym_append] = ACTIONS(3221), - [anon_sym_metadata] = ACTIONS(3221), - [anon_sym_move] = ACTIONS(3221), - [anon_sym_read] = ACTIONS(3221), - [anon_sym_workdir] = ACTIONS(3221), - [anon_sym_write] = ACTIONS(3221), - [anon_sym_from_json] = ACTIONS(3221), - [anon_sym_to_json] = ACTIONS(3221), - [anon_sym_to_string] = ACTIONS(3221), - [anon_sym_to_float] = ACTIONS(3221), - [anon_sym_bash] = ACTIONS(3221), - [anon_sym_fish] = ACTIONS(3221), - [anon_sym_raw] = ACTIONS(3221), - [anon_sym_sh] = ACTIONS(3221), - [anon_sym_zsh] = ACTIONS(3221), - [anon_sym_random] = ACTIONS(3221), - [anon_sym_random_boolean] = ACTIONS(3221), - [anon_sym_random_float] = ACTIONS(3221), - [anon_sym_random_integer] = ACTIONS(3221), - [anon_sym_columns] = ACTIONS(3221), - [anon_sym_rows] = ACTIONS(3221), - [anon_sym_reverse] = ACTIONS(3221), - }, - [568] = { - [sym_math_operator] = STATE(1313), - [sym_logic_operator] = STATE(1312), - [ts_builtin_sym_end] = ACTIONS(3262), - [sym_identifier] = ACTIONS(3264), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3262), - [anon_sym_SEMI] = ACTIONS(3262), - [anon_sym_LPAREN] = ACTIONS(3262), - [anon_sym_RPAREN] = ACTIONS(3262), - [anon_sym_COMMA] = ACTIONS(3262), - [sym_integer] = ACTIONS(3264), - [sym_float] = ACTIONS(3262), - [sym_string] = ACTIONS(3262), - [anon_sym_true] = ACTIONS(3264), - [anon_sym_false] = ACTIONS(3264), - [anon_sym_LBRACK] = ACTIONS(3262), - [anon_sym_RBRACK] = ACTIONS(3262), - [anon_sym_EQ] = ACTIONS(3264), - [anon_sym_COLON] = ACTIONS(3262), - [anon_sym_DOT_DOT] = ACTIONS(3262), - [anon_sym_PLUS] = ACTIONS(3264), - [anon_sym_DASH] = ACTIONS(3264), - [anon_sym_STAR] = ACTIONS(3262), - [anon_sym_SLASH] = ACTIONS(3262), - [anon_sym_PERCENT] = ACTIONS(3262), - [anon_sym_EQ_EQ] = ACTIONS(3262), - [anon_sym_BANG_EQ] = ACTIONS(3262), - [anon_sym_AMP_AMP] = ACTIONS(3262), - [anon_sym_PIPE_PIPE] = ACTIONS(3262), - [anon_sym_GT] = ACTIONS(3264), - [anon_sym_LT] = ACTIONS(3264), - [anon_sym_GT_EQ] = ACTIONS(3262), - [anon_sym_LT_EQ] = ACTIONS(3262), - [anon_sym_PLUS_EQ] = ACTIONS(3262), - [anon_sym_DASH_EQ] = ACTIONS(3262), - [anon_sym_if] = ACTIONS(3264), - [anon_sym_elseif] = ACTIONS(3262), - [anon_sym_else] = ACTIONS(3264), - [anon_sym_match] = ACTIONS(3264), - [anon_sym_EQ_GT] = ACTIONS(3262), - [anon_sym_while] = ACTIONS(3264), - [anon_sym_for] = ACTIONS(3264), - [anon_sym_asyncfor] = ACTIONS(3262), - [anon_sym_transform] = ACTIONS(3264), - [anon_sym_filter] = ACTIONS(3264), - [anon_sym_find] = ACTIONS(3264), - [anon_sym_remove] = ACTIONS(3264), - [anon_sym_reduce] = ACTIONS(3264), - [anon_sym_select] = ACTIONS(3264), - [anon_sym_insert] = ACTIONS(3264), - [anon_sym_async] = ACTIONS(3264), - [anon_sym_PIPE] = ACTIONS(3264), - [anon_sym_table] = ACTIONS(3264), - [anon_sym_assert] = ACTIONS(3264), - [anon_sym_assert_equal] = ACTIONS(3264), - [anon_sym_download] = ACTIONS(3264), - [anon_sym_help] = ACTIONS(3264), - [anon_sym_length] = ACTIONS(3264), - [anon_sym_output] = ACTIONS(3264), - [anon_sym_output_error] = ACTIONS(3264), - [anon_sym_type] = ACTIONS(3264), - [anon_sym_append] = ACTIONS(3264), - [anon_sym_metadata] = ACTIONS(3264), - [anon_sym_move] = ACTIONS(3264), - [anon_sym_read] = ACTIONS(3264), - [anon_sym_workdir] = ACTIONS(3264), - [anon_sym_write] = ACTIONS(3264), - [anon_sym_from_json] = ACTIONS(3264), - [anon_sym_to_json] = ACTIONS(3264), - [anon_sym_to_string] = ACTIONS(3264), - [anon_sym_to_float] = ACTIONS(3264), - [anon_sym_bash] = ACTIONS(3264), - [anon_sym_fish] = ACTIONS(3264), - [anon_sym_raw] = ACTIONS(3264), - [anon_sym_sh] = ACTIONS(3264), - [anon_sym_zsh] = ACTIONS(3264), - [anon_sym_random] = ACTIONS(3264), - [anon_sym_random_boolean] = ACTIONS(3264), - [anon_sym_random_float] = ACTIONS(3264), - [anon_sym_random_integer] = ACTIONS(3264), - [anon_sym_columns] = ACTIONS(3264), - [anon_sym_rows] = ACTIONS(3264), - [anon_sym_reverse] = ACTIONS(3264), - }, - [569] = { - [sym_math_operator] = STATE(1313), - [sym_logic_operator] = STATE(1312), - [ts_builtin_sym_end] = ACTIONS(3248), - [sym_identifier] = ACTIONS(3250), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3248), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(3248), - [anon_sym_RPAREN] = ACTIONS(3248), - [anon_sym_COMMA] = ACTIONS(3248), - [sym_integer] = ACTIONS(3250), - [sym_float] = ACTIONS(3248), - [sym_string] = ACTIONS(3248), - [anon_sym_true] = ACTIONS(3250), - [anon_sym_false] = ACTIONS(3250), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_RBRACK] = ACTIONS(3248), - [anon_sym_EQ] = ACTIONS(3250), - [anon_sym_COLON] = ACTIONS(3248), - [anon_sym_DOT_DOT] = ACTIONS(3266), - [anon_sym_PLUS] = ACTIONS(3250), - [anon_sym_DASH] = ACTIONS(3250), - [anon_sym_STAR] = ACTIONS(3248), - [anon_sym_SLASH] = ACTIONS(3248), - [anon_sym_PERCENT] = ACTIONS(3248), - [anon_sym_EQ_EQ] = ACTIONS(3248), - [anon_sym_BANG_EQ] = ACTIONS(3248), - [anon_sym_AMP_AMP] = ACTIONS(3248), - [anon_sym_PIPE_PIPE] = ACTIONS(3248), - [anon_sym_GT] = ACTIONS(3250), - [anon_sym_LT] = ACTIONS(3250), - [anon_sym_GT_EQ] = ACTIONS(3248), - [anon_sym_LT_EQ] = ACTIONS(3248), - [anon_sym_PLUS_EQ] = ACTIONS(3248), - [anon_sym_DASH_EQ] = ACTIONS(3248), - [anon_sym_if] = ACTIONS(3250), - [anon_sym_elseif] = ACTIONS(3248), - [anon_sym_else] = ACTIONS(3250), - [anon_sym_match] = ACTIONS(3250), - [anon_sym_EQ_GT] = ACTIONS(3248), - [anon_sym_while] = ACTIONS(3250), - [anon_sym_for] = ACTIONS(3250), - [anon_sym_asyncfor] = ACTIONS(3248), - [anon_sym_transform] = ACTIONS(3250), - [anon_sym_filter] = ACTIONS(3250), - [anon_sym_find] = ACTIONS(3250), - [anon_sym_remove] = ACTIONS(3250), - [anon_sym_reduce] = ACTIONS(3250), - [anon_sym_select] = ACTIONS(3250), - [anon_sym_insert] = ACTIONS(3250), - [anon_sym_async] = ACTIONS(3250), - [anon_sym_PIPE] = ACTIONS(3250), - [anon_sym_table] = ACTIONS(3250), - [anon_sym_assert] = ACTIONS(3250), - [anon_sym_assert_equal] = ACTIONS(3250), - [anon_sym_download] = ACTIONS(3250), - [anon_sym_help] = ACTIONS(3250), - [anon_sym_length] = ACTIONS(3250), - [anon_sym_output] = ACTIONS(3250), - [anon_sym_output_error] = ACTIONS(3250), - [anon_sym_type] = ACTIONS(3250), - [anon_sym_append] = ACTIONS(3250), - [anon_sym_metadata] = ACTIONS(3250), - [anon_sym_move] = ACTIONS(3250), - [anon_sym_read] = ACTIONS(3250), - [anon_sym_workdir] = ACTIONS(3250), - [anon_sym_write] = ACTIONS(3250), - [anon_sym_from_json] = ACTIONS(3250), - [anon_sym_to_json] = ACTIONS(3250), - [anon_sym_to_string] = ACTIONS(3250), - [anon_sym_to_float] = ACTIONS(3250), - [anon_sym_bash] = ACTIONS(3250), - [anon_sym_fish] = ACTIONS(3250), - [anon_sym_raw] = ACTIONS(3250), - [anon_sym_sh] = ACTIONS(3250), - [anon_sym_zsh] = ACTIONS(3250), - [anon_sym_random] = ACTIONS(3250), - [anon_sym_random_boolean] = ACTIONS(3250), - [anon_sym_random_float] = ACTIONS(3250), - [anon_sym_random_integer] = ACTIONS(3250), - [anon_sym_columns] = ACTIONS(3250), - [anon_sym_rows] = ACTIONS(3250), - [anon_sym_reverse] = ACTIONS(3250), - }, - [570] = { - [sym_else_if] = STATE(570), - [aux_sym_if_else_repeat1] = STATE(570), - [ts_builtin_sym_end] = ACTIONS(3268), - [sym_identifier] = ACTIONS(3270), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(3268), - [anon_sym_SEMI] = ACTIONS(3268), - [anon_sym_LPAREN] = ACTIONS(3268), - [anon_sym_RPAREN] = ACTIONS(3268), - [anon_sym_COMMA] = ACTIONS(3268), - [sym_integer] = ACTIONS(3270), - [sym_float] = ACTIONS(3268), - [sym_string] = ACTIONS(3268), - [anon_sym_true] = ACTIONS(3270), - [anon_sym_false] = ACTIONS(3270), - [anon_sym_LBRACK] = ACTIONS(3268), - [anon_sym_RBRACK] = ACTIONS(3268), - [anon_sym_EQ] = ACTIONS(3270), - [anon_sym_COLON] = ACTIONS(3268), - [anon_sym_DOT_DOT] = ACTIONS(3268), - [anon_sym_PLUS] = ACTIONS(3270), - [anon_sym_DASH] = ACTIONS(3270), - [anon_sym_STAR] = ACTIONS(3268), - [anon_sym_SLASH] = ACTIONS(3268), - [anon_sym_PERCENT] = ACTIONS(3268), - [anon_sym_EQ_EQ] = ACTIONS(3268), - [anon_sym_BANG_EQ] = ACTIONS(3268), - [anon_sym_AMP_AMP] = ACTIONS(3268), - [anon_sym_PIPE_PIPE] = ACTIONS(3268), - [anon_sym_GT] = ACTIONS(3270), - [anon_sym_LT] = ACTIONS(3270), - [anon_sym_GT_EQ] = ACTIONS(3268), - [anon_sym_LT_EQ] = ACTIONS(3268), - [anon_sym_PLUS_EQ] = ACTIONS(3268), - [anon_sym_DASH_EQ] = ACTIONS(3268), - [anon_sym_if] = ACTIONS(3270), - [anon_sym_elseif] = ACTIONS(3272), - [anon_sym_else] = ACTIONS(3270), - [anon_sym_match] = ACTIONS(3270), - [anon_sym_EQ_GT] = ACTIONS(3268), - [anon_sym_while] = ACTIONS(3270), - [anon_sym_for] = ACTIONS(3270), - [anon_sym_asyncfor] = ACTIONS(3268), - [anon_sym_transform] = ACTIONS(3270), - [anon_sym_filter] = ACTIONS(3270), - [anon_sym_find] = ACTIONS(3270), - [anon_sym_remove] = ACTIONS(3270), - [anon_sym_reduce] = ACTIONS(3270), - [anon_sym_select] = ACTIONS(3270), - [anon_sym_insert] = ACTIONS(3270), - [anon_sym_async] = ACTIONS(3270), - [anon_sym_PIPE] = ACTIONS(3270), - [anon_sym_table] = ACTIONS(3270), - [anon_sym_assert] = ACTIONS(3270), - [anon_sym_assert_equal] = ACTIONS(3270), - [anon_sym_download] = ACTIONS(3270), - [anon_sym_help] = ACTIONS(3270), - [anon_sym_length] = ACTIONS(3270), - [anon_sym_output] = ACTIONS(3270), - [anon_sym_output_error] = ACTIONS(3270), - [anon_sym_type] = ACTIONS(3270), - [anon_sym_append] = ACTIONS(3270), - [anon_sym_metadata] = ACTIONS(3270), - [anon_sym_move] = ACTIONS(3270), - [anon_sym_read] = ACTIONS(3270), - [anon_sym_workdir] = ACTIONS(3270), - [anon_sym_write] = ACTIONS(3270), - [anon_sym_from_json] = ACTIONS(3270), - [anon_sym_to_json] = ACTIONS(3270), - [anon_sym_to_string] = ACTIONS(3270), - [anon_sym_to_float] = ACTIONS(3270), - [anon_sym_bash] = ACTIONS(3270), - [anon_sym_fish] = ACTIONS(3270), - [anon_sym_raw] = ACTIONS(3270), - [anon_sym_sh] = ACTIONS(3270), - [anon_sym_zsh] = ACTIONS(3270), - [anon_sym_random] = ACTIONS(3270), - [anon_sym_random_boolean] = ACTIONS(3270), - [anon_sym_random_float] = ACTIONS(3270), - [anon_sym_random_integer] = ACTIONS(3270), - [anon_sym_columns] = ACTIONS(3270), - [anon_sym_rows] = ACTIONS(3270), - [anon_sym_reverse] = ACTIONS(3270), - }, - [571] = { - [sym_math_operator] = STATE(1313), - [sym_logic_operator] = STATE(1312), - [ts_builtin_sym_end] = ACTIONS(3275), - [sym_identifier] = ACTIONS(3277), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3275), - [anon_sym_RBRACE] = ACTIONS(3275), - [anon_sym_SEMI] = ACTIONS(3279), - [anon_sym_LPAREN] = ACTIONS(3275), - [anon_sym_RPAREN] = ACTIONS(3275), - [anon_sym_COMMA] = ACTIONS(3275), - [sym_integer] = ACTIONS(3277), - [sym_float] = ACTIONS(3275), - [sym_string] = ACTIONS(3275), - [anon_sym_true] = ACTIONS(3277), - [anon_sym_false] = ACTIONS(3277), - [anon_sym_LBRACK] = ACTIONS(3275), - [anon_sym_RBRACK] = ACTIONS(3275), - [anon_sym_EQ] = ACTIONS(3277), - [anon_sym_COLON] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3275), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_PLUS_EQ] = ACTIONS(3275), - [anon_sym_DASH_EQ] = ACTIONS(3275), - [anon_sym_if] = ACTIONS(3277), - [anon_sym_elseif] = ACTIONS(3275), - [anon_sym_else] = ACTIONS(3277), - [anon_sym_match] = ACTIONS(3277), - [anon_sym_EQ_GT] = ACTIONS(3275), - [anon_sym_while] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3277), - [anon_sym_asyncfor] = ACTIONS(3275), - [anon_sym_transform] = ACTIONS(3277), - [anon_sym_filter] = ACTIONS(3277), - [anon_sym_find] = ACTIONS(3277), - [anon_sym_remove] = ACTIONS(3277), - [anon_sym_reduce] = ACTIONS(3277), - [anon_sym_select] = ACTIONS(3277), - [anon_sym_insert] = ACTIONS(3277), - [anon_sym_async] = ACTIONS(3277), - [anon_sym_PIPE] = ACTIONS(3277), - [anon_sym_table] = ACTIONS(3277), - [anon_sym_assert] = ACTIONS(3277), - [anon_sym_assert_equal] = ACTIONS(3277), - [anon_sym_download] = ACTIONS(3277), - [anon_sym_help] = ACTIONS(3277), - [anon_sym_length] = ACTIONS(3277), - [anon_sym_output] = ACTIONS(3277), - [anon_sym_output_error] = ACTIONS(3277), - [anon_sym_type] = ACTIONS(3277), - [anon_sym_append] = ACTIONS(3277), - [anon_sym_metadata] = ACTIONS(3277), - [anon_sym_move] = ACTIONS(3277), - [anon_sym_read] = ACTIONS(3277), - [anon_sym_workdir] = ACTIONS(3277), - [anon_sym_write] = ACTIONS(3277), - [anon_sym_from_json] = ACTIONS(3277), - [anon_sym_to_json] = ACTIONS(3277), - [anon_sym_to_string] = ACTIONS(3277), - [anon_sym_to_float] = ACTIONS(3277), - [anon_sym_bash] = ACTIONS(3277), - [anon_sym_fish] = ACTIONS(3277), - [anon_sym_raw] = ACTIONS(3277), - [anon_sym_sh] = ACTIONS(3277), - [anon_sym_zsh] = ACTIONS(3277), - [anon_sym_random] = ACTIONS(3277), - [anon_sym_random_boolean] = ACTIONS(3277), - [anon_sym_random_float] = ACTIONS(3277), - [anon_sym_random_integer] = ACTIONS(3277), - [anon_sym_columns] = ACTIONS(3277), - [anon_sym_rows] = ACTIONS(3277), - [anon_sym_reverse] = ACTIONS(3277), - }, - [572] = { - [sym_math_operator] = STATE(1313), - [sym_logic_operator] = STATE(1312), - [ts_builtin_sym_end] = ACTIONS(3281), - [sym_identifier] = ACTIONS(3283), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3281), - [anon_sym_RBRACE] = ACTIONS(3281), - [anon_sym_SEMI] = ACTIONS(3281), - [anon_sym_LPAREN] = ACTIONS(3281), - [anon_sym_RPAREN] = ACTIONS(3281), - [anon_sym_COMMA] = ACTIONS(3281), - [sym_integer] = ACTIONS(3283), - [sym_float] = ACTIONS(3281), - [sym_string] = ACTIONS(3281), - [anon_sym_true] = ACTIONS(3283), - [anon_sym_false] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3281), - [anon_sym_RBRACK] = ACTIONS(3281), - [anon_sym_EQ] = ACTIONS(3283), - [anon_sym_COLON] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3281), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_PLUS_EQ] = ACTIONS(3281), - [anon_sym_DASH_EQ] = ACTIONS(3281), - [anon_sym_if] = ACTIONS(3283), - [anon_sym_elseif] = ACTIONS(3281), - [anon_sym_else] = ACTIONS(3283), - [anon_sym_match] = ACTIONS(3283), - [anon_sym_EQ_GT] = ACTIONS(3281), - [anon_sym_while] = ACTIONS(3283), - [anon_sym_for] = ACTIONS(3283), - [anon_sym_asyncfor] = ACTIONS(3281), - [anon_sym_transform] = ACTIONS(3283), - [anon_sym_filter] = ACTIONS(3283), - [anon_sym_find] = ACTIONS(3283), - [anon_sym_remove] = ACTIONS(3283), - [anon_sym_reduce] = ACTIONS(3283), - [anon_sym_select] = ACTIONS(3283), - [anon_sym_insert] = ACTIONS(3283), - [anon_sym_async] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(3283), - [anon_sym_table] = ACTIONS(3283), - [anon_sym_assert] = ACTIONS(3283), - [anon_sym_assert_equal] = ACTIONS(3283), - [anon_sym_download] = ACTIONS(3283), - [anon_sym_help] = ACTIONS(3283), - [anon_sym_length] = ACTIONS(3283), - [anon_sym_output] = ACTIONS(3283), - [anon_sym_output_error] = ACTIONS(3283), - [anon_sym_type] = ACTIONS(3283), - [anon_sym_append] = ACTIONS(3283), - [anon_sym_metadata] = ACTIONS(3283), - [anon_sym_move] = ACTIONS(3283), - [anon_sym_read] = ACTIONS(3283), - [anon_sym_workdir] = ACTIONS(3283), - [anon_sym_write] = ACTIONS(3283), - [anon_sym_from_json] = ACTIONS(3283), - [anon_sym_to_json] = ACTIONS(3283), - [anon_sym_to_string] = ACTIONS(3283), - [anon_sym_to_float] = ACTIONS(3283), - [anon_sym_bash] = ACTIONS(3283), - [anon_sym_fish] = ACTIONS(3283), - [anon_sym_raw] = ACTIONS(3283), - [anon_sym_sh] = ACTIONS(3283), - [anon_sym_zsh] = ACTIONS(3283), - [anon_sym_random] = ACTIONS(3283), - [anon_sym_random_boolean] = ACTIONS(3283), - [anon_sym_random_float] = ACTIONS(3283), - [anon_sym_random_integer] = ACTIONS(3283), - [anon_sym_columns] = ACTIONS(3283), - [anon_sym_rows] = ACTIONS(3283), - [anon_sym_reverse] = ACTIONS(3283), - }, - [573] = { - [sym_else_if] = STATE(566), - [sym_else] = STATE(711), - [aux_sym_if_else_repeat1] = STATE(566), - [ts_builtin_sym_end] = ACTIONS(3219), - [sym_identifier] = ACTIONS(3221), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_RPAREN] = ACTIONS(3219), - [anon_sym_COMMA] = ACTIONS(3219), - [sym_integer] = ACTIONS(3221), - [sym_float] = ACTIONS(3219), - [sym_string] = ACTIONS(3219), - [anon_sym_true] = ACTIONS(3221), - [anon_sym_false] = ACTIONS(3221), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_RBRACK] = ACTIONS(3219), - [anon_sym_EQ] = ACTIONS(3221), - [anon_sym_COLON] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3221), - [anon_sym_DASH] = ACTIONS(3221), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_PERCENT] = ACTIONS(3219), - [anon_sym_EQ_EQ] = ACTIONS(3219), - [anon_sym_BANG_EQ] = ACTIONS(3219), - [anon_sym_AMP_AMP] = ACTIONS(3219), - [anon_sym_PIPE_PIPE] = ACTIONS(3219), - [anon_sym_GT] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3221), - [anon_sym_GT_EQ] = ACTIONS(3219), - [anon_sym_LT_EQ] = ACTIONS(3219), - [anon_sym_PLUS_EQ] = ACTIONS(3219), - [anon_sym_DASH_EQ] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3221), - [anon_sym_elseif] = ACTIONS(3256), - [anon_sym_else] = ACTIONS(3258), - [anon_sym_match] = ACTIONS(3221), - [anon_sym_EQ_GT] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3221), - [anon_sym_for] = ACTIONS(3221), - [anon_sym_asyncfor] = ACTIONS(3219), - [anon_sym_transform] = ACTIONS(3221), - [anon_sym_filter] = ACTIONS(3221), - [anon_sym_find] = ACTIONS(3221), - [anon_sym_remove] = ACTIONS(3221), - [anon_sym_reduce] = ACTIONS(3221), - [anon_sym_select] = ACTIONS(3221), - [anon_sym_insert] = ACTIONS(3221), - [anon_sym_async] = ACTIONS(3221), - [anon_sym_PIPE] = ACTIONS(3221), - [anon_sym_table] = ACTIONS(3221), - [anon_sym_assert] = ACTIONS(3221), - [anon_sym_assert_equal] = ACTIONS(3221), - [anon_sym_download] = ACTIONS(3221), - [anon_sym_help] = ACTIONS(3221), - [anon_sym_length] = ACTIONS(3221), - [anon_sym_output] = ACTIONS(3221), - [anon_sym_output_error] = ACTIONS(3221), - [anon_sym_type] = ACTIONS(3221), - [anon_sym_append] = ACTIONS(3221), - [anon_sym_metadata] = ACTIONS(3221), - [anon_sym_move] = ACTIONS(3221), - [anon_sym_read] = ACTIONS(3221), - [anon_sym_workdir] = ACTIONS(3221), - [anon_sym_write] = ACTIONS(3221), - [anon_sym_from_json] = ACTIONS(3221), - [anon_sym_to_json] = ACTIONS(3221), - [anon_sym_to_string] = ACTIONS(3221), - [anon_sym_to_float] = ACTIONS(3221), - [anon_sym_bash] = ACTIONS(3221), - [anon_sym_fish] = ACTIONS(3221), - [anon_sym_raw] = ACTIONS(3221), - [anon_sym_sh] = ACTIONS(3221), - [anon_sym_zsh] = ACTIONS(3221), - [anon_sym_random] = ACTIONS(3221), - [anon_sym_random_boolean] = ACTIONS(3221), - [anon_sym_random_float] = ACTIONS(3221), - [anon_sym_random_integer] = ACTIONS(3221), - [anon_sym_columns] = ACTIONS(3221), - [anon_sym_rows] = ACTIONS(3221), - [anon_sym_reverse] = ACTIONS(3221), - }, - [574] = { - [sym_else_if] = STATE(580), - [sym_else] = STATE(605), - [aux_sym_if_else_repeat1] = STATE(580), - [ts_builtin_sym_end] = ACTIONS(3229), - [sym_identifier] = ACTIONS(3231), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3229), - [anon_sym_RBRACE] = ACTIONS(3229), - [anon_sym_SEMI] = ACTIONS(3229), - [anon_sym_LPAREN] = ACTIONS(3229), - [anon_sym_RPAREN] = ACTIONS(3229), - [anon_sym_COMMA] = ACTIONS(3229), - [sym_integer] = ACTIONS(3231), - [sym_float] = ACTIONS(3229), - [sym_string] = ACTIONS(3229), - [anon_sym_true] = ACTIONS(3231), - [anon_sym_false] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3229), - [anon_sym_RBRACK] = ACTIONS(3229), - [anon_sym_EQ] = ACTIONS(3231), - [anon_sym_COLON] = ACTIONS(3229), - [anon_sym_PLUS] = ACTIONS(3231), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_SLASH] = ACTIONS(3229), - [anon_sym_PERCENT] = ACTIONS(3229), - [anon_sym_EQ_EQ] = ACTIONS(3229), - [anon_sym_BANG_EQ] = ACTIONS(3229), - [anon_sym_AMP_AMP] = ACTIONS(3229), - [anon_sym_PIPE_PIPE] = ACTIONS(3229), - [anon_sym_GT] = ACTIONS(3231), - [anon_sym_LT] = ACTIONS(3231), - [anon_sym_GT_EQ] = ACTIONS(3229), - [anon_sym_LT_EQ] = ACTIONS(3229), - [anon_sym_PLUS_EQ] = ACTIONS(3229), - [anon_sym_DASH_EQ] = ACTIONS(3229), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_elseif] = ACTIONS(3256), - [anon_sym_else] = ACTIONS(3260), - [anon_sym_match] = ACTIONS(3231), - [anon_sym_EQ_GT] = ACTIONS(3229), - [anon_sym_while] = ACTIONS(3231), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_asyncfor] = ACTIONS(3229), - [anon_sym_transform] = ACTIONS(3231), - [anon_sym_filter] = ACTIONS(3231), - [anon_sym_find] = ACTIONS(3231), - [anon_sym_remove] = ACTIONS(3231), - [anon_sym_reduce] = ACTIONS(3231), - [anon_sym_select] = ACTIONS(3231), - [anon_sym_insert] = ACTIONS(3231), - [anon_sym_async] = ACTIONS(3231), - [anon_sym_PIPE] = ACTIONS(3231), - [anon_sym_table] = ACTIONS(3231), - [anon_sym_assert] = ACTIONS(3231), - [anon_sym_assert_equal] = ACTIONS(3231), - [anon_sym_download] = ACTIONS(3231), - [anon_sym_help] = ACTIONS(3231), - [anon_sym_length] = ACTIONS(3231), - [anon_sym_output] = ACTIONS(3231), - [anon_sym_output_error] = ACTIONS(3231), - [anon_sym_type] = ACTIONS(3231), - [anon_sym_append] = ACTIONS(3231), - [anon_sym_metadata] = ACTIONS(3231), - [anon_sym_move] = ACTIONS(3231), - [anon_sym_read] = ACTIONS(3231), - [anon_sym_workdir] = ACTIONS(3231), - [anon_sym_write] = ACTIONS(3231), - [anon_sym_from_json] = ACTIONS(3231), - [anon_sym_to_json] = ACTIONS(3231), - [anon_sym_to_string] = ACTIONS(3231), - [anon_sym_to_float] = ACTIONS(3231), - [anon_sym_bash] = ACTIONS(3231), - [anon_sym_fish] = ACTIONS(3231), - [anon_sym_raw] = ACTIONS(3231), - [anon_sym_sh] = ACTIONS(3231), - [anon_sym_zsh] = ACTIONS(3231), - [anon_sym_random] = ACTIONS(3231), - [anon_sym_random_boolean] = ACTIONS(3231), - [anon_sym_random_float] = ACTIONS(3231), - [anon_sym_random_integer] = ACTIONS(3231), - [anon_sym_columns] = ACTIONS(3231), - [anon_sym_rows] = ACTIONS(3231), - [anon_sym_reverse] = ACTIONS(3231), - }, - [575] = { - [sym_math_operator] = STATE(1376), - [sym_logic_operator] = STATE(1377), - [ts_builtin_sym_end] = ACTIONS(3262), - [sym_identifier] = ACTIONS(3264), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3262), - [anon_sym_SEMI] = ACTIONS(3262), - [anon_sym_LPAREN] = ACTIONS(3262), - [anon_sym_RPAREN] = ACTIONS(3262), - [anon_sym_COMMA] = ACTIONS(3262), - [sym_integer] = ACTIONS(3264), - [sym_float] = ACTIONS(3262), - [sym_string] = ACTIONS(3262), - [anon_sym_true] = ACTIONS(3264), - [anon_sym_false] = ACTIONS(3264), - [anon_sym_LBRACK] = ACTIONS(3262), - [anon_sym_RBRACK] = ACTIONS(3262), - [anon_sym_EQ] = ACTIONS(3264), - [anon_sym_COLON] = ACTIONS(3262), - [anon_sym_PLUS] = ACTIONS(3264), - [anon_sym_DASH] = ACTIONS(3264), - [anon_sym_STAR] = ACTIONS(3262), - [anon_sym_SLASH] = ACTIONS(3262), - [anon_sym_PERCENT] = ACTIONS(3262), - [anon_sym_EQ_EQ] = ACTIONS(3262), - [anon_sym_BANG_EQ] = ACTIONS(3262), - [anon_sym_AMP_AMP] = ACTIONS(3262), - [anon_sym_PIPE_PIPE] = ACTIONS(3262), - [anon_sym_GT] = ACTIONS(3264), - [anon_sym_LT] = ACTIONS(3264), - [anon_sym_GT_EQ] = ACTIONS(3262), - [anon_sym_LT_EQ] = ACTIONS(3262), - [anon_sym_PLUS_EQ] = ACTIONS(3262), - [anon_sym_DASH_EQ] = ACTIONS(3262), - [anon_sym_if] = ACTIONS(3264), - [anon_sym_elseif] = ACTIONS(3262), - [anon_sym_else] = ACTIONS(3264), - [anon_sym_match] = ACTIONS(3264), - [anon_sym_EQ_GT] = ACTIONS(3262), - [anon_sym_while] = ACTIONS(3264), - [anon_sym_for] = ACTIONS(3264), - [anon_sym_asyncfor] = ACTIONS(3262), - [anon_sym_transform] = ACTIONS(3264), - [anon_sym_filter] = ACTIONS(3264), - [anon_sym_find] = ACTIONS(3264), - [anon_sym_remove] = ACTIONS(3264), - [anon_sym_reduce] = ACTIONS(3264), - [anon_sym_select] = ACTIONS(3264), - [anon_sym_insert] = ACTIONS(3264), - [anon_sym_async] = ACTIONS(3264), - [anon_sym_PIPE] = ACTIONS(3264), - [anon_sym_table] = ACTIONS(3264), - [anon_sym_assert] = ACTIONS(3264), - [anon_sym_assert_equal] = ACTIONS(3264), - [anon_sym_download] = ACTIONS(3264), - [anon_sym_help] = ACTIONS(3264), - [anon_sym_length] = ACTIONS(3264), - [anon_sym_output] = ACTIONS(3264), - [anon_sym_output_error] = ACTIONS(3264), - [anon_sym_type] = ACTIONS(3264), - [anon_sym_append] = ACTIONS(3264), - [anon_sym_metadata] = ACTIONS(3264), - [anon_sym_move] = ACTIONS(3264), - [anon_sym_read] = ACTIONS(3264), - [anon_sym_workdir] = ACTIONS(3264), - [anon_sym_write] = ACTIONS(3264), - [anon_sym_from_json] = ACTIONS(3264), - [anon_sym_to_json] = ACTIONS(3264), - [anon_sym_to_string] = ACTIONS(3264), - [anon_sym_to_float] = ACTIONS(3264), - [anon_sym_bash] = ACTIONS(3264), - [anon_sym_fish] = ACTIONS(3264), - [anon_sym_raw] = ACTIONS(3264), - [anon_sym_sh] = ACTIONS(3264), - [anon_sym_zsh] = ACTIONS(3264), - [anon_sym_random] = ACTIONS(3264), - [anon_sym_random_boolean] = ACTIONS(3264), - [anon_sym_random_float] = ACTIONS(3264), - [anon_sym_random_integer] = ACTIONS(3264), - [anon_sym_columns] = ACTIONS(3264), - [anon_sym_rows] = ACTIONS(3264), - [anon_sym_reverse] = ACTIONS(3264), - }, - [576] = { - [sym_assignment_operator] = STATE(545), - [ts_builtin_sym_end] = ACTIONS(2435), - [sym_identifier] = ACTIONS(2437), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_RBRACE] = ACTIONS(2435), - [anon_sym_SEMI] = ACTIONS(2435), - [anon_sym_LPAREN] = ACTIONS(2435), - [anon_sym_RPAREN] = ACTIONS(2435), - [anon_sym_COMMA] = ACTIONS(2435), - [sym_integer] = ACTIONS(2437), - [sym_float] = ACTIONS(2435), - [sym_string] = ACTIONS(2435), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [anon_sym_LBRACK] = ACTIONS(2435), - [anon_sym_RBRACK] = ACTIONS(2435), - [anon_sym_EQ] = ACTIONS(2439), - [anon_sym_COLON] = ACTIONS(2435), - [anon_sym_DOT_DOT] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_PERCENT] = ACTIONS(2435), - [anon_sym_EQ_EQ] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_PIPE_PIPE] = ACTIONS(2435), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_PLUS_EQ] = ACTIONS(2441), - [anon_sym_DASH_EQ] = ACTIONS(2441), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_elseif] = ACTIONS(2435), - [anon_sym_else] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_EQ_GT] = ACTIONS(2435), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_asyncfor] = ACTIONS(2435), - [anon_sym_transform] = ACTIONS(2437), - [anon_sym_filter] = ACTIONS(2437), - [anon_sym_find] = ACTIONS(2437), - [anon_sym_remove] = ACTIONS(2437), - [anon_sym_reduce] = ACTIONS(2437), - [anon_sym_select] = ACTIONS(2437), - [anon_sym_insert] = ACTIONS(2437), - [anon_sym_async] = ACTIONS(2437), - [anon_sym_PIPE] = ACTIONS(2437), - [anon_sym_table] = ACTIONS(2437), - [anon_sym_assert] = ACTIONS(2437), - [anon_sym_assert_equal] = ACTIONS(2437), - [anon_sym_download] = ACTIONS(2437), - [anon_sym_help] = ACTIONS(2437), - [anon_sym_length] = ACTIONS(2437), - [anon_sym_output] = ACTIONS(2437), - [anon_sym_output_error] = ACTIONS(2437), - [anon_sym_type] = ACTIONS(2437), - [anon_sym_append] = ACTIONS(2437), - [anon_sym_metadata] = ACTIONS(2437), - [anon_sym_move] = ACTIONS(2437), - [anon_sym_read] = ACTIONS(2437), - [anon_sym_workdir] = ACTIONS(2437), - [anon_sym_write] = ACTIONS(2437), - [anon_sym_from_json] = ACTIONS(2437), - [anon_sym_to_json] = ACTIONS(2437), - [anon_sym_to_string] = ACTIONS(2437), - [anon_sym_to_float] = ACTIONS(2437), - [anon_sym_bash] = ACTIONS(2437), - [anon_sym_fish] = ACTIONS(2437), - [anon_sym_raw] = ACTIONS(2437), - [anon_sym_sh] = ACTIONS(2437), - [anon_sym_zsh] = ACTIONS(2437), - [anon_sym_random] = ACTIONS(2437), - [anon_sym_random_boolean] = ACTIONS(2437), - [anon_sym_random_float] = ACTIONS(2437), - [anon_sym_random_integer] = ACTIONS(2437), - [anon_sym_columns] = ACTIONS(2437), - [anon_sym_rows] = ACTIONS(2437), - [anon_sym_reverse] = ACTIONS(2437), - }, - [577] = { - [sym_else_if] = STATE(594), - [sym_else] = STATE(605), - [aux_sym_if_else_repeat1] = STATE(594), - [ts_builtin_sym_end] = ACTIONS(3229), - [sym_identifier] = ACTIONS(3231), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3229), - [anon_sym_RBRACE] = ACTIONS(3229), - [anon_sym_SEMI] = ACTIONS(3229), - [anon_sym_LPAREN] = ACTIONS(3229), - [anon_sym_RPAREN] = ACTIONS(3229), - [sym_integer] = ACTIONS(3231), - [sym_float] = ACTIONS(3229), - [sym_string] = ACTIONS(3229), - [anon_sym_true] = ACTIONS(3231), - [anon_sym_false] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3229), - [anon_sym_EQ] = ACTIONS(3231), - [anon_sym_COLON] = ACTIONS(3229), - [anon_sym_DOT_DOT] = ACTIONS(3229), - [anon_sym_PLUS] = ACTIONS(3231), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_SLASH] = ACTIONS(3229), - [anon_sym_PERCENT] = ACTIONS(3229), - [anon_sym_EQ_EQ] = ACTIONS(3229), - [anon_sym_BANG_EQ] = ACTIONS(3229), - [anon_sym_AMP_AMP] = ACTIONS(3229), - [anon_sym_PIPE_PIPE] = ACTIONS(3229), - [anon_sym_GT] = ACTIONS(3231), - [anon_sym_LT] = ACTIONS(3231), - [anon_sym_GT_EQ] = ACTIONS(3229), - [anon_sym_LT_EQ] = ACTIONS(3229), - [anon_sym_PLUS_EQ] = ACTIONS(3229), - [anon_sym_DASH_EQ] = ACTIONS(3229), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_elseif] = ACTIONS(3285), - [anon_sym_else] = ACTIONS(3287), - [anon_sym_match] = ACTIONS(3231), - [anon_sym_EQ_GT] = ACTIONS(3229), - [anon_sym_while] = ACTIONS(3231), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_asyncfor] = ACTIONS(3229), - [anon_sym_transform] = ACTIONS(3231), - [anon_sym_filter] = ACTIONS(3231), - [anon_sym_find] = ACTIONS(3231), - [anon_sym_remove] = ACTIONS(3231), - [anon_sym_reduce] = ACTIONS(3231), - [anon_sym_select] = ACTIONS(3231), - [anon_sym_insert] = ACTIONS(3231), - [anon_sym_async] = ACTIONS(3231), - [anon_sym_PIPE] = ACTIONS(3231), - [anon_sym_table] = ACTIONS(3231), - [anon_sym_assert] = ACTIONS(3231), - [anon_sym_assert_equal] = ACTIONS(3231), - [anon_sym_download] = ACTIONS(3231), - [anon_sym_help] = ACTIONS(3231), - [anon_sym_length] = ACTIONS(3231), - [anon_sym_output] = ACTIONS(3231), - [anon_sym_output_error] = ACTIONS(3231), - [anon_sym_type] = ACTIONS(3231), - [anon_sym_append] = ACTIONS(3231), - [anon_sym_metadata] = ACTIONS(3231), - [anon_sym_move] = ACTIONS(3231), - [anon_sym_read] = ACTIONS(3231), - [anon_sym_workdir] = ACTIONS(3231), - [anon_sym_write] = ACTIONS(3231), - [anon_sym_from_json] = ACTIONS(3231), - [anon_sym_to_json] = ACTIONS(3231), - [anon_sym_to_string] = ACTIONS(3231), - [anon_sym_to_float] = ACTIONS(3231), - [anon_sym_bash] = ACTIONS(3231), - [anon_sym_fish] = ACTIONS(3231), - [anon_sym_raw] = ACTIONS(3231), - [anon_sym_sh] = ACTIONS(3231), - [anon_sym_zsh] = ACTIONS(3231), - [anon_sym_random] = ACTIONS(3231), - [anon_sym_random_boolean] = ACTIONS(3231), - [anon_sym_random_float] = ACTIONS(3231), - [anon_sym_random_integer] = ACTIONS(3231), - [anon_sym_columns] = ACTIONS(3231), - [anon_sym_rows] = ACTIONS(3231), - [anon_sym_reverse] = ACTIONS(3231), - }, - [578] = { - [sym_math_operator] = STATE(1376), - [sym_logic_operator] = STATE(1377), - [ts_builtin_sym_end] = ACTIONS(3240), - [sym_identifier] = ACTIONS(3242), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3240), - [anon_sym_SEMI] = ACTIONS(3240), - [anon_sym_LPAREN] = ACTIONS(3240), - [anon_sym_RPAREN] = ACTIONS(3240), - [anon_sym_COMMA] = ACTIONS(3240), - [sym_integer] = ACTIONS(3242), - [sym_float] = ACTIONS(3240), - [sym_string] = ACTIONS(3240), - [anon_sym_true] = ACTIONS(3242), - [anon_sym_false] = ACTIONS(3242), - [anon_sym_LBRACK] = ACTIONS(3240), - [anon_sym_RBRACK] = ACTIONS(3240), - [anon_sym_EQ] = ACTIONS(3242), - [anon_sym_COLON] = ACTIONS(115), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_PLUS_EQ] = ACTIONS(3240), - [anon_sym_DASH_EQ] = ACTIONS(3240), - [anon_sym_if] = ACTIONS(3242), - [anon_sym_elseif] = ACTIONS(3240), - [anon_sym_else] = ACTIONS(3242), - [anon_sym_match] = ACTIONS(3242), - [anon_sym_EQ_GT] = ACTIONS(3240), - [anon_sym_while] = ACTIONS(3242), - [anon_sym_for] = ACTIONS(3242), - [anon_sym_asyncfor] = ACTIONS(3240), - [anon_sym_transform] = ACTIONS(3242), - [anon_sym_filter] = ACTIONS(3242), - [anon_sym_find] = ACTIONS(3242), - [anon_sym_remove] = ACTIONS(3242), - [anon_sym_reduce] = ACTIONS(3242), - [anon_sym_select] = ACTIONS(3242), - [anon_sym_insert] = ACTIONS(3242), - [anon_sym_async] = ACTIONS(3242), - [anon_sym_PIPE] = ACTIONS(3242), - [anon_sym_table] = ACTIONS(3242), - [anon_sym_assert] = ACTIONS(3242), - [anon_sym_assert_equal] = ACTIONS(3242), - [anon_sym_download] = ACTIONS(3242), - [anon_sym_help] = ACTIONS(3242), - [anon_sym_length] = ACTIONS(3242), - [anon_sym_output] = ACTIONS(3242), - [anon_sym_output_error] = ACTIONS(3242), - [anon_sym_type] = ACTIONS(3242), - [anon_sym_append] = ACTIONS(3242), - [anon_sym_metadata] = ACTIONS(3242), - [anon_sym_move] = ACTIONS(3242), - [anon_sym_read] = ACTIONS(3242), - [anon_sym_workdir] = ACTIONS(3242), - [anon_sym_write] = ACTIONS(3242), - [anon_sym_from_json] = ACTIONS(3242), - [anon_sym_to_json] = ACTIONS(3242), - [anon_sym_to_string] = ACTIONS(3242), - [anon_sym_to_float] = ACTIONS(3242), - [anon_sym_bash] = ACTIONS(3242), - [anon_sym_fish] = ACTIONS(3242), - [anon_sym_raw] = ACTIONS(3242), - [anon_sym_sh] = ACTIONS(3242), - [anon_sym_zsh] = ACTIONS(3242), - [anon_sym_random] = ACTIONS(3242), - [anon_sym_random_boolean] = ACTIONS(3242), - [anon_sym_random_float] = ACTIONS(3242), - [anon_sym_random_integer] = ACTIONS(3242), - [anon_sym_columns] = ACTIONS(3242), - [anon_sym_rows] = ACTIONS(3242), - [anon_sym_reverse] = ACTIONS(3242), - }, - [579] = { - [sym_math_operator] = STATE(1376), - [sym_logic_operator] = STATE(1377), - [ts_builtin_sym_end] = ACTIONS(3281), - [sym_identifier] = ACTIONS(3283), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3281), - [anon_sym_RBRACE] = ACTIONS(3281), - [anon_sym_SEMI] = ACTIONS(3281), - [anon_sym_LPAREN] = ACTIONS(3281), - [anon_sym_RPAREN] = ACTIONS(3281), - [anon_sym_COMMA] = ACTIONS(3281), - [sym_integer] = ACTIONS(3283), - [sym_float] = ACTIONS(3281), - [sym_string] = ACTIONS(3281), - [anon_sym_true] = ACTIONS(3283), - [anon_sym_false] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3281), - [anon_sym_RBRACK] = ACTIONS(3281), - [anon_sym_EQ] = ACTIONS(3283), - [anon_sym_COLON] = ACTIONS(115), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_PLUS_EQ] = ACTIONS(3281), - [anon_sym_DASH_EQ] = ACTIONS(3281), - [anon_sym_if] = ACTIONS(3283), - [anon_sym_elseif] = ACTIONS(3281), - [anon_sym_else] = ACTIONS(3283), - [anon_sym_match] = ACTIONS(3283), - [anon_sym_EQ_GT] = ACTIONS(3281), - [anon_sym_while] = ACTIONS(3283), - [anon_sym_for] = ACTIONS(3283), - [anon_sym_asyncfor] = ACTIONS(3281), - [anon_sym_transform] = ACTIONS(3283), - [anon_sym_filter] = ACTIONS(3283), - [anon_sym_find] = ACTIONS(3283), - [anon_sym_remove] = ACTIONS(3283), - [anon_sym_reduce] = ACTIONS(3283), - [anon_sym_select] = ACTIONS(3283), - [anon_sym_insert] = ACTIONS(3283), - [anon_sym_async] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(3283), - [anon_sym_table] = ACTIONS(3283), - [anon_sym_assert] = ACTIONS(3283), - [anon_sym_assert_equal] = ACTIONS(3283), - [anon_sym_download] = ACTIONS(3283), - [anon_sym_help] = ACTIONS(3283), - [anon_sym_length] = ACTIONS(3283), - [anon_sym_output] = ACTIONS(3283), - [anon_sym_output_error] = ACTIONS(3283), - [anon_sym_type] = ACTIONS(3283), - [anon_sym_append] = ACTIONS(3283), - [anon_sym_metadata] = ACTIONS(3283), - [anon_sym_move] = ACTIONS(3283), - [anon_sym_read] = ACTIONS(3283), - [anon_sym_workdir] = ACTIONS(3283), - [anon_sym_write] = ACTIONS(3283), - [anon_sym_from_json] = ACTIONS(3283), - [anon_sym_to_json] = ACTIONS(3283), - [anon_sym_to_string] = ACTIONS(3283), - [anon_sym_to_float] = ACTIONS(3283), - [anon_sym_bash] = ACTIONS(3283), - [anon_sym_fish] = ACTIONS(3283), - [anon_sym_raw] = ACTIONS(3283), - [anon_sym_sh] = ACTIONS(3283), - [anon_sym_zsh] = ACTIONS(3283), - [anon_sym_random] = ACTIONS(3283), - [anon_sym_random_boolean] = ACTIONS(3283), - [anon_sym_random_float] = ACTIONS(3283), - [anon_sym_random_integer] = ACTIONS(3283), - [anon_sym_columns] = ACTIONS(3283), - [anon_sym_rows] = ACTIONS(3283), - [anon_sym_reverse] = ACTIONS(3283), - }, - [580] = { - [sym_else_if] = STATE(580), - [aux_sym_if_else_repeat1] = STATE(580), - [ts_builtin_sym_end] = ACTIONS(3268), - [sym_identifier] = ACTIONS(3270), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(3268), - [anon_sym_SEMI] = ACTIONS(3268), - [anon_sym_LPAREN] = ACTIONS(3268), - [anon_sym_RPAREN] = ACTIONS(3268), - [anon_sym_COMMA] = ACTIONS(3268), - [sym_integer] = ACTIONS(3270), - [sym_float] = ACTIONS(3268), - [sym_string] = ACTIONS(3268), - [anon_sym_true] = ACTIONS(3270), - [anon_sym_false] = ACTIONS(3270), - [anon_sym_LBRACK] = ACTIONS(3268), - [anon_sym_RBRACK] = ACTIONS(3268), - [anon_sym_EQ] = ACTIONS(3270), - [anon_sym_COLON] = ACTIONS(3268), - [anon_sym_PLUS] = ACTIONS(3270), - [anon_sym_DASH] = ACTIONS(3270), - [anon_sym_STAR] = ACTIONS(3268), - [anon_sym_SLASH] = ACTIONS(3268), - [anon_sym_PERCENT] = ACTIONS(3268), - [anon_sym_EQ_EQ] = ACTIONS(3268), - [anon_sym_BANG_EQ] = ACTIONS(3268), - [anon_sym_AMP_AMP] = ACTIONS(3268), - [anon_sym_PIPE_PIPE] = ACTIONS(3268), - [anon_sym_GT] = ACTIONS(3270), - [anon_sym_LT] = ACTIONS(3270), - [anon_sym_GT_EQ] = ACTIONS(3268), - [anon_sym_LT_EQ] = ACTIONS(3268), - [anon_sym_PLUS_EQ] = ACTIONS(3268), - [anon_sym_DASH_EQ] = ACTIONS(3268), - [anon_sym_if] = ACTIONS(3270), - [anon_sym_elseif] = ACTIONS(3289), - [anon_sym_else] = ACTIONS(3270), - [anon_sym_match] = ACTIONS(3270), - [anon_sym_EQ_GT] = ACTIONS(3268), - [anon_sym_while] = ACTIONS(3270), - [anon_sym_for] = ACTIONS(3270), - [anon_sym_asyncfor] = ACTIONS(3268), - [anon_sym_transform] = ACTIONS(3270), - [anon_sym_filter] = ACTIONS(3270), - [anon_sym_find] = ACTIONS(3270), - [anon_sym_remove] = ACTIONS(3270), - [anon_sym_reduce] = ACTIONS(3270), - [anon_sym_select] = ACTIONS(3270), - [anon_sym_insert] = ACTIONS(3270), - [anon_sym_async] = ACTIONS(3270), - [anon_sym_PIPE] = ACTIONS(3270), - [anon_sym_table] = ACTIONS(3270), - [anon_sym_assert] = ACTIONS(3270), - [anon_sym_assert_equal] = ACTIONS(3270), - [anon_sym_download] = ACTIONS(3270), - [anon_sym_help] = ACTIONS(3270), - [anon_sym_length] = ACTIONS(3270), - [anon_sym_output] = ACTIONS(3270), - [anon_sym_output_error] = ACTIONS(3270), - [anon_sym_type] = ACTIONS(3270), - [anon_sym_append] = ACTIONS(3270), - [anon_sym_metadata] = ACTIONS(3270), - [anon_sym_move] = ACTIONS(3270), - [anon_sym_read] = ACTIONS(3270), - [anon_sym_workdir] = ACTIONS(3270), - [anon_sym_write] = ACTIONS(3270), - [anon_sym_from_json] = ACTIONS(3270), - [anon_sym_to_json] = ACTIONS(3270), - [anon_sym_to_string] = ACTIONS(3270), - [anon_sym_to_float] = ACTIONS(3270), - [anon_sym_bash] = ACTIONS(3270), - [anon_sym_fish] = ACTIONS(3270), - [anon_sym_raw] = ACTIONS(3270), - [anon_sym_sh] = ACTIONS(3270), - [anon_sym_zsh] = ACTIONS(3270), - [anon_sym_random] = ACTIONS(3270), - [anon_sym_random_boolean] = ACTIONS(3270), - [anon_sym_random_float] = ACTIONS(3270), - [anon_sym_random_integer] = ACTIONS(3270), - [anon_sym_columns] = ACTIONS(3270), - [anon_sym_rows] = ACTIONS(3270), - [anon_sym_reverse] = ACTIONS(3270), - }, - [581] = { - [sym_else_if] = STATE(594), - [sym_else] = STATE(725), - [aux_sym_if_else_repeat1] = STATE(594), - [ts_builtin_sym_end] = ACTIONS(3229), - [sym_identifier] = ACTIONS(3231), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3229), - [anon_sym_RBRACE] = ACTIONS(3229), - [anon_sym_SEMI] = ACTIONS(3229), - [anon_sym_LPAREN] = ACTIONS(3229), - [anon_sym_RPAREN] = ACTIONS(3229), - [sym_integer] = ACTIONS(3231), - [sym_float] = ACTIONS(3229), - [sym_string] = ACTIONS(3229), - [anon_sym_true] = ACTIONS(3231), - [anon_sym_false] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3229), - [anon_sym_EQ] = ACTIONS(3231), - [anon_sym_COLON] = ACTIONS(3229), - [anon_sym_DOT_DOT] = ACTIONS(3229), - [anon_sym_PLUS] = ACTIONS(3231), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_SLASH] = ACTIONS(3229), - [anon_sym_PERCENT] = ACTIONS(3229), - [anon_sym_EQ_EQ] = ACTIONS(3229), - [anon_sym_BANG_EQ] = ACTIONS(3229), - [anon_sym_AMP_AMP] = ACTIONS(3229), - [anon_sym_PIPE_PIPE] = ACTIONS(3229), - [anon_sym_GT] = ACTIONS(3231), - [anon_sym_LT] = ACTIONS(3231), - [anon_sym_GT_EQ] = ACTIONS(3229), - [anon_sym_LT_EQ] = ACTIONS(3229), - [anon_sym_PLUS_EQ] = ACTIONS(3229), - [anon_sym_DASH_EQ] = ACTIONS(3229), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_elseif] = ACTIONS(3285), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_match] = ACTIONS(3231), - [anon_sym_EQ_GT] = ACTIONS(3229), - [anon_sym_while] = ACTIONS(3231), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_asyncfor] = ACTIONS(3229), - [anon_sym_transform] = ACTIONS(3231), - [anon_sym_filter] = ACTIONS(3231), - [anon_sym_find] = ACTIONS(3231), - [anon_sym_remove] = ACTIONS(3231), - [anon_sym_reduce] = ACTIONS(3231), - [anon_sym_select] = ACTIONS(3231), - [anon_sym_insert] = ACTIONS(3231), - [anon_sym_async] = ACTIONS(3231), - [anon_sym_PIPE] = ACTIONS(3231), - [anon_sym_table] = ACTIONS(3231), - [anon_sym_assert] = ACTIONS(3231), - [anon_sym_assert_equal] = ACTIONS(3231), - [anon_sym_download] = ACTIONS(3231), - [anon_sym_help] = ACTIONS(3231), - [anon_sym_length] = ACTIONS(3231), - [anon_sym_output] = ACTIONS(3231), - [anon_sym_output_error] = ACTIONS(3231), - [anon_sym_type] = ACTIONS(3231), - [anon_sym_append] = ACTIONS(3231), - [anon_sym_metadata] = ACTIONS(3231), - [anon_sym_move] = ACTIONS(3231), - [anon_sym_read] = ACTIONS(3231), - [anon_sym_workdir] = ACTIONS(3231), - [anon_sym_write] = ACTIONS(3231), - [anon_sym_from_json] = ACTIONS(3231), - [anon_sym_to_json] = ACTIONS(3231), - [anon_sym_to_string] = ACTIONS(3231), - [anon_sym_to_float] = ACTIONS(3231), - [anon_sym_bash] = ACTIONS(3231), - [anon_sym_fish] = ACTIONS(3231), - [anon_sym_raw] = ACTIONS(3231), - [anon_sym_sh] = ACTIONS(3231), - [anon_sym_zsh] = ACTIONS(3231), - [anon_sym_random] = ACTIONS(3231), - [anon_sym_random_boolean] = ACTIONS(3231), - [anon_sym_random_float] = ACTIONS(3231), - [anon_sym_random_integer] = ACTIONS(3231), - [anon_sym_columns] = ACTIONS(3231), - [anon_sym_rows] = ACTIONS(3231), - [anon_sym_reverse] = ACTIONS(3231), - }, - [582] = { - [sym_else_if] = STATE(581), - [sym_else] = STATE(711), - [aux_sym_if_else_repeat1] = STATE(581), - [ts_builtin_sym_end] = ACTIONS(3219), - [sym_identifier] = ACTIONS(3221), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_RPAREN] = ACTIONS(3219), - [sym_integer] = ACTIONS(3221), - [sym_float] = ACTIONS(3219), - [sym_string] = ACTIONS(3219), - [anon_sym_true] = ACTIONS(3221), - [anon_sym_false] = ACTIONS(3221), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_EQ] = ACTIONS(3221), - [anon_sym_COLON] = ACTIONS(3219), - [anon_sym_DOT_DOT] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3221), - [anon_sym_DASH] = ACTIONS(3221), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_PERCENT] = ACTIONS(3219), - [anon_sym_EQ_EQ] = ACTIONS(3219), - [anon_sym_BANG_EQ] = ACTIONS(3219), - [anon_sym_AMP_AMP] = ACTIONS(3219), - [anon_sym_PIPE_PIPE] = ACTIONS(3219), - [anon_sym_GT] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3221), - [anon_sym_GT_EQ] = ACTIONS(3219), - [anon_sym_LT_EQ] = ACTIONS(3219), - [anon_sym_PLUS_EQ] = ACTIONS(3219), - [anon_sym_DASH_EQ] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3221), - [anon_sym_elseif] = ACTIONS(3285), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_match] = ACTIONS(3221), - [anon_sym_EQ_GT] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3221), - [anon_sym_for] = ACTIONS(3221), - [anon_sym_asyncfor] = ACTIONS(3219), - [anon_sym_transform] = ACTIONS(3221), - [anon_sym_filter] = ACTIONS(3221), - [anon_sym_find] = ACTIONS(3221), - [anon_sym_remove] = ACTIONS(3221), - [anon_sym_reduce] = ACTIONS(3221), - [anon_sym_select] = ACTIONS(3221), - [anon_sym_insert] = ACTIONS(3221), - [anon_sym_async] = ACTIONS(3221), - [anon_sym_PIPE] = ACTIONS(3221), - [anon_sym_table] = ACTIONS(3221), - [anon_sym_assert] = ACTIONS(3221), - [anon_sym_assert_equal] = ACTIONS(3221), - [anon_sym_download] = ACTIONS(3221), - [anon_sym_help] = ACTIONS(3221), - [anon_sym_length] = ACTIONS(3221), - [anon_sym_output] = ACTIONS(3221), - [anon_sym_output_error] = ACTIONS(3221), - [anon_sym_type] = ACTIONS(3221), - [anon_sym_append] = ACTIONS(3221), - [anon_sym_metadata] = ACTIONS(3221), - [anon_sym_move] = ACTIONS(3221), - [anon_sym_read] = ACTIONS(3221), - [anon_sym_workdir] = ACTIONS(3221), - [anon_sym_write] = ACTIONS(3221), - [anon_sym_from_json] = ACTIONS(3221), - [anon_sym_to_json] = ACTIONS(3221), - [anon_sym_to_string] = ACTIONS(3221), - [anon_sym_to_float] = ACTIONS(3221), - [anon_sym_bash] = ACTIONS(3221), - [anon_sym_fish] = ACTIONS(3221), - [anon_sym_raw] = ACTIONS(3221), - [anon_sym_sh] = ACTIONS(3221), - [anon_sym_zsh] = ACTIONS(3221), - [anon_sym_random] = ACTIONS(3221), - [anon_sym_random_boolean] = ACTIONS(3221), - [anon_sym_random_float] = ACTIONS(3221), - [anon_sym_random_integer] = ACTIONS(3221), - [anon_sym_columns] = ACTIONS(3221), - [anon_sym_rows] = ACTIONS(3221), - [anon_sym_reverse] = ACTIONS(3221), - }, - [583] = { - [sym_math_operator] = STATE(1376), - [sym_logic_operator] = STATE(1377), - [ts_builtin_sym_end] = ACTIONS(3275), - [sym_identifier] = ACTIONS(3277), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3275), - [anon_sym_RBRACE] = ACTIONS(3275), - [anon_sym_SEMI] = ACTIONS(3279), - [anon_sym_LPAREN] = ACTIONS(3275), - [anon_sym_RPAREN] = ACTIONS(3275), - [anon_sym_COMMA] = ACTIONS(3275), - [sym_integer] = ACTIONS(3277), - [sym_float] = ACTIONS(3275), - [sym_string] = ACTIONS(3275), - [anon_sym_true] = ACTIONS(3277), - [anon_sym_false] = ACTIONS(3277), - [anon_sym_LBRACK] = ACTIONS(3275), - [anon_sym_RBRACK] = ACTIONS(3275), - [anon_sym_EQ] = ACTIONS(3277), - [anon_sym_COLON] = ACTIONS(115), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_PLUS_EQ] = ACTIONS(3275), - [anon_sym_DASH_EQ] = ACTIONS(3275), - [anon_sym_if] = ACTIONS(3277), - [anon_sym_elseif] = ACTIONS(3275), - [anon_sym_else] = ACTIONS(3277), - [anon_sym_match] = ACTIONS(3277), - [anon_sym_EQ_GT] = ACTIONS(3275), - [anon_sym_while] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3277), - [anon_sym_asyncfor] = ACTIONS(3275), - [anon_sym_transform] = ACTIONS(3277), - [anon_sym_filter] = ACTIONS(3277), - [anon_sym_find] = ACTIONS(3277), - [anon_sym_remove] = ACTIONS(3277), - [anon_sym_reduce] = ACTIONS(3277), - [anon_sym_select] = ACTIONS(3277), - [anon_sym_insert] = ACTIONS(3277), - [anon_sym_async] = ACTIONS(3277), - [anon_sym_PIPE] = ACTIONS(3277), - [anon_sym_table] = ACTIONS(3277), - [anon_sym_assert] = ACTIONS(3277), - [anon_sym_assert_equal] = ACTIONS(3277), - [anon_sym_download] = ACTIONS(3277), - [anon_sym_help] = ACTIONS(3277), - [anon_sym_length] = ACTIONS(3277), - [anon_sym_output] = ACTIONS(3277), - [anon_sym_output_error] = ACTIONS(3277), - [anon_sym_type] = ACTIONS(3277), - [anon_sym_append] = ACTIONS(3277), - [anon_sym_metadata] = ACTIONS(3277), - [anon_sym_move] = ACTIONS(3277), - [anon_sym_read] = ACTIONS(3277), - [anon_sym_workdir] = ACTIONS(3277), - [anon_sym_write] = ACTIONS(3277), - [anon_sym_from_json] = ACTIONS(3277), - [anon_sym_to_json] = ACTIONS(3277), - [anon_sym_to_string] = ACTIONS(3277), - [anon_sym_to_float] = ACTIONS(3277), - [anon_sym_bash] = ACTIONS(3277), - [anon_sym_fish] = ACTIONS(3277), - [anon_sym_raw] = ACTIONS(3277), - [anon_sym_sh] = ACTIONS(3277), - [anon_sym_zsh] = ACTIONS(3277), - [anon_sym_random] = ACTIONS(3277), - [anon_sym_random_boolean] = ACTIONS(3277), - [anon_sym_random_float] = ACTIONS(3277), - [anon_sym_random_integer] = ACTIONS(3277), - [anon_sym_columns] = ACTIONS(3277), - [anon_sym_rows] = ACTIONS(3277), - [anon_sym_reverse] = ACTIONS(3277), - }, - [584] = { - [sym_else_if] = STATE(577), - [sym_else] = STATE(595), - [aux_sym_if_else_repeat1] = STATE(577), - [ts_builtin_sym_end] = ACTIONS(3219), - [sym_identifier] = ACTIONS(3221), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_RPAREN] = ACTIONS(3219), - [sym_integer] = ACTIONS(3221), - [sym_float] = ACTIONS(3219), - [sym_string] = ACTIONS(3219), - [anon_sym_true] = ACTIONS(3221), - [anon_sym_false] = ACTIONS(3221), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_EQ] = ACTIONS(3221), - [anon_sym_COLON] = ACTIONS(3219), - [anon_sym_DOT_DOT] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3221), - [anon_sym_DASH] = ACTIONS(3221), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_PERCENT] = ACTIONS(3219), - [anon_sym_EQ_EQ] = ACTIONS(3219), - [anon_sym_BANG_EQ] = ACTIONS(3219), - [anon_sym_AMP_AMP] = ACTIONS(3219), - [anon_sym_PIPE_PIPE] = ACTIONS(3219), - [anon_sym_GT] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3221), - [anon_sym_GT_EQ] = ACTIONS(3219), - [anon_sym_LT_EQ] = ACTIONS(3219), - [anon_sym_PLUS_EQ] = ACTIONS(3219), - [anon_sym_DASH_EQ] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3221), - [anon_sym_elseif] = ACTIONS(3285), - [anon_sym_else] = ACTIONS(3287), - [anon_sym_match] = ACTIONS(3221), - [anon_sym_EQ_GT] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3221), - [anon_sym_for] = ACTIONS(3221), - [anon_sym_asyncfor] = ACTIONS(3219), - [anon_sym_transform] = ACTIONS(3221), - [anon_sym_filter] = ACTIONS(3221), - [anon_sym_find] = ACTIONS(3221), - [anon_sym_remove] = ACTIONS(3221), - [anon_sym_reduce] = ACTIONS(3221), - [anon_sym_select] = ACTIONS(3221), - [anon_sym_insert] = ACTIONS(3221), - [anon_sym_async] = ACTIONS(3221), - [anon_sym_PIPE] = ACTIONS(3221), - [anon_sym_table] = ACTIONS(3221), - [anon_sym_assert] = ACTIONS(3221), - [anon_sym_assert_equal] = ACTIONS(3221), - [anon_sym_download] = ACTIONS(3221), - [anon_sym_help] = ACTIONS(3221), - [anon_sym_length] = ACTIONS(3221), - [anon_sym_output] = ACTIONS(3221), - [anon_sym_output_error] = ACTIONS(3221), - [anon_sym_type] = ACTIONS(3221), - [anon_sym_append] = ACTIONS(3221), - [anon_sym_metadata] = ACTIONS(3221), - [anon_sym_move] = ACTIONS(3221), - [anon_sym_read] = ACTIONS(3221), - [anon_sym_workdir] = ACTIONS(3221), - [anon_sym_write] = ACTIONS(3221), - [anon_sym_from_json] = ACTIONS(3221), - [anon_sym_to_json] = ACTIONS(3221), - [anon_sym_to_string] = ACTIONS(3221), - [anon_sym_to_float] = ACTIONS(3221), - [anon_sym_bash] = ACTIONS(3221), - [anon_sym_fish] = ACTIONS(3221), - [anon_sym_raw] = ACTIONS(3221), - [anon_sym_sh] = ACTIONS(3221), - [anon_sym_zsh] = ACTIONS(3221), - [anon_sym_random] = ACTIONS(3221), - [anon_sym_random_boolean] = ACTIONS(3221), - [anon_sym_random_float] = ACTIONS(3221), - [anon_sym_random_integer] = ACTIONS(3221), - [anon_sym_columns] = ACTIONS(3221), - [anon_sym_rows] = ACTIONS(3221), - [anon_sym_reverse] = ACTIONS(3221), - }, - [585] = { - [sym_math_operator] = STATE(1376), - [sym_logic_operator] = STATE(1377), - [ts_builtin_sym_end] = ACTIONS(3244), - [sym_identifier] = ACTIONS(3246), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_RBRACE] = ACTIONS(3244), - [anon_sym_SEMI] = ACTIONS(3244), - [anon_sym_LPAREN] = ACTIONS(3244), - [anon_sym_RPAREN] = ACTIONS(3244), - [anon_sym_COMMA] = ACTIONS(3244), - [sym_integer] = ACTIONS(3246), - [sym_float] = ACTIONS(3244), - [sym_string] = ACTIONS(3244), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_LBRACK] = ACTIONS(3244), - [anon_sym_RBRACK] = ACTIONS(3244), - [anon_sym_EQ] = ACTIONS(3246), - [anon_sym_COLON] = ACTIONS(115), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_PLUS_EQ] = ACTIONS(3244), - [anon_sym_DASH_EQ] = ACTIONS(3244), - [anon_sym_if] = ACTIONS(3246), - [anon_sym_elseif] = ACTIONS(3244), - [anon_sym_else] = ACTIONS(3246), - [anon_sym_match] = ACTIONS(3246), - [anon_sym_EQ_GT] = ACTIONS(3244), - [anon_sym_while] = ACTIONS(3246), - [anon_sym_for] = ACTIONS(3246), - [anon_sym_asyncfor] = ACTIONS(3244), - [anon_sym_transform] = ACTIONS(3246), - [anon_sym_filter] = ACTIONS(3246), - [anon_sym_find] = ACTIONS(3246), - [anon_sym_remove] = ACTIONS(3246), - [anon_sym_reduce] = ACTIONS(3246), - [anon_sym_select] = ACTIONS(3246), - [anon_sym_insert] = ACTIONS(3246), - [anon_sym_async] = ACTIONS(3246), - [anon_sym_PIPE] = ACTIONS(3246), - [anon_sym_table] = ACTIONS(3246), - [anon_sym_assert] = ACTIONS(3246), - [anon_sym_assert_equal] = ACTIONS(3246), - [anon_sym_download] = ACTIONS(3246), - [anon_sym_help] = ACTIONS(3246), - [anon_sym_length] = ACTIONS(3246), - [anon_sym_output] = ACTIONS(3246), - [anon_sym_output_error] = ACTIONS(3246), - [anon_sym_type] = ACTIONS(3246), - [anon_sym_append] = ACTIONS(3246), - [anon_sym_metadata] = ACTIONS(3246), - [anon_sym_move] = ACTIONS(3246), - [anon_sym_read] = ACTIONS(3246), - [anon_sym_workdir] = ACTIONS(3246), - [anon_sym_write] = ACTIONS(3246), - [anon_sym_from_json] = ACTIONS(3246), - [anon_sym_to_json] = ACTIONS(3246), - [anon_sym_to_string] = ACTIONS(3246), - [anon_sym_to_float] = ACTIONS(3246), - [anon_sym_bash] = ACTIONS(3246), - [anon_sym_fish] = ACTIONS(3246), - [anon_sym_raw] = ACTIONS(3246), - [anon_sym_sh] = ACTIONS(3246), - [anon_sym_zsh] = ACTIONS(3246), - [anon_sym_random] = ACTIONS(3246), - [anon_sym_random_boolean] = ACTIONS(3246), - [anon_sym_random_float] = ACTIONS(3246), - [anon_sym_random_integer] = ACTIONS(3246), - [anon_sym_columns] = ACTIONS(3246), - [anon_sym_rows] = ACTIONS(3246), - [anon_sym_reverse] = ACTIONS(3246), - }, - [586] = { - [sym_math_operator] = STATE(1376), - [sym_logic_operator] = STATE(1377), - [ts_builtin_sym_end] = ACTIONS(3252), - [sym_identifier] = ACTIONS(3254), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3252), - [anon_sym_RBRACE] = ACTIONS(3252), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_LPAREN] = ACTIONS(3252), - [anon_sym_RPAREN] = ACTIONS(3252), - [anon_sym_COMMA] = ACTIONS(3252), - [sym_integer] = ACTIONS(3254), - [sym_float] = ACTIONS(3252), - [sym_string] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_RBRACK] = ACTIONS(3252), - [anon_sym_EQ] = ACTIONS(3254), - [anon_sym_COLON] = ACTIONS(3252), - [anon_sym_PLUS] = ACTIONS(3254), - [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_STAR] = ACTIONS(3252), - [anon_sym_SLASH] = ACTIONS(3252), - [anon_sym_PERCENT] = ACTIONS(3252), - [anon_sym_EQ_EQ] = ACTIONS(3252), - [anon_sym_BANG_EQ] = ACTIONS(3252), - [anon_sym_AMP_AMP] = ACTIONS(3252), - [anon_sym_PIPE_PIPE] = ACTIONS(3252), - [anon_sym_GT] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(3254), - [anon_sym_GT_EQ] = ACTIONS(3252), - [anon_sym_LT_EQ] = ACTIONS(3252), - [anon_sym_PLUS_EQ] = ACTIONS(3252), - [anon_sym_DASH_EQ] = ACTIONS(3252), - [anon_sym_if] = ACTIONS(3254), - [anon_sym_elseif] = ACTIONS(3252), - [anon_sym_else] = ACTIONS(3254), - [anon_sym_match] = ACTIONS(3254), - [anon_sym_EQ_GT] = ACTIONS(3252), - [anon_sym_while] = ACTIONS(3254), - [anon_sym_for] = ACTIONS(3254), - [anon_sym_asyncfor] = ACTIONS(3252), - [anon_sym_transform] = ACTIONS(3254), - [anon_sym_filter] = ACTIONS(3254), - [anon_sym_find] = ACTIONS(3254), - [anon_sym_remove] = ACTIONS(3254), - [anon_sym_reduce] = ACTIONS(3254), - [anon_sym_select] = ACTIONS(3254), - [anon_sym_insert] = ACTIONS(3254), - [anon_sym_async] = ACTIONS(3254), - [anon_sym_PIPE] = ACTIONS(3254), - [anon_sym_table] = ACTIONS(3254), - [anon_sym_assert] = ACTIONS(3254), - [anon_sym_assert_equal] = ACTIONS(3254), - [anon_sym_download] = ACTIONS(3254), - [anon_sym_help] = ACTIONS(3254), - [anon_sym_length] = ACTIONS(3254), - [anon_sym_output] = ACTIONS(3254), - [anon_sym_output_error] = ACTIONS(3254), - [anon_sym_type] = ACTIONS(3254), - [anon_sym_append] = ACTIONS(3254), - [anon_sym_metadata] = ACTIONS(3254), - [anon_sym_move] = ACTIONS(3254), - [anon_sym_read] = ACTIONS(3254), - [anon_sym_workdir] = ACTIONS(3254), - [anon_sym_write] = ACTIONS(3254), - [anon_sym_from_json] = ACTIONS(3254), - [anon_sym_to_json] = ACTIONS(3254), - [anon_sym_to_string] = ACTIONS(3254), - [anon_sym_to_float] = ACTIONS(3254), - [anon_sym_bash] = ACTIONS(3254), - [anon_sym_fish] = ACTIONS(3254), - [anon_sym_raw] = ACTIONS(3254), - [anon_sym_sh] = ACTIONS(3254), - [anon_sym_zsh] = ACTIONS(3254), - [anon_sym_random] = ACTIONS(3254), - [anon_sym_random_boolean] = ACTIONS(3254), - [anon_sym_random_float] = ACTIONS(3254), - [anon_sym_random_integer] = ACTIONS(3254), - [anon_sym_columns] = ACTIONS(3254), - [anon_sym_rows] = ACTIONS(3254), - [anon_sym_reverse] = ACTIONS(3254), - }, - [587] = { - [sym_math_operator] = STATE(1376), - [sym_logic_operator] = STATE(1377), - [ts_builtin_sym_end] = ACTIONS(3233), - [sym_identifier] = ACTIONS(3235), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3233), - [anon_sym_RBRACE] = ACTIONS(3233), - [anon_sym_SEMI] = ACTIONS(3233), - [anon_sym_LPAREN] = ACTIONS(3233), - [anon_sym_RPAREN] = ACTIONS(3233), - [anon_sym_COMMA] = ACTIONS(3237), - [sym_integer] = ACTIONS(3235), - [sym_float] = ACTIONS(3233), - [sym_string] = ACTIONS(3233), - [anon_sym_true] = ACTIONS(3235), - [anon_sym_false] = ACTIONS(3235), - [anon_sym_LBRACK] = ACTIONS(3233), - [anon_sym_RBRACK] = ACTIONS(3233), - [anon_sym_EQ] = ACTIONS(3235), - [anon_sym_COLON] = ACTIONS(115), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_PLUS_EQ] = ACTIONS(3233), - [anon_sym_DASH_EQ] = ACTIONS(3233), - [anon_sym_if] = ACTIONS(3235), - [anon_sym_elseif] = ACTIONS(3233), - [anon_sym_else] = ACTIONS(3235), - [anon_sym_match] = ACTIONS(3235), - [anon_sym_EQ_GT] = ACTIONS(3233), - [anon_sym_while] = ACTIONS(3235), - [anon_sym_for] = ACTIONS(3235), - [anon_sym_asyncfor] = ACTIONS(3233), - [anon_sym_transform] = ACTIONS(3235), - [anon_sym_filter] = ACTIONS(3235), - [anon_sym_find] = ACTIONS(3235), - [anon_sym_remove] = ACTIONS(3235), - [anon_sym_reduce] = ACTIONS(3235), - [anon_sym_select] = ACTIONS(3235), - [anon_sym_insert] = ACTIONS(3235), - [anon_sym_async] = ACTIONS(3235), - [anon_sym_PIPE] = ACTIONS(3235), - [anon_sym_table] = ACTIONS(3235), - [anon_sym_assert] = ACTIONS(3235), - [anon_sym_assert_equal] = ACTIONS(3235), - [anon_sym_download] = ACTIONS(3235), - [anon_sym_help] = ACTIONS(3235), - [anon_sym_length] = ACTIONS(3235), - [anon_sym_output] = ACTIONS(3235), - [anon_sym_output_error] = ACTIONS(3235), - [anon_sym_type] = ACTIONS(3235), - [anon_sym_append] = ACTIONS(3235), - [anon_sym_metadata] = ACTIONS(3235), - [anon_sym_move] = ACTIONS(3235), - [anon_sym_read] = ACTIONS(3235), - [anon_sym_workdir] = ACTIONS(3235), - [anon_sym_write] = ACTIONS(3235), - [anon_sym_from_json] = ACTIONS(3235), - [anon_sym_to_json] = ACTIONS(3235), - [anon_sym_to_string] = ACTIONS(3235), - [anon_sym_to_float] = ACTIONS(3235), - [anon_sym_bash] = ACTIONS(3235), - [anon_sym_fish] = ACTIONS(3235), - [anon_sym_raw] = ACTIONS(3235), - [anon_sym_sh] = ACTIONS(3235), - [anon_sym_zsh] = ACTIONS(3235), - [anon_sym_random] = ACTIONS(3235), - [anon_sym_random_boolean] = ACTIONS(3235), - [anon_sym_random_float] = ACTIONS(3235), - [anon_sym_random_integer] = ACTIONS(3235), - [anon_sym_columns] = ACTIONS(3235), - [anon_sym_rows] = ACTIONS(3235), - [anon_sym_reverse] = ACTIONS(3235), - }, - [588] = { - [sym_math_operator] = STATE(1313), - [sym_logic_operator] = STATE(1312), - [ts_builtin_sym_end] = ACTIONS(3233), - [sym_identifier] = ACTIONS(3235), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3233), - [anon_sym_RBRACE] = ACTIONS(3233), - [anon_sym_SEMI] = ACTIONS(3233), - [anon_sym_LPAREN] = ACTIONS(3233), - [anon_sym_RPAREN] = ACTIONS(3233), - [anon_sym_COMMA] = ACTIONS(3294), - [sym_integer] = ACTIONS(3235), - [sym_float] = ACTIONS(3233), - [sym_string] = ACTIONS(3233), - [anon_sym_true] = ACTIONS(3235), - [anon_sym_false] = ACTIONS(3235), - [anon_sym_LBRACK] = ACTIONS(3233), - [anon_sym_EQ] = ACTIONS(3235), - [anon_sym_COLON] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3233), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_PLUS_EQ] = ACTIONS(3233), - [anon_sym_DASH_EQ] = ACTIONS(3233), - [anon_sym_if] = ACTIONS(3235), - [anon_sym_elseif] = ACTIONS(3233), - [anon_sym_else] = ACTIONS(3235), - [anon_sym_match] = ACTIONS(3235), - [anon_sym_EQ_GT] = ACTIONS(3233), - [anon_sym_while] = ACTIONS(3235), - [anon_sym_for] = ACTIONS(3235), - [anon_sym_asyncfor] = ACTIONS(3233), - [anon_sym_transform] = ACTIONS(3235), - [anon_sym_filter] = ACTIONS(3235), - [anon_sym_find] = ACTIONS(3235), - [anon_sym_remove] = ACTIONS(3235), - [anon_sym_reduce] = ACTIONS(3235), - [anon_sym_select] = ACTIONS(3235), - [anon_sym_insert] = ACTIONS(3235), - [anon_sym_async] = ACTIONS(3235), - [anon_sym_PIPE] = ACTIONS(3235), - [anon_sym_table] = ACTIONS(3235), - [anon_sym_assert] = ACTIONS(3235), - [anon_sym_assert_equal] = ACTIONS(3235), - [anon_sym_download] = ACTIONS(3235), - [anon_sym_help] = ACTIONS(3235), - [anon_sym_length] = ACTIONS(3235), - [anon_sym_output] = ACTIONS(3235), - [anon_sym_output_error] = ACTIONS(3235), - [anon_sym_type] = ACTIONS(3235), - [anon_sym_append] = ACTIONS(3235), - [anon_sym_metadata] = ACTIONS(3235), - [anon_sym_move] = ACTIONS(3235), - [anon_sym_read] = ACTIONS(3235), - [anon_sym_workdir] = ACTIONS(3235), - [anon_sym_write] = ACTIONS(3235), - [anon_sym_from_json] = ACTIONS(3235), - [anon_sym_to_json] = ACTIONS(3235), - [anon_sym_to_string] = ACTIONS(3235), - [anon_sym_to_float] = ACTIONS(3235), - [anon_sym_bash] = ACTIONS(3235), - [anon_sym_fish] = ACTIONS(3235), - [anon_sym_raw] = ACTIONS(3235), - [anon_sym_sh] = ACTIONS(3235), - [anon_sym_zsh] = ACTIONS(3235), - [anon_sym_random] = ACTIONS(3235), - [anon_sym_random_boolean] = ACTIONS(3235), - [anon_sym_random_float] = ACTIONS(3235), - [anon_sym_random_integer] = ACTIONS(3235), - [anon_sym_columns] = ACTIONS(3235), - [anon_sym_rows] = ACTIONS(3235), - [anon_sym_reverse] = ACTIONS(3235), - }, - [589] = { - [ts_builtin_sym_end] = ACTIONS(3296), - [sym_identifier] = ACTIONS(3298), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3296), - [anon_sym_RPAREN] = ACTIONS(3296), - [anon_sym_COMMA] = ACTIONS(3296), - [sym_integer] = ACTIONS(3298), - [sym_float] = ACTIONS(3296), - [sym_string] = ACTIONS(3296), - [anon_sym_true] = ACTIONS(3298), - [anon_sym_false] = ACTIONS(3298), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_RBRACK] = ACTIONS(3296), - [anon_sym_EQ] = ACTIONS(3298), - [anon_sym_COLON] = ACTIONS(3296), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3298), - [anon_sym_DASH] = ACTIONS(3298), - [anon_sym_STAR] = ACTIONS(3296), - [anon_sym_SLASH] = ACTIONS(3296), - [anon_sym_PERCENT] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_GT] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3298), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_PLUS_EQ] = ACTIONS(3296), - [anon_sym_DASH_EQ] = ACTIONS(3296), - [anon_sym_if] = ACTIONS(3298), - [anon_sym_elseif] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3298), - [anon_sym_match] = ACTIONS(3298), - [anon_sym_EQ_GT] = ACTIONS(3296), - [anon_sym_while] = ACTIONS(3298), - [anon_sym_for] = ACTIONS(3298), - [anon_sym_asyncfor] = ACTIONS(3296), - [anon_sym_transform] = ACTIONS(3298), - [anon_sym_filter] = ACTIONS(3298), - [anon_sym_find] = ACTIONS(3298), - [anon_sym_remove] = ACTIONS(3298), - [anon_sym_reduce] = ACTIONS(3298), - [anon_sym_select] = ACTIONS(3298), - [anon_sym_insert] = ACTIONS(3298), - [anon_sym_async] = ACTIONS(3298), - [anon_sym_PIPE] = ACTIONS(3298), - [anon_sym_table] = ACTIONS(3298), - [anon_sym_assert] = ACTIONS(3298), - [anon_sym_assert_equal] = ACTIONS(3298), - [anon_sym_download] = ACTIONS(3298), - [anon_sym_help] = ACTIONS(3298), - [anon_sym_length] = ACTIONS(3298), - [anon_sym_output] = ACTIONS(3298), - [anon_sym_output_error] = ACTIONS(3298), - [anon_sym_type] = ACTIONS(3298), - [anon_sym_append] = ACTIONS(3298), - [anon_sym_metadata] = ACTIONS(3298), - [anon_sym_move] = ACTIONS(3298), - [anon_sym_read] = ACTIONS(3298), - [anon_sym_workdir] = ACTIONS(3298), - [anon_sym_write] = ACTIONS(3298), - [anon_sym_from_json] = ACTIONS(3298), - [anon_sym_to_json] = ACTIONS(3298), - [anon_sym_to_string] = ACTIONS(3298), - [anon_sym_to_float] = ACTIONS(3298), - [anon_sym_bash] = ACTIONS(3298), - [anon_sym_fish] = ACTIONS(3298), - [anon_sym_raw] = ACTIONS(3298), - [anon_sym_sh] = ACTIONS(3298), - [anon_sym_zsh] = ACTIONS(3298), - [anon_sym_random] = ACTIONS(3298), - [anon_sym_random_boolean] = ACTIONS(3298), - [anon_sym_random_float] = ACTIONS(3298), - [anon_sym_random_integer] = ACTIONS(3298), - [anon_sym_columns] = ACTIONS(3298), - [anon_sym_rows] = ACTIONS(3298), - [anon_sym_reverse] = ACTIONS(3298), - }, - [590] = { - [sym_math_operator] = STATE(1316), - [sym_logic_operator] = STATE(1285), - [ts_builtin_sym_end] = ACTIONS(3252), - [sym_identifier] = ACTIONS(3254), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3252), - [anon_sym_RBRACE] = ACTIONS(3252), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_LPAREN] = ACTIONS(3252), - [anon_sym_RPAREN] = ACTIONS(3252), - [anon_sym_COMMA] = ACTIONS(3252), - [sym_integer] = ACTIONS(3254), - [sym_float] = ACTIONS(3252), - [sym_string] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_RBRACK] = ACTIONS(3252), - [anon_sym_EQ] = ACTIONS(3254), - [anon_sym_COLON] = ACTIONS(3252), - [anon_sym_DOT_DOT] = ACTIONS(3252), - [anon_sym_PLUS] = ACTIONS(3254), - [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_STAR] = ACTIONS(3252), - [anon_sym_SLASH] = ACTIONS(3252), - [anon_sym_PERCENT] = ACTIONS(3252), - [anon_sym_EQ_EQ] = ACTIONS(3252), - [anon_sym_BANG_EQ] = ACTIONS(3252), - [anon_sym_AMP_AMP] = ACTIONS(3252), - [anon_sym_PIPE_PIPE] = ACTIONS(3252), - [anon_sym_GT] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(3254), - [anon_sym_GT_EQ] = ACTIONS(3252), - [anon_sym_LT_EQ] = ACTIONS(3252), - [anon_sym_PLUS_EQ] = ACTIONS(3252), - [anon_sym_DASH_EQ] = ACTIONS(3252), - [anon_sym_if] = ACTIONS(3254), - [anon_sym_match] = ACTIONS(3254), - [anon_sym_EQ_GT] = ACTIONS(3252), - [anon_sym_while] = ACTIONS(3254), - [anon_sym_for] = ACTIONS(3254), - [anon_sym_asyncfor] = ACTIONS(3252), - [anon_sym_transform] = ACTIONS(3254), - [anon_sym_filter] = ACTIONS(3254), - [anon_sym_find] = ACTIONS(3254), - [anon_sym_remove] = ACTIONS(3254), - [anon_sym_reduce] = ACTIONS(3254), - [anon_sym_select] = ACTIONS(3254), - [anon_sym_insert] = ACTIONS(3254), - [anon_sym_async] = ACTIONS(3254), - [anon_sym_PIPE] = ACTIONS(3254), - [anon_sym_table] = ACTIONS(3254), - [anon_sym_assert] = ACTIONS(3254), - [anon_sym_assert_equal] = ACTIONS(3254), - [anon_sym_download] = ACTIONS(3254), - [anon_sym_help] = ACTIONS(3254), - [anon_sym_length] = ACTIONS(3254), - [anon_sym_output] = ACTIONS(3254), - [anon_sym_output_error] = ACTIONS(3254), - [anon_sym_type] = ACTIONS(3254), - [anon_sym_append] = ACTIONS(3254), - [anon_sym_metadata] = ACTIONS(3254), - [anon_sym_move] = ACTIONS(3254), - [anon_sym_read] = ACTIONS(3254), - [anon_sym_workdir] = ACTIONS(3254), - [anon_sym_write] = ACTIONS(3254), - [anon_sym_from_json] = ACTIONS(3254), - [anon_sym_to_json] = ACTIONS(3254), - [anon_sym_to_string] = ACTIONS(3254), - [anon_sym_to_float] = ACTIONS(3254), - [anon_sym_bash] = ACTIONS(3254), - [anon_sym_fish] = ACTIONS(3254), - [anon_sym_raw] = ACTIONS(3254), - [anon_sym_sh] = ACTIONS(3254), - [anon_sym_zsh] = ACTIONS(3254), - [anon_sym_random] = ACTIONS(3254), - [anon_sym_random_boolean] = ACTIONS(3254), - [anon_sym_random_float] = ACTIONS(3254), - [anon_sym_random_integer] = ACTIONS(3254), - [anon_sym_columns] = ACTIONS(3254), - [anon_sym_rows] = ACTIONS(3254), - [anon_sym_reverse] = ACTIONS(3254), - }, - [591] = { - [sym_math_operator] = STATE(1376), - [sym_logic_operator] = STATE(1377), - [ts_builtin_sym_end] = ACTIONS(3233), - [sym_identifier] = ACTIONS(3235), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3233), - [anon_sym_RBRACE] = ACTIONS(3233), - [anon_sym_SEMI] = ACTIONS(3233), - [anon_sym_LPAREN] = ACTIONS(3233), - [anon_sym_RPAREN] = ACTIONS(3233), - [anon_sym_COMMA] = ACTIONS(3294), - [sym_integer] = ACTIONS(3235), - [sym_float] = ACTIONS(3233), - [sym_string] = ACTIONS(3233), - [anon_sym_true] = ACTIONS(3235), - [anon_sym_false] = ACTIONS(3235), - [anon_sym_LBRACK] = ACTIONS(3233), - [anon_sym_EQ] = ACTIONS(3235), - [anon_sym_COLON] = ACTIONS(115), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_PLUS_EQ] = ACTIONS(3233), - [anon_sym_DASH_EQ] = ACTIONS(3233), - [anon_sym_if] = ACTIONS(3235), - [anon_sym_elseif] = ACTIONS(3233), - [anon_sym_else] = ACTIONS(3235), - [anon_sym_match] = ACTIONS(3235), - [anon_sym_EQ_GT] = ACTIONS(3233), - [anon_sym_while] = ACTIONS(3235), - [anon_sym_for] = ACTIONS(3235), - [anon_sym_asyncfor] = ACTIONS(3233), - [anon_sym_transform] = ACTIONS(3235), - [anon_sym_filter] = ACTIONS(3235), - [anon_sym_find] = ACTIONS(3235), - [anon_sym_remove] = ACTIONS(3235), - [anon_sym_reduce] = ACTIONS(3235), - [anon_sym_select] = ACTIONS(3235), - [anon_sym_insert] = ACTIONS(3235), - [anon_sym_async] = ACTIONS(3235), - [anon_sym_PIPE] = ACTIONS(3235), - [anon_sym_table] = ACTIONS(3235), - [anon_sym_assert] = ACTIONS(3235), - [anon_sym_assert_equal] = ACTIONS(3235), - [anon_sym_download] = ACTIONS(3235), - [anon_sym_help] = ACTIONS(3235), - [anon_sym_length] = ACTIONS(3235), - [anon_sym_output] = ACTIONS(3235), - [anon_sym_output_error] = ACTIONS(3235), - [anon_sym_type] = ACTIONS(3235), - [anon_sym_append] = ACTIONS(3235), - [anon_sym_metadata] = ACTIONS(3235), - [anon_sym_move] = ACTIONS(3235), - [anon_sym_read] = ACTIONS(3235), - [anon_sym_workdir] = ACTIONS(3235), - [anon_sym_write] = ACTIONS(3235), - [anon_sym_from_json] = ACTIONS(3235), - [anon_sym_to_json] = ACTIONS(3235), - [anon_sym_to_string] = ACTIONS(3235), - [anon_sym_to_float] = ACTIONS(3235), - [anon_sym_bash] = ACTIONS(3235), - [anon_sym_fish] = ACTIONS(3235), - [anon_sym_raw] = ACTIONS(3235), - [anon_sym_sh] = ACTIONS(3235), - [anon_sym_zsh] = ACTIONS(3235), - [anon_sym_random] = ACTIONS(3235), - [anon_sym_random_boolean] = ACTIONS(3235), - [anon_sym_random_float] = ACTIONS(3235), - [anon_sym_random_integer] = ACTIONS(3235), - [anon_sym_columns] = ACTIONS(3235), - [anon_sym_rows] = ACTIONS(3235), - [anon_sym_reverse] = ACTIONS(3235), - }, - [592] = { - [ts_builtin_sym_end] = ACTIONS(3275), - [sym_identifier] = ACTIONS(3277), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3275), - [anon_sym_RBRACE] = ACTIONS(3275), - [anon_sym_SEMI] = ACTIONS(3279), - [anon_sym_LPAREN] = ACTIONS(3275), - [anon_sym_RPAREN] = ACTIONS(3275), - [anon_sym_COMMA] = ACTIONS(3275), - [sym_integer] = ACTIONS(3277), - [sym_float] = ACTIONS(3275), - [sym_string] = ACTIONS(3275), - [anon_sym_true] = ACTIONS(3277), - [anon_sym_false] = ACTIONS(3277), - [anon_sym_LBRACK] = ACTIONS(3275), - [anon_sym_RBRACK] = ACTIONS(3275), - [anon_sym_EQ] = ACTIONS(3277), - [anon_sym_COLON] = ACTIONS(3275), - [anon_sym_DOT_DOT] = ACTIONS(3275), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3275), - [anon_sym_SLASH] = ACTIONS(3275), - [anon_sym_PERCENT] = ACTIONS(3275), - [anon_sym_EQ_EQ] = ACTIONS(3275), - [anon_sym_BANG_EQ] = ACTIONS(3275), - [anon_sym_AMP_AMP] = ACTIONS(3275), - [anon_sym_PIPE_PIPE] = ACTIONS(3275), - [anon_sym_GT] = ACTIONS(3277), - [anon_sym_LT] = ACTIONS(3277), - [anon_sym_GT_EQ] = ACTIONS(3275), - [anon_sym_LT_EQ] = ACTIONS(3275), - [anon_sym_PLUS_EQ] = ACTIONS(3275), - [anon_sym_DASH_EQ] = ACTIONS(3275), - [anon_sym_if] = ACTIONS(3277), - [anon_sym_elseif] = ACTIONS(3275), - [anon_sym_else] = ACTIONS(3277), - [anon_sym_match] = ACTIONS(3277), - [anon_sym_EQ_GT] = ACTIONS(3275), - [anon_sym_while] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3277), - [anon_sym_asyncfor] = ACTIONS(3275), - [anon_sym_transform] = ACTIONS(3277), - [anon_sym_filter] = ACTIONS(3277), - [anon_sym_find] = ACTIONS(3277), - [anon_sym_remove] = ACTIONS(3277), - [anon_sym_reduce] = ACTIONS(3277), - [anon_sym_select] = ACTIONS(3277), - [anon_sym_insert] = ACTIONS(3277), - [anon_sym_async] = ACTIONS(3277), - [anon_sym_PIPE] = ACTIONS(3277), - [anon_sym_table] = ACTIONS(3277), - [anon_sym_assert] = ACTIONS(3277), - [anon_sym_assert_equal] = ACTIONS(3277), - [anon_sym_download] = ACTIONS(3277), - [anon_sym_help] = ACTIONS(3277), - [anon_sym_length] = ACTIONS(3277), - [anon_sym_output] = ACTIONS(3277), - [anon_sym_output_error] = ACTIONS(3277), - [anon_sym_type] = ACTIONS(3277), - [anon_sym_append] = ACTIONS(3277), - [anon_sym_metadata] = ACTIONS(3277), - [anon_sym_move] = ACTIONS(3277), - [anon_sym_read] = ACTIONS(3277), - [anon_sym_workdir] = ACTIONS(3277), - [anon_sym_write] = ACTIONS(3277), - [anon_sym_from_json] = ACTIONS(3277), - [anon_sym_to_json] = ACTIONS(3277), - [anon_sym_to_string] = ACTIONS(3277), - [anon_sym_to_float] = ACTIONS(3277), - [anon_sym_bash] = ACTIONS(3277), - [anon_sym_fish] = ACTIONS(3277), - [anon_sym_raw] = ACTIONS(3277), - [anon_sym_sh] = ACTIONS(3277), - [anon_sym_zsh] = ACTIONS(3277), - [anon_sym_random] = ACTIONS(3277), - [anon_sym_random_boolean] = ACTIONS(3277), - [anon_sym_random_float] = ACTIONS(3277), - [anon_sym_random_integer] = ACTIONS(3277), - [anon_sym_columns] = ACTIONS(3277), - [anon_sym_rows] = ACTIONS(3277), - [anon_sym_reverse] = ACTIONS(3277), - }, - [593] = { - [sym_math_operator] = STATE(1414), - [sym_logic_operator] = STATE(1413), - [ts_builtin_sym_end] = ACTIONS(3275), - [sym_identifier] = ACTIONS(3277), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3275), - [anon_sym_RBRACE] = ACTIONS(3275), - [anon_sym_SEMI] = ACTIONS(3279), - [anon_sym_LPAREN] = ACTIONS(3275), - [anon_sym_RPAREN] = ACTIONS(3275), - [sym_integer] = ACTIONS(3277), - [sym_float] = ACTIONS(3275), - [sym_string] = ACTIONS(3275), - [anon_sym_true] = ACTIONS(3277), - [anon_sym_false] = ACTIONS(3277), - [anon_sym_LBRACK] = ACTIONS(3275), - [anon_sym_EQ] = ACTIONS(3277), - [anon_sym_COLON] = ACTIONS(195), - [anon_sym_DOT_DOT] = ACTIONS(3275), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_PLUS_EQ] = ACTIONS(3275), - [anon_sym_DASH_EQ] = ACTIONS(3275), - [anon_sym_if] = ACTIONS(3277), - [anon_sym_elseif] = ACTIONS(3275), - [anon_sym_else] = ACTIONS(3277), - [anon_sym_match] = ACTIONS(3277), - [anon_sym_EQ_GT] = ACTIONS(3275), - [anon_sym_while] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3277), - [anon_sym_asyncfor] = ACTIONS(3275), - [anon_sym_transform] = ACTIONS(3277), - [anon_sym_filter] = ACTIONS(3277), - [anon_sym_find] = ACTIONS(3277), - [anon_sym_remove] = ACTIONS(3277), - [anon_sym_reduce] = ACTIONS(3277), - [anon_sym_select] = ACTIONS(3277), - [anon_sym_insert] = ACTIONS(3277), - [anon_sym_async] = ACTIONS(3277), - [anon_sym_PIPE] = ACTIONS(3277), - [anon_sym_table] = ACTIONS(3277), - [anon_sym_assert] = ACTIONS(3277), - [anon_sym_assert_equal] = ACTIONS(3277), - [anon_sym_download] = ACTIONS(3277), - [anon_sym_help] = ACTIONS(3277), - [anon_sym_length] = ACTIONS(3277), - [anon_sym_output] = ACTIONS(3277), - [anon_sym_output_error] = ACTIONS(3277), - [anon_sym_type] = ACTIONS(3277), - [anon_sym_append] = ACTIONS(3277), - [anon_sym_metadata] = ACTIONS(3277), - [anon_sym_move] = ACTIONS(3277), - [anon_sym_read] = ACTIONS(3277), - [anon_sym_workdir] = ACTIONS(3277), - [anon_sym_write] = ACTIONS(3277), - [anon_sym_from_json] = ACTIONS(3277), - [anon_sym_to_json] = ACTIONS(3277), - [anon_sym_to_string] = ACTIONS(3277), - [anon_sym_to_float] = ACTIONS(3277), - [anon_sym_bash] = ACTIONS(3277), - [anon_sym_fish] = ACTIONS(3277), - [anon_sym_raw] = ACTIONS(3277), - [anon_sym_sh] = ACTIONS(3277), - [anon_sym_zsh] = ACTIONS(3277), - [anon_sym_random] = ACTIONS(3277), - [anon_sym_random_boolean] = ACTIONS(3277), - [anon_sym_random_float] = ACTIONS(3277), - [anon_sym_random_integer] = ACTIONS(3277), - [anon_sym_columns] = ACTIONS(3277), - [anon_sym_rows] = ACTIONS(3277), - [anon_sym_reverse] = ACTIONS(3277), - }, - [594] = { - [sym_else_if] = STATE(594), - [aux_sym_if_else_repeat1] = STATE(594), - [ts_builtin_sym_end] = ACTIONS(3268), - [sym_identifier] = ACTIONS(3270), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(3268), - [anon_sym_SEMI] = ACTIONS(3268), - [anon_sym_LPAREN] = ACTIONS(3268), - [anon_sym_RPAREN] = ACTIONS(3268), - [sym_integer] = ACTIONS(3270), - [sym_float] = ACTIONS(3268), - [sym_string] = ACTIONS(3268), - [anon_sym_true] = ACTIONS(3270), - [anon_sym_false] = ACTIONS(3270), - [anon_sym_LBRACK] = ACTIONS(3268), - [anon_sym_EQ] = ACTIONS(3270), - [anon_sym_COLON] = ACTIONS(3268), - [anon_sym_DOT_DOT] = ACTIONS(3268), - [anon_sym_PLUS] = ACTIONS(3270), - [anon_sym_DASH] = ACTIONS(3270), - [anon_sym_STAR] = ACTIONS(3268), - [anon_sym_SLASH] = ACTIONS(3268), - [anon_sym_PERCENT] = ACTIONS(3268), - [anon_sym_EQ_EQ] = ACTIONS(3268), - [anon_sym_BANG_EQ] = ACTIONS(3268), - [anon_sym_AMP_AMP] = ACTIONS(3268), - [anon_sym_PIPE_PIPE] = ACTIONS(3268), - [anon_sym_GT] = ACTIONS(3270), - [anon_sym_LT] = ACTIONS(3270), - [anon_sym_GT_EQ] = ACTIONS(3268), - [anon_sym_LT_EQ] = ACTIONS(3268), - [anon_sym_PLUS_EQ] = ACTIONS(3268), - [anon_sym_DASH_EQ] = ACTIONS(3268), - [anon_sym_if] = ACTIONS(3270), - [anon_sym_elseif] = ACTIONS(3300), - [anon_sym_else] = ACTIONS(3270), - [anon_sym_match] = ACTIONS(3270), - [anon_sym_EQ_GT] = ACTIONS(3268), - [anon_sym_while] = ACTIONS(3270), - [anon_sym_for] = ACTIONS(3270), - [anon_sym_asyncfor] = ACTIONS(3268), - [anon_sym_transform] = ACTIONS(3270), - [anon_sym_filter] = ACTIONS(3270), - [anon_sym_find] = ACTIONS(3270), - [anon_sym_remove] = ACTIONS(3270), - [anon_sym_reduce] = ACTIONS(3270), - [anon_sym_select] = ACTIONS(3270), - [anon_sym_insert] = ACTIONS(3270), - [anon_sym_async] = ACTIONS(3270), - [anon_sym_PIPE] = ACTIONS(3270), - [anon_sym_table] = ACTIONS(3270), - [anon_sym_assert] = ACTIONS(3270), - [anon_sym_assert_equal] = ACTIONS(3270), - [anon_sym_download] = ACTIONS(3270), - [anon_sym_help] = ACTIONS(3270), - [anon_sym_length] = ACTIONS(3270), - [anon_sym_output] = ACTIONS(3270), - [anon_sym_output_error] = ACTIONS(3270), - [anon_sym_type] = ACTIONS(3270), - [anon_sym_append] = ACTIONS(3270), - [anon_sym_metadata] = ACTIONS(3270), - [anon_sym_move] = ACTIONS(3270), - [anon_sym_read] = ACTIONS(3270), - [anon_sym_workdir] = ACTIONS(3270), - [anon_sym_write] = ACTIONS(3270), - [anon_sym_from_json] = ACTIONS(3270), - [anon_sym_to_json] = ACTIONS(3270), - [anon_sym_to_string] = ACTIONS(3270), - [anon_sym_to_float] = ACTIONS(3270), - [anon_sym_bash] = ACTIONS(3270), - [anon_sym_fish] = ACTIONS(3270), - [anon_sym_raw] = ACTIONS(3270), - [anon_sym_sh] = ACTIONS(3270), - [anon_sym_zsh] = ACTIONS(3270), - [anon_sym_random] = ACTIONS(3270), - [anon_sym_random_boolean] = ACTIONS(3270), - [anon_sym_random_float] = ACTIONS(3270), - [anon_sym_random_integer] = ACTIONS(3270), - [anon_sym_columns] = ACTIONS(3270), - [anon_sym_rows] = ACTIONS(3270), - [anon_sym_reverse] = ACTIONS(3270), - }, - [595] = { - [ts_builtin_sym_end] = ACTIONS(3229), - [sym_identifier] = ACTIONS(3231), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3229), - [anon_sym_RBRACE] = ACTIONS(3229), - [anon_sym_SEMI] = ACTIONS(3229), - [anon_sym_LPAREN] = ACTIONS(3229), - [anon_sym_RPAREN] = ACTIONS(3229), - [anon_sym_COMMA] = ACTIONS(3229), - [sym_integer] = ACTIONS(3231), - [sym_float] = ACTIONS(3229), - [sym_string] = ACTIONS(3229), - [anon_sym_true] = ACTIONS(3231), - [anon_sym_false] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3229), - [anon_sym_RBRACK] = ACTIONS(3229), - [anon_sym_EQ] = ACTIONS(3231), - [anon_sym_COLON] = ACTIONS(3229), - [anon_sym_DOT_DOT] = ACTIONS(3229), - [anon_sym_PLUS] = ACTIONS(3231), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_SLASH] = ACTIONS(3229), - [anon_sym_PERCENT] = ACTIONS(3229), - [anon_sym_EQ_EQ] = ACTIONS(3229), - [anon_sym_BANG_EQ] = ACTIONS(3229), - [anon_sym_AMP_AMP] = ACTIONS(3229), - [anon_sym_PIPE_PIPE] = ACTIONS(3229), - [anon_sym_GT] = ACTIONS(3231), - [anon_sym_LT] = ACTIONS(3231), - [anon_sym_GT_EQ] = ACTIONS(3229), - [anon_sym_LT_EQ] = ACTIONS(3229), - [anon_sym_PLUS_EQ] = ACTIONS(3229), - [anon_sym_DASH_EQ] = ACTIONS(3229), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_elseif] = ACTIONS(3229), - [anon_sym_else] = ACTIONS(3231), - [anon_sym_match] = ACTIONS(3231), - [anon_sym_EQ_GT] = ACTIONS(3229), - [anon_sym_while] = ACTIONS(3231), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_asyncfor] = ACTIONS(3229), - [anon_sym_transform] = ACTIONS(3231), - [anon_sym_filter] = ACTIONS(3231), - [anon_sym_find] = ACTIONS(3231), - [anon_sym_remove] = ACTIONS(3231), - [anon_sym_reduce] = ACTIONS(3231), - [anon_sym_select] = ACTIONS(3231), - [anon_sym_insert] = ACTIONS(3231), - [anon_sym_async] = ACTIONS(3231), - [anon_sym_PIPE] = ACTIONS(3231), - [anon_sym_table] = ACTIONS(3231), - [anon_sym_assert] = ACTIONS(3231), - [anon_sym_assert_equal] = ACTIONS(3231), - [anon_sym_download] = ACTIONS(3231), - [anon_sym_help] = ACTIONS(3231), - [anon_sym_length] = ACTIONS(3231), - [anon_sym_output] = ACTIONS(3231), - [anon_sym_output_error] = ACTIONS(3231), - [anon_sym_type] = ACTIONS(3231), - [anon_sym_append] = ACTIONS(3231), - [anon_sym_metadata] = ACTIONS(3231), - [anon_sym_move] = ACTIONS(3231), - [anon_sym_read] = ACTIONS(3231), - [anon_sym_workdir] = ACTIONS(3231), - [anon_sym_write] = ACTIONS(3231), - [anon_sym_from_json] = ACTIONS(3231), - [anon_sym_to_json] = ACTIONS(3231), - [anon_sym_to_string] = ACTIONS(3231), - [anon_sym_to_float] = ACTIONS(3231), - [anon_sym_bash] = ACTIONS(3231), - [anon_sym_fish] = ACTIONS(3231), - [anon_sym_raw] = ACTIONS(3231), - [anon_sym_sh] = ACTIONS(3231), - [anon_sym_zsh] = ACTIONS(3231), - [anon_sym_random] = ACTIONS(3231), - [anon_sym_random_boolean] = ACTIONS(3231), - [anon_sym_random_float] = ACTIONS(3231), - [anon_sym_random_integer] = ACTIONS(3231), - [anon_sym_columns] = ACTIONS(3231), - [anon_sym_rows] = ACTIONS(3231), - [anon_sym_reverse] = ACTIONS(3231), - }, - [596] = { - [ts_builtin_sym_end] = ACTIONS(3303), - [sym_identifier] = ACTIONS(3305), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3303), - [anon_sym_RBRACE] = ACTIONS(3303), - [anon_sym_SEMI] = ACTIONS(3303), - [anon_sym_LPAREN] = ACTIONS(3303), - [anon_sym_RPAREN] = ACTIONS(3303), - [anon_sym_COMMA] = ACTIONS(3303), - [sym_integer] = ACTIONS(3305), - [sym_float] = ACTIONS(3303), - [sym_string] = ACTIONS(3303), - [anon_sym_true] = ACTIONS(3305), - [anon_sym_false] = ACTIONS(3305), - [anon_sym_LBRACK] = ACTIONS(3303), - [anon_sym_RBRACK] = ACTIONS(3303), - [anon_sym_EQ] = ACTIONS(3305), - [anon_sym_COLON] = ACTIONS(3303), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [anon_sym_PLUS] = ACTIONS(3305), - [anon_sym_DASH] = ACTIONS(3305), - [anon_sym_STAR] = ACTIONS(3303), - [anon_sym_SLASH] = ACTIONS(3303), - [anon_sym_PERCENT] = ACTIONS(3303), - [anon_sym_EQ_EQ] = ACTIONS(3303), - [anon_sym_BANG_EQ] = ACTIONS(3303), - [anon_sym_AMP_AMP] = ACTIONS(3303), - [anon_sym_PIPE_PIPE] = ACTIONS(3303), - [anon_sym_GT] = ACTIONS(3305), - [anon_sym_LT] = ACTIONS(3305), - [anon_sym_GT_EQ] = ACTIONS(3303), - [anon_sym_LT_EQ] = ACTIONS(3303), - [anon_sym_PLUS_EQ] = ACTIONS(3303), - [anon_sym_DASH_EQ] = ACTIONS(3303), - [anon_sym_if] = ACTIONS(3305), - [anon_sym_elseif] = ACTIONS(3303), - [anon_sym_else] = ACTIONS(3305), - [anon_sym_match] = ACTIONS(3305), - [anon_sym_EQ_GT] = ACTIONS(3303), - [anon_sym_while] = ACTIONS(3305), - [anon_sym_for] = ACTIONS(3305), - [anon_sym_asyncfor] = ACTIONS(3303), - [anon_sym_transform] = ACTIONS(3305), - [anon_sym_filter] = ACTIONS(3305), - [anon_sym_find] = ACTIONS(3305), - [anon_sym_remove] = ACTIONS(3305), - [anon_sym_reduce] = ACTIONS(3305), - [anon_sym_select] = ACTIONS(3305), - [anon_sym_insert] = ACTIONS(3305), - [anon_sym_async] = ACTIONS(3305), - [anon_sym_PIPE] = ACTIONS(3305), - [anon_sym_table] = ACTIONS(3305), - [anon_sym_assert] = ACTIONS(3305), - [anon_sym_assert_equal] = ACTIONS(3305), - [anon_sym_download] = ACTIONS(3305), - [anon_sym_help] = ACTIONS(3305), - [anon_sym_length] = ACTIONS(3305), - [anon_sym_output] = ACTIONS(3305), - [anon_sym_output_error] = ACTIONS(3305), - [anon_sym_type] = ACTIONS(3305), - [anon_sym_append] = ACTIONS(3305), - [anon_sym_metadata] = ACTIONS(3305), - [anon_sym_move] = ACTIONS(3305), - [anon_sym_read] = ACTIONS(3305), - [anon_sym_workdir] = ACTIONS(3305), - [anon_sym_write] = ACTIONS(3305), - [anon_sym_from_json] = ACTIONS(3305), - [anon_sym_to_json] = ACTIONS(3305), - [anon_sym_to_string] = ACTIONS(3305), - [anon_sym_to_float] = ACTIONS(3305), - [anon_sym_bash] = ACTIONS(3305), - [anon_sym_fish] = ACTIONS(3305), - [anon_sym_raw] = ACTIONS(3305), - [anon_sym_sh] = ACTIONS(3305), - [anon_sym_zsh] = ACTIONS(3305), - [anon_sym_random] = ACTIONS(3305), - [anon_sym_random_boolean] = ACTIONS(3305), - [anon_sym_random_float] = ACTIONS(3305), - [anon_sym_random_integer] = ACTIONS(3305), - [anon_sym_columns] = ACTIONS(3305), - [anon_sym_rows] = ACTIONS(3305), - [anon_sym_reverse] = ACTIONS(3305), - }, - [597] = { - [sym_math_operator] = STATE(1316), - [sym_logic_operator] = STATE(1285), - [ts_builtin_sym_end] = ACTIONS(3281), - [sym_identifier] = ACTIONS(3283), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3281), - [anon_sym_RBRACE] = ACTIONS(3281), - [anon_sym_SEMI] = ACTIONS(3281), - [anon_sym_LPAREN] = ACTIONS(3281), - [anon_sym_RPAREN] = ACTIONS(3281), - [anon_sym_COMMA] = ACTIONS(3281), - [sym_integer] = ACTIONS(3283), - [sym_float] = ACTIONS(3281), - [sym_string] = ACTIONS(3281), - [anon_sym_true] = ACTIONS(3283), - [anon_sym_false] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3281), - [anon_sym_RBRACK] = ACTIONS(3281), - [anon_sym_EQ] = ACTIONS(3283), - [anon_sym_COLON] = ACTIONS(163), - [anon_sym_DOT_DOT] = ACTIONS(3281), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_PLUS_EQ] = ACTIONS(3281), - [anon_sym_DASH_EQ] = ACTIONS(3281), - [anon_sym_if] = ACTIONS(3283), - [anon_sym_match] = ACTIONS(3283), - [anon_sym_EQ_GT] = ACTIONS(3281), - [anon_sym_while] = ACTIONS(3283), - [anon_sym_for] = ACTIONS(3283), - [anon_sym_asyncfor] = ACTIONS(3281), - [anon_sym_transform] = ACTIONS(3283), - [anon_sym_filter] = ACTIONS(3283), - [anon_sym_find] = ACTIONS(3283), - [anon_sym_remove] = ACTIONS(3283), - [anon_sym_reduce] = ACTIONS(3283), - [anon_sym_select] = ACTIONS(3283), - [anon_sym_insert] = ACTIONS(3283), - [anon_sym_async] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(3283), - [anon_sym_table] = ACTIONS(3283), - [anon_sym_assert] = ACTIONS(3283), - [anon_sym_assert_equal] = ACTIONS(3283), - [anon_sym_download] = ACTIONS(3283), - [anon_sym_help] = ACTIONS(3283), - [anon_sym_length] = ACTIONS(3283), - [anon_sym_output] = ACTIONS(3283), - [anon_sym_output_error] = ACTIONS(3283), - [anon_sym_type] = ACTIONS(3283), - [anon_sym_append] = ACTIONS(3283), - [anon_sym_metadata] = ACTIONS(3283), - [anon_sym_move] = ACTIONS(3283), - [anon_sym_read] = ACTIONS(3283), - [anon_sym_workdir] = ACTIONS(3283), - [anon_sym_write] = ACTIONS(3283), - [anon_sym_from_json] = ACTIONS(3283), - [anon_sym_to_json] = ACTIONS(3283), - [anon_sym_to_string] = ACTIONS(3283), - [anon_sym_to_float] = ACTIONS(3283), - [anon_sym_bash] = ACTIONS(3283), - [anon_sym_fish] = ACTIONS(3283), - [anon_sym_raw] = ACTIONS(3283), - [anon_sym_sh] = ACTIONS(3283), - [anon_sym_zsh] = ACTIONS(3283), - [anon_sym_random] = ACTIONS(3283), - [anon_sym_random_boolean] = ACTIONS(3283), - [anon_sym_random_float] = ACTIONS(3283), - [anon_sym_random_integer] = ACTIONS(3283), - [anon_sym_columns] = ACTIONS(3283), - [anon_sym_rows] = ACTIONS(3283), - [anon_sym_reverse] = ACTIONS(3283), - }, - [598] = { - [ts_builtin_sym_end] = ACTIONS(3307), - [sym_identifier] = ACTIONS(3309), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3307), - [anon_sym_RBRACE] = ACTIONS(3307), - [anon_sym_SEMI] = ACTIONS(3307), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_RPAREN] = ACTIONS(3307), - [anon_sym_COMMA] = ACTIONS(3307), - [sym_integer] = ACTIONS(3309), - [sym_float] = ACTIONS(3307), - [sym_string] = ACTIONS(3307), - [anon_sym_true] = ACTIONS(3309), - [anon_sym_false] = ACTIONS(3309), - [anon_sym_LBRACK] = ACTIONS(3307), - [anon_sym_RBRACK] = ACTIONS(3307), - [anon_sym_EQ] = ACTIONS(3309), - [anon_sym_COLON] = ACTIONS(3307), - [anon_sym_DOT_DOT] = ACTIONS(3307), - [anon_sym_PLUS] = ACTIONS(3309), - [anon_sym_DASH] = ACTIONS(3309), - [anon_sym_STAR] = ACTIONS(3307), - [anon_sym_SLASH] = ACTIONS(3307), - [anon_sym_PERCENT] = ACTIONS(3307), - [anon_sym_EQ_EQ] = ACTIONS(3307), - [anon_sym_BANG_EQ] = ACTIONS(3307), - [anon_sym_AMP_AMP] = ACTIONS(3307), - [anon_sym_PIPE_PIPE] = ACTIONS(3307), - [anon_sym_GT] = ACTIONS(3309), - [anon_sym_LT] = ACTIONS(3309), - [anon_sym_GT_EQ] = ACTIONS(3307), - [anon_sym_LT_EQ] = ACTIONS(3307), - [anon_sym_PLUS_EQ] = ACTIONS(3307), - [anon_sym_DASH_EQ] = ACTIONS(3307), - [anon_sym_if] = ACTIONS(3309), - [anon_sym_elseif] = ACTIONS(3307), - [anon_sym_else] = ACTIONS(3309), - [anon_sym_match] = ACTIONS(3309), - [anon_sym_EQ_GT] = ACTIONS(3307), - [anon_sym_while] = ACTIONS(3309), - [anon_sym_for] = ACTIONS(3309), - [anon_sym_asyncfor] = ACTIONS(3307), - [anon_sym_transform] = ACTIONS(3309), - [anon_sym_filter] = ACTIONS(3309), - [anon_sym_find] = ACTIONS(3309), - [anon_sym_remove] = ACTIONS(3309), - [anon_sym_reduce] = ACTIONS(3309), - [anon_sym_select] = ACTIONS(3309), - [anon_sym_insert] = ACTIONS(3309), - [anon_sym_async] = ACTIONS(3309), - [anon_sym_PIPE] = ACTIONS(3309), - [anon_sym_table] = ACTIONS(3309), - [anon_sym_assert] = ACTIONS(3309), - [anon_sym_assert_equal] = ACTIONS(3309), - [anon_sym_download] = ACTIONS(3309), - [anon_sym_help] = ACTIONS(3309), - [anon_sym_length] = ACTIONS(3309), - [anon_sym_output] = ACTIONS(3309), - [anon_sym_output_error] = ACTIONS(3309), - [anon_sym_type] = ACTIONS(3309), - [anon_sym_append] = ACTIONS(3309), - [anon_sym_metadata] = ACTIONS(3309), - [anon_sym_move] = ACTIONS(3309), - [anon_sym_read] = ACTIONS(3309), - [anon_sym_workdir] = ACTIONS(3309), - [anon_sym_write] = ACTIONS(3309), - [anon_sym_from_json] = ACTIONS(3309), - [anon_sym_to_json] = ACTIONS(3309), - [anon_sym_to_string] = ACTIONS(3309), - [anon_sym_to_float] = ACTIONS(3309), - [anon_sym_bash] = ACTIONS(3309), - [anon_sym_fish] = ACTIONS(3309), - [anon_sym_raw] = ACTIONS(3309), - [anon_sym_sh] = ACTIONS(3309), - [anon_sym_zsh] = ACTIONS(3309), - [anon_sym_random] = ACTIONS(3309), - [anon_sym_random_boolean] = ACTIONS(3309), - [anon_sym_random_float] = ACTIONS(3309), - [anon_sym_random_integer] = ACTIONS(3309), - [anon_sym_columns] = ACTIONS(3309), - [anon_sym_rows] = ACTIONS(3309), - [anon_sym_reverse] = ACTIONS(3309), - }, - [599] = { - [sym_math_operator] = STATE(1414), - [sym_logic_operator] = STATE(1413), - [ts_builtin_sym_end] = ACTIONS(3244), - [sym_identifier] = ACTIONS(3246), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_RBRACE] = ACTIONS(3244), - [anon_sym_SEMI] = ACTIONS(3244), - [anon_sym_LPAREN] = ACTIONS(3244), - [anon_sym_RPAREN] = ACTIONS(3244), - [sym_integer] = ACTIONS(3246), - [sym_float] = ACTIONS(3244), - [sym_string] = ACTIONS(3244), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_LBRACK] = ACTIONS(3244), - [anon_sym_EQ] = ACTIONS(3246), - [anon_sym_COLON] = ACTIONS(195), - [anon_sym_DOT_DOT] = ACTIONS(3244), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_PLUS_EQ] = ACTIONS(3244), - [anon_sym_DASH_EQ] = ACTIONS(3244), - [anon_sym_if] = ACTIONS(3246), - [anon_sym_elseif] = ACTIONS(3244), - [anon_sym_else] = ACTIONS(3246), - [anon_sym_match] = ACTIONS(3246), - [anon_sym_EQ_GT] = ACTIONS(3244), - [anon_sym_while] = ACTIONS(3246), - [anon_sym_for] = ACTIONS(3246), - [anon_sym_asyncfor] = ACTIONS(3244), - [anon_sym_transform] = ACTIONS(3246), - [anon_sym_filter] = ACTIONS(3246), - [anon_sym_find] = ACTIONS(3246), - [anon_sym_remove] = ACTIONS(3246), - [anon_sym_reduce] = ACTIONS(3246), - [anon_sym_select] = ACTIONS(3246), - [anon_sym_insert] = ACTIONS(3246), - [anon_sym_async] = ACTIONS(3246), - [anon_sym_PIPE] = ACTIONS(3246), - [anon_sym_table] = ACTIONS(3246), - [anon_sym_assert] = ACTIONS(3246), - [anon_sym_assert_equal] = ACTIONS(3246), - [anon_sym_download] = ACTIONS(3246), - [anon_sym_help] = ACTIONS(3246), - [anon_sym_length] = ACTIONS(3246), - [anon_sym_output] = ACTIONS(3246), - [anon_sym_output_error] = ACTIONS(3246), - [anon_sym_type] = ACTIONS(3246), - [anon_sym_append] = ACTIONS(3246), - [anon_sym_metadata] = ACTIONS(3246), - [anon_sym_move] = ACTIONS(3246), - [anon_sym_read] = ACTIONS(3246), - [anon_sym_workdir] = ACTIONS(3246), - [anon_sym_write] = ACTIONS(3246), - [anon_sym_from_json] = ACTIONS(3246), - [anon_sym_to_json] = ACTIONS(3246), - [anon_sym_to_string] = ACTIONS(3246), - [anon_sym_to_float] = ACTIONS(3246), - [anon_sym_bash] = ACTIONS(3246), - [anon_sym_fish] = ACTIONS(3246), - [anon_sym_raw] = ACTIONS(3246), - [anon_sym_sh] = ACTIONS(3246), - [anon_sym_zsh] = ACTIONS(3246), - [anon_sym_random] = ACTIONS(3246), - [anon_sym_random_boolean] = ACTIONS(3246), - [anon_sym_random_float] = ACTIONS(3246), - [anon_sym_random_integer] = ACTIONS(3246), - [anon_sym_columns] = ACTIONS(3246), - [anon_sym_rows] = ACTIONS(3246), - [anon_sym_reverse] = ACTIONS(3246), - }, - [600] = { - [sym_else_if] = STATE(656), - [sym_else] = STATE(605), - [aux_sym_if_else_repeat1] = STATE(656), - [ts_builtin_sym_end] = ACTIONS(3229), - [sym_identifier] = ACTIONS(3231), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3229), - [anon_sym_RBRACE] = ACTIONS(3229), - [anon_sym_SEMI] = ACTIONS(3229), - [anon_sym_LPAREN] = ACTIONS(3229), - [anon_sym_RPAREN] = ACTIONS(3229), - [sym_integer] = ACTIONS(3231), - [sym_float] = ACTIONS(3229), - [sym_string] = ACTIONS(3229), - [anon_sym_true] = ACTIONS(3231), - [anon_sym_false] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3229), - [anon_sym_EQ] = ACTIONS(3231), - [anon_sym_COLON] = ACTIONS(3229), - [anon_sym_PLUS] = ACTIONS(3231), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_SLASH] = ACTIONS(3229), - [anon_sym_PERCENT] = ACTIONS(3229), - [anon_sym_EQ_EQ] = ACTIONS(3229), - [anon_sym_BANG_EQ] = ACTIONS(3229), - [anon_sym_AMP_AMP] = ACTIONS(3229), - [anon_sym_PIPE_PIPE] = ACTIONS(3229), - [anon_sym_GT] = ACTIONS(3231), - [anon_sym_LT] = ACTIONS(3231), - [anon_sym_GT_EQ] = ACTIONS(3229), - [anon_sym_LT_EQ] = ACTIONS(3229), - [anon_sym_PLUS_EQ] = ACTIONS(3229), - [anon_sym_DASH_EQ] = ACTIONS(3229), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_elseif] = ACTIONS(3311), - [anon_sym_else] = ACTIONS(3313), - [anon_sym_match] = ACTIONS(3231), - [anon_sym_EQ_GT] = ACTIONS(3229), - [anon_sym_while] = ACTIONS(3231), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_asyncfor] = ACTIONS(3229), - [anon_sym_transform] = ACTIONS(3231), - [anon_sym_filter] = ACTIONS(3231), - [anon_sym_find] = ACTIONS(3231), - [anon_sym_remove] = ACTIONS(3231), - [anon_sym_reduce] = ACTIONS(3231), - [anon_sym_select] = ACTIONS(3231), - [anon_sym_insert] = ACTIONS(3231), - [anon_sym_async] = ACTIONS(3231), - [anon_sym_PIPE] = ACTIONS(3231), - [anon_sym_table] = ACTIONS(3231), - [anon_sym_assert] = ACTIONS(3231), - [anon_sym_assert_equal] = ACTIONS(3231), - [anon_sym_download] = ACTIONS(3231), - [anon_sym_help] = ACTIONS(3231), - [anon_sym_length] = ACTIONS(3231), - [anon_sym_output] = ACTIONS(3231), - [anon_sym_output_error] = ACTIONS(3231), - [anon_sym_type] = ACTIONS(3231), - [anon_sym_append] = ACTIONS(3231), - [anon_sym_metadata] = ACTIONS(3231), - [anon_sym_move] = ACTIONS(3231), - [anon_sym_read] = ACTIONS(3231), - [anon_sym_workdir] = ACTIONS(3231), - [anon_sym_write] = ACTIONS(3231), - [anon_sym_from_json] = ACTIONS(3231), - [anon_sym_to_json] = ACTIONS(3231), - [anon_sym_to_string] = ACTIONS(3231), - [anon_sym_to_float] = ACTIONS(3231), - [anon_sym_bash] = ACTIONS(3231), - [anon_sym_fish] = ACTIONS(3231), - [anon_sym_raw] = ACTIONS(3231), - [anon_sym_sh] = ACTIONS(3231), - [anon_sym_zsh] = ACTIONS(3231), - [anon_sym_random] = ACTIONS(3231), - [anon_sym_random_boolean] = ACTIONS(3231), - [anon_sym_random_float] = ACTIONS(3231), - [anon_sym_random_integer] = ACTIONS(3231), - [anon_sym_columns] = ACTIONS(3231), - [anon_sym_rows] = ACTIONS(3231), - [anon_sym_reverse] = ACTIONS(3231), - }, - [601] = { - [sym_math_operator] = STATE(1316), - [sym_logic_operator] = STATE(1285), - [ts_builtin_sym_end] = ACTIONS(3275), - [sym_identifier] = ACTIONS(3277), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3275), - [anon_sym_RBRACE] = ACTIONS(3275), - [anon_sym_SEMI] = ACTIONS(3315), - [anon_sym_LPAREN] = ACTIONS(3275), - [anon_sym_RPAREN] = ACTIONS(3275), - [anon_sym_COMMA] = ACTIONS(3275), - [sym_integer] = ACTIONS(3277), - [sym_float] = ACTIONS(3275), - [sym_string] = ACTIONS(3275), - [anon_sym_true] = ACTIONS(3277), - [anon_sym_false] = ACTIONS(3277), - [anon_sym_LBRACK] = ACTIONS(3275), - [anon_sym_RBRACK] = ACTIONS(3275), - [anon_sym_EQ] = ACTIONS(3277), - [anon_sym_COLON] = ACTIONS(163), - [anon_sym_DOT_DOT] = ACTIONS(3275), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_PLUS_EQ] = ACTIONS(3275), - [anon_sym_DASH_EQ] = ACTIONS(3275), - [anon_sym_if] = ACTIONS(3277), - [anon_sym_match] = ACTIONS(3277), - [anon_sym_EQ_GT] = ACTIONS(3275), - [anon_sym_while] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3277), - [anon_sym_asyncfor] = ACTIONS(3275), - [anon_sym_transform] = ACTIONS(3277), - [anon_sym_filter] = ACTIONS(3277), - [anon_sym_find] = ACTIONS(3277), - [anon_sym_remove] = ACTIONS(3277), - [anon_sym_reduce] = ACTIONS(3277), - [anon_sym_select] = ACTIONS(3277), - [anon_sym_insert] = ACTIONS(3277), - [anon_sym_async] = ACTIONS(3277), - [anon_sym_PIPE] = ACTIONS(3277), - [anon_sym_table] = ACTIONS(3277), - [anon_sym_assert] = ACTIONS(3277), - [anon_sym_assert_equal] = ACTIONS(3277), - [anon_sym_download] = ACTIONS(3277), - [anon_sym_help] = ACTIONS(3277), - [anon_sym_length] = ACTIONS(3277), - [anon_sym_output] = ACTIONS(3277), - [anon_sym_output_error] = ACTIONS(3277), - [anon_sym_type] = ACTIONS(3277), - [anon_sym_append] = ACTIONS(3277), - [anon_sym_metadata] = ACTIONS(3277), - [anon_sym_move] = ACTIONS(3277), - [anon_sym_read] = ACTIONS(3277), - [anon_sym_workdir] = ACTIONS(3277), - [anon_sym_write] = ACTIONS(3277), - [anon_sym_from_json] = ACTIONS(3277), - [anon_sym_to_json] = ACTIONS(3277), - [anon_sym_to_string] = ACTIONS(3277), - [anon_sym_to_float] = ACTIONS(3277), - [anon_sym_bash] = ACTIONS(3277), - [anon_sym_fish] = ACTIONS(3277), - [anon_sym_raw] = ACTIONS(3277), - [anon_sym_sh] = ACTIONS(3277), - [anon_sym_zsh] = ACTIONS(3277), - [anon_sym_random] = ACTIONS(3277), - [anon_sym_random_boolean] = ACTIONS(3277), - [anon_sym_random_float] = ACTIONS(3277), - [anon_sym_random_integer] = ACTIONS(3277), - [anon_sym_columns] = ACTIONS(3277), - [anon_sym_rows] = ACTIONS(3277), - [anon_sym_reverse] = ACTIONS(3277), - }, - [602] = { - [sym_math_operator] = STATE(1414), - [sym_logic_operator] = STATE(1413), - [ts_builtin_sym_end] = ACTIONS(3240), - [sym_identifier] = ACTIONS(3242), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3240), - [anon_sym_SEMI] = ACTIONS(3240), - [anon_sym_LPAREN] = ACTIONS(3240), - [anon_sym_RPAREN] = ACTIONS(3240), - [sym_integer] = ACTIONS(3242), - [sym_float] = ACTIONS(3240), - [sym_string] = ACTIONS(3240), - [anon_sym_true] = ACTIONS(3242), - [anon_sym_false] = ACTIONS(3242), - [anon_sym_LBRACK] = ACTIONS(3240), - [anon_sym_EQ] = ACTIONS(3242), - [anon_sym_COLON] = ACTIONS(195), - [anon_sym_DOT_DOT] = ACTIONS(3240), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_PLUS_EQ] = ACTIONS(3240), - [anon_sym_DASH_EQ] = ACTIONS(3240), - [anon_sym_if] = ACTIONS(3242), - [anon_sym_elseif] = ACTIONS(3240), - [anon_sym_else] = ACTIONS(3242), - [anon_sym_match] = ACTIONS(3242), - [anon_sym_EQ_GT] = ACTIONS(3240), - [anon_sym_while] = ACTIONS(3242), - [anon_sym_for] = ACTIONS(3242), - [anon_sym_asyncfor] = ACTIONS(3240), - [anon_sym_transform] = ACTIONS(3242), - [anon_sym_filter] = ACTIONS(3242), - [anon_sym_find] = ACTIONS(3242), - [anon_sym_remove] = ACTIONS(3242), - [anon_sym_reduce] = ACTIONS(3242), - [anon_sym_select] = ACTIONS(3242), - [anon_sym_insert] = ACTIONS(3242), - [anon_sym_async] = ACTIONS(3242), - [anon_sym_PIPE] = ACTIONS(3242), - [anon_sym_table] = ACTIONS(3242), - [anon_sym_assert] = ACTIONS(3242), - [anon_sym_assert_equal] = ACTIONS(3242), - [anon_sym_download] = ACTIONS(3242), - [anon_sym_help] = ACTIONS(3242), - [anon_sym_length] = ACTIONS(3242), - [anon_sym_output] = ACTIONS(3242), - [anon_sym_output_error] = ACTIONS(3242), - [anon_sym_type] = ACTIONS(3242), - [anon_sym_append] = ACTIONS(3242), - [anon_sym_metadata] = ACTIONS(3242), - [anon_sym_move] = ACTIONS(3242), - [anon_sym_read] = ACTIONS(3242), - [anon_sym_workdir] = ACTIONS(3242), - [anon_sym_write] = ACTIONS(3242), - [anon_sym_from_json] = ACTIONS(3242), - [anon_sym_to_json] = ACTIONS(3242), - [anon_sym_to_string] = ACTIONS(3242), - [anon_sym_to_float] = ACTIONS(3242), - [anon_sym_bash] = ACTIONS(3242), - [anon_sym_fish] = ACTIONS(3242), - [anon_sym_raw] = ACTIONS(3242), - [anon_sym_sh] = ACTIONS(3242), - [anon_sym_zsh] = ACTIONS(3242), - [anon_sym_random] = ACTIONS(3242), - [anon_sym_random_boolean] = ACTIONS(3242), - [anon_sym_random_float] = ACTIONS(3242), - [anon_sym_random_integer] = ACTIONS(3242), - [anon_sym_columns] = ACTIONS(3242), - [anon_sym_rows] = ACTIONS(3242), - [anon_sym_reverse] = ACTIONS(3242), - }, - [603] = { - [ts_builtin_sym_end] = ACTIONS(3317), - [sym_identifier] = ACTIONS(3319), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3317), - [anon_sym_RBRACE] = ACTIONS(3317), - [anon_sym_SEMI] = ACTIONS(3317), - [anon_sym_LPAREN] = ACTIONS(3317), - [anon_sym_RPAREN] = ACTIONS(3317), - [anon_sym_COMMA] = ACTIONS(3317), - [sym_integer] = ACTIONS(3319), - [sym_float] = ACTIONS(3317), - [sym_string] = ACTIONS(3317), - [anon_sym_true] = ACTIONS(3319), - [anon_sym_false] = ACTIONS(3319), - [anon_sym_LBRACK] = ACTIONS(3317), - [anon_sym_RBRACK] = ACTIONS(3317), - [anon_sym_EQ] = ACTIONS(3319), - [anon_sym_COLON] = ACTIONS(3317), - [anon_sym_DOT_DOT] = ACTIONS(3317), - [anon_sym_PLUS] = ACTIONS(3319), - [anon_sym_DASH] = ACTIONS(3319), - [anon_sym_STAR] = ACTIONS(3317), - [anon_sym_SLASH] = ACTIONS(3317), - [anon_sym_PERCENT] = ACTIONS(3317), - [anon_sym_EQ_EQ] = ACTIONS(3317), - [anon_sym_BANG_EQ] = ACTIONS(3317), - [anon_sym_AMP_AMP] = ACTIONS(3317), - [anon_sym_PIPE_PIPE] = ACTIONS(3317), - [anon_sym_GT] = ACTIONS(3319), - [anon_sym_LT] = ACTIONS(3319), - [anon_sym_GT_EQ] = ACTIONS(3317), - [anon_sym_LT_EQ] = ACTIONS(3317), - [anon_sym_PLUS_EQ] = ACTIONS(3317), - [anon_sym_DASH_EQ] = ACTIONS(3317), - [anon_sym_if] = ACTIONS(3319), - [anon_sym_elseif] = ACTIONS(3317), - [anon_sym_else] = ACTIONS(3319), - [anon_sym_match] = ACTIONS(3319), - [anon_sym_EQ_GT] = ACTIONS(3317), - [anon_sym_while] = ACTIONS(3319), - [anon_sym_for] = ACTIONS(3319), - [anon_sym_asyncfor] = ACTIONS(3317), - [anon_sym_transform] = ACTIONS(3319), - [anon_sym_filter] = ACTIONS(3319), - [anon_sym_find] = ACTIONS(3319), - [anon_sym_remove] = ACTIONS(3319), - [anon_sym_reduce] = ACTIONS(3319), - [anon_sym_select] = ACTIONS(3319), - [anon_sym_insert] = ACTIONS(3319), - [anon_sym_async] = ACTIONS(3319), - [anon_sym_PIPE] = ACTIONS(3319), - [anon_sym_table] = ACTIONS(3319), - [anon_sym_assert] = ACTIONS(3319), - [anon_sym_assert_equal] = ACTIONS(3319), - [anon_sym_download] = ACTIONS(3319), - [anon_sym_help] = ACTIONS(3319), - [anon_sym_length] = ACTIONS(3319), - [anon_sym_output] = ACTIONS(3319), - [anon_sym_output_error] = ACTIONS(3319), - [anon_sym_type] = ACTIONS(3319), - [anon_sym_append] = ACTIONS(3319), - [anon_sym_metadata] = ACTIONS(3319), - [anon_sym_move] = ACTIONS(3319), - [anon_sym_read] = ACTIONS(3319), - [anon_sym_workdir] = ACTIONS(3319), - [anon_sym_write] = ACTIONS(3319), - [anon_sym_from_json] = ACTIONS(3319), - [anon_sym_to_json] = ACTIONS(3319), - [anon_sym_to_string] = ACTIONS(3319), - [anon_sym_to_float] = ACTIONS(3319), - [anon_sym_bash] = ACTIONS(3319), - [anon_sym_fish] = ACTIONS(3319), - [anon_sym_raw] = ACTIONS(3319), - [anon_sym_sh] = ACTIONS(3319), - [anon_sym_zsh] = ACTIONS(3319), - [anon_sym_random] = ACTIONS(3319), - [anon_sym_random_boolean] = ACTIONS(3319), - [anon_sym_random_float] = ACTIONS(3319), - [anon_sym_random_integer] = ACTIONS(3319), - [anon_sym_columns] = ACTIONS(3319), - [anon_sym_rows] = ACTIONS(3319), - [anon_sym_reverse] = ACTIONS(3319), - }, - [604] = { - [ts_builtin_sym_end] = ACTIONS(3321), - [sym_identifier] = ACTIONS(3323), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3321), - [anon_sym_RBRACE] = ACTIONS(3321), - [anon_sym_SEMI] = ACTIONS(3321), - [anon_sym_LPAREN] = ACTIONS(3321), - [anon_sym_RPAREN] = ACTIONS(3321), - [anon_sym_COMMA] = ACTIONS(3321), - [sym_integer] = ACTIONS(3323), - [sym_float] = ACTIONS(3321), - [sym_string] = ACTIONS(3321), - [anon_sym_true] = ACTIONS(3323), - [anon_sym_false] = ACTIONS(3323), - [anon_sym_LBRACK] = ACTIONS(3321), - [anon_sym_RBRACK] = ACTIONS(3321), - [anon_sym_EQ] = ACTIONS(3323), - [anon_sym_COLON] = ACTIONS(3321), - [anon_sym_DOT_DOT] = ACTIONS(3321), - [anon_sym_PLUS] = ACTIONS(3323), - [anon_sym_DASH] = ACTIONS(3323), - [anon_sym_STAR] = ACTIONS(3321), - [anon_sym_SLASH] = ACTIONS(3321), - [anon_sym_PERCENT] = ACTIONS(3321), - [anon_sym_EQ_EQ] = ACTIONS(3321), - [anon_sym_BANG_EQ] = ACTIONS(3321), - [anon_sym_AMP_AMP] = ACTIONS(3321), - [anon_sym_PIPE_PIPE] = ACTIONS(3321), - [anon_sym_GT] = ACTIONS(3323), - [anon_sym_LT] = ACTIONS(3323), - [anon_sym_GT_EQ] = ACTIONS(3321), - [anon_sym_LT_EQ] = ACTIONS(3321), - [anon_sym_PLUS_EQ] = ACTIONS(3321), - [anon_sym_DASH_EQ] = ACTIONS(3321), - [anon_sym_if] = ACTIONS(3323), - [anon_sym_elseif] = ACTIONS(3321), - [anon_sym_else] = ACTIONS(3323), - [anon_sym_match] = ACTIONS(3323), - [anon_sym_EQ_GT] = ACTIONS(3321), - [anon_sym_while] = ACTIONS(3323), - [anon_sym_for] = ACTIONS(3323), - [anon_sym_asyncfor] = ACTIONS(3321), - [anon_sym_transform] = ACTIONS(3323), - [anon_sym_filter] = ACTIONS(3323), - [anon_sym_find] = ACTIONS(3323), - [anon_sym_remove] = ACTIONS(3323), - [anon_sym_reduce] = ACTIONS(3323), - [anon_sym_select] = ACTIONS(3323), - [anon_sym_insert] = ACTIONS(3323), - [anon_sym_async] = ACTIONS(3323), - [anon_sym_PIPE] = ACTIONS(3323), - [anon_sym_table] = ACTIONS(3323), - [anon_sym_assert] = ACTIONS(3323), - [anon_sym_assert_equal] = ACTIONS(3323), - [anon_sym_download] = ACTIONS(3323), - [anon_sym_help] = ACTIONS(3323), - [anon_sym_length] = ACTIONS(3323), - [anon_sym_output] = ACTIONS(3323), - [anon_sym_output_error] = ACTIONS(3323), - [anon_sym_type] = ACTIONS(3323), - [anon_sym_append] = ACTIONS(3323), - [anon_sym_metadata] = ACTIONS(3323), - [anon_sym_move] = ACTIONS(3323), - [anon_sym_read] = ACTIONS(3323), - [anon_sym_workdir] = ACTIONS(3323), - [anon_sym_write] = ACTIONS(3323), - [anon_sym_from_json] = ACTIONS(3323), - [anon_sym_to_json] = ACTIONS(3323), - [anon_sym_to_string] = ACTIONS(3323), - [anon_sym_to_float] = ACTIONS(3323), - [anon_sym_bash] = ACTIONS(3323), - [anon_sym_fish] = ACTIONS(3323), - [anon_sym_raw] = ACTIONS(3323), - [anon_sym_sh] = ACTIONS(3323), - [anon_sym_zsh] = ACTIONS(3323), - [anon_sym_random] = ACTIONS(3323), - [anon_sym_random_boolean] = ACTIONS(3323), - [anon_sym_random_float] = ACTIONS(3323), - [anon_sym_random_integer] = ACTIONS(3323), - [anon_sym_columns] = ACTIONS(3323), - [anon_sym_rows] = ACTIONS(3323), - [anon_sym_reverse] = ACTIONS(3323), - }, - [605] = { - [ts_builtin_sym_end] = ACTIONS(3325), - [sym_identifier] = ACTIONS(3327), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3325), - [anon_sym_RBRACE] = ACTIONS(3325), - [anon_sym_SEMI] = ACTIONS(3325), - [anon_sym_LPAREN] = ACTIONS(3325), - [anon_sym_RPAREN] = ACTIONS(3325), - [anon_sym_COMMA] = ACTIONS(3325), - [sym_integer] = ACTIONS(3327), - [sym_float] = ACTIONS(3325), - [sym_string] = ACTIONS(3325), - [anon_sym_true] = ACTIONS(3327), - [anon_sym_false] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3325), - [anon_sym_RBRACK] = ACTIONS(3325), - [anon_sym_EQ] = ACTIONS(3327), - [anon_sym_COLON] = ACTIONS(3325), - [anon_sym_DOT_DOT] = ACTIONS(3325), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_STAR] = ACTIONS(3325), - [anon_sym_SLASH] = ACTIONS(3325), - [anon_sym_PERCENT] = ACTIONS(3325), - [anon_sym_EQ_EQ] = ACTIONS(3325), - [anon_sym_BANG_EQ] = ACTIONS(3325), - [anon_sym_AMP_AMP] = ACTIONS(3325), - [anon_sym_PIPE_PIPE] = ACTIONS(3325), - [anon_sym_GT] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_GT_EQ] = ACTIONS(3325), - [anon_sym_LT_EQ] = ACTIONS(3325), - [anon_sym_PLUS_EQ] = ACTIONS(3325), - [anon_sym_DASH_EQ] = ACTIONS(3325), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_elseif] = ACTIONS(3325), - [anon_sym_else] = ACTIONS(3327), - [anon_sym_match] = ACTIONS(3327), - [anon_sym_EQ_GT] = ACTIONS(3325), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_asyncfor] = ACTIONS(3325), - [anon_sym_transform] = ACTIONS(3327), - [anon_sym_filter] = ACTIONS(3327), - [anon_sym_find] = ACTIONS(3327), - [anon_sym_remove] = ACTIONS(3327), - [anon_sym_reduce] = ACTIONS(3327), - [anon_sym_select] = ACTIONS(3327), - [anon_sym_insert] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_PIPE] = ACTIONS(3327), - [anon_sym_table] = ACTIONS(3327), - [anon_sym_assert] = ACTIONS(3327), - [anon_sym_assert_equal] = ACTIONS(3327), - [anon_sym_download] = ACTIONS(3327), - [anon_sym_help] = ACTIONS(3327), - [anon_sym_length] = ACTIONS(3327), - [anon_sym_output] = ACTIONS(3327), - [anon_sym_output_error] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_append] = ACTIONS(3327), - [anon_sym_metadata] = ACTIONS(3327), - [anon_sym_move] = ACTIONS(3327), - [anon_sym_read] = ACTIONS(3327), - [anon_sym_workdir] = ACTIONS(3327), - [anon_sym_write] = ACTIONS(3327), - [anon_sym_from_json] = ACTIONS(3327), - [anon_sym_to_json] = ACTIONS(3327), - [anon_sym_to_string] = ACTIONS(3327), - [anon_sym_to_float] = ACTIONS(3327), - [anon_sym_bash] = ACTIONS(3327), - [anon_sym_fish] = ACTIONS(3327), - [anon_sym_raw] = ACTIONS(3327), - [anon_sym_sh] = ACTIONS(3327), - [anon_sym_zsh] = ACTIONS(3327), - [anon_sym_random] = ACTIONS(3327), - [anon_sym_random_boolean] = ACTIONS(3327), - [anon_sym_random_float] = ACTIONS(3327), - [anon_sym_random_integer] = ACTIONS(3327), - [anon_sym_columns] = ACTIONS(3327), - [anon_sym_rows] = ACTIONS(3327), - [anon_sym_reverse] = ACTIONS(3327), - }, - [606] = { - [ts_builtin_sym_end] = ACTIONS(3329), - [sym_identifier] = ACTIONS(3331), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3329), - [anon_sym_RBRACE] = ACTIONS(3329), - [anon_sym_SEMI] = ACTIONS(3329), - [anon_sym_LPAREN] = ACTIONS(3329), - [anon_sym_RPAREN] = ACTIONS(3329), - [anon_sym_COMMA] = ACTIONS(3329), - [sym_integer] = ACTIONS(3331), - [sym_float] = ACTIONS(3329), - [sym_string] = ACTIONS(3329), - [anon_sym_true] = ACTIONS(3331), - [anon_sym_false] = ACTIONS(3331), - [anon_sym_LBRACK] = ACTIONS(3329), - [anon_sym_RBRACK] = ACTIONS(3329), - [anon_sym_EQ] = ACTIONS(3331), - [anon_sym_COLON] = ACTIONS(3329), - [anon_sym_DOT_DOT] = ACTIONS(3329), - [anon_sym_PLUS] = ACTIONS(3331), - [anon_sym_DASH] = ACTIONS(3331), - [anon_sym_STAR] = ACTIONS(3329), - [anon_sym_SLASH] = ACTIONS(3329), - [anon_sym_PERCENT] = ACTIONS(3329), - [anon_sym_EQ_EQ] = ACTIONS(3329), - [anon_sym_BANG_EQ] = ACTIONS(3329), - [anon_sym_AMP_AMP] = ACTIONS(3329), - [anon_sym_PIPE_PIPE] = ACTIONS(3329), - [anon_sym_GT] = ACTIONS(3331), - [anon_sym_LT] = ACTIONS(3331), - [anon_sym_GT_EQ] = ACTIONS(3329), - [anon_sym_LT_EQ] = ACTIONS(3329), - [anon_sym_PLUS_EQ] = ACTIONS(3329), - [anon_sym_DASH_EQ] = ACTIONS(3329), - [anon_sym_if] = ACTIONS(3331), - [anon_sym_elseif] = ACTIONS(3329), - [anon_sym_else] = ACTIONS(3331), - [anon_sym_match] = ACTIONS(3331), - [anon_sym_EQ_GT] = ACTIONS(3329), - [anon_sym_while] = ACTIONS(3331), - [anon_sym_for] = ACTIONS(3331), - [anon_sym_asyncfor] = ACTIONS(3329), - [anon_sym_transform] = ACTIONS(3331), - [anon_sym_filter] = ACTIONS(3331), - [anon_sym_find] = ACTIONS(3331), - [anon_sym_remove] = ACTIONS(3331), - [anon_sym_reduce] = ACTIONS(3331), - [anon_sym_select] = ACTIONS(3331), - [anon_sym_insert] = ACTIONS(3331), - [anon_sym_async] = ACTIONS(3331), - [anon_sym_PIPE] = ACTIONS(3331), - [anon_sym_table] = ACTIONS(3331), - [anon_sym_assert] = ACTIONS(3331), - [anon_sym_assert_equal] = ACTIONS(3331), - [anon_sym_download] = ACTIONS(3331), - [anon_sym_help] = ACTIONS(3331), - [anon_sym_length] = ACTIONS(3331), - [anon_sym_output] = ACTIONS(3331), - [anon_sym_output_error] = ACTIONS(3331), - [anon_sym_type] = ACTIONS(3331), - [anon_sym_append] = ACTIONS(3331), - [anon_sym_metadata] = ACTIONS(3331), - [anon_sym_move] = ACTIONS(3331), - [anon_sym_read] = ACTIONS(3331), - [anon_sym_workdir] = ACTIONS(3331), - [anon_sym_write] = ACTIONS(3331), - [anon_sym_from_json] = ACTIONS(3331), - [anon_sym_to_json] = ACTIONS(3331), - [anon_sym_to_string] = ACTIONS(3331), - [anon_sym_to_float] = ACTIONS(3331), - [anon_sym_bash] = ACTIONS(3331), - [anon_sym_fish] = ACTIONS(3331), - [anon_sym_raw] = ACTIONS(3331), - [anon_sym_sh] = ACTIONS(3331), - [anon_sym_zsh] = ACTIONS(3331), - [anon_sym_random] = ACTIONS(3331), - [anon_sym_random_boolean] = ACTIONS(3331), - [anon_sym_random_float] = ACTIONS(3331), - [anon_sym_random_integer] = ACTIONS(3331), - [anon_sym_columns] = ACTIONS(3331), - [anon_sym_rows] = ACTIONS(3331), - [anon_sym_reverse] = ACTIONS(3331), - }, - [607] = { - [ts_builtin_sym_end] = ACTIONS(3333), - [sym_identifier] = ACTIONS(3335), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3333), - [anon_sym_RBRACE] = ACTIONS(3333), - [anon_sym_SEMI] = ACTIONS(3333), - [anon_sym_LPAREN] = ACTIONS(3333), - [anon_sym_RPAREN] = ACTIONS(3333), - [anon_sym_COMMA] = ACTIONS(3333), - [sym_integer] = ACTIONS(3335), - [sym_float] = ACTIONS(3333), - [sym_string] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_RBRACK] = ACTIONS(3333), - [anon_sym_EQ] = ACTIONS(3335), - [anon_sym_COLON] = ACTIONS(3333), - [anon_sym_DOT_DOT] = ACTIONS(3333), - [anon_sym_PLUS] = ACTIONS(3335), - [anon_sym_DASH] = ACTIONS(3335), - [anon_sym_STAR] = ACTIONS(3333), - [anon_sym_SLASH] = ACTIONS(3333), - [anon_sym_PERCENT] = ACTIONS(3333), - [anon_sym_EQ_EQ] = ACTIONS(3333), - [anon_sym_BANG_EQ] = ACTIONS(3333), - [anon_sym_AMP_AMP] = ACTIONS(3333), - [anon_sym_PIPE_PIPE] = ACTIONS(3333), - [anon_sym_GT] = ACTIONS(3335), - [anon_sym_LT] = ACTIONS(3335), - [anon_sym_GT_EQ] = ACTIONS(3333), - [anon_sym_LT_EQ] = ACTIONS(3333), - [anon_sym_PLUS_EQ] = ACTIONS(3333), - [anon_sym_DASH_EQ] = ACTIONS(3333), - [anon_sym_if] = ACTIONS(3335), - [anon_sym_elseif] = ACTIONS(3333), - [anon_sym_else] = ACTIONS(3335), - [anon_sym_match] = ACTIONS(3335), - [anon_sym_EQ_GT] = ACTIONS(3333), - [anon_sym_while] = ACTIONS(3335), - [anon_sym_for] = ACTIONS(3335), - [anon_sym_asyncfor] = ACTIONS(3333), - [anon_sym_transform] = ACTIONS(3335), - [anon_sym_filter] = ACTIONS(3335), - [anon_sym_find] = ACTIONS(3335), - [anon_sym_remove] = ACTIONS(3335), - [anon_sym_reduce] = ACTIONS(3335), - [anon_sym_select] = ACTIONS(3335), - [anon_sym_insert] = ACTIONS(3335), - [anon_sym_async] = ACTIONS(3335), - [anon_sym_PIPE] = ACTIONS(3335), - [anon_sym_table] = ACTIONS(3335), - [anon_sym_assert] = ACTIONS(3335), - [anon_sym_assert_equal] = ACTIONS(3335), - [anon_sym_download] = ACTIONS(3335), - [anon_sym_help] = ACTIONS(3335), - [anon_sym_length] = ACTIONS(3335), - [anon_sym_output] = ACTIONS(3335), - [anon_sym_output_error] = ACTIONS(3335), - [anon_sym_type] = ACTIONS(3335), - [anon_sym_append] = ACTIONS(3335), - [anon_sym_metadata] = ACTIONS(3335), - [anon_sym_move] = ACTIONS(3335), - [anon_sym_read] = ACTIONS(3335), - [anon_sym_workdir] = ACTIONS(3335), - [anon_sym_write] = ACTIONS(3335), - [anon_sym_from_json] = ACTIONS(3335), - [anon_sym_to_json] = ACTIONS(3335), - [anon_sym_to_string] = ACTIONS(3335), - [anon_sym_to_float] = ACTIONS(3335), - [anon_sym_bash] = ACTIONS(3335), - [anon_sym_fish] = ACTIONS(3335), - [anon_sym_raw] = ACTIONS(3335), - [anon_sym_sh] = ACTIONS(3335), - [anon_sym_zsh] = ACTIONS(3335), - [anon_sym_random] = ACTIONS(3335), - [anon_sym_random_boolean] = ACTIONS(3335), - [anon_sym_random_float] = ACTIONS(3335), - [anon_sym_random_integer] = ACTIONS(3335), - [anon_sym_columns] = ACTIONS(3335), - [anon_sym_rows] = ACTIONS(3335), - [anon_sym_reverse] = ACTIONS(3335), - }, - [608] = { - [ts_builtin_sym_end] = ACTIONS(3337), - [sym_identifier] = ACTIONS(3339), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3337), - [anon_sym_RBRACE] = ACTIONS(3337), - [anon_sym_SEMI] = ACTIONS(3337), - [anon_sym_LPAREN] = ACTIONS(3337), - [anon_sym_RPAREN] = ACTIONS(3337), - [anon_sym_COMMA] = ACTIONS(3337), - [sym_integer] = ACTIONS(3339), - [sym_float] = ACTIONS(3337), - [sym_string] = ACTIONS(3337), - [anon_sym_true] = ACTIONS(3339), - [anon_sym_false] = ACTIONS(3339), - [anon_sym_LBRACK] = ACTIONS(3337), - [anon_sym_RBRACK] = ACTIONS(3337), - [anon_sym_EQ] = ACTIONS(3339), - [anon_sym_COLON] = ACTIONS(3337), - [anon_sym_DOT_DOT] = ACTIONS(3337), - [anon_sym_PLUS] = ACTIONS(3339), - [anon_sym_DASH] = ACTIONS(3339), - [anon_sym_STAR] = ACTIONS(3337), - [anon_sym_SLASH] = ACTIONS(3337), - [anon_sym_PERCENT] = ACTIONS(3337), - [anon_sym_EQ_EQ] = ACTIONS(3337), - [anon_sym_BANG_EQ] = ACTIONS(3337), - [anon_sym_AMP_AMP] = ACTIONS(3337), - [anon_sym_PIPE_PIPE] = ACTIONS(3337), - [anon_sym_GT] = ACTIONS(3339), - [anon_sym_LT] = ACTIONS(3339), - [anon_sym_GT_EQ] = ACTIONS(3337), - [anon_sym_LT_EQ] = ACTIONS(3337), - [anon_sym_PLUS_EQ] = ACTIONS(3337), - [anon_sym_DASH_EQ] = ACTIONS(3337), - [anon_sym_if] = ACTIONS(3339), - [anon_sym_elseif] = ACTIONS(3337), - [anon_sym_else] = ACTIONS(3339), - [anon_sym_match] = ACTIONS(3339), - [anon_sym_EQ_GT] = ACTIONS(3337), - [anon_sym_while] = ACTIONS(3339), - [anon_sym_for] = ACTIONS(3339), - [anon_sym_asyncfor] = ACTIONS(3337), - [anon_sym_transform] = ACTIONS(3339), - [anon_sym_filter] = ACTIONS(3339), - [anon_sym_find] = ACTIONS(3339), - [anon_sym_remove] = ACTIONS(3339), - [anon_sym_reduce] = ACTIONS(3339), - [anon_sym_select] = ACTIONS(3339), - [anon_sym_insert] = ACTIONS(3339), - [anon_sym_async] = ACTIONS(3339), - [anon_sym_PIPE] = ACTIONS(3339), - [anon_sym_table] = ACTIONS(3339), - [anon_sym_assert] = ACTIONS(3339), - [anon_sym_assert_equal] = ACTIONS(3339), - [anon_sym_download] = ACTIONS(3339), - [anon_sym_help] = ACTIONS(3339), - [anon_sym_length] = ACTIONS(3339), - [anon_sym_output] = ACTIONS(3339), - [anon_sym_output_error] = ACTIONS(3339), - [anon_sym_type] = ACTIONS(3339), - [anon_sym_append] = ACTIONS(3339), - [anon_sym_metadata] = ACTIONS(3339), - [anon_sym_move] = ACTIONS(3339), - [anon_sym_read] = ACTIONS(3339), - [anon_sym_workdir] = ACTIONS(3339), - [anon_sym_write] = ACTIONS(3339), - [anon_sym_from_json] = ACTIONS(3339), - [anon_sym_to_json] = ACTIONS(3339), - [anon_sym_to_string] = ACTIONS(3339), - [anon_sym_to_float] = ACTIONS(3339), - [anon_sym_bash] = ACTIONS(3339), - [anon_sym_fish] = ACTIONS(3339), - [anon_sym_raw] = ACTIONS(3339), - [anon_sym_sh] = ACTIONS(3339), - [anon_sym_zsh] = ACTIONS(3339), - [anon_sym_random] = ACTIONS(3339), - [anon_sym_random_boolean] = ACTIONS(3339), - [anon_sym_random_float] = ACTIONS(3339), - [anon_sym_random_integer] = ACTIONS(3339), - [anon_sym_columns] = ACTIONS(3339), - [anon_sym_rows] = ACTIONS(3339), - [anon_sym_reverse] = ACTIONS(3339), - }, - [609] = { - [sym_math_operator] = STATE(1414), - [sym_logic_operator] = STATE(1413), - [ts_builtin_sym_end] = ACTIONS(3252), - [sym_identifier] = ACTIONS(3254), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3252), - [anon_sym_RBRACE] = ACTIONS(3252), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_LPAREN] = ACTIONS(3252), - [anon_sym_RPAREN] = ACTIONS(3252), - [sym_integer] = ACTIONS(3254), - [sym_float] = ACTIONS(3252), - [sym_string] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_EQ] = ACTIONS(3254), - [anon_sym_COLON] = ACTIONS(3252), - [anon_sym_DOT_DOT] = ACTIONS(3252), - [anon_sym_PLUS] = ACTIONS(3254), - [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_STAR] = ACTIONS(3252), - [anon_sym_SLASH] = ACTIONS(3252), - [anon_sym_PERCENT] = ACTIONS(3252), - [anon_sym_EQ_EQ] = ACTIONS(3252), - [anon_sym_BANG_EQ] = ACTIONS(3252), - [anon_sym_AMP_AMP] = ACTIONS(3252), - [anon_sym_PIPE_PIPE] = ACTIONS(3252), - [anon_sym_GT] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(3254), - [anon_sym_GT_EQ] = ACTIONS(3252), - [anon_sym_LT_EQ] = ACTIONS(3252), - [anon_sym_PLUS_EQ] = ACTIONS(3252), - [anon_sym_DASH_EQ] = ACTIONS(3252), - [anon_sym_if] = ACTIONS(3254), - [anon_sym_elseif] = ACTIONS(3252), - [anon_sym_else] = ACTIONS(3254), - [anon_sym_match] = ACTIONS(3254), - [anon_sym_EQ_GT] = ACTIONS(3252), - [anon_sym_while] = ACTIONS(3254), - [anon_sym_for] = ACTIONS(3254), - [anon_sym_asyncfor] = ACTIONS(3252), - [anon_sym_transform] = ACTIONS(3254), - [anon_sym_filter] = ACTIONS(3254), - [anon_sym_find] = ACTIONS(3254), - [anon_sym_remove] = ACTIONS(3254), - [anon_sym_reduce] = ACTIONS(3254), - [anon_sym_select] = ACTIONS(3254), - [anon_sym_insert] = ACTIONS(3254), - [anon_sym_async] = ACTIONS(3254), - [anon_sym_PIPE] = ACTIONS(3254), - [anon_sym_table] = ACTIONS(3254), - [anon_sym_assert] = ACTIONS(3254), - [anon_sym_assert_equal] = ACTIONS(3254), - [anon_sym_download] = ACTIONS(3254), - [anon_sym_help] = ACTIONS(3254), - [anon_sym_length] = ACTIONS(3254), - [anon_sym_output] = ACTIONS(3254), - [anon_sym_output_error] = ACTIONS(3254), - [anon_sym_type] = ACTIONS(3254), - [anon_sym_append] = ACTIONS(3254), - [anon_sym_metadata] = ACTIONS(3254), - [anon_sym_move] = ACTIONS(3254), - [anon_sym_read] = ACTIONS(3254), - [anon_sym_workdir] = ACTIONS(3254), - [anon_sym_write] = ACTIONS(3254), - [anon_sym_from_json] = ACTIONS(3254), - [anon_sym_to_json] = ACTIONS(3254), - [anon_sym_to_string] = ACTIONS(3254), - [anon_sym_to_float] = ACTIONS(3254), - [anon_sym_bash] = ACTIONS(3254), - [anon_sym_fish] = ACTIONS(3254), - [anon_sym_raw] = ACTIONS(3254), - [anon_sym_sh] = ACTIONS(3254), - [anon_sym_zsh] = ACTIONS(3254), - [anon_sym_random] = ACTIONS(3254), - [anon_sym_random_boolean] = ACTIONS(3254), - [anon_sym_random_float] = ACTIONS(3254), - [anon_sym_random_integer] = ACTIONS(3254), - [anon_sym_columns] = ACTIONS(3254), - [anon_sym_rows] = ACTIONS(3254), - [anon_sym_reverse] = ACTIONS(3254), - }, - [610] = { - [ts_builtin_sym_end] = ACTIONS(3341), - [sym_identifier] = ACTIONS(3343), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3341), - [anon_sym_RBRACE] = ACTIONS(3341), - [anon_sym_SEMI] = ACTIONS(3341), - [anon_sym_LPAREN] = ACTIONS(3341), - [anon_sym_RPAREN] = ACTIONS(3341), - [anon_sym_COMMA] = ACTIONS(3341), - [sym_integer] = ACTIONS(3343), - [sym_float] = ACTIONS(3341), - [sym_string] = ACTIONS(3341), - [anon_sym_true] = ACTIONS(3343), - [anon_sym_false] = ACTIONS(3343), - [anon_sym_LBRACK] = ACTIONS(3341), - [anon_sym_RBRACK] = ACTIONS(3341), - [anon_sym_EQ] = ACTIONS(3343), - [anon_sym_COLON] = ACTIONS(3341), - [anon_sym_DOT_DOT] = ACTIONS(3341), - [anon_sym_PLUS] = ACTIONS(3343), - [anon_sym_DASH] = ACTIONS(3343), - [anon_sym_STAR] = ACTIONS(3341), - [anon_sym_SLASH] = ACTIONS(3341), - [anon_sym_PERCENT] = ACTIONS(3341), - [anon_sym_EQ_EQ] = ACTIONS(3341), - [anon_sym_BANG_EQ] = ACTIONS(3341), - [anon_sym_AMP_AMP] = ACTIONS(3341), - [anon_sym_PIPE_PIPE] = ACTIONS(3341), - [anon_sym_GT] = ACTIONS(3343), - [anon_sym_LT] = ACTIONS(3343), - [anon_sym_GT_EQ] = ACTIONS(3341), - [anon_sym_LT_EQ] = ACTIONS(3341), - [anon_sym_PLUS_EQ] = ACTIONS(3341), - [anon_sym_DASH_EQ] = ACTIONS(3341), - [anon_sym_if] = ACTIONS(3343), - [anon_sym_elseif] = ACTIONS(3341), - [anon_sym_else] = ACTIONS(3343), - [anon_sym_match] = ACTIONS(3343), - [anon_sym_EQ_GT] = ACTIONS(3341), - [anon_sym_while] = ACTIONS(3343), - [anon_sym_for] = ACTIONS(3343), - [anon_sym_asyncfor] = ACTIONS(3341), - [anon_sym_transform] = ACTIONS(3343), - [anon_sym_filter] = ACTIONS(3343), - [anon_sym_find] = ACTIONS(3343), - [anon_sym_remove] = ACTIONS(3343), - [anon_sym_reduce] = ACTIONS(3343), - [anon_sym_select] = ACTIONS(3343), - [anon_sym_insert] = ACTIONS(3343), - [anon_sym_async] = ACTIONS(3343), - [anon_sym_PIPE] = ACTIONS(3343), - [anon_sym_table] = ACTIONS(3343), - [anon_sym_assert] = ACTIONS(3343), - [anon_sym_assert_equal] = ACTIONS(3343), - [anon_sym_download] = ACTIONS(3343), - [anon_sym_help] = ACTIONS(3343), - [anon_sym_length] = ACTIONS(3343), - [anon_sym_output] = ACTIONS(3343), - [anon_sym_output_error] = ACTIONS(3343), - [anon_sym_type] = ACTIONS(3343), - [anon_sym_append] = ACTIONS(3343), - [anon_sym_metadata] = ACTIONS(3343), - [anon_sym_move] = ACTIONS(3343), - [anon_sym_read] = ACTIONS(3343), - [anon_sym_workdir] = ACTIONS(3343), - [anon_sym_write] = ACTIONS(3343), - [anon_sym_from_json] = ACTIONS(3343), - [anon_sym_to_json] = ACTIONS(3343), - [anon_sym_to_string] = ACTIONS(3343), - [anon_sym_to_float] = ACTIONS(3343), - [anon_sym_bash] = ACTIONS(3343), - [anon_sym_fish] = ACTIONS(3343), - [anon_sym_raw] = ACTIONS(3343), - [anon_sym_sh] = ACTIONS(3343), - [anon_sym_zsh] = ACTIONS(3343), - [anon_sym_random] = ACTIONS(3343), - [anon_sym_random_boolean] = ACTIONS(3343), - [anon_sym_random_float] = ACTIONS(3343), - [anon_sym_random_integer] = ACTIONS(3343), - [anon_sym_columns] = ACTIONS(3343), - [anon_sym_rows] = ACTIONS(3343), - [anon_sym_reverse] = ACTIONS(3343), - }, - [611] = { - [sym_else_if] = STATE(612), - [sym_else] = STATE(711), - [aux_sym_if_else_repeat1] = STATE(612), - [ts_builtin_sym_end] = ACTIONS(3219), - [sym_identifier] = ACTIONS(3221), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_RPAREN] = ACTIONS(3219), - [sym_integer] = ACTIONS(3221), - [sym_float] = ACTIONS(3219), - [sym_string] = ACTIONS(3219), - [anon_sym_true] = ACTIONS(3221), - [anon_sym_false] = ACTIONS(3221), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_EQ] = ACTIONS(3221), - [anon_sym_COLON] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3221), - [anon_sym_DASH] = ACTIONS(3221), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_PERCENT] = ACTIONS(3219), - [anon_sym_EQ_EQ] = ACTIONS(3219), - [anon_sym_BANG_EQ] = ACTIONS(3219), - [anon_sym_AMP_AMP] = ACTIONS(3219), - [anon_sym_PIPE_PIPE] = ACTIONS(3219), - [anon_sym_GT] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3221), - [anon_sym_GT_EQ] = ACTIONS(3219), - [anon_sym_LT_EQ] = ACTIONS(3219), - [anon_sym_PLUS_EQ] = ACTIONS(3219), - [anon_sym_DASH_EQ] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3221), - [anon_sym_elseif] = ACTIONS(3311), - [anon_sym_else] = ACTIONS(3345), - [anon_sym_match] = ACTIONS(3221), - [anon_sym_EQ_GT] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3221), - [anon_sym_for] = ACTIONS(3221), - [anon_sym_asyncfor] = ACTIONS(3219), - [anon_sym_transform] = ACTIONS(3221), - [anon_sym_filter] = ACTIONS(3221), - [anon_sym_find] = ACTIONS(3221), - [anon_sym_remove] = ACTIONS(3221), - [anon_sym_reduce] = ACTIONS(3221), - [anon_sym_select] = ACTIONS(3221), - [anon_sym_insert] = ACTIONS(3221), - [anon_sym_async] = ACTIONS(3221), - [anon_sym_PIPE] = ACTIONS(3221), - [anon_sym_table] = ACTIONS(3221), - [anon_sym_assert] = ACTIONS(3221), - [anon_sym_assert_equal] = ACTIONS(3221), - [anon_sym_download] = ACTIONS(3221), - [anon_sym_help] = ACTIONS(3221), - [anon_sym_length] = ACTIONS(3221), - [anon_sym_output] = ACTIONS(3221), - [anon_sym_output_error] = ACTIONS(3221), - [anon_sym_type] = ACTIONS(3221), - [anon_sym_append] = ACTIONS(3221), - [anon_sym_metadata] = ACTIONS(3221), - [anon_sym_move] = ACTIONS(3221), - [anon_sym_read] = ACTIONS(3221), - [anon_sym_workdir] = ACTIONS(3221), - [anon_sym_write] = ACTIONS(3221), - [anon_sym_from_json] = ACTIONS(3221), - [anon_sym_to_json] = ACTIONS(3221), - [anon_sym_to_string] = ACTIONS(3221), - [anon_sym_to_float] = ACTIONS(3221), - [anon_sym_bash] = ACTIONS(3221), - [anon_sym_fish] = ACTIONS(3221), - [anon_sym_raw] = ACTIONS(3221), - [anon_sym_sh] = ACTIONS(3221), - [anon_sym_zsh] = ACTIONS(3221), - [anon_sym_random] = ACTIONS(3221), - [anon_sym_random_boolean] = ACTIONS(3221), - [anon_sym_random_float] = ACTIONS(3221), - [anon_sym_random_integer] = ACTIONS(3221), - [anon_sym_columns] = ACTIONS(3221), - [anon_sym_rows] = ACTIONS(3221), - [anon_sym_reverse] = ACTIONS(3221), - }, - [612] = { - [sym_else_if] = STATE(656), - [sym_else] = STATE(725), - [aux_sym_if_else_repeat1] = STATE(656), - [ts_builtin_sym_end] = ACTIONS(3229), - [sym_identifier] = ACTIONS(3231), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3229), - [anon_sym_RBRACE] = ACTIONS(3229), - [anon_sym_SEMI] = ACTIONS(3229), - [anon_sym_LPAREN] = ACTIONS(3229), - [anon_sym_RPAREN] = ACTIONS(3229), - [sym_integer] = ACTIONS(3231), - [sym_float] = ACTIONS(3229), - [sym_string] = ACTIONS(3229), - [anon_sym_true] = ACTIONS(3231), - [anon_sym_false] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3229), - [anon_sym_EQ] = ACTIONS(3231), - [anon_sym_COLON] = ACTIONS(3229), - [anon_sym_PLUS] = ACTIONS(3231), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_SLASH] = ACTIONS(3229), - [anon_sym_PERCENT] = ACTIONS(3229), - [anon_sym_EQ_EQ] = ACTIONS(3229), - [anon_sym_BANG_EQ] = ACTIONS(3229), - [anon_sym_AMP_AMP] = ACTIONS(3229), - [anon_sym_PIPE_PIPE] = ACTIONS(3229), - [anon_sym_GT] = ACTIONS(3231), - [anon_sym_LT] = ACTIONS(3231), - [anon_sym_GT_EQ] = ACTIONS(3229), - [anon_sym_LT_EQ] = ACTIONS(3229), - [anon_sym_PLUS_EQ] = ACTIONS(3229), - [anon_sym_DASH_EQ] = ACTIONS(3229), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_elseif] = ACTIONS(3311), - [anon_sym_else] = ACTIONS(3345), - [anon_sym_match] = ACTIONS(3231), - [anon_sym_EQ_GT] = ACTIONS(3229), - [anon_sym_while] = ACTIONS(3231), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_asyncfor] = ACTIONS(3229), - [anon_sym_transform] = ACTIONS(3231), - [anon_sym_filter] = ACTIONS(3231), - [anon_sym_find] = ACTIONS(3231), - [anon_sym_remove] = ACTIONS(3231), - [anon_sym_reduce] = ACTIONS(3231), - [anon_sym_select] = ACTIONS(3231), - [anon_sym_insert] = ACTIONS(3231), - [anon_sym_async] = ACTIONS(3231), - [anon_sym_PIPE] = ACTIONS(3231), - [anon_sym_table] = ACTIONS(3231), - [anon_sym_assert] = ACTIONS(3231), - [anon_sym_assert_equal] = ACTIONS(3231), - [anon_sym_download] = ACTIONS(3231), - [anon_sym_help] = ACTIONS(3231), - [anon_sym_length] = ACTIONS(3231), - [anon_sym_output] = ACTIONS(3231), - [anon_sym_output_error] = ACTIONS(3231), - [anon_sym_type] = ACTIONS(3231), - [anon_sym_append] = ACTIONS(3231), - [anon_sym_metadata] = ACTIONS(3231), - [anon_sym_move] = ACTIONS(3231), - [anon_sym_read] = ACTIONS(3231), - [anon_sym_workdir] = ACTIONS(3231), - [anon_sym_write] = ACTIONS(3231), - [anon_sym_from_json] = ACTIONS(3231), - [anon_sym_to_json] = ACTIONS(3231), - [anon_sym_to_string] = ACTIONS(3231), - [anon_sym_to_float] = ACTIONS(3231), - [anon_sym_bash] = ACTIONS(3231), - [anon_sym_fish] = ACTIONS(3231), - [anon_sym_raw] = ACTIONS(3231), - [anon_sym_sh] = ACTIONS(3231), - [anon_sym_zsh] = ACTIONS(3231), - [anon_sym_random] = ACTIONS(3231), - [anon_sym_random_boolean] = ACTIONS(3231), - [anon_sym_random_float] = ACTIONS(3231), - [anon_sym_random_integer] = ACTIONS(3231), - [anon_sym_columns] = ACTIONS(3231), - [anon_sym_rows] = ACTIONS(3231), - [anon_sym_reverse] = ACTIONS(3231), - }, - [613] = { - [sym_else_if] = STATE(652), - [sym_else] = STATE(802), - [aux_sym_if_else_repeat1] = STATE(652), - [ts_builtin_sym_end] = ACTIONS(3229), - [sym_identifier] = ACTIONS(3231), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3229), - [anon_sym_RBRACE] = ACTIONS(3229), - [anon_sym_SEMI] = ACTIONS(3229), - [anon_sym_LPAREN] = ACTIONS(3229), - [anon_sym_RPAREN] = ACTIONS(3229), - [anon_sym_COMMA] = ACTIONS(3229), - [sym_integer] = ACTIONS(3231), - [sym_float] = ACTIONS(3229), - [sym_string] = ACTIONS(3229), - [anon_sym_true] = ACTIONS(3231), - [anon_sym_false] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3229), - [anon_sym_RBRACK] = ACTIONS(3229), - [anon_sym_COLON] = ACTIONS(3229), - [anon_sym_DOT_DOT] = ACTIONS(3229), - [anon_sym_PLUS] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_SLASH] = ACTIONS(3229), - [anon_sym_PERCENT] = ACTIONS(3229), - [anon_sym_EQ_EQ] = ACTIONS(3229), - [anon_sym_BANG_EQ] = ACTIONS(3229), - [anon_sym_AMP_AMP] = ACTIONS(3229), - [anon_sym_PIPE_PIPE] = ACTIONS(3229), - [anon_sym_GT] = ACTIONS(3231), - [anon_sym_LT] = ACTIONS(3231), - [anon_sym_GT_EQ] = ACTIONS(3229), - [anon_sym_LT_EQ] = ACTIONS(3229), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_elseif] = ACTIONS(3347), - [anon_sym_else] = ACTIONS(3349), - [anon_sym_match] = ACTIONS(3231), - [anon_sym_EQ_GT] = ACTIONS(3229), - [anon_sym_while] = ACTIONS(3231), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_asyncfor] = ACTIONS(3229), - [anon_sym_transform] = ACTIONS(3231), - [anon_sym_filter] = ACTIONS(3231), - [anon_sym_find] = ACTIONS(3231), - [anon_sym_remove] = ACTIONS(3231), - [anon_sym_reduce] = ACTIONS(3231), - [anon_sym_select] = ACTIONS(3231), - [anon_sym_insert] = ACTIONS(3231), - [anon_sym_async] = ACTIONS(3231), - [anon_sym_PIPE] = ACTIONS(3231), - [anon_sym_table] = ACTIONS(3231), - [anon_sym_assert] = ACTIONS(3231), - [anon_sym_assert_equal] = ACTIONS(3231), - [anon_sym_download] = ACTIONS(3231), - [anon_sym_help] = ACTIONS(3231), - [anon_sym_length] = ACTIONS(3231), - [anon_sym_output] = ACTIONS(3231), - [anon_sym_output_error] = ACTIONS(3231), - [anon_sym_type] = ACTIONS(3231), - [anon_sym_append] = ACTIONS(3231), - [anon_sym_metadata] = ACTIONS(3231), - [anon_sym_move] = ACTIONS(3231), - [anon_sym_read] = ACTIONS(3231), - [anon_sym_workdir] = ACTIONS(3231), - [anon_sym_write] = ACTIONS(3231), - [anon_sym_from_json] = ACTIONS(3231), - [anon_sym_to_json] = ACTIONS(3231), - [anon_sym_to_string] = ACTIONS(3231), - [anon_sym_to_float] = ACTIONS(3231), - [anon_sym_bash] = ACTIONS(3231), - [anon_sym_fish] = ACTIONS(3231), - [anon_sym_raw] = ACTIONS(3231), - [anon_sym_sh] = ACTIONS(3231), - [anon_sym_zsh] = ACTIONS(3231), - [anon_sym_random] = ACTIONS(3231), - [anon_sym_random_boolean] = ACTIONS(3231), - [anon_sym_random_float] = ACTIONS(3231), - [anon_sym_random_integer] = ACTIONS(3231), - [anon_sym_columns] = ACTIONS(3231), - [anon_sym_rows] = ACTIONS(3231), - [anon_sym_reverse] = ACTIONS(3231), - }, - [614] = { - [ts_builtin_sym_end] = ACTIONS(3351), - [sym_identifier] = ACTIONS(3353), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3351), - [anon_sym_RBRACE] = ACTIONS(3351), - [anon_sym_SEMI] = ACTIONS(3351), - [anon_sym_LPAREN] = ACTIONS(3351), - [anon_sym_RPAREN] = ACTIONS(3351), - [anon_sym_COMMA] = ACTIONS(3351), - [sym_integer] = ACTIONS(3353), - [sym_float] = ACTIONS(3351), - [sym_string] = ACTIONS(3351), - [anon_sym_true] = ACTIONS(3353), - [anon_sym_false] = ACTIONS(3353), - [anon_sym_LBRACK] = ACTIONS(3351), - [anon_sym_RBRACK] = ACTIONS(3351), - [anon_sym_EQ] = ACTIONS(3353), - [anon_sym_COLON] = ACTIONS(3351), - [anon_sym_DOT_DOT] = ACTIONS(3351), - [anon_sym_PLUS] = ACTIONS(3353), - [anon_sym_DASH] = ACTIONS(3353), - [anon_sym_STAR] = ACTIONS(3351), - [anon_sym_SLASH] = ACTIONS(3351), - [anon_sym_PERCENT] = ACTIONS(3351), - [anon_sym_EQ_EQ] = ACTIONS(3351), - [anon_sym_BANG_EQ] = ACTIONS(3351), - [anon_sym_AMP_AMP] = ACTIONS(3351), - [anon_sym_PIPE_PIPE] = ACTIONS(3351), - [anon_sym_GT] = ACTIONS(3353), - [anon_sym_LT] = ACTIONS(3353), - [anon_sym_GT_EQ] = ACTIONS(3351), - [anon_sym_LT_EQ] = ACTIONS(3351), - [anon_sym_PLUS_EQ] = ACTIONS(3351), - [anon_sym_DASH_EQ] = ACTIONS(3351), - [anon_sym_if] = ACTIONS(3353), - [anon_sym_elseif] = ACTIONS(3351), - [anon_sym_else] = ACTIONS(3353), - [anon_sym_match] = ACTIONS(3353), - [anon_sym_EQ_GT] = ACTIONS(3351), - [anon_sym_while] = ACTIONS(3353), - [anon_sym_for] = ACTIONS(3353), - [anon_sym_asyncfor] = ACTIONS(3351), - [anon_sym_transform] = ACTIONS(3353), - [anon_sym_filter] = ACTIONS(3353), - [anon_sym_find] = ACTIONS(3353), - [anon_sym_remove] = ACTIONS(3353), - [anon_sym_reduce] = ACTIONS(3353), - [anon_sym_select] = ACTIONS(3353), - [anon_sym_insert] = ACTIONS(3353), - [anon_sym_async] = ACTIONS(3353), - [anon_sym_PIPE] = ACTIONS(3353), - [anon_sym_table] = ACTIONS(3353), - [anon_sym_assert] = ACTIONS(3353), - [anon_sym_assert_equal] = ACTIONS(3353), - [anon_sym_download] = ACTIONS(3353), - [anon_sym_help] = ACTIONS(3353), - [anon_sym_length] = ACTIONS(3353), - [anon_sym_output] = ACTIONS(3353), - [anon_sym_output_error] = ACTIONS(3353), - [anon_sym_type] = ACTIONS(3353), - [anon_sym_append] = ACTIONS(3353), - [anon_sym_metadata] = ACTIONS(3353), - [anon_sym_move] = ACTIONS(3353), - [anon_sym_read] = ACTIONS(3353), - [anon_sym_workdir] = ACTIONS(3353), - [anon_sym_write] = ACTIONS(3353), - [anon_sym_from_json] = ACTIONS(3353), - [anon_sym_to_json] = ACTIONS(3353), - [anon_sym_to_string] = ACTIONS(3353), - [anon_sym_to_float] = ACTIONS(3353), - [anon_sym_bash] = ACTIONS(3353), - [anon_sym_fish] = ACTIONS(3353), - [anon_sym_raw] = ACTIONS(3353), - [anon_sym_sh] = ACTIONS(3353), - [anon_sym_zsh] = ACTIONS(3353), - [anon_sym_random] = ACTIONS(3353), - [anon_sym_random_boolean] = ACTIONS(3353), - [anon_sym_random_float] = ACTIONS(3353), - [anon_sym_random_integer] = ACTIONS(3353), - [anon_sym_columns] = ACTIONS(3353), - [anon_sym_rows] = ACTIONS(3353), - [anon_sym_reverse] = ACTIONS(3353), - }, - [615] = { - [ts_builtin_sym_end] = ACTIONS(3355), - [sym_identifier] = ACTIONS(3357), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3355), - [anon_sym_RBRACE] = ACTIONS(3355), - [anon_sym_SEMI] = ACTIONS(3355), - [anon_sym_LPAREN] = ACTIONS(3355), - [anon_sym_RPAREN] = ACTIONS(3355), - [anon_sym_COMMA] = ACTIONS(3355), - [sym_integer] = ACTIONS(3357), - [sym_float] = ACTIONS(3355), - [sym_string] = ACTIONS(3355), - [anon_sym_true] = ACTIONS(3357), - [anon_sym_false] = ACTIONS(3357), - [anon_sym_LBRACK] = ACTIONS(3355), - [anon_sym_RBRACK] = ACTIONS(3355), - [anon_sym_EQ] = ACTIONS(3357), - [anon_sym_COLON] = ACTIONS(3355), - [anon_sym_DOT_DOT] = ACTIONS(3355), - [anon_sym_PLUS] = ACTIONS(3357), - [anon_sym_DASH] = ACTIONS(3357), - [anon_sym_STAR] = ACTIONS(3355), - [anon_sym_SLASH] = ACTIONS(3355), - [anon_sym_PERCENT] = ACTIONS(3355), - [anon_sym_EQ_EQ] = ACTIONS(3355), - [anon_sym_BANG_EQ] = ACTIONS(3355), - [anon_sym_AMP_AMP] = ACTIONS(3355), - [anon_sym_PIPE_PIPE] = ACTIONS(3355), - [anon_sym_GT] = ACTIONS(3357), - [anon_sym_LT] = ACTIONS(3357), - [anon_sym_GT_EQ] = ACTIONS(3355), - [anon_sym_LT_EQ] = ACTIONS(3355), - [anon_sym_PLUS_EQ] = ACTIONS(3355), - [anon_sym_DASH_EQ] = ACTIONS(3355), - [anon_sym_if] = ACTIONS(3357), - [anon_sym_elseif] = ACTIONS(3355), - [anon_sym_else] = ACTIONS(3357), - [anon_sym_match] = ACTIONS(3357), - [anon_sym_EQ_GT] = ACTIONS(3355), - [anon_sym_while] = ACTIONS(3357), - [anon_sym_for] = ACTIONS(3357), - [anon_sym_asyncfor] = ACTIONS(3355), - [anon_sym_transform] = ACTIONS(3357), - [anon_sym_filter] = ACTIONS(3357), - [anon_sym_find] = ACTIONS(3357), - [anon_sym_remove] = ACTIONS(3357), - [anon_sym_reduce] = ACTIONS(3357), - [anon_sym_select] = ACTIONS(3357), - [anon_sym_insert] = ACTIONS(3357), - [anon_sym_async] = ACTIONS(3357), - [anon_sym_PIPE] = ACTIONS(3357), - [anon_sym_table] = ACTIONS(3357), - [anon_sym_assert] = ACTIONS(3357), - [anon_sym_assert_equal] = ACTIONS(3357), - [anon_sym_download] = ACTIONS(3357), - [anon_sym_help] = ACTIONS(3357), - [anon_sym_length] = ACTIONS(3357), - [anon_sym_output] = ACTIONS(3357), - [anon_sym_output_error] = ACTIONS(3357), - [anon_sym_type] = ACTIONS(3357), - [anon_sym_append] = ACTIONS(3357), - [anon_sym_metadata] = ACTIONS(3357), - [anon_sym_move] = ACTIONS(3357), - [anon_sym_read] = ACTIONS(3357), - [anon_sym_workdir] = ACTIONS(3357), - [anon_sym_write] = ACTIONS(3357), - [anon_sym_from_json] = ACTIONS(3357), - [anon_sym_to_json] = ACTIONS(3357), - [anon_sym_to_string] = ACTIONS(3357), - [anon_sym_to_float] = ACTIONS(3357), - [anon_sym_bash] = ACTIONS(3357), - [anon_sym_fish] = ACTIONS(3357), - [anon_sym_raw] = ACTIONS(3357), - [anon_sym_sh] = ACTIONS(3357), - [anon_sym_zsh] = ACTIONS(3357), - [anon_sym_random] = ACTIONS(3357), - [anon_sym_random_boolean] = ACTIONS(3357), - [anon_sym_random_float] = ACTIONS(3357), - [anon_sym_random_integer] = ACTIONS(3357), - [anon_sym_columns] = ACTIONS(3357), - [anon_sym_rows] = ACTIONS(3357), - [anon_sym_reverse] = ACTIONS(3357), - }, - [616] = { - [sym_math_operator] = STATE(1316), - [sym_logic_operator] = STATE(1285), - [ts_builtin_sym_end] = ACTIONS(3262), - [sym_identifier] = ACTIONS(3264), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3262), - [anon_sym_SEMI] = ACTIONS(3262), - [anon_sym_LPAREN] = ACTIONS(3262), - [anon_sym_RPAREN] = ACTIONS(3262), - [anon_sym_COMMA] = ACTIONS(3262), - [sym_integer] = ACTIONS(3264), - [sym_float] = ACTIONS(3262), - [sym_string] = ACTIONS(3262), - [anon_sym_true] = ACTIONS(3264), - [anon_sym_false] = ACTIONS(3264), - [anon_sym_LBRACK] = ACTIONS(3262), - [anon_sym_RBRACK] = ACTIONS(3262), - [anon_sym_EQ] = ACTIONS(3264), - [anon_sym_COLON] = ACTIONS(3262), - [anon_sym_DOT_DOT] = ACTIONS(3262), - [anon_sym_PLUS] = ACTIONS(3264), - [anon_sym_DASH] = ACTIONS(3264), - [anon_sym_STAR] = ACTIONS(3262), - [anon_sym_SLASH] = ACTIONS(3262), - [anon_sym_PERCENT] = ACTIONS(3262), - [anon_sym_EQ_EQ] = ACTIONS(3262), - [anon_sym_BANG_EQ] = ACTIONS(3262), - [anon_sym_AMP_AMP] = ACTIONS(3262), - [anon_sym_PIPE_PIPE] = ACTIONS(3262), - [anon_sym_GT] = ACTIONS(3264), - [anon_sym_LT] = ACTIONS(3264), - [anon_sym_GT_EQ] = ACTIONS(3262), - [anon_sym_LT_EQ] = ACTIONS(3262), - [anon_sym_PLUS_EQ] = ACTIONS(3262), - [anon_sym_DASH_EQ] = ACTIONS(3262), - [anon_sym_if] = ACTIONS(3264), - [anon_sym_match] = ACTIONS(3264), - [anon_sym_EQ_GT] = ACTIONS(3262), - [anon_sym_while] = ACTIONS(3264), - [anon_sym_for] = ACTIONS(3264), - [anon_sym_asyncfor] = ACTIONS(3262), - [anon_sym_transform] = ACTIONS(3264), - [anon_sym_filter] = ACTIONS(3264), - [anon_sym_find] = ACTIONS(3264), - [anon_sym_remove] = ACTIONS(3264), - [anon_sym_reduce] = ACTIONS(3264), - [anon_sym_select] = ACTIONS(3264), - [anon_sym_insert] = ACTIONS(3264), - [anon_sym_async] = ACTIONS(3264), - [anon_sym_PIPE] = ACTIONS(3264), - [anon_sym_table] = ACTIONS(3264), - [anon_sym_assert] = ACTIONS(3264), - [anon_sym_assert_equal] = ACTIONS(3264), - [anon_sym_download] = ACTIONS(3264), - [anon_sym_help] = ACTIONS(3264), - [anon_sym_length] = ACTIONS(3264), - [anon_sym_output] = ACTIONS(3264), - [anon_sym_output_error] = ACTIONS(3264), - [anon_sym_type] = ACTIONS(3264), - [anon_sym_append] = ACTIONS(3264), - [anon_sym_metadata] = ACTIONS(3264), - [anon_sym_move] = ACTIONS(3264), - [anon_sym_read] = ACTIONS(3264), - [anon_sym_workdir] = ACTIONS(3264), - [anon_sym_write] = ACTIONS(3264), - [anon_sym_from_json] = ACTIONS(3264), - [anon_sym_to_json] = ACTIONS(3264), - [anon_sym_to_string] = ACTIONS(3264), - [anon_sym_to_float] = ACTIONS(3264), - [anon_sym_bash] = ACTIONS(3264), - [anon_sym_fish] = ACTIONS(3264), - [anon_sym_raw] = ACTIONS(3264), - [anon_sym_sh] = ACTIONS(3264), - [anon_sym_zsh] = ACTIONS(3264), - [anon_sym_random] = ACTIONS(3264), - [anon_sym_random_boolean] = ACTIONS(3264), - [anon_sym_random_float] = ACTIONS(3264), - [anon_sym_random_integer] = ACTIONS(3264), - [anon_sym_columns] = ACTIONS(3264), - [anon_sym_rows] = ACTIONS(3264), - [anon_sym_reverse] = ACTIONS(3264), - }, - [617] = { - [ts_builtin_sym_end] = ACTIONS(3359), - [sym_identifier] = ACTIONS(3361), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3359), - [anon_sym_RBRACE] = ACTIONS(3359), - [anon_sym_SEMI] = ACTIONS(3359), - [anon_sym_LPAREN] = ACTIONS(3359), - [anon_sym_RPAREN] = ACTIONS(3359), - [anon_sym_COMMA] = ACTIONS(3359), - [sym_integer] = ACTIONS(3361), - [sym_float] = ACTIONS(3359), - [sym_string] = ACTIONS(3359), - [anon_sym_true] = ACTIONS(3361), - [anon_sym_false] = ACTIONS(3361), - [anon_sym_LBRACK] = ACTIONS(3359), - [anon_sym_RBRACK] = ACTIONS(3359), - [anon_sym_EQ] = ACTIONS(3361), - [anon_sym_COLON] = ACTIONS(3359), - [anon_sym_DOT_DOT] = ACTIONS(3359), - [anon_sym_PLUS] = ACTIONS(3361), - [anon_sym_DASH] = ACTIONS(3361), - [anon_sym_STAR] = ACTIONS(3359), - [anon_sym_SLASH] = ACTIONS(3359), - [anon_sym_PERCENT] = ACTIONS(3359), - [anon_sym_EQ_EQ] = ACTIONS(3359), - [anon_sym_BANG_EQ] = ACTIONS(3359), - [anon_sym_AMP_AMP] = ACTIONS(3359), - [anon_sym_PIPE_PIPE] = ACTIONS(3359), - [anon_sym_GT] = ACTIONS(3361), - [anon_sym_LT] = ACTIONS(3361), - [anon_sym_GT_EQ] = ACTIONS(3359), - [anon_sym_LT_EQ] = ACTIONS(3359), - [anon_sym_PLUS_EQ] = ACTIONS(3359), - [anon_sym_DASH_EQ] = ACTIONS(3359), - [anon_sym_if] = ACTIONS(3361), - [anon_sym_elseif] = ACTIONS(3359), - [anon_sym_else] = ACTIONS(3361), - [anon_sym_match] = ACTIONS(3361), - [anon_sym_EQ_GT] = ACTIONS(3359), - [anon_sym_while] = ACTIONS(3361), - [anon_sym_for] = ACTIONS(3361), - [anon_sym_asyncfor] = ACTIONS(3359), - [anon_sym_transform] = ACTIONS(3361), - [anon_sym_filter] = ACTIONS(3361), - [anon_sym_find] = ACTIONS(3361), - [anon_sym_remove] = ACTIONS(3361), - [anon_sym_reduce] = ACTIONS(3361), - [anon_sym_select] = ACTIONS(3361), - [anon_sym_insert] = ACTIONS(3361), - [anon_sym_async] = ACTIONS(3361), - [anon_sym_PIPE] = ACTIONS(3361), - [anon_sym_table] = ACTIONS(3361), - [anon_sym_assert] = ACTIONS(3361), - [anon_sym_assert_equal] = ACTIONS(3361), - [anon_sym_download] = ACTIONS(3361), - [anon_sym_help] = ACTIONS(3361), - [anon_sym_length] = ACTIONS(3361), - [anon_sym_output] = ACTIONS(3361), - [anon_sym_output_error] = ACTIONS(3361), - [anon_sym_type] = ACTIONS(3361), - [anon_sym_append] = ACTIONS(3361), - [anon_sym_metadata] = ACTIONS(3361), - [anon_sym_move] = ACTIONS(3361), - [anon_sym_read] = ACTIONS(3361), - [anon_sym_workdir] = ACTIONS(3361), - [anon_sym_write] = ACTIONS(3361), - [anon_sym_from_json] = ACTIONS(3361), - [anon_sym_to_json] = ACTIONS(3361), - [anon_sym_to_string] = ACTIONS(3361), - [anon_sym_to_float] = ACTIONS(3361), - [anon_sym_bash] = ACTIONS(3361), - [anon_sym_fish] = ACTIONS(3361), - [anon_sym_raw] = ACTIONS(3361), - [anon_sym_sh] = ACTIONS(3361), - [anon_sym_zsh] = ACTIONS(3361), - [anon_sym_random] = ACTIONS(3361), - [anon_sym_random_boolean] = ACTIONS(3361), - [anon_sym_random_float] = ACTIONS(3361), - [anon_sym_random_integer] = ACTIONS(3361), - [anon_sym_columns] = ACTIONS(3361), - [anon_sym_rows] = ACTIONS(3361), - [anon_sym_reverse] = ACTIONS(3361), - }, - [618] = { - [ts_builtin_sym_end] = ACTIONS(3363), - [sym_identifier] = ACTIONS(3365), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3363), - [anon_sym_RBRACE] = ACTIONS(3363), - [anon_sym_SEMI] = ACTIONS(3363), - [anon_sym_LPAREN] = ACTIONS(3363), - [anon_sym_RPAREN] = ACTIONS(3363), - [anon_sym_COMMA] = ACTIONS(3363), - [sym_integer] = ACTIONS(3365), - [sym_float] = ACTIONS(3363), - [sym_string] = ACTIONS(3363), - [anon_sym_true] = ACTIONS(3365), - [anon_sym_false] = ACTIONS(3365), - [anon_sym_LBRACK] = ACTIONS(3363), - [anon_sym_RBRACK] = ACTIONS(3363), - [anon_sym_EQ] = ACTIONS(3365), - [anon_sym_COLON] = ACTIONS(3363), - [anon_sym_DOT_DOT] = ACTIONS(3363), - [anon_sym_PLUS] = ACTIONS(3365), - [anon_sym_DASH] = ACTIONS(3365), - [anon_sym_STAR] = ACTIONS(3363), - [anon_sym_SLASH] = ACTIONS(3363), - [anon_sym_PERCENT] = ACTIONS(3363), - [anon_sym_EQ_EQ] = ACTIONS(3363), - [anon_sym_BANG_EQ] = ACTIONS(3363), - [anon_sym_AMP_AMP] = ACTIONS(3363), - [anon_sym_PIPE_PIPE] = ACTIONS(3363), - [anon_sym_GT] = ACTIONS(3365), - [anon_sym_LT] = ACTIONS(3365), - [anon_sym_GT_EQ] = ACTIONS(3363), - [anon_sym_LT_EQ] = ACTIONS(3363), - [anon_sym_PLUS_EQ] = ACTIONS(3363), - [anon_sym_DASH_EQ] = ACTIONS(3363), - [anon_sym_if] = ACTIONS(3365), - [anon_sym_elseif] = ACTIONS(3363), - [anon_sym_else] = ACTIONS(3365), - [anon_sym_match] = ACTIONS(3365), - [anon_sym_EQ_GT] = ACTIONS(3363), - [anon_sym_while] = ACTIONS(3365), - [anon_sym_for] = ACTIONS(3365), - [anon_sym_asyncfor] = ACTIONS(3363), - [anon_sym_transform] = ACTIONS(3365), - [anon_sym_filter] = ACTIONS(3365), - [anon_sym_find] = ACTIONS(3365), - [anon_sym_remove] = ACTIONS(3365), - [anon_sym_reduce] = ACTIONS(3365), - [anon_sym_select] = ACTIONS(3365), - [anon_sym_insert] = ACTIONS(3365), - [anon_sym_async] = ACTIONS(3365), - [anon_sym_PIPE] = ACTIONS(3365), - [anon_sym_table] = ACTIONS(3365), - [anon_sym_assert] = ACTIONS(3365), - [anon_sym_assert_equal] = ACTIONS(3365), - [anon_sym_download] = ACTIONS(3365), - [anon_sym_help] = ACTIONS(3365), - [anon_sym_length] = ACTIONS(3365), - [anon_sym_output] = ACTIONS(3365), - [anon_sym_output_error] = ACTIONS(3365), - [anon_sym_type] = ACTIONS(3365), - [anon_sym_append] = ACTIONS(3365), - [anon_sym_metadata] = ACTIONS(3365), - [anon_sym_move] = ACTIONS(3365), - [anon_sym_read] = ACTIONS(3365), - [anon_sym_workdir] = ACTIONS(3365), - [anon_sym_write] = ACTIONS(3365), - [anon_sym_from_json] = ACTIONS(3365), - [anon_sym_to_json] = ACTIONS(3365), - [anon_sym_to_string] = ACTIONS(3365), - [anon_sym_to_float] = ACTIONS(3365), - [anon_sym_bash] = ACTIONS(3365), - [anon_sym_fish] = ACTIONS(3365), - [anon_sym_raw] = ACTIONS(3365), - [anon_sym_sh] = ACTIONS(3365), - [anon_sym_zsh] = ACTIONS(3365), - [anon_sym_random] = ACTIONS(3365), - [anon_sym_random_boolean] = ACTIONS(3365), - [anon_sym_random_float] = ACTIONS(3365), - [anon_sym_random_integer] = ACTIONS(3365), - [anon_sym_columns] = ACTIONS(3365), - [anon_sym_rows] = ACTIONS(3365), - [anon_sym_reverse] = ACTIONS(3365), - }, - [619] = { - [ts_builtin_sym_end] = ACTIONS(3367), - [sym_identifier] = ACTIONS(3369), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3367), - [anon_sym_RBRACE] = ACTIONS(3367), - [anon_sym_SEMI] = ACTIONS(3367), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_RPAREN] = ACTIONS(3367), - [anon_sym_COMMA] = ACTIONS(3367), - [sym_integer] = ACTIONS(3369), - [sym_float] = ACTIONS(3367), - [sym_string] = ACTIONS(3367), - [anon_sym_true] = ACTIONS(3369), - [anon_sym_false] = ACTIONS(3369), - [anon_sym_LBRACK] = ACTIONS(3367), - [anon_sym_RBRACK] = ACTIONS(3367), - [anon_sym_EQ] = ACTIONS(3369), - [anon_sym_COLON] = ACTIONS(3367), - [anon_sym_DOT_DOT] = ACTIONS(3367), - [anon_sym_PLUS] = ACTIONS(3369), - [anon_sym_DASH] = ACTIONS(3369), - [anon_sym_STAR] = ACTIONS(3367), - [anon_sym_SLASH] = ACTIONS(3367), - [anon_sym_PERCENT] = ACTIONS(3367), - [anon_sym_EQ_EQ] = ACTIONS(3367), - [anon_sym_BANG_EQ] = ACTIONS(3367), - [anon_sym_AMP_AMP] = ACTIONS(3367), - [anon_sym_PIPE_PIPE] = ACTIONS(3367), - [anon_sym_GT] = ACTIONS(3369), - [anon_sym_LT] = ACTIONS(3369), - [anon_sym_GT_EQ] = ACTIONS(3367), - [anon_sym_LT_EQ] = ACTIONS(3367), - [anon_sym_PLUS_EQ] = ACTIONS(3367), - [anon_sym_DASH_EQ] = ACTIONS(3367), - [anon_sym_if] = ACTIONS(3369), - [anon_sym_elseif] = ACTIONS(3367), - [anon_sym_else] = ACTIONS(3369), - [anon_sym_match] = ACTIONS(3369), - [anon_sym_EQ_GT] = ACTIONS(3367), - [anon_sym_while] = ACTIONS(3369), - [anon_sym_for] = ACTIONS(3369), - [anon_sym_asyncfor] = ACTIONS(3367), - [anon_sym_transform] = ACTIONS(3369), - [anon_sym_filter] = ACTIONS(3369), - [anon_sym_find] = ACTIONS(3369), - [anon_sym_remove] = ACTIONS(3369), - [anon_sym_reduce] = ACTIONS(3369), - [anon_sym_select] = ACTIONS(3369), - [anon_sym_insert] = ACTIONS(3369), - [anon_sym_async] = ACTIONS(3369), - [anon_sym_PIPE] = ACTIONS(3369), - [anon_sym_table] = ACTIONS(3369), - [anon_sym_assert] = ACTIONS(3369), - [anon_sym_assert_equal] = ACTIONS(3369), - [anon_sym_download] = ACTIONS(3369), - [anon_sym_help] = ACTIONS(3369), - [anon_sym_length] = ACTIONS(3369), - [anon_sym_output] = ACTIONS(3369), - [anon_sym_output_error] = ACTIONS(3369), - [anon_sym_type] = ACTIONS(3369), - [anon_sym_append] = ACTIONS(3369), - [anon_sym_metadata] = ACTIONS(3369), - [anon_sym_move] = ACTIONS(3369), - [anon_sym_read] = ACTIONS(3369), - [anon_sym_workdir] = ACTIONS(3369), - [anon_sym_write] = ACTIONS(3369), - [anon_sym_from_json] = ACTIONS(3369), - [anon_sym_to_json] = ACTIONS(3369), - [anon_sym_to_string] = ACTIONS(3369), - [anon_sym_to_float] = ACTIONS(3369), - [anon_sym_bash] = ACTIONS(3369), - [anon_sym_fish] = ACTIONS(3369), - [anon_sym_raw] = ACTIONS(3369), - [anon_sym_sh] = ACTIONS(3369), - [anon_sym_zsh] = ACTIONS(3369), - [anon_sym_random] = ACTIONS(3369), - [anon_sym_random_boolean] = ACTIONS(3369), - [anon_sym_random_float] = ACTIONS(3369), - [anon_sym_random_integer] = ACTIONS(3369), - [anon_sym_columns] = ACTIONS(3369), - [anon_sym_rows] = ACTIONS(3369), - [anon_sym_reverse] = ACTIONS(3369), - }, - [620] = { - [sym_assignment_operator] = STATE(542), - [ts_builtin_sym_end] = ACTIONS(2435), - [sym_identifier] = ACTIONS(2437), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_RBRACE] = ACTIONS(2435), - [anon_sym_SEMI] = ACTIONS(2435), - [anon_sym_LPAREN] = ACTIONS(2435), - [anon_sym_RPAREN] = ACTIONS(2435), - [anon_sym_COMMA] = ACTIONS(2435), - [sym_integer] = ACTIONS(2437), - [sym_float] = ACTIONS(2435), - [sym_string] = ACTIONS(2435), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [anon_sym_LBRACK] = ACTIONS(2435), - [anon_sym_RBRACK] = ACTIONS(2435), - [anon_sym_EQ] = ACTIONS(2439), - [anon_sym_COLON] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_PERCENT] = ACTIONS(2435), - [anon_sym_EQ_EQ] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_PIPE_PIPE] = ACTIONS(2435), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_PLUS_EQ] = ACTIONS(2441), - [anon_sym_DASH_EQ] = ACTIONS(2441), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_elseif] = ACTIONS(2435), - [anon_sym_else] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_EQ_GT] = ACTIONS(2435), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_asyncfor] = ACTIONS(2435), - [anon_sym_transform] = ACTIONS(2437), - [anon_sym_filter] = ACTIONS(2437), - [anon_sym_find] = ACTIONS(2437), - [anon_sym_remove] = ACTIONS(2437), - [anon_sym_reduce] = ACTIONS(2437), - [anon_sym_select] = ACTIONS(2437), - [anon_sym_insert] = ACTIONS(2437), - [anon_sym_async] = ACTIONS(2437), - [anon_sym_PIPE] = ACTIONS(2437), - [anon_sym_table] = ACTIONS(2437), - [anon_sym_assert] = ACTIONS(2437), - [anon_sym_assert_equal] = ACTIONS(2437), - [anon_sym_download] = ACTIONS(2437), - [anon_sym_help] = ACTIONS(2437), - [anon_sym_length] = ACTIONS(2437), - [anon_sym_output] = ACTIONS(2437), - [anon_sym_output_error] = ACTIONS(2437), - [anon_sym_type] = ACTIONS(2437), - [anon_sym_append] = ACTIONS(2437), - [anon_sym_metadata] = ACTIONS(2437), - [anon_sym_move] = ACTIONS(2437), - [anon_sym_read] = ACTIONS(2437), - [anon_sym_workdir] = ACTIONS(2437), - [anon_sym_write] = ACTIONS(2437), - [anon_sym_from_json] = ACTIONS(2437), - [anon_sym_to_json] = ACTIONS(2437), - [anon_sym_to_string] = ACTIONS(2437), - [anon_sym_to_float] = ACTIONS(2437), - [anon_sym_bash] = ACTIONS(2437), - [anon_sym_fish] = ACTIONS(2437), - [anon_sym_raw] = ACTIONS(2437), - [anon_sym_sh] = ACTIONS(2437), - [anon_sym_zsh] = ACTIONS(2437), - [anon_sym_random] = ACTIONS(2437), - [anon_sym_random_boolean] = ACTIONS(2437), - [anon_sym_random_float] = ACTIONS(2437), - [anon_sym_random_integer] = ACTIONS(2437), - [anon_sym_columns] = ACTIONS(2437), - [anon_sym_rows] = ACTIONS(2437), - [anon_sym_reverse] = ACTIONS(2437), - }, - [621] = { - [sym_math_operator] = STATE(1414), - [sym_logic_operator] = STATE(1413), - [ts_builtin_sym_end] = ACTIONS(3262), - [sym_identifier] = ACTIONS(3264), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3262), - [anon_sym_SEMI] = ACTIONS(3262), - [anon_sym_LPAREN] = ACTIONS(3262), - [anon_sym_RPAREN] = ACTIONS(3262), - [sym_integer] = ACTIONS(3264), - [sym_float] = ACTIONS(3262), - [sym_string] = ACTIONS(3262), - [anon_sym_true] = ACTIONS(3264), - [anon_sym_false] = ACTIONS(3264), - [anon_sym_LBRACK] = ACTIONS(3262), - [anon_sym_EQ] = ACTIONS(3264), - [anon_sym_COLON] = ACTIONS(3262), - [anon_sym_DOT_DOT] = ACTIONS(3262), - [anon_sym_PLUS] = ACTIONS(3264), - [anon_sym_DASH] = ACTIONS(3264), - [anon_sym_STAR] = ACTIONS(3262), - [anon_sym_SLASH] = ACTIONS(3262), - [anon_sym_PERCENT] = ACTIONS(3262), - [anon_sym_EQ_EQ] = ACTIONS(3262), - [anon_sym_BANG_EQ] = ACTIONS(3262), - [anon_sym_AMP_AMP] = ACTIONS(3262), - [anon_sym_PIPE_PIPE] = ACTIONS(3262), - [anon_sym_GT] = ACTIONS(3264), - [anon_sym_LT] = ACTIONS(3264), - [anon_sym_GT_EQ] = ACTIONS(3262), - [anon_sym_LT_EQ] = ACTIONS(3262), - [anon_sym_PLUS_EQ] = ACTIONS(3262), - [anon_sym_DASH_EQ] = ACTIONS(3262), - [anon_sym_if] = ACTIONS(3264), - [anon_sym_elseif] = ACTIONS(3262), - [anon_sym_else] = ACTIONS(3264), - [anon_sym_match] = ACTIONS(3264), - [anon_sym_EQ_GT] = ACTIONS(3262), - [anon_sym_while] = ACTIONS(3264), - [anon_sym_for] = ACTIONS(3264), - [anon_sym_asyncfor] = ACTIONS(3262), - [anon_sym_transform] = ACTIONS(3264), - [anon_sym_filter] = ACTIONS(3264), - [anon_sym_find] = ACTIONS(3264), - [anon_sym_remove] = ACTIONS(3264), - [anon_sym_reduce] = ACTIONS(3264), - [anon_sym_select] = ACTIONS(3264), - [anon_sym_insert] = ACTIONS(3264), - [anon_sym_async] = ACTIONS(3264), - [anon_sym_PIPE] = ACTIONS(3264), - [anon_sym_table] = ACTIONS(3264), - [anon_sym_assert] = ACTIONS(3264), - [anon_sym_assert_equal] = ACTIONS(3264), - [anon_sym_download] = ACTIONS(3264), - [anon_sym_help] = ACTIONS(3264), - [anon_sym_length] = ACTIONS(3264), - [anon_sym_output] = ACTIONS(3264), - [anon_sym_output_error] = ACTIONS(3264), - [anon_sym_type] = ACTIONS(3264), - [anon_sym_append] = ACTIONS(3264), - [anon_sym_metadata] = ACTIONS(3264), - [anon_sym_move] = ACTIONS(3264), - [anon_sym_read] = ACTIONS(3264), - [anon_sym_workdir] = ACTIONS(3264), - [anon_sym_write] = ACTIONS(3264), - [anon_sym_from_json] = ACTIONS(3264), - [anon_sym_to_json] = ACTIONS(3264), - [anon_sym_to_string] = ACTIONS(3264), - [anon_sym_to_float] = ACTIONS(3264), - [anon_sym_bash] = ACTIONS(3264), - [anon_sym_fish] = ACTIONS(3264), - [anon_sym_raw] = ACTIONS(3264), - [anon_sym_sh] = ACTIONS(3264), - [anon_sym_zsh] = ACTIONS(3264), - [anon_sym_random] = ACTIONS(3264), - [anon_sym_random_boolean] = ACTIONS(3264), - [anon_sym_random_float] = ACTIONS(3264), - [anon_sym_random_integer] = ACTIONS(3264), - [anon_sym_columns] = ACTIONS(3264), - [anon_sym_rows] = ACTIONS(3264), - [anon_sym_reverse] = ACTIONS(3264), - }, - [622] = { - [ts_builtin_sym_end] = ACTIONS(3371), - [sym_identifier] = ACTIONS(3373), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3371), - [anon_sym_RBRACE] = ACTIONS(3371), - [anon_sym_SEMI] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3371), - [anon_sym_RPAREN] = ACTIONS(3371), - [anon_sym_COMMA] = ACTIONS(3371), - [sym_integer] = ACTIONS(3373), - [sym_float] = ACTIONS(3371), - [sym_string] = ACTIONS(3371), - [anon_sym_true] = ACTIONS(3373), - [anon_sym_false] = ACTIONS(3373), - [anon_sym_LBRACK] = ACTIONS(3371), - [anon_sym_RBRACK] = ACTIONS(3371), - [anon_sym_EQ] = ACTIONS(3373), - [anon_sym_COLON] = ACTIONS(3371), - [anon_sym_DOT_DOT] = ACTIONS(3371), - [anon_sym_PLUS] = ACTIONS(3373), - [anon_sym_DASH] = ACTIONS(3373), - [anon_sym_STAR] = ACTIONS(3371), - [anon_sym_SLASH] = ACTIONS(3371), - [anon_sym_PERCENT] = ACTIONS(3371), - [anon_sym_EQ_EQ] = ACTIONS(3371), - [anon_sym_BANG_EQ] = ACTIONS(3371), - [anon_sym_AMP_AMP] = ACTIONS(3371), - [anon_sym_PIPE_PIPE] = ACTIONS(3371), - [anon_sym_GT] = ACTIONS(3373), - [anon_sym_LT] = ACTIONS(3373), - [anon_sym_GT_EQ] = ACTIONS(3371), - [anon_sym_LT_EQ] = ACTIONS(3371), - [anon_sym_PLUS_EQ] = ACTIONS(3371), - [anon_sym_DASH_EQ] = ACTIONS(3371), - [anon_sym_if] = ACTIONS(3373), - [anon_sym_elseif] = ACTIONS(3371), - [anon_sym_else] = ACTIONS(3373), - [anon_sym_match] = ACTIONS(3373), - [anon_sym_EQ_GT] = ACTIONS(3371), - [anon_sym_while] = ACTIONS(3373), - [anon_sym_for] = ACTIONS(3373), - [anon_sym_asyncfor] = ACTIONS(3371), - [anon_sym_transform] = ACTIONS(3373), - [anon_sym_filter] = ACTIONS(3373), - [anon_sym_find] = ACTIONS(3373), - [anon_sym_remove] = ACTIONS(3373), - [anon_sym_reduce] = ACTIONS(3373), - [anon_sym_select] = ACTIONS(3373), - [anon_sym_insert] = ACTIONS(3373), - [anon_sym_async] = ACTIONS(3373), - [anon_sym_PIPE] = ACTIONS(3373), - [anon_sym_table] = ACTIONS(3373), - [anon_sym_assert] = ACTIONS(3373), - [anon_sym_assert_equal] = ACTIONS(3373), - [anon_sym_download] = ACTIONS(3373), - [anon_sym_help] = ACTIONS(3373), - [anon_sym_length] = ACTIONS(3373), - [anon_sym_output] = ACTIONS(3373), - [anon_sym_output_error] = ACTIONS(3373), - [anon_sym_type] = ACTIONS(3373), - [anon_sym_append] = ACTIONS(3373), - [anon_sym_metadata] = ACTIONS(3373), - [anon_sym_move] = ACTIONS(3373), - [anon_sym_read] = ACTIONS(3373), - [anon_sym_workdir] = ACTIONS(3373), - [anon_sym_write] = ACTIONS(3373), - [anon_sym_from_json] = ACTIONS(3373), - [anon_sym_to_json] = ACTIONS(3373), - [anon_sym_to_string] = ACTIONS(3373), - [anon_sym_to_float] = ACTIONS(3373), - [anon_sym_bash] = ACTIONS(3373), - [anon_sym_fish] = ACTIONS(3373), - [anon_sym_raw] = ACTIONS(3373), - [anon_sym_sh] = ACTIONS(3373), - [anon_sym_zsh] = ACTIONS(3373), - [anon_sym_random] = ACTIONS(3373), - [anon_sym_random_boolean] = ACTIONS(3373), - [anon_sym_random_float] = ACTIONS(3373), - [anon_sym_random_integer] = ACTIONS(3373), - [anon_sym_columns] = ACTIONS(3373), - [anon_sym_rows] = ACTIONS(3373), - [anon_sym_reverse] = ACTIONS(3373), - }, - [623] = { - [ts_builtin_sym_end] = ACTIONS(3375), - [sym_identifier] = ACTIONS(3377), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3375), - [anon_sym_RBRACE] = ACTIONS(3375), - [anon_sym_SEMI] = ACTIONS(3375), - [anon_sym_LPAREN] = ACTIONS(3375), - [anon_sym_RPAREN] = ACTIONS(3375), - [anon_sym_COMMA] = ACTIONS(3375), - [sym_integer] = ACTIONS(3377), - [sym_float] = ACTIONS(3375), - [sym_string] = ACTIONS(3375), - [anon_sym_true] = ACTIONS(3377), - [anon_sym_false] = ACTIONS(3377), - [anon_sym_LBRACK] = ACTIONS(3375), - [anon_sym_RBRACK] = ACTIONS(3375), - [anon_sym_EQ] = ACTIONS(3377), - [anon_sym_COLON] = ACTIONS(3375), - [anon_sym_DOT_DOT] = ACTIONS(3375), - [anon_sym_PLUS] = ACTIONS(3377), - [anon_sym_DASH] = ACTIONS(3377), - [anon_sym_STAR] = ACTIONS(3375), - [anon_sym_SLASH] = ACTIONS(3375), - [anon_sym_PERCENT] = ACTIONS(3375), - [anon_sym_EQ_EQ] = ACTIONS(3375), - [anon_sym_BANG_EQ] = ACTIONS(3375), - [anon_sym_AMP_AMP] = ACTIONS(3375), - [anon_sym_PIPE_PIPE] = ACTIONS(3375), - [anon_sym_GT] = ACTIONS(3377), - [anon_sym_LT] = ACTIONS(3377), - [anon_sym_GT_EQ] = ACTIONS(3375), - [anon_sym_LT_EQ] = ACTIONS(3375), - [anon_sym_PLUS_EQ] = ACTIONS(3375), - [anon_sym_DASH_EQ] = ACTIONS(3375), - [anon_sym_if] = ACTIONS(3377), - [anon_sym_elseif] = ACTIONS(3375), - [anon_sym_else] = ACTIONS(3377), - [anon_sym_match] = ACTIONS(3377), - [anon_sym_EQ_GT] = ACTIONS(3375), - [anon_sym_while] = ACTIONS(3377), - [anon_sym_for] = ACTIONS(3377), - [anon_sym_asyncfor] = ACTIONS(3375), - [anon_sym_transform] = ACTIONS(3377), - [anon_sym_filter] = ACTIONS(3377), - [anon_sym_find] = ACTIONS(3377), - [anon_sym_remove] = ACTIONS(3377), - [anon_sym_reduce] = ACTIONS(3377), - [anon_sym_select] = ACTIONS(3377), - [anon_sym_insert] = ACTIONS(3377), - [anon_sym_async] = ACTIONS(3377), - [anon_sym_PIPE] = ACTIONS(3377), - [anon_sym_table] = ACTIONS(3377), - [anon_sym_assert] = ACTIONS(3377), - [anon_sym_assert_equal] = ACTIONS(3377), - [anon_sym_download] = ACTIONS(3377), - [anon_sym_help] = ACTIONS(3377), - [anon_sym_length] = ACTIONS(3377), - [anon_sym_output] = ACTIONS(3377), - [anon_sym_output_error] = ACTIONS(3377), - [anon_sym_type] = ACTIONS(3377), - [anon_sym_append] = ACTIONS(3377), - [anon_sym_metadata] = ACTIONS(3377), - [anon_sym_move] = ACTIONS(3377), - [anon_sym_read] = ACTIONS(3377), - [anon_sym_workdir] = ACTIONS(3377), - [anon_sym_write] = ACTIONS(3377), - [anon_sym_from_json] = ACTIONS(3377), - [anon_sym_to_json] = ACTIONS(3377), - [anon_sym_to_string] = ACTIONS(3377), - [anon_sym_to_float] = ACTIONS(3377), - [anon_sym_bash] = ACTIONS(3377), - [anon_sym_fish] = ACTIONS(3377), - [anon_sym_raw] = ACTIONS(3377), - [anon_sym_sh] = ACTIONS(3377), - [anon_sym_zsh] = ACTIONS(3377), - [anon_sym_random] = ACTIONS(3377), - [anon_sym_random_boolean] = ACTIONS(3377), - [anon_sym_random_float] = ACTIONS(3377), - [anon_sym_random_integer] = ACTIONS(3377), - [anon_sym_columns] = ACTIONS(3377), - [anon_sym_rows] = ACTIONS(3377), - [anon_sym_reverse] = ACTIONS(3377), - }, - [624] = { - [ts_builtin_sym_end] = ACTIONS(3379), - [sym_identifier] = ACTIONS(3381), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3379), - [anon_sym_RBRACE] = ACTIONS(3379), - [anon_sym_SEMI] = ACTIONS(3379), - [anon_sym_LPAREN] = ACTIONS(3379), - [anon_sym_RPAREN] = ACTIONS(3379), - [anon_sym_COMMA] = ACTIONS(3379), - [sym_integer] = ACTIONS(3381), - [sym_float] = ACTIONS(3379), - [sym_string] = ACTIONS(3379), - [anon_sym_true] = ACTIONS(3381), - [anon_sym_false] = ACTIONS(3381), - [anon_sym_LBRACK] = ACTIONS(3379), - [anon_sym_RBRACK] = ACTIONS(3379), - [anon_sym_EQ] = ACTIONS(3381), - [anon_sym_COLON] = ACTIONS(3379), - [anon_sym_DOT_DOT] = ACTIONS(3379), - [anon_sym_PLUS] = ACTIONS(3381), - [anon_sym_DASH] = ACTIONS(3381), - [anon_sym_STAR] = ACTIONS(3379), - [anon_sym_SLASH] = ACTIONS(3379), - [anon_sym_PERCENT] = ACTIONS(3379), - [anon_sym_EQ_EQ] = ACTIONS(3379), - [anon_sym_BANG_EQ] = ACTIONS(3379), - [anon_sym_AMP_AMP] = ACTIONS(3379), - [anon_sym_PIPE_PIPE] = ACTIONS(3379), - [anon_sym_GT] = ACTIONS(3381), - [anon_sym_LT] = ACTIONS(3381), - [anon_sym_GT_EQ] = ACTIONS(3379), - [anon_sym_LT_EQ] = ACTIONS(3379), - [anon_sym_PLUS_EQ] = ACTIONS(3379), - [anon_sym_DASH_EQ] = ACTIONS(3379), - [anon_sym_if] = ACTIONS(3381), - [anon_sym_elseif] = ACTIONS(3379), - [anon_sym_else] = ACTIONS(3381), - [anon_sym_match] = ACTIONS(3381), - [anon_sym_EQ_GT] = ACTIONS(3379), - [anon_sym_while] = ACTIONS(3381), - [anon_sym_for] = ACTIONS(3381), - [anon_sym_asyncfor] = ACTIONS(3379), - [anon_sym_transform] = ACTIONS(3381), - [anon_sym_filter] = ACTIONS(3381), - [anon_sym_find] = ACTIONS(3381), - [anon_sym_remove] = ACTIONS(3381), - [anon_sym_reduce] = ACTIONS(3381), - [anon_sym_select] = ACTIONS(3381), - [anon_sym_insert] = ACTIONS(3381), - [anon_sym_async] = ACTIONS(3381), - [anon_sym_PIPE] = ACTIONS(3381), - [anon_sym_table] = ACTIONS(3381), - [anon_sym_assert] = ACTIONS(3381), - [anon_sym_assert_equal] = ACTIONS(3381), - [anon_sym_download] = ACTIONS(3381), - [anon_sym_help] = ACTIONS(3381), - [anon_sym_length] = ACTIONS(3381), - [anon_sym_output] = ACTIONS(3381), - [anon_sym_output_error] = ACTIONS(3381), - [anon_sym_type] = ACTIONS(3381), - [anon_sym_append] = ACTIONS(3381), - [anon_sym_metadata] = ACTIONS(3381), - [anon_sym_move] = ACTIONS(3381), - [anon_sym_read] = ACTIONS(3381), - [anon_sym_workdir] = ACTIONS(3381), - [anon_sym_write] = ACTIONS(3381), - [anon_sym_from_json] = ACTIONS(3381), - [anon_sym_to_json] = ACTIONS(3381), - [anon_sym_to_string] = ACTIONS(3381), - [anon_sym_to_float] = ACTIONS(3381), - [anon_sym_bash] = ACTIONS(3381), - [anon_sym_fish] = ACTIONS(3381), - [anon_sym_raw] = ACTIONS(3381), - [anon_sym_sh] = ACTIONS(3381), - [anon_sym_zsh] = ACTIONS(3381), - [anon_sym_random] = ACTIONS(3381), - [anon_sym_random_boolean] = ACTIONS(3381), - [anon_sym_random_float] = ACTIONS(3381), - [anon_sym_random_integer] = ACTIONS(3381), - [anon_sym_columns] = ACTIONS(3381), - [anon_sym_rows] = ACTIONS(3381), - [anon_sym_reverse] = ACTIONS(3381), - }, - [625] = { - [ts_builtin_sym_end] = ACTIONS(3383), - [sym_identifier] = ACTIONS(3385), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3383), - [anon_sym_RBRACE] = ACTIONS(3383), - [anon_sym_SEMI] = ACTIONS(3383), - [anon_sym_LPAREN] = ACTIONS(3383), - [anon_sym_RPAREN] = ACTIONS(3383), - [anon_sym_COMMA] = ACTIONS(3383), - [sym_integer] = ACTIONS(3385), - [sym_float] = ACTIONS(3383), - [sym_string] = ACTIONS(3383), - [anon_sym_true] = ACTIONS(3385), - [anon_sym_false] = ACTIONS(3385), - [anon_sym_LBRACK] = ACTIONS(3383), - [anon_sym_RBRACK] = ACTIONS(3383), - [anon_sym_EQ] = ACTIONS(3385), - [anon_sym_COLON] = ACTIONS(3383), - [anon_sym_DOT_DOT] = ACTIONS(3383), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(3383), - [anon_sym_SLASH] = ACTIONS(3383), - [anon_sym_PERCENT] = ACTIONS(3383), - [anon_sym_EQ_EQ] = ACTIONS(3383), - [anon_sym_BANG_EQ] = ACTIONS(3383), - [anon_sym_AMP_AMP] = ACTIONS(3383), - [anon_sym_PIPE_PIPE] = ACTIONS(3383), - [anon_sym_GT] = ACTIONS(3385), - [anon_sym_LT] = ACTIONS(3385), - [anon_sym_GT_EQ] = ACTIONS(3383), - [anon_sym_LT_EQ] = ACTIONS(3383), - [anon_sym_PLUS_EQ] = ACTIONS(3383), - [anon_sym_DASH_EQ] = ACTIONS(3383), - [anon_sym_if] = ACTIONS(3385), - [anon_sym_elseif] = ACTIONS(3383), - [anon_sym_else] = ACTIONS(3385), - [anon_sym_match] = ACTIONS(3385), - [anon_sym_EQ_GT] = ACTIONS(3383), - [anon_sym_while] = ACTIONS(3385), - [anon_sym_for] = ACTIONS(3385), - [anon_sym_asyncfor] = ACTIONS(3383), - [anon_sym_transform] = ACTIONS(3385), - [anon_sym_filter] = ACTIONS(3385), - [anon_sym_find] = ACTIONS(3385), - [anon_sym_remove] = ACTIONS(3385), - [anon_sym_reduce] = ACTIONS(3385), - [anon_sym_select] = ACTIONS(3385), - [anon_sym_insert] = ACTIONS(3385), - [anon_sym_async] = ACTIONS(3385), - [anon_sym_PIPE] = ACTIONS(3385), - [anon_sym_table] = ACTIONS(3385), - [anon_sym_assert] = ACTIONS(3385), - [anon_sym_assert_equal] = ACTIONS(3385), - [anon_sym_download] = ACTIONS(3385), - [anon_sym_help] = ACTIONS(3385), - [anon_sym_length] = ACTIONS(3385), - [anon_sym_output] = ACTIONS(3385), - [anon_sym_output_error] = ACTIONS(3385), - [anon_sym_type] = ACTIONS(3385), - [anon_sym_append] = ACTIONS(3385), - [anon_sym_metadata] = ACTIONS(3385), - [anon_sym_move] = ACTIONS(3385), - [anon_sym_read] = ACTIONS(3385), - [anon_sym_workdir] = ACTIONS(3385), - [anon_sym_write] = ACTIONS(3385), - [anon_sym_from_json] = ACTIONS(3385), - [anon_sym_to_json] = ACTIONS(3385), - [anon_sym_to_string] = ACTIONS(3385), - [anon_sym_to_float] = ACTIONS(3385), - [anon_sym_bash] = ACTIONS(3385), - [anon_sym_fish] = ACTIONS(3385), - [anon_sym_raw] = ACTIONS(3385), - [anon_sym_sh] = ACTIONS(3385), - [anon_sym_zsh] = ACTIONS(3385), - [anon_sym_random] = ACTIONS(3385), - [anon_sym_random_boolean] = ACTIONS(3385), - [anon_sym_random_float] = ACTIONS(3385), - [anon_sym_random_integer] = ACTIONS(3385), - [anon_sym_columns] = ACTIONS(3385), - [anon_sym_rows] = ACTIONS(3385), - [anon_sym_reverse] = ACTIONS(3385), - }, - [626] = { - [ts_builtin_sym_end] = ACTIONS(2518), - [sym_identifier] = ACTIONS(2541), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_RBRACE] = ACTIONS(2518), - [anon_sym_SEMI] = ACTIONS(2518), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_RPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2518), - [sym_integer] = ACTIONS(2541), - [sym_float] = ACTIONS(2518), - [sym_string] = ACTIONS(2518), - [anon_sym_true] = ACTIONS(2541), - [anon_sym_false] = ACTIONS(2541), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_RBRACK] = ACTIONS(2518), - [anon_sym_EQ] = ACTIONS(2541), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_DOT_DOT] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2541), - [anon_sym_DASH] = ACTIONS(2541), - [anon_sym_STAR] = ACTIONS(2518), - [anon_sym_SLASH] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_EQ_EQ] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_GT] = ACTIONS(2541), - [anon_sym_LT] = ACTIONS(2541), - [anon_sym_GT_EQ] = ACTIONS(2518), - [anon_sym_LT_EQ] = ACTIONS(2518), - [anon_sym_PLUS_EQ] = ACTIONS(2518), - [anon_sym_DASH_EQ] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2541), - [anon_sym_elseif] = ACTIONS(2518), - [anon_sym_else] = ACTIONS(2541), - [anon_sym_match] = ACTIONS(2541), - [anon_sym_EQ_GT] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2541), - [anon_sym_for] = ACTIONS(2541), - [anon_sym_asyncfor] = ACTIONS(2518), - [anon_sym_transform] = ACTIONS(2541), - [anon_sym_filter] = ACTIONS(2541), - [anon_sym_find] = ACTIONS(2541), - [anon_sym_remove] = ACTIONS(2541), - [anon_sym_reduce] = ACTIONS(2541), - [anon_sym_select] = ACTIONS(2541), - [anon_sym_insert] = ACTIONS(2541), - [anon_sym_async] = ACTIONS(2541), - [anon_sym_PIPE] = ACTIONS(2541), - [anon_sym_table] = ACTIONS(2541), - [anon_sym_assert] = ACTIONS(2541), - [anon_sym_assert_equal] = ACTIONS(2541), - [anon_sym_download] = ACTIONS(2541), - [anon_sym_help] = ACTIONS(2541), - [anon_sym_length] = ACTIONS(2541), - [anon_sym_output] = ACTIONS(2541), - [anon_sym_output_error] = ACTIONS(2541), - [anon_sym_type] = ACTIONS(2541), - [anon_sym_append] = ACTIONS(2541), - [anon_sym_metadata] = ACTIONS(2541), - [anon_sym_move] = ACTIONS(2541), - [anon_sym_read] = ACTIONS(2541), - [anon_sym_workdir] = ACTIONS(2541), - [anon_sym_write] = ACTIONS(2541), - [anon_sym_from_json] = ACTIONS(2541), - [anon_sym_to_json] = ACTIONS(2541), - [anon_sym_to_string] = ACTIONS(2541), - [anon_sym_to_float] = ACTIONS(2541), - [anon_sym_bash] = ACTIONS(2541), - [anon_sym_fish] = ACTIONS(2541), - [anon_sym_raw] = ACTIONS(2541), - [anon_sym_sh] = ACTIONS(2541), - [anon_sym_zsh] = ACTIONS(2541), - [anon_sym_random] = ACTIONS(2541), - [anon_sym_random_boolean] = ACTIONS(2541), - [anon_sym_random_float] = ACTIONS(2541), - [anon_sym_random_integer] = ACTIONS(2541), - [anon_sym_columns] = ACTIONS(2541), - [anon_sym_rows] = ACTIONS(2541), - [anon_sym_reverse] = ACTIONS(2541), - }, - [627] = { - [sym_else_if] = STATE(648), - [sym_else] = STATE(878), - [aux_sym_if_else_repeat1] = STATE(648), - [ts_builtin_sym_end] = ACTIONS(3219), - [sym_identifier] = ACTIONS(3221), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_RPAREN] = ACTIONS(3219), - [anon_sym_COMMA] = ACTIONS(3219), - [sym_integer] = ACTIONS(3221), - [sym_float] = ACTIONS(3219), - [sym_string] = ACTIONS(3219), - [anon_sym_true] = ACTIONS(3221), - [anon_sym_false] = ACTIONS(3221), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_RBRACK] = ACTIONS(3219), - [anon_sym_COLON] = ACTIONS(3219), - [anon_sym_DOT_DOT] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3221), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_PERCENT] = ACTIONS(3219), - [anon_sym_EQ_EQ] = ACTIONS(3219), - [anon_sym_BANG_EQ] = ACTIONS(3219), - [anon_sym_AMP_AMP] = ACTIONS(3219), - [anon_sym_PIPE_PIPE] = ACTIONS(3219), - [anon_sym_GT] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3221), - [anon_sym_GT_EQ] = ACTIONS(3219), - [anon_sym_LT_EQ] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3221), - [anon_sym_elseif] = ACTIONS(3347), - [anon_sym_else] = ACTIONS(3387), - [anon_sym_match] = ACTIONS(3221), - [anon_sym_EQ_GT] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3221), - [anon_sym_for] = ACTIONS(3221), - [anon_sym_asyncfor] = ACTIONS(3219), - [anon_sym_transform] = ACTIONS(3221), - [anon_sym_filter] = ACTIONS(3221), - [anon_sym_find] = ACTIONS(3221), - [anon_sym_remove] = ACTIONS(3221), - [anon_sym_reduce] = ACTIONS(3221), - [anon_sym_select] = ACTIONS(3221), - [anon_sym_insert] = ACTIONS(3221), - [anon_sym_async] = ACTIONS(3221), - [anon_sym_PIPE] = ACTIONS(3221), - [anon_sym_table] = ACTIONS(3221), - [anon_sym_assert] = ACTIONS(3221), - [anon_sym_assert_equal] = ACTIONS(3221), - [anon_sym_download] = ACTIONS(3221), - [anon_sym_help] = ACTIONS(3221), - [anon_sym_length] = ACTIONS(3221), - [anon_sym_output] = ACTIONS(3221), - [anon_sym_output_error] = ACTIONS(3221), - [anon_sym_type] = ACTIONS(3221), - [anon_sym_append] = ACTIONS(3221), - [anon_sym_metadata] = ACTIONS(3221), - [anon_sym_move] = ACTIONS(3221), - [anon_sym_read] = ACTIONS(3221), - [anon_sym_workdir] = ACTIONS(3221), - [anon_sym_write] = ACTIONS(3221), - [anon_sym_from_json] = ACTIONS(3221), - [anon_sym_to_json] = ACTIONS(3221), - [anon_sym_to_string] = ACTIONS(3221), - [anon_sym_to_float] = ACTIONS(3221), - [anon_sym_bash] = ACTIONS(3221), - [anon_sym_fish] = ACTIONS(3221), - [anon_sym_raw] = ACTIONS(3221), - [anon_sym_sh] = ACTIONS(3221), - [anon_sym_zsh] = ACTIONS(3221), - [anon_sym_random] = ACTIONS(3221), - [anon_sym_random_boolean] = ACTIONS(3221), - [anon_sym_random_float] = ACTIONS(3221), - [anon_sym_random_integer] = ACTIONS(3221), - [anon_sym_columns] = ACTIONS(3221), - [anon_sym_rows] = ACTIONS(3221), - [anon_sym_reverse] = ACTIONS(3221), - }, - [628] = { - [ts_builtin_sym_end] = ACTIONS(3389), - [sym_identifier] = ACTIONS(3391), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3389), - [anon_sym_RBRACE] = ACTIONS(3389), - [anon_sym_SEMI] = ACTIONS(3389), - [anon_sym_LPAREN] = ACTIONS(3389), - [anon_sym_RPAREN] = ACTIONS(3389), - [anon_sym_COMMA] = ACTIONS(3389), - [sym_integer] = ACTIONS(3391), - [sym_float] = ACTIONS(3389), - [sym_string] = ACTIONS(3389), - [anon_sym_true] = ACTIONS(3391), - [anon_sym_false] = ACTIONS(3391), - [anon_sym_LBRACK] = ACTIONS(3389), - [anon_sym_RBRACK] = ACTIONS(3389), - [anon_sym_EQ] = ACTIONS(3391), - [anon_sym_COLON] = ACTIONS(3389), - [anon_sym_DOT_DOT] = ACTIONS(3389), - [anon_sym_PLUS] = ACTIONS(3391), - [anon_sym_DASH] = ACTIONS(3391), - [anon_sym_STAR] = ACTIONS(3389), - [anon_sym_SLASH] = ACTIONS(3389), - [anon_sym_PERCENT] = ACTIONS(3389), - [anon_sym_EQ_EQ] = ACTIONS(3389), - [anon_sym_BANG_EQ] = ACTIONS(3389), - [anon_sym_AMP_AMP] = ACTIONS(3389), - [anon_sym_PIPE_PIPE] = ACTIONS(3389), - [anon_sym_GT] = ACTIONS(3391), - [anon_sym_LT] = ACTIONS(3391), - [anon_sym_GT_EQ] = ACTIONS(3389), - [anon_sym_LT_EQ] = ACTIONS(3389), - [anon_sym_PLUS_EQ] = ACTIONS(3389), - [anon_sym_DASH_EQ] = ACTIONS(3389), - [anon_sym_if] = ACTIONS(3391), - [anon_sym_elseif] = ACTIONS(3389), - [anon_sym_else] = ACTIONS(3391), - [anon_sym_match] = ACTIONS(3391), - [anon_sym_EQ_GT] = ACTIONS(3389), - [anon_sym_while] = ACTIONS(3391), - [anon_sym_for] = ACTIONS(3391), - [anon_sym_asyncfor] = ACTIONS(3389), - [anon_sym_transform] = ACTIONS(3391), - [anon_sym_filter] = ACTIONS(3391), - [anon_sym_find] = ACTIONS(3391), - [anon_sym_remove] = ACTIONS(3391), - [anon_sym_reduce] = ACTIONS(3391), - [anon_sym_select] = ACTIONS(3391), - [anon_sym_insert] = ACTIONS(3391), - [anon_sym_async] = ACTIONS(3391), - [anon_sym_PIPE] = ACTIONS(3391), - [anon_sym_table] = ACTIONS(3391), - [anon_sym_assert] = ACTIONS(3391), - [anon_sym_assert_equal] = ACTIONS(3391), - [anon_sym_download] = ACTIONS(3391), - [anon_sym_help] = ACTIONS(3391), - [anon_sym_length] = ACTIONS(3391), - [anon_sym_output] = ACTIONS(3391), - [anon_sym_output_error] = ACTIONS(3391), - [anon_sym_type] = ACTIONS(3391), - [anon_sym_append] = ACTIONS(3391), - [anon_sym_metadata] = ACTIONS(3391), - [anon_sym_move] = ACTIONS(3391), - [anon_sym_read] = ACTIONS(3391), - [anon_sym_workdir] = ACTIONS(3391), - [anon_sym_write] = ACTIONS(3391), - [anon_sym_from_json] = ACTIONS(3391), - [anon_sym_to_json] = ACTIONS(3391), - [anon_sym_to_string] = ACTIONS(3391), - [anon_sym_to_float] = ACTIONS(3391), - [anon_sym_bash] = ACTIONS(3391), - [anon_sym_fish] = ACTIONS(3391), - [anon_sym_raw] = ACTIONS(3391), - [anon_sym_sh] = ACTIONS(3391), - [anon_sym_zsh] = ACTIONS(3391), - [anon_sym_random] = ACTIONS(3391), - [anon_sym_random_boolean] = ACTIONS(3391), - [anon_sym_random_float] = ACTIONS(3391), - [anon_sym_random_integer] = ACTIONS(3391), - [anon_sym_columns] = ACTIONS(3391), - [anon_sym_rows] = ACTIONS(3391), - [anon_sym_reverse] = ACTIONS(3391), - }, - [629] = { - [ts_builtin_sym_end] = ACTIONS(3393), - [sym_identifier] = ACTIONS(3395), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_RBRACE] = ACTIONS(3393), - [anon_sym_SEMI] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_RPAREN] = ACTIONS(3393), - [anon_sym_COMMA] = ACTIONS(3393), - [sym_integer] = ACTIONS(3395), - [sym_float] = ACTIONS(3393), - [sym_string] = ACTIONS(3393), - [anon_sym_true] = ACTIONS(3395), - [anon_sym_false] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_RBRACK] = ACTIONS(3393), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_COLON] = ACTIONS(3393), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3393), - [anon_sym_SLASH] = ACTIONS(3393), - [anon_sym_PERCENT] = ACTIONS(3393), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_PLUS_EQ] = ACTIONS(3393), - [anon_sym_DASH_EQ] = ACTIONS(3393), - [anon_sym_if] = ACTIONS(3395), - [anon_sym_elseif] = ACTIONS(3393), - [anon_sym_else] = ACTIONS(3395), - [anon_sym_match] = ACTIONS(3395), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_while] = ACTIONS(3395), - [anon_sym_for] = ACTIONS(3395), - [anon_sym_asyncfor] = ACTIONS(3393), - [anon_sym_transform] = ACTIONS(3395), - [anon_sym_filter] = ACTIONS(3395), - [anon_sym_find] = ACTIONS(3395), - [anon_sym_remove] = ACTIONS(3395), - [anon_sym_reduce] = ACTIONS(3395), - [anon_sym_select] = ACTIONS(3395), - [anon_sym_insert] = ACTIONS(3395), - [anon_sym_async] = ACTIONS(3395), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_table] = ACTIONS(3395), - [anon_sym_assert] = ACTIONS(3395), - [anon_sym_assert_equal] = ACTIONS(3395), - [anon_sym_download] = ACTIONS(3395), - [anon_sym_help] = ACTIONS(3395), - [anon_sym_length] = ACTIONS(3395), - [anon_sym_output] = ACTIONS(3395), - [anon_sym_output_error] = ACTIONS(3395), - [anon_sym_type] = ACTIONS(3395), - [anon_sym_append] = ACTIONS(3395), - [anon_sym_metadata] = ACTIONS(3395), - [anon_sym_move] = ACTIONS(3395), - [anon_sym_read] = ACTIONS(3395), - [anon_sym_workdir] = ACTIONS(3395), - [anon_sym_write] = ACTIONS(3395), - [anon_sym_from_json] = ACTIONS(3395), - [anon_sym_to_json] = ACTIONS(3395), - [anon_sym_to_string] = ACTIONS(3395), - [anon_sym_to_float] = ACTIONS(3395), - [anon_sym_bash] = ACTIONS(3395), - [anon_sym_fish] = ACTIONS(3395), - [anon_sym_raw] = ACTIONS(3395), - [anon_sym_sh] = ACTIONS(3395), - [anon_sym_zsh] = ACTIONS(3395), - [anon_sym_random] = ACTIONS(3395), - [anon_sym_random_boolean] = ACTIONS(3395), - [anon_sym_random_float] = ACTIONS(3395), - [anon_sym_random_integer] = ACTIONS(3395), - [anon_sym_columns] = ACTIONS(3395), - [anon_sym_rows] = ACTIONS(3395), - [anon_sym_reverse] = ACTIONS(3395), - }, - [630] = { - [ts_builtin_sym_end] = ACTIONS(3397), - [sym_identifier] = ACTIONS(3399), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3397), - [anon_sym_RBRACE] = ACTIONS(3397), - [anon_sym_SEMI] = ACTIONS(3397), - [anon_sym_LPAREN] = ACTIONS(3397), - [anon_sym_RPAREN] = ACTIONS(3397), - [anon_sym_COMMA] = ACTIONS(3397), - [sym_integer] = ACTIONS(3399), - [sym_float] = ACTIONS(3397), - [sym_string] = ACTIONS(3397), - [anon_sym_true] = ACTIONS(3399), - [anon_sym_false] = ACTIONS(3399), - [anon_sym_LBRACK] = ACTIONS(3397), - [anon_sym_RBRACK] = ACTIONS(3397), - [anon_sym_EQ] = ACTIONS(3399), - [anon_sym_COLON] = ACTIONS(3397), - [anon_sym_DOT_DOT] = ACTIONS(3397), - [anon_sym_PLUS] = ACTIONS(3399), - [anon_sym_DASH] = ACTIONS(3399), - [anon_sym_STAR] = ACTIONS(3397), - [anon_sym_SLASH] = ACTIONS(3397), - [anon_sym_PERCENT] = ACTIONS(3397), - [anon_sym_EQ_EQ] = ACTIONS(3397), - [anon_sym_BANG_EQ] = ACTIONS(3397), - [anon_sym_AMP_AMP] = ACTIONS(3397), - [anon_sym_PIPE_PIPE] = ACTIONS(3397), - [anon_sym_GT] = ACTIONS(3399), - [anon_sym_LT] = ACTIONS(3399), - [anon_sym_GT_EQ] = ACTIONS(3397), - [anon_sym_LT_EQ] = ACTIONS(3397), - [anon_sym_PLUS_EQ] = ACTIONS(3397), - [anon_sym_DASH_EQ] = ACTIONS(3397), - [anon_sym_if] = ACTIONS(3399), - [anon_sym_elseif] = ACTIONS(3397), - [anon_sym_else] = ACTIONS(3399), - [anon_sym_match] = ACTIONS(3399), - [anon_sym_EQ_GT] = ACTIONS(3397), - [anon_sym_while] = ACTIONS(3399), - [anon_sym_for] = ACTIONS(3399), - [anon_sym_asyncfor] = ACTIONS(3397), - [anon_sym_transform] = ACTIONS(3399), - [anon_sym_filter] = ACTIONS(3399), - [anon_sym_find] = ACTIONS(3399), - [anon_sym_remove] = ACTIONS(3399), - [anon_sym_reduce] = ACTIONS(3399), - [anon_sym_select] = ACTIONS(3399), - [anon_sym_insert] = ACTIONS(3399), - [anon_sym_async] = ACTIONS(3399), - [anon_sym_PIPE] = ACTIONS(3399), - [anon_sym_table] = ACTIONS(3399), - [anon_sym_assert] = ACTIONS(3399), - [anon_sym_assert_equal] = ACTIONS(3399), - [anon_sym_download] = ACTIONS(3399), - [anon_sym_help] = ACTIONS(3399), - [anon_sym_length] = ACTIONS(3399), - [anon_sym_output] = ACTIONS(3399), - [anon_sym_output_error] = ACTIONS(3399), - [anon_sym_type] = ACTIONS(3399), - [anon_sym_append] = ACTIONS(3399), - [anon_sym_metadata] = ACTIONS(3399), - [anon_sym_move] = ACTIONS(3399), - [anon_sym_read] = ACTIONS(3399), - [anon_sym_workdir] = ACTIONS(3399), - [anon_sym_write] = ACTIONS(3399), - [anon_sym_from_json] = ACTIONS(3399), - [anon_sym_to_json] = ACTIONS(3399), - [anon_sym_to_string] = ACTIONS(3399), - [anon_sym_to_float] = ACTIONS(3399), - [anon_sym_bash] = ACTIONS(3399), - [anon_sym_fish] = ACTIONS(3399), - [anon_sym_raw] = ACTIONS(3399), - [anon_sym_sh] = ACTIONS(3399), - [anon_sym_zsh] = ACTIONS(3399), - [anon_sym_random] = ACTIONS(3399), - [anon_sym_random_boolean] = ACTIONS(3399), - [anon_sym_random_float] = ACTIONS(3399), - [anon_sym_random_integer] = ACTIONS(3399), - [anon_sym_columns] = ACTIONS(3399), - [anon_sym_rows] = ACTIONS(3399), - [anon_sym_reverse] = ACTIONS(3399), - }, - [631] = { - [ts_builtin_sym_end] = ACTIONS(3401), - [sym_identifier] = ACTIONS(3403), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_RBRACE] = ACTIONS(3401), - [anon_sym_SEMI] = ACTIONS(3401), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_RPAREN] = ACTIONS(3401), - [anon_sym_COMMA] = ACTIONS(3401), - [sym_integer] = ACTIONS(3403), - [sym_float] = ACTIONS(3401), - [sym_string] = ACTIONS(3401), - [anon_sym_true] = ACTIONS(3403), - [anon_sym_false] = ACTIONS(3403), - [anon_sym_LBRACK] = ACTIONS(3401), - [anon_sym_RBRACK] = ACTIONS(3401), - [anon_sym_EQ] = ACTIONS(3403), - [anon_sym_COLON] = ACTIONS(3401), - [anon_sym_DOT_DOT] = ACTIONS(3401), - [anon_sym_PLUS] = ACTIONS(3403), - [anon_sym_DASH] = ACTIONS(3403), - [anon_sym_STAR] = ACTIONS(3401), - [anon_sym_SLASH] = ACTIONS(3401), - [anon_sym_PERCENT] = ACTIONS(3401), - [anon_sym_EQ_EQ] = ACTIONS(3401), - [anon_sym_BANG_EQ] = ACTIONS(3401), - [anon_sym_AMP_AMP] = ACTIONS(3401), - [anon_sym_PIPE_PIPE] = ACTIONS(3401), - [anon_sym_GT] = ACTIONS(3403), - [anon_sym_LT] = ACTIONS(3403), - [anon_sym_GT_EQ] = ACTIONS(3401), - [anon_sym_LT_EQ] = ACTIONS(3401), - [anon_sym_PLUS_EQ] = ACTIONS(3401), - [anon_sym_DASH_EQ] = ACTIONS(3401), - [anon_sym_if] = ACTIONS(3403), - [anon_sym_elseif] = ACTIONS(3401), - [anon_sym_else] = ACTIONS(3403), - [anon_sym_match] = ACTIONS(3403), - [anon_sym_EQ_GT] = ACTIONS(3401), - [anon_sym_while] = ACTIONS(3403), - [anon_sym_for] = ACTIONS(3403), - [anon_sym_asyncfor] = ACTIONS(3401), - [anon_sym_transform] = ACTIONS(3403), - [anon_sym_filter] = ACTIONS(3403), - [anon_sym_find] = ACTIONS(3403), - [anon_sym_remove] = ACTIONS(3403), - [anon_sym_reduce] = ACTIONS(3403), - [anon_sym_select] = ACTIONS(3403), - [anon_sym_insert] = ACTIONS(3403), - [anon_sym_async] = ACTIONS(3403), - [anon_sym_PIPE] = ACTIONS(3403), - [anon_sym_table] = ACTIONS(3403), - [anon_sym_assert] = ACTIONS(3403), - [anon_sym_assert_equal] = ACTIONS(3403), - [anon_sym_download] = ACTIONS(3403), - [anon_sym_help] = ACTIONS(3403), - [anon_sym_length] = ACTIONS(3403), - [anon_sym_output] = ACTIONS(3403), - [anon_sym_output_error] = ACTIONS(3403), - [anon_sym_type] = ACTIONS(3403), - [anon_sym_append] = ACTIONS(3403), - [anon_sym_metadata] = ACTIONS(3403), - [anon_sym_move] = ACTIONS(3403), - [anon_sym_read] = ACTIONS(3403), - [anon_sym_workdir] = ACTIONS(3403), - [anon_sym_write] = ACTIONS(3403), - [anon_sym_from_json] = ACTIONS(3403), - [anon_sym_to_json] = ACTIONS(3403), - [anon_sym_to_string] = ACTIONS(3403), - [anon_sym_to_float] = ACTIONS(3403), - [anon_sym_bash] = ACTIONS(3403), - [anon_sym_fish] = ACTIONS(3403), - [anon_sym_raw] = ACTIONS(3403), - [anon_sym_sh] = ACTIONS(3403), - [anon_sym_zsh] = ACTIONS(3403), - [anon_sym_random] = ACTIONS(3403), - [anon_sym_random_boolean] = ACTIONS(3403), - [anon_sym_random_float] = ACTIONS(3403), - [anon_sym_random_integer] = ACTIONS(3403), - [anon_sym_columns] = ACTIONS(3403), - [anon_sym_rows] = ACTIONS(3403), - [anon_sym_reverse] = ACTIONS(3403), - }, - [632] = { - [ts_builtin_sym_end] = ACTIONS(3405), - [sym_identifier] = ACTIONS(3407), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_RBRACE] = ACTIONS(3405), - [anon_sym_SEMI] = ACTIONS(3405), - [anon_sym_LPAREN] = ACTIONS(3405), - [anon_sym_RPAREN] = ACTIONS(3405), - [anon_sym_COMMA] = ACTIONS(3405), - [sym_integer] = ACTIONS(3407), - [sym_float] = ACTIONS(3405), - [sym_string] = ACTIONS(3405), - [anon_sym_true] = ACTIONS(3407), - [anon_sym_false] = ACTIONS(3407), - [anon_sym_LBRACK] = ACTIONS(3405), - [anon_sym_RBRACK] = ACTIONS(3405), - [anon_sym_EQ] = ACTIONS(3407), - [anon_sym_COLON] = ACTIONS(3405), - [anon_sym_DOT_DOT] = ACTIONS(3405), - [anon_sym_PLUS] = ACTIONS(3407), - [anon_sym_DASH] = ACTIONS(3407), - [anon_sym_STAR] = ACTIONS(3405), - [anon_sym_SLASH] = ACTIONS(3405), - [anon_sym_PERCENT] = ACTIONS(3405), - [anon_sym_EQ_EQ] = ACTIONS(3405), - [anon_sym_BANG_EQ] = ACTIONS(3405), - [anon_sym_AMP_AMP] = ACTIONS(3405), - [anon_sym_PIPE_PIPE] = ACTIONS(3405), - [anon_sym_GT] = ACTIONS(3407), - [anon_sym_LT] = ACTIONS(3407), - [anon_sym_GT_EQ] = ACTIONS(3405), - [anon_sym_LT_EQ] = ACTIONS(3405), - [anon_sym_PLUS_EQ] = ACTIONS(3405), - [anon_sym_DASH_EQ] = ACTIONS(3405), - [anon_sym_if] = ACTIONS(3407), - [anon_sym_elseif] = ACTIONS(3405), - [anon_sym_else] = ACTIONS(3407), - [anon_sym_match] = ACTIONS(3407), - [anon_sym_EQ_GT] = ACTIONS(3405), - [anon_sym_while] = ACTIONS(3407), - [anon_sym_for] = ACTIONS(3407), - [anon_sym_asyncfor] = ACTIONS(3405), - [anon_sym_transform] = ACTIONS(3407), - [anon_sym_filter] = ACTIONS(3407), - [anon_sym_find] = ACTIONS(3407), - [anon_sym_remove] = ACTIONS(3407), - [anon_sym_reduce] = ACTIONS(3407), - [anon_sym_select] = ACTIONS(3407), - [anon_sym_insert] = ACTIONS(3407), - [anon_sym_async] = ACTIONS(3407), - [anon_sym_PIPE] = ACTIONS(3407), - [anon_sym_table] = ACTIONS(3407), - [anon_sym_assert] = ACTIONS(3407), - [anon_sym_assert_equal] = ACTIONS(3407), - [anon_sym_download] = ACTIONS(3407), - [anon_sym_help] = ACTIONS(3407), - [anon_sym_length] = ACTIONS(3407), - [anon_sym_output] = ACTIONS(3407), - [anon_sym_output_error] = ACTIONS(3407), - [anon_sym_type] = ACTIONS(3407), - [anon_sym_append] = ACTIONS(3407), - [anon_sym_metadata] = ACTIONS(3407), - [anon_sym_move] = ACTIONS(3407), - [anon_sym_read] = ACTIONS(3407), - [anon_sym_workdir] = ACTIONS(3407), - [anon_sym_write] = ACTIONS(3407), - [anon_sym_from_json] = ACTIONS(3407), - [anon_sym_to_json] = ACTIONS(3407), - [anon_sym_to_string] = ACTIONS(3407), - [anon_sym_to_float] = ACTIONS(3407), - [anon_sym_bash] = ACTIONS(3407), - [anon_sym_fish] = ACTIONS(3407), - [anon_sym_raw] = ACTIONS(3407), - [anon_sym_sh] = ACTIONS(3407), - [anon_sym_zsh] = ACTIONS(3407), - [anon_sym_random] = ACTIONS(3407), - [anon_sym_random_boolean] = ACTIONS(3407), - [anon_sym_random_float] = ACTIONS(3407), - [anon_sym_random_integer] = ACTIONS(3407), - [anon_sym_columns] = ACTIONS(3407), - [anon_sym_rows] = ACTIONS(3407), - [anon_sym_reverse] = ACTIONS(3407), - }, - [633] = { - [ts_builtin_sym_end] = ACTIONS(3409), - [sym_identifier] = ACTIONS(3411), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3409), - [anon_sym_RBRACE] = ACTIONS(3409), - [anon_sym_SEMI] = ACTIONS(3409), - [anon_sym_LPAREN] = ACTIONS(3409), - [anon_sym_RPAREN] = ACTIONS(3409), - [anon_sym_COMMA] = ACTIONS(3409), - [sym_integer] = ACTIONS(3411), - [sym_float] = ACTIONS(3409), - [sym_string] = ACTIONS(3409), - [anon_sym_true] = ACTIONS(3411), - [anon_sym_false] = ACTIONS(3411), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_RBRACK] = ACTIONS(3409), - [anon_sym_EQ] = ACTIONS(3411), - [anon_sym_COLON] = ACTIONS(3409), - [anon_sym_DOT_DOT] = ACTIONS(3409), - [anon_sym_PLUS] = ACTIONS(3411), - [anon_sym_DASH] = ACTIONS(3411), - [anon_sym_STAR] = ACTIONS(3409), - [anon_sym_SLASH] = ACTIONS(3409), - [anon_sym_PERCENT] = ACTIONS(3409), - [anon_sym_EQ_EQ] = ACTIONS(3409), - [anon_sym_BANG_EQ] = ACTIONS(3409), - [anon_sym_AMP_AMP] = ACTIONS(3409), - [anon_sym_PIPE_PIPE] = ACTIONS(3409), - [anon_sym_GT] = ACTIONS(3411), - [anon_sym_LT] = ACTIONS(3411), - [anon_sym_GT_EQ] = ACTIONS(3409), - [anon_sym_LT_EQ] = ACTIONS(3409), - [anon_sym_PLUS_EQ] = ACTIONS(3409), - [anon_sym_DASH_EQ] = ACTIONS(3409), - [anon_sym_if] = ACTIONS(3411), - [anon_sym_elseif] = ACTIONS(3409), - [anon_sym_else] = ACTIONS(3411), - [anon_sym_match] = ACTIONS(3411), - [anon_sym_EQ_GT] = ACTIONS(3409), - [anon_sym_while] = ACTIONS(3411), - [anon_sym_for] = ACTIONS(3411), - [anon_sym_asyncfor] = ACTIONS(3409), - [anon_sym_transform] = ACTIONS(3411), - [anon_sym_filter] = ACTIONS(3411), - [anon_sym_find] = ACTIONS(3411), - [anon_sym_remove] = ACTIONS(3411), - [anon_sym_reduce] = ACTIONS(3411), - [anon_sym_select] = ACTIONS(3411), - [anon_sym_insert] = ACTIONS(3411), - [anon_sym_async] = ACTIONS(3411), - [anon_sym_PIPE] = ACTIONS(3411), - [anon_sym_table] = ACTIONS(3411), - [anon_sym_assert] = ACTIONS(3411), - [anon_sym_assert_equal] = ACTIONS(3411), - [anon_sym_download] = ACTIONS(3411), - [anon_sym_help] = ACTIONS(3411), - [anon_sym_length] = ACTIONS(3411), - [anon_sym_output] = ACTIONS(3411), - [anon_sym_output_error] = ACTIONS(3411), - [anon_sym_type] = ACTIONS(3411), - [anon_sym_append] = ACTIONS(3411), - [anon_sym_metadata] = ACTIONS(3411), - [anon_sym_move] = ACTIONS(3411), - [anon_sym_read] = ACTIONS(3411), - [anon_sym_workdir] = ACTIONS(3411), - [anon_sym_write] = ACTIONS(3411), - [anon_sym_from_json] = ACTIONS(3411), - [anon_sym_to_json] = ACTIONS(3411), - [anon_sym_to_string] = ACTIONS(3411), - [anon_sym_to_float] = ACTIONS(3411), - [anon_sym_bash] = ACTIONS(3411), - [anon_sym_fish] = ACTIONS(3411), - [anon_sym_raw] = ACTIONS(3411), - [anon_sym_sh] = ACTIONS(3411), - [anon_sym_zsh] = ACTIONS(3411), - [anon_sym_random] = ACTIONS(3411), - [anon_sym_random_boolean] = ACTIONS(3411), - [anon_sym_random_float] = ACTIONS(3411), - [anon_sym_random_integer] = ACTIONS(3411), - [anon_sym_columns] = ACTIONS(3411), - [anon_sym_rows] = ACTIONS(3411), - [anon_sym_reverse] = ACTIONS(3411), - }, - [634] = { - [sym_math_operator] = STATE(1414), - [sym_logic_operator] = STATE(1413), - [ts_builtin_sym_end] = ACTIONS(3248), - [sym_identifier] = ACTIONS(3250), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3248), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(3248), - [anon_sym_RPAREN] = ACTIONS(3248), - [sym_integer] = ACTIONS(3250), - [sym_float] = ACTIONS(3248), - [sym_string] = ACTIONS(3248), - [anon_sym_true] = ACTIONS(3250), - [anon_sym_false] = ACTIONS(3250), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_EQ] = ACTIONS(3250), - [anon_sym_COLON] = ACTIONS(3248), - [anon_sym_DOT_DOT] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3250), - [anon_sym_DASH] = ACTIONS(3250), - [anon_sym_STAR] = ACTIONS(3248), - [anon_sym_SLASH] = ACTIONS(3248), - [anon_sym_PERCENT] = ACTIONS(3248), - [anon_sym_EQ_EQ] = ACTIONS(3248), - [anon_sym_BANG_EQ] = ACTIONS(3248), - [anon_sym_AMP_AMP] = ACTIONS(3248), - [anon_sym_PIPE_PIPE] = ACTIONS(3248), - [anon_sym_GT] = ACTIONS(3250), - [anon_sym_LT] = ACTIONS(3250), - [anon_sym_GT_EQ] = ACTIONS(3248), - [anon_sym_LT_EQ] = ACTIONS(3248), - [anon_sym_PLUS_EQ] = ACTIONS(3248), - [anon_sym_DASH_EQ] = ACTIONS(3248), - [anon_sym_if] = ACTIONS(3250), - [anon_sym_elseif] = ACTIONS(3248), - [anon_sym_else] = ACTIONS(3250), - [anon_sym_match] = ACTIONS(3250), - [anon_sym_EQ_GT] = ACTIONS(3248), - [anon_sym_while] = ACTIONS(3250), - [anon_sym_for] = ACTIONS(3250), - [anon_sym_asyncfor] = ACTIONS(3248), - [anon_sym_transform] = ACTIONS(3250), - [anon_sym_filter] = ACTIONS(3250), - [anon_sym_find] = ACTIONS(3250), - [anon_sym_remove] = ACTIONS(3250), - [anon_sym_reduce] = ACTIONS(3250), - [anon_sym_select] = ACTIONS(3250), - [anon_sym_insert] = ACTIONS(3250), - [anon_sym_async] = ACTIONS(3250), - [anon_sym_PIPE] = ACTIONS(3250), - [anon_sym_table] = ACTIONS(3250), - [anon_sym_assert] = ACTIONS(3250), - [anon_sym_assert_equal] = ACTIONS(3250), - [anon_sym_download] = ACTIONS(3250), - [anon_sym_help] = ACTIONS(3250), - [anon_sym_length] = ACTIONS(3250), - [anon_sym_output] = ACTIONS(3250), - [anon_sym_output_error] = ACTIONS(3250), - [anon_sym_type] = ACTIONS(3250), - [anon_sym_append] = ACTIONS(3250), - [anon_sym_metadata] = ACTIONS(3250), - [anon_sym_move] = ACTIONS(3250), - [anon_sym_read] = ACTIONS(3250), - [anon_sym_workdir] = ACTIONS(3250), - [anon_sym_write] = ACTIONS(3250), - [anon_sym_from_json] = ACTIONS(3250), - [anon_sym_to_json] = ACTIONS(3250), - [anon_sym_to_string] = ACTIONS(3250), - [anon_sym_to_float] = ACTIONS(3250), - [anon_sym_bash] = ACTIONS(3250), - [anon_sym_fish] = ACTIONS(3250), - [anon_sym_raw] = ACTIONS(3250), - [anon_sym_sh] = ACTIONS(3250), - [anon_sym_zsh] = ACTIONS(3250), - [anon_sym_random] = ACTIONS(3250), - [anon_sym_random_boolean] = ACTIONS(3250), - [anon_sym_random_float] = ACTIONS(3250), - [anon_sym_random_integer] = ACTIONS(3250), - [anon_sym_columns] = ACTIONS(3250), - [anon_sym_rows] = ACTIONS(3250), - [anon_sym_reverse] = ACTIONS(3250), - }, - [635] = { - [sym_math_operator] = STATE(1316), - [sym_logic_operator] = STATE(1285), - [ts_builtin_sym_end] = ACTIONS(3248), - [sym_identifier] = ACTIONS(3250), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3248), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(3248), - [anon_sym_RPAREN] = ACTIONS(3248), - [anon_sym_COMMA] = ACTIONS(3248), - [sym_integer] = ACTIONS(3250), - [sym_float] = ACTIONS(3248), - [sym_string] = ACTIONS(3248), - [anon_sym_true] = ACTIONS(3250), - [anon_sym_false] = ACTIONS(3250), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_RBRACK] = ACTIONS(3248), - [anon_sym_EQ] = ACTIONS(3250), - [anon_sym_COLON] = ACTIONS(3248), - [anon_sym_DOT_DOT] = ACTIONS(3413), - [anon_sym_PLUS] = ACTIONS(3250), - [anon_sym_DASH] = ACTIONS(3250), - [anon_sym_STAR] = ACTIONS(3248), - [anon_sym_SLASH] = ACTIONS(3248), - [anon_sym_PERCENT] = ACTIONS(3248), - [anon_sym_EQ_EQ] = ACTIONS(3248), - [anon_sym_BANG_EQ] = ACTIONS(3248), - [anon_sym_AMP_AMP] = ACTIONS(3248), - [anon_sym_PIPE_PIPE] = ACTIONS(3248), - [anon_sym_GT] = ACTIONS(3250), - [anon_sym_LT] = ACTIONS(3250), - [anon_sym_GT_EQ] = ACTIONS(3248), - [anon_sym_LT_EQ] = ACTIONS(3248), - [anon_sym_PLUS_EQ] = ACTIONS(3248), - [anon_sym_DASH_EQ] = ACTIONS(3248), - [anon_sym_if] = ACTIONS(3250), - [anon_sym_match] = ACTIONS(3250), - [anon_sym_EQ_GT] = ACTIONS(3248), - [anon_sym_while] = ACTIONS(3250), - [anon_sym_for] = ACTIONS(3250), - [anon_sym_asyncfor] = ACTIONS(3248), - [anon_sym_transform] = ACTIONS(3250), - [anon_sym_filter] = ACTIONS(3250), - [anon_sym_find] = ACTIONS(3250), - [anon_sym_remove] = ACTIONS(3250), - [anon_sym_reduce] = ACTIONS(3250), - [anon_sym_select] = ACTIONS(3250), - [anon_sym_insert] = ACTIONS(3250), - [anon_sym_async] = ACTIONS(3250), - [anon_sym_PIPE] = ACTIONS(3250), - [anon_sym_table] = ACTIONS(3250), - [anon_sym_assert] = ACTIONS(3250), - [anon_sym_assert_equal] = ACTIONS(3250), - [anon_sym_download] = ACTIONS(3250), - [anon_sym_help] = ACTIONS(3250), - [anon_sym_length] = ACTIONS(3250), - [anon_sym_output] = ACTIONS(3250), - [anon_sym_output_error] = ACTIONS(3250), - [anon_sym_type] = ACTIONS(3250), - [anon_sym_append] = ACTIONS(3250), - [anon_sym_metadata] = ACTIONS(3250), - [anon_sym_move] = ACTIONS(3250), - [anon_sym_read] = ACTIONS(3250), - [anon_sym_workdir] = ACTIONS(3250), - [anon_sym_write] = ACTIONS(3250), - [anon_sym_from_json] = ACTIONS(3250), - [anon_sym_to_json] = ACTIONS(3250), - [anon_sym_to_string] = ACTIONS(3250), - [anon_sym_to_float] = ACTIONS(3250), - [anon_sym_bash] = ACTIONS(3250), - [anon_sym_fish] = ACTIONS(3250), - [anon_sym_raw] = ACTIONS(3250), - [anon_sym_sh] = ACTIONS(3250), - [anon_sym_zsh] = ACTIONS(3250), - [anon_sym_random] = ACTIONS(3250), - [anon_sym_random_boolean] = ACTIONS(3250), - [anon_sym_random_float] = ACTIONS(3250), - [anon_sym_random_integer] = ACTIONS(3250), - [anon_sym_columns] = ACTIONS(3250), - [anon_sym_rows] = ACTIONS(3250), - [anon_sym_reverse] = ACTIONS(3250), - }, - [636] = { - [ts_builtin_sym_end] = ACTIONS(3415), - [sym_identifier] = ACTIONS(3417), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3415), - [anon_sym_RBRACE] = ACTIONS(3415), - [anon_sym_SEMI] = ACTIONS(3415), - [anon_sym_LPAREN] = ACTIONS(3415), - [anon_sym_RPAREN] = ACTIONS(3415), - [anon_sym_COMMA] = ACTIONS(3415), - [sym_integer] = ACTIONS(3417), - [sym_float] = ACTIONS(3415), - [sym_string] = ACTIONS(3415), - [anon_sym_true] = ACTIONS(3417), - [anon_sym_false] = ACTIONS(3417), - [anon_sym_LBRACK] = ACTIONS(3415), - [anon_sym_RBRACK] = ACTIONS(3415), - [anon_sym_EQ] = ACTIONS(3417), - [anon_sym_COLON] = ACTIONS(3415), - [anon_sym_DOT_DOT] = ACTIONS(3415), - [anon_sym_PLUS] = ACTIONS(3417), - [anon_sym_DASH] = ACTIONS(3417), - [anon_sym_STAR] = ACTIONS(3415), - [anon_sym_SLASH] = ACTIONS(3415), - [anon_sym_PERCENT] = ACTIONS(3415), - [anon_sym_EQ_EQ] = ACTIONS(3415), - [anon_sym_BANG_EQ] = ACTIONS(3415), - [anon_sym_AMP_AMP] = ACTIONS(3415), - [anon_sym_PIPE_PIPE] = ACTIONS(3415), - [anon_sym_GT] = ACTIONS(3417), - [anon_sym_LT] = ACTIONS(3417), - [anon_sym_GT_EQ] = ACTIONS(3415), - [anon_sym_LT_EQ] = ACTIONS(3415), - [anon_sym_PLUS_EQ] = ACTIONS(3415), - [anon_sym_DASH_EQ] = ACTIONS(3415), - [anon_sym_if] = ACTIONS(3417), - [anon_sym_elseif] = ACTIONS(3415), - [anon_sym_else] = ACTIONS(3417), - [anon_sym_match] = ACTIONS(3417), - [anon_sym_EQ_GT] = ACTIONS(3415), - [anon_sym_while] = ACTIONS(3417), - [anon_sym_for] = ACTIONS(3417), - [anon_sym_asyncfor] = ACTIONS(3415), - [anon_sym_transform] = ACTIONS(3417), - [anon_sym_filter] = ACTIONS(3417), - [anon_sym_find] = ACTIONS(3417), - [anon_sym_remove] = ACTIONS(3417), - [anon_sym_reduce] = ACTIONS(3417), - [anon_sym_select] = ACTIONS(3417), - [anon_sym_insert] = ACTIONS(3417), - [anon_sym_async] = ACTIONS(3417), - [anon_sym_PIPE] = ACTIONS(3417), - [anon_sym_table] = ACTIONS(3417), - [anon_sym_assert] = ACTIONS(3417), - [anon_sym_assert_equal] = ACTIONS(3417), - [anon_sym_download] = ACTIONS(3417), - [anon_sym_help] = ACTIONS(3417), - [anon_sym_length] = ACTIONS(3417), - [anon_sym_output] = ACTIONS(3417), - [anon_sym_output_error] = ACTIONS(3417), - [anon_sym_type] = ACTIONS(3417), - [anon_sym_append] = ACTIONS(3417), - [anon_sym_metadata] = ACTIONS(3417), - [anon_sym_move] = ACTIONS(3417), - [anon_sym_read] = ACTIONS(3417), - [anon_sym_workdir] = ACTIONS(3417), - [anon_sym_write] = ACTIONS(3417), - [anon_sym_from_json] = ACTIONS(3417), - [anon_sym_to_json] = ACTIONS(3417), - [anon_sym_to_string] = ACTIONS(3417), - [anon_sym_to_float] = ACTIONS(3417), - [anon_sym_bash] = ACTIONS(3417), - [anon_sym_fish] = ACTIONS(3417), - [anon_sym_raw] = ACTIONS(3417), - [anon_sym_sh] = ACTIONS(3417), - [anon_sym_zsh] = ACTIONS(3417), - [anon_sym_random] = ACTIONS(3417), - [anon_sym_random_boolean] = ACTIONS(3417), - [anon_sym_random_float] = ACTIONS(3417), - [anon_sym_random_integer] = ACTIONS(3417), - [anon_sym_columns] = ACTIONS(3417), - [anon_sym_rows] = ACTIONS(3417), - [anon_sym_reverse] = ACTIONS(3417), - }, - [637] = { - [sym_else_if] = STATE(600), - [sym_else] = STATE(595), - [aux_sym_if_else_repeat1] = STATE(600), - [ts_builtin_sym_end] = ACTIONS(3219), - [sym_identifier] = ACTIONS(3221), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_RPAREN] = ACTIONS(3219), - [sym_integer] = ACTIONS(3221), - [sym_float] = ACTIONS(3219), - [sym_string] = ACTIONS(3219), - [anon_sym_true] = ACTIONS(3221), - [anon_sym_false] = ACTIONS(3221), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_EQ] = ACTIONS(3221), - [anon_sym_COLON] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3221), - [anon_sym_DASH] = ACTIONS(3221), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_PERCENT] = ACTIONS(3219), - [anon_sym_EQ_EQ] = ACTIONS(3219), - [anon_sym_BANG_EQ] = ACTIONS(3219), - [anon_sym_AMP_AMP] = ACTIONS(3219), - [anon_sym_PIPE_PIPE] = ACTIONS(3219), - [anon_sym_GT] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3221), - [anon_sym_GT_EQ] = ACTIONS(3219), - [anon_sym_LT_EQ] = ACTIONS(3219), - [anon_sym_PLUS_EQ] = ACTIONS(3219), - [anon_sym_DASH_EQ] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3221), - [anon_sym_elseif] = ACTIONS(3311), - [anon_sym_else] = ACTIONS(3313), - [anon_sym_match] = ACTIONS(3221), - [anon_sym_EQ_GT] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3221), - [anon_sym_for] = ACTIONS(3221), - [anon_sym_asyncfor] = ACTIONS(3219), - [anon_sym_transform] = ACTIONS(3221), - [anon_sym_filter] = ACTIONS(3221), - [anon_sym_find] = ACTIONS(3221), - [anon_sym_remove] = ACTIONS(3221), - [anon_sym_reduce] = ACTIONS(3221), - [anon_sym_select] = ACTIONS(3221), - [anon_sym_insert] = ACTIONS(3221), - [anon_sym_async] = ACTIONS(3221), - [anon_sym_PIPE] = ACTIONS(3221), - [anon_sym_table] = ACTIONS(3221), - [anon_sym_assert] = ACTIONS(3221), - [anon_sym_assert_equal] = ACTIONS(3221), - [anon_sym_download] = ACTIONS(3221), - [anon_sym_help] = ACTIONS(3221), - [anon_sym_length] = ACTIONS(3221), - [anon_sym_output] = ACTIONS(3221), - [anon_sym_output_error] = ACTIONS(3221), - [anon_sym_type] = ACTIONS(3221), - [anon_sym_append] = ACTIONS(3221), - [anon_sym_metadata] = ACTIONS(3221), - [anon_sym_move] = ACTIONS(3221), - [anon_sym_read] = ACTIONS(3221), - [anon_sym_workdir] = ACTIONS(3221), - [anon_sym_write] = ACTIONS(3221), - [anon_sym_from_json] = ACTIONS(3221), - [anon_sym_to_json] = ACTIONS(3221), - [anon_sym_to_string] = ACTIONS(3221), - [anon_sym_to_float] = ACTIONS(3221), - [anon_sym_bash] = ACTIONS(3221), - [anon_sym_fish] = ACTIONS(3221), - [anon_sym_raw] = ACTIONS(3221), - [anon_sym_sh] = ACTIONS(3221), - [anon_sym_zsh] = ACTIONS(3221), - [anon_sym_random] = ACTIONS(3221), - [anon_sym_random_boolean] = ACTIONS(3221), - [anon_sym_random_float] = ACTIONS(3221), - [anon_sym_random_integer] = ACTIONS(3221), - [anon_sym_columns] = ACTIONS(3221), - [anon_sym_rows] = ACTIONS(3221), - [anon_sym_reverse] = ACTIONS(3221), - }, - [638] = { - [ts_builtin_sym_end] = ACTIONS(3419), - [sym_identifier] = ACTIONS(3421), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3419), - [anon_sym_RBRACE] = ACTIONS(3419), - [anon_sym_SEMI] = ACTIONS(3419), - [anon_sym_LPAREN] = ACTIONS(3419), - [anon_sym_RPAREN] = ACTIONS(3419), - [anon_sym_COMMA] = ACTIONS(3419), - [sym_integer] = ACTIONS(3421), - [sym_float] = ACTIONS(3419), - [sym_string] = ACTIONS(3419), - [anon_sym_true] = ACTIONS(3421), - [anon_sym_false] = ACTIONS(3421), - [anon_sym_LBRACK] = ACTIONS(3419), - [anon_sym_RBRACK] = ACTIONS(3419), - [anon_sym_EQ] = ACTIONS(3421), - [anon_sym_COLON] = ACTIONS(3419), - [anon_sym_DOT_DOT] = ACTIONS(3419), - [anon_sym_PLUS] = ACTIONS(3421), - [anon_sym_DASH] = ACTIONS(3421), - [anon_sym_STAR] = ACTIONS(3419), - [anon_sym_SLASH] = ACTIONS(3419), - [anon_sym_PERCENT] = ACTIONS(3419), - [anon_sym_EQ_EQ] = ACTIONS(3419), - [anon_sym_BANG_EQ] = ACTIONS(3419), - [anon_sym_AMP_AMP] = ACTIONS(3419), - [anon_sym_PIPE_PIPE] = ACTIONS(3419), - [anon_sym_GT] = ACTIONS(3421), - [anon_sym_LT] = ACTIONS(3421), - [anon_sym_GT_EQ] = ACTIONS(3419), - [anon_sym_LT_EQ] = ACTIONS(3419), - [anon_sym_PLUS_EQ] = ACTIONS(3419), - [anon_sym_DASH_EQ] = ACTIONS(3419), - [anon_sym_if] = ACTIONS(3421), - [anon_sym_elseif] = ACTIONS(3419), - [anon_sym_else] = ACTIONS(3421), - [anon_sym_match] = ACTIONS(3421), - [anon_sym_EQ_GT] = ACTIONS(3419), - [anon_sym_while] = ACTIONS(3421), - [anon_sym_for] = ACTIONS(3421), - [anon_sym_asyncfor] = ACTIONS(3419), - [anon_sym_transform] = ACTIONS(3421), - [anon_sym_filter] = ACTIONS(3421), - [anon_sym_find] = ACTIONS(3421), - [anon_sym_remove] = ACTIONS(3421), - [anon_sym_reduce] = ACTIONS(3421), - [anon_sym_select] = ACTIONS(3421), - [anon_sym_insert] = ACTIONS(3421), - [anon_sym_async] = ACTIONS(3421), - [anon_sym_PIPE] = ACTIONS(3421), - [anon_sym_table] = ACTIONS(3421), - [anon_sym_assert] = ACTIONS(3421), - [anon_sym_assert_equal] = ACTIONS(3421), - [anon_sym_download] = ACTIONS(3421), - [anon_sym_help] = ACTIONS(3421), - [anon_sym_length] = ACTIONS(3421), - [anon_sym_output] = ACTIONS(3421), - [anon_sym_output_error] = ACTIONS(3421), - [anon_sym_type] = ACTIONS(3421), - [anon_sym_append] = ACTIONS(3421), - [anon_sym_metadata] = ACTIONS(3421), - [anon_sym_move] = ACTIONS(3421), - [anon_sym_read] = ACTIONS(3421), - [anon_sym_workdir] = ACTIONS(3421), - [anon_sym_write] = ACTIONS(3421), - [anon_sym_from_json] = ACTIONS(3421), - [anon_sym_to_json] = ACTIONS(3421), - [anon_sym_to_string] = ACTIONS(3421), - [anon_sym_to_float] = ACTIONS(3421), - [anon_sym_bash] = ACTIONS(3421), - [anon_sym_fish] = ACTIONS(3421), - [anon_sym_raw] = ACTIONS(3421), - [anon_sym_sh] = ACTIONS(3421), - [anon_sym_zsh] = ACTIONS(3421), - [anon_sym_random] = ACTIONS(3421), - [anon_sym_random_boolean] = ACTIONS(3421), - [anon_sym_random_float] = ACTIONS(3421), - [anon_sym_random_integer] = ACTIONS(3421), - [anon_sym_columns] = ACTIONS(3421), - [anon_sym_rows] = ACTIONS(3421), - [anon_sym_reverse] = ACTIONS(3421), - }, - [639] = { - [ts_builtin_sym_end] = ACTIONS(3423), - [sym_identifier] = ACTIONS(3425), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3423), - [anon_sym_RBRACE] = ACTIONS(3423), - [anon_sym_SEMI] = ACTIONS(3423), - [anon_sym_LPAREN] = ACTIONS(3423), - [anon_sym_RPAREN] = ACTIONS(3423), - [anon_sym_COMMA] = ACTIONS(3423), - [sym_integer] = ACTIONS(3425), - [sym_float] = ACTIONS(3423), - [sym_string] = ACTIONS(3423), - [anon_sym_true] = ACTIONS(3425), - [anon_sym_false] = ACTIONS(3425), - [anon_sym_LBRACK] = ACTIONS(3423), - [anon_sym_RBRACK] = ACTIONS(3423), - [anon_sym_EQ] = ACTIONS(3425), - [anon_sym_COLON] = ACTIONS(3423), - [anon_sym_DOT_DOT] = ACTIONS(3423), - [anon_sym_PLUS] = ACTIONS(3425), - [anon_sym_DASH] = ACTIONS(3425), - [anon_sym_STAR] = ACTIONS(3423), - [anon_sym_SLASH] = ACTIONS(3423), - [anon_sym_PERCENT] = ACTIONS(3423), - [anon_sym_EQ_EQ] = ACTIONS(3423), - [anon_sym_BANG_EQ] = ACTIONS(3423), - [anon_sym_AMP_AMP] = ACTIONS(3423), - [anon_sym_PIPE_PIPE] = ACTIONS(3423), - [anon_sym_GT] = ACTIONS(3425), - [anon_sym_LT] = ACTIONS(3425), - [anon_sym_GT_EQ] = ACTIONS(3423), - [anon_sym_LT_EQ] = ACTIONS(3423), - [anon_sym_PLUS_EQ] = ACTIONS(3423), - [anon_sym_DASH_EQ] = ACTIONS(3423), - [anon_sym_if] = ACTIONS(3425), - [anon_sym_elseif] = ACTIONS(3423), - [anon_sym_else] = ACTIONS(3425), - [anon_sym_match] = ACTIONS(3425), - [anon_sym_EQ_GT] = ACTIONS(3423), - [anon_sym_while] = ACTIONS(3425), - [anon_sym_for] = ACTIONS(3425), - [anon_sym_asyncfor] = ACTIONS(3423), - [anon_sym_transform] = ACTIONS(3425), - [anon_sym_filter] = ACTIONS(3425), - [anon_sym_find] = ACTIONS(3425), - [anon_sym_remove] = ACTIONS(3425), - [anon_sym_reduce] = ACTIONS(3425), - [anon_sym_select] = ACTIONS(3425), - [anon_sym_insert] = ACTIONS(3425), - [anon_sym_async] = ACTIONS(3425), - [anon_sym_PIPE] = ACTIONS(3425), - [anon_sym_table] = ACTIONS(3425), - [anon_sym_assert] = ACTIONS(3425), - [anon_sym_assert_equal] = ACTIONS(3425), - [anon_sym_download] = ACTIONS(3425), - [anon_sym_help] = ACTIONS(3425), - [anon_sym_length] = ACTIONS(3425), - [anon_sym_output] = ACTIONS(3425), - [anon_sym_output_error] = ACTIONS(3425), - [anon_sym_type] = ACTIONS(3425), - [anon_sym_append] = ACTIONS(3425), - [anon_sym_metadata] = ACTIONS(3425), - [anon_sym_move] = ACTIONS(3425), - [anon_sym_read] = ACTIONS(3425), - [anon_sym_workdir] = ACTIONS(3425), - [anon_sym_write] = ACTIONS(3425), - [anon_sym_from_json] = ACTIONS(3425), - [anon_sym_to_json] = ACTIONS(3425), - [anon_sym_to_string] = ACTIONS(3425), - [anon_sym_to_float] = ACTIONS(3425), - [anon_sym_bash] = ACTIONS(3425), - [anon_sym_fish] = ACTIONS(3425), - [anon_sym_raw] = ACTIONS(3425), - [anon_sym_sh] = ACTIONS(3425), - [anon_sym_zsh] = ACTIONS(3425), - [anon_sym_random] = ACTIONS(3425), - [anon_sym_random_boolean] = ACTIONS(3425), - [anon_sym_random_float] = ACTIONS(3425), - [anon_sym_random_integer] = ACTIONS(3425), - [anon_sym_columns] = ACTIONS(3425), - [anon_sym_rows] = ACTIONS(3425), - [anon_sym_reverse] = ACTIONS(3425), - }, - [640] = { - [sym_math_operator] = STATE(1316), - [sym_logic_operator] = STATE(1285), - [ts_builtin_sym_end] = ACTIONS(3240), - [sym_identifier] = ACTIONS(3242), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3240), - [anon_sym_SEMI] = ACTIONS(3240), - [anon_sym_LPAREN] = ACTIONS(3240), - [anon_sym_RPAREN] = ACTIONS(3240), - [anon_sym_COMMA] = ACTIONS(3240), - [sym_integer] = ACTIONS(3242), - [sym_float] = ACTIONS(3240), - [sym_string] = ACTIONS(3240), - [anon_sym_true] = ACTIONS(3242), - [anon_sym_false] = ACTIONS(3242), - [anon_sym_LBRACK] = ACTIONS(3240), - [anon_sym_RBRACK] = ACTIONS(3240), - [anon_sym_EQ] = ACTIONS(3242), - [anon_sym_COLON] = ACTIONS(163), - [anon_sym_DOT_DOT] = ACTIONS(3240), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_PLUS_EQ] = ACTIONS(3240), - [anon_sym_DASH_EQ] = ACTIONS(3240), - [anon_sym_if] = ACTIONS(3242), - [anon_sym_match] = ACTIONS(3242), - [anon_sym_EQ_GT] = ACTIONS(3240), - [anon_sym_while] = ACTIONS(3242), - [anon_sym_for] = ACTIONS(3242), - [anon_sym_asyncfor] = ACTIONS(3240), - [anon_sym_transform] = ACTIONS(3242), - [anon_sym_filter] = ACTIONS(3242), - [anon_sym_find] = ACTIONS(3242), - [anon_sym_remove] = ACTIONS(3242), - [anon_sym_reduce] = ACTIONS(3242), - [anon_sym_select] = ACTIONS(3242), - [anon_sym_insert] = ACTIONS(3242), - [anon_sym_async] = ACTIONS(3242), - [anon_sym_PIPE] = ACTIONS(3242), - [anon_sym_table] = ACTIONS(3242), - [anon_sym_assert] = ACTIONS(3242), - [anon_sym_assert_equal] = ACTIONS(3242), - [anon_sym_download] = ACTIONS(3242), - [anon_sym_help] = ACTIONS(3242), - [anon_sym_length] = ACTIONS(3242), - [anon_sym_output] = ACTIONS(3242), - [anon_sym_output_error] = ACTIONS(3242), - [anon_sym_type] = ACTIONS(3242), - [anon_sym_append] = ACTIONS(3242), - [anon_sym_metadata] = ACTIONS(3242), - [anon_sym_move] = ACTIONS(3242), - [anon_sym_read] = ACTIONS(3242), - [anon_sym_workdir] = ACTIONS(3242), - [anon_sym_write] = ACTIONS(3242), - [anon_sym_from_json] = ACTIONS(3242), - [anon_sym_to_json] = ACTIONS(3242), - [anon_sym_to_string] = ACTIONS(3242), - [anon_sym_to_float] = ACTIONS(3242), - [anon_sym_bash] = ACTIONS(3242), - [anon_sym_fish] = ACTIONS(3242), - [anon_sym_raw] = ACTIONS(3242), - [anon_sym_sh] = ACTIONS(3242), - [anon_sym_zsh] = ACTIONS(3242), - [anon_sym_random] = ACTIONS(3242), - [anon_sym_random_boolean] = ACTIONS(3242), - [anon_sym_random_float] = ACTIONS(3242), - [anon_sym_random_integer] = ACTIONS(3242), - [anon_sym_columns] = ACTIONS(3242), - [anon_sym_rows] = ACTIONS(3242), - [anon_sym_reverse] = ACTIONS(3242), - }, - [641] = { - [sym_math_operator] = STATE(1414), - [sym_logic_operator] = STATE(1413), - [ts_builtin_sym_end] = ACTIONS(3248), - [sym_identifier] = ACTIONS(3250), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3248), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(3248), - [anon_sym_RPAREN] = ACTIONS(3248), - [sym_integer] = ACTIONS(3250), - [sym_float] = ACTIONS(3248), - [sym_string] = ACTIONS(3248), - [anon_sym_true] = ACTIONS(3250), - [anon_sym_false] = ACTIONS(3250), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_EQ] = ACTIONS(3250), - [anon_sym_COLON] = ACTIONS(3248), - [anon_sym_DOT_DOT] = ACTIONS(3427), - [anon_sym_PLUS] = ACTIONS(3250), - [anon_sym_DASH] = ACTIONS(3250), - [anon_sym_STAR] = ACTIONS(3248), - [anon_sym_SLASH] = ACTIONS(3248), - [anon_sym_PERCENT] = ACTIONS(3248), - [anon_sym_EQ_EQ] = ACTIONS(3248), - [anon_sym_BANG_EQ] = ACTIONS(3248), - [anon_sym_AMP_AMP] = ACTIONS(3248), - [anon_sym_PIPE_PIPE] = ACTIONS(3248), - [anon_sym_GT] = ACTIONS(3250), - [anon_sym_LT] = ACTIONS(3250), - [anon_sym_GT_EQ] = ACTIONS(3248), - [anon_sym_LT_EQ] = ACTIONS(3248), - [anon_sym_PLUS_EQ] = ACTIONS(3248), - [anon_sym_DASH_EQ] = ACTIONS(3248), - [anon_sym_if] = ACTIONS(3250), - [anon_sym_elseif] = ACTIONS(3248), - [anon_sym_else] = ACTIONS(3250), - [anon_sym_match] = ACTIONS(3250), - [anon_sym_EQ_GT] = ACTIONS(3248), - [anon_sym_while] = ACTIONS(3250), - [anon_sym_for] = ACTIONS(3250), - [anon_sym_asyncfor] = ACTIONS(3248), - [anon_sym_transform] = ACTIONS(3250), - [anon_sym_filter] = ACTIONS(3250), - [anon_sym_find] = ACTIONS(3250), - [anon_sym_remove] = ACTIONS(3250), - [anon_sym_reduce] = ACTIONS(3250), - [anon_sym_select] = ACTIONS(3250), - [anon_sym_insert] = ACTIONS(3250), - [anon_sym_async] = ACTIONS(3250), - [anon_sym_PIPE] = ACTIONS(3250), - [anon_sym_table] = ACTIONS(3250), - [anon_sym_assert] = ACTIONS(3250), - [anon_sym_assert_equal] = ACTIONS(3250), - [anon_sym_download] = ACTIONS(3250), - [anon_sym_help] = ACTIONS(3250), - [anon_sym_length] = ACTIONS(3250), - [anon_sym_output] = ACTIONS(3250), - [anon_sym_output_error] = ACTIONS(3250), - [anon_sym_type] = ACTIONS(3250), - [anon_sym_append] = ACTIONS(3250), - [anon_sym_metadata] = ACTIONS(3250), - [anon_sym_move] = ACTIONS(3250), - [anon_sym_read] = ACTIONS(3250), - [anon_sym_workdir] = ACTIONS(3250), - [anon_sym_write] = ACTIONS(3250), - [anon_sym_from_json] = ACTIONS(3250), - [anon_sym_to_json] = ACTIONS(3250), - [anon_sym_to_string] = ACTIONS(3250), - [anon_sym_to_float] = ACTIONS(3250), - [anon_sym_bash] = ACTIONS(3250), - [anon_sym_fish] = ACTIONS(3250), - [anon_sym_raw] = ACTIONS(3250), - [anon_sym_sh] = ACTIONS(3250), - [anon_sym_zsh] = ACTIONS(3250), - [anon_sym_random] = ACTIONS(3250), - [anon_sym_random_boolean] = ACTIONS(3250), - [anon_sym_random_float] = ACTIONS(3250), - [anon_sym_random_integer] = ACTIONS(3250), - [anon_sym_columns] = ACTIONS(3250), - [anon_sym_rows] = ACTIONS(3250), - [anon_sym_reverse] = ACTIONS(3250), - }, - [642] = { - [sym_math_operator] = STATE(1316), - [sym_logic_operator] = STATE(1285), - [ts_builtin_sym_end] = ACTIONS(3233), - [sym_identifier] = ACTIONS(3235), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3233), - [anon_sym_RBRACE] = ACTIONS(3233), - [anon_sym_SEMI] = ACTIONS(3233), - [anon_sym_LPAREN] = ACTIONS(3233), - [anon_sym_RPAREN] = ACTIONS(3233), - [anon_sym_COMMA] = ACTIONS(3429), - [sym_integer] = ACTIONS(3235), - [sym_float] = ACTIONS(3233), - [sym_string] = ACTIONS(3233), - [anon_sym_true] = ACTIONS(3235), - [anon_sym_false] = ACTIONS(3235), - [anon_sym_LBRACK] = ACTIONS(3233), - [anon_sym_RBRACK] = ACTIONS(3233), - [anon_sym_EQ] = ACTIONS(3235), - [anon_sym_COLON] = ACTIONS(163), - [anon_sym_DOT_DOT] = ACTIONS(3233), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_PLUS_EQ] = ACTIONS(3233), - [anon_sym_DASH_EQ] = ACTIONS(3233), - [anon_sym_if] = ACTIONS(3235), - [anon_sym_match] = ACTIONS(3235), - [anon_sym_EQ_GT] = ACTIONS(3233), - [anon_sym_while] = ACTIONS(3235), - [anon_sym_for] = ACTIONS(3235), - [anon_sym_asyncfor] = ACTIONS(3233), - [anon_sym_transform] = ACTIONS(3235), - [anon_sym_filter] = ACTIONS(3235), - [anon_sym_find] = ACTIONS(3235), - [anon_sym_remove] = ACTIONS(3235), - [anon_sym_reduce] = ACTIONS(3235), - [anon_sym_select] = ACTIONS(3235), - [anon_sym_insert] = ACTIONS(3235), - [anon_sym_async] = ACTIONS(3235), - [anon_sym_PIPE] = ACTIONS(3235), - [anon_sym_table] = ACTIONS(3235), - [anon_sym_assert] = ACTIONS(3235), - [anon_sym_assert_equal] = ACTIONS(3235), - [anon_sym_download] = ACTIONS(3235), - [anon_sym_help] = ACTIONS(3235), - [anon_sym_length] = ACTIONS(3235), - [anon_sym_output] = ACTIONS(3235), - [anon_sym_output_error] = ACTIONS(3235), - [anon_sym_type] = ACTIONS(3235), - [anon_sym_append] = ACTIONS(3235), - [anon_sym_metadata] = ACTIONS(3235), - [anon_sym_move] = ACTIONS(3235), - [anon_sym_read] = ACTIONS(3235), - [anon_sym_workdir] = ACTIONS(3235), - [anon_sym_write] = ACTIONS(3235), - [anon_sym_from_json] = ACTIONS(3235), - [anon_sym_to_json] = ACTIONS(3235), - [anon_sym_to_string] = ACTIONS(3235), - [anon_sym_to_float] = ACTIONS(3235), - [anon_sym_bash] = ACTIONS(3235), - [anon_sym_fish] = ACTIONS(3235), - [anon_sym_raw] = ACTIONS(3235), - [anon_sym_sh] = ACTIONS(3235), - [anon_sym_zsh] = ACTIONS(3235), - [anon_sym_random] = ACTIONS(3235), - [anon_sym_random_boolean] = ACTIONS(3235), - [anon_sym_random_float] = ACTIONS(3235), - [anon_sym_random_integer] = ACTIONS(3235), - [anon_sym_columns] = ACTIONS(3235), - [anon_sym_rows] = ACTIONS(3235), - [anon_sym_reverse] = ACTIONS(3235), - }, - [643] = { - [sym_math_operator] = STATE(1316), - [sym_logic_operator] = STATE(1285), - [ts_builtin_sym_end] = ACTIONS(3248), - [sym_identifier] = ACTIONS(3250), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3248), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(3248), - [anon_sym_RPAREN] = ACTIONS(3248), - [anon_sym_COMMA] = ACTIONS(3248), - [sym_integer] = ACTIONS(3250), - [sym_float] = ACTIONS(3248), - [sym_string] = ACTIONS(3248), - [anon_sym_true] = ACTIONS(3250), - [anon_sym_false] = ACTIONS(3250), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_RBRACK] = ACTIONS(3248), - [anon_sym_EQ] = ACTIONS(3250), - [anon_sym_COLON] = ACTIONS(3248), - [anon_sym_DOT_DOT] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3250), - [anon_sym_DASH] = ACTIONS(3250), - [anon_sym_STAR] = ACTIONS(3248), - [anon_sym_SLASH] = ACTIONS(3248), - [anon_sym_PERCENT] = ACTIONS(3248), - [anon_sym_EQ_EQ] = ACTIONS(3248), - [anon_sym_BANG_EQ] = ACTIONS(3248), - [anon_sym_AMP_AMP] = ACTIONS(3248), - [anon_sym_PIPE_PIPE] = ACTIONS(3248), - [anon_sym_GT] = ACTIONS(3250), - [anon_sym_LT] = ACTIONS(3250), - [anon_sym_GT_EQ] = ACTIONS(3248), - [anon_sym_LT_EQ] = ACTIONS(3248), - [anon_sym_PLUS_EQ] = ACTIONS(3248), - [anon_sym_DASH_EQ] = ACTIONS(3248), - [anon_sym_if] = ACTIONS(3250), - [anon_sym_match] = ACTIONS(3250), - [anon_sym_EQ_GT] = ACTIONS(3248), - [anon_sym_while] = ACTIONS(3250), - [anon_sym_for] = ACTIONS(3250), - [anon_sym_asyncfor] = ACTIONS(3248), - [anon_sym_transform] = ACTIONS(3250), - [anon_sym_filter] = ACTIONS(3250), - [anon_sym_find] = ACTIONS(3250), - [anon_sym_remove] = ACTIONS(3250), - [anon_sym_reduce] = ACTIONS(3250), - [anon_sym_select] = ACTIONS(3250), - [anon_sym_insert] = ACTIONS(3250), - [anon_sym_async] = ACTIONS(3250), - [anon_sym_PIPE] = ACTIONS(3250), - [anon_sym_table] = ACTIONS(3250), - [anon_sym_assert] = ACTIONS(3250), - [anon_sym_assert_equal] = ACTIONS(3250), - [anon_sym_download] = ACTIONS(3250), - [anon_sym_help] = ACTIONS(3250), - [anon_sym_length] = ACTIONS(3250), - [anon_sym_output] = ACTIONS(3250), - [anon_sym_output_error] = ACTIONS(3250), - [anon_sym_type] = ACTIONS(3250), - [anon_sym_append] = ACTIONS(3250), - [anon_sym_metadata] = ACTIONS(3250), - [anon_sym_move] = ACTIONS(3250), - [anon_sym_read] = ACTIONS(3250), - [anon_sym_workdir] = ACTIONS(3250), - [anon_sym_write] = ACTIONS(3250), - [anon_sym_from_json] = ACTIONS(3250), - [anon_sym_to_json] = ACTIONS(3250), - [anon_sym_to_string] = ACTIONS(3250), - [anon_sym_to_float] = ACTIONS(3250), - [anon_sym_bash] = ACTIONS(3250), - [anon_sym_fish] = ACTIONS(3250), - [anon_sym_raw] = ACTIONS(3250), - [anon_sym_sh] = ACTIONS(3250), - [anon_sym_zsh] = ACTIONS(3250), - [anon_sym_random] = ACTIONS(3250), - [anon_sym_random_boolean] = ACTIONS(3250), - [anon_sym_random_float] = ACTIONS(3250), - [anon_sym_random_integer] = ACTIONS(3250), - [anon_sym_columns] = ACTIONS(3250), - [anon_sym_rows] = ACTIONS(3250), - [anon_sym_reverse] = ACTIONS(3250), - }, - [644] = { - [sym_math_operator] = STATE(1316), - [sym_logic_operator] = STATE(1285), - [ts_builtin_sym_end] = ACTIONS(3244), - [sym_identifier] = ACTIONS(3246), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_RBRACE] = ACTIONS(3244), - [anon_sym_SEMI] = ACTIONS(3244), - [anon_sym_LPAREN] = ACTIONS(3244), - [anon_sym_RPAREN] = ACTIONS(3244), - [anon_sym_COMMA] = ACTIONS(3244), - [sym_integer] = ACTIONS(3246), - [sym_float] = ACTIONS(3244), - [sym_string] = ACTIONS(3244), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_LBRACK] = ACTIONS(3244), - [anon_sym_RBRACK] = ACTIONS(3244), - [anon_sym_EQ] = ACTIONS(3246), - [anon_sym_COLON] = ACTIONS(163), - [anon_sym_DOT_DOT] = ACTIONS(3244), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_PLUS_EQ] = ACTIONS(3244), - [anon_sym_DASH_EQ] = ACTIONS(3244), - [anon_sym_if] = ACTIONS(3246), - [anon_sym_match] = ACTIONS(3246), - [anon_sym_EQ_GT] = ACTIONS(3244), - [anon_sym_while] = ACTIONS(3246), - [anon_sym_for] = ACTIONS(3246), - [anon_sym_asyncfor] = ACTIONS(3244), - [anon_sym_transform] = ACTIONS(3246), - [anon_sym_filter] = ACTIONS(3246), - [anon_sym_find] = ACTIONS(3246), - [anon_sym_remove] = ACTIONS(3246), - [anon_sym_reduce] = ACTIONS(3246), - [anon_sym_select] = ACTIONS(3246), - [anon_sym_insert] = ACTIONS(3246), - [anon_sym_async] = ACTIONS(3246), - [anon_sym_PIPE] = ACTIONS(3246), - [anon_sym_table] = ACTIONS(3246), - [anon_sym_assert] = ACTIONS(3246), - [anon_sym_assert_equal] = ACTIONS(3246), - [anon_sym_download] = ACTIONS(3246), - [anon_sym_help] = ACTIONS(3246), - [anon_sym_length] = ACTIONS(3246), - [anon_sym_output] = ACTIONS(3246), - [anon_sym_output_error] = ACTIONS(3246), - [anon_sym_type] = ACTIONS(3246), - [anon_sym_append] = ACTIONS(3246), - [anon_sym_metadata] = ACTIONS(3246), - [anon_sym_move] = ACTIONS(3246), - [anon_sym_read] = ACTIONS(3246), - [anon_sym_workdir] = ACTIONS(3246), - [anon_sym_write] = ACTIONS(3246), - [anon_sym_from_json] = ACTIONS(3246), - [anon_sym_to_json] = ACTIONS(3246), - [anon_sym_to_string] = ACTIONS(3246), - [anon_sym_to_float] = ACTIONS(3246), - [anon_sym_bash] = ACTIONS(3246), - [anon_sym_fish] = ACTIONS(3246), - [anon_sym_raw] = ACTIONS(3246), - [anon_sym_sh] = ACTIONS(3246), - [anon_sym_zsh] = ACTIONS(3246), - [anon_sym_random] = ACTIONS(3246), - [anon_sym_random_boolean] = ACTIONS(3246), - [anon_sym_random_float] = ACTIONS(3246), - [anon_sym_random_integer] = ACTIONS(3246), - [anon_sym_columns] = ACTIONS(3246), - [anon_sym_rows] = ACTIONS(3246), - [anon_sym_reverse] = ACTIONS(3246), - }, - [645] = { - [ts_builtin_sym_end] = ACTIONS(3432), - [sym_identifier] = ACTIONS(3434), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3432), - [anon_sym_RBRACE] = ACTIONS(3432), - [anon_sym_SEMI] = ACTIONS(3432), - [anon_sym_LPAREN] = ACTIONS(3432), - [anon_sym_RPAREN] = ACTIONS(3432), - [anon_sym_COMMA] = ACTIONS(3432), - [sym_integer] = ACTIONS(3434), - [sym_float] = ACTIONS(3432), - [sym_string] = ACTIONS(3432), - [anon_sym_true] = ACTIONS(3434), - [anon_sym_false] = ACTIONS(3434), - [anon_sym_LBRACK] = ACTIONS(3432), - [anon_sym_RBRACK] = ACTIONS(3432), - [anon_sym_EQ] = ACTIONS(3434), - [anon_sym_COLON] = ACTIONS(3432), - [anon_sym_DOT_DOT] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3434), - [anon_sym_DASH] = ACTIONS(3434), - [anon_sym_STAR] = ACTIONS(3432), - [anon_sym_SLASH] = ACTIONS(3432), - [anon_sym_PERCENT] = ACTIONS(3432), - [anon_sym_EQ_EQ] = ACTIONS(3432), - [anon_sym_BANG_EQ] = ACTIONS(3432), - [anon_sym_AMP_AMP] = ACTIONS(3432), - [anon_sym_PIPE_PIPE] = ACTIONS(3432), - [anon_sym_GT] = ACTIONS(3434), - [anon_sym_LT] = ACTIONS(3434), - [anon_sym_GT_EQ] = ACTIONS(3432), - [anon_sym_LT_EQ] = ACTIONS(3432), - [anon_sym_PLUS_EQ] = ACTIONS(3432), - [anon_sym_DASH_EQ] = ACTIONS(3432), - [anon_sym_if] = ACTIONS(3434), - [anon_sym_elseif] = ACTIONS(3432), - [anon_sym_else] = ACTIONS(3434), - [anon_sym_match] = ACTIONS(3434), - [anon_sym_EQ_GT] = ACTIONS(3432), - [anon_sym_while] = ACTIONS(3434), - [anon_sym_for] = ACTIONS(3434), - [anon_sym_asyncfor] = ACTIONS(3432), - [anon_sym_transform] = ACTIONS(3434), - [anon_sym_filter] = ACTIONS(3434), - [anon_sym_find] = ACTIONS(3434), - [anon_sym_remove] = ACTIONS(3434), - [anon_sym_reduce] = ACTIONS(3434), - [anon_sym_select] = ACTIONS(3434), - [anon_sym_insert] = ACTIONS(3434), - [anon_sym_async] = ACTIONS(3434), - [anon_sym_PIPE] = ACTIONS(3434), - [anon_sym_table] = ACTIONS(3434), - [anon_sym_assert] = ACTIONS(3434), - [anon_sym_assert_equal] = ACTIONS(3434), - [anon_sym_download] = ACTIONS(3434), - [anon_sym_help] = ACTIONS(3434), - [anon_sym_length] = ACTIONS(3434), - [anon_sym_output] = ACTIONS(3434), - [anon_sym_output_error] = ACTIONS(3434), - [anon_sym_type] = ACTIONS(3434), - [anon_sym_append] = ACTIONS(3434), - [anon_sym_metadata] = ACTIONS(3434), - [anon_sym_move] = ACTIONS(3434), - [anon_sym_read] = ACTIONS(3434), - [anon_sym_workdir] = ACTIONS(3434), - [anon_sym_write] = ACTIONS(3434), - [anon_sym_from_json] = ACTIONS(3434), - [anon_sym_to_json] = ACTIONS(3434), - [anon_sym_to_string] = ACTIONS(3434), - [anon_sym_to_float] = ACTIONS(3434), - [anon_sym_bash] = ACTIONS(3434), - [anon_sym_fish] = ACTIONS(3434), - [anon_sym_raw] = ACTIONS(3434), - [anon_sym_sh] = ACTIONS(3434), - [anon_sym_zsh] = ACTIONS(3434), - [anon_sym_random] = ACTIONS(3434), - [anon_sym_random_boolean] = ACTIONS(3434), - [anon_sym_random_float] = ACTIONS(3434), - [anon_sym_random_integer] = ACTIONS(3434), - [anon_sym_columns] = ACTIONS(3434), - [anon_sym_rows] = ACTIONS(3434), - [anon_sym_reverse] = ACTIONS(3434), - }, - [646] = { - [sym_math_operator] = STATE(1414), - [sym_logic_operator] = STATE(1413), - [ts_builtin_sym_end] = ACTIONS(3281), - [sym_identifier] = ACTIONS(3283), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3281), - [anon_sym_RBRACE] = ACTIONS(3281), - [anon_sym_SEMI] = ACTIONS(3281), - [anon_sym_LPAREN] = ACTIONS(3281), - [anon_sym_RPAREN] = ACTIONS(3281), - [sym_integer] = ACTIONS(3283), - [sym_float] = ACTIONS(3281), - [sym_string] = ACTIONS(3281), - [anon_sym_true] = ACTIONS(3283), - [anon_sym_false] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3281), - [anon_sym_EQ] = ACTIONS(3283), - [anon_sym_COLON] = ACTIONS(195), - [anon_sym_DOT_DOT] = ACTIONS(3281), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_PLUS_EQ] = ACTIONS(3281), - [anon_sym_DASH_EQ] = ACTIONS(3281), - [anon_sym_if] = ACTIONS(3283), - [anon_sym_elseif] = ACTIONS(3281), - [anon_sym_else] = ACTIONS(3283), - [anon_sym_match] = ACTIONS(3283), - [anon_sym_EQ_GT] = ACTIONS(3281), - [anon_sym_while] = ACTIONS(3283), - [anon_sym_for] = ACTIONS(3283), - [anon_sym_asyncfor] = ACTIONS(3281), - [anon_sym_transform] = ACTIONS(3283), - [anon_sym_filter] = ACTIONS(3283), - [anon_sym_find] = ACTIONS(3283), - [anon_sym_remove] = ACTIONS(3283), - [anon_sym_reduce] = ACTIONS(3283), - [anon_sym_select] = ACTIONS(3283), - [anon_sym_insert] = ACTIONS(3283), - [anon_sym_async] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(3283), - [anon_sym_table] = ACTIONS(3283), - [anon_sym_assert] = ACTIONS(3283), - [anon_sym_assert_equal] = ACTIONS(3283), - [anon_sym_download] = ACTIONS(3283), - [anon_sym_help] = ACTIONS(3283), - [anon_sym_length] = ACTIONS(3283), - [anon_sym_output] = ACTIONS(3283), - [anon_sym_output_error] = ACTIONS(3283), - [anon_sym_type] = ACTIONS(3283), - [anon_sym_append] = ACTIONS(3283), - [anon_sym_metadata] = ACTIONS(3283), - [anon_sym_move] = ACTIONS(3283), - [anon_sym_read] = ACTIONS(3283), - [anon_sym_workdir] = ACTIONS(3283), - [anon_sym_write] = ACTIONS(3283), - [anon_sym_from_json] = ACTIONS(3283), - [anon_sym_to_json] = ACTIONS(3283), - [anon_sym_to_string] = ACTIONS(3283), - [anon_sym_to_float] = ACTIONS(3283), - [anon_sym_bash] = ACTIONS(3283), - [anon_sym_fish] = ACTIONS(3283), - [anon_sym_raw] = ACTIONS(3283), - [anon_sym_sh] = ACTIONS(3283), - [anon_sym_zsh] = ACTIONS(3283), - [anon_sym_random] = ACTIONS(3283), - [anon_sym_random_boolean] = ACTIONS(3283), - [anon_sym_random_float] = ACTIONS(3283), - [anon_sym_random_integer] = ACTIONS(3283), - [anon_sym_columns] = ACTIONS(3283), - [anon_sym_rows] = ACTIONS(3283), - [anon_sym_reverse] = ACTIONS(3283), - }, - [647] = { - [sym_else_if] = STATE(613), - [sym_else] = STATE(792), - [aux_sym_if_else_repeat1] = STATE(613), - [ts_builtin_sym_end] = ACTIONS(3219), - [sym_identifier] = ACTIONS(3221), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_RPAREN] = ACTIONS(3219), - [anon_sym_COMMA] = ACTIONS(3219), - [sym_integer] = ACTIONS(3221), - [sym_float] = ACTIONS(3219), - [sym_string] = ACTIONS(3219), - [anon_sym_true] = ACTIONS(3221), - [anon_sym_false] = ACTIONS(3221), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_RBRACK] = ACTIONS(3219), - [anon_sym_COLON] = ACTIONS(3219), - [anon_sym_DOT_DOT] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3221), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_PERCENT] = ACTIONS(3219), - [anon_sym_EQ_EQ] = ACTIONS(3219), - [anon_sym_BANG_EQ] = ACTIONS(3219), - [anon_sym_AMP_AMP] = ACTIONS(3219), - [anon_sym_PIPE_PIPE] = ACTIONS(3219), - [anon_sym_GT] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3221), - [anon_sym_GT_EQ] = ACTIONS(3219), - [anon_sym_LT_EQ] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3221), - [anon_sym_elseif] = ACTIONS(3347), - [anon_sym_else] = ACTIONS(3349), - [anon_sym_match] = ACTIONS(3221), - [anon_sym_EQ_GT] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3221), - [anon_sym_for] = ACTIONS(3221), - [anon_sym_asyncfor] = ACTIONS(3219), - [anon_sym_transform] = ACTIONS(3221), - [anon_sym_filter] = ACTIONS(3221), - [anon_sym_find] = ACTIONS(3221), - [anon_sym_remove] = ACTIONS(3221), - [anon_sym_reduce] = ACTIONS(3221), - [anon_sym_select] = ACTIONS(3221), - [anon_sym_insert] = ACTIONS(3221), - [anon_sym_async] = ACTIONS(3221), - [anon_sym_PIPE] = ACTIONS(3221), - [anon_sym_table] = ACTIONS(3221), - [anon_sym_assert] = ACTIONS(3221), - [anon_sym_assert_equal] = ACTIONS(3221), - [anon_sym_download] = ACTIONS(3221), - [anon_sym_help] = ACTIONS(3221), - [anon_sym_length] = ACTIONS(3221), - [anon_sym_output] = ACTIONS(3221), - [anon_sym_output_error] = ACTIONS(3221), - [anon_sym_type] = ACTIONS(3221), - [anon_sym_append] = ACTIONS(3221), - [anon_sym_metadata] = ACTIONS(3221), - [anon_sym_move] = ACTIONS(3221), - [anon_sym_read] = ACTIONS(3221), - [anon_sym_workdir] = ACTIONS(3221), - [anon_sym_write] = ACTIONS(3221), - [anon_sym_from_json] = ACTIONS(3221), - [anon_sym_to_json] = ACTIONS(3221), - [anon_sym_to_string] = ACTIONS(3221), - [anon_sym_to_float] = ACTIONS(3221), - [anon_sym_bash] = ACTIONS(3221), - [anon_sym_fish] = ACTIONS(3221), - [anon_sym_raw] = ACTIONS(3221), - [anon_sym_sh] = ACTIONS(3221), - [anon_sym_zsh] = ACTIONS(3221), - [anon_sym_random] = ACTIONS(3221), - [anon_sym_random_boolean] = ACTIONS(3221), - [anon_sym_random_float] = ACTIONS(3221), - [anon_sym_random_integer] = ACTIONS(3221), - [anon_sym_columns] = ACTIONS(3221), - [anon_sym_rows] = ACTIONS(3221), - [anon_sym_reverse] = ACTIONS(3221), - }, - [648] = { - [sym_else_if] = STATE(652), - [sym_else] = STATE(857), - [aux_sym_if_else_repeat1] = STATE(652), - [ts_builtin_sym_end] = ACTIONS(3229), - [sym_identifier] = ACTIONS(3231), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3229), - [anon_sym_RBRACE] = ACTIONS(3229), - [anon_sym_SEMI] = ACTIONS(3229), - [anon_sym_LPAREN] = ACTIONS(3229), - [anon_sym_RPAREN] = ACTIONS(3229), - [anon_sym_COMMA] = ACTIONS(3229), - [sym_integer] = ACTIONS(3231), - [sym_float] = ACTIONS(3229), - [sym_string] = ACTIONS(3229), - [anon_sym_true] = ACTIONS(3231), - [anon_sym_false] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3229), - [anon_sym_RBRACK] = ACTIONS(3229), - [anon_sym_COLON] = ACTIONS(3229), - [anon_sym_DOT_DOT] = ACTIONS(3229), - [anon_sym_PLUS] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_SLASH] = ACTIONS(3229), - [anon_sym_PERCENT] = ACTIONS(3229), - [anon_sym_EQ_EQ] = ACTIONS(3229), - [anon_sym_BANG_EQ] = ACTIONS(3229), - [anon_sym_AMP_AMP] = ACTIONS(3229), - [anon_sym_PIPE_PIPE] = ACTIONS(3229), - [anon_sym_GT] = ACTIONS(3231), - [anon_sym_LT] = ACTIONS(3231), - [anon_sym_GT_EQ] = ACTIONS(3229), - [anon_sym_LT_EQ] = ACTIONS(3229), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_elseif] = ACTIONS(3347), - [anon_sym_else] = ACTIONS(3387), - [anon_sym_match] = ACTIONS(3231), - [anon_sym_EQ_GT] = ACTIONS(3229), - [anon_sym_while] = ACTIONS(3231), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_asyncfor] = ACTIONS(3229), - [anon_sym_transform] = ACTIONS(3231), - [anon_sym_filter] = ACTIONS(3231), - [anon_sym_find] = ACTIONS(3231), - [anon_sym_remove] = ACTIONS(3231), - [anon_sym_reduce] = ACTIONS(3231), - [anon_sym_select] = ACTIONS(3231), - [anon_sym_insert] = ACTIONS(3231), - [anon_sym_async] = ACTIONS(3231), - [anon_sym_PIPE] = ACTIONS(3231), - [anon_sym_table] = ACTIONS(3231), - [anon_sym_assert] = ACTIONS(3231), - [anon_sym_assert_equal] = ACTIONS(3231), - [anon_sym_download] = ACTIONS(3231), - [anon_sym_help] = ACTIONS(3231), - [anon_sym_length] = ACTIONS(3231), - [anon_sym_output] = ACTIONS(3231), - [anon_sym_output_error] = ACTIONS(3231), - [anon_sym_type] = ACTIONS(3231), - [anon_sym_append] = ACTIONS(3231), - [anon_sym_metadata] = ACTIONS(3231), - [anon_sym_move] = ACTIONS(3231), - [anon_sym_read] = ACTIONS(3231), - [anon_sym_workdir] = ACTIONS(3231), - [anon_sym_write] = ACTIONS(3231), - [anon_sym_from_json] = ACTIONS(3231), - [anon_sym_to_json] = ACTIONS(3231), - [anon_sym_to_string] = ACTIONS(3231), - [anon_sym_to_float] = ACTIONS(3231), - [anon_sym_bash] = ACTIONS(3231), - [anon_sym_fish] = ACTIONS(3231), - [anon_sym_raw] = ACTIONS(3231), - [anon_sym_sh] = ACTIONS(3231), - [anon_sym_zsh] = ACTIONS(3231), - [anon_sym_random] = ACTIONS(3231), - [anon_sym_random_boolean] = ACTIONS(3231), - [anon_sym_random_float] = ACTIONS(3231), - [anon_sym_random_integer] = ACTIONS(3231), - [anon_sym_columns] = ACTIONS(3231), - [anon_sym_rows] = ACTIONS(3231), - [anon_sym_reverse] = ACTIONS(3231), - }, - [649] = { - [sym_expression] = STATE(955), - [sym__expression_kind] = STATE(986), - [aux_sym__expression_list] = STATE(669), - [sym_value] = STATE(986), - [sym_boolean] = STATE(981), - [sym_list] = STATE(981), - [sym_map] = STATE(981), - [sym_index] = STATE(986), - [sym_math] = STATE(986), - [sym_logic] = STATE(986), - [sym_identifier_list] = STATE(1920), - [sym_table] = STATE(981), - [sym_function] = STATE(981), - [sym_function_call] = STATE(986), - [sym__context_defined_function] = STATE(990), - [sym_built_in_function] = STATE(990), - [sym__built_in_function_name] = STATE(673), - [sym_identifier] = ACTIONS(3436), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3438), - [anon_sym_RBRACE] = ACTIONS(2443), - [anon_sym_SEMI] = ACTIONS(2443), - [anon_sym_LPAREN] = ACTIONS(3440), - [anon_sym_COMMA] = ACTIONS(2443), - [sym_integer] = ACTIONS(3442), - [sym_float] = ACTIONS(3444), - [sym_string] = ACTIONS(3444), - [anon_sym_true] = ACTIONS(3446), - [anon_sym_false] = ACTIONS(3446), - [anon_sym_LBRACK] = ACTIONS(3448), - [anon_sym_EQ] = ACTIONS(2447), - [anon_sym_COLON] = ACTIONS(2443), - [anon_sym_DOT_DOT] = ACTIONS(2443), - [anon_sym_PLUS] = ACTIONS(2447), - [anon_sym_DASH] = ACTIONS(2447), - [anon_sym_STAR] = ACTIONS(2443), - [anon_sym_SLASH] = ACTIONS(2443), - [anon_sym_PERCENT] = ACTIONS(2443), - [anon_sym_EQ_EQ] = ACTIONS(2443), - [anon_sym_BANG_EQ] = ACTIONS(2443), - [anon_sym_AMP_AMP] = ACTIONS(2443), - [anon_sym_PIPE_PIPE] = ACTIONS(2443), - [anon_sym_GT] = ACTIONS(2447), - [anon_sym_LT] = ACTIONS(2447), - [anon_sym_GT_EQ] = ACTIONS(2443), - [anon_sym_LT_EQ] = ACTIONS(2443), - [anon_sym_PLUS_EQ] = ACTIONS(2443), - [anon_sym_DASH_EQ] = ACTIONS(2443), - [anon_sym_EQ_GT] = ACTIONS(3450), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(3452), - [anon_sym_assert] = ACTIONS(3454), - [anon_sym_assert_equal] = ACTIONS(3454), - [anon_sym_download] = ACTIONS(3454), - [anon_sym_help] = ACTIONS(3454), - [anon_sym_length] = ACTIONS(3454), - [anon_sym_output] = ACTIONS(3454), - [anon_sym_output_error] = ACTIONS(3454), - [anon_sym_type] = ACTIONS(3454), - [anon_sym_append] = ACTIONS(3454), - [anon_sym_metadata] = ACTIONS(3454), - [anon_sym_move] = ACTIONS(3454), - [anon_sym_read] = ACTIONS(3454), - [anon_sym_workdir] = ACTIONS(3454), - [anon_sym_write] = ACTIONS(3454), - [anon_sym_from_json] = ACTIONS(3454), - [anon_sym_to_json] = ACTIONS(3454), - [anon_sym_to_string] = ACTIONS(3454), - [anon_sym_to_float] = ACTIONS(3454), - [anon_sym_bash] = ACTIONS(3454), - [anon_sym_fish] = ACTIONS(3454), - [anon_sym_raw] = ACTIONS(3454), - [anon_sym_sh] = ACTIONS(3454), - [anon_sym_zsh] = ACTIONS(3454), - [anon_sym_random] = ACTIONS(3454), - [anon_sym_random_boolean] = ACTIONS(3454), - [anon_sym_random_float] = ACTIONS(3454), - [anon_sym_random_integer] = ACTIONS(3454), - [anon_sym_columns] = ACTIONS(3454), - [anon_sym_rows] = ACTIONS(3454), - [anon_sym_reverse] = ACTIONS(3454), - }, - [650] = { - [sym_math_operator] = STATE(1362), - [sym_logic_operator] = STATE(1363), - [ts_builtin_sym_end] = ACTIONS(3262), - [sym_identifier] = ACTIONS(3264), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3262), - [anon_sym_SEMI] = ACTIONS(3262), - [anon_sym_LPAREN] = ACTIONS(3262), - [anon_sym_RPAREN] = ACTIONS(3262), - [anon_sym_COMMA] = ACTIONS(3262), - [sym_integer] = ACTIONS(3264), - [sym_float] = ACTIONS(3262), - [sym_string] = ACTIONS(3262), - [anon_sym_true] = ACTIONS(3264), - [anon_sym_false] = ACTIONS(3264), - [anon_sym_LBRACK] = ACTIONS(3262), - [anon_sym_RBRACK] = ACTIONS(3262), - [anon_sym_COLON] = ACTIONS(3262), - [anon_sym_DOT_DOT] = ACTIONS(3262), - [anon_sym_PLUS] = ACTIONS(3262), - [anon_sym_DASH] = ACTIONS(3264), - [anon_sym_STAR] = ACTIONS(3262), - [anon_sym_SLASH] = ACTIONS(3262), - [anon_sym_PERCENT] = ACTIONS(3262), - [anon_sym_EQ_EQ] = ACTIONS(3262), - [anon_sym_BANG_EQ] = ACTIONS(3262), - [anon_sym_AMP_AMP] = ACTIONS(3262), - [anon_sym_PIPE_PIPE] = ACTIONS(3262), - [anon_sym_GT] = ACTIONS(3264), - [anon_sym_LT] = ACTIONS(3264), - [anon_sym_GT_EQ] = ACTIONS(3262), - [anon_sym_LT_EQ] = ACTIONS(3262), - [anon_sym_if] = ACTIONS(3264), - [anon_sym_elseif] = ACTIONS(3262), - [anon_sym_else] = ACTIONS(3264), - [anon_sym_match] = ACTIONS(3264), - [anon_sym_EQ_GT] = ACTIONS(3262), - [anon_sym_while] = ACTIONS(3264), - [anon_sym_for] = ACTIONS(3264), - [anon_sym_asyncfor] = ACTIONS(3262), - [anon_sym_transform] = ACTIONS(3264), - [anon_sym_filter] = ACTIONS(3264), - [anon_sym_find] = ACTIONS(3264), - [anon_sym_remove] = ACTIONS(3264), - [anon_sym_reduce] = ACTIONS(3264), - [anon_sym_select] = ACTIONS(3264), - [anon_sym_insert] = ACTIONS(3264), - [anon_sym_async] = ACTIONS(3264), - [anon_sym_PIPE] = ACTIONS(3264), - [anon_sym_table] = ACTIONS(3264), - [anon_sym_assert] = ACTIONS(3264), - [anon_sym_assert_equal] = ACTIONS(3264), - [anon_sym_download] = ACTIONS(3264), - [anon_sym_help] = ACTIONS(3264), - [anon_sym_length] = ACTIONS(3264), - [anon_sym_output] = ACTIONS(3264), - [anon_sym_output_error] = ACTIONS(3264), - [anon_sym_type] = ACTIONS(3264), - [anon_sym_append] = ACTIONS(3264), - [anon_sym_metadata] = ACTIONS(3264), - [anon_sym_move] = ACTIONS(3264), - [anon_sym_read] = ACTIONS(3264), - [anon_sym_workdir] = ACTIONS(3264), - [anon_sym_write] = ACTIONS(3264), - [anon_sym_from_json] = ACTIONS(3264), - [anon_sym_to_json] = ACTIONS(3264), - [anon_sym_to_string] = ACTIONS(3264), - [anon_sym_to_float] = ACTIONS(3264), - [anon_sym_bash] = ACTIONS(3264), - [anon_sym_fish] = ACTIONS(3264), - [anon_sym_raw] = ACTIONS(3264), - [anon_sym_sh] = ACTIONS(3264), - [anon_sym_zsh] = ACTIONS(3264), - [anon_sym_random] = ACTIONS(3264), - [anon_sym_random_boolean] = ACTIONS(3264), - [anon_sym_random_float] = ACTIONS(3264), - [anon_sym_random_integer] = ACTIONS(3264), - [anon_sym_columns] = ACTIONS(3264), - [anon_sym_rows] = ACTIONS(3264), - [anon_sym_reverse] = ACTIONS(3264), - }, - [651] = { - [sym_math_operator] = STATE(1261), - [sym_logic_operator] = STATE(1219), - [ts_builtin_sym_end] = ACTIONS(3262), - [sym_identifier] = ACTIONS(3264), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3262), - [anon_sym_SEMI] = ACTIONS(3262), - [anon_sym_LPAREN] = ACTIONS(3262), - [anon_sym_RPAREN] = ACTIONS(3262), - [anon_sym_COMMA] = ACTIONS(3262), - [sym_integer] = ACTIONS(3264), - [sym_float] = ACTIONS(3262), - [sym_string] = ACTIONS(3262), - [anon_sym_true] = ACTIONS(3264), - [anon_sym_false] = ACTIONS(3264), - [anon_sym_LBRACK] = ACTIONS(3262), - [anon_sym_RBRACK] = ACTIONS(3262), - [anon_sym_EQ] = ACTIONS(3264), - [anon_sym_COLON] = ACTIONS(3262), - [anon_sym_PLUS] = ACTIONS(3264), - [anon_sym_DASH] = ACTIONS(3264), - [anon_sym_STAR] = ACTIONS(3262), - [anon_sym_SLASH] = ACTIONS(3262), - [anon_sym_PERCENT] = ACTIONS(3262), - [anon_sym_EQ_EQ] = ACTIONS(3262), - [anon_sym_BANG_EQ] = ACTIONS(3262), - [anon_sym_AMP_AMP] = ACTIONS(3262), - [anon_sym_PIPE_PIPE] = ACTIONS(3262), - [anon_sym_GT] = ACTIONS(3264), - [anon_sym_LT] = ACTIONS(3264), - [anon_sym_GT_EQ] = ACTIONS(3262), - [anon_sym_LT_EQ] = ACTIONS(3262), - [anon_sym_PLUS_EQ] = ACTIONS(3262), - [anon_sym_DASH_EQ] = ACTIONS(3262), - [anon_sym_if] = ACTIONS(3264), - [anon_sym_match] = ACTIONS(3264), - [anon_sym_EQ_GT] = ACTIONS(3262), - [anon_sym_while] = ACTIONS(3264), - [anon_sym_for] = ACTIONS(3264), - [anon_sym_asyncfor] = ACTIONS(3262), - [anon_sym_transform] = ACTIONS(3264), - [anon_sym_filter] = ACTIONS(3264), - [anon_sym_find] = ACTIONS(3264), - [anon_sym_remove] = ACTIONS(3264), - [anon_sym_reduce] = ACTIONS(3264), - [anon_sym_select] = ACTIONS(3264), - [anon_sym_insert] = ACTIONS(3264), - [anon_sym_async] = ACTIONS(3264), - [anon_sym_PIPE] = ACTIONS(3264), - [anon_sym_table] = ACTIONS(3264), - [anon_sym_assert] = ACTIONS(3264), - [anon_sym_assert_equal] = ACTIONS(3264), - [anon_sym_download] = ACTIONS(3264), - [anon_sym_help] = ACTIONS(3264), - [anon_sym_length] = ACTIONS(3264), - [anon_sym_output] = ACTIONS(3264), - [anon_sym_output_error] = ACTIONS(3264), - [anon_sym_type] = ACTIONS(3264), - [anon_sym_append] = ACTIONS(3264), - [anon_sym_metadata] = ACTIONS(3264), - [anon_sym_move] = ACTIONS(3264), - [anon_sym_read] = ACTIONS(3264), - [anon_sym_workdir] = ACTIONS(3264), - [anon_sym_write] = ACTIONS(3264), - [anon_sym_from_json] = ACTIONS(3264), - [anon_sym_to_json] = ACTIONS(3264), - [anon_sym_to_string] = ACTIONS(3264), - [anon_sym_to_float] = ACTIONS(3264), - [anon_sym_bash] = ACTIONS(3264), - [anon_sym_fish] = ACTIONS(3264), - [anon_sym_raw] = ACTIONS(3264), - [anon_sym_sh] = ACTIONS(3264), - [anon_sym_zsh] = ACTIONS(3264), - [anon_sym_random] = ACTIONS(3264), - [anon_sym_random_boolean] = ACTIONS(3264), - [anon_sym_random_float] = ACTIONS(3264), - [anon_sym_random_integer] = ACTIONS(3264), - [anon_sym_columns] = ACTIONS(3264), - [anon_sym_rows] = ACTIONS(3264), - [anon_sym_reverse] = ACTIONS(3264), - }, - [652] = { - [sym_else_if] = STATE(652), - [aux_sym_if_else_repeat1] = STATE(652), - [ts_builtin_sym_end] = ACTIONS(3268), - [sym_identifier] = ACTIONS(3270), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(3268), - [anon_sym_SEMI] = ACTIONS(3268), - [anon_sym_LPAREN] = ACTIONS(3268), - [anon_sym_RPAREN] = ACTIONS(3268), - [anon_sym_COMMA] = ACTIONS(3268), - [sym_integer] = ACTIONS(3270), - [sym_float] = ACTIONS(3268), - [sym_string] = ACTIONS(3268), - [anon_sym_true] = ACTIONS(3270), - [anon_sym_false] = ACTIONS(3270), - [anon_sym_LBRACK] = ACTIONS(3268), - [anon_sym_RBRACK] = ACTIONS(3268), - [anon_sym_COLON] = ACTIONS(3268), - [anon_sym_DOT_DOT] = ACTIONS(3268), - [anon_sym_PLUS] = ACTIONS(3268), - [anon_sym_DASH] = ACTIONS(3270), - [anon_sym_STAR] = ACTIONS(3268), - [anon_sym_SLASH] = ACTIONS(3268), - [anon_sym_PERCENT] = ACTIONS(3268), - [anon_sym_EQ_EQ] = ACTIONS(3268), - [anon_sym_BANG_EQ] = ACTIONS(3268), - [anon_sym_AMP_AMP] = ACTIONS(3268), - [anon_sym_PIPE_PIPE] = ACTIONS(3268), - [anon_sym_GT] = ACTIONS(3270), - [anon_sym_LT] = ACTIONS(3270), - [anon_sym_GT_EQ] = ACTIONS(3268), - [anon_sym_LT_EQ] = ACTIONS(3268), - [anon_sym_if] = ACTIONS(3270), - [anon_sym_elseif] = ACTIONS(3456), - [anon_sym_else] = ACTIONS(3270), - [anon_sym_match] = ACTIONS(3270), - [anon_sym_EQ_GT] = ACTIONS(3268), - [anon_sym_while] = ACTIONS(3270), - [anon_sym_for] = ACTIONS(3270), - [anon_sym_asyncfor] = ACTIONS(3268), - [anon_sym_transform] = ACTIONS(3270), - [anon_sym_filter] = ACTIONS(3270), - [anon_sym_find] = ACTIONS(3270), - [anon_sym_remove] = ACTIONS(3270), - [anon_sym_reduce] = ACTIONS(3270), - [anon_sym_select] = ACTIONS(3270), - [anon_sym_insert] = ACTIONS(3270), - [anon_sym_async] = ACTIONS(3270), - [anon_sym_PIPE] = ACTIONS(3270), - [anon_sym_table] = ACTIONS(3270), - [anon_sym_assert] = ACTIONS(3270), - [anon_sym_assert_equal] = ACTIONS(3270), - [anon_sym_download] = ACTIONS(3270), - [anon_sym_help] = ACTIONS(3270), - [anon_sym_length] = ACTIONS(3270), - [anon_sym_output] = ACTIONS(3270), - [anon_sym_output_error] = ACTIONS(3270), - [anon_sym_type] = ACTIONS(3270), - [anon_sym_append] = ACTIONS(3270), - [anon_sym_metadata] = ACTIONS(3270), - [anon_sym_move] = ACTIONS(3270), - [anon_sym_read] = ACTIONS(3270), - [anon_sym_workdir] = ACTIONS(3270), - [anon_sym_write] = ACTIONS(3270), - [anon_sym_from_json] = ACTIONS(3270), - [anon_sym_to_json] = ACTIONS(3270), - [anon_sym_to_string] = ACTIONS(3270), - [anon_sym_to_float] = ACTIONS(3270), - [anon_sym_bash] = ACTIONS(3270), - [anon_sym_fish] = ACTIONS(3270), - [anon_sym_raw] = ACTIONS(3270), - [anon_sym_sh] = ACTIONS(3270), - [anon_sym_zsh] = ACTIONS(3270), - [anon_sym_random] = ACTIONS(3270), - [anon_sym_random_boolean] = ACTIONS(3270), - [anon_sym_random_float] = ACTIONS(3270), - [anon_sym_random_integer] = ACTIONS(3270), - [anon_sym_columns] = ACTIONS(3270), - [anon_sym_rows] = ACTIONS(3270), - [anon_sym_reverse] = ACTIONS(3270), - }, - [653] = { - [sym_else_if] = STATE(660), - [sym_else] = STATE(878), - [aux_sym_if_else_repeat1] = STATE(660), - [ts_builtin_sym_end] = ACTIONS(3219), - [sym_identifier] = ACTIONS(3221), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_RPAREN] = ACTIONS(3219), - [anon_sym_COMMA] = ACTIONS(3219), - [sym_integer] = ACTIONS(3221), - [sym_float] = ACTIONS(3219), - [sym_string] = ACTIONS(3219), - [anon_sym_true] = ACTIONS(3221), - [anon_sym_false] = ACTIONS(3221), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_RBRACK] = ACTIONS(3219), - [anon_sym_COLON] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3221), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_PERCENT] = ACTIONS(3219), - [anon_sym_EQ_EQ] = ACTIONS(3219), - [anon_sym_BANG_EQ] = ACTIONS(3219), - [anon_sym_AMP_AMP] = ACTIONS(3219), - [anon_sym_PIPE_PIPE] = ACTIONS(3219), - [anon_sym_GT] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3221), - [anon_sym_GT_EQ] = ACTIONS(3219), - [anon_sym_LT_EQ] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3221), - [anon_sym_elseif] = ACTIONS(3459), - [anon_sym_else] = ACTIONS(3461), - [anon_sym_match] = ACTIONS(3221), - [anon_sym_EQ_GT] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3221), - [anon_sym_for] = ACTIONS(3221), - [anon_sym_asyncfor] = ACTIONS(3219), - [anon_sym_transform] = ACTIONS(3221), - [anon_sym_filter] = ACTIONS(3221), - [anon_sym_find] = ACTIONS(3221), - [anon_sym_remove] = ACTIONS(3221), - [anon_sym_reduce] = ACTIONS(3221), - [anon_sym_select] = ACTIONS(3221), - [anon_sym_insert] = ACTIONS(3221), - [anon_sym_async] = ACTIONS(3221), - [anon_sym_PIPE] = ACTIONS(3221), - [anon_sym_table] = ACTIONS(3221), - [anon_sym_assert] = ACTIONS(3221), - [anon_sym_assert_equal] = ACTIONS(3221), - [anon_sym_download] = ACTIONS(3221), - [anon_sym_help] = ACTIONS(3221), - [anon_sym_length] = ACTIONS(3221), - [anon_sym_output] = ACTIONS(3221), - [anon_sym_output_error] = ACTIONS(3221), - [anon_sym_type] = ACTIONS(3221), - [anon_sym_append] = ACTIONS(3221), - [anon_sym_metadata] = ACTIONS(3221), - [anon_sym_move] = ACTIONS(3221), - [anon_sym_read] = ACTIONS(3221), - [anon_sym_workdir] = ACTIONS(3221), - [anon_sym_write] = ACTIONS(3221), - [anon_sym_from_json] = ACTIONS(3221), - [anon_sym_to_json] = ACTIONS(3221), - [anon_sym_to_string] = ACTIONS(3221), - [anon_sym_to_float] = ACTIONS(3221), - [anon_sym_bash] = ACTIONS(3221), - [anon_sym_fish] = ACTIONS(3221), - [anon_sym_raw] = ACTIONS(3221), - [anon_sym_sh] = ACTIONS(3221), - [anon_sym_zsh] = ACTIONS(3221), - [anon_sym_random] = ACTIONS(3221), - [anon_sym_random_boolean] = ACTIONS(3221), - [anon_sym_random_float] = ACTIONS(3221), - [anon_sym_random_integer] = ACTIONS(3221), - [anon_sym_columns] = ACTIONS(3221), - [anon_sym_rows] = ACTIONS(3221), - [anon_sym_reverse] = ACTIONS(3221), - }, - [654] = { - [sym_else_if] = STATE(677), - [sym_else] = STATE(792), - [aux_sym_if_else_repeat1] = STATE(677), - [ts_builtin_sym_end] = ACTIONS(3219), - [sym_identifier] = ACTIONS(3221), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_RPAREN] = ACTIONS(3219), - [anon_sym_COMMA] = ACTIONS(3219), - [sym_integer] = ACTIONS(3221), - [sym_float] = ACTIONS(3219), - [sym_string] = ACTIONS(3219), - [anon_sym_true] = ACTIONS(3221), - [anon_sym_false] = ACTIONS(3221), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_RBRACK] = ACTIONS(3219), - [anon_sym_COLON] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3221), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_PERCENT] = ACTIONS(3219), - [anon_sym_EQ_EQ] = ACTIONS(3219), - [anon_sym_BANG_EQ] = ACTIONS(3219), - [anon_sym_AMP_AMP] = ACTIONS(3219), - [anon_sym_PIPE_PIPE] = ACTIONS(3219), - [anon_sym_GT] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3221), - [anon_sym_GT_EQ] = ACTIONS(3219), - [anon_sym_LT_EQ] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3221), - [anon_sym_elseif] = ACTIONS(3459), - [anon_sym_else] = ACTIONS(3463), - [anon_sym_match] = ACTIONS(3221), - [anon_sym_EQ_GT] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3221), - [anon_sym_for] = ACTIONS(3221), - [anon_sym_asyncfor] = ACTIONS(3219), - [anon_sym_transform] = ACTIONS(3221), - [anon_sym_filter] = ACTIONS(3221), - [anon_sym_find] = ACTIONS(3221), - [anon_sym_remove] = ACTIONS(3221), - [anon_sym_reduce] = ACTIONS(3221), - [anon_sym_select] = ACTIONS(3221), - [anon_sym_insert] = ACTIONS(3221), - [anon_sym_async] = ACTIONS(3221), - [anon_sym_PIPE] = ACTIONS(3221), - [anon_sym_table] = ACTIONS(3221), - [anon_sym_assert] = ACTIONS(3221), - [anon_sym_assert_equal] = ACTIONS(3221), - [anon_sym_download] = ACTIONS(3221), - [anon_sym_help] = ACTIONS(3221), - [anon_sym_length] = ACTIONS(3221), - [anon_sym_output] = ACTIONS(3221), - [anon_sym_output_error] = ACTIONS(3221), - [anon_sym_type] = ACTIONS(3221), - [anon_sym_append] = ACTIONS(3221), - [anon_sym_metadata] = ACTIONS(3221), - [anon_sym_move] = ACTIONS(3221), - [anon_sym_read] = ACTIONS(3221), - [anon_sym_workdir] = ACTIONS(3221), - [anon_sym_write] = ACTIONS(3221), - [anon_sym_from_json] = ACTIONS(3221), - [anon_sym_to_json] = ACTIONS(3221), - [anon_sym_to_string] = ACTIONS(3221), - [anon_sym_to_float] = ACTIONS(3221), - [anon_sym_bash] = ACTIONS(3221), - [anon_sym_fish] = ACTIONS(3221), - [anon_sym_raw] = ACTIONS(3221), - [anon_sym_sh] = ACTIONS(3221), - [anon_sym_zsh] = ACTIONS(3221), - [anon_sym_random] = ACTIONS(3221), - [anon_sym_random_boolean] = ACTIONS(3221), - [anon_sym_random_float] = ACTIONS(3221), - [anon_sym_random_integer] = ACTIONS(3221), - [anon_sym_columns] = ACTIONS(3221), - [anon_sym_rows] = ACTIONS(3221), - [anon_sym_reverse] = ACTIONS(3221), - }, - [655] = { - [sym_assignment_operator] = STATE(549), - [ts_builtin_sym_end] = ACTIONS(2435), - [sym_identifier] = ACTIONS(2437), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_RBRACE] = ACTIONS(2435), - [anon_sym_SEMI] = ACTIONS(2435), - [anon_sym_LPAREN] = ACTIONS(2435), - [anon_sym_RPAREN] = ACTIONS(2435), - [sym_integer] = ACTIONS(2437), - [sym_float] = ACTIONS(2435), - [sym_string] = ACTIONS(2435), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [anon_sym_LBRACK] = ACTIONS(2435), - [anon_sym_EQ] = ACTIONS(2439), - [anon_sym_COLON] = ACTIONS(2435), - [anon_sym_DOT_DOT] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_PERCENT] = ACTIONS(2435), - [anon_sym_EQ_EQ] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_PIPE_PIPE] = ACTIONS(2435), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_PLUS_EQ] = ACTIONS(2441), - [anon_sym_DASH_EQ] = ACTIONS(2441), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_elseif] = ACTIONS(2435), - [anon_sym_else] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_EQ_GT] = ACTIONS(2435), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_asyncfor] = ACTIONS(2435), - [anon_sym_transform] = ACTIONS(2437), - [anon_sym_filter] = ACTIONS(2437), - [anon_sym_find] = ACTIONS(2437), - [anon_sym_remove] = ACTIONS(2437), - [anon_sym_reduce] = ACTIONS(2437), - [anon_sym_select] = ACTIONS(2437), - [anon_sym_insert] = ACTIONS(2437), - [anon_sym_async] = ACTIONS(2437), - [anon_sym_PIPE] = ACTIONS(2437), - [anon_sym_table] = ACTIONS(2437), - [anon_sym_assert] = ACTIONS(2437), - [anon_sym_assert_equal] = ACTIONS(2437), - [anon_sym_download] = ACTIONS(2437), - [anon_sym_help] = ACTIONS(2437), - [anon_sym_length] = ACTIONS(2437), - [anon_sym_output] = ACTIONS(2437), - [anon_sym_output_error] = ACTIONS(2437), - [anon_sym_type] = ACTIONS(2437), - [anon_sym_append] = ACTIONS(2437), - [anon_sym_metadata] = ACTIONS(2437), - [anon_sym_move] = ACTIONS(2437), - [anon_sym_read] = ACTIONS(2437), - [anon_sym_workdir] = ACTIONS(2437), - [anon_sym_write] = ACTIONS(2437), - [anon_sym_from_json] = ACTIONS(2437), - [anon_sym_to_json] = ACTIONS(2437), - [anon_sym_to_string] = ACTIONS(2437), - [anon_sym_to_float] = ACTIONS(2437), - [anon_sym_bash] = ACTIONS(2437), - [anon_sym_fish] = ACTIONS(2437), - [anon_sym_raw] = ACTIONS(2437), - [anon_sym_sh] = ACTIONS(2437), - [anon_sym_zsh] = ACTIONS(2437), - [anon_sym_random] = ACTIONS(2437), - [anon_sym_random_boolean] = ACTIONS(2437), - [anon_sym_random_float] = ACTIONS(2437), - [anon_sym_random_integer] = ACTIONS(2437), - [anon_sym_columns] = ACTIONS(2437), - [anon_sym_rows] = ACTIONS(2437), - [anon_sym_reverse] = ACTIONS(2437), - }, - [656] = { - [sym_else_if] = STATE(656), - [aux_sym_if_else_repeat1] = STATE(656), - [ts_builtin_sym_end] = ACTIONS(3268), - [sym_identifier] = ACTIONS(3270), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(3268), - [anon_sym_SEMI] = ACTIONS(3268), - [anon_sym_LPAREN] = ACTIONS(3268), - [anon_sym_RPAREN] = ACTIONS(3268), - [sym_integer] = ACTIONS(3270), - [sym_float] = ACTIONS(3268), - [sym_string] = ACTIONS(3268), - [anon_sym_true] = ACTIONS(3270), - [anon_sym_false] = ACTIONS(3270), - [anon_sym_LBRACK] = ACTIONS(3268), - [anon_sym_EQ] = ACTIONS(3270), - [anon_sym_COLON] = ACTIONS(3268), - [anon_sym_PLUS] = ACTIONS(3270), - [anon_sym_DASH] = ACTIONS(3270), - [anon_sym_STAR] = ACTIONS(3268), - [anon_sym_SLASH] = ACTIONS(3268), - [anon_sym_PERCENT] = ACTIONS(3268), - [anon_sym_EQ_EQ] = ACTIONS(3268), - [anon_sym_BANG_EQ] = ACTIONS(3268), - [anon_sym_AMP_AMP] = ACTIONS(3268), - [anon_sym_PIPE_PIPE] = ACTIONS(3268), - [anon_sym_GT] = ACTIONS(3270), - [anon_sym_LT] = ACTIONS(3270), - [anon_sym_GT_EQ] = ACTIONS(3268), - [anon_sym_LT_EQ] = ACTIONS(3268), - [anon_sym_PLUS_EQ] = ACTIONS(3268), - [anon_sym_DASH_EQ] = ACTIONS(3268), - [anon_sym_if] = ACTIONS(3270), - [anon_sym_elseif] = ACTIONS(3465), - [anon_sym_else] = ACTIONS(3270), - [anon_sym_match] = ACTIONS(3270), - [anon_sym_EQ_GT] = ACTIONS(3268), - [anon_sym_while] = ACTIONS(3270), - [anon_sym_for] = ACTIONS(3270), - [anon_sym_asyncfor] = ACTIONS(3268), - [anon_sym_transform] = ACTIONS(3270), - [anon_sym_filter] = ACTIONS(3270), - [anon_sym_find] = ACTIONS(3270), - [anon_sym_remove] = ACTIONS(3270), - [anon_sym_reduce] = ACTIONS(3270), - [anon_sym_select] = ACTIONS(3270), - [anon_sym_insert] = ACTIONS(3270), - [anon_sym_async] = ACTIONS(3270), - [anon_sym_PIPE] = ACTIONS(3270), - [anon_sym_table] = ACTIONS(3270), - [anon_sym_assert] = ACTIONS(3270), - [anon_sym_assert_equal] = ACTIONS(3270), - [anon_sym_download] = ACTIONS(3270), - [anon_sym_help] = ACTIONS(3270), - [anon_sym_length] = ACTIONS(3270), - [anon_sym_output] = ACTIONS(3270), - [anon_sym_output_error] = ACTIONS(3270), - [anon_sym_type] = ACTIONS(3270), - [anon_sym_append] = ACTIONS(3270), - [anon_sym_metadata] = ACTIONS(3270), - [anon_sym_move] = ACTIONS(3270), - [anon_sym_read] = ACTIONS(3270), - [anon_sym_workdir] = ACTIONS(3270), - [anon_sym_write] = ACTIONS(3270), - [anon_sym_from_json] = ACTIONS(3270), - [anon_sym_to_json] = ACTIONS(3270), - [anon_sym_to_string] = ACTIONS(3270), - [anon_sym_to_float] = ACTIONS(3270), - [anon_sym_bash] = ACTIONS(3270), - [anon_sym_fish] = ACTIONS(3270), - [anon_sym_raw] = ACTIONS(3270), - [anon_sym_sh] = ACTIONS(3270), - [anon_sym_zsh] = ACTIONS(3270), - [anon_sym_random] = ACTIONS(3270), - [anon_sym_random_boolean] = ACTIONS(3270), - [anon_sym_random_float] = ACTIONS(3270), - [anon_sym_random_integer] = ACTIONS(3270), - [anon_sym_columns] = ACTIONS(3270), - [anon_sym_rows] = ACTIONS(3270), - [anon_sym_reverse] = ACTIONS(3270), - }, - [657] = { - [sym_assignment_operator] = STATE(534), - [ts_builtin_sym_end] = ACTIONS(2435), - [sym_identifier] = ACTIONS(2437), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_RBRACE] = ACTIONS(2435), - [anon_sym_SEMI] = ACTIONS(2435), - [anon_sym_LPAREN] = ACTIONS(2435), - [anon_sym_RPAREN] = ACTIONS(2435), - [anon_sym_COMMA] = ACTIONS(2435), - [sym_integer] = ACTIONS(2437), - [sym_float] = ACTIONS(2435), - [sym_string] = ACTIONS(2435), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [anon_sym_LBRACK] = ACTIONS(2435), - [anon_sym_RBRACK] = ACTIONS(2435), - [anon_sym_EQ] = ACTIONS(2439), - [anon_sym_COLON] = ACTIONS(2435), - [anon_sym_DOT_DOT] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_PERCENT] = ACTIONS(2435), - [anon_sym_EQ_EQ] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_PIPE_PIPE] = ACTIONS(2435), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_PLUS_EQ] = ACTIONS(2441), - [anon_sym_DASH_EQ] = ACTIONS(2441), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_EQ_GT] = ACTIONS(2435), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_asyncfor] = ACTIONS(2435), - [anon_sym_transform] = ACTIONS(2437), - [anon_sym_filter] = ACTIONS(2437), - [anon_sym_find] = ACTIONS(2437), - [anon_sym_remove] = ACTIONS(2437), - [anon_sym_reduce] = ACTIONS(2437), - [anon_sym_select] = ACTIONS(2437), - [anon_sym_insert] = ACTIONS(2437), - [anon_sym_async] = ACTIONS(2437), - [anon_sym_PIPE] = ACTIONS(2437), - [anon_sym_table] = ACTIONS(2437), - [anon_sym_assert] = ACTIONS(2437), - [anon_sym_assert_equal] = ACTIONS(2437), - [anon_sym_download] = ACTIONS(2437), - [anon_sym_help] = ACTIONS(2437), - [anon_sym_length] = ACTIONS(2437), - [anon_sym_output] = ACTIONS(2437), - [anon_sym_output_error] = ACTIONS(2437), - [anon_sym_type] = ACTIONS(2437), - [anon_sym_append] = ACTIONS(2437), - [anon_sym_metadata] = ACTIONS(2437), - [anon_sym_move] = ACTIONS(2437), - [anon_sym_read] = ACTIONS(2437), - [anon_sym_workdir] = ACTIONS(2437), - [anon_sym_write] = ACTIONS(2437), - [anon_sym_from_json] = ACTIONS(2437), - [anon_sym_to_json] = ACTIONS(2437), - [anon_sym_to_string] = ACTIONS(2437), - [anon_sym_to_float] = ACTIONS(2437), - [anon_sym_bash] = ACTIONS(2437), - [anon_sym_fish] = ACTIONS(2437), - [anon_sym_raw] = ACTIONS(2437), - [anon_sym_sh] = ACTIONS(2437), - [anon_sym_zsh] = ACTIONS(2437), - [anon_sym_random] = ACTIONS(2437), - [anon_sym_random_boolean] = ACTIONS(2437), - [anon_sym_random_float] = ACTIONS(2437), - [anon_sym_random_integer] = ACTIONS(2437), - [anon_sym_columns] = ACTIONS(2437), - [anon_sym_rows] = ACTIONS(2437), - [anon_sym_reverse] = ACTIONS(2437), - }, - [658] = { - [sym_math_operator] = STATE(1138), - [sym_logic_operator] = STATE(1277), - [ts_builtin_sym_end] = ACTIONS(3240), - [sym_identifier] = ACTIONS(3242), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3240), - [anon_sym_SEMI] = ACTIONS(3240), - [anon_sym_LPAREN] = ACTIONS(3240), - [anon_sym_RPAREN] = ACTIONS(3240), - [sym_integer] = ACTIONS(3242), - [sym_float] = ACTIONS(3240), - [sym_string] = ACTIONS(3240), - [anon_sym_true] = ACTIONS(3242), - [anon_sym_false] = ACTIONS(3242), - [anon_sym_LBRACK] = ACTIONS(3240), - [anon_sym_EQ] = ACTIONS(3242), - [anon_sym_COLON] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_PLUS_EQ] = ACTIONS(3240), - [anon_sym_DASH_EQ] = ACTIONS(3240), - [anon_sym_if] = ACTIONS(3242), - [anon_sym_elseif] = ACTIONS(3240), - [anon_sym_else] = ACTIONS(3242), - [anon_sym_match] = ACTIONS(3242), - [anon_sym_EQ_GT] = ACTIONS(3240), - [anon_sym_while] = ACTIONS(3242), - [anon_sym_for] = ACTIONS(3242), - [anon_sym_asyncfor] = ACTIONS(3240), - [anon_sym_transform] = ACTIONS(3242), - [anon_sym_filter] = ACTIONS(3242), - [anon_sym_find] = ACTIONS(3242), - [anon_sym_remove] = ACTIONS(3242), - [anon_sym_reduce] = ACTIONS(3242), - [anon_sym_select] = ACTIONS(3242), - [anon_sym_insert] = ACTIONS(3242), - [anon_sym_async] = ACTIONS(3242), - [anon_sym_PIPE] = ACTIONS(3242), - [anon_sym_table] = ACTIONS(3242), - [anon_sym_assert] = ACTIONS(3242), - [anon_sym_assert_equal] = ACTIONS(3242), - [anon_sym_download] = ACTIONS(3242), - [anon_sym_help] = ACTIONS(3242), - [anon_sym_length] = ACTIONS(3242), - [anon_sym_output] = ACTIONS(3242), - [anon_sym_output_error] = ACTIONS(3242), - [anon_sym_type] = ACTIONS(3242), - [anon_sym_append] = ACTIONS(3242), - [anon_sym_metadata] = ACTIONS(3242), - [anon_sym_move] = ACTIONS(3242), - [anon_sym_read] = ACTIONS(3242), - [anon_sym_workdir] = ACTIONS(3242), - [anon_sym_write] = ACTIONS(3242), - [anon_sym_from_json] = ACTIONS(3242), - [anon_sym_to_json] = ACTIONS(3242), - [anon_sym_to_string] = ACTIONS(3242), - [anon_sym_to_float] = ACTIONS(3242), - [anon_sym_bash] = ACTIONS(3242), - [anon_sym_fish] = ACTIONS(3242), - [anon_sym_raw] = ACTIONS(3242), - [anon_sym_sh] = ACTIONS(3242), - [anon_sym_zsh] = ACTIONS(3242), - [anon_sym_random] = ACTIONS(3242), - [anon_sym_random_boolean] = ACTIONS(3242), - [anon_sym_random_float] = ACTIONS(3242), - [anon_sym_random_integer] = ACTIONS(3242), - [anon_sym_columns] = ACTIONS(3242), - [anon_sym_rows] = ACTIONS(3242), - [anon_sym_reverse] = ACTIONS(3242), - }, - [659] = { - [sym_math_operator] = STATE(1138), - [sym_logic_operator] = STATE(1277), - [ts_builtin_sym_end] = ACTIONS(3244), - [sym_identifier] = ACTIONS(3246), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_RBRACE] = ACTIONS(3244), - [anon_sym_SEMI] = ACTIONS(3244), - [anon_sym_LPAREN] = ACTIONS(3244), - [anon_sym_RPAREN] = ACTIONS(3244), - [sym_integer] = ACTIONS(3246), - [sym_float] = ACTIONS(3244), - [sym_string] = ACTIONS(3244), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_LBRACK] = ACTIONS(3244), - [anon_sym_EQ] = ACTIONS(3246), - [anon_sym_COLON] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_PLUS_EQ] = ACTIONS(3244), - [anon_sym_DASH_EQ] = ACTIONS(3244), - [anon_sym_if] = ACTIONS(3246), - [anon_sym_elseif] = ACTIONS(3244), - [anon_sym_else] = ACTIONS(3246), - [anon_sym_match] = ACTIONS(3246), - [anon_sym_EQ_GT] = ACTIONS(3244), - [anon_sym_while] = ACTIONS(3246), - [anon_sym_for] = ACTIONS(3246), - [anon_sym_asyncfor] = ACTIONS(3244), - [anon_sym_transform] = ACTIONS(3246), - [anon_sym_filter] = ACTIONS(3246), - [anon_sym_find] = ACTIONS(3246), - [anon_sym_remove] = ACTIONS(3246), - [anon_sym_reduce] = ACTIONS(3246), - [anon_sym_select] = ACTIONS(3246), - [anon_sym_insert] = ACTIONS(3246), - [anon_sym_async] = ACTIONS(3246), - [anon_sym_PIPE] = ACTIONS(3246), - [anon_sym_table] = ACTIONS(3246), - [anon_sym_assert] = ACTIONS(3246), - [anon_sym_assert_equal] = ACTIONS(3246), - [anon_sym_download] = ACTIONS(3246), - [anon_sym_help] = ACTIONS(3246), - [anon_sym_length] = ACTIONS(3246), - [anon_sym_output] = ACTIONS(3246), - [anon_sym_output_error] = ACTIONS(3246), - [anon_sym_type] = ACTIONS(3246), - [anon_sym_append] = ACTIONS(3246), - [anon_sym_metadata] = ACTIONS(3246), - [anon_sym_move] = ACTIONS(3246), - [anon_sym_read] = ACTIONS(3246), - [anon_sym_workdir] = ACTIONS(3246), - [anon_sym_write] = ACTIONS(3246), - [anon_sym_from_json] = ACTIONS(3246), - [anon_sym_to_json] = ACTIONS(3246), - [anon_sym_to_string] = ACTIONS(3246), - [anon_sym_to_float] = ACTIONS(3246), - [anon_sym_bash] = ACTIONS(3246), - [anon_sym_fish] = ACTIONS(3246), - [anon_sym_raw] = ACTIONS(3246), - [anon_sym_sh] = ACTIONS(3246), - [anon_sym_zsh] = ACTIONS(3246), - [anon_sym_random] = ACTIONS(3246), - [anon_sym_random_boolean] = ACTIONS(3246), - [anon_sym_random_float] = ACTIONS(3246), - [anon_sym_random_integer] = ACTIONS(3246), - [anon_sym_columns] = ACTIONS(3246), - [anon_sym_rows] = ACTIONS(3246), - [anon_sym_reverse] = ACTIONS(3246), - }, - [660] = { - [sym_else_if] = STATE(741), - [sym_else] = STATE(857), - [aux_sym_if_else_repeat1] = STATE(741), - [ts_builtin_sym_end] = ACTIONS(3229), - [sym_identifier] = ACTIONS(3231), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3229), - [anon_sym_RBRACE] = ACTIONS(3229), - [anon_sym_SEMI] = ACTIONS(3229), - [anon_sym_LPAREN] = ACTIONS(3229), - [anon_sym_RPAREN] = ACTIONS(3229), - [anon_sym_COMMA] = ACTIONS(3229), - [sym_integer] = ACTIONS(3231), - [sym_float] = ACTIONS(3229), - [sym_string] = ACTIONS(3229), - [anon_sym_true] = ACTIONS(3231), - [anon_sym_false] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3229), - [anon_sym_RBRACK] = ACTIONS(3229), - [anon_sym_COLON] = ACTIONS(3229), - [anon_sym_PLUS] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_SLASH] = ACTIONS(3229), - [anon_sym_PERCENT] = ACTIONS(3229), - [anon_sym_EQ_EQ] = ACTIONS(3229), - [anon_sym_BANG_EQ] = ACTIONS(3229), - [anon_sym_AMP_AMP] = ACTIONS(3229), - [anon_sym_PIPE_PIPE] = ACTIONS(3229), - [anon_sym_GT] = ACTIONS(3231), - [anon_sym_LT] = ACTIONS(3231), - [anon_sym_GT_EQ] = ACTIONS(3229), - [anon_sym_LT_EQ] = ACTIONS(3229), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_elseif] = ACTIONS(3459), - [anon_sym_else] = ACTIONS(3461), - [anon_sym_match] = ACTIONS(3231), - [anon_sym_EQ_GT] = ACTIONS(3229), - [anon_sym_while] = ACTIONS(3231), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_asyncfor] = ACTIONS(3229), - [anon_sym_transform] = ACTIONS(3231), - [anon_sym_filter] = ACTIONS(3231), - [anon_sym_find] = ACTIONS(3231), - [anon_sym_remove] = ACTIONS(3231), - [anon_sym_reduce] = ACTIONS(3231), - [anon_sym_select] = ACTIONS(3231), - [anon_sym_insert] = ACTIONS(3231), - [anon_sym_async] = ACTIONS(3231), - [anon_sym_PIPE] = ACTIONS(3231), - [anon_sym_table] = ACTIONS(3231), - [anon_sym_assert] = ACTIONS(3231), - [anon_sym_assert_equal] = ACTIONS(3231), - [anon_sym_download] = ACTIONS(3231), - [anon_sym_help] = ACTIONS(3231), - [anon_sym_length] = ACTIONS(3231), - [anon_sym_output] = ACTIONS(3231), - [anon_sym_output_error] = ACTIONS(3231), - [anon_sym_type] = ACTIONS(3231), - [anon_sym_append] = ACTIONS(3231), - [anon_sym_metadata] = ACTIONS(3231), - [anon_sym_move] = ACTIONS(3231), - [anon_sym_read] = ACTIONS(3231), - [anon_sym_workdir] = ACTIONS(3231), - [anon_sym_write] = ACTIONS(3231), - [anon_sym_from_json] = ACTIONS(3231), - [anon_sym_to_json] = ACTIONS(3231), - [anon_sym_to_string] = ACTIONS(3231), - [anon_sym_to_float] = ACTIONS(3231), - [anon_sym_bash] = ACTIONS(3231), - [anon_sym_fish] = ACTIONS(3231), - [anon_sym_raw] = ACTIONS(3231), - [anon_sym_sh] = ACTIONS(3231), - [anon_sym_zsh] = ACTIONS(3231), - [anon_sym_random] = ACTIONS(3231), - [anon_sym_random_boolean] = ACTIONS(3231), - [anon_sym_random_float] = ACTIONS(3231), - [anon_sym_random_integer] = ACTIONS(3231), - [anon_sym_columns] = ACTIONS(3231), - [anon_sym_rows] = ACTIONS(3231), - [anon_sym_reverse] = ACTIONS(3231), - }, - [661] = { - [sym_math_operator] = STATE(1138), - [sym_logic_operator] = STATE(1277), - [ts_builtin_sym_end] = ACTIONS(3281), - [sym_identifier] = ACTIONS(3283), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3281), - [anon_sym_RBRACE] = ACTIONS(3281), - [anon_sym_SEMI] = ACTIONS(3281), - [anon_sym_LPAREN] = ACTIONS(3281), - [anon_sym_RPAREN] = ACTIONS(3281), - [sym_integer] = ACTIONS(3283), - [sym_float] = ACTIONS(3281), - [sym_string] = ACTIONS(3281), - [anon_sym_true] = ACTIONS(3283), - [anon_sym_false] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3281), - [anon_sym_EQ] = ACTIONS(3283), - [anon_sym_COLON] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_PLUS_EQ] = ACTIONS(3281), - [anon_sym_DASH_EQ] = ACTIONS(3281), - [anon_sym_if] = ACTIONS(3283), - [anon_sym_elseif] = ACTIONS(3281), - [anon_sym_else] = ACTIONS(3283), - [anon_sym_match] = ACTIONS(3283), - [anon_sym_EQ_GT] = ACTIONS(3281), - [anon_sym_while] = ACTIONS(3283), - [anon_sym_for] = ACTIONS(3283), - [anon_sym_asyncfor] = ACTIONS(3281), - [anon_sym_transform] = ACTIONS(3283), - [anon_sym_filter] = ACTIONS(3283), - [anon_sym_find] = ACTIONS(3283), - [anon_sym_remove] = ACTIONS(3283), - [anon_sym_reduce] = ACTIONS(3283), - [anon_sym_select] = ACTIONS(3283), - [anon_sym_insert] = ACTIONS(3283), - [anon_sym_async] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(3283), - [anon_sym_table] = ACTIONS(3283), - [anon_sym_assert] = ACTIONS(3283), - [anon_sym_assert_equal] = ACTIONS(3283), - [anon_sym_download] = ACTIONS(3283), - [anon_sym_help] = ACTIONS(3283), - [anon_sym_length] = ACTIONS(3283), - [anon_sym_output] = ACTIONS(3283), - [anon_sym_output_error] = ACTIONS(3283), - [anon_sym_type] = ACTIONS(3283), - [anon_sym_append] = ACTIONS(3283), - [anon_sym_metadata] = ACTIONS(3283), - [anon_sym_move] = ACTIONS(3283), - [anon_sym_read] = ACTIONS(3283), - [anon_sym_workdir] = ACTIONS(3283), - [anon_sym_write] = ACTIONS(3283), - [anon_sym_from_json] = ACTIONS(3283), - [anon_sym_to_json] = ACTIONS(3283), - [anon_sym_to_string] = ACTIONS(3283), - [anon_sym_to_float] = ACTIONS(3283), - [anon_sym_bash] = ACTIONS(3283), - [anon_sym_fish] = ACTIONS(3283), - [anon_sym_raw] = ACTIONS(3283), - [anon_sym_sh] = ACTIONS(3283), - [anon_sym_zsh] = ACTIONS(3283), - [anon_sym_random] = ACTIONS(3283), - [anon_sym_random_boolean] = ACTIONS(3283), - [anon_sym_random_float] = ACTIONS(3283), - [anon_sym_random_integer] = ACTIONS(3283), - [anon_sym_columns] = ACTIONS(3283), - [anon_sym_rows] = ACTIONS(3283), - [anon_sym_reverse] = ACTIONS(3283), - }, - [662] = { - [sym_expression] = STATE(955), - [sym__expression_kind] = STATE(986), - [aux_sym__expression_list] = STATE(674), - [sym_value] = STATE(986), - [sym_boolean] = STATE(981), - [sym_list] = STATE(981), - [sym_map] = STATE(981), - [sym_index] = STATE(986), - [sym_math] = STATE(986), - [sym_logic] = STATE(986), - [sym_identifier_list] = STATE(1920), - [sym_table] = STATE(981), - [sym_function] = STATE(981), - [sym_function_call] = STATE(986), - [sym__context_defined_function] = STATE(990), - [sym_built_in_function] = STATE(990), - [sym__built_in_function_name] = STATE(673), - [sym_identifier] = ACTIONS(2437), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3438), - [anon_sym_RBRACE] = ACTIONS(2435), - [anon_sym_SEMI] = ACTIONS(2435), - [anon_sym_LPAREN] = ACTIONS(3440), - [anon_sym_COMMA] = ACTIONS(2435), - [sym_integer] = ACTIONS(3442), - [sym_float] = ACTIONS(3444), - [sym_string] = ACTIONS(3444), - [anon_sym_true] = ACTIONS(3446), - [anon_sym_false] = ACTIONS(3446), - [anon_sym_LBRACK] = ACTIONS(3448), - [anon_sym_EQ] = ACTIONS(2437), - [anon_sym_COLON] = ACTIONS(2435), - [anon_sym_DOT_DOT] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_PERCENT] = ACTIONS(2435), - [anon_sym_EQ_EQ] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_PIPE_PIPE] = ACTIONS(2435), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_PLUS_EQ] = ACTIONS(2435), - [anon_sym_DASH_EQ] = ACTIONS(2435), - [anon_sym_EQ_GT] = ACTIONS(3450), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(3452), - [anon_sym_assert] = ACTIONS(3454), - [anon_sym_assert_equal] = ACTIONS(3454), - [anon_sym_download] = ACTIONS(3454), - [anon_sym_help] = ACTIONS(3454), - [anon_sym_length] = ACTIONS(3454), - [anon_sym_output] = ACTIONS(3454), - [anon_sym_output_error] = ACTIONS(3454), - [anon_sym_type] = ACTIONS(3454), - [anon_sym_append] = ACTIONS(3454), - [anon_sym_metadata] = ACTIONS(3454), - [anon_sym_move] = ACTIONS(3454), - [anon_sym_read] = ACTIONS(3454), - [anon_sym_workdir] = ACTIONS(3454), - [anon_sym_write] = ACTIONS(3454), - [anon_sym_from_json] = ACTIONS(3454), - [anon_sym_to_json] = ACTIONS(3454), - [anon_sym_to_string] = ACTIONS(3454), - [anon_sym_to_float] = ACTIONS(3454), - [anon_sym_bash] = ACTIONS(3454), - [anon_sym_fish] = ACTIONS(3454), - [anon_sym_raw] = ACTIONS(3454), - [anon_sym_sh] = ACTIONS(3454), - [anon_sym_zsh] = ACTIONS(3454), - [anon_sym_random] = ACTIONS(3454), - [anon_sym_random_boolean] = ACTIONS(3454), - [anon_sym_random_float] = ACTIONS(3454), - [anon_sym_random_integer] = ACTIONS(3454), - [anon_sym_columns] = ACTIONS(3454), - [anon_sym_rows] = ACTIONS(3454), - [anon_sym_reverse] = ACTIONS(3454), - }, - [663] = { - [sym_math_operator] = STATE(1138), - [sym_logic_operator] = STATE(1277), - [ts_builtin_sym_end] = ACTIONS(3275), - [sym_identifier] = ACTIONS(3277), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3275), - [anon_sym_RBRACE] = ACTIONS(3275), - [anon_sym_SEMI] = ACTIONS(3279), - [anon_sym_LPAREN] = ACTIONS(3275), - [anon_sym_RPAREN] = ACTIONS(3275), - [sym_integer] = ACTIONS(3277), - [sym_float] = ACTIONS(3275), - [sym_string] = ACTIONS(3275), - [anon_sym_true] = ACTIONS(3277), - [anon_sym_false] = ACTIONS(3277), - [anon_sym_LBRACK] = ACTIONS(3275), - [anon_sym_EQ] = ACTIONS(3277), - [anon_sym_COLON] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_PLUS_EQ] = ACTIONS(3275), - [anon_sym_DASH_EQ] = ACTIONS(3275), - [anon_sym_if] = ACTIONS(3277), - [anon_sym_elseif] = ACTIONS(3275), - [anon_sym_else] = ACTIONS(3277), - [anon_sym_match] = ACTIONS(3277), - [anon_sym_EQ_GT] = ACTIONS(3275), - [anon_sym_while] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3277), - [anon_sym_asyncfor] = ACTIONS(3275), - [anon_sym_transform] = ACTIONS(3277), - [anon_sym_filter] = ACTIONS(3277), - [anon_sym_find] = ACTIONS(3277), - [anon_sym_remove] = ACTIONS(3277), - [anon_sym_reduce] = ACTIONS(3277), - [anon_sym_select] = ACTIONS(3277), - [anon_sym_insert] = ACTIONS(3277), - [anon_sym_async] = ACTIONS(3277), - [anon_sym_PIPE] = ACTIONS(3277), - [anon_sym_table] = ACTIONS(3277), - [anon_sym_assert] = ACTIONS(3277), - [anon_sym_assert_equal] = ACTIONS(3277), - [anon_sym_download] = ACTIONS(3277), - [anon_sym_help] = ACTIONS(3277), - [anon_sym_length] = ACTIONS(3277), - [anon_sym_output] = ACTIONS(3277), - [anon_sym_output_error] = ACTIONS(3277), - [anon_sym_type] = ACTIONS(3277), - [anon_sym_append] = ACTIONS(3277), - [anon_sym_metadata] = ACTIONS(3277), - [anon_sym_move] = ACTIONS(3277), - [anon_sym_read] = ACTIONS(3277), - [anon_sym_workdir] = ACTIONS(3277), - [anon_sym_write] = ACTIONS(3277), - [anon_sym_from_json] = ACTIONS(3277), - [anon_sym_to_json] = ACTIONS(3277), - [anon_sym_to_string] = ACTIONS(3277), - [anon_sym_to_float] = ACTIONS(3277), - [anon_sym_bash] = ACTIONS(3277), - [anon_sym_fish] = ACTIONS(3277), - [anon_sym_raw] = ACTIONS(3277), - [anon_sym_sh] = ACTIONS(3277), - [anon_sym_zsh] = ACTIONS(3277), - [anon_sym_random] = ACTIONS(3277), - [anon_sym_random_boolean] = ACTIONS(3277), - [anon_sym_random_float] = ACTIONS(3277), - [anon_sym_random_integer] = ACTIONS(3277), - [anon_sym_columns] = ACTIONS(3277), - [anon_sym_rows] = ACTIONS(3277), - [anon_sym_reverse] = ACTIONS(3277), - }, - [664] = { - [sym_math_operator] = STATE(1261), - [sym_logic_operator] = STATE(1219), - [ts_builtin_sym_end] = ACTIONS(3233), - [sym_identifier] = ACTIONS(3235), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3233), - [anon_sym_RBRACE] = ACTIONS(3233), - [anon_sym_SEMI] = ACTIONS(3233), - [anon_sym_LPAREN] = ACTIONS(3233), - [anon_sym_RPAREN] = ACTIONS(3233), - [anon_sym_COMMA] = ACTIONS(3429), - [sym_integer] = ACTIONS(3235), - [sym_float] = ACTIONS(3233), - [sym_string] = ACTIONS(3233), - [anon_sym_true] = ACTIONS(3235), - [anon_sym_false] = ACTIONS(3235), - [anon_sym_LBRACK] = ACTIONS(3233), - [anon_sym_RBRACK] = ACTIONS(3233), - [anon_sym_EQ] = ACTIONS(3235), - [anon_sym_COLON] = ACTIONS(277), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_PLUS_EQ] = ACTIONS(3233), - [anon_sym_DASH_EQ] = ACTIONS(3233), - [anon_sym_if] = ACTIONS(3235), - [anon_sym_match] = ACTIONS(3235), - [anon_sym_EQ_GT] = ACTIONS(3233), - [anon_sym_while] = ACTIONS(3235), - [anon_sym_for] = ACTIONS(3235), - [anon_sym_asyncfor] = ACTIONS(3233), - [anon_sym_transform] = ACTIONS(3235), - [anon_sym_filter] = ACTIONS(3235), - [anon_sym_find] = ACTIONS(3235), - [anon_sym_remove] = ACTIONS(3235), - [anon_sym_reduce] = ACTIONS(3235), - [anon_sym_select] = ACTIONS(3235), - [anon_sym_insert] = ACTIONS(3235), - [anon_sym_async] = ACTIONS(3235), - [anon_sym_PIPE] = ACTIONS(3235), - [anon_sym_table] = ACTIONS(3235), - [anon_sym_assert] = ACTIONS(3235), - [anon_sym_assert_equal] = ACTIONS(3235), - [anon_sym_download] = ACTIONS(3235), - [anon_sym_help] = ACTIONS(3235), - [anon_sym_length] = ACTIONS(3235), - [anon_sym_output] = ACTIONS(3235), - [anon_sym_output_error] = ACTIONS(3235), - [anon_sym_type] = ACTIONS(3235), - [anon_sym_append] = ACTIONS(3235), - [anon_sym_metadata] = ACTIONS(3235), - [anon_sym_move] = ACTIONS(3235), - [anon_sym_read] = ACTIONS(3235), - [anon_sym_workdir] = ACTIONS(3235), - [anon_sym_write] = ACTIONS(3235), - [anon_sym_from_json] = ACTIONS(3235), - [anon_sym_to_json] = ACTIONS(3235), - [anon_sym_to_string] = ACTIONS(3235), - [anon_sym_to_float] = ACTIONS(3235), - [anon_sym_bash] = ACTIONS(3235), - [anon_sym_fish] = ACTIONS(3235), - [anon_sym_raw] = ACTIONS(3235), - [anon_sym_sh] = ACTIONS(3235), - [anon_sym_zsh] = ACTIONS(3235), - [anon_sym_random] = ACTIONS(3235), - [anon_sym_random_boolean] = ACTIONS(3235), - [anon_sym_random_float] = ACTIONS(3235), - [anon_sym_random_integer] = ACTIONS(3235), - [anon_sym_columns] = ACTIONS(3235), - [anon_sym_rows] = ACTIONS(3235), - [anon_sym_reverse] = ACTIONS(3235), - }, - [665] = { - [sym_math_operator] = STATE(1362), - [sym_logic_operator] = STATE(1363), - [ts_builtin_sym_end] = ACTIONS(3281), - [sym_identifier] = ACTIONS(3283), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3281), - [anon_sym_RBRACE] = ACTIONS(3281), - [anon_sym_SEMI] = ACTIONS(3281), - [anon_sym_LPAREN] = ACTIONS(3281), - [anon_sym_RPAREN] = ACTIONS(3281), - [anon_sym_COMMA] = ACTIONS(3281), - [sym_integer] = ACTIONS(3283), - [sym_float] = ACTIONS(3281), - [sym_string] = ACTIONS(3281), - [anon_sym_true] = ACTIONS(3283), - [anon_sym_false] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3281), - [anon_sym_RBRACK] = ACTIONS(3281), - [anon_sym_COLON] = ACTIONS(243), - [anon_sym_DOT_DOT] = ACTIONS(3281), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(3283), - [anon_sym_elseif] = ACTIONS(3281), - [anon_sym_else] = ACTIONS(3283), - [anon_sym_match] = ACTIONS(3283), - [anon_sym_EQ_GT] = ACTIONS(3281), - [anon_sym_while] = ACTIONS(3283), - [anon_sym_for] = ACTIONS(3283), - [anon_sym_asyncfor] = ACTIONS(3281), - [anon_sym_transform] = ACTIONS(3283), - [anon_sym_filter] = ACTIONS(3283), - [anon_sym_find] = ACTIONS(3283), - [anon_sym_remove] = ACTIONS(3283), - [anon_sym_reduce] = ACTIONS(3283), - [anon_sym_select] = ACTIONS(3283), - [anon_sym_insert] = ACTIONS(3283), - [anon_sym_async] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(3283), - [anon_sym_table] = ACTIONS(3283), - [anon_sym_assert] = ACTIONS(3283), - [anon_sym_assert_equal] = ACTIONS(3283), - [anon_sym_download] = ACTIONS(3283), - [anon_sym_help] = ACTIONS(3283), - [anon_sym_length] = ACTIONS(3283), - [anon_sym_output] = ACTIONS(3283), - [anon_sym_output_error] = ACTIONS(3283), - [anon_sym_type] = ACTIONS(3283), - [anon_sym_append] = ACTIONS(3283), - [anon_sym_metadata] = ACTIONS(3283), - [anon_sym_move] = ACTIONS(3283), - [anon_sym_read] = ACTIONS(3283), - [anon_sym_workdir] = ACTIONS(3283), - [anon_sym_write] = ACTIONS(3283), - [anon_sym_from_json] = ACTIONS(3283), - [anon_sym_to_json] = ACTIONS(3283), - [anon_sym_to_string] = ACTIONS(3283), - [anon_sym_to_float] = ACTIONS(3283), - [anon_sym_bash] = ACTIONS(3283), - [anon_sym_fish] = ACTIONS(3283), - [anon_sym_raw] = ACTIONS(3283), - [anon_sym_sh] = ACTIONS(3283), - [anon_sym_zsh] = ACTIONS(3283), - [anon_sym_random] = ACTIONS(3283), - [anon_sym_random_boolean] = ACTIONS(3283), - [anon_sym_random_float] = ACTIONS(3283), - [anon_sym_random_integer] = ACTIONS(3283), - [anon_sym_columns] = ACTIONS(3283), - [anon_sym_rows] = ACTIONS(3283), - [anon_sym_reverse] = ACTIONS(3283), - }, - [666] = { - [sym_math_operator] = STATE(1362), - [sym_logic_operator] = STATE(1363), - [ts_builtin_sym_end] = ACTIONS(3248), - [sym_identifier] = ACTIONS(3250), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3248), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(3248), - [anon_sym_RPAREN] = ACTIONS(3248), - [anon_sym_COMMA] = ACTIONS(3248), - [sym_integer] = ACTIONS(3250), - [sym_float] = ACTIONS(3248), - [sym_string] = ACTIONS(3248), - [anon_sym_true] = ACTIONS(3250), - [anon_sym_false] = ACTIONS(3250), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_RBRACK] = ACTIONS(3248), - [anon_sym_COLON] = ACTIONS(3248), - [anon_sym_DOT_DOT] = ACTIONS(3468), - [anon_sym_PLUS] = ACTIONS(3248), - [anon_sym_DASH] = ACTIONS(3250), - [anon_sym_STAR] = ACTIONS(3248), - [anon_sym_SLASH] = ACTIONS(3248), - [anon_sym_PERCENT] = ACTIONS(3248), - [anon_sym_EQ_EQ] = ACTIONS(3248), - [anon_sym_BANG_EQ] = ACTIONS(3248), - [anon_sym_AMP_AMP] = ACTIONS(3248), - [anon_sym_PIPE_PIPE] = ACTIONS(3248), - [anon_sym_GT] = ACTIONS(3250), - [anon_sym_LT] = ACTIONS(3250), - [anon_sym_GT_EQ] = ACTIONS(3248), - [anon_sym_LT_EQ] = ACTIONS(3248), - [anon_sym_if] = ACTIONS(3250), - [anon_sym_elseif] = ACTIONS(3248), - [anon_sym_else] = ACTIONS(3250), - [anon_sym_match] = ACTIONS(3250), - [anon_sym_EQ_GT] = ACTIONS(3248), - [anon_sym_while] = ACTIONS(3250), - [anon_sym_for] = ACTIONS(3250), - [anon_sym_asyncfor] = ACTIONS(3248), - [anon_sym_transform] = ACTIONS(3250), - [anon_sym_filter] = ACTIONS(3250), - [anon_sym_find] = ACTIONS(3250), - [anon_sym_remove] = ACTIONS(3250), - [anon_sym_reduce] = ACTIONS(3250), - [anon_sym_select] = ACTIONS(3250), - [anon_sym_insert] = ACTIONS(3250), - [anon_sym_async] = ACTIONS(3250), - [anon_sym_PIPE] = ACTIONS(3250), - [anon_sym_table] = ACTIONS(3250), - [anon_sym_assert] = ACTIONS(3250), - [anon_sym_assert_equal] = ACTIONS(3250), - [anon_sym_download] = ACTIONS(3250), - [anon_sym_help] = ACTIONS(3250), - [anon_sym_length] = ACTIONS(3250), - [anon_sym_output] = ACTIONS(3250), - [anon_sym_output_error] = ACTIONS(3250), - [anon_sym_type] = ACTIONS(3250), - [anon_sym_append] = ACTIONS(3250), - [anon_sym_metadata] = ACTIONS(3250), - [anon_sym_move] = ACTIONS(3250), - [anon_sym_read] = ACTIONS(3250), - [anon_sym_workdir] = ACTIONS(3250), - [anon_sym_write] = ACTIONS(3250), - [anon_sym_from_json] = ACTIONS(3250), - [anon_sym_to_json] = ACTIONS(3250), - [anon_sym_to_string] = ACTIONS(3250), - [anon_sym_to_float] = ACTIONS(3250), - [anon_sym_bash] = ACTIONS(3250), - [anon_sym_fish] = ACTIONS(3250), - [anon_sym_raw] = ACTIONS(3250), - [anon_sym_sh] = ACTIONS(3250), - [anon_sym_zsh] = ACTIONS(3250), - [anon_sym_random] = ACTIONS(3250), - [anon_sym_random_boolean] = ACTIONS(3250), - [anon_sym_random_float] = ACTIONS(3250), - [anon_sym_random_integer] = ACTIONS(3250), - [anon_sym_columns] = ACTIONS(3250), - [anon_sym_rows] = ACTIONS(3250), - [anon_sym_reverse] = ACTIONS(3250), - }, - [667] = { - [sym_math_operator] = STATE(1362), - [sym_logic_operator] = STATE(1363), - [ts_builtin_sym_end] = ACTIONS(3252), - [sym_identifier] = ACTIONS(3254), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3252), - [anon_sym_RBRACE] = ACTIONS(3252), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_LPAREN] = ACTIONS(3252), - [anon_sym_RPAREN] = ACTIONS(3252), - [anon_sym_COMMA] = ACTIONS(3252), - [sym_integer] = ACTIONS(3254), - [sym_float] = ACTIONS(3252), - [sym_string] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_RBRACK] = ACTIONS(3252), - [anon_sym_COLON] = ACTIONS(3252), - [anon_sym_DOT_DOT] = ACTIONS(3252), - [anon_sym_PLUS] = ACTIONS(3252), - [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_STAR] = ACTIONS(3252), - [anon_sym_SLASH] = ACTIONS(3252), - [anon_sym_PERCENT] = ACTIONS(3252), - [anon_sym_EQ_EQ] = ACTIONS(3252), - [anon_sym_BANG_EQ] = ACTIONS(3252), - [anon_sym_AMP_AMP] = ACTIONS(3252), - [anon_sym_PIPE_PIPE] = ACTIONS(3252), - [anon_sym_GT] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(3254), - [anon_sym_GT_EQ] = ACTIONS(3252), - [anon_sym_LT_EQ] = ACTIONS(3252), - [anon_sym_if] = ACTIONS(3254), - [anon_sym_elseif] = ACTIONS(3252), - [anon_sym_else] = ACTIONS(3254), - [anon_sym_match] = ACTIONS(3254), - [anon_sym_EQ_GT] = ACTIONS(3252), - [anon_sym_while] = ACTIONS(3254), - [anon_sym_for] = ACTIONS(3254), - [anon_sym_asyncfor] = ACTIONS(3252), - [anon_sym_transform] = ACTIONS(3254), - [anon_sym_filter] = ACTIONS(3254), - [anon_sym_find] = ACTIONS(3254), - [anon_sym_remove] = ACTIONS(3254), - [anon_sym_reduce] = ACTIONS(3254), - [anon_sym_select] = ACTIONS(3254), - [anon_sym_insert] = ACTIONS(3254), - [anon_sym_async] = ACTIONS(3254), - [anon_sym_PIPE] = ACTIONS(3254), - [anon_sym_table] = ACTIONS(3254), - [anon_sym_assert] = ACTIONS(3254), - [anon_sym_assert_equal] = ACTIONS(3254), - [anon_sym_download] = ACTIONS(3254), - [anon_sym_help] = ACTIONS(3254), - [anon_sym_length] = ACTIONS(3254), - [anon_sym_output] = ACTIONS(3254), - [anon_sym_output_error] = ACTIONS(3254), - [anon_sym_type] = ACTIONS(3254), - [anon_sym_append] = ACTIONS(3254), - [anon_sym_metadata] = ACTIONS(3254), - [anon_sym_move] = ACTIONS(3254), - [anon_sym_read] = ACTIONS(3254), - [anon_sym_workdir] = ACTIONS(3254), - [anon_sym_write] = ACTIONS(3254), - [anon_sym_from_json] = ACTIONS(3254), - [anon_sym_to_json] = ACTIONS(3254), - [anon_sym_to_string] = ACTIONS(3254), - [anon_sym_to_float] = ACTIONS(3254), - [anon_sym_bash] = ACTIONS(3254), - [anon_sym_fish] = ACTIONS(3254), - [anon_sym_raw] = ACTIONS(3254), - [anon_sym_sh] = ACTIONS(3254), - [anon_sym_zsh] = ACTIONS(3254), - [anon_sym_random] = ACTIONS(3254), - [anon_sym_random_boolean] = ACTIONS(3254), - [anon_sym_random_float] = ACTIONS(3254), - [anon_sym_random_integer] = ACTIONS(3254), - [anon_sym_columns] = ACTIONS(3254), - [anon_sym_rows] = ACTIONS(3254), - [anon_sym_reverse] = ACTIONS(3254), - }, - [668] = { - [sym_math_operator] = STATE(1362), - [sym_logic_operator] = STATE(1363), - [ts_builtin_sym_end] = ACTIONS(3233), - [sym_identifier] = ACTIONS(3235), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3233), - [anon_sym_RBRACE] = ACTIONS(3233), - [anon_sym_SEMI] = ACTIONS(3233), - [anon_sym_LPAREN] = ACTIONS(3233), - [anon_sym_RPAREN] = ACTIONS(3233), - [anon_sym_COMMA] = ACTIONS(3470), - [sym_integer] = ACTIONS(3235), - [sym_float] = ACTIONS(3233), - [sym_string] = ACTIONS(3233), - [anon_sym_true] = ACTIONS(3235), - [anon_sym_false] = ACTIONS(3235), - [anon_sym_LBRACK] = ACTIONS(3233), - [anon_sym_RBRACK] = ACTIONS(3233), - [anon_sym_COLON] = ACTIONS(243), - [anon_sym_DOT_DOT] = ACTIONS(3233), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(3235), - [anon_sym_elseif] = ACTIONS(3233), - [anon_sym_else] = ACTIONS(3235), - [anon_sym_match] = ACTIONS(3235), - [anon_sym_EQ_GT] = ACTIONS(3233), - [anon_sym_while] = ACTIONS(3235), - [anon_sym_for] = ACTIONS(3235), - [anon_sym_asyncfor] = ACTIONS(3233), - [anon_sym_transform] = ACTIONS(3235), - [anon_sym_filter] = ACTIONS(3235), - [anon_sym_find] = ACTIONS(3235), - [anon_sym_remove] = ACTIONS(3235), - [anon_sym_reduce] = ACTIONS(3235), - [anon_sym_select] = ACTIONS(3235), - [anon_sym_insert] = ACTIONS(3235), - [anon_sym_async] = ACTIONS(3235), - [anon_sym_PIPE] = ACTIONS(3235), - [anon_sym_table] = ACTIONS(3235), - [anon_sym_assert] = ACTIONS(3235), - [anon_sym_assert_equal] = ACTIONS(3235), - [anon_sym_download] = ACTIONS(3235), - [anon_sym_help] = ACTIONS(3235), - [anon_sym_length] = ACTIONS(3235), - [anon_sym_output] = ACTIONS(3235), - [anon_sym_output_error] = ACTIONS(3235), - [anon_sym_type] = ACTIONS(3235), - [anon_sym_append] = ACTIONS(3235), - [anon_sym_metadata] = ACTIONS(3235), - [anon_sym_move] = ACTIONS(3235), - [anon_sym_read] = ACTIONS(3235), - [anon_sym_workdir] = ACTIONS(3235), - [anon_sym_write] = ACTIONS(3235), - [anon_sym_from_json] = ACTIONS(3235), - [anon_sym_to_json] = ACTIONS(3235), - [anon_sym_to_string] = ACTIONS(3235), - [anon_sym_to_float] = ACTIONS(3235), - [anon_sym_bash] = ACTIONS(3235), - [anon_sym_fish] = ACTIONS(3235), - [anon_sym_raw] = ACTIONS(3235), - [anon_sym_sh] = ACTIONS(3235), - [anon_sym_zsh] = ACTIONS(3235), - [anon_sym_random] = ACTIONS(3235), - [anon_sym_random_boolean] = ACTIONS(3235), - [anon_sym_random_float] = ACTIONS(3235), - [anon_sym_random_integer] = ACTIONS(3235), - [anon_sym_columns] = ACTIONS(3235), - [anon_sym_rows] = ACTIONS(3235), - [anon_sym_reverse] = ACTIONS(3235), - }, - [669] = { - [sym_expression] = STATE(955), - [sym__expression_kind] = STATE(986), - [aux_sym__expression_list] = STATE(669), - [sym_value] = STATE(986), - [sym_boolean] = STATE(981), - [sym_list] = STATE(981), - [sym_map] = STATE(981), - [sym_index] = STATE(986), - [sym_math] = STATE(986), - [sym_logic] = STATE(986), - [sym_identifier_list] = STATE(1920), - [sym_table] = STATE(981), - [sym_function] = STATE(981), - [sym_function_call] = STATE(986), - [sym__context_defined_function] = STATE(990), - [sym_built_in_function] = STATE(990), - [sym__built_in_function_name] = STATE(673), - [sym_identifier] = ACTIONS(3473), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3476), - [anon_sym_RBRACE] = ACTIONS(2518), - [anon_sym_SEMI] = ACTIONS(2518), - [anon_sym_LPAREN] = ACTIONS(3479), - [anon_sym_COMMA] = ACTIONS(2518), - [sym_integer] = ACTIONS(3482), - [sym_float] = ACTIONS(3485), - [sym_string] = ACTIONS(3485), - [anon_sym_true] = ACTIONS(3488), - [anon_sym_false] = ACTIONS(3488), - [anon_sym_LBRACK] = ACTIONS(3491), - [anon_sym_EQ] = ACTIONS(2541), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_DOT_DOT] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2541), - [anon_sym_DASH] = ACTIONS(2541), - [anon_sym_STAR] = ACTIONS(2518), - [anon_sym_SLASH] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_EQ_EQ] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_GT] = ACTIONS(2541), - [anon_sym_LT] = ACTIONS(2541), - [anon_sym_GT_EQ] = ACTIONS(2518), - [anon_sym_LT_EQ] = ACTIONS(2518), - [anon_sym_PLUS_EQ] = ACTIONS(2518), - [anon_sym_DASH_EQ] = ACTIONS(2518), - [anon_sym_EQ_GT] = ACTIONS(3494), - [anon_sym_PIPE] = ACTIONS(2546), - [anon_sym_table] = ACTIONS(3497), - [anon_sym_assert] = ACTIONS(3500), - [anon_sym_assert_equal] = ACTIONS(3500), - [anon_sym_download] = ACTIONS(3500), - [anon_sym_help] = ACTIONS(3500), - [anon_sym_length] = ACTIONS(3500), - [anon_sym_output] = ACTIONS(3500), - [anon_sym_output_error] = ACTIONS(3500), - [anon_sym_type] = ACTIONS(3500), - [anon_sym_append] = ACTIONS(3500), - [anon_sym_metadata] = ACTIONS(3500), - [anon_sym_move] = ACTIONS(3500), - [anon_sym_read] = ACTIONS(3500), - [anon_sym_workdir] = ACTIONS(3500), - [anon_sym_write] = ACTIONS(3500), - [anon_sym_from_json] = ACTIONS(3500), - [anon_sym_to_json] = ACTIONS(3500), - [anon_sym_to_string] = ACTIONS(3500), - [anon_sym_to_float] = ACTIONS(3500), - [anon_sym_bash] = ACTIONS(3500), - [anon_sym_fish] = ACTIONS(3500), - [anon_sym_raw] = ACTIONS(3500), - [anon_sym_sh] = ACTIONS(3500), - [anon_sym_zsh] = ACTIONS(3500), - [anon_sym_random] = ACTIONS(3500), - [anon_sym_random_boolean] = ACTIONS(3500), - [anon_sym_random_float] = ACTIONS(3500), - [anon_sym_random_integer] = ACTIONS(3500), - [anon_sym_columns] = ACTIONS(3500), - [anon_sym_rows] = ACTIONS(3500), - [anon_sym_reverse] = ACTIONS(3500), - }, - [670] = { - [sym_math_operator] = STATE(1362), - [sym_logic_operator] = STATE(1363), - [ts_builtin_sym_end] = ACTIONS(3248), - [sym_identifier] = ACTIONS(3250), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3248), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(3248), - [anon_sym_RPAREN] = ACTIONS(3248), - [anon_sym_COMMA] = ACTIONS(3248), - [sym_integer] = ACTIONS(3250), - [sym_float] = ACTIONS(3248), - [sym_string] = ACTIONS(3248), - [anon_sym_true] = ACTIONS(3250), - [anon_sym_false] = ACTIONS(3250), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_RBRACK] = ACTIONS(3248), - [anon_sym_COLON] = ACTIONS(3248), - [anon_sym_DOT_DOT] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3248), - [anon_sym_DASH] = ACTIONS(3250), - [anon_sym_STAR] = ACTIONS(3248), - [anon_sym_SLASH] = ACTIONS(3248), - [anon_sym_PERCENT] = ACTIONS(3248), - [anon_sym_EQ_EQ] = ACTIONS(3248), - [anon_sym_BANG_EQ] = ACTIONS(3248), - [anon_sym_AMP_AMP] = ACTIONS(3248), - [anon_sym_PIPE_PIPE] = ACTIONS(3248), - [anon_sym_GT] = ACTIONS(3250), - [anon_sym_LT] = ACTIONS(3250), - [anon_sym_GT_EQ] = ACTIONS(3248), - [anon_sym_LT_EQ] = ACTIONS(3248), - [anon_sym_if] = ACTIONS(3250), - [anon_sym_elseif] = ACTIONS(3248), - [anon_sym_else] = ACTIONS(3250), - [anon_sym_match] = ACTIONS(3250), - [anon_sym_EQ_GT] = ACTIONS(3248), - [anon_sym_while] = ACTIONS(3250), - [anon_sym_for] = ACTIONS(3250), - [anon_sym_asyncfor] = ACTIONS(3248), - [anon_sym_transform] = ACTIONS(3250), - [anon_sym_filter] = ACTIONS(3250), - [anon_sym_find] = ACTIONS(3250), - [anon_sym_remove] = ACTIONS(3250), - [anon_sym_reduce] = ACTIONS(3250), - [anon_sym_select] = ACTIONS(3250), - [anon_sym_insert] = ACTIONS(3250), - [anon_sym_async] = ACTIONS(3250), - [anon_sym_PIPE] = ACTIONS(3250), - [anon_sym_table] = ACTIONS(3250), - [anon_sym_assert] = ACTIONS(3250), - [anon_sym_assert_equal] = ACTIONS(3250), - [anon_sym_download] = ACTIONS(3250), - [anon_sym_help] = ACTIONS(3250), - [anon_sym_length] = ACTIONS(3250), - [anon_sym_output] = ACTIONS(3250), - [anon_sym_output_error] = ACTIONS(3250), - [anon_sym_type] = ACTIONS(3250), - [anon_sym_append] = ACTIONS(3250), - [anon_sym_metadata] = ACTIONS(3250), - [anon_sym_move] = ACTIONS(3250), - [anon_sym_read] = ACTIONS(3250), - [anon_sym_workdir] = ACTIONS(3250), - [anon_sym_write] = ACTIONS(3250), - [anon_sym_from_json] = ACTIONS(3250), - [anon_sym_to_json] = ACTIONS(3250), - [anon_sym_to_string] = ACTIONS(3250), - [anon_sym_to_float] = ACTIONS(3250), - [anon_sym_bash] = ACTIONS(3250), - [anon_sym_fish] = ACTIONS(3250), - [anon_sym_raw] = ACTIONS(3250), - [anon_sym_sh] = ACTIONS(3250), - [anon_sym_zsh] = ACTIONS(3250), - [anon_sym_random] = ACTIONS(3250), - [anon_sym_random_boolean] = ACTIONS(3250), - [anon_sym_random_float] = ACTIONS(3250), - [anon_sym_random_integer] = ACTIONS(3250), - [anon_sym_columns] = ACTIONS(3250), - [anon_sym_rows] = ACTIONS(3250), - [anon_sym_reverse] = ACTIONS(3250), - }, - [671] = { - [sym_math_operator] = STATE(1261), - [sym_logic_operator] = STATE(1219), - [ts_builtin_sym_end] = ACTIONS(3252), - [sym_identifier] = ACTIONS(3254), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3252), - [anon_sym_RBRACE] = ACTIONS(3252), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_LPAREN] = ACTIONS(3252), - [anon_sym_RPAREN] = ACTIONS(3252), - [anon_sym_COMMA] = ACTIONS(3252), - [sym_integer] = ACTIONS(3254), - [sym_float] = ACTIONS(3252), - [sym_string] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_RBRACK] = ACTIONS(3252), - [anon_sym_EQ] = ACTIONS(3254), - [anon_sym_COLON] = ACTIONS(3252), - [anon_sym_PLUS] = ACTIONS(3254), - [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_STAR] = ACTIONS(3252), - [anon_sym_SLASH] = ACTIONS(3252), - [anon_sym_PERCENT] = ACTIONS(3252), - [anon_sym_EQ_EQ] = ACTIONS(3252), - [anon_sym_BANG_EQ] = ACTIONS(3252), - [anon_sym_AMP_AMP] = ACTIONS(3252), - [anon_sym_PIPE_PIPE] = ACTIONS(3252), - [anon_sym_GT] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(3254), - [anon_sym_GT_EQ] = ACTIONS(3252), - [anon_sym_LT_EQ] = ACTIONS(3252), - [anon_sym_PLUS_EQ] = ACTIONS(3252), - [anon_sym_DASH_EQ] = ACTIONS(3252), - [anon_sym_if] = ACTIONS(3254), - [anon_sym_match] = ACTIONS(3254), - [anon_sym_EQ_GT] = ACTIONS(3252), - [anon_sym_while] = ACTIONS(3254), - [anon_sym_for] = ACTIONS(3254), - [anon_sym_asyncfor] = ACTIONS(3252), - [anon_sym_transform] = ACTIONS(3254), - [anon_sym_filter] = ACTIONS(3254), - [anon_sym_find] = ACTIONS(3254), - [anon_sym_remove] = ACTIONS(3254), - [anon_sym_reduce] = ACTIONS(3254), - [anon_sym_select] = ACTIONS(3254), - [anon_sym_insert] = ACTIONS(3254), - [anon_sym_async] = ACTIONS(3254), - [anon_sym_PIPE] = ACTIONS(3254), - [anon_sym_table] = ACTIONS(3254), - [anon_sym_assert] = ACTIONS(3254), - [anon_sym_assert_equal] = ACTIONS(3254), - [anon_sym_download] = ACTIONS(3254), - [anon_sym_help] = ACTIONS(3254), - [anon_sym_length] = ACTIONS(3254), - [anon_sym_output] = ACTIONS(3254), - [anon_sym_output_error] = ACTIONS(3254), - [anon_sym_type] = ACTIONS(3254), - [anon_sym_append] = ACTIONS(3254), - [anon_sym_metadata] = ACTIONS(3254), - [anon_sym_move] = ACTIONS(3254), - [anon_sym_read] = ACTIONS(3254), - [anon_sym_workdir] = ACTIONS(3254), - [anon_sym_write] = ACTIONS(3254), - [anon_sym_from_json] = ACTIONS(3254), - [anon_sym_to_json] = ACTIONS(3254), - [anon_sym_to_string] = ACTIONS(3254), - [anon_sym_to_float] = ACTIONS(3254), - [anon_sym_bash] = ACTIONS(3254), - [anon_sym_fish] = ACTIONS(3254), - [anon_sym_raw] = ACTIONS(3254), - [anon_sym_sh] = ACTIONS(3254), - [anon_sym_zsh] = ACTIONS(3254), - [anon_sym_random] = ACTIONS(3254), - [anon_sym_random_boolean] = ACTIONS(3254), - [anon_sym_random_float] = ACTIONS(3254), - [anon_sym_random_integer] = ACTIONS(3254), - [anon_sym_columns] = ACTIONS(3254), - [anon_sym_rows] = ACTIONS(3254), - [anon_sym_reverse] = ACTIONS(3254), - }, - [672] = { - [sym_math_operator] = STATE(1138), - [sym_logic_operator] = STATE(1277), - [ts_builtin_sym_end] = ACTIONS(3252), - [sym_identifier] = ACTIONS(3254), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3252), - [anon_sym_RBRACE] = ACTIONS(3252), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_LPAREN] = ACTIONS(3252), - [anon_sym_RPAREN] = ACTIONS(3252), - [sym_integer] = ACTIONS(3254), - [sym_float] = ACTIONS(3252), - [sym_string] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_EQ] = ACTIONS(3254), - [anon_sym_COLON] = ACTIONS(3252), - [anon_sym_PLUS] = ACTIONS(3254), - [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_STAR] = ACTIONS(3252), - [anon_sym_SLASH] = ACTIONS(3252), - [anon_sym_PERCENT] = ACTIONS(3252), - [anon_sym_EQ_EQ] = ACTIONS(3252), - [anon_sym_BANG_EQ] = ACTIONS(3252), - [anon_sym_AMP_AMP] = ACTIONS(3252), - [anon_sym_PIPE_PIPE] = ACTIONS(3252), - [anon_sym_GT] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(3254), - [anon_sym_GT_EQ] = ACTIONS(3252), - [anon_sym_LT_EQ] = ACTIONS(3252), - [anon_sym_PLUS_EQ] = ACTIONS(3252), - [anon_sym_DASH_EQ] = ACTIONS(3252), - [anon_sym_if] = ACTIONS(3254), - [anon_sym_elseif] = ACTIONS(3252), - [anon_sym_else] = ACTIONS(3254), - [anon_sym_match] = ACTIONS(3254), - [anon_sym_EQ_GT] = ACTIONS(3252), - [anon_sym_while] = ACTIONS(3254), - [anon_sym_for] = ACTIONS(3254), - [anon_sym_asyncfor] = ACTIONS(3252), - [anon_sym_transform] = ACTIONS(3254), - [anon_sym_filter] = ACTIONS(3254), - [anon_sym_find] = ACTIONS(3254), - [anon_sym_remove] = ACTIONS(3254), - [anon_sym_reduce] = ACTIONS(3254), - [anon_sym_select] = ACTIONS(3254), - [anon_sym_insert] = ACTIONS(3254), - [anon_sym_async] = ACTIONS(3254), - [anon_sym_PIPE] = ACTIONS(3254), - [anon_sym_table] = ACTIONS(3254), - [anon_sym_assert] = ACTIONS(3254), - [anon_sym_assert_equal] = ACTIONS(3254), - [anon_sym_download] = ACTIONS(3254), - [anon_sym_help] = ACTIONS(3254), - [anon_sym_length] = ACTIONS(3254), - [anon_sym_output] = ACTIONS(3254), - [anon_sym_output_error] = ACTIONS(3254), - [anon_sym_type] = ACTIONS(3254), - [anon_sym_append] = ACTIONS(3254), - [anon_sym_metadata] = ACTIONS(3254), - [anon_sym_move] = ACTIONS(3254), - [anon_sym_read] = ACTIONS(3254), - [anon_sym_workdir] = ACTIONS(3254), - [anon_sym_write] = ACTIONS(3254), - [anon_sym_from_json] = ACTIONS(3254), - [anon_sym_to_json] = ACTIONS(3254), - [anon_sym_to_string] = ACTIONS(3254), - [anon_sym_to_float] = ACTIONS(3254), - [anon_sym_bash] = ACTIONS(3254), - [anon_sym_fish] = ACTIONS(3254), - [anon_sym_raw] = ACTIONS(3254), - [anon_sym_sh] = ACTIONS(3254), - [anon_sym_zsh] = ACTIONS(3254), - [anon_sym_random] = ACTIONS(3254), - [anon_sym_random_boolean] = ACTIONS(3254), - [anon_sym_random_float] = ACTIONS(3254), - [anon_sym_random_integer] = ACTIONS(3254), - [anon_sym_columns] = ACTIONS(3254), - [anon_sym_rows] = ACTIONS(3254), - [anon_sym_reverse] = ACTIONS(3254), - }, - [673] = { - [sym_expression] = STATE(955), - [sym__expression_kind] = STATE(986), - [aux_sym__expression_list] = STATE(649), - [sym_value] = STATE(986), - [sym_boolean] = STATE(981), - [sym_list] = STATE(981), - [sym_map] = STATE(981), - [sym_index] = STATE(986), - [sym_math] = STATE(986), - [sym_logic] = STATE(986), - [sym_identifier_list] = STATE(1920), - [sym_table] = STATE(981), - [sym_function] = STATE(981), - [sym_function_call] = STATE(986), - [sym__context_defined_function] = STATE(990), - [sym_built_in_function] = STATE(990), - [sym__built_in_function_name] = STATE(673), - [sym_identifier] = ACTIONS(3436), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3438), - [anon_sym_RBRACE] = ACTIONS(2473), - [anon_sym_SEMI] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(3440), - [anon_sym_COMMA] = ACTIONS(2473), - [sym_integer] = ACTIONS(3442), - [sym_float] = ACTIONS(3444), - [sym_string] = ACTIONS(3444), - [anon_sym_true] = ACTIONS(3446), - [anon_sym_false] = ACTIONS(3446), - [anon_sym_LBRACK] = ACTIONS(3448), - [anon_sym_EQ] = ACTIONS(2475), - [anon_sym_COLON] = ACTIONS(2473), - [anon_sym_DOT_DOT] = ACTIONS(2473), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2473), - [anon_sym_SLASH] = ACTIONS(2473), - [anon_sym_PERCENT] = ACTIONS(2473), - [anon_sym_EQ_EQ] = ACTIONS(2473), - [anon_sym_BANG_EQ] = ACTIONS(2473), - [anon_sym_AMP_AMP] = ACTIONS(2473), - [anon_sym_PIPE_PIPE] = ACTIONS(2473), - [anon_sym_GT] = ACTIONS(2475), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_GT_EQ] = ACTIONS(2473), - [anon_sym_LT_EQ] = ACTIONS(2473), - [anon_sym_PLUS_EQ] = ACTIONS(2473), - [anon_sym_DASH_EQ] = ACTIONS(2473), - [anon_sym_EQ_GT] = ACTIONS(3450), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(3452), - [anon_sym_assert] = ACTIONS(3454), - [anon_sym_assert_equal] = ACTIONS(3454), - [anon_sym_download] = ACTIONS(3454), - [anon_sym_help] = ACTIONS(3454), - [anon_sym_length] = ACTIONS(3454), - [anon_sym_output] = ACTIONS(3454), - [anon_sym_output_error] = ACTIONS(3454), - [anon_sym_type] = ACTIONS(3454), - [anon_sym_append] = ACTIONS(3454), - [anon_sym_metadata] = ACTIONS(3454), - [anon_sym_move] = ACTIONS(3454), - [anon_sym_read] = ACTIONS(3454), - [anon_sym_workdir] = ACTIONS(3454), - [anon_sym_write] = ACTIONS(3454), - [anon_sym_from_json] = ACTIONS(3454), - [anon_sym_to_json] = ACTIONS(3454), - [anon_sym_to_string] = ACTIONS(3454), - [anon_sym_to_float] = ACTIONS(3454), - [anon_sym_bash] = ACTIONS(3454), - [anon_sym_fish] = ACTIONS(3454), - [anon_sym_raw] = ACTIONS(3454), - [anon_sym_sh] = ACTIONS(3454), - [anon_sym_zsh] = ACTIONS(3454), - [anon_sym_random] = ACTIONS(3454), - [anon_sym_random_boolean] = ACTIONS(3454), - [anon_sym_random_float] = ACTIONS(3454), - [anon_sym_random_integer] = ACTIONS(3454), - [anon_sym_columns] = ACTIONS(3454), - [anon_sym_rows] = ACTIONS(3454), - [anon_sym_reverse] = ACTIONS(3454), - }, - [674] = { - [sym_expression] = STATE(955), - [sym__expression_kind] = STATE(986), - [aux_sym__expression_list] = STATE(669), - [sym_value] = STATE(986), - [sym_boolean] = STATE(981), - [sym_list] = STATE(981), - [sym_map] = STATE(981), - [sym_index] = STATE(986), - [sym_math] = STATE(986), - [sym_logic] = STATE(986), - [sym_identifier_list] = STATE(1920), - [sym_table] = STATE(981), - [sym_function] = STATE(981), - [sym_function_call] = STATE(986), - [sym__context_defined_function] = STATE(990), - [sym_built_in_function] = STATE(990), - [sym__built_in_function_name] = STATE(673), - [sym_identifier] = ACTIONS(3436), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3438), - [anon_sym_RBRACE] = ACTIONS(2477), - [anon_sym_SEMI] = ACTIONS(2477), - [anon_sym_LPAREN] = ACTIONS(3440), - [anon_sym_COMMA] = ACTIONS(2477), - [sym_integer] = ACTIONS(3442), - [sym_float] = ACTIONS(3444), - [sym_string] = ACTIONS(3444), - [anon_sym_true] = ACTIONS(3446), - [anon_sym_false] = ACTIONS(3446), - [anon_sym_LBRACK] = ACTIONS(3448), - [anon_sym_EQ] = ACTIONS(2479), - [anon_sym_COLON] = ACTIONS(2477), - [anon_sym_DOT_DOT] = ACTIONS(2477), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2477), - [anon_sym_SLASH] = ACTIONS(2477), - [anon_sym_PERCENT] = ACTIONS(2477), - [anon_sym_EQ_EQ] = ACTIONS(2477), - [anon_sym_BANG_EQ] = ACTIONS(2477), - [anon_sym_AMP_AMP] = ACTIONS(2477), - [anon_sym_PIPE_PIPE] = ACTIONS(2477), - [anon_sym_GT] = ACTIONS(2479), - [anon_sym_LT] = ACTIONS(2479), - [anon_sym_GT_EQ] = ACTIONS(2477), - [anon_sym_LT_EQ] = ACTIONS(2477), - [anon_sym_PLUS_EQ] = ACTIONS(2477), - [anon_sym_DASH_EQ] = ACTIONS(2477), - [anon_sym_EQ_GT] = ACTIONS(3450), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(3452), - [anon_sym_assert] = ACTIONS(3454), - [anon_sym_assert_equal] = ACTIONS(3454), - [anon_sym_download] = ACTIONS(3454), - [anon_sym_help] = ACTIONS(3454), - [anon_sym_length] = ACTIONS(3454), - [anon_sym_output] = ACTIONS(3454), - [anon_sym_output_error] = ACTIONS(3454), - [anon_sym_type] = ACTIONS(3454), - [anon_sym_append] = ACTIONS(3454), - [anon_sym_metadata] = ACTIONS(3454), - [anon_sym_move] = ACTIONS(3454), - [anon_sym_read] = ACTIONS(3454), - [anon_sym_workdir] = ACTIONS(3454), - [anon_sym_write] = ACTIONS(3454), - [anon_sym_from_json] = ACTIONS(3454), - [anon_sym_to_json] = ACTIONS(3454), - [anon_sym_to_string] = ACTIONS(3454), - [anon_sym_to_float] = ACTIONS(3454), - [anon_sym_bash] = ACTIONS(3454), - [anon_sym_fish] = ACTIONS(3454), - [anon_sym_raw] = ACTIONS(3454), - [anon_sym_sh] = ACTIONS(3454), - [anon_sym_zsh] = ACTIONS(3454), - [anon_sym_random] = ACTIONS(3454), - [anon_sym_random_boolean] = ACTIONS(3454), - [anon_sym_random_float] = ACTIONS(3454), - [anon_sym_random_integer] = ACTIONS(3454), - [anon_sym_columns] = ACTIONS(3454), - [anon_sym_rows] = ACTIONS(3454), - [anon_sym_reverse] = ACTIONS(3454), - }, - [675] = { - [sym_math_operator] = STATE(1362), - [sym_logic_operator] = STATE(1363), - [ts_builtin_sym_end] = ACTIONS(3244), - [sym_identifier] = ACTIONS(3246), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_RBRACE] = ACTIONS(3244), - [anon_sym_SEMI] = ACTIONS(3244), - [anon_sym_LPAREN] = ACTIONS(3244), - [anon_sym_RPAREN] = ACTIONS(3244), - [anon_sym_COMMA] = ACTIONS(3244), - [sym_integer] = ACTIONS(3246), - [sym_float] = ACTIONS(3244), - [sym_string] = ACTIONS(3244), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_LBRACK] = ACTIONS(3244), - [anon_sym_RBRACK] = ACTIONS(3244), - [anon_sym_COLON] = ACTIONS(243), - [anon_sym_DOT_DOT] = ACTIONS(3244), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(3246), - [anon_sym_elseif] = ACTIONS(3244), - [anon_sym_else] = ACTIONS(3246), - [anon_sym_match] = ACTIONS(3246), - [anon_sym_EQ_GT] = ACTIONS(3244), - [anon_sym_while] = ACTIONS(3246), - [anon_sym_for] = ACTIONS(3246), - [anon_sym_asyncfor] = ACTIONS(3244), - [anon_sym_transform] = ACTIONS(3246), - [anon_sym_filter] = ACTIONS(3246), - [anon_sym_find] = ACTIONS(3246), - [anon_sym_remove] = ACTIONS(3246), - [anon_sym_reduce] = ACTIONS(3246), - [anon_sym_select] = ACTIONS(3246), - [anon_sym_insert] = ACTIONS(3246), - [anon_sym_async] = ACTIONS(3246), - [anon_sym_PIPE] = ACTIONS(3246), - [anon_sym_table] = ACTIONS(3246), - [anon_sym_assert] = ACTIONS(3246), - [anon_sym_assert_equal] = ACTIONS(3246), - [anon_sym_download] = ACTIONS(3246), - [anon_sym_help] = ACTIONS(3246), - [anon_sym_length] = ACTIONS(3246), - [anon_sym_output] = ACTIONS(3246), - [anon_sym_output_error] = ACTIONS(3246), - [anon_sym_type] = ACTIONS(3246), - [anon_sym_append] = ACTIONS(3246), - [anon_sym_metadata] = ACTIONS(3246), - [anon_sym_move] = ACTIONS(3246), - [anon_sym_read] = ACTIONS(3246), - [anon_sym_workdir] = ACTIONS(3246), - [anon_sym_write] = ACTIONS(3246), - [anon_sym_from_json] = ACTIONS(3246), - [anon_sym_to_json] = ACTIONS(3246), - [anon_sym_to_string] = ACTIONS(3246), - [anon_sym_to_float] = ACTIONS(3246), - [anon_sym_bash] = ACTIONS(3246), - [anon_sym_fish] = ACTIONS(3246), - [anon_sym_raw] = ACTIONS(3246), - [anon_sym_sh] = ACTIONS(3246), - [anon_sym_zsh] = ACTIONS(3246), - [anon_sym_random] = ACTIONS(3246), - [anon_sym_random_boolean] = ACTIONS(3246), - [anon_sym_random_float] = ACTIONS(3246), - [anon_sym_random_integer] = ACTIONS(3246), - [anon_sym_columns] = ACTIONS(3246), - [anon_sym_rows] = ACTIONS(3246), - [anon_sym_reverse] = ACTIONS(3246), - }, - [676] = { - [sym_math_operator] = STATE(1138), - [sym_logic_operator] = STATE(1277), - [ts_builtin_sym_end] = ACTIONS(3262), - [sym_identifier] = ACTIONS(3264), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3262), - [anon_sym_SEMI] = ACTIONS(3262), - [anon_sym_LPAREN] = ACTIONS(3262), - [anon_sym_RPAREN] = ACTIONS(3262), - [sym_integer] = ACTIONS(3264), - [sym_float] = ACTIONS(3262), - [sym_string] = ACTIONS(3262), - [anon_sym_true] = ACTIONS(3264), - [anon_sym_false] = ACTIONS(3264), - [anon_sym_LBRACK] = ACTIONS(3262), - [anon_sym_EQ] = ACTIONS(3264), - [anon_sym_COLON] = ACTIONS(3262), - [anon_sym_PLUS] = ACTIONS(3264), - [anon_sym_DASH] = ACTIONS(3264), - [anon_sym_STAR] = ACTIONS(3262), - [anon_sym_SLASH] = ACTIONS(3262), - [anon_sym_PERCENT] = ACTIONS(3262), - [anon_sym_EQ_EQ] = ACTIONS(3262), - [anon_sym_BANG_EQ] = ACTIONS(3262), - [anon_sym_AMP_AMP] = ACTIONS(3262), - [anon_sym_PIPE_PIPE] = ACTIONS(3262), - [anon_sym_GT] = ACTIONS(3264), - [anon_sym_LT] = ACTIONS(3264), - [anon_sym_GT_EQ] = ACTIONS(3262), - [anon_sym_LT_EQ] = ACTIONS(3262), - [anon_sym_PLUS_EQ] = ACTIONS(3262), - [anon_sym_DASH_EQ] = ACTIONS(3262), - [anon_sym_if] = ACTIONS(3264), - [anon_sym_elseif] = ACTIONS(3262), - [anon_sym_else] = ACTIONS(3264), - [anon_sym_match] = ACTIONS(3264), - [anon_sym_EQ_GT] = ACTIONS(3262), - [anon_sym_while] = ACTIONS(3264), - [anon_sym_for] = ACTIONS(3264), - [anon_sym_asyncfor] = ACTIONS(3262), - [anon_sym_transform] = ACTIONS(3264), - [anon_sym_filter] = ACTIONS(3264), - [anon_sym_find] = ACTIONS(3264), - [anon_sym_remove] = ACTIONS(3264), - [anon_sym_reduce] = ACTIONS(3264), - [anon_sym_select] = ACTIONS(3264), - [anon_sym_insert] = ACTIONS(3264), - [anon_sym_async] = ACTIONS(3264), - [anon_sym_PIPE] = ACTIONS(3264), - [anon_sym_table] = ACTIONS(3264), - [anon_sym_assert] = ACTIONS(3264), - [anon_sym_assert_equal] = ACTIONS(3264), - [anon_sym_download] = ACTIONS(3264), - [anon_sym_help] = ACTIONS(3264), - [anon_sym_length] = ACTIONS(3264), - [anon_sym_output] = ACTIONS(3264), - [anon_sym_output_error] = ACTIONS(3264), - [anon_sym_type] = ACTIONS(3264), - [anon_sym_append] = ACTIONS(3264), - [anon_sym_metadata] = ACTIONS(3264), - [anon_sym_move] = ACTIONS(3264), - [anon_sym_read] = ACTIONS(3264), - [anon_sym_workdir] = ACTIONS(3264), - [anon_sym_write] = ACTIONS(3264), - [anon_sym_from_json] = ACTIONS(3264), - [anon_sym_to_json] = ACTIONS(3264), - [anon_sym_to_string] = ACTIONS(3264), - [anon_sym_to_float] = ACTIONS(3264), - [anon_sym_bash] = ACTIONS(3264), - [anon_sym_fish] = ACTIONS(3264), - [anon_sym_raw] = ACTIONS(3264), - [anon_sym_sh] = ACTIONS(3264), - [anon_sym_zsh] = ACTIONS(3264), - [anon_sym_random] = ACTIONS(3264), - [anon_sym_random_boolean] = ACTIONS(3264), - [anon_sym_random_float] = ACTIONS(3264), - [anon_sym_random_integer] = ACTIONS(3264), - [anon_sym_columns] = ACTIONS(3264), - [anon_sym_rows] = ACTIONS(3264), - [anon_sym_reverse] = ACTIONS(3264), - }, - [677] = { - [sym_else_if] = STATE(741), - [sym_else] = STATE(802), - [aux_sym_if_else_repeat1] = STATE(741), - [ts_builtin_sym_end] = ACTIONS(3229), - [sym_identifier] = ACTIONS(3231), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3229), - [anon_sym_RBRACE] = ACTIONS(3229), - [anon_sym_SEMI] = ACTIONS(3229), - [anon_sym_LPAREN] = ACTIONS(3229), - [anon_sym_RPAREN] = ACTIONS(3229), - [anon_sym_COMMA] = ACTIONS(3229), - [sym_integer] = ACTIONS(3231), - [sym_float] = ACTIONS(3229), - [sym_string] = ACTIONS(3229), - [anon_sym_true] = ACTIONS(3231), - [anon_sym_false] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3229), - [anon_sym_RBRACK] = ACTIONS(3229), - [anon_sym_COLON] = ACTIONS(3229), - [anon_sym_PLUS] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_SLASH] = ACTIONS(3229), - [anon_sym_PERCENT] = ACTIONS(3229), - [anon_sym_EQ_EQ] = ACTIONS(3229), - [anon_sym_BANG_EQ] = ACTIONS(3229), - [anon_sym_AMP_AMP] = ACTIONS(3229), - [anon_sym_PIPE_PIPE] = ACTIONS(3229), - [anon_sym_GT] = ACTIONS(3231), - [anon_sym_LT] = ACTIONS(3231), - [anon_sym_GT_EQ] = ACTIONS(3229), - [anon_sym_LT_EQ] = ACTIONS(3229), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_elseif] = ACTIONS(3459), - [anon_sym_else] = ACTIONS(3463), - [anon_sym_match] = ACTIONS(3231), - [anon_sym_EQ_GT] = ACTIONS(3229), - [anon_sym_while] = ACTIONS(3231), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_asyncfor] = ACTIONS(3229), - [anon_sym_transform] = ACTIONS(3231), - [anon_sym_filter] = ACTIONS(3231), - [anon_sym_find] = ACTIONS(3231), - [anon_sym_remove] = ACTIONS(3231), - [anon_sym_reduce] = ACTIONS(3231), - [anon_sym_select] = ACTIONS(3231), - [anon_sym_insert] = ACTIONS(3231), - [anon_sym_async] = ACTIONS(3231), - [anon_sym_PIPE] = ACTIONS(3231), - [anon_sym_table] = ACTIONS(3231), - [anon_sym_assert] = ACTIONS(3231), - [anon_sym_assert_equal] = ACTIONS(3231), - [anon_sym_download] = ACTIONS(3231), - [anon_sym_help] = ACTIONS(3231), - [anon_sym_length] = ACTIONS(3231), - [anon_sym_output] = ACTIONS(3231), - [anon_sym_output_error] = ACTIONS(3231), - [anon_sym_type] = ACTIONS(3231), - [anon_sym_append] = ACTIONS(3231), - [anon_sym_metadata] = ACTIONS(3231), - [anon_sym_move] = ACTIONS(3231), - [anon_sym_read] = ACTIONS(3231), - [anon_sym_workdir] = ACTIONS(3231), - [anon_sym_write] = ACTIONS(3231), - [anon_sym_from_json] = ACTIONS(3231), - [anon_sym_to_json] = ACTIONS(3231), - [anon_sym_to_string] = ACTIONS(3231), - [anon_sym_to_float] = ACTIONS(3231), - [anon_sym_bash] = ACTIONS(3231), - [anon_sym_fish] = ACTIONS(3231), - [anon_sym_raw] = ACTIONS(3231), - [anon_sym_sh] = ACTIONS(3231), - [anon_sym_zsh] = ACTIONS(3231), - [anon_sym_random] = ACTIONS(3231), - [anon_sym_random_boolean] = ACTIONS(3231), - [anon_sym_random_float] = ACTIONS(3231), - [anon_sym_random_integer] = ACTIONS(3231), - [anon_sym_columns] = ACTIONS(3231), - [anon_sym_rows] = ACTIONS(3231), - [anon_sym_reverse] = ACTIONS(3231), - }, - [678] = { - [sym_math_operator] = STATE(1362), - [sym_logic_operator] = STATE(1363), - [ts_builtin_sym_end] = ACTIONS(3240), - [sym_identifier] = ACTIONS(3242), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3240), - [anon_sym_SEMI] = ACTIONS(3240), - [anon_sym_LPAREN] = ACTIONS(3240), - [anon_sym_RPAREN] = ACTIONS(3240), - [anon_sym_COMMA] = ACTIONS(3240), - [sym_integer] = ACTIONS(3242), - [sym_float] = ACTIONS(3240), - [sym_string] = ACTIONS(3240), - [anon_sym_true] = ACTIONS(3242), - [anon_sym_false] = ACTIONS(3242), - [anon_sym_LBRACK] = ACTIONS(3240), - [anon_sym_RBRACK] = ACTIONS(3240), - [anon_sym_COLON] = ACTIONS(243), - [anon_sym_DOT_DOT] = ACTIONS(3240), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(3242), - [anon_sym_elseif] = ACTIONS(3240), - [anon_sym_else] = ACTIONS(3242), - [anon_sym_match] = ACTIONS(3242), - [anon_sym_EQ_GT] = ACTIONS(3240), - [anon_sym_while] = ACTIONS(3242), - [anon_sym_for] = ACTIONS(3242), - [anon_sym_asyncfor] = ACTIONS(3240), - [anon_sym_transform] = ACTIONS(3242), - [anon_sym_filter] = ACTIONS(3242), - [anon_sym_find] = ACTIONS(3242), - [anon_sym_remove] = ACTIONS(3242), - [anon_sym_reduce] = ACTIONS(3242), - [anon_sym_select] = ACTIONS(3242), - [anon_sym_insert] = ACTIONS(3242), - [anon_sym_async] = ACTIONS(3242), - [anon_sym_PIPE] = ACTIONS(3242), - [anon_sym_table] = ACTIONS(3242), - [anon_sym_assert] = ACTIONS(3242), - [anon_sym_assert_equal] = ACTIONS(3242), - [anon_sym_download] = ACTIONS(3242), - [anon_sym_help] = ACTIONS(3242), - [anon_sym_length] = ACTIONS(3242), - [anon_sym_output] = ACTIONS(3242), - [anon_sym_output_error] = ACTIONS(3242), - [anon_sym_type] = ACTIONS(3242), - [anon_sym_append] = ACTIONS(3242), - [anon_sym_metadata] = ACTIONS(3242), - [anon_sym_move] = ACTIONS(3242), - [anon_sym_read] = ACTIONS(3242), - [anon_sym_workdir] = ACTIONS(3242), - [anon_sym_write] = ACTIONS(3242), - [anon_sym_from_json] = ACTIONS(3242), - [anon_sym_to_json] = ACTIONS(3242), - [anon_sym_to_string] = ACTIONS(3242), - [anon_sym_to_float] = ACTIONS(3242), - [anon_sym_bash] = ACTIONS(3242), - [anon_sym_fish] = ACTIONS(3242), - [anon_sym_raw] = ACTIONS(3242), - [anon_sym_sh] = ACTIONS(3242), - [anon_sym_zsh] = ACTIONS(3242), - [anon_sym_random] = ACTIONS(3242), - [anon_sym_random_boolean] = ACTIONS(3242), - [anon_sym_random_float] = ACTIONS(3242), - [anon_sym_random_integer] = ACTIONS(3242), - [anon_sym_columns] = ACTIONS(3242), - [anon_sym_rows] = ACTIONS(3242), - [anon_sym_reverse] = ACTIONS(3242), - }, - [679] = { - [sym_expression] = STATE(975), - [sym__expression_kind] = STATE(1002), - [aux_sym__expression_list] = STATE(773), - [sym_value] = STATE(1002), - [sym_boolean] = STATE(996), - [sym_list] = STATE(996), - [sym_map] = STATE(996), - [sym_index] = STATE(1002), - [sym_math] = STATE(1002), - [sym_logic] = STATE(1002), - [sym_assignment_operator] = STATE(541), - [sym_identifier_list] = STATE(1980), - [sym_table] = STATE(996), - [sym_function] = STATE(996), - [sym_function_call] = STATE(1002), - [sym__context_defined_function] = STATE(1009), - [sym_built_in_function] = STATE(1009), - [sym__built_in_function_name] = STATE(780), - [sym_identifier] = ACTIONS(2437), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3503), - [anon_sym_RBRACE] = ACTIONS(2435), - [anon_sym_SEMI] = ACTIONS(2435), - [anon_sym_LPAREN] = ACTIONS(3505), - [anon_sym_COMMA] = ACTIONS(2435), - [sym_integer] = ACTIONS(3507), - [sym_float] = ACTIONS(3509), - [sym_string] = ACTIONS(3509), - [anon_sym_true] = ACTIONS(3511), - [anon_sym_false] = ACTIONS(3511), - [anon_sym_LBRACK] = ACTIONS(3513), - [anon_sym_EQ] = ACTIONS(2439), - [anon_sym_COLON] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_PERCENT] = ACTIONS(2435), - [anon_sym_EQ_EQ] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_PIPE_PIPE] = ACTIONS(2435), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_PLUS_EQ] = ACTIONS(2441), - [anon_sym_DASH_EQ] = ACTIONS(2441), - [anon_sym_EQ_GT] = ACTIONS(3515), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(3517), - [anon_sym_assert] = ACTIONS(3145), - [anon_sym_assert_equal] = ACTIONS(3145), - [anon_sym_download] = ACTIONS(3145), - [anon_sym_help] = ACTIONS(3145), - [anon_sym_length] = ACTIONS(3145), - [anon_sym_output] = ACTIONS(3145), - [anon_sym_output_error] = ACTIONS(3145), - [anon_sym_type] = ACTIONS(3145), - [anon_sym_append] = ACTIONS(3145), - [anon_sym_metadata] = ACTIONS(3145), - [anon_sym_move] = ACTIONS(3145), - [anon_sym_read] = ACTIONS(3145), - [anon_sym_workdir] = ACTIONS(3145), - [anon_sym_write] = ACTIONS(3145), - [anon_sym_from_json] = ACTIONS(3145), - [anon_sym_to_json] = ACTIONS(3145), - [anon_sym_to_string] = ACTIONS(3145), - [anon_sym_to_float] = ACTIONS(3145), - [anon_sym_bash] = ACTIONS(3145), - [anon_sym_fish] = ACTIONS(3145), - [anon_sym_raw] = ACTIONS(3145), - [anon_sym_sh] = ACTIONS(3145), - [anon_sym_zsh] = ACTIONS(3145), - [anon_sym_random] = ACTIONS(3145), - [anon_sym_random_boolean] = ACTIONS(3145), - [anon_sym_random_float] = ACTIONS(3145), - [anon_sym_random_integer] = ACTIONS(3145), - [anon_sym_columns] = ACTIONS(3145), - [anon_sym_rows] = ACTIONS(3145), - [anon_sym_reverse] = ACTIONS(3145), - }, - [680] = { - [sym_math_operator] = STATE(1316), - [sym_logic_operator] = STATE(1285), - [ts_builtin_sym_end] = ACTIONS(3233), - [sym_identifier] = ACTIONS(3235), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3233), - [anon_sym_RBRACE] = ACTIONS(3233), - [anon_sym_SEMI] = ACTIONS(3233), - [anon_sym_LPAREN] = ACTIONS(3233), - [anon_sym_RPAREN] = ACTIONS(3233), - [anon_sym_COMMA] = ACTIONS(3519), - [sym_integer] = ACTIONS(3235), - [sym_float] = ACTIONS(3233), - [sym_string] = ACTIONS(3233), - [anon_sym_true] = ACTIONS(3235), - [anon_sym_false] = ACTIONS(3235), - [anon_sym_LBRACK] = ACTIONS(3233), - [anon_sym_EQ] = ACTIONS(3235), - [anon_sym_COLON] = ACTIONS(163), - [anon_sym_DOT_DOT] = ACTIONS(3233), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_PLUS_EQ] = ACTIONS(3233), - [anon_sym_DASH_EQ] = ACTIONS(3233), - [anon_sym_if] = ACTIONS(3235), - [anon_sym_match] = ACTIONS(3235), - [anon_sym_EQ_GT] = ACTIONS(3233), - [anon_sym_while] = ACTIONS(3235), - [anon_sym_for] = ACTIONS(3235), - [anon_sym_asyncfor] = ACTIONS(3233), - [anon_sym_transform] = ACTIONS(3235), - [anon_sym_filter] = ACTIONS(3235), - [anon_sym_find] = ACTIONS(3235), - [anon_sym_remove] = ACTIONS(3235), - [anon_sym_reduce] = ACTIONS(3235), - [anon_sym_select] = ACTIONS(3235), - [anon_sym_insert] = ACTIONS(3235), - [anon_sym_async] = ACTIONS(3235), - [anon_sym_PIPE] = ACTIONS(3235), - [anon_sym_table] = ACTIONS(3235), - [anon_sym_assert] = ACTIONS(3235), - [anon_sym_assert_equal] = ACTIONS(3235), - [anon_sym_download] = ACTIONS(3235), - [anon_sym_help] = ACTIONS(3235), - [anon_sym_length] = ACTIONS(3235), - [anon_sym_output] = ACTIONS(3235), - [anon_sym_output_error] = ACTIONS(3235), - [anon_sym_type] = ACTIONS(3235), - [anon_sym_append] = ACTIONS(3235), - [anon_sym_metadata] = ACTIONS(3235), - [anon_sym_move] = ACTIONS(3235), - [anon_sym_read] = ACTIONS(3235), - [anon_sym_workdir] = ACTIONS(3235), - [anon_sym_write] = ACTIONS(3235), - [anon_sym_from_json] = ACTIONS(3235), - [anon_sym_to_json] = ACTIONS(3235), - [anon_sym_to_string] = ACTIONS(3235), - [anon_sym_to_float] = ACTIONS(3235), - [anon_sym_bash] = ACTIONS(3235), - [anon_sym_fish] = ACTIONS(3235), - [anon_sym_raw] = ACTIONS(3235), - [anon_sym_sh] = ACTIONS(3235), - [anon_sym_zsh] = ACTIONS(3235), - [anon_sym_random] = ACTIONS(3235), - [anon_sym_random_boolean] = ACTIONS(3235), - [anon_sym_random_float] = ACTIONS(3235), - [anon_sym_random_integer] = ACTIONS(3235), - [anon_sym_columns] = ACTIONS(3235), - [anon_sym_rows] = ACTIONS(3235), - [anon_sym_reverse] = ACTIONS(3235), - }, - [681] = { - [sym_math_operator] = STATE(1261), - [sym_logic_operator] = STATE(1219), - [ts_builtin_sym_end] = ACTIONS(3240), - [sym_identifier] = ACTIONS(3242), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3240), - [anon_sym_SEMI] = ACTIONS(3240), - [anon_sym_LPAREN] = ACTIONS(3240), - [anon_sym_RPAREN] = ACTIONS(3240), - [anon_sym_COMMA] = ACTIONS(3240), - [sym_integer] = ACTIONS(3242), - [sym_float] = ACTIONS(3240), - [sym_string] = ACTIONS(3240), - [anon_sym_true] = ACTIONS(3242), - [anon_sym_false] = ACTIONS(3242), - [anon_sym_LBRACK] = ACTIONS(3240), - [anon_sym_RBRACK] = ACTIONS(3240), - [anon_sym_EQ] = ACTIONS(3242), - [anon_sym_COLON] = ACTIONS(277), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_PLUS_EQ] = ACTIONS(3240), - [anon_sym_DASH_EQ] = ACTIONS(3240), - [anon_sym_if] = ACTIONS(3242), - [anon_sym_match] = ACTIONS(3242), - [anon_sym_EQ_GT] = ACTIONS(3240), - [anon_sym_while] = ACTIONS(3242), - [anon_sym_for] = ACTIONS(3242), - [anon_sym_asyncfor] = ACTIONS(3240), - [anon_sym_transform] = ACTIONS(3242), - [anon_sym_filter] = ACTIONS(3242), - [anon_sym_find] = ACTIONS(3242), - [anon_sym_remove] = ACTIONS(3242), - [anon_sym_reduce] = ACTIONS(3242), - [anon_sym_select] = ACTIONS(3242), - [anon_sym_insert] = ACTIONS(3242), - [anon_sym_async] = ACTIONS(3242), - [anon_sym_PIPE] = ACTIONS(3242), - [anon_sym_table] = ACTIONS(3242), - [anon_sym_assert] = ACTIONS(3242), - [anon_sym_assert_equal] = ACTIONS(3242), - [anon_sym_download] = ACTIONS(3242), - [anon_sym_help] = ACTIONS(3242), - [anon_sym_length] = ACTIONS(3242), - [anon_sym_output] = ACTIONS(3242), - [anon_sym_output_error] = ACTIONS(3242), - [anon_sym_type] = ACTIONS(3242), - [anon_sym_append] = ACTIONS(3242), - [anon_sym_metadata] = ACTIONS(3242), - [anon_sym_move] = ACTIONS(3242), - [anon_sym_read] = ACTIONS(3242), - [anon_sym_workdir] = ACTIONS(3242), - [anon_sym_write] = ACTIONS(3242), - [anon_sym_from_json] = ACTIONS(3242), - [anon_sym_to_json] = ACTIONS(3242), - [anon_sym_to_string] = ACTIONS(3242), - [anon_sym_to_float] = ACTIONS(3242), - [anon_sym_bash] = ACTIONS(3242), - [anon_sym_fish] = ACTIONS(3242), - [anon_sym_raw] = ACTIONS(3242), - [anon_sym_sh] = ACTIONS(3242), - [anon_sym_zsh] = ACTIONS(3242), - [anon_sym_random] = ACTIONS(3242), - [anon_sym_random_boolean] = ACTIONS(3242), - [anon_sym_random_float] = ACTIONS(3242), - [anon_sym_random_integer] = ACTIONS(3242), - [anon_sym_columns] = ACTIONS(3242), - [anon_sym_rows] = ACTIONS(3242), - [anon_sym_reverse] = ACTIONS(3242), - }, - [682] = { - [sym_math_operator] = STATE(1261), - [sym_logic_operator] = STATE(1219), - [ts_builtin_sym_end] = ACTIONS(3244), - [sym_identifier] = ACTIONS(3246), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_RBRACE] = ACTIONS(3244), - [anon_sym_SEMI] = ACTIONS(3244), - [anon_sym_LPAREN] = ACTIONS(3244), - [anon_sym_RPAREN] = ACTIONS(3244), - [anon_sym_COMMA] = ACTIONS(3244), - [sym_integer] = ACTIONS(3246), - [sym_float] = ACTIONS(3244), - [sym_string] = ACTIONS(3244), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_LBRACK] = ACTIONS(3244), - [anon_sym_RBRACK] = ACTIONS(3244), - [anon_sym_EQ] = ACTIONS(3246), - [anon_sym_COLON] = ACTIONS(277), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_PLUS_EQ] = ACTIONS(3244), - [anon_sym_DASH_EQ] = ACTIONS(3244), - [anon_sym_if] = ACTIONS(3246), - [anon_sym_match] = ACTIONS(3246), - [anon_sym_EQ_GT] = ACTIONS(3244), - [anon_sym_while] = ACTIONS(3246), - [anon_sym_for] = ACTIONS(3246), - [anon_sym_asyncfor] = ACTIONS(3244), - [anon_sym_transform] = ACTIONS(3246), - [anon_sym_filter] = ACTIONS(3246), - [anon_sym_find] = ACTIONS(3246), - [anon_sym_remove] = ACTIONS(3246), - [anon_sym_reduce] = ACTIONS(3246), - [anon_sym_select] = ACTIONS(3246), - [anon_sym_insert] = ACTIONS(3246), - [anon_sym_async] = ACTIONS(3246), - [anon_sym_PIPE] = ACTIONS(3246), - [anon_sym_table] = ACTIONS(3246), - [anon_sym_assert] = ACTIONS(3246), - [anon_sym_assert_equal] = ACTIONS(3246), - [anon_sym_download] = ACTIONS(3246), - [anon_sym_help] = ACTIONS(3246), - [anon_sym_length] = ACTIONS(3246), - [anon_sym_output] = ACTIONS(3246), - [anon_sym_output_error] = ACTIONS(3246), - [anon_sym_type] = ACTIONS(3246), - [anon_sym_append] = ACTIONS(3246), - [anon_sym_metadata] = ACTIONS(3246), - [anon_sym_move] = ACTIONS(3246), - [anon_sym_read] = ACTIONS(3246), - [anon_sym_workdir] = ACTIONS(3246), - [anon_sym_write] = ACTIONS(3246), - [anon_sym_from_json] = ACTIONS(3246), - [anon_sym_to_json] = ACTIONS(3246), - [anon_sym_to_string] = ACTIONS(3246), - [anon_sym_to_float] = ACTIONS(3246), - [anon_sym_bash] = ACTIONS(3246), - [anon_sym_fish] = ACTIONS(3246), - [anon_sym_raw] = ACTIONS(3246), - [anon_sym_sh] = ACTIONS(3246), - [anon_sym_zsh] = ACTIONS(3246), - [anon_sym_random] = ACTIONS(3246), - [anon_sym_random_boolean] = ACTIONS(3246), - [anon_sym_random_float] = ACTIONS(3246), - [anon_sym_random_integer] = ACTIONS(3246), - [anon_sym_columns] = ACTIONS(3246), - [anon_sym_rows] = ACTIONS(3246), - [anon_sym_reverse] = ACTIONS(3246), - }, - [683] = { - [sym_math_operator] = STATE(1261), - [sym_logic_operator] = STATE(1219), - [ts_builtin_sym_end] = ACTIONS(3275), - [sym_identifier] = ACTIONS(3277), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3275), - [anon_sym_RBRACE] = ACTIONS(3275), - [anon_sym_SEMI] = ACTIONS(3315), - [anon_sym_LPAREN] = ACTIONS(3275), - [anon_sym_RPAREN] = ACTIONS(3275), - [anon_sym_COMMA] = ACTIONS(3275), - [sym_integer] = ACTIONS(3277), - [sym_float] = ACTIONS(3275), - [sym_string] = ACTIONS(3275), - [anon_sym_true] = ACTIONS(3277), - [anon_sym_false] = ACTIONS(3277), - [anon_sym_LBRACK] = ACTIONS(3275), - [anon_sym_RBRACK] = ACTIONS(3275), - [anon_sym_EQ] = ACTIONS(3277), - [anon_sym_COLON] = ACTIONS(277), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_PLUS_EQ] = ACTIONS(3275), - [anon_sym_DASH_EQ] = ACTIONS(3275), - [anon_sym_if] = ACTIONS(3277), - [anon_sym_match] = ACTIONS(3277), - [anon_sym_EQ_GT] = ACTIONS(3275), - [anon_sym_while] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3277), - [anon_sym_asyncfor] = ACTIONS(3275), - [anon_sym_transform] = ACTIONS(3277), - [anon_sym_filter] = ACTIONS(3277), - [anon_sym_find] = ACTIONS(3277), - [anon_sym_remove] = ACTIONS(3277), - [anon_sym_reduce] = ACTIONS(3277), - [anon_sym_select] = ACTIONS(3277), - [anon_sym_insert] = ACTIONS(3277), - [anon_sym_async] = ACTIONS(3277), - [anon_sym_PIPE] = ACTIONS(3277), - [anon_sym_table] = ACTIONS(3277), - [anon_sym_assert] = ACTIONS(3277), - [anon_sym_assert_equal] = ACTIONS(3277), - [anon_sym_download] = ACTIONS(3277), - [anon_sym_help] = ACTIONS(3277), - [anon_sym_length] = ACTIONS(3277), - [anon_sym_output] = ACTIONS(3277), - [anon_sym_output_error] = ACTIONS(3277), - [anon_sym_type] = ACTIONS(3277), - [anon_sym_append] = ACTIONS(3277), - [anon_sym_metadata] = ACTIONS(3277), - [anon_sym_move] = ACTIONS(3277), - [anon_sym_read] = ACTIONS(3277), - [anon_sym_workdir] = ACTIONS(3277), - [anon_sym_write] = ACTIONS(3277), - [anon_sym_from_json] = ACTIONS(3277), - [anon_sym_to_json] = ACTIONS(3277), - [anon_sym_to_string] = ACTIONS(3277), - [anon_sym_to_float] = ACTIONS(3277), - [anon_sym_bash] = ACTIONS(3277), - [anon_sym_fish] = ACTIONS(3277), - [anon_sym_raw] = ACTIONS(3277), - [anon_sym_sh] = ACTIONS(3277), - [anon_sym_zsh] = ACTIONS(3277), - [anon_sym_random] = ACTIONS(3277), - [anon_sym_random_boolean] = ACTIONS(3277), - [anon_sym_random_float] = ACTIONS(3277), - [anon_sym_random_integer] = ACTIONS(3277), - [anon_sym_columns] = ACTIONS(3277), - [anon_sym_rows] = ACTIONS(3277), - [anon_sym_reverse] = ACTIONS(3277), - }, - [684] = { - [sym_math_operator] = STATE(1261), - [sym_logic_operator] = STATE(1219), - [ts_builtin_sym_end] = ACTIONS(3281), - [sym_identifier] = ACTIONS(3283), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3281), - [anon_sym_RBRACE] = ACTIONS(3281), - [anon_sym_SEMI] = ACTIONS(3281), - [anon_sym_LPAREN] = ACTIONS(3281), - [anon_sym_RPAREN] = ACTIONS(3281), - [anon_sym_COMMA] = ACTIONS(3281), - [sym_integer] = ACTIONS(3283), - [sym_float] = ACTIONS(3281), - [sym_string] = ACTIONS(3281), - [anon_sym_true] = ACTIONS(3283), - [anon_sym_false] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3281), - [anon_sym_RBRACK] = ACTIONS(3281), - [anon_sym_EQ] = ACTIONS(3283), - [anon_sym_COLON] = ACTIONS(277), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_PLUS_EQ] = ACTIONS(3281), - [anon_sym_DASH_EQ] = ACTIONS(3281), - [anon_sym_if] = ACTIONS(3283), - [anon_sym_match] = ACTIONS(3283), - [anon_sym_EQ_GT] = ACTIONS(3281), - [anon_sym_while] = ACTIONS(3283), - [anon_sym_for] = ACTIONS(3283), - [anon_sym_asyncfor] = ACTIONS(3281), - [anon_sym_transform] = ACTIONS(3283), - [anon_sym_filter] = ACTIONS(3283), - [anon_sym_find] = ACTIONS(3283), - [anon_sym_remove] = ACTIONS(3283), - [anon_sym_reduce] = ACTIONS(3283), - [anon_sym_select] = ACTIONS(3283), - [anon_sym_insert] = ACTIONS(3283), - [anon_sym_async] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(3283), - [anon_sym_table] = ACTIONS(3283), - [anon_sym_assert] = ACTIONS(3283), - [anon_sym_assert_equal] = ACTIONS(3283), - [anon_sym_download] = ACTIONS(3283), - [anon_sym_help] = ACTIONS(3283), - [anon_sym_length] = ACTIONS(3283), - [anon_sym_output] = ACTIONS(3283), - [anon_sym_output_error] = ACTIONS(3283), - [anon_sym_type] = ACTIONS(3283), - [anon_sym_append] = ACTIONS(3283), - [anon_sym_metadata] = ACTIONS(3283), - [anon_sym_move] = ACTIONS(3283), - [anon_sym_read] = ACTIONS(3283), - [anon_sym_workdir] = ACTIONS(3283), - [anon_sym_write] = ACTIONS(3283), - [anon_sym_from_json] = ACTIONS(3283), - [anon_sym_to_json] = ACTIONS(3283), - [anon_sym_to_string] = ACTIONS(3283), - [anon_sym_to_float] = ACTIONS(3283), - [anon_sym_bash] = ACTIONS(3283), - [anon_sym_fish] = ACTIONS(3283), - [anon_sym_raw] = ACTIONS(3283), - [anon_sym_sh] = ACTIONS(3283), - [anon_sym_zsh] = ACTIONS(3283), - [anon_sym_random] = ACTIONS(3283), - [anon_sym_random_boolean] = ACTIONS(3283), - [anon_sym_random_float] = ACTIONS(3283), - [anon_sym_random_integer] = ACTIONS(3283), - [anon_sym_columns] = ACTIONS(3283), - [anon_sym_rows] = ACTIONS(3283), - [anon_sym_reverse] = ACTIONS(3283), - }, - [685] = { - [sym_math_operator] = STATE(1362), - [sym_logic_operator] = STATE(1363), - [ts_builtin_sym_end] = ACTIONS(3275), - [sym_identifier] = ACTIONS(3277), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3275), - [anon_sym_RBRACE] = ACTIONS(3275), - [anon_sym_SEMI] = ACTIONS(3521), - [anon_sym_LPAREN] = ACTIONS(3275), - [anon_sym_RPAREN] = ACTIONS(3275), - [anon_sym_COMMA] = ACTIONS(3275), - [sym_integer] = ACTIONS(3277), - [sym_float] = ACTIONS(3275), - [sym_string] = ACTIONS(3275), - [anon_sym_true] = ACTIONS(3277), - [anon_sym_false] = ACTIONS(3277), - [anon_sym_LBRACK] = ACTIONS(3275), - [anon_sym_RBRACK] = ACTIONS(3275), - [anon_sym_COLON] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3275), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(3277), - [anon_sym_elseif] = ACTIONS(3275), - [anon_sym_else] = ACTIONS(3277), - [anon_sym_match] = ACTIONS(3277), - [anon_sym_EQ_GT] = ACTIONS(3275), - [anon_sym_while] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3277), - [anon_sym_asyncfor] = ACTIONS(3275), - [anon_sym_transform] = ACTIONS(3277), - [anon_sym_filter] = ACTIONS(3277), - [anon_sym_find] = ACTIONS(3277), - [anon_sym_remove] = ACTIONS(3277), - [anon_sym_reduce] = ACTIONS(3277), - [anon_sym_select] = ACTIONS(3277), - [anon_sym_insert] = ACTIONS(3277), - [anon_sym_async] = ACTIONS(3277), - [anon_sym_PIPE] = ACTIONS(3277), - [anon_sym_table] = ACTIONS(3277), - [anon_sym_assert] = ACTIONS(3277), - [anon_sym_assert_equal] = ACTIONS(3277), - [anon_sym_download] = ACTIONS(3277), - [anon_sym_help] = ACTIONS(3277), - [anon_sym_length] = ACTIONS(3277), - [anon_sym_output] = ACTIONS(3277), - [anon_sym_output_error] = ACTIONS(3277), - [anon_sym_type] = ACTIONS(3277), - [anon_sym_append] = ACTIONS(3277), - [anon_sym_metadata] = ACTIONS(3277), - [anon_sym_move] = ACTIONS(3277), - [anon_sym_read] = ACTIONS(3277), - [anon_sym_workdir] = ACTIONS(3277), - [anon_sym_write] = ACTIONS(3277), - [anon_sym_from_json] = ACTIONS(3277), - [anon_sym_to_json] = ACTIONS(3277), - [anon_sym_to_string] = ACTIONS(3277), - [anon_sym_to_float] = ACTIONS(3277), - [anon_sym_bash] = ACTIONS(3277), - [anon_sym_fish] = ACTIONS(3277), - [anon_sym_raw] = ACTIONS(3277), - [anon_sym_sh] = ACTIONS(3277), - [anon_sym_zsh] = ACTIONS(3277), - [anon_sym_random] = ACTIONS(3277), - [anon_sym_random_boolean] = ACTIONS(3277), - [anon_sym_random_float] = ACTIONS(3277), - [anon_sym_random_integer] = ACTIONS(3277), - [anon_sym_columns] = ACTIONS(3277), - [anon_sym_rows] = ACTIONS(3277), - [anon_sym_reverse] = ACTIONS(3277), - }, - [686] = { - [ts_builtin_sym_end] = ACTIONS(3383), - [sym_identifier] = ACTIONS(3385), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3383), - [anon_sym_RBRACE] = ACTIONS(3383), - [anon_sym_SEMI] = ACTIONS(3383), - [anon_sym_LPAREN] = ACTIONS(3383), - [anon_sym_RPAREN] = ACTIONS(3383), - [anon_sym_COMMA] = ACTIONS(3383), - [sym_integer] = ACTIONS(3385), - [sym_float] = ACTIONS(3383), - [sym_string] = ACTIONS(3383), - [anon_sym_true] = ACTIONS(3385), - [anon_sym_false] = ACTIONS(3385), - [anon_sym_LBRACK] = ACTIONS(3383), - [anon_sym_RBRACK] = ACTIONS(3383), - [anon_sym_EQ] = ACTIONS(3385), - [anon_sym_COLON] = ACTIONS(3383), - [anon_sym_DOT_DOT] = ACTIONS(3383), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(3383), - [anon_sym_SLASH] = ACTIONS(3383), - [anon_sym_PERCENT] = ACTIONS(3383), - [anon_sym_EQ_EQ] = ACTIONS(3383), - [anon_sym_BANG_EQ] = ACTIONS(3383), - [anon_sym_AMP_AMP] = ACTIONS(3383), - [anon_sym_PIPE_PIPE] = ACTIONS(3383), - [anon_sym_GT] = ACTIONS(3385), - [anon_sym_LT] = ACTIONS(3385), - [anon_sym_GT_EQ] = ACTIONS(3383), - [anon_sym_LT_EQ] = ACTIONS(3383), - [anon_sym_PLUS_EQ] = ACTIONS(3383), - [anon_sym_DASH_EQ] = ACTIONS(3383), - [anon_sym_if] = ACTIONS(3385), - [anon_sym_match] = ACTIONS(3385), - [anon_sym_EQ_GT] = ACTIONS(3383), - [anon_sym_while] = ACTIONS(3385), - [anon_sym_for] = ACTIONS(3385), - [anon_sym_asyncfor] = ACTIONS(3383), - [anon_sym_transform] = ACTIONS(3385), - [anon_sym_filter] = ACTIONS(3385), - [anon_sym_find] = ACTIONS(3385), - [anon_sym_remove] = ACTIONS(3385), - [anon_sym_reduce] = ACTIONS(3385), - [anon_sym_select] = ACTIONS(3385), - [anon_sym_insert] = ACTIONS(3385), - [anon_sym_async] = ACTIONS(3385), - [anon_sym_PIPE] = ACTIONS(3385), - [anon_sym_table] = ACTIONS(3385), - [anon_sym_assert] = ACTIONS(3385), - [anon_sym_assert_equal] = ACTIONS(3385), - [anon_sym_download] = ACTIONS(3385), - [anon_sym_help] = ACTIONS(3385), - [anon_sym_length] = ACTIONS(3385), - [anon_sym_output] = ACTIONS(3385), - [anon_sym_output_error] = ACTIONS(3385), - [anon_sym_type] = ACTIONS(3385), - [anon_sym_append] = ACTIONS(3385), - [anon_sym_metadata] = ACTIONS(3385), - [anon_sym_move] = ACTIONS(3385), - [anon_sym_read] = ACTIONS(3385), - [anon_sym_workdir] = ACTIONS(3385), - [anon_sym_write] = ACTIONS(3385), - [anon_sym_from_json] = ACTIONS(3385), - [anon_sym_to_json] = ACTIONS(3385), - [anon_sym_to_string] = ACTIONS(3385), - [anon_sym_to_float] = ACTIONS(3385), - [anon_sym_bash] = ACTIONS(3385), - [anon_sym_fish] = ACTIONS(3385), - [anon_sym_raw] = ACTIONS(3385), - [anon_sym_sh] = ACTIONS(3385), - [anon_sym_zsh] = ACTIONS(3385), - [anon_sym_random] = ACTIONS(3385), - [anon_sym_random_boolean] = ACTIONS(3385), - [anon_sym_random_float] = ACTIONS(3385), - [anon_sym_random_integer] = ACTIONS(3385), - [anon_sym_columns] = ACTIONS(3385), - [anon_sym_rows] = ACTIONS(3385), - [anon_sym_reverse] = ACTIONS(3385), - }, - [687] = { - [ts_builtin_sym_end] = ACTIONS(3303), - [sym_identifier] = ACTIONS(3305), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3303), - [anon_sym_RBRACE] = ACTIONS(3303), - [anon_sym_SEMI] = ACTIONS(3303), - [anon_sym_LPAREN] = ACTIONS(3303), - [anon_sym_RPAREN] = ACTIONS(3303), - [anon_sym_COMMA] = ACTIONS(3303), - [sym_integer] = ACTIONS(3305), - [sym_float] = ACTIONS(3303), - [sym_string] = ACTIONS(3303), - [anon_sym_true] = ACTIONS(3305), - [anon_sym_false] = ACTIONS(3305), - [anon_sym_LBRACK] = ACTIONS(3303), - [anon_sym_RBRACK] = ACTIONS(3303), - [anon_sym_EQ] = ACTIONS(3305), - [anon_sym_COLON] = ACTIONS(3303), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [anon_sym_PLUS] = ACTIONS(3305), - [anon_sym_DASH] = ACTIONS(3305), - [anon_sym_STAR] = ACTIONS(3303), - [anon_sym_SLASH] = ACTIONS(3303), - [anon_sym_PERCENT] = ACTIONS(3303), - [anon_sym_EQ_EQ] = ACTIONS(3303), - [anon_sym_BANG_EQ] = ACTIONS(3303), - [anon_sym_AMP_AMP] = ACTIONS(3303), - [anon_sym_PIPE_PIPE] = ACTIONS(3303), - [anon_sym_GT] = ACTIONS(3305), - [anon_sym_LT] = ACTIONS(3305), - [anon_sym_GT_EQ] = ACTIONS(3303), - [anon_sym_LT_EQ] = ACTIONS(3303), - [anon_sym_PLUS_EQ] = ACTIONS(3303), - [anon_sym_DASH_EQ] = ACTIONS(3303), - [anon_sym_if] = ACTIONS(3305), - [anon_sym_match] = ACTIONS(3305), - [anon_sym_EQ_GT] = ACTIONS(3303), - [anon_sym_while] = ACTIONS(3305), - [anon_sym_for] = ACTIONS(3305), - [anon_sym_asyncfor] = ACTIONS(3303), - [anon_sym_transform] = ACTIONS(3305), - [anon_sym_filter] = ACTIONS(3305), - [anon_sym_find] = ACTIONS(3305), - [anon_sym_remove] = ACTIONS(3305), - [anon_sym_reduce] = ACTIONS(3305), - [anon_sym_select] = ACTIONS(3305), - [anon_sym_insert] = ACTIONS(3305), - [anon_sym_async] = ACTIONS(3305), - [anon_sym_PIPE] = ACTIONS(3305), - [anon_sym_table] = ACTIONS(3305), - [anon_sym_assert] = ACTIONS(3305), - [anon_sym_assert_equal] = ACTIONS(3305), - [anon_sym_download] = ACTIONS(3305), - [anon_sym_help] = ACTIONS(3305), - [anon_sym_length] = ACTIONS(3305), - [anon_sym_output] = ACTIONS(3305), - [anon_sym_output_error] = ACTIONS(3305), - [anon_sym_type] = ACTIONS(3305), - [anon_sym_append] = ACTIONS(3305), - [anon_sym_metadata] = ACTIONS(3305), - [anon_sym_move] = ACTIONS(3305), - [anon_sym_read] = ACTIONS(3305), - [anon_sym_workdir] = ACTIONS(3305), - [anon_sym_write] = ACTIONS(3305), - [anon_sym_from_json] = ACTIONS(3305), - [anon_sym_to_json] = ACTIONS(3305), - [anon_sym_to_string] = ACTIONS(3305), - [anon_sym_to_float] = ACTIONS(3305), - [anon_sym_bash] = ACTIONS(3305), - [anon_sym_fish] = ACTIONS(3305), - [anon_sym_raw] = ACTIONS(3305), - [anon_sym_sh] = ACTIONS(3305), - [anon_sym_zsh] = ACTIONS(3305), - [anon_sym_random] = ACTIONS(3305), - [anon_sym_random_boolean] = ACTIONS(3305), - [anon_sym_random_float] = ACTIONS(3305), - [anon_sym_random_integer] = ACTIONS(3305), - [anon_sym_columns] = ACTIONS(3305), - [anon_sym_rows] = ACTIONS(3305), - [anon_sym_reverse] = ACTIONS(3305), - }, - [688] = { - [ts_builtin_sym_end] = ACTIONS(3371), - [sym_identifier] = ACTIONS(3373), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3371), - [anon_sym_RBRACE] = ACTIONS(3371), - [anon_sym_SEMI] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3371), - [anon_sym_RPAREN] = ACTIONS(3371), - [anon_sym_COMMA] = ACTIONS(3371), - [sym_integer] = ACTIONS(3373), - [sym_float] = ACTIONS(3371), - [sym_string] = ACTIONS(3371), - [anon_sym_true] = ACTIONS(3373), - [anon_sym_false] = ACTIONS(3373), - [anon_sym_LBRACK] = ACTIONS(3371), - [anon_sym_RBRACK] = ACTIONS(3371), - [anon_sym_EQ] = ACTIONS(3373), - [anon_sym_COLON] = ACTIONS(3371), - [anon_sym_DOT_DOT] = ACTIONS(3371), - [anon_sym_PLUS] = ACTIONS(3373), - [anon_sym_DASH] = ACTIONS(3373), - [anon_sym_STAR] = ACTIONS(3371), - [anon_sym_SLASH] = ACTIONS(3371), - [anon_sym_PERCENT] = ACTIONS(3371), - [anon_sym_EQ_EQ] = ACTIONS(3371), - [anon_sym_BANG_EQ] = ACTIONS(3371), - [anon_sym_AMP_AMP] = ACTIONS(3371), - [anon_sym_PIPE_PIPE] = ACTIONS(3371), - [anon_sym_GT] = ACTIONS(3373), - [anon_sym_LT] = ACTIONS(3373), - [anon_sym_GT_EQ] = ACTIONS(3371), - [anon_sym_LT_EQ] = ACTIONS(3371), - [anon_sym_PLUS_EQ] = ACTIONS(3371), - [anon_sym_DASH_EQ] = ACTIONS(3371), - [anon_sym_if] = ACTIONS(3373), - [anon_sym_match] = ACTIONS(3373), - [anon_sym_EQ_GT] = ACTIONS(3371), - [anon_sym_while] = ACTIONS(3373), - [anon_sym_for] = ACTIONS(3373), - [anon_sym_asyncfor] = ACTIONS(3371), - [anon_sym_transform] = ACTIONS(3373), - [anon_sym_filter] = ACTIONS(3373), - [anon_sym_find] = ACTIONS(3373), - [anon_sym_remove] = ACTIONS(3373), - [anon_sym_reduce] = ACTIONS(3373), - [anon_sym_select] = ACTIONS(3373), - [anon_sym_insert] = ACTIONS(3373), - [anon_sym_async] = ACTIONS(3373), - [anon_sym_PIPE] = ACTIONS(3373), - [anon_sym_table] = ACTIONS(3373), - [anon_sym_assert] = ACTIONS(3373), - [anon_sym_assert_equal] = ACTIONS(3373), - [anon_sym_download] = ACTIONS(3373), - [anon_sym_help] = ACTIONS(3373), - [anon_sym_length] = ACTIONS(3373), - [anon_sym_output] = ACTIONS(3373), - [anon_sym_output_error] = ACTIONS(3373), - [anon_sym_type] = ACTIONS(3373), - [anon_sym_append] = ACTIONS(3373), - [anon_sym_metadata] = ACTIONS(3373), - [anon_sym_move] = ACTIONS(3373), - [anon_sym_read] = ACTIONS(3373), - [anon_sym_workdir] = ACTIONS(3373), - [anon_sym_write] = ACTIONS(3373), - [anon_sym_from_json] = ACTIONS(3373), - [anon_sym_to_json] = ACTIONS(3373), - [anon_sym_to_string] = ACTIONS(3373), - [anon_sym_to_float] = ACTIONS(3373), - [anon_sym_bash] = ACTIONS(3373), - [anon_sym_fish] = ACTIONS(3373), - [anon_sym_raw] = ACTIONS(3373), - [anon_sym_sh] = ACTIONS(3373), - [anon_sym_zsh] = ACTIONS(3373), - [anon_sym_random] = ACTIONS(3373), - [anon_sym_random_boolean] = ACTIONS(3373), - [anon_sym_random_float] = ACTIONS(3373), - [anon_sym_random_integer] = ACTIONS(3373), - [anon_sym_columns] = ACTIONS(3373), - [anon_sym_rows] = ACTIONS(3373), - [anon_sym_reverse] = ACTIONS(3373), - }, - [689] = { - [ts_builtin_sym_end] = ACTIONS(3359), - [sym_identifier] = ACTIONS(3361), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3359), - [anon_sym_RBRACE] = ACTIONS(3359), - [anon_sym_SEMI] = ACTIONS(3359), - [anon_sym_LPAREN] = ACTIONS(3359), - [anon_sym_RPAREN] = ACTIONS(3359), - [anon_sym_COMMA] = ACTIONS(3359), - [sym_integer] = ACTIONS(3361), - [sym_float] = ACTIONS(3359), - [sym_string] = ACTIONS(3359), - [anon_sym_true] = ACTIONS(3361), - [anon_sym_false] = ACTIONS(3361), - [anon_sym_LBRACK] = ACTIONS(3359), - [anon_sym_RBRACK] = ACTIONS(3359), - [anon_sym_EQ] = ACTIONS(3361), - [anon_sym_COLON] = ACTIONS(3359), - [anon_sym_DOT_DOT] = ACTIONS(3359), - [anon_sym_PLUS] = ACTIONS(3361), - [anon_sym_DASH] = ACTIONS(3361), - [anon_sym_STAR] = ACTIONS(3359), - [anon_sym_SLASH] = ACTIONS(3359), - [anon_sym_PERCENT] = ACTIONS(3359), - [anon_sym_EQ_EQ] = ACTIONS(3359), - [anon_sym_BANG_EQ] = ACTIONS(3359), - [anon_sym_AMP_AMP] = ACTIONS(3359), - [anon_sym_PIPE_PIPE] = ACTIONS(3359), - [anon_sym_GT] = ACTIONS(3361), - [anon_sym_LT] = ACTIONS(3361), - [anon_sym_GT_EQ] = ACTIONS(3359), - [anon_sym_LT_EQ] = ACTIONS(3359), - [anon_sym_PLUS_EQ] = ACTIONS(3359), - [anon_sym_DASH_EQ] = ACTIONS(3359), - [anon_sym_if] = ACTIONS(3361), - [anon_sym_match] = ACTIONS(3361), - [anon_sym_EQ_GT] = ACTIONS(3359), - [anon_sym_while] = ACTIONS(3361), - [anon_sym_for] = ACTIONS(3361), - [anon_sym_asyncfor] = ACTIONS(3359), - [anon_sym_transform] = ACTIONS(3361), - [anon_sym_filter] = ACTIONS(3361), - [anon_sym_find] = ACTIONS(3361), - [anon_sym_remove] = ACTIONS(3361), - [anon_sym_reduce] = ACTIONS(3361), - [anon_sym_select] = ACTIONS(3361), - [anon_sym_insert] = ACTIONS(3361), - [anon_sym_async] = ACTIONS(3361), - [anon_sym_PIPE] = ACTIONS(3361), - [anon_sym_table] = ACTIONS(3361), - [anon_sym_assert] = ACTIONS(3361), - [anon_sym_assert_equal] = ACTIONS(3361), - [anon_sym_download] = ACTIONS(3361), - [anon_sym_help] = ACTIONS(3361), - [anon_sym_length] = ACTIONS(3361), - [anon_sym_output] = ACTIONS(3361), - [anon_sym_output_error] = ACTIONS(3361), - [anon_sym_type] = ACTIONS(3361), - [anon_sym_append] = ACTIONS(3361), - [anon_sym_metadata] = ACTIONS(3361), - [anon_sym_move] = ACTIONS(3361), - [anon_sym_read] = ACTIONS(3361), - [anon_sym_workdir] = ACTIONS(3361), - [anon_sym_write] = ACTIONS(3361), - [anon_sym_from_json] = ACTIONS(3361), - [anon_sym_to_json] = ACTIONS(3361), - [anon_sym_to_string] = ACTIONS(3361), - [anon_sym_to_float] = ACTIONS(3361), - [anon_sym_bash] = ACTIONS(3361), - [anon_sym_fish] = ACTIONS(3361), - [anon_sym_raw] = ACTIONS(3361), - [anon_sym_sh] = ACTIONS(3361), - [anon_sym_zsh] = ACTIONS(3361), - [anon_sym_random] = ACTIONS(3361), - [anon_sym_random_boolean] = ACTIONS(3361), - [anon_sym_random_float] = ACTIONS(3361), - [anon_sym_random_integer] = ACTIONS(3361), - [anon_sym_columns] = ACTIONS(3361), - [anon_sym_rows] = ACTIONS(3361), - [anon_sym_reverse] = ACTIONS(3361), - }, - [690] = { - [ts_builtin_sym_end] = ACTIONS(3355), - [sym_identifier] = ACTIONS(3357), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3355), - [anon_sym_RBRACE] = ACTIONS(3355), - [anon_sym_SEMI] = ACTIONS(3355), - [anon_sym_LPAREN] = ACTIONS(3355), - [anon_sym_RPAREN] = ACTIONS(3355), - [anon_sym_COMMA] = ACTIONS(3355), - [sym_integer] = ACTIONS(3357), - [sym_float] = ACTIONS(3355), - [sym_string] = ACTIONS(3355), - [anon_sym_true] = ACTIONS(3357), - [anon_sym_false] = ACTIONS(3357), - [anon_sym_LBRACK] = ACTIONS(3355), - [anon_sym_RBRACK] = ACTIONS(3355), - [anon_sym_EQ] = ACTIONS(3357), - [anon_sym_COLON] = ACTIONS(3355), - [anon_sym_DOT_DOT] = ACTIONS(3355), - [anon_sym_PLUS] = ACTIONS(3357), - [anon_sym_DASH] = ACTIONS(3357), - [anon_sym_STAR] = ACTIONS(3355), - [anon_sym_SLASH] = ACTIONS(3355), - [anon_sym_PERCENT] = ACTIONS(3355), - [anon_sym_EQ_EQ] = ACTIONS(3355), - [anon_sym_BANG_EQ] = ACTIONS(3355), - [anon_sym_AMP_AMP] = ACTIONS(3355), - [anon_sym_PIPE_PIPE] = ACTIONS(3355), - [anon_sym_GT] = ACTIONS(3357), - [anon_sym_LT] = ACTIONS(3357), - [anon_sym_GT_EQ] = ACTIONS(3355), - [anon_sym_LT_EQ] = ACTIONS(3355), - [anon_sym_PLUS_EQ] = ACTIONS(3355), - [anon_sym_DASH_EQ] = ACTIONS(3355), - [anon_sym_if] = ACTIONS(3357), - [anon_sym_match] = ACTIONS(3357), - [anon_sym_EQ_GT] = ACTIONS(3355), - [anon_sym_while] = ACTIONS(3357), - [anon_sym_for] = ACTIONS(3357), - [anon_sym_asyncfor] = ACTIONS(3355), - [anon_sym_transform] = ACTIONS(3357), - [anon_sym_filter] = ACTIONS(3357), - [anon_sym_find] = ACTIONS(3357), - [anon_sym_remove] = ACTIONS(3357), - [anon_sym_reduce] = ACTIONS(3357), - [anon_sym_select] = ACTIONS(3357), - [anon_sym_insert] = ACTIONS(3357), - [anon_sym_async] = ACTIONS(3357), - [anon_sym_PIPE] = ACTIONS(3357), - [anon_sym_table] = ACTIONS(3357), - [anon_sym_assert] = ACTIONS(3357), - [anon_sym_assert_equal] = ACTIONS(3357), - [anon_sym_download] = ACTIONS(3357), - [anon_sym_help] = ACTIONS(3357), - [anon_sym_length] = ACTIONS(3357), - [anon_sym_output] = ACTIONS(3357), - [anon_sym_output_error] = ACTIONS(3357), - [anon_sym_type] = ACTIONS(3357), - [anon_sym_append] = ACTIONS(3357), - [anon_sym_metadata] = ACTIONS(3357), - [anon_sym_move] = ACTIONS(3357), - [anon_sym_read] = ACTIONS(3357), - [anon_sym_workdir] = ACTIONS(3357), - [anon_sym_write] = ACTIONS(3357), - [anon_sym_from_json] = ACTIONS(3357), - [anon_sym_to_json] = ACTIONS(3357), - [anon_sym_to_string] = ACTIONS(3357), - [anon_sym_to_float] = ACTIONS(3357), - [anon_sym_bash] = ACTIONS(3357), - [anon_sym_fish] = ACTIONS(3357), - [anon_sym_raw] = ACTIONS(3357), - [anon_sym_sh] = ACTIONS(3357), - [anon_sym_zsh] = ACTIONS(3357), - [anon_sym_random] = ACTIONS(3357), - [anon_sym_random_boolean] = ACTIONS(3357), - [anon_sym_random_float] = ACTIONS(3357), - [anon_sym_random_integer] = ACTIONS(3357), - [anon_sym_columns] = ACTIONS(3357), - [anon_sym_rows] = ACTIONS(3357), - [anon_sym_reverse] = ACTIONS(3357), - }, - [691] = { - [ts_builtin_sym_end] = ACTIONS(3351), - [sym_identifier] = ACTIONS(3353), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3351), - [anon_sym_RBRACE] = ACTIONS(3351), - [anon_sym_SEMI] = ACTIONS(3351), - [anon_sym_LPAREN] = ACTIONS(3351), - [anon_sym_RPAREN] = ACTIONS(3351), - [anon_sym_COMMA] = ACTIONS(3351), - [sym_integer] = ACTIONS(3353), - [sym_float] = ACTIONS(3351), - [sym_string] = ACTIONS(3351), - [anon_sym_true] = ACTIONS(3353), - [anon_sym_false] = ACTIONS(3353), - [anon_sym_LBRACK] = ACTIONS(3351), - [anon_sym_RBRACK] = ACTIONS(3351), - [anon_sym_EQ] = ACTIONS(3353), - [anon_sym_COLON] = ACTIONS(3351), - [anon_sym_DOT_DOT] = ACTIONS(3351), - [anon_sym_PLUS] = ACTIONS(3353), - [anon_sym_DASH] = ACTIONS(3353), - [anon_sym_STAR] = ACTIONS(3351), - [anon_sym_SLASH] = ACTIONS(3351), - [anon_sym_PERCENT] = ACTIONS(3351), - [anon_sym_EQ_EQ] = ACTIONS(3351), - [anon_sym_BANG_EQ] = ACTIONS(3351), - [anon_sym_AMP_AMP] = ACTIONS(3351), - [anon_sym_PIPE_PIPE] = ACTIONS(3351), - [anon_sym_GT] = ACTIONS(3353), - [anon_sym_LT] = ACTIONS(3353), - [anon_sym_GT_EQ] = ACTIONS(3351), - [anon_sym_LT_EQ] = ACTIONS(3351), - [anon_sym_PLUS_EQ] = ACTIONS(3351), - [anon_sym_DASH_EQ] = ACTIONS(3351), - [anon_sym_if] = ACTIONS(3353), - [anon_sym_match] = ACTIONS(3353), - [anon_sym_EQ_GT] = ACTIONS(3351), - [anon_sym_while] = ACTIONS(3353), - [anon_sym_for] = ACTIONS(3353), - [anon_sym_asyncfor] = ACTIONS(3351), - [anon_sym_transform] = ACTIONS(3353), - [anon_sym_filter] = ACTIONS(3353), - [anon_sym_find] = ACTIONS(3353), - [anon_sym_remove] = ACTIONS(3353), - [anon_sym_reduce] = ACTIONS(3353), - [anon_sym_select] = ACTIONS(3353), - [anon_sym_insert] = ACTIONS(3353), - [anon_sym_async] = ACTIONS(3353), - [anon_sym_PIPE] = ACTIONS(3353), - [anon_sym_table] = ACTIONS(3353), - [anon_sym_assert] = ACTIONS(3353), - [anon_sym_assert_equal] = ACTIONS(3353), - [anon_sym_download] = ACTIONS(3353), - [anon_sym_help] = ACTIONS(3353), - [anon_sym_length] = ACTIONS(3353), - [anon_sym_output] = ACTIONS(3353), - [anon_sym_output_error] = ACTIONS(3353), - [anon_sym_type] = ACTIONS(3353), - [anon_sym_append] = ACTIONS(3353), - [anon_sym_metadata] = ACTIONS(3353), - [anon_sym_move] = ACTIONS(3353), - [anon_sym_read] = ACTIONS(3353), - [anon_sym_workdir] = ACTIONS(3353), - [anon_sym_write] = ACTIONS(3353), - [anon_sym_from_json] = ACTIONS(3353), - [anon_sym_to_json] = ACTIONS(3353), - [anon_sym_to_string] = ACTIONS(3353), - [anon_sym_to_float] = ACTIONS(3353), - [anon_sym_bash] = ACTIONS(3353), - [anon_sym_fish] = ACTIONS(3353), - [anon_sym_raw] = ACTIONS(3353), - [anon_sym_sh] = ACTIONS(3353), - [anon_sym_zsh] = ACTIONS(3353), - [anon_sym_random] = ACTIONS(3353), - [anon_sym_random_boolean] = ACTIONS(3353), - [anon_sym_random_float] = ACTIONS(3353), - [anon_sym_random_integer] = ACTIONS(3353), - [anon_sym_columns] = ACTIONS(3353), - [anon_sym_rows] = ACTIONS(3353), - [anon_sym_reverse] = ACTIONS(3353), - }, - [692] = { - [sym_expression] = STATE(966), - [sym__expression_kind] = STATE(986), - [aux_sym__expression_list] = STATE(697), - [sym_value] = STATE(986), - [sym_boolean] = STATE(981), - [sym_list] = STATE(981), - [sym_map] = STATE(981), - [sym_index] = STATE(986), - [sym_math] = STATE(986), - [sym_logic] = STATE(986), - [sym_identifier_list] = STATE(2055), - [sym_table] = STATE(981), - [sym_function] = STATE(981), - [sym_function_call] = STATE(986), - [sym__context_defined_function] = STATE(990), - [sym_built_in_function] = STATE(990), - [sym__built_in_function_name] = STATE(692), - [sym_identifier] = ACTIONS(3436), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3438), - [anon_sym_RBRACE] = ACTIONS(2473), - [anon_sym_SEMI] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(3440), - [anon_sym_COMMA] = ACTIONS(2473), - [sym_integer] = ACTIONS(3442), - [sym_float] = ACTIONS(3444), - [sym_string] = ACTIONS(3444), - [anon_sym_true] = ACTIONS(3446), - [anon_sym_false] = ACTIONS(3446), - [anon_sym_LBRACK] = ACTIONS(3448), - [anon_sym_EQ] = ACTIONS(2475), - [anon_sym_COLON] = ACTIONS(2473), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2473), - [anon_sym_SLASH] = ACTIONS(2473), - [anon_sym_PERCENT] = ACTIONS(2473), - [anon_sym_EQ_EQ] = ACTIONS(2473), - [anon_sym_BANG_EQ] = ACTIONS(2473), - [anon_sym_AMP_AMP] = ACTIONS(2473), - [anon_sym_PIPE_PIPE] = ACTIONS(2473), - [anon_sym_GT] = ACTIONS(2475), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_GT_EQ] = ACTIONS(2473), - [anon_sym_LT_EQ] = ACTIONS(2473), - [anon_sym_PLUS_EQ] = ACTIONS(2473), - [anon_sym_DASH_EQ] = ACTIONS(2473), - [anon_sym_EQ_GT] = ACTIONS(3523), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(3525), - [anon_sym_assert] = ACTIONS(3527), - [anon_sym_assert_equal] = ACTIONS(3527), - [anon_sym_download] = ACTIONS(3527), - [anon_sym_help] = ACTIONS(3527), - [anon_sym_length] = ACTIONS(3527), - [anon_sym_output] = ACTIONS(3527), - [anon_sym_output_error] = ACTIONS(3527), - [anon_sym_type] = ACTIONS(3527), - [anon_sym_append] = ACTIONS(3527), - [anon_sym_metadata] = ACTIONS(3527), - [anon_sym_move] = ACTIONS(3527), - [anon_sym_read] = ACTIONS(3527), - [anon_sym_workdir] = ACTIONS(3527), - [anon_sym_write] = ACTIONS(3527), - [anon_sym_from_json] = ACTIONS(3527), - [anon_sym_to_json] = ACTIONS(3527), - [anon_sym_to_string] = ACTIONS(3527), - [anon_sym_to_float] = ACTIONS(3527), - [anon_sym_bash] = ACTIONS(3527), - [anon_sym_fish] = ACTIONS(3527), - [anon_sym_raw] = ACTIONS(3527), - [anon_sym_sh] = ACTIONS(3527), - [anon_sym_zsh] = ACTIONS(3527), - [anon_sym_random] = ACTIONS(3527), - [anon_sym_random_boolean] = ACTIONS(3527), - [anon_sym_random_float] = ACTIONS(3527), - [anon_sym_random_integer] = ACTIONS(3527), - [anon_sym_columns] = ACTIONS(3527), - [anon_sym_rows] = ACTIONS(3527), - [anon_sym_reverse] = ACTIONS(3527), - }, - [693] = { - [sym_math_operator] = STATE(1455), - [sym_logic_operator] = STATE(1453), - [ts_builtin_sym_end] = ACTIONS(3248), - [sym_identifier] = ACTIONS(3250), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3248), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(3248), - [anon_sym_RPAREN] = ACTIONS(3248), - [sym_integer] = ACTIONS(3250), - [sym_float] = ACTIONS(3248), - [sym_string] = ACTIONS(3248), - [anon_sym_true] = ACTIONS(3250), - [anon_sym_false] = ACTIONS(3250), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_EQ] = ACTIONS(3250), - [anon_sym_COLON] = ACTIONS(3248), - [anon_sym_DOT_DOT] = ACTIONS(3529), - [anon_sym_PLUS] = ACTIONS(3250), - [anon_sym_DASH] = ACTIONS(3250), - [anon_sym_STAR] = ACTIONS(3248), - [anon_sym_SLASH] = ACTIONS(3248), - [anon_sym_PERCENT] = ACTIONS(3248), - [anon_sym_EQ_EQ] = ACTIONS(3248), - [anon_sym_BANG_EQ] = ACTIONS(3248), - [anon_sym_AMP_AMP] = ACTIONS(3248), - [anon_sym_PIPE_PIPE] = ACTIONS(3248), - [anon_sym_GT] = ACTIONS(3250), - [anon_sym_LT] = ACTIONS(3250), - [anon_sym_GT_EQ] = ACTIONS(3248), - [anon_sym_LT_EQ] = ACTIONS(3248), - [anon_sym_PLUS_EQ] = ACTIONS(3248), - [anon_sym_DASH_EQ] = ACTIONS(3248), - [anon_sym_if] = ACTIONS(3250), - [anon_sym_match] = ACTIONS(3250), - [anon_sym_EQ_GT] = ACTIONS(3248), - [anon_sym_while] = ACTIONS(3250), - [anon_sym_for] = ACTIONS(3250), - [anon_sym_asyncfor] = ACTIONS(3248), - [anon_sym_transform] = ACTIONS(3250), - [anon_sym_filter] = ACTIONS(3250), - [anon_sym_find] = ACTIONS(3250), - [anon_sym_remove] = ACTIONS(3250), - [anon_sym_reduce] = ACTIONS(3250), - [anon_sym_select] = ACTIONS(3250), - [anon_sym_insert] = ACTIONS(3250), - [anon_sym_async] = ACTIONS(3250), - [anon_sym_PIPE] = ACTIONS(3250), - [anon_sym_table] = ACTIONS(3250), - [anon_sym_assert] = ACTIONS(3250), - [anon_sym_assert_equal] = ACTIONS(3250), - [anon_sym_download] = ACTIONS(3250), - [anon_sym_help] = ACTIONS(3250), - [anon_sym_length] = ACTIONS(3250), - [anon_sym_output] = ACTIONS(3250), - [anon_sym_output_error] = ACTIONS(3250), - [anon_sym_type] = ACTIONS(3250), - [anon_sym_append] = ACTIONS(3250), - [anon_sym_metadata] = ACTIONS(3250), - [anon_sym_move] = ACTIONS(3250), - [anon_sym_read] = ACTIONS(3250), - [anon_sym_workdir] = ACTIONS(3250), - [anon_sym_write] = ACTIONS(3250), - [anon_sym_from_json] = ACTIONS(3250), - [anon_sym_to_json] = ACTIONS(3250), - [anon_sym_to_string] = ACTIONS(3250), - [anon_sym_to_float] = ACTIONS(3250), - [anon_sym_bash] = ACTIONS(3250), - [anon_sym_fish] = ACTIONS(3250), - [anon_sym_raw] = ACTIONS(3250), - [anon_sym_sh] = ACTIONS(3250), - [anon_sym_zsh] = ACTIONS(3250), - [anon_sym_random] = ACTIONS(3250), - [anon_sym_random_boolean] = ACTIONS(3250), - [anon_sym_random_float] = ACTIONS(3250), - [anon_sym_random_integer] = ACTIONS(3250), - [anon_sym_columns] = ACTIONS(3250), - [anon_sym_rows] = ACTIONS(3250), - [anon_sym_reverse] = ACTIONS(3250), - }, - [694] = { - [sym_math_operator] = STATE(1455), - [sym_logic_operator] = STATE(1453), - [ts_builtin_sym_end] = ACTIONS(3252), - [sym_identifier] = ACTIONS(3254), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3252), - [anon_sym_RBRACE] = ACTIONS(3252), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_LPAREN] = ACTIONS(3252), - [anon_sym_RPAREN] = ACTIONS(3252), - [sym_integer] = ACTIONS(3254), - [sym_float] = ACTIONS(3252), - [sym_string] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_EQ] = ACTIONS(3254), - [anon_sym_COLON] = ACTIONS(3252), - [anon_sym_DOT_DOT] = ACTIONS(3252), - [anon_sym_PLUS] = ACTIONS(3254), - [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_STAR] = ACTIONS(3252), - [anon_sym_SLASH] = ACTIONS(3252), - [anon_sym_PERCENT] = ACTIONS(3252), - [anon_sym_EQ_EQ] = ACTIONS(3252), - [anon_sym_BANG_EQ] = ACTIONS(3252), - [anon_sym_AMP_AMP] = ACTIONS(3252), - [anon_sym_PIPE_PIPE] = ACTIONS(3252), - [anon_sym_GT] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(3254), - [anon_sym_GT_EQ] = ACTIONS(3252), - [anon_sym_LT_EQ] = ACTIONS(3252), - [anon_sym_PLUS_EQ] = ACTIONS(3252), - [anon_sym_DASH_EQ] = ACTIONS(3252), - [anon_sym_if] = ACTIONS(3254), - [anon_sym_match] = ACTIONS(3254), - [anon_sym_EQ_GT] = ACTIONS(3252), - [anon_sym_while] = ACTIONS(3254), - [anon_sym_for] = ACTIONS(3254), - [anon_sym_asyncfor] = ACTIONS(3252), - [anon_sym_transform] = ACTIONS(3254), - [anon_sym_filter] = ACTIONS(3254), - [anon_sym_find] = ACTIONS(3254), - [anon_sym_remove] = ACTIONS(3254), - [anon_sym_reduce] = ACTIONS(3254), - [anon_sym_select] = ACTIONS(3254), - [anon_sym_insert] = ACTIONS(3254), - [anon_sym_async] = ACTIONS(3254), - [anon_sym_PIPE] = ACTIONS(3254), - [anon_sym_table] = ACTIONS(3254), - [anon_sym_assert] = ACTIONS(3254), - [anon_sym_assert_equal] = ACTIONS(3254), - [anon_sym_download] = ACTIONS(3254), - [anon_sym_help] = ACTIONS(3254), - [anon_sym_length] = ACTIONS(3254), - [anon_sym_output] = ACTIONS(3254), - [anon_sym_output_error] = ACTIONS(3254), - [anon_sym_type] = ACTIONS(3254), - [anon_sym_append] = ACTIONS(3254), - [anon_sym_metadata] = ACTIONS(3254), - [anon_sym_move] = ACTIONS(3254), - [anon_sym_read] = ACTIONS(3254), - [anon_sym_workdir] = ACTIONS(3254), - [anon_sym_write] = ACTIONS(3254), - [anon_sym_from_json] = ACTIONS(3254), - [anon_sym_to_json] = ACTIONS(3254), - [anon_sym_to_string] = ACTIONS(3254), - [anon_sym_to_float] = ACTIONS(3254), - [anon_sym_bash] = ACTIONS(3254), - [anon_sym_fish] = ACTIONS(3254), - [anon_sym_raw] = ACTIONS(3254), - [anon_sym_sh] = ACTIONS(3254), - [anon_sym_zsh] = ACTIONS(3254), - [anon_sym_random] = ACTIONS(3254), - [anon_sym_random_boolean] = ACTIONS(3254), - [anon_sym_random_float] = ACTIONS(3254), - [anon_sym_random_integer] = ACTIONS(3254), - [anon_sym_columns] = ACTIONS(3254), - [anon_sym_rows] = ACTIONS(3254), - [anon_sym_reverse] = ACTIONS(3254), - }, - [695] = { - [sym_expression] = STATE(966), - [sym__expression_kind] = STATE(986), - [aux_sym__expression_list] = STATE(698), - [sym_value] = STATE(986), - [sym_boolean] = STATE(981), - [sym_list] = STATE(981), - [sym_map] = STATE(981), - [sym_index] = STATE(986), - [sym_math] = STATE(986), - [sym_logic] = STATE(986), - [sym_identifier_list] = STATE(2055), - [sym_table] = STATE(981), - [sym_function] = STATE(981), - [sym_function_call] = STATE(986), - [sym__context_defined_function] = STATE(990), - [sym_built_in_function] = STATE(990), - [sym__built_in_function_name] = STATE(692), - [sym_identifier] = ACTIONS(3436), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3438), - [anon_sym_RBRACE] = ACTIONS(2477), - [anon_sym_SEMI] = ACTIONS(2477), - [anon_sym_LPAREN] = ACTIONS(3440), - [anon_sym_COMMA] = ACTIONS(2477), - [sym_integer] = ACTIONS(3442), - [sym_float] = ACTIONS(3444), - [sym_string] = ACTIONS(3444), - [anon_sym_true] = ACTIONS(3446), - [anon_sym_false] = ACTIONS(3446), - [anon_sym_LBRACK] = ACTIONS(3448), - [anon_sym_EQ] = ACTIONS(2479), - [anon_sym_COLON] = ACTIONS(2477), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2477), - [anon_sym_SLASH] = ACTIONS(2477), - [anon_sym_PERCENT] = ACTIONS(2477), - [anon_sym_EQ_EQ] = ACTIONS(2477), - [anon_sym_BANG_EQ] = ACTIONS(2477), - [anon_sym_AMP_AMP] = ACTIONS(2477), - [anon_sym_PIPE_PIPE] = ACTIONS(2477), - [anon_sym_GT] = ACTIONS(2479), - [anon_sym_LT] = ACTIONS(2479), - [anon_sym_GT_EQ] = ACTIONS(2477), - [anon_sym_LT_EQ] = ACTIONS(2477), - [anon_sym_PLUS_EQ] = ACTIONS(2477), - [anon_sym_DASH_EQ] = ACTIONS(2477), - [anon_sym_EQ_GT] = ACTIONS(3523), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(3525), - [anon_sym_assert] = ACTIONS(3527), - [anon_sym_assert_equal] = ACTIONS(3527), - [anon_sym_download] = ACTIONS(3527), - [anon_sym_help] = ACTIONS(3527), - [anon_sym_length] = ACTIONS(3527), - [anon_sym_output] = ACTIONS(3527), - [anon_sym_output_error] = ACTIONS(3527), - [anon_sym_type] = ACTIONS(3527), - [anon_sym_append] = ACTIONS(3527), - [anon_sym_metadata] = ACTIONS(3527), - [anon_sym_move] = ACTIONS(3527), - [anon_sym_read] = ACTIONS(3527), - [anon_sym_workdir] = ACTIONS(3527), - [anon_sym_write] = ACTIONS(3527), - [anon_sym_from_json] = ACTIONS(3527), - [anon_sym_to_json] = ACTIONS(3527), - [anon_sym_to_string] = ACTIONS(3527), - [anon_sym_to_float] = ACTIONS(3527), - [anon_sym_bash] = ACTIONS(3527), - [anon_sym_fish] = ACTIONS(3527), - [anon_sym_raw] = ACTIONS(3527), - [anon_sym_sh] = ACTIONS(3527), - [anon_sym_zsh] = ACTIONS(3527), - [anon_sym_random] = ACTIONS(3527), - [anon_sym_random_boolean] = ACTIONS(3527), - [anon_sym_random_float] = ACTIONS(3527), - [anon_sym_random_integer] = ACTIONS(3527), - [anon_sym_columns] = ACTIONS(3527), - [anon_sym_rows] = ACTIONS(3527), - [anon_sym_reverse] = ACTIONS(3527), - }, - [696] = { - [ts_builtin_sym_end] = ACTIONS(3333), - [sym_identifier] = ACTIONS(3335), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3333), - [anon_sym_RBRACE] = ACTIONS(3333), - [anon_sym_SEMI] = ACTIONS(3333), - [anon_sym_LPAREN] = ACTIONS(3333), - [anon_sym_RPAREN] = ACTIONS(3333), - [anon_sym_COMMA] = ACTIONS(3333), - [sym_integer] = ACTIONS(3335), - [sym_float] = ACTIONS(3333), - [sym_string] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_RBRACK] = ACTIONS(3333), - [anon_sym_EQ] = ACTIONS(3335), - [anon_sym_COLON] = ACTIONS(3333), - [anon_sym_DOT_DOT] = ACTIONS(3333), - [anon_sym_PLUS] = ACTIONS(3335), - [anon_sym_DASH] = ACTIONS(3335), - [anon_sym_STAR] = ACTIONS(3333), - [anon_sym_SLASH] = ACTIONS(3333), - [anon_sym_PERCENT] = ACTIONS(3333), - [anon_sym_EQ_EQ] = ACTIONS(3333), - [anon_sym_BANG_EQ] = ACTIONS(3333), - [anon_sym_AMP_AMP] = ACTIONS(3333), - [anon_sym_PIPE_PIPE] = ACTIONS(3333), - [anon_sym_GT] = ACTIONS(3335), - [anon_sym_LT] = ACTIONS(3335), - [anon_sym_GT_EQ] = ACTIONS(3333), - [anon_sym_LT_EQ] = ACTIONS(3333), - [anon_sym_PLUS_EQ] = ACTIONS(3333), - [anon_sym_DASH_EQ] = ACTIONS(3333), - [anon_sym_if] = ACTIONS(3335), - [anon_sym_match] = ACTIONS(3335), - [anon_sym_EQ_GT] = ACTIONS(3333), - [anon_sym_while] = ACTIONS(3335), - [anon_sym_for] = ACTIONS(3335), - [anon_sym_asyncfor] = ACTIONS(3333), - [anon_sym_transform] = ACTIONS(3335), - [anon_sym_filter] = ACTIONS(3335), - [anon_sym_find] = ACTIONS(3335), - [anon_sym_remove] = ACTIONS(3335), - [anon_sym_reduce] = ACTIONS(3335), - [anon_sym_select] = ACTIONS(3335), - [anon_sym_insert] = ACTIONS(3335), - [anon_sym_async] = ACTIONS(3335), - [anon_sym_PIPE] = ACTIONS(3335), - [anon_sym_table] = ACTIONS(3335), - [anon_sym_assert] = ACTIONS(3335), - [anon_sym_assert_equal] = ACTIONS(3335), - [anon_sym_download] = ACTIONS(3335), - [anon_sym_help] = ACTIONS(3335), - [anon_sym_length] = ACTIONS(3335), - [anon_sym_output] = ACTIONS(3335), - [anon_sym_output_error] = ACTIONS(3335), - [anon_sym_type] = ACTIONS(3335), - [anon_sym_append] = ACTIONS(3335), - [anon_sym_metadata] = ACTIONS(3335), - [anon_sym_move] = ACTIONS(3335), - [anon_sym_read] = ACTIONS(3335), - [anon_sym_workdir] = ACTIONS(3335), - [anon_sym_write] = ACTIONS(3335), - [anon_sym_from_json] = ACTIONS(3335), - [anon_sym_to_json] = ACTIONS(3335), - [anon_sym_to_string] = ACTIONS(3335), - [anon_sym_to_float] = ACTIONS(3335), - [anon_sym_bash] = ACTIONS(3335), - [anon_sym_fish] = ACTIONS(3335), - [anon_sym_raw] = ACTIONS(3335), - [anon_sym_sh] = ACTIONS(3335), - [anon_sym_zsh] = ACTIONS(3335), - [anon_sym_random] = ACTIONS(3335), - [anon_sym_random_boolean] = ACTIONS(3335), - [anon_sym_random_float] = ACTIONS(3335), - [anon_sym_random_integer] = ACTIONS(3335), - [anon_sym_columns] = ACTIONS(3335), - [anon_sym_rows] = ACTIONS(3335), - [anon_sym_reverse] = ACTIONS(3335), - }, - [697] = { - [sym_expression] = STATE(966), - [sym__expression_kind] = STATE(986), - [aux_sym__expression_list] = STATE(698), - [sym_value] = STATE(986), - [sym_boolean] = STATE(981), - [sym_list] = STATE(981), - [sym_map] = STATE(981), - [sym_index] = STATE(986), - [sym_math] = STATE(986), - [sym_logic] = STATE(986), - [sym_identifier_list] = STATE(2055), - [sym_table] = STATE(981), - [sym_function] = STATE(981), - [sym_function_call] = STATE(986), - [sym__context_defined_function] = STATE(990), - [sym_built_in_function] = STATE(990), - [sym__built_in_function_name] = STATE(692), - [sym_identifier] = ACTIONS(3436), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3438), - [anon_sym_RBRACE] = ACTIONS(2443), - [anon_sym_SEMI] = ACTIONS(2443), - [anon_sym_LPAREN] = ACTIONS(3440), - [anon_sym_COMMA] = ACTIONS(2443), - [sym_integer] = ACTIONS(3442), - [sym_float] = ACTIONS(3444), - [sym_string] = ACTIONS(3444), - [anon_sym_true] = ACTIONS(3446), - [anon_sym_false] = ACTIONS(3446), - [anon_sym_LBRACK] = ACTIONS(3448), - [anon_sym_EQ] = ACTIONS(2447), - [anon_sym_COLON] = ACTIONS(2443), - [anon_sym_PLUS] = ACTIONS(2447), - [anon_sym_DASH] = ACTIONS(2447), - [anon_sym_STAR] = ACTIONS(2443), - [anon_sym_SLASH] = ACTIONS(2443), - [anon_sym_PERCENT] = ACTIONS(2443), - [anon_sym_EQ_EQ] = ACTIONS(2443), - [anon_sym_BANG_EQ] = ACTIONS(2443), - [anon_sym_AMP_AMP] = ACTIONS(2443), - [anon_sym_PIPE_PIPE] = ACTIONS(2443), - [anon_sym_GT] = ACTIONS(2447), - [anon_sym_LT] = ACTIONS(2447), - [anon_sym_GT_EQ] = ACTIONS(2443), - [anon_sym_LT_EQ] = ACTIONS(2443), - [anon_sym_PLUS_EQ] = ACTIONS(2443), - [anon_sym_DASH_EQ] = ACTIONS(2443), - [anon_sym_EQ_GT] = ACTIONS(3523), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(3525), - [anon_sym_assert] = ACTIONS(3527), - [anon_sym_assert_equal] = ACTIONS(3527), - [anon_sym_download] = ACTIONS(3527), - [anon_sym_help] = ACTIONS(3527), - [anon_sym_length] = ACTIONS(3527), - [anon_sym_output] = ACTIONS(3527), - [anon_sym_output_error] = ACTIONS(3527), - [anon_sym_type] = ACTIONS(3527), - [anon_sym_append] = ACTIONS(3527), - [anon_sym_metadata] = ACTIONS(3527), - [anon_sym_move] = ACTIONS(3527), - [anon_sym_read] = ACTIONS(3527), - [anon_sym_workdir] = ACTIONS(3527), - [anon_sym_write] = ACTIONS(3527), - [anon_sym_from_json] = ACTIONS(3527), - [anon_sym_to_json] = ACTIONS(3527), - [anon_sym_to_string] = ACTIONS(3527), - [anon_sym_to_float] = ACTIONS(3527), - [anon_sym_bash] = ACTIONS(3527), - [anon_sym_fish] = ACTIONS(3527), - [anon_sym_raw] = ACTIONS(3527), - [anon_sym_sh] = ACTIONS(3527), - [anon_sym_zsh] = ACTIONS(3527), - [anon_sym_random] = ACTIONS(3527), - [anon_sym_random_boolean] = ACTIONS(3527), - [anon_sym_random_float] = ACTIONS(3527), - [anon_sym_random_integer] = ACTIONS(3527), - [anon_sym_columns] = ACTIONS(3527), - [anon_sym_rows] = ACTIONS(3527), - [anon_sym_reverse] = ACTIONS(3527), - }, - [698] = { - [sym_expression] = STATE(966), - [sym__expression_kind] = STATE(986), - [aux_sym__expression_list] = STATE(698), - [sym_value] = STATE(986), - [sym_boolean] = STATE(981), - [sym_list] = STATE(981), - [sym_map] = STATE(981), - [sym_index] = STATE(986), - [sym_math] = STATE(986), - [sym_logic] = STATE(986), - [sym_identifier_list] = STATE(2055), - [sym_table] = STATE(981), - [sym_function] = STATE(981), - [sym_function_call] = STATE(986), - [sym__context_defined_function] = STATE(990), - [sym_built_in_function] = STATE(990), - [sym__built_in_function_name] = STATE(692), - [sym_identifier] = ACTIONS(3473), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3476), - [anon_sym_RBRACE] = ACTIONS(2518), - [anon_sym_SEMI] = ACTIONS(2518), - [anon_sym_LPAREN] = ACTIONS(3479), - [anon_sym_COMMA] = ACTIONS(2518), - [sym_integer] = ACTIONS(3482), - [sym_float] = ACTIONS(3485), - [sym_string] = ACTIONS(3485), - [anon_sym_true] = ACTIONS(3488), - [anon_sym_false] = ACTIONS(3488), - [anon_sym_LBRACK] = ACTIONS(3491), - [anon_sym_EQ] = ACTIONS(2541), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2541), - [anon_sym_DASH] = ACTIONS(2541), - [anon_sym_STAR] = ACTIONS(2518), - [anon_sym_SLASH] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_EQ_EQ] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_GT] = ACTIONS(2541), - [anon_sym_LT] = ACTIONS(2541), - [anon_sym_GT_EQ] = ACTIONS(2518), - [anon_sym_LT_EQ] = ACTIONS(2518), - [anon_sym_PLUS_EQ] = ACTIONS(2518), - [anon_sym_DASH_EQ] = ACTIONS(2518), - [anon_sym_EQ_GT] = ACTIONS(3531), - [anon_sym_PIPE] = ACTIONS(2546), - [anon_sym_table] = ACTIONS(3534), - [anon_sym_assert] = ACTIONS(3537), - [anon_sym_assert_equal] = ACTIONS(3537), - [anon_sym_download] = ACTIONS(3537), - [anon_sym_help] = ACTIONS(3537), - [anon_sym_length] = ACTIONS(3537), - [anon_sym_output] = ACTIONS(3537), - [anon_sym_output_error] = ACTIONS(3537), - [anon_sym_type] = ACTIONS(3537), - [anon_sym_append] = ACTIONS(3537), - [anon_sym_metadata] = ACTIONS(3537), - [anon_sym_move] = ACTIONS(3537), - [anon_sym_read] = ACTIONS(3537), - [anon_sym_workdir] = ACTIONS(3537), - [anon_sym_write] = ACTIONS(3537), - [anon_sym_from_json] = ACTIONS(3537), - [anon_sym_to_json] = ACTIONS(3537), - [anon_sym_to_string] = ACTIONS(3537), - [anon_sym_to_float] = ACTIONS(3537), - [anon_sym_bash] = ACTIONS(3537), - [anon_sym_fish] = ACTIONS(3537), - [anon_sym_raw] = ACTIONS(3537), - [anon_sym_sh] = ACTIONS(3537), - [anon_sym_zsh] = ACTIONS(3537), - [anon_sym_random] = ACTIONS(3537), - [anon_sym_random_boolean] = ACTIONS(3537), - [anon_sym_random_float] = ACTIONS(3537), - [anon_sym_random_integer] = ACTIONS(3537), - [anon_sym_columns] = ACTIONS(3537), - [anon_sym_rows] = ACTIONS(3537), - [anon_sym_reverse] = ACTIONS(3537), - }, - [699] = { - [ts_builtin_sym_end] = ACTIONS(3275), - [sym_identifier] = ACTIONS(3277), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3275), - [anon_sym_RBRACE] = ACTIONS(3275), - [anon_sym_SEMI] = ACTIONS(3315), - [anon_sym_LPAREN] = ACTIONS(3275), - [anon_sym_RPAREN] = ACTIONS(3275), - [anon_sym_COMMA] = ACTIONS(3275), - [sym_integer] = ACTIONS(3277), - [sym_float] = ACTIONS(3275), - [sym_string] = ACTIONS(3275), - [anon_sym_true] = ACTIONS(3277), - [anon_sym_false] = ACTIONS(3277), - [anon_sym_LBRACK] = ACTIONS(3275), - [anon_sym_RBRACK] = ACTIONS(3275), - [anon_sym_EQ] = ACTIONS(3277), - [anon_sym_COLON] = ACTIONS(3275), - [anon_sym_DOT_DOT] = ACTIONS(3275), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3275), - [anon_sym_SLASH] = ACTIONS(3275), - [anon_sym_PERCENT] = ACTIONS(3275), - [anon_sym_EQ_EQ] = ACTIONS(3275), - [anon_sym_BANG_EQ] = ACTIONS(3275), - [anon_sym_AMP_AMP] = ACTIONS(3275), - [anon_sym_PIPE_PIPE] = ACTIONS(3275), - [anon_sym_GT] = ACTIONS(3277), - [anon_sym_LT] = ACTIONS(3277), - [anon_sym_GT_EQ] = ACTIONS(3275), - [anon_sym_LT_EQ] = ACTIONS(3275), - [anon_sym_PLUS_EQ] = ACTIONS(3275), - [anon_sym_DASH_EQ] = ACTIONS(3275), - [anon_sym_if] = ACTIONS(3277), - [anon_sym_match] = ACTIONS(3277), - [anon_sym_EQ_GT] = ACTIONS(3275), - [anon_sym_while] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3277), - [anon_sym_asyncfor] = ACTIONS(3275), - [anon_sym_transform] = ACTIONS(3277), - [anon_sym_filter] = ACTIONS(3277), - [anon_sym_find] = ACTIONS(3277), - [anon_sym_remove] = ACTIONS(3277), - [anon_sym_reduce] = ACTIONS(3277), - [anon_sym_select] = ACTIONS(3277), - [anon_sym_insert] = ACTIONS(3277), - [anon_sym_async] = ACTIONS(3277), - [anon_sym_PIPE] = ACTIONS(3277), - [anon_sym_table] = ACTIONS(3277), - [anon_sym_assert] = ACTIONS(3277), - [anon_sym_assert_equal] = ACTIONS(3277), - [anon_sym_download] = ACTIONS(3277), - [anon_sym_help] = ACTIONS(3277), - [anon_sym_length] = ACTIONS(3277), - [anon_sym_output] = ACTIONS(3277), - [anon_sym_output_error] = ACTIONS(3277), - [anon_sym_type] = ACTIONS(3277), - [anon_sym_append] = ACTIONS(3277), - [anon_sym_metadata] = ACTIONS(3277), - [anon_sym_move] = ACTIONS(3277), - [anon_sym_read] = ACTIONS(3277), - [anon_sym_workdir] = ACTIONS(3277), - [anon_sym_write] = ACTIONS(3277), - [anon_sym_from_json] = ACTIONS(3277), - [anon_sym_to_json] = ACTIONS(3277), - [anon_sym_to_string] = ACTIONS(3277), - [anon_sym_to_float] = ACTIONS(3277), - [anon_sym_bash] = ACTIONS(3277), - [anon_sym_fish] = ACTIONS(3277), - [anon_sym_raw] = ACTIONS(3277), - [anon_sym_sh] = ACTIONS(3277), - [anon_sym_zsh] = ACTIONS(3277), - [anon_sym_random] = ACTIONS(3277), - [anon_sym_random_boolean] = ACTIONS(3277), - [anon_sym_random_float] = ACTIONS(3277), - [anon_sym_random_integer] = ACTIONS(3277), - [anon_sym_columns] = ACTIONS(3277), - [anon_sym_rows] = ACTIONS(3277), - [anon_sym_reverse] = ACTIONS(3277), - }, - [700] = { - [sym_math_operator] = STATE(1322), - [sym_logic_operator] = STATE(1321), - [ts_builtin_sym_end] = ACTIONS(3281), - [sym_identifier] = ACTIONS(3283), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3281), - [anon_sym_RBRACE] = ACTIONS(3281), - [anon_sym_SEMI] = ACTIONS(3281), - [anon_sym_LPAREN] = ACTIONS(3281), - [anon_sym_RPAREN] = ACTIONS(3281), - [anon_sym_COMMA] = ACTIONS(3281), - [sym_integer] = ACTIONS(3283), - [sym_float] = ACTIONS(3281), - [sym_string] = ACTIONS(3281), - [anon_sym_true] = ACTIONS(3283), - [anon_sym_false] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3281), - [anon_sym_RBRACK] = ACTIONS(3281), - [anon_sym_COLON] = ACTIONS(625), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(3283), - [anon_sym_elseif] = ACTIONS(3281), - [anon_sym_else] = ACTIONS(3283), - [anon_sym_match] = ACTIONS(3283), - [anon_sym_EQ_GT] = ACTIONS(3281), - [anon_sym_while] = ACTIONS(3283), - [anon_sym_for] = ACTIONS(3283), - [anon_sym_asyncfor] = ACTIONS(3281), - [anon_sym_transform] = ACTIONS(3283), - [anon_sym_filter] = ACTIONS(3283), - [anon_sym_find] = ACTIONS(3283), - [anon_sym_remove] = ACTIONS(3283), - [anon_sym_reduce] = ACTIONS(3283), - [anon_sym_select] = ACTIONS(3283), - [anon_sym_insert] = ACTIONS(3283), - [anon_sym_async] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(3283), - [anon_sym_table] = ACTIONS(3283), - [anon_sym_assert] = ACTIONS(3283), - [anon_sym_assert_equal] = ACTIONS(3283), - [anon_sym_download] = ACTIONS(3283), - [anon_sym_help] = ACTIONS(3283), - [anon_sym_length] = ACTIONS(3283), - [anon_sym_output] = ACTIONS(3283), - [anon_sym_output_error] = ACTIONS(3283), - [anon_sym_type] = ACTIONS(3283), - [anon_sym_append] = ACTIONS(3283), - [anon_sym_metadata] = ACTIONS(3283), - [anon_sym_move] = ACTIONS(3283), - [anon_sym_read] = ACTIONS(3283), - [anon_sym_workdir] = ACTIONS(3283), - [anon_sym_write] = ACTIONS(3283), - [anon_sym_from_json] = ACTIONS(3283), - [anon_sym_to_json] = ACTIONS(3283), - [anon_sym_to_string] = ACTIONS(3283), - [anon_sym_to_float] = ACTIONS(3283), - [anon_sym_bash] = ACTIONS(3283), - [anon_sym_fish] = ACTIONS(3283), - [anon_sym_raw] = ACTIONS(3283), - [anon_sym_sh] = ACTIONS(3283), - [anon_sym_zsh] = ACTIONS(3283), - [anon_sym_random] = ACTIONS(3283), - [anon_sym_random_boolean] = ACTIONS(3283), - [anon_sym_random_float] = ACTIONS(3283), - [anon_sym_random_integer] = ACTIONS(3283), - [anon_sym_columns] = ACTIONS(3283), - [anon_sym_rows] = ACTIONS(3283), - [anon_sym_reverse] = ACTIONS(3283), - }, - [701] = { - [sym_math_operator] = STATE(1455), - [sym_logic_operator] = STATE(1453), - [ts_builtin_sym_end] = ACTIONS(3275), - [sym_identifier] = ACTIONS(3277), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3275), - [anon_sym_RBRACE] = ACTIONS(3275), - [anon_sym_SEMI] = ACTIONS(3315), - [anon_sym_LPAREN] = ACTIONS(3275), - [anon_sym_RPAREN] = ACTIONS(3275), - [sym_integer] = ACTIONS(3277), - [sym_float] = ACTIONS(3275), - [sym_string] = ACTIONS(3275), - [anon_sym_true] = ACTIONS(3277), - [anon_sym_false] = ACTIONS(3277), - [anon_sym_LBRACK] = ACTIONS(3275), - [anon_sym_EQ] = ACTIONS(3277), - [anon_sym_COLON] = ACTIONS(495), - [anon_sym_DOT_DOT] = ACTIONS(3275), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_PLUS_EQ] = ACTIONS(3275), - [anon_sym_DASH_EQ] = ACTIONS(3275), - [anon_sym_if] = ACTIONS(3277), - [anon_sym_match] = ACTIONS(3277), - [anon_sym_EQ_GT] = ACTIONS(3275), - [anon_sym_while] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3277), - [anon_sym_asyncfor] = ACTIONS(3275), - [anon_sym_transform] = ACTIONS(3277), - [anon_sym_filter] = ACTIONS(3277), - [anon_sym_find] = ACTIONS(3277), - [anon_sym_remove] = ACTIONS(3277), - [anon_sym_reduce] = ACTIONS(3277), - [anon_sym_select] = ACTIONS(3277), - [anon_sym_insert] = ACTIONS(3277), - [anon_sym_async] = ACTIONS(3277), - [anon_sym_PIPE] = ACTIONS(3277), - [anon_sym_table] = ACTIONS(3277), - [anon_sym_assert] = ACTIONS(3277), - [anon_sym_assert_equal] = ACTIONS(3277), - [anon_sym_download] = ACTIONS(3277), - [anon_sym_help] = ACTIONS(3277), - [anon_sym_length] = ACTIONS(3277), - [anon_sym_output] = ACTIONS(3277), - [anon_sym_output_error] = ACTIONS(3277), - [anon_sym_type] = ACTIONS(3277), - [anon_sym_append] = ACTIONS(3277), - [anon_sym_metadata] = ACTIONS(3277), - [anon_sym_move] = ACTIONS(3277), - [anon_sym_read] = ACTIONS(3277), - [anon_sym_workdir] = ACTIONS(3277), - [anon_sym_write] = ACTIONS(3277), - [anon_sym_from_json] = ACTIONS(3277), - [anon_sym_to_json] = ACTIONS(3277), - [anon_sym_to_string] = ACTIONS(3277), - [anon_sym_to_float] = ACTIONS(3277), - [anon_sym_bash] = ACTIONS(3277), - [anon_sym_fish] = ACTIONS(3277), - [anon_sym_raw] = ACTIONS(3277), - [anon_sym_sh] = ACTIONS(3277), - [anon_sym_zsh] = ACTIONS(3277), - [anon_sym_random] = ACTIONS(3277), - [anon_sym_random_boolean] = ACTIONS(3277), - [anon_sym_random_float] = ACTIONS(3277), - [anon_sym_random_integer] = ACTIONS(3277), - [anon_sym_columns] = ACTIONS(3277), - [anon_sym_rows] = ACTIONS(3277), - [anon_sym_reverse] = ACTIONS(3277), - }, - [702] = { - [sym_math_operator] = STATE(1362), - [sym_logic_operator] = STATE(1363), - [ts_builtin_sym_end] = ACTIONS(3233), - [sym_identifier] = ACTIONS(3235), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3233), - [anon_sym_RBRACE] = ACTIONS(3233), - [anon_sym_SEMI] = ACTIONS(3233), - [anon_sym_LPAREN] = ACTIONS(3233), - [anon_sym_RPAREN] = ACTIONS(3233), - [anon_sym_COMMA] = ACTIONS(3540), - [sym_integer] = ACTIONS(3235), - [sym_float] = ACTIONS(3233), - [sym_string] = ACTIONS(3233), - [anon_sym_true] = ACTIONS(3235), - [anon_sym_false] = ACTIONS(3235), - [anon_sym_LBRACK] = ACTIONS(3233), - [anon_sym_COLON] = ACTIONS(243), - [anon_sym_DOT_DOT] = ACTIONS(3233), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(3235), - [anon_sym_elseif] = ACTIONS(3233), - [anon_sym_else] = ACTIONS(3235), - [anon_sym_match] = ACTIONS(3235), - [anon_sym_EQ_GT] = ACTIONS(3233), - [anon_sym_while] = ACTIONS(3235), - [anon_sym_for] = ACTIONS(3235), - [anon_sym_asyncfor] = ACTIONS(3233), - [anon_sym_transform] = ACTIONS(3235), - [anon_sym_filter] = ACTIONS(3235), - [anon_sym_find] = ACTIONS(3235), - [anon_sym_remove] = ACTIONS(3235), - [anon_sym_reduce] = ACTIONS(3235), - [anon_sym_select] = ACTIONS(3235), - [anon_sym_insert] = ACTIONS(3235), - [anon_sym_async] = ACTIONS(3235), - [anon_sym_PIPE] = ACTIONS(3235), - [anon_sym_table] = ACTIONS(3235), - [anon_sym_assert] = ACTIONS(3235), - [anon_sym_assert_equal] = ACTIONS(3235), - [anon_sym_download] = ACTIONS(3235), - [anon_sym_help] = ACTIONS(3235), - [anon_sym_length] = ACTIONS(3235), - [anon_sym_output] = ACTIONS(3235), - [anon_sym_output_error] = ACTIONS(3235), - [anon_sym_type] = ACTIONS(3235), - [anon_sym_append] = ACTIONS(3235), - [anon_sym_metadata] = ACTIONS(3235), - [anon_sym_move] = ACTIONS(3235), - [anon_sym_read] = ACTIONS(3235), - [anon_sym_workdir] = ACTIONS(3235), - [anon_sym_write] = ACTIONS(3235), - [anon_sym_from_json] = ACTIONS(3235), - [anon_sym_to_json] = ACTIONS(3235), - [anon_sym_to_string] = ACTIONS(3235), - [anon_sym_to_float] = ACTIONS(3235), - [anon_sym_bash] = ACTIONS(3235), - [anon_sym_fish] = ACTIONS(3235), - [anon_sym_raw] = ACTIONS(3235), - [anon_sym_sh] = ACTIONS(3235), - [anon_sym_zsh] = ACTIONS(3235), - [anon_sym_random] = ACTIONS(3235), - [anon_sym_random_boolean] = ACTIONS(3235), - [anon_sym_random_float] = ACTIONS(3235), - [anon_sym_random_integer] = ACTIONS(3235), - [anon_sym_columns] = ACTIONS(3235), - [anon_sym_rows] = ACTIONS(3235), - [anon_sym_reverse] = ACTIONS(3235), - }, - [703] = { - [ts_builtin_sym_end] = ACTIONS(3389), - [sym_identifier] = ACTIONS(3391), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3389), - [anon_sym_RBRACE] = ACTIONS(3389), - [anon_sym_SEMI] = ACTIONS(3389), - [anon_sym_LPAREN] = ACTIONS(3389), - [anon_sym_RPAREN] = ACTIONS(3389), - [anon_sym_COMMA] = ACTIONS(3389), - [sym_integer] = ACTIONS(3391), - [sym_float] = ACTIONS(3389), - [sym_string] = ACTIONS(3389), - [anon_sym_true] = ACTIONS(3391), - [anon_sym_false] = ACTIONS(3391), - [anon_sym_LBRACK] = ACTIONS(3389), - [anon_sym_RBRACK] = ACTIONS(3389), - [anon_sym_EQ] = ACTIONS(3391), - [anon_sym_COLON] = ACTIONS(3389), - [anon_sym_DOT_DOT] = ACTIONS(3389), - [anon_sym_PLUS] = ACTIONS(3391), - [anon_sym_DASH] = ACTIONS(3391), - [anon_sym_STAR] = ACTIONS(3389), - [anon_sym_SLASH] = ACTIONS(3389), - [anon_sym_PERCENT] = ACTIONS(3389), - [anon_sym_EQ_EQ] = ACTIONS(3389), - [anon_sym_BANG_EQ] = ACTIONS(3389), - [anon_sym_AMP_AMP] = ACTIONS(3389), - [anon_sym_PIPE_PIPE] = ACTIONS(3389), - [anon_sym_GT] = ACTIONS(3391), - [anon_sym_LT] = ACTIONS(3391), - [anon_sym_GT_EQ] = ACTIONS(3389), - [anon_sym_LT_EQ] = ACTIONS(3389), - [anon_sym_PLUS_EQ] = ACTIONS(3389), - [anon_sym_DASH_EQ] = ACTIONS(3389), - [anon_sym_if] = ACTIONS(3391), - [anon_sym_match] = ACTIONS(3391), - [anon_sym_EQ_GT] = ACTIONS(3389), - [anon_sym_while] = ACTIONS(3391), - [anon_sym_for] = ACTIONS(3391), - [anon_sym_asyncfor] = ACTIONS(3389), - [anon_sym_transform] = ACTIONS(3391), - [anon_sym_filter] = ACTIONS(3391), - [anon_sym_find] = ACTIONS(3391), - [anon_sym_remove] = ACTIONS(3391), - [anon_sym_reduce] = ACTIONS(3391), - [anon_sym_select] = ACTIONS(3391), - [anon_sym_insert] = ACTIONS(3391), - [anon_sym_async] = ACTIONS(3391), - [anon_sym_PIPE] = ACTIONS(3391), - [anon_sym_table] = ACTIONS(3391), - [anon_sym_assert] = ACTIONS(3391), - [anon_sym_assert_equal] = ACTIONS(3391), - [anon_sym_download] = ACTIONS(3391), - [anon_sym_help] = ACTIONS(3391), - [anon_sym_length] = ACTIONS(3391), - [anon_sym_output] = ACTIONS(3391), - [anon_sym_output_error] = ACTIONS(3391), - [anon_sym_type] = ACTIONS(3391), - [anon_sym_append] = ACTIONS(3391), - [anon_sym_metadata] = ACTIONS(3391), - [anon_sym_move] = ACTIONS(3391), - [anon_sym_read] = ACTIONS(3391), - [anon_sym_workdir] = ACTIONS(3391), - [anon_sym_write] = ACTIONS(3391), - [anon_sym_from_json] = ACTIONS(3391), - [anon_sym_to_json] = ACTIONS(3391), - [anon_sym_to_string] = ACTIONS(3391), - [anon_sym_to_float] = ACTIONS(3391), - [anon_sym_bash] = ACTIONS(3391), - [anon_sym_fish] = ACTIONS(3391), - [anon_sym_raw] = ACTIONS(3391), - [anon_sym_sh] = ACTIONS(3391), - [anon_sym_zsh] = ACTIONS(3391), - [anon_sym_random] = ACTIONS(3391), - [anon_sym_random_boolean] = ACTIONS(3391), - [anon_sym_random_float] = ACTIONS(3391), - [anon_sym_random_integer] = ACTIONS(3391), - [anon_sym_columns] = ACTIONS(3391), - [anon_sym_rows] = ACTIONS(3391), - [anon_sym_reverse] = ACTIONS(3391), - }, - [704] = { - [ts_builtin_sym_end] = ACTIONS(3321), - [sym_identifier] = ACTIONS(3323), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3321), - [anon_sym_RBRACE] = ACTIONS(3321), - [anon_sym_SEMI] = ACTIONS(3321), - [anon_sym_LPAREN] = ACTIONS(3321), - [anon_sym_RPAREN] = ACTIONS(3321), - [anon_sym_COMMA] = ACTIONS(3321), - [sym_integer] = ACTIONS(3323), - [sym_float] = ACTIONS(3321), - [sym_string] = ACTIONS(3321), - [anon_sym_true] = ACTIONS(3323), - [anon_sym_false] = ACTIONS(3323), - [anon_sym_LBRACK] = ACTIONS(3321), - [anon_sym_RBRACK] = ACTIONS(3321), - [anon_sym_EQ] = ACTIONS(3323), - [anon_sym_COLON] = ACTIONS(3321), - [anon_sym_DOT_DOT] = ACTIONS(3321), - [anon_sym_PLUS] = ACTIONS(3323), - [anon_sym_DASH] = ACTIONS(3323), - [anon_sym_STAR] = ACTIONS(3321), - [anon_sym_SLASH] = ACTIONS(3321), - [anon_sym_PERCENT] = ACTIONS(3321), - [anon_sym_EQ_EQ] = ACTIONS(3321), - [anon_sym_BANG_EQ] = ACTIONS(3321), - [anon_sym_AMP_AMP] = ACTIONS(3321), - [anon_sym_PIPE_PIPE] = ACTIONS(3321), - [anon_sym_GT] = ACTIONS(3323), - [anon_sym_LT] = ACTIONS(3323), - [anon_sym_GT_EQ] = ACTIONS(3321), - [anon_sym_LT_EQ] = ACTIONS(3321), - [anon_sym_PLUS_EQ] = ACTIONS(3321), - [anon_sym_DASH_EQ] = ACTIONS(3321), - [anon_sym_if] = ACTIONS(3323), - [anon_sym_match] = ACTIONS(3323), - [anon_sym_EQ_GT] = ACTIONS(3321), - [anon_sym_while] = ACTIONS(3323), - [anon_sym_for] = ACTIONS(3323), - [anon_sym_asyncfor] = ACTIONS(3321), - [anon_sym_transform] = ACTIONS(3323), - [anon_sym_filter] = ACTIONS(3323), - [anon_sym_find] = ACTIONS(3323), - [anon_sym_remove] = ACTIONS(3323), - [anon_sym_reduce] = ACTIONS(3323), - [anon_sym_select] = ACTIONS(3323), - [anon_sym_insert] = ACTIONS(3323), - [anon_sym_async] = ACTIONS(3323), - [anon_sym_PIPE] = ACTIONS(3323), - [anon_sym_table] = ACTIONS(3323), - [anon_sym_assert] = ACTIONS(3323), - [anon_sym_assert_equal] = ACTIONS(3323), - [anon_sym_download] = ACTIONS(3323), - [anon_sym_help] = ACTIONS(3323), - [anon_sym_length] = ACTIONS(3323), - [anon_sym_output] = ACTIONS(3323), - [anon_sym_output_error] = ACTIONS(3323), - [anon_sym_type] = ACTIONS(3323), - [anon_sym_append] = ACTIONS(3323), - [anon_sym_metadata] = ACTIONS(3323), - [anon_sym_move] = ACTIONS(3323), - [anon_sym_read] = ACTIONS(3323), - [anon_sym_workdir] = ACTIONS(3323), - [anon_sym_write] = ACTIONS(3323), - [anon_sym_from_json] = ACTIONS(3323), - [anon_sym_to_json] = ACTIONS(3323), - [anon_sym_to_string] = ACTIONS(3323), - [anon_sym_to_float] = ACTIONS(3323), - [anon_sym_bash] = ACTIONS(3323), - [anon_sym_fish] = ACTIONS(3323), - [anon_sym_raw] = ACTIONS(3323), - [anon_sym_sh] = ACTIONS(3323), - [anon_sym_zsh] = ACTIONS(3323), - [anon_sym_random] = ACTIONS(3323), - [anon_sym_random_boolean] = ACTIONS(3323), - [anon_sym_random_float] = ACTIONS(3323), - [anon_sym_random_integer] = ACTIONS(3323), - [anon_sym_columns] = ACTIONS(3323), - [anon_sym_rows] = ACTIONS(3323), - [anon_sym_reverse] = ACTIONS(3323), - }, - [705] = { - [ts_builtin_sym_end] = ACTIONS(3363), - [sym_identifier] = ACTIONS(3365), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3363), - [anon_sym_RBRACE] = ACTIONS(3363), - [anon_sym_SEMI] = ACTIONS(3363), - [anon_sym_LPAREN] = ACTIONS(3363), - [anon_sym_RPAREN] = ACTIONS(3363), - [anon_sym_COMMA] = ACTIONS(3363), - [sym_integer] = ACTIONS(3365), - [sym_float] = ACTIONS(3363), - [sym_string] = ACTIONS(3363), - [anon_sym_true] = ACTIONS(3365), - [anon_sym_false] = ACTIONS(3365), - [anon_sym_LBRACK] = ACTIONS(3363), - [anon_sym_RBRACK] = ACTIONS(3363), - [anon_sym_EQ] = ACTIONS(3365), - [anon_sym_COLON] = ACTIONS(3363), - [anon_sym_DOT_DOT] = ACTIONS(3363), - [anon_sym_PLUS] = ACTIONS(3365), - [anon_sym_DASH] = ACTIONS(3365), - [anon_sym_STAR] = ACTIONS(3363), - [anon_sym_SLASH] = ACTIONS(3363), - [anon_sym_PERCENT] = ACTIONS(3363), - [anon_sym_EQ_EQ] = ACTIONS(3363), - [anon_sym_BANG_EQ] = ACTIONS(3363), - [anon_sym_AMP_AMP] = ACTIONS(3363), - [anon_sym_PIPE_PIPE] = ACTIONS(3363), - [anon_sym_GT] = ACTIONS(3365), - [anon_sym_LT] = ACTIONS(3365), - [anon_sym_GT_EQ] = ACTIONS(3363), - [anon_sym_LT_EQ] = ACTIONS(3363), - [anon_sym_PLUS_EQ] = ACTIONS(3363), - [anon_sym_DASH_EQ] = ACTIONS(3363), - [anon_sym_if] = ACTIONS(3365), - [anon_sym_match] = ACTIONS(3365), - [anon_sym_EQ_GT] = ACTIONS(3363), - [anon_sym_while] = ACTIONS(3365), - [anon_sym_for] = ACTIONS(3365), - [anon_sym_asyncfor] = ACTIONS(3363), - [anon_sym_transform] = ACTIONS(3365), - [anon_sym_filter] = ACTIONS(3365), - [anon_sym_find] = ACTIONS(3365), - [anon_sym_remove] = ACTIONS(3365), - [anon_sym_reduce] = ACTIONS(3365), - [anon_sym_select] = ACTIONS(3365), - [anon_sym_insert] = ACTIONS(3365), - [anon_sym_async] = ACTIONS(3365), - [anon_sym_PIPE] = ACTIONS(3365), - [anon_sym_table] = ACTIONS(3365), - [anon_sym_assert] = ACTIONS(3365), - [anon_sym_assert_equal] = ACTIONS(3365), - [anon_sym_download] = ACTIONS(3365), - [anon_sym_help] = ACTIONS(3365), - [anon_sym_length] = ACTIONS(3365), - [anon_sym_output] = ACTIONS(3365), - [anon_sym_output_error] = ACTIONS(3365), - [anon_sym_type] = ACTIONS(3365), - [anon_sym_append] = ACTIONS(3365), - [anon_sym_metadata] = ACTIONS(3365), - [anon_sym_move] = ACTIONS(3365), - [anon_sym_read] = ACTIONS(3365), - [anon_sym_workdir] = ACTIONS(3365), - [anon_sym_write] = ACTIONS(3365), - [anon_sym_from_json] = ACTIONS(3365), - [anon_sym_to_json] = ACTIONS(3365), - [anon_sym_to_string] = ACTIONS(3365), - [anon_sym_to_float] = ACTIONS(3365), - [anon_sym_bash] = ACTIONS(3365), - [anon_sym_fish] = ACTIONS(3365), - [anon_sym_raw] = ACTIONS(3365), - [anon_sym_sh] = ACTIONS(3365), - [anon_sym_zsh] = ACTIONS(3365), - [anon_sym_random] = ACTIONS(3365), - [anon_sym_random_boolean] = ACTIONS(3365), - [anon_sym_random_float] = ACTIONS(3365), - [anon_sym_random_integer] = ACTIONS(3365), - [anon_sym_columns] = ACTIONS(3365), - [anon_sym_rows] = ACTIONS(3365), - [anon_sym_reverse] = ACTIONS(3365), - }, - [706] = { - [ts_builtin_sym_end] = ACTIONS(3401), - [sym_identifier] = ACTIONS(3403), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_RBRACE] = ACTIONS(3401), - [anon_sym_SEMI] = ACTIONS(3401), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_RPAREN] = ACTIONS(3401), - [anon_sym_COMMA] = ACTIONS(3401), - [sym_integer] = ACTIONS(3403), - [sym_float] = ACTIONS(3401), - [sym_string] = ACTIONS(3401), - [anon_sym_true] = ACTIONS(3403), - [anon_sym_false] = ACTIONS(3403), - [anon_sym_LBRACK] = ACTIONS(3401), - [anon_sym_RBRACK] = ACTIONS(3401), - [anon_sym_EQ] = ACTIONS(3403), - [anon_sym_COLON] = ACTIONS(3401), - [anon_sym_DOT_DOT] = ACTIONS(3401), - [anon_sym_PLUS] = ACTIONS(3403), - [anon_sym_DASH] = ACTIONS(3403), - [anon_sym_STAR] = ACTIONS(3401), - [anon_sym_SLASH] = ACTIONS(3401), - [anon_sym_PERCENT] = ACTIONS(3401), - [anon_sym_EQ_EQ] = ACTIONS(3401), - [anon_sym_BANG_EQ] = ACTIONS(3401), - [anon_sym_AMP_AMP] = ACTIONS(3401), - [anon_sym_PIPE_PIPE] = ACTIONS(3401), - [anon_sym_GT] = ACTIONS(3403), - [anon_sym_LT] = ACTIONS(3403), - [anon_sym_GT_EQ] = ACTIONS(3401), - [anon_sym_LT_EQ] = ACTIONS(3401), - [anon_sym_PLUS_EQ] = ACTIONS(3401), - [anon_sym_DASH_EQ] = ACTIONS(3401), - [anon_sym_if] = ACTIONS(3403), - [anon_sym_match] = ACTIONS(3403), - [anon_sym_EQ_GT] = ACTIONS(3401), - [anon_sym_while] = ACTIONS(3403), - [anon_sym_for] = ACTIONS(3403), - [anon_sym_asyncfor] = ACTIONS(3401), - [anon_sym_transform] = ACTIONS(3403), - [anon_sym_filter] = ACTIONS(3403), - [anon_sym_find] = ACTIONS(3403), - [anon_sym_remove] = ACTIONS(3403), - [anon_sym_reduce] = ACTIONS(3403), - [anon_sym_select] = ACTIONS(3403), - [anon_sym_insert] = ACTIONS(3403), - [anon_sym_async] = ACTIONS(3403), - [anon_sym_PIPE] = ACTIONS(3403), - [anon_sym_table] = ACTIONS(3403), - [anon_sym_assert] = ACTIONS(3403), - [anon_sym_assert_equal] = ACTIONS(3403), - [anon_sym_download] = ACTIONS(3403), - [anon_sym_help] = ACTIONS(3403), - [anon_sym_length] = ACTIONS(3403), - [anon_sym_output] = ACTIONS(3403), - [anon_sym_output_error] = ACTIONS(3403), - [anon_sym_type] = ACTIONS(3403), - [anon_sym_append] = ACTIONS(3403), - [anon_sym_metadata] = ACTIONS(3403), - [anon_sym_move] = ACTIONS(3403), - [anon_sym_read] = ACTIONS(3403), - [anon_sym_workdir] = ACTIONS(3403), - [anon_sym_write] = ACTIONS(3403), - [anon_sym_from_json] = ACTIONS(3403), - [anon_sym_to_json] = ACTIONS(3403), - [anon_sym_to_string] = ACTIONS(3403), - [anon_sym_to_float] = ACTIONS(3403), - [anon_sym_bash] = ACTIONS(3403), - [anon_sym_fish] = ACTIONS(3403), - [anon_sym_raw] = ACTIONS(3403), - [anon_sym_sh] = ACTIONS(3403), - [anon_sym_zsh] = ACTIONS(3403), - [anon_sym_random] = ACTIONS(3403), - [anon_sym_random_boolean] = ACTIONS(3403), - [anon_sym_random_float] = ACTIONS(3403), - [anon_sym_random_integer] = ACTIONS(3403), - [anon_sym_columns] = ACTIONS(3403), - [anon_sym_rows] = ACTIONS(3403), - [anon_sym_reverse] = ACTIONS(3403), - }, - [707] = { - [sym_expression] = STATE(968), - [sym__expression_kind] = STATE(1002), - [aux_sym__expression_list] = STATE(707), - [sym_value] = STATE(1002), - [sym_boolean] = STATE(996), - [sym_list] = STATE(996), - [sym_map] = STATE(996), - [sym_index] = STATE(1002), - [sym_math] = STATE(1002), - [sym_logic] = STATE(1002), - [sym_identifier_list] = STATE(1762), - [sym_table] = STATE(996), - [sym_function] = STATE(996), - [sym_function_call] = STATE(1002), - [sym__context_defined_function] = STATE(1009), - [sym_built_in_function] = STATE(1009), - [sym__built_in_function_name] = STATE(726), - [sym_identifier] = ACTIONS(3542), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3545), - [anon_sym_RBRACE] = ACTIONS(2518), - [anon_sym_SEMI] = ACTIONS(2518), - [anon_sym_LPAREN] = ACTIONS(3548), - [anon_sym_RPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2518), - [sym_integer] = ACTIONS(3551), - [sym_float] = ACTIONS(3554), - [sym_string] = ACTIONS(3554), - [anon_sym_true] = ACTIONS(3557), - [anon_sym_false] = ACTIONS(3557), - [anon_sym_LBRACK] = ACTIONS(3560), - [anon_sym_RBRACK] = ACTIONS(2518), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_DOT_DOT] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2541), - [anon_sym_STAR] = ACTIONS(2518), - [anon_sym_SLASH] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_EQ_EQ] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_GT] = ACTIONS(2541), - [anon_sym_LT] = ACTIONS(2541), - [anon_sym_GT_EQ] = ACTIONS(2518), - [anon_sym_LT_EQ] = ACTIONS(2518), - [anon_sym_EQ_GT] = ACTIONS(3563), - [anon_sym_PIPE] = ACTIONS(2546), - [anon_sym_table] = ACTIONS(3566), - [anon_sym_assert] = ACTIONS(3569), - [anon_sym_assert_equal] = ACTIONS(3569), - [anon_sym_download] = ACTIONS(3569), - [anon_sym_help] = ACTIONS(3569), - [anon_sym_length] = ACTIONS(3569), - [anon_sym_output] = ACTIONS(3569), - [anon_sym_output_error] = ACTIONS(3569), - [anon_sym_type] = ACTIONS(3569), - [anon_sym_append] = ACTIONS(3569), - [anon_sym_metadata] = ACTIONS(3569), - [anon_sym_move] = ACTIONS(3569), - [anon_sym_read] = ACTIONS(3569), - [anon_sym_workdir] = ACTIONS(3569), - [anon_sym_write] = ACTIONS(3569), - [anon_sym_from_json] = ACTIONS(3569), - [anon_sym_to_json] = ACTIONS(3569), - [anon_sym_to_string] = ACTIONS(3569), - [anon_sym_to_float] = ACTIONS(3569), - [anon_sym_bash] = ACTIONS(3569), - [anon_sym_fish] = ACTIONS(3569), - [anon_sym_raw] = ACTIONS(3569), - [anon_sym_sh] = ACTIONS(3569), - [anon_sym_zsh] = ACTIONS(3569), - [anon_sym_random] = ACTIONS(3569), - [anon_sym_random_boolean] = ACTIONS(3569), - [anon_sym_random_float] = ACTIONS(3569), - [anon_sym_random_integer] = ACTIONS(3569), - [anon_sym_columns] = ACTIONS(3569), - [anon_sym_rows] = ACTIONS(3569), - [anon_sym_reverse] = ACTIONS(3569), - }, - [708] = { - [sym_else_if] = STATE(778), - [sym_else] = STATE(857), - [aux_sym_if_else_repeat1] = STATE(778), - [ts_builtin_sym_end] = ACTIONS(3229), - [sym_identifier] = ACTIONS(3231), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3229), - [anon_sym_RBRACE] = ACTIONS(3229), - [anon_sym_SEMI] = ACTIONS(3229), - [anon_sym_LPAREN] = ACTIONS(3229), - [anon_sym_RPAREN] = ACTIONS(3229), - [sym_integer] = ACTIONS(3231), - [sym_float] = ACTIONS(3229), - [sym_string] = ACTIONS(3229), - [anon_sym_true] = ACTIONS(3231), - [anon_sym_false] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3229), - [anon_sym_COLON] = ACTIONS(3229), - [anon_sym_DOT_DOT] = ACTIONS(3229), - [anon_sym_PLUS] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_SLASH] = ACTIONS(3229), - [anon_sym_PERCENT] = ACTIONS(3229), - [anon_sym_EQ_EQ] = ACTIONS(3229), - [anon_sym_BANG_EQ] = ACTIONS(3229), - [anon_sym_AMP_AMP] = ACTIONS(3229), - [anon_sym_PIPE_PIPE] = ACTIONS(3229), - [anon_sym_GT] = ACTIONS(3231), - [anon_sym_LT] = ACTIONS(3231), - [anon_sym_GT_EQ] = ACTIONS(3229), - [anon_sym_LT_EQ] = ACTIONS(3229), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_elseif] = ACTIONS(3572), - [anon_sym_else] = ACTIONS(3574), - [anon_sym_match] = ACTIONS(3231), - [anon_sym_EQ_GT] = ACTIONS(3229), - [anon_sym_while] = ACTIONS(3231), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_asyncfor] = ACTIONS(3229), - [anon_sym_transform] = ACTIONS(3231), - [anon_sym_filter] = ACTIONS(3231), - [anon_sym_find] = ACTIONS(3231), - [anon_sym_remove] = ACTIONS(3231), - [anon_sym_reduce] = ACTIONS(3231), - [anon_sym_select] = ACTIONS(3231), - [anon_sym_insert] = ACTIONS(3231), - [anon_sym_async] = ACTIONS(3231), - [anon_sym_PIPE] = ACTIONS(3231), - [anon_sym_table] = ACTIONS(3231), - [anon_sym_assert] = ACTIONS(3231), - [anon_sym_assert_equal] = ACTIONS(3231), - [anon_sym_download] = ACTIONS(3231), - [anon_sym_help] = ACTIONS(3231), - [anon_sym_length] = ACTIONS(3231), - [anon_sym_output] = ACTIONS(3231), - [anon_sym_output_error] = ACTIONS(3231), - [anon_sym_type] = ACTIONS(3231), - [anon_sym_append] = ACTIONS(3231), - [anon_sym_metadata] = ACTIONS(3231), - [anon_sym_move] = ACTIONS(3231), - [anon_sym_read] = ACTIONS(3231), - [anon_sym_workdir] = ACTIONS(3231), - [anon_sym_write] = ACTIONS(3231), - [anon_sym_from_json] = ACTIONS(3231), - [anon_sym_to_json] = ACTIONS(3231), - [anon_sym_to_string] = ACTIONS(3231), - [anon_sym_to_float] = ACTIONS(3231), - [anon_sym_bash] = ACTIONS(3231), - [anon_sym_fish] = ACTIONS(3231), - [anon_sym_raw] = ACTIONS(3231), - [anon_sym_sh] = ACTIONS(3231), - [anon_sym_zsh] = ACTIONS(3231), - [anon_sym_random] = ACTIONS(3231), - [anon_sym_random_boolean] = ACTIONS(3231), - [anon_sym_random_float] = ACTIONS(3231), - [anon_sym_random_integer] = ACTIONS(3231), - [anon_sym_columns] = ACTIONS(3231), - [anon_sym_rows] = ACTIONS(3231), - [anon_sym_reverse] = ACTIONS(3231), - }, - [709] = { - [sym_expression] = STATE(968), - [sym__expression_kind] = STATE(1002), - [aux_sym__expression_list] = STATE(707), - [sym_value] = STATE(1002), - [sym_boolean] = STATE(996), - [sym_list] = STATE(996), - [sym_map] = STATE(996), - [sym_index] = STATE(1002), - [sym_math] = STATE(1002), - [sym_logic] = STATE(1002), - [sym_identifier_list] = STATE(1762), - [sym_table] = STATE(996), - [sym_function] = STATE(996), - [sym_function_call] = STATE(1002), - [sym__context_defined_function] = STATE(1009), - [sym_built_in_function] = STATE(1009), - [sym__built_in_function_name] = STATE(726), - [sym_identifier] = ACTIONS(3576), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3503), - [anon_sym_RBRACE] = ACTIONS(2443), - [anon_sym_SEMI] = ACTIONS(2443), - [anon_sym_LPAREN] = ACTIONS(3505), - [anon_sym_RPAREN] = ACTIONS(2443), - [anon_sym_COMMA] = ACTIONS(2443), - [sym_integer] = ACTIONS(3507), - [sym_float] = ACTIONS(3509), - [sym_string] = ACTIONS(3509), - [anon_sym_true] = ACTIONS(3511), - [anon_sym_false] = ACTIONS(3511), - [anon_sym_LBRACK] = ACTIONS(3513), - [anon_sym_RBRACK] = ACTIONS(2443), - [anon_sym_COLON] = ACTIONS(2443), - [anon_sym_DOT_DOT] = ACTIONS(2443), - [anon_sym_PLUS] = ACTIONS(2443), - [anon_sym_DASH] = ACTIONS(2447), - [anon_sym_STAR] = ACTIONS(2443), - [anon_sym_SLASH] = ACTIONS(2443), - [anon_sym_PERCENT] = ACTIONS(2443), - [anon_sym_EQ_EQ] = ACTIONS(2443), - [anon_sym_BANG_EQ] = ACTIONS(2443), - [anon_sym_AMP_AMP] = ACTIONS(2443), - [anon_sym_PIPE_PIPE] = ACTIONS(2443), - [anon_sym_GT] = ACTIONS(2447), - [anon_sym_LT] = ACTIONS(2447), - [anon_sym_GT_EQ] = ACTIONS(2443), - [anon_sym_LT_EQ] = ACTIONS(2443), - [anon_sym_EQ_GT] = ACTIONS(3578), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(3580), - [anon_sym_assert] = ACTIONS(3582), - [anon_sym_assert_equal] = ACTIONS(3582), - [anon_sym_download] = ACTIONS(3582), - [anon_sym_help] = ACTIONS(3582), - [anon_sym_length] = ACTIONS(3582), - [anon_sym_output] = ACTIONS(3582), - [anon_sym_output_error] = ACTIONS(3582), - [anon_sym_type] = ACTIONS(3582), - [anon_sym_append] = ACTIONS(3582), - [anon_sym_metadata] = ACTIONS(3582), - [anon_sym_move] = ACTIONS(3582), - [anon_sym_read] = ACTIONS(3582), - [anon_sym_workdir] = ACTIONS(3582), - [anon_sym_write] = ACTIONS(3582), - [anon_sym_from_json] = ACTIONS(3582), - [anon_sym_to_json] = ACTIONS(3582), - [anon_sym_to_string] = ACTIONS(3582), - [anon_sym_to_float] = ACTIONS(3582), - [anon_sym_bash] = ACTIONS(3582), - [anon_sym_fish] = ACTIONS(3582), - [anon_sym_raw] = ACTIONS(3582), - [anon_sym_sh] = ACTIONS(3582), - [anon_sym_zsh] = ACTIONS(3582), - [anon_sym_random] = ACTIONS(3582), - [anon_sym_random_boolean] = ACTIONS(3582), - [anon_sym_random_float] = ACTIONS(3582), - [anon_sym_random_integer] = ACTIONS(3582), - [anon_sym_columns] = ACTIONS(3582), - [anon_sym_rows] = ACTIONS(3582), - [anon_sym_reverse] = ACTIONS(3582), - }, - [710] = { - [sym_else_if] = STATE(708), - [sym_else] = STATE(878), - [aux_sym_if_else_repeat1] = STATE(708), - [ts_builtin_sym_end] = ACTIONS(3219), - [sym_identifier] = ACTIONS(3221), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_RPAREN] = ACTIONS(3219), - [sym_integer] = ACTIONS(3221), - [sym_float] = ACTIONS(3219), - [sym_string] = ACTIONS(3219), - [anon_sym_true] = ACTIONS(3221), - [anon_sym_false] = ACTIONS(3221), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_COLON] = ACTIONS(3219), - [anon_sym_DOT_DOT] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3221), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_PERCENT] = ACTIONS(3219), - [anon_sym_EQ_EQ] = ACTIONS(3219), - [anon_sym_BANG_EQ] = ACTIONS(3219), - [anon_sym_AMP_AMP] = ACTIONS(3219), - [anon_sym_PIPE_PIPE] = ACTIONS(3219), - [anon_sym_GT] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3221), - [anon_sym_GT_EQ] = ACTIONS(3219), - [anon_sym_LT_EQ] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3221), - [anon_sym_elseif] = ACTIONS(3572), - [anon_sym_else] = ACTIONS(3574), - [anon_sym_match] = ACTIONS(3221), - [anon_sym_EQ_GT] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3221), - [anon_sym_for] = ACTIONS(3221), - [anon_sym_asyncfor] = ACTIONS(3219), - [anon_sym_transform] = ACTIONS(3221), - [anon_sym_filter] = ACTIONS(3221), - [anon_sym_find] = ACTIONS(3221), - [anon_sym_remove] = ACTIONS(3221), - [anon_sym_reduce] = ACTIONS(3221), - [anon_sym_select] = ACTIONS(3221), - [anon_sym_insert] = ACTIONS(3221), - [anon_sym_async] = ACTIONS(3221), - [anon_sym_PIPE] = ACTIONS(3221), - [anon_sym_table] = ACTIONS(3221), - [anon_sym_assert] = ACTIONS(3221), - [anon_sym_assert_equal] = ACTIONS(3221), - [anon_sym_download] = ACTIONS(3221), - [anon_sym_help] = ACTIONS(3221), - [anon_sym_length] = ACTIONS(3221), - [anon_sym_output] = ACTIONS(3221), - [anon_sym_output_error] = ACTIONS(3221), - [anon_sym_type] = ACTIONS(3221), - [anon_sym_append] = ACTIONS(3221), - [anon_sym_metadata] = ACTIONS(3221), - [anon_sym_move] = ACTIONS(3221), - [anon_sym_read] = ACTIONS(3221), - [anon_sym_workdir] = ACTIONS(3221), - [anon_sym_write] = ACTIONS(3221), - [anon_sym_from_json] = ACTIONS(3221), - [anon_sym_to_json] = ACTIONS(3221), - [anon_sym_to_string] = ACTIONS(3221), - [anon_sym_to_float] = ACTIONS(3221), - [anon_sym_bash] = ACTIONS(3221), - [anon_sym_fish] = ACTIONS(3221), - [anon_sym_raw] = ACTIONS(3221), - [anon_sym_sh] = ACTIONS(3221), - [anon_sym_zsh] = ACTIONS(3221), - [anon_sym_random] = ACTIONS(3221), - [anon_sym_random_boolean] = ACTIONS(3221), - [anon_sym_random_float] = ACTIONS(3221), - [anon_sym_random_integer] = ACTIONS(3221), - [anon_sym_columns] = ACTIONS(3221), - [anon_sym_rows] = ACTIONS(3221), - [anon_sym_reverse] = ACTIONS(3221), - }, - [711] = { - [ts_builtin_sym_end] = ACTIONS(3229), - [sym_identifier] = ACTIONS(3231), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3229), - [anon_sym_RBRACE] = ACTIONS(3229), - [anon_sym_SEMI] = ACTIONS(3229), - [anon_sym_LPAREN] = ACTIONS(3229), - [anon_sym_RPAREN] = ACTIONS(3229), - [anon_sym_COMMA] = ACTIONS(3229), - [sym_integer] = ACTIONS(3231), - [sym_float] = ACTIONS(3229), - [sym_string] = ACTIONS(3229), - [anon_sym_true] = ACTIONS(3231), - [anon_sym_false] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3229), - [anon_sym_RBRACK] = ACTIONS(3229), - [anon_sym_EQ] = ACTIONS(3231), - [anon_sym_COLON] = ACTIONS(3229), - [anon_sym_DOT_DOT] = ACTIONS(3229), - [anon_sym_PLUS] = ACTIONS(3231), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_SLASH] = ACTIONS(3229), - [anon_sym_PERCENT] = ACTIONS(3229), - [anon_sym_EQ_EQ] = ACTIONS(3229), - [anon_sym_BANG_EQ] = ACTIONS(3229), - [anon_sym_AMP_AMP] = ACTIONS(3229), - [anon_sym_PIPE_PIPE] = ACTIONS(3229), - [anon_sym_GT] = ACTIONS(3231), - [anon_sym_LT] = ACTIONS(3231), - [anon_sym_GT_EQ] = ACTIONS(3229), - [anon_sym_LT_EQ] = ACTIONS(3229), - [anon_sym_PLUS_EQ] = ACTIONS(3229), - [anon_sym_DASH_EQ] = ACTIONS(3229), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_match] = ACTIONS(3231), - [anon_sym_EQ_GT] = ACTIONS(3229), - [anon_sym_while] = ACTIONS(3231), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_asyncfor] = ACTIONS(3229), - [anon_sym_transform] = ACTIONS(3231), - [anon_sym_filter] = ACTIONS(3231), - [anon_sym_find] = ACTIONS(3231), - [anon_sym_remove] = ACTIONS(3231), - [anon_sym_reduce] = ACTIONS(3231), - [anon_sym_select] = ACTIONS(3231), - [anon_sym_insert] = ACTIONS(3231), - [anon_sym_async] = ACTIONS(3231), - [anon_sym_PIPE] = ACTIONS(3231), - [anon_sym_table] = ACTIONS(3231), - [anon_sym_assert] = ACTIONS(3231), - [anon_sym_assert_equal] = ACTIONS(3231), - [anon_sym_download] = ACTIONS(3231), - [anon_sym_help] = ACTIONS(3231), - [anon_sym_length] = ACTIONS(3231), - [anon_sym_output] = ACTIONS(3231), - [anon_sym_output_error] = ACTIONS(3231), - [anon_sym_type] = ACTIONS(3231), - [anon_sym_append] = ACTIONS(3231), - [anon_sym_metadata] = ACTIONS(3231), - [anon_sym_move] = ACTIONS(3231), - [anon_sym_read] = ACTIONS(3231), - [anon_sym_workdir] = ACTIONS(3231), - [anon_sym_write] = ACTIONS(3231), - [anon_sym_from_json] = ACTIONS(3231), - [anon_sym_to_json] = ACTIONS(3231), - [anon_sym_to_string] = ACTIONS(3231), - [anon_sym_to_float] = ACTIONS(3231), - [anon_sym_bash] = ACTIONS(3231), - [anon_sym_fish] = ACTIONS(3231), - [anon_sym_raw] = ACTIONS(3231), - [anon_sym_sh] = ACTIONS(3231), - [anon_sym_zsh] = ACTIONS(3231), - [anon_sym_random] = ACTIONS(3231), - [anon_sym_random_boolean] = ACTIONS(3231), - [anon_sym_random_float] = ACTIONS(3231), - [anon_sym_random_integer] = ACTIONS(3231), - [anon_sym_columns] = ACTIONS(3231), - [anon_sym_rows] = ACTIONS(3231), - [anon_sym_reverse] = ACTIONS(3231), - }, - [712] = { - [ts_builtin_sym_end] = ACTIONS(3405), - [sym_identifier] = ACTIONS(3407), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_RBRACE] = ACTIONS(3405), - [anon_sym_SEMI] = ACTIONS(3405), - [anon_sym_LPAREN] = ACTIONS(3405), - [anon_sym_RPAREN] = ACTIONS(3405), - [anon_sym_COMMA] = ACTIONS(3405), - [sym_integer] = ACTIONS(3407), - [sym_float] = ACTIONS(3405), - [sym_string] = ACTIONS(3405), - [anon_sym_true] = ACTIONS(3407), - [anon_sym_false] = ACTIONS(3407), - [anon_sym_LBRACK] = ACTIONS(3405), - [anon_sym_RBRACK] = ACTIONS(3405), - [anon_sym_EQ] = ACTIONS(3407), - [anon_sym_COLON] = ACTIONS(3405), - [anon_sym_DOT_DOT] = ACTIONS(3405), - [anon_sym_PLUS] = ACTIONS(3407), - [anon_sym_DASH] = ACTIONS(3407), - [anon_sym_STAR] = ACTIONS(3405), - [anon_sym_SLASH] = ACTIONS(3405), - [anon_sym_PERCENT] = ACTIONS(3405), - [anon_sym_EQ_EQ] = ACTIONS(3405), - [anon_sym_BANG_EQ] = ACTIONS(3405), - [anon_sym_AMP_AMP] = ACTIONS(3405), - [anon_sym_PIPE_PIPE] = ACTIONS(3405), - [anon_sym_GT] = ACTIONS(3407), - [anon_sym_LT] = ACTIONS(3407), - [anon_sym_GT_EQ] = ACTIONS(3405), - [anon_sym_LT_EQ] = ACTIONS(3405), - [anon_sym_PLUS_EQ] = ACTIONS(3405), - [anon_sym_DASH_EQ] = ACTIONS(3405), - [anon_sym_if] = ACTIONS(3407), - [anon_sym_match] = ACTIONS(3407), - [anon_sym_EQ_GT] = ACTIONS(3405), - [anon_sym_while] = ACTIONS(3407), - [anon_sym_for] = ACTIONS(3407), - [anon_sym_asyncfor] = ACTIONS(3405), - [anon_sym_transform] = ACTIONS(3407), - [anon_sym_filter] = ACTIONS(3407), - [anon_sym_find] = ACTIONS(3407), - [anon_sym_remove] = ACTIONS(3407), - [anon_sym_reduce] = ACTIONS(3407), - [anon_sym_select] = ACTIONS(3407), - [anon_sym_insert] = ACTIONS(3407), - [anon_sym_async] = ACTIONS(3407), - [anon_sym_PIPE] = ACTIONS(3407), - [anon_sym_table] = ACTIONS(3407), - [anon_sym_assert] = ACTIONS(3407), - [anon_sym_assert_equal] = ACTIONS(3407), - [anon_sym_download] = ACTIONS(3407), - [anon_sym_help] = ACTIONS(3407), - [anon_sym_length] = ACTIONS(3407), - [anon_sym_output] = ACTIONS(3407), - [anon_sym_output_error] = ACTIONS(3407), - [anon_sym_type] = ACTIONS(3407), - [anon_sym_append] = ACTIONS(3407), - [anon_sym_metadata] = ACTIONS(3407), - [anon_sym_move] = ACTIONS(3407), - [anon_sym_read] = ACTIONS(3407), - [anon_sym_workdir] = ACTIONS(3407), - [anon_sym_write] = ACTIONS(3407), - [anon_sym_from_json] = ACTIONS(3407), - [anon_sym_to_json] = ACTIONS(3407), - [anon_sym_to_string] = ACTIONS(3407), - [anon_sym_to_float] = ACTIONS(3407), - [anon_sym_bash] = ACTIONS(3407), - [anon_sym_fish] = ACTIONS(3407), - [anon_sym_raw] = ACTIONS(3407), - [anon_sym_sh] = ACTIONS(3407), - [anon_sym_zsh] = ACTIONS(3407), - [anon_sym_random] = ACTIONS(3407), - [anon_sym_random_boolean] = ACTIONS(3407), - [anon_sym_random_float] = ACTIONS(3407), - [anon_sym_random_integer] = ACTIONS(3407), - [anon_sym_columns] = ACTIONS(3407), - [anon_sym_rows] = ACTIONS(3407), - [anon_sym_reverse] = ACTIONS(3407), - }, - [713] = { - [ts_builtin_sym_end] = ACTIONS(3409), - [sym_identifier] = ACTIONS(3411), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3409), - [anon_sym_RBRACE] = ACTIONS(3409), - [anon_sym_SEMI] = ACTIONS(3409), - [anon_sym_LPAREN] = ACTIONS(3409), - [anon_sym_RPAREN] = ACTIONS(3409), - [anon_sym_COMMA] = ACTIONS(3409), - [sym_integer] = ACTIONS(3411), - [sym_float] = ACTIONS(3409), - [sym_string] = ACTIONS(3409), - [anon_sym_true] = ACTIONS(3411), - [anon_sym_false] = ACTIONS(3411), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_RBRACK] = ACTIONS(3409), - [anon_sym_EQ] = ACTIONS(3411), - [anon_sym_COLON] = ACTIONS(3409), - [anon_sym_DOT_DOT] = ACTIONS(3409), - [anon_sym_PLUS] = ACTIONS(3411), - [anon_sym_DASH] = ACTIONS(3411), - [anon_sym_STAR] = ACTIONS(3409), - [anon_sym_SLASH] = ACTIONS(3409), - [anon_sym_PERCENT] = ACTIONS(3409), - [anon_sym_EQ_EQ] = ACTIONS(3409), - [anon_sym_BANG_EQ] = ACTIONS(3409), - [anon_sym_AMP_AMP] = ACTIONS(3409), - [anon_sym_PIPE_PIPE] = ACTIONS(3409), - [anon_sym_GT] = ACTIONS(3411), - [anon_sym_LT] = ACTIONS(3411), - [anon_sym_GT_EQ] = ACTIONS(3409), - [anon_sym_LT_EQ] = ACTIONS(3409), - [anon_sym_PLUS_EQ] = ACTIONS(3409), - [anon_sym_DASH_EQ] = ACTIONS(3409), - [anon_sym_if] = ACTIONS(3411), - [anon_sym_match] = ACTIONS(3411), - [anon_sym_EQ_GT] = ACTIONS(3409), - [anon_sym_while] = ACTIONS(3411), - [anon_sym_for] = ACTIONS(3411), - [anon_sym_asyncfor] = ACTIONS(3409), - [anon_sym_transform] = ACTIONS(3411), - [anon_sym_filter] = ACTIONS(3411), - [anon_sym_find] = ACTIONS(3411), - [anon_sym_remove] = ACTIONS(3411), - [anon_sym_reduce] = ACTIONS(3411), - [anon_sym_select] = ACTIONS(3411), - [anon_sym_insert] = ACTIONS(3411), - [anon_sym_async] = ACTIONS(3411), - [anon_sym_PIPE] = ACTIONS(3411), - [anon_sym_table] = ACTIONS(3411), - [anon_sym_assert] = ACTIONS(3411), - [anon_sym_assert_equal] = ACTIONS(3411), - [anon_sym_download] = ACTIONS(3411), - [anon_sym_help] = ACTIONS(3411), - [anon_sym_length] = ACTIONS(3411), - [anon_sym_output] = ACTIONS(3411), - [anon_sym_output_error] = ACTIONS(3411), - [anon_sym_type] = ACTIONS(3411), - [anon_sym_append] = ACTIONS(3411), - [anon_sym_metadata] = ACTIONS(3411), - [anon_sym_move] = ACTIONS(3411), - [anon_sym_read] = ACTIONS(3411), - [anon_sym_workdir] = ACTIONS(3411), - [anon_sym_write] = ACTIONS(3411), - [anon_sym_from_json] = ACTIONS(3411), - [anon_sym_to_json] = ACTIONS(3411), - [anon_sym_to_string] = ACTIONS(3411), - [anon_sym_to_float] = ACTIONS(3411), - [anon_sym_bash] = ACTIONS(3411), - [anon_sym_fish] = ACTIONS(3411), - [anon_sym_raw] = ACTIONS(3411), - [anon_sym_sh] = ACTIONS(3411), - [anon_sym_zsh] = ACTIONS(3411), - [anon_sym_random] = ACTIONS(3411), - [anon_sym_random_boolean] = ACTIONS(3411), - [anon_sym_random_float] = ACTIONS(3411), - [anon_sym_random_integer] = ACTIONS(3411), - [anon_sym_columns] = ACTIONS(3411), - [anon_sym_rows] = ACTIONS(3411), - [anon_sym_reverse] = ACTIONS(3411), - }, - [714] = { - [sym_math_operator] = STATE(1322), - [sym_logic_operator] = STATE(1321), - [ts_builtin_sym_end] = ACTIONS(3244), - [sym_identifier] = ACTIONS(3246), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_RBRACE] = ACTIONS(3244), - [anon_sym_SEMI] = ACTIONS(3244), - [anon_sym_LPAREN] = ACTIONS(3244), - [anon_sym_RPAREN] = ACTIONS(3244), - [anon_sym_COMMA] = ACTIONS(3244), - [sym_integer] = ACTIONS(3246), - [sym_float] = ACTIONS(3244), - [sym_string] = ACTIONS(3244), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_LBRACK] = ACTIONS(3244), - [anon_sym_RBRACK] = ACTIONS(3244), - [anon_sym_COLON] = ACTIONS(625), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(3246), - [anon_sym_elseif] = ACTIONS(3244), - [anon_sym_else] = ACTIONS(3246), - [anon_sym_match] = ACTIONS(3246), - [anon_sym_EQ_GT] = ACTIONS(3244), - [anon_sym_while] = ACTIONS(3246), - [anon_sym_for] = ACTIONS(3246), - [anon_sym_asyncfor] = ACTIONS(3244), - [anon_sym_transform] = ACTIONS(3246), - [anon_sym_filter] = ACTIONS(3246), - [anon_sym_find] = ACTIONS(3246), - [anon_sym_remove] = ACTIONS(3246), - [anon_sym_reduce] = ACTIONS(3246), - [anon_sym_select] = ACTIONS(3246), - [anon_sym_insert] = ACTIONS(3246), - [anon_sym_async] = ACTIONS(3246), - [anon_sym_PIPE] = ACTIONS(3246), - [anon_sym_table] = ACTIONS(3246), - [anon_sym_assert] = ACTIONS(3246), - [anon_sym_assert_equal] = ACTIONS(3246), - [anon_sym_download] = ACTIONS(3246), - [anon_sym_help] = ACTIONS(3246), - [anon_sym_length] = ACTIONS(3246), - [anon_sym_output] = ACTIONS(3246), - [anon_sym_output_error] = ACTIONS(3246), - [anon_sym_type] = ACTIONS(3246), - [anon_sym_append] = ACTIONS(3246), - [anon_sym_metadata] = ACTIONS(3246), - [anon_sym_move] = ACTIONS(3246), - [anon_sym_read] = ACTIONS(3246), - [anon_sym_workdir] = ACTIONS(3246), - [anon_sym_write] = ACTIONS(3246), - [anon_sym_from_json] = ACTIONS(3246), - [anon_sym_to_json] = ACTIONS(3246), - [anon_sym_to_string] = ACTIONS(3246), - [anon_sym_to_float] = ACTIONS(3246), - [anon_sym_bash] = ACTIONS(3246), - [anon_sym_fish] = ACTIONS(3246), - [anon_sym_raw] = ACTIONS(3246), - [anon_sym_sh] = ACTIONS(3246), - [anon_sym_zsh] = ACTIONS(3246), - [anon_sym_random] = ACTIONS(3246), - [anon_sym_random_boolean] = ACTIONS(3246), - [anon_sym_random_float] = ACTIONS(3246), - [anon_sym_random_integer] = ACTIONS(3246), - [anon_sym_columns] = ACTIONS(3246), - [anon_sym_rows] = ACTIONS(3246), - [anon_sym_reverse] = ACTIONS(3246), - }, - [715] = { - [sym_math_operator] = STATE(1322), - [sym_logic_operator] = STATE(1321), - [ts_builtin_sym_end] = ACTIONS(3240), - [sym_identifier] = ACTIONS(3242), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3240), - [anon_sym_SEMI] = ACTIONS(3240), - [anon_sym_LPAREN] = ACTIONS(3240), - [anon_sym_RPAREN] = ACTIONS(3240), - [anon_sym_COMMA] = ACTIONS(3240), - [sym_integer] = ACTIONS(3242), - [sym_float] = ACTIONS(3240), - [sym_string] = ACTIONS(3240), - [anon_sym_true] = ACTIONS(3242), - [anon_sym_false] = ACTIONS(3242), - [anon_sym_LBRACK] = ACTIONS(3240), - [anon_sym_RBRACK] = ACTIONS(3240), - [anon_sym_COLON] = ACTIONS(625), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(3242), - [anon_sym_elseif] = ACTIONS(3240), - [anon_sym_else] = ACTIONS(3242), - [anon_sym_match] = ACTIONS(3242), - [anon_sym_EQ_GT] = ACTIONS(3240), - [anon_sym_while] = ACTIONS(3242), - [anon_sym_for] = ACTIONS(3242), - [anon_sym_asyncfor] = ACTIONS(3240), - [anon_sym_transform] = ACTIONS(3242), - [anon_sym_filter] = ACTIONS(3242), - [anon_sym_find] = ACTIONS(3242), - [anon_sym_remove] = ACTIONS(3242), - [anon_sym_reduce] = ACTIONS(3242), - [anon_sym_select] = ACTIONS(3242), - [anon_sym_insert] = ACTIONS(3242), - [anon_sym_async] = ACTIONS(3242), - [anon_sym_PIPE] = ACTIONS(3242), - [anon_sym_table] = ACTIONS(3242), - [anon_sym_assert] = ACTIONS(3242), - [anon_sym_assert_equal] = ACTIONS(3242), - [anon_sym_download] = ACTIONS(3242), - [anon_sym_help] = ACTIONS(3242), - [anon_sym_length] = ACTIONS(3242), - [anon_sym_output] = ACTIONS(3242), - [anon_sym_output_error] = ACTIONS(3242), - [anon_sym_type] = ACTIONS(3242), - [anon_sym_append] = ACTIONS(3242), - [anon_sym_metadata] = ACTIONS(3242), - [anon_sym_move] = ACTIONS(3242), - [anon_sym_read] = ACTIONS(3242), - [anon_sym_workdir] = ACTIONS(3242), - [anon_sym_write] = ACTIONS(3242), - [anon_sym_from_json] = ACTIONS(3242), - [anon_sym_to_json] = ACTIONS(3242), - [anon_sym_to_string] = ACTIONS(3242), - [anon_sym_to_float] = ACTIONS(3242), - [anon_sym_bash] = ACTIONS(3242), - [anon_sym_fish] = ACTIONS(3242), - [anon_sym_raw] = ACTIONS(3242), - [anon_sym_sh] = ACTIONS(3242), - [anon_sym_zsh] = ACTIONS(3242), - [anon_sym_random] = ACTIONS(3242), - [anon_sym_random_boolean] = ACTIONS(3242), - [anon_sym_random_float] = ACTIONS(3242), - [anon_sym_random_integer] = ACTIONS(3242), - [anon_sym_columns] = ACTIONS(3242), - [anon_sym_rows] = ACTIONS(3242), - [anon_sym_reverse] = ACTIONS(3242), - }, - [716] = { - [sym_expression] = STATE(968), - [sym__expression_kind] = STATE(1002), - [aux_sym__expression_list] = STATE(707), - [sym_value] = STATE(1002), - [sym_boolean] = STATE(996), - [sym_list] = STATE(996), - [sym_map] = STATE(996), - [sym_index] = STATE(1002), - [sym_math] = STATE(1002), - [sym_logic] = STATE(1002), - [sym_identifier_list] = STATE(1762), - [sym_table] = STATE(996), - [sym_function] = STATE(996), - [sym_function_call] = STATE(1002), - [sym__context_defined_function] = STATE(1009), - [sym_built_in_function] = STATE(1009), - [sym__built_in_function_name] = STATE(726), - [sym_identifier] = ACTIONS(3576), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3503), - [anon_sym_RBRACE] = ACTIONS(2477), - [anon_sym_SEMI] = ACTIONS(2477), - [anon_sym_LPAREN] = ACTIONS(3505), - [anon_sym_RPAREN] = ACTIONS(2477), - [anon_sym_COMMA] = ACTIONS(2477), - [sym_integer] = ACTIONS(3507), - [sym_float] = ACTIONS(3509), - [sym_string] = ACTIONS(3509), - [anon_sym_true] = ACTIONS(3511), - [anon_sym_false] = ACTIONS(3511), - [anon_sym_LBRACK] = ACTIONS(3513), - [anon_sym_RBRACK] = ACTIONS(2477), - [anon_sym_COLON] = ACTIONS(2477), - [anon_sym_DOT_DOT] = ACTIONS(2477), - [anon_sym_PLUS] = ACTIONS(2477), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2477), - [anon_sym_SLASH] = ACTIONS(2477), - [anon_sym_PERCENT] = ACTIONS(2477), - [anon_sym_EQ_EQ] = ACTIONS(2477), - [anon_sym_BANG_EQ] = ACTIONS(2477), - [anon_sym_AMP_AMP] = ACTIONS(2477), - [anon_sym_PIPE_PIPE] = ACTIONS(2477), - [anon_sym_GT] = ACTIONS(2479), - [anon_sym_LT] = ACTIONS(2479), - [anon_sym_GT_EQ] = ACTIONS(2477), - [anon_sym_LT_EQ] = ACTIONS(2477), - [anon_sym_EQ_GT] = ACTIONS(3578), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(3580), - [anon_sym_assert] = ACTIONS(3582), - [anon_sym_assert_equal] = ACTIONS(3582), - [anon_sym_download] = ACTIONS(3582), - [anon_sym_help] = ACTIONS(3582), - [anon_sym_length] = ACTIONS(3582), - [anon_sym_output] = ACTIONS(3582), - [anon_sym_output_error] = ACTIONS(3582), - [anon_sym_type] = ACTIONS(3582), - [anon_sym_append] = ACTIONS(3582), - [anon_sym_metadata] = ACTIONS(3582), - [anon_sym_move] = ACTIONS(3582), - [anon_sym_read] = ACTIONS(3582), - [anon_sym_workdir] = ACTIONS(3582), - [anon_sym_write] = ACTIONS(3582), - [anon_sym_from_json] = ACTIONS(3582), - [anon_sym_to_json] = ACTIONS(3582), - [anon_sym_to_string] = ACTIONS(3582), - [anon_sym_to_float] = ACTIONS(3582), - [anon_sym_bash] = ACTIONS(3582), - [anon_sym_fish] = ACTIONS(3582), - [anon_sym_raw] = ACTIONS(3582), - [anon_sym_sh] = ACTIONS(3582), - [anon_sym_zsh] = ACTIONS(3582), - [anon_sym_random] = ACTIONS(3582), - [anon_sym_random_boolean] = ACTIONS(3582), - [anon_sym_random_float] = ACTIONS(3582), - [anon_sym_random_integer] = ACTIONS(3582), - [anon_sym_columns] = ACTIONS(3582), - [anon_sym_rows] = ACTIONS(3582), - [anon_sym_reverse] = ACTIONS(3582), - }, - [717] = { - [ts_builtin_sym_end] = ACTIONS(3375), - [sym_identifier] = ACTIONS(3377), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3375), - [anon_sym_RBRACE] = ACTIONS(3375), - [anon_sym_SEMI] = ACTIONS(3375), - [anon_sym_LPAREN] = ACTIONS(3375), - [anon_sym_RPAREN] = ACTIONS(3375), - [anon_sym_COMMA] = ACTIONS(3375), - [sym_integer] = ACTIONS(3377), - [sym_float] = ACTIONS(3375), - [sym_string] = ACTIONS(3375), - [anon_sym_true] = ACTIONS(3377), - [anon_sym_false] = ACTIONS(3377), - [anon_sym_LBRACK] = ACTIONS(3375), - [anon_sym_RBRACK] = ACTIONS(3375), - [anon_sym_EQ] = ACTIONS(3377), - [anon_sym_COLON] = ACTIONS(3375), - [anon_sym_DOT_DOT] = ACTIONS(3375), - [anon_sym_PLUS] = ACTIONS(3377), - [anon_sym_DASH] = ACTIONS(3377), - [anon_sym_STAR] = ACTIONS(3375), - [anon_sym_SLASH] = ACTIONS(3375), - [anon_sym_PERCENT] = ACTIONS(3375), - [anon_sym_EQ_EQ] = ACTIONS(3375), - [anon_sym_BANG_EQ] = ACTIONS(3375), - [anon_sym_AMP_AMP] = ACTIONS(3375), - [anon_sym_PIPE_PIPE] = ACTIONS(3375), - [anon_sym_GT] = ACTIONS(3377), - [anon_sym_LT] = ACTIONS(3377), - [anon_sym_GT_EQ] = ACTIONS(3375), - [anon_sym_LT_EQ] = ACTIONS(3375), - [anon_sym_PLUS_EQ] = ACTIONS(3375), - [anon_sym_DASH_EQ] = ACTIONS(3375), - [anon_sym_if] = ACTIONS(3377), - [anon_sym_match] = ACTIONS(3377), - [anon_sym_EQ_GT] = ACTIONS(3375), - [anon_sym_while] = ACTIONS(3377), - [anon_sym_for] = ACTIONS(3377), - [anon_sym_asyncfor] = ACTIONS(3375), - [anon_sym_transform] = ACTIONS(3377), - [anon_sym_filter] = ACTIONS(3377), - [anon_sym_find] = ACTIONS(3377), - [anon_sym_remove] = ACTIONS(3377), - [anon_sym_reduce] = ACTIONS(3377), - [anon_sym_select] = ACTIONS(3377), - [anon_sym_insert] = ACTIONS(3377), - [anon_sym_async] = ACTIONS(3377), - [anon_sym_PIPE] = ACTIONS(3377), - [anon_sym_table] = ACTIONS(3377), - [anon_sym_assert] = ACTIONS(3377), - [anon_sym_assert_equal] = ACTIONS(3377), - [anon_sym_download] = ACTIONS(3377), - [anon_sym_help] = ACTIONS(3377), - [anon_sym_length] = ACTIONS(3377), - [anon_sym_output] = ACTIONS(3377), - [anon_sym_output_error] = ACTIONS(3377), - [anon_sym_type] = ACTIONS(3377), - [anon_sym_append] = ACTIONS(3377), - [anon_sym_metadata] = ACTIONS(3377), - [anon_sym_move] = ACTIONS(3377), - [anon_sym_read] = ACTIONS(3377), - [anon_sym_workdir] = ACTIONS(3377), - [anon_sym_write] = ACTIONS(3377), - [anon_sym_from_json] = ACTIONS(3377), - [anon_sym_to_json] = ACTIONS(3377), - [anon_sym_to_string] = ACTIONS(3377), - [anon_sym_to_float] = ACTIONS(3377), - [anon_sym_bash] = ACTIONS(3377), - [anon_sym_fish] = ACTIONS(3377), - [anon_sym_raw] = ACTIONS(3377), - [anon_sym_sh] = ACTIONS(3377), - [anon_sym_zsh] = ACTIONS(3377), - [anon_sym_random] = ACTIONS(3377), - [anon_sym_random_boolean] = ACTIONS(3377), - [anon_sym_random_float] = ACTIONS(3377), - [anon_sym_random_integer] = ACTIONS(3377), - [anon_sym_columns] = ACTIONS(3377), - [anon_sym_rows] = ACTIONS(3377), - [anon_sym_reverse] = ACTIONS(3377), - }, - [718] = { - [sym_math_operator] = STATE(1261), - [sym_logic_operator] = STATE(1219), - [ts_builtin_sym_end] = ACTIONS(3233), - [sym_identifier] = ACTIONS(3235), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3233), - [anon_sym_RBRACE] = ACTIONS(3233), - [anon_sym_SEMI] = ACTIONS(3233), - [anon_sym_LPAREN] = ACTIONS(3233), - [anon_sym_RPAREN] = ACTIONS(3233), - [anon_sym_COMMA] = ACTIONS(3519), - [sym_integer] = ACTIONS(3235), - [sym_float] = ACTIONS(3233), - [sym_string] = ACTIONS(3233), - [anon_sym_true] = ACTIONS(3235), - [anon_sym_false] = ACTIONS(3235), - [anon_sym_LBRACK] = ACTIONS(3233), - [anon_sym_EQ] = ACTIONS(3235), - [anon_sym_COLON] = ACTIONS(277), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_PLUS_EQ] = ACTIONS(3233), - [anon_sym_DASH_EQ] = ACTIONS(3233), - [anon_sym_if] = ACTIONS(3235), - [anon_sym_match] = ACTIONS(3235), - [anon_sym_EQ_GT] = ACTIONS(3233), - [anon_sym_while] = ACTIONS(3235), - [anon_sym_for] = ACTIONS(3235), - [anon_sym_asyncfor] = ACTIONS(3233), - [anon_sym_transform] = ACTIONS(3235), - [anon_sym_filter] = ACTIONS(3235), - [anon_sym_find] = ACTIONS(3235), - [anon_sym_remove] = ACTIONS(3235), - [anon_sym_reduce] = ACTIONS(3235), - [anon_sym_select] = ACTIONS(3235), - [anon_sym_insert] = ACTIONS(3235), - [anon_sym_async] = ACTIONS(3235), - [anon_sym_PIPE] = ACTIONS(3235), - [anon_sym_table] = ACTIONS(3235), - [anon_sym_assert] = ACTIONS(3235), - [anon_sym_assert_equal] = ACTIONS(3235), - [anon_sym_download] = ACTIONS(3235), - [anon_sym_help] = ACTIONS(3235), - [anon_sym_length] = ACTIONS(3235), - [anon_sym_output] = ACTIONS(3235), - [anon_sym_output_error] = ACTIONS(3235), - [anon_sym_type] = ACTIONS(3235), - [anon_sym_append] = ACTIONS(3235), - [anon_sym_metadata] = ACTIONS(3235), - [anon_sym_move] = ACTIONS(3235), - [anon_sym_read] = ACTIONS(3235), - [anon_sym_workdir] = ACTIONS(3235), - [anon_sym_write] = ACTIONS(3235), - [anon_sym_from_json] = ACTIONS(3235), - [anon_sym_to_json] = ACTIONS(3235), - [anon_sym_to_string] = ACTIONS(3235), - [anon_sym_to_float] = ACTIONS(3235), - [anon_sym_bash] = ACTIONS(3235), - [anon_sym_fish] = ACTIONS(3235), - [anon_sym_raw] = ACTIONS(3235), - [anon_sym_sh] = ACTIONS(3235), - [anon_sym_zsh] = ACTIONS(3235), - [anon_sym_random] = ACTIONS(3235), - [anon_sym_random_boolean] = ACTIONS(3235), - [anon_sym_random_float] = ACTIONS(3235), - [anon_sym_random_integer] = ACTIONS(3235), - [anon_sym_columns] = ACTIONS(3235), - [anon_sym_rows] = ACTIONS(3235), - [anon_sym_reverse] = ACTIONS(3235), - }, - [719] = { - [ts_builtin_sym_end] = ACTIONS(3307), - [sym_identifier] = ACTIONS(3309), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3307), - [anon_sym_RBRACE] = ACTIONS(3307), - [anon_sym_SEMI] = ACTIONS(3307), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_RPAREN] = ACTIONS(3307), - [anon_sym_COMMA] = ACTIONS(3307), - [sym_integer] = ACTIONS(3309), - [sym_float] = ACTIONS(3307), - [sym_string] = ACTIONS(3307), - [anon_sym_true] = ACTIONS(3309), - [anon_sym_false] = ACTIONS(3309), - [anon_sym_LBRACK] = ACTIONS(3307), - [anon_sym_RBRACK] = ACTIONS(3307), - [anon_sym_EQ] = ACTIONS(3309), - [anon_sym_COLON] = ACTIONS(3307), - [anon_sym_DOT_DOT] = ACTIONS(3307), - [anon_sym_PLUS] = ACTIONS(3309), - [anon_sym_DASH] = ACTIONS(3309), - [anon_sym_STAR] = ACTIONS(3307), - [anon_sym_SLASH] = ACTIONS(3307), - [anon_sym_PERCENT] = ACTIONS(3307), - [anon_sym_EQ_EQ] = ACTIONS(3307), - [anon_sym_BANG_EQ] = ACTIONS(3307), - [anon_sym_AMP_AMP] = ACTIONS(3307), - [anon_sym_PIPE_PIPE] = ACTIONS(3307), - [anon_sym_GT] = ACTIONS(3309), - [anon_sym_LT] = ACTIONS(3309), - [anon_sym_GT_EQ] = ACTIONS(3307), - [anon_sym_LT_EQ] = ACTIONS(3307), - [anon_sym_PLUS_EQ] = ACTIONS(3307), - [anon_sym_DASH_EQ] = ACTIONS(3307), - [anon_sym_if] = ACTIONS(3309), - [anon_sym_match] = ACTIONS(3309), - [anon_sym_EQ_GT] = ACTIONS(3307), - [anon_sym_while] = ACTIONS(3309), - [anon_sym_for] = ACTIONS(3309), - [anon_sym_asyncfor] = ACTIONS(3307), - [anon_sym_transform] = ACTIONS(3309), - [anon_sym_filter] = ACTIONS(3309), - [anon_sym_find] = ACTIONS(3309), - [anon_sym_remove] = ACTIONS(3309), - [anon_sym_reduce] = ACTIONS(3309), - [anon_sym_select] = ACTIONS(3309), - [anon_sym_insert] = ACTIONS(3309), - [anon_sym_async] = ACTIONS(3309), - [anon_sym_PIPE] = ACTIONS(3309), - [anon_sym_table] = ACTIONS(3309), - [anon_sym_assert] = ACTIONS(3309), - [anon_sym_assert_equal] = ACTIONS(3309), - [anon_sym_download] = ACTIONS(3309), - [anon_sym_help] = ACTIONS(3309), - [anon_sym_length] = ACTIONS(3309), - [anon_sym_output] = ACTIONS(3309), - [anon_sym_output_error] = ACTIONS(3309), - [anon_sym_type] = ACTIONS(3309), - [anon_sym_append] = ACTIONS(3309), - [anon_sym_metadata] = ACTIONS(3309), - [anon_sym_move] = ACTIONS(3309), - [anon_sym_read] = ACTIONS(3309), - [anon_sym_workdir] = ACTIONS(3309), - [anon_sym_write] = ACTIONS(3309), - [anon_sym_from_json] = ACTIONS(3309), - [anon_sym_to_json] = ACTIONS(3309), - [anon_sym_to_string] = ACTIONS(3309), - [anon_sym_to_float] = ACTIONS(3309), - [anon_sym_bash] = ACTIONS(3309), - [anon_sym_fish] = ACTIONS(3309), - [anon_sym_raw] = ACTIONS(3309), - [anon_sym_sh] = ACTIONS(3309), - [anon_sym_zsh] = ACTIONS(3309), - [anon_sym_random] = ACTIONS(3309), - [anon_sym_random_boolean] = ACTIONS(3309), - [anon_sym_random_float] = ACTIONS(3309), - [anon_sym_random_integer] = ACTIONS(3309), - [anon_sym_columns] = ACTIONS(3309), - [anon_sym_rows] = ACTIONS(3309), - [anon_sym_reverse] = ACTIONS(3309), - }, - [720] = { - [sym_math_operator] = STATE(1455), - [sym_logic_operator] = STATE(1453), - [ts_builtin_sym_end] = ACTIONS(3244), - [sym_identifier] = ACTIONS(3246), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_RBRACE] = ACTIONS(3244), - [anon_sym_SEMI] = ACTIONS(3244), - [anon_sym_LPAREN] = ACTIONS(3244), - [anon_sym_RPAREN] = ACTIONS(3244), - [sym_integer] = ACTIONS(3246), - [sym_float] = ACTIONS(3244), - [sym_string] = ACTIONS(3244), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_LBRACK] = ACTIONS(3244), - [anon_sym_EQ] = ACTIONS(3246), - [anon_sym_COLON] = ACTIONS(495), - [anon_sym_DOT_DOT] = ACTIONS(3244), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_PLUS_EQ] = ACTIONS(3244), - [anon_sym_DASH_EQ] = ACTIONS(3244), - [anon_sym_if] = ACTIONS(3246), - [anon_sym_match] = ACTIONS(3246), - [anon_sym_EQ_GT] = ACTIONS(3244), - [anon_sym_while] = ACTIONS(3246), - [anon_sym_for] = ACTIONS(3246), - [anon_sym_asyncfor] = ACTIONS(3244), - [anon_sym_transform] = ACTIONS(3246), - [anon_sym_filter] = ACTIONS(3246), - [anon_sym_find] = ACTIONS(3246), - [anon_sym_remove] = ACTIONS(3246), - [anon_sym_reduce] = ACTIONS(3246), - [anon_sym_select] = ACTIONS(3246), - [anon_sym_insert] = ACTIONS(3246), - [anon_sym_async] = ACTIONS(3246), - [anon_sym_PIPE] = ACTIONS(3246), - [anon_sym_table] = ACTIONS(3246), - [anon_sym_assert] = ACTIONS(3246), - [anon_sym_assert_equal] = ACTIONS(3246), - [anon_sym_download] = ACTIONS(3246), - [anon_sym_help] = ACTIONS(3246), - [anon_sym_length] = ACTIONS(3246), - [anon_sym_output] = ACTIONS(3246), - [anon_sym_output_error] = ACTIONS(3246), - [anon_sym_type] = ACTIONS(3246), - [anon_sym_append] = ACTIONS(3246), - [anon_sym_metadata] = ACTIONS(3246), - [anon_sym_move] = ACTIONS(3246), - [anon_sym_read] = ACTIONS(3246), - [anon_sym_workdir] = ACTIONS(3246), - [anon_sym_write] = ACTIONS(3246), - [anon_sym_from_json] = ACTIONS(3246), - [anon_sym_to_json] = ACTIONS(3246), - [anon_sym_to_string] = ACTIONS(3246), - [anon_sym_to_float] = ACTIONS(3246), - [anon_sym_bash] = ACTIONS(3246), - [anon_sym_fish] = ACTIONS(3246), - [anon_sym_raw] = ACTIONS(3246), - [anon_sym_sh] = ACTIONS(3246), - [anon_sym_zsh] = ACTIONS(3246), - [anon_sym_random] = ACTIONS(3246), - [anon_sym_random_boolean] = ACTIONS(3246), - [anon_sym_random_float] = ACTIONS(3246), - [anon_sym_random_integer] = ACTIONS(3246), - [anon_sym_columns] = ACTIONS(3246), - [anon_sym_rows] = ACTIONS(3246), - [anon_sym_reverse] = ACTIONS(3246), - }, - [721] = { - [sym_math_operator] = STATE(1455), - [sym_logic_operator] = STATE(1453), - [ts_builtin_sym_end] = ACTIONS(3248), - [sym_identifier] = ACTIONS(3250), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3248), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(3248), - [anon_sym_RPAREN] = ACTIONS(3248), - [sym_integer] = ACTIONS(3250), - [sym_float] = ACTIONS(3248), - [sym_string] = ACTIONS(3248), - [anon_sym_true] = ACTIONS(3250), - [anon_sym_false] = ACTIONS(3250), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_EQ] = ACTIONS(3250), - [anon_sym_COLON] = ACTIONS(3248), - [anon_sym_DOT_DOT] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3250), - [anon_sym_DASH] = ACTIONS(3250), - [anon_sym_STAR] = ACTIONS(3248), - [anon_sym_SLASH] = ACTIONS(3248), - [anon_sym_PERCENT] = ACTIONS(3248), - [anon_sym_EQ_EQ] = ACTIONS(3248), - [anon_sym_BANG_EQ] = ACTIONS(3248), - [anon_sym_AMP_AMP] = ACTIONS(3248), - [anon_sym_PIPE_PIPE] = ACTIONS(3248), - [anon_sym_GT] = ACTIONS(3250), - [anon_sym_LT] = ACTIONS(3250), - [anon_sym_GT_EQ] = ACTIONS(3248), - [anon_sym_LT_EQ] = ACTIONS(3248), - [anon_sym_PLUS_EQ] = ACTIONS(3248), - [anon_sym_DASH_EQ] = ACTIONS(3248), - [anon_sym_if] = ACTIONS(3250), - [anon_sym_match] = ACTIONS(3250), - [anon_sym_EQ_GT] = ACTIONS(3248), - [anon_sym_while] = ACTIONS(3250), - [anon_sym_for] = ACTIONS(3250), - [anon_sym_asyncfor] = ACTIONS(3248), - [anon_sym_transform] = ACTIONS(3250), - [anon_sym_filter] = ACTIONS(3250), - [anon_sym_find] = ACTIONS(3250), - [anon_sym_remove] = ACTIONS(3250), - [anon_sym_reduce] = ACTIONS(3250), - [anon_sym_select] = ACTIONS(3250), - [anon_sym_insert] = ACTIONS(3250), - [anon_sym_async] = ACTIONS(3250), - [anon_sym_PIPE] = ACTIONS(3250), - [anon_sym_table] = ACTIONS(3250), - [anon_sym_assert] = ACTIONS(3250), - [anon_sym_assert_equal] = ACTIONS(3250), - [anon_sym_download] = ACTIONS(3250), - [anon_sym_help] = ACTIONS(3250), - [anon_sym_length] = ACTIONS(3250), - [anon_sym_output] = ACTIONS(3250), - [anon_sym_output_error] = ACTIONS(3250), - [anon_sym_type] = ACTIONS(3250), - [anon_sym_append] = ACTIONS(3250), - [anon_sym_metadata] = ACTIONS(3250), - [anon_sym_move] = ACTIONS(3250), - [anon_sym_read] = ACTIONS(3250), - [anon_sym_workdir] = ACTIONS(3250), - [anon_sym_write] = ACTIONS(3250), - [anon_sym_from_json] = ACTIONS(3250), - [anon_sym_to_json] = ACTIONS(3250), - [anon_sym_to_string] = ACTIONS(3250), - [anon_sym_to_float] = ACTIONS(3250), - [anon_sym_bash] = ACTIONS(3250), - [anon_sym_fish] = ACTIONS(3250), - [anon_sym_raw] = ACTIONS(3250), - [anon_sym_sh] = ACTIONS(3250), - [anon_sym_zsh] = ACTIONS(3250), - [anon_sym_random] = ACTIONS(3250), - [anon_sym_random_boolean] = ACTIONS(3250), - [anon_sym_random_float] = ACTIONS(3250), - [anon_sym_random_integer] = ACTIONS(3250), - [anon_sym_columns] = ACTIONS(3250), - [anon_sym_rows] = ACTIONS(3250), - [anon_sym_reverse] = ACTIONS(3250), - }, - [722] = { - [sym_math_operator] = STATE(1455), - [sym_logic_operator] = STATE(1453), - [ts_builtin_sym_end] = ACTIONS(3240), - [sym_identifier] = ACTIONS(3242), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3240), - [anon_sym_SEMI] = ACTIONS(3240), - [anon_sym_LPAREN] = ACTIONS(3240), - [anon_sym_RPAREN] = ACTIONS(3240), - [sym_integer] = ACTIONS(3242), - [sym_float] = ACTIONS(3240), - [sym_string] = ACTIONS(3240), - [anon_sym_true] = ACTIONS(3242), - [anon_sym_false] = ACTIONS(3242), - [anon_sym_LBRACK] = ACTIONS(3240), - [anon_sym_EQ] = ACTIONS(3242), - [anon_sym_COLON] = ACTIONS(495), - [anon_sym_DOT_DOT] = ACTIONS(3240), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_PLUS_EQ] = ACTIONS(3240), - [anon_sym_DASH_EQ] = ACTIONS(3240), - [anon_sym_if] = ACTIONS(3242), - [anon_sym_match] = ACTIONS(3242), - [anon_sym_EQ_GT] = ACTIONS(3240), - [anon_sym_while] = ACTIONS(3242), - [anon_sym_for] = ACTIONS(3242), - [anon_sym_asyncfor] = ACTIONS(3240), - [anon_sym_transform] = ACTIONS(3242), - [anon_sym_filter] = ACTIONS(3242), - [anon_sym_find] = ACTIONS(3242), - [anon_sym_remove] = ACTIONS(3242), - [anon_sym_reduce] = ACTIONS(3242), - [anon_sym_select] = ACTIONS(3242), - [anon_sym_insert] = ACTIONS(3242), - [anon_sym_async] = ACTIONS(3242), - [anon_sym_PIPE] = ACTIONS(3242), - [anon_sym_table] = ACTIONS(3242), - [anon_sym_assert] = ACTIONS(3242), - [anon_sym_assert_equal] = ACTIONS(3242), - [anon_sym_download] = ACTIONS(3242), - [anon_sym_help] = ACTIONS(3242), - [anon_sym_length] = ACTIONS(3242), - [anon_sym_output] = ACTIONS(3242), - [anon_sym_output_error] = ACTIONS(3242), - [anon_sym_type] = ACTIONS(3242), - [anon_sym_append] = ACTIONS(3242), - [anon_sym_metadata] = ACTIONS(3242), - [anon_sym_move] = ACTIONS(3242), - [anon_sym_read] = ACTIONS(3242), - [anon_sym_workdir] = ACTIONS(3242), - [anon_sym_write] = ACTIONS(3242), - [anon_sym_from_json] = ACTIONS(3242), - [anon_sym_to_json] = ACTIONS(3242), - [anon_sym_to_string] = ACTIONS(3242), - [anon_sym_to_float] = ACTIONS(3242), - [anon_sym_bash] = ACTIONS(3242), - [anon_sym_fish] = ACTIONS(3242), - [anon_sym_raw] = ACTIONS(3242), - [anon_sym_sh] = ACTIONS(3242), - [anon_sym_zsh] = ACTIONS(3242), - [anon_sym_random] = ACTIONS(3242), - [anon_sym_random_boolean] = ACTIONS(3242), - [anon_sym_random_float] = ACTIONS(3242), - [anon_sym_random_integer] = ACTIONS(3242), - [anon_sym_columns] = ACTIONS(3242), - [anon_sym_rows] = ACTIONS(3242), - [anon_sym_reverse] = ACTIONS(3242), - }, - [723] = { - [ts_builtin_sym_end] = ACTIONS(3317), - [sym_identifier] = ACTIONS(3319), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3317), - [anon_sym_RBRACE] = ACTIONS(3317), - [anon_sym_SEMI] = ACTIONS(3317), - [anon_sym_LPAREN] = ACTIONS(3317), - [anon_sym_RPAREN] = ACTIONS(3317), - [anon_sym_COMMA] = ACTIONS(3317), - [sym_integer] = ACTIONS(3319), - [sym_float] = ACTIONS(3317), - [sym_string] = ACTIONS(3317), - [anon_sym_true] = ACTIONS(3319), - [anon_sym_false] = ACTIONS(3319), - [anon_sym_LBRACK] = ACTIONS(3317), - [anon_sym_RBRACK] = ACTIONS(3317), - [anon_sym_EQ] = ACTIONS(3319), - [anon_sym_COLON] = ACTIONS(3317), - [anon_sym_DOT_DOT] = ACTIONS(3317), - [anon_sym_PLUS] = ACTIONS(3319), - [anon_sym_DASH] = ACTIONS(3319), - [anon_sym_STAR] = ACTIONS(3317), - [anon_sym_SLASH] = ACTIONS(3317), - [anon_sym_PERCENT] = ACTIONS(3317), - [anon_sym_EQ_EQ] = ACTIONS(3317), - [anon_sym_BANG_EQ] = ACTIONS(3317), - [anon_sym_AMP_AMP] = ACTIONS(3317), - [anon_sym_PIPE_PIPE] = ACTIONS(3317), - [anon_sym_GT] = ACTIONS(3319), - [anon_sym_LT] = ACTIONS(3319), - [anon_sym_GT_EQ] = ACTIONS(3317), - [anon_sym_LT_EQ] = ACTIONS(3317), - [anon_sym_PLUS_EQ] = ACTIONS(3317), - [anon_sym_DASH_EQ] = ACTIONS(3317), - [anon_sym_if] = ACTIONS(3319), - [anon_sym_match] = ACTIONS(3319), - [anon_sym_EQ_GT] = ACTIONS(3317), - [anon_sym_while] = ACTIONS(3319), - [anon_sym_for] = ACTIONS(3319), - [anon_sym_asyncfor] = ACTIONS(3317), - [anon_sym_transform] = ACTIONS(3319), - [anon_sym_filter] = ACTIONS(3319), - [anon_sym_find] = ACTIONS(3319), - [anon_sym_remove] = ACTIONS(3319), - [anon_sym_reduce] = ACTIONS(3319), - [anon_sym_select] = ACTIONS(3319), - [anon_sym_insert] = ACTIONS(3319), - [anon_sym_async] = ACTIONS(3319), - [anon_sym_PIPE] = ACTIONS(3319), - [anon_sym_table] = ACTIONS(3319), - [anon_sym_assert] = ACTIONS(3319), - [anon_sym_assert_equal] = ACTIONS(3319), - [anon_sym_download] = ACTIONS(3319), - [anon_sym_help] = ACTIONS(3319), - [anon_sym_length] = ACTIONS(3319), - [anon_sym_output] = ACTIONS(3319), - [anon_sym_output_error] = ACTIONS(3319), - [anon_sym_type] = ACTIONS(3319), - [anon_sym_append] = ACTIONS(3319), - [anon_sym_metadata] = ACTIONS(3319), - [anon_sym_move] = ACTIONS(3319), - [anon_sym_read] = ACTIONS(3319), - [anon_sym_workdir] = ACTIONS(3319), - [anon_sym_write] = ACTIONS(3319), - [anon_sym_from_json] = ACTIONS(3319), - [anon_sym_to_json] = ACTIONS(3319), - [anon_sym_to_string] = ACTIONS(3319), - [anon_sym_to_float] = ACTIONS(3319), - [anon_sym_bash] = ACTIONS(3319), - [anon_sym_fish] = ACTIONS(3319), - [anon_sym_raw] = ACTIONS(3319), - [anon_sym_sh] = ACTIONS(3319), - [anon_sym_zsh] = ACTIONS(3319), - [anon_sym_random] = ACTIONS(3319), - [anon_sym_random_boolean] = ACTIONS(3319), - [anon_sym_random_float] = ACTIONS(3319), - [anon_sym_random_integer] = ACTIONS(3319), - [anon_sym_columns] = ACTIONS(3319), - [anon_sym_rows] = ACTIONS(3319), - [anon_sym_reverse] = ACTIONS(3319), - }, - [724] = { - [sym_else_if] = STATE(746), - [sym_else] = STATE(792), - [aux_sym_if_else_repeat1] = STATE(746), - [ts_builtin_sym_end] = ACTIONS(3219), - [sym_identifier] = ACTIONS(3221), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_RPAREN] = ACTIONS(3219), - [sym_integer] = ACTIONS(3221), - [sym_float] = ACTIONS(3219), - [sym_string] = ACTIONS(3219), - [anon_sym_true] = ACTIONS(3221), - [anon_sym_false] = ACTIONS(3221), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_COLON] = ACTIONS(3219), - [anon_sym_DOT_DOT] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3221), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_PERCENT] = ACTIONS(3219), - [anon_sym_EQ_EQ] = ACTIONS(3219), - [anon_sym_BANG_EQ] = ACTIONS(3219), - [anon_sym_AMP_AMP] = ACTIONS(3219), - [anon_sym_PIPE_PIPE] = ACTIONS(3219), - [anon_sym_GT] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3221), - [anon_sym_GT_EQ] = ACTIONS(3219), - [anon_sym_LT_EQ] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3221), - [anon_sym_elseif] = ACTIONS(3572), - [anon_sym_else] = ACTIONS(3584), - [anon_sym_match] = ACTIONS(3221), - [anon_sym_EQ_GT] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3221), - [anon_sym_for] = ACTIONS(3221), - [anon_sym_asyncfor] = ACTIONS(3219), - [anon_sym_transform] = ACTIONS(3221), - [anon_sym_filter] = ACTIONS(3221), - [anon_sym_find] = ACTIONS(3221), - [anon_sym_remove] = ACTIONS(3221), - [anon_sym_reduce] = ACTIONS(3221), - [anon_sym_select] = ACTIONS(3221), - [anon_sym_insert] = ACTIONS(3221), - [anon_sym_async] = ACTIONS(3221), - [anon_sym_PIPE] = ACTIONS(3221), - [anon_sym_table] = ACTIONS(3221), - [anon_sym_assert] = ACTIONS(3221), - [anon_sym_assert_equal] = ACTIONS(3221), - [anon_sym_download] = ACTIONS(3221), - [anon_sym_help] = ACTIONS(3221), - [anon_sym_length] = ACTIONS(3221), - [anon_sym_output] = ACTIONS(3221), - [anon_sym_output_error] = ACTIONS(3221), - [anon_sym_type] = ACTIONS(3221), - [anon_sym_append] = ACTIONS(3221), - [anon_sym_metadata] = ACTIONS(3221), - [anon_sym_move] = ACTIONS(3221), - [anon_sym_read] = ACTIONS(3221), - [anon_sym_workdir] = ACTIONS(3221), - [anon_sym_write] = ACTIONS(3221), - [anon_sym_from_json] = ACTIONS(3221), - [anon_sym_to_json] = ACTIONS(3221), - [anon_sym_to_string] = ACTIONS(3221), - [anon_sym_to_float] = ACTIONS(3221), - [anon_sym_bash] = ACTIONS(3221), - [anon_sym_fish] = ACTIONS(3221), - [anon_sym_raw] = ACTIONS(3221), - [anon_sym_sh] = ACTIONS(3221), - [anon_sym_zsh] = ACTIONS(3221), - [anon_sym_random] = ACTIONS(3221), - [anon_sym_random_boolean] = ACTIONS(3221), - [anon_sym_random_float] = ACTIONS(3221), - [anon_sym_random_integer] = ACTIONS(3221), - [anon_sym_columns] = ACTIONS(3221), - [anon_sym_rows] = ACTIONS(3221), - [anon_sym_reverse] = ACTIONS(3221), - }, - [725] = { - [ts_builtin_sym_end] = ACTIONS(3325), - [sym_identifier] = ACTIONS(3327), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3325), - [anon_sym_RBRACE] = ACTIONS(3325), - [anon_sym_SEMI] = ACTIONS(3325), - [anon_sym_LPAREN] = ACTIONS(3325), - [anon_sym_RPAREN] = ACTIONS(3325), - [anon_sym_COMMA] = ACTIONS(3325), - [sym_integer] = ACTIONS(3327), - [sym_float] = ACTIONS(3325), - [sym_string] = ACTIONS(3325), - [anon_sym_true] = ACTIONS(3327), - [anon_sym_false] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3325), - [anon_sym_RBRACK] = ACTIONS(3325), - [anon_sym_EQ] = ACTIONS(3327), - [anon_sym_COLON] = ACTIONS(3325), - [anon_sym_DOT_DOT] = ACTIONS(3325), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_STAR] = ACTIONS(3325), - [anon_sym_SLASH] = ACTIONS(3325), - [anon_sym_PERCENT] = ACTIONS(3325), - [anon_sym_EQ_EQ] = ACTIONS(3325), - [anon_sym_BANG_EQ] = ACTIONS(3325), - [anon_sym_AMP_AMP] = ACTIONS(3325), - [anon_sym_PIPE_PIPE] = ACTIONS(3325), - [anon_sym_GT] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_GT_EQ] = ACTIONS(3325), - [anon_sym_LT_EQ] = ACTIONS(3325), - [anon_sym_PLUS_EQ] = ACTIONS(3325), - [anon_sym_DASH_EQ] = ACTIONS(3325), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_match] = ACTIONS(3327), - [anon_sym_EQ_GT] = ACTIONS(3325), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_asyncfor] = ACTIONS(3325), - [anon_sym_transform] = ACTIONS(3327), - [anon_sym_filter] = ACTIONS(3327), - [anon_sym_find] = ACTIONS(3327), - [anon_sym_remove] = ACTIONS(3327), - [anon_sym_reduce] = ACTIONS(3327), - [anon_sym_select] = ACTIONS(3327), - [anon_sym_insert] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_PIPE] = ACTIONS(3327), - [anon_sym_table] = ACTIONS(3327), - [anon_sym_assert] = ACTIONS(3327), - [anon_sym_assert_equal] = ACTIONS(3327), - [anon_sym_download] = ACTIONS(3327), - [anon_sym_help] = ACTIONS(3327), - [anon_sym_length] = ACTIONS(3327), - [anon_sym_output] = ACTIONS(3327), - [anon_sym_output_error] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_append] = ACTIONS(3327), - [anon_sym_metadata] = ACTIONS(3327), - [anon_sym_move] = ACTIONS(3327), - [anon_sym_read] = ACTIONS(3327), - [anon_sym_workdir] = ACTIONS(3327), - [anon_sym_write] = ACTIONS(3327), - [anon_sym_from_json] = ACTIONS(3327), - [anon_sym_to_json] = ACTIONS(3327), - [anon_sym_to_string] = ACTIONS(3327), - [anon_sym_to_float] = ACTIONS(3327), - [anon_sym_bash] = ACTIONS(3327), - [anon_sym_fish] = ACTIONS(3327), - [anon_sym_raw] = ACTIONS(3327), - [anon_sym_sh] = ACTIONS(3327), - [anon_sym_zsh] = ACTIONS(3327), - [anon_sym_random] = ACTIONS(3327), - [anon_sym_random_boolean] = ACTIONS(3327), - [anon_sym_random_float] = ACTIONS(3327), - [anon_sym_random_integer] = ACTIONS(3327), - [anon_sym_columns] = ACTIONS(3327), - [anon_sym_rows] = ACTIONS(3327), - [anon_sym_reverse] = ACTIONS(3327), - }, - [726] = { - [sym_expression] = STATE(968), - [sym__expression_kind] = STATE(1002), - [aux_sym__expression_list] = STATE(709), - [sym_value] = STATE(1002), - [sym_boolean] = STATE(996), - [sym_list] = STATE(996), - [sym_map] = STATE(996), - [sym_index] = STATE(1002), - [sym_math] = STATE(1002), - [sym_logic] = STATE(1002), - [sym_identifier_list] = STATE(1762), - [sym_table] = STATE(996), - [sym_function] = STATE(996), - [sym_function_call] = STATE(1002), - [sym__context_defined_function] = STATE(1009), - [sym_built_in_function] = STATE(1009), - [sym__built_in_function_name] = STATE(726), - [sym_identifier] = ACTIONS(3576), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3503), - [anon_sym_RBRACE] = ACTIONS(2473), - [anon_sym_SEMI] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(3505), - [anon_sym_RPAREN] = ACTIONS(2473), - [anon_sym_COMMA] = ACTIONS(2473), - [sym_integer] = ACTIONS(3507), - [sym_float] = ACTIONS(3509), - [sym_string] = ACTIONS(3509), - [anon_sym_true] = ACTIONS(3511), - [anon_sym_false] = ACTIONS(3511), - [anon_sym_LBRACK] = ACTIONS(3513), - [anon_sym_RBRACK] = ACTIONS(2473), - [anon_sym_COLON] = ACTIONS(2473), - [anon_sym_DOT_DOT] = ACTIONS(2473), - [anon_sym_PLUS] = ACTIONS(2473), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2473), - [anon_sym_SLASH] = ACTIONS(2473), - [anon_sym_PERCENT] = ACTIONS(2473), - [anon_sym_EQ_EQ] = ACTIONS(2473), - [anon_sym_BANG_EQ] = ACTIONS(2473), - [anon_sym_AMP_AMP] = ACTIONS(2473), - [anon_sym_PIPE_PIPE] = ACTIONS(2473), - [anon_sym_GT] = ACTIONS(2475), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_GT_EQ] = ACTIONS(2473), - [anon_sym_LT_EQ] = ACTIONS(2473), - [anon_sym_EQ_GT] = ACTIONS(3578), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(3580), - [anon_sym_assert] = ACTIONS(3582), - [anon_sym_assert_equal] = ACTIONS(3582), - [anon_sym_download] = ACTIONS(3582), - [anon_sym_help] = ACTIONS(3582), - [anon_sym_length] = ACTIONS(3582), - [anon_sym_output] = ACTIONS(3582), - [anon_sym_output_error] = ACTIONS(3582), - [anon_sym_type] = ACTIONS(3582), - [anon_sym_append] = ACTIONS(3582), - [anon_sym_metadata] = ACTIONS(3582), - [anon_sym_move] = ACTIONS(3582), - [anon_sym_read] = ACTIONS(3582), - [anon_sym_workdir] = ACTIONS(3582), - [anon_sym_write] = ACTIONS(3582), - [anon_sym_from_json] = ACTIONS(3582), - [anon_sym_to_json] = ACTIONS(3582), - [anon_sym_to_string] = ACTIONS(3582), - [anon_sym_to_float] = ACTIONS(3582), - [anon_sym_bash] = ACTIONS(3582), - [anon_sym_fish] = ACTIONS(3582), - [anon_sym_raw] = ACTIONS(3582), - [anon_sym_sh] = ACTIONS(3582), - [anon_sym_zsh] = ACTIONS(3582), - [anon_sym_random] = ACTIONS(3582), - [anon_sym_random_boolean] = ACTIONS(3582), - [anon_sym_random_float] = ACTIONS(3582), - [anon_sym_random_integer] = ACTIONS(3582), - [anon_sym_columns] = ACTIONS(3582), - [anon_sym_rows] = ACTIONS(3582), - [anon_sym_reverse] = ACTIONS(3582), - }, - [727] = { - [ts_builtin_sym_end] = ACTIONS(3329), - [sym_identifier] = ACTIONS(3331), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3329), - [anon_sym_RBRACE] = ACTIONS(3329), - [anon_sym_SEMI] = ACTIONS(3329), - [anon_sym_LPAREN] = ACTIONS(3329), - [anon_sym_RPAREN] = ACTIONS(3329), - [anon_sym_COMMA] = ACTIONS(3329), - [sym_integer] = ACTIONS(3331), - [sym_float] = ACTIONS(3329), - [sym_string] = ACTIONS(3329), - [anon_sym_true] = ACTIONS(3331), - [anon_sym_false] = ACTIONS(3331), - [anon_sym_LBRACK] = ACTIONS(3329), - [anon_sym_RBRACK] = ACTIONS(3329), - [anon_sym_EQ] = ACTIONS(3331), - [anon_sym_COLON] = ACTIONS(3329), - [anon_sym_DOT_DOT] = ACTIONS(3329), - [anon_sym_PLUS] = ACTIONS(3331), - [anon_sym_DASH] = ACTIONS(3331), - [anon_sym_STAR] = ACTIONS(3329), - [anon_sym_SLASH] = ACTIONS(3329), - [anon_sym_PERCENT] = ACTIONS(3329), - [anon_sym_EQ_EQ] = ACTIONS(3329), - [anon_sym_BANG_EQ] = ACTIONS(3329), - [anon_sym_AMP_AMP] = ACTIONS(3329), - [anon_sym_PIPE_PIPE] = ACTIONS(3329), - [anon_sym_GT] = ACTIONS(3331), - [anon_sym_LT] = ACTIONS(3331), - [anon_sym_GT_EQ] = ACTIONS(3329), - [anon_sym_LT_EQ] = ACTIONS(3329), - [anon_sym_PLUS_EQ] = ACTIONS(3329), - [anon_sym_DASH_EQ] = ACTIONS(3329), - [anon_sym_if] = ACTIONS(3331), - [anon_sym_match] = ACTIONS(3331), - [anon_sym_EQ_GT] = ACTIONS(3329), - [anon_sym_while] = ACTIONS(3331), - [anon_sym_for] = ACTIONS(3331), - [anon_sym_asyncfor] = ACTIONS(3329), - [anon_sym_transform] = ACTIONS(3331), - [anon_sym_filter] = ACTIONS(3331), - [anon_sym_find] = ACTIONS(3331), - [anon_sym_remove] = ACTIONS(3331), - [anon_sym_reduce] = ACTIONS(3331), - [anon_sym_select] = ACTIONS(3331), - [anon_sym_insert] = ACTIONS(3331), - [anon_sym_async] = ACTIONS(3331), - [anon_sym_PIPE] = ACTIONS(3331), - [anon_sym_table] = ACTIONS(3331), - [anon_sym_assert] = ACTIONS(3331), - [anon_sym_assert_equal] = ACTIONS(3331), - [anon_sym_download] = ACTIONS(3331), - [anon_sym_help] = ACTIONS(3331), - [anon_sym_length] = ACTIONS(3331), - [anon_sym_output] = ACTIONS(3331), - [anon_sym_output_error] = ACTIONS(3331), - [anon_sym_type] = ACTIONS(3331), - [anon_sym_append] = ACTIONS(3331), - [anon_sym_metadata] = ACTIONS(3331), - [anon_sym_move] = ACTIONS(3331), - [anon_sym_read] = ACTIONS(3331), - [anon_sym_workdir] = ACTIONS(3331), - [anon_sym_write] = ACTIONS(3331), - [anon_sym_from_json] = ACTIONS(3331), - [anon_sym_to_json] = ACTIONS(3331), - [anon_sym_to_string] = ACTIONS(3331), - [anon_sym_to_float] = ACTIONS(3331), - [anon_sym_bash] = ACTIONS(3331), - [anon_sym_fish] = ACTIONS(3331), - [anon_sym_raw] = ACTIONS(3331), - [anon_sym_sh] = ACTIONS(3331), - [anon_sym_zsh] = ACTIONS(3331), - [anon_sym_random] = ACTIONS(3331), - [anon_sym_random_boolean] = ACTIONS(3331), - [anon_sym_random_float] = ACTIONS(3331), - [anon_sym_random_integer] = ACTIONS(3331), - [anon_sym_columns] = ACTIONS(3331), - [anon_sym_rows] = ACTIONS(3331), - [anon_sym_reverse] = ACTIONS(3331), - }, - [728] = { - [ts_builtin_sym_end] = ACTIONS(3337), - [sym_identifier] = ACTIONS(3339), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3337), - [anon_sym_RBRACE] = ACTIONS(3337), - [anon_sym_SEMI] = ACTIONS(3337), - [anon_sym_LPAREN] = ACTIONS(3337), - [anon_sym_RPAREN] = ACTIONS(3337), - [anon_sym_COMMA] = ACTIONS(3337), - [sym_integer] = ACTIONS(3339), - [sym_float] = ACTIONS(3337), - [sym_string] = ACTIONS(3337), - [anon_sym_true] = ACTIONS(3339), - [anon_sym_false] = ACTIONS(3339), - [anon_sym_LBRACK] = ACTIONS(3337), - [anon_sym_RBRACK] = ACTIONS(3337), - [anon_sym_EQ] = ACTIONS(3339), - [anon_sym_COLON] = ACTIONS(3337), - [anon_sym_DOT_DOT] = ACTIONS(3337), - [anon_sym_PLUS] = ACTIONS(3339), - [anon_sym_DASH] = ACTIONS(3339), - [anon_sym_STAR] = ACTIONS(3337), - [anon_sym_SLASH] = ACTIONS(3337), - [anon_sym_PERCENT] = ACTIONS(3337), - [anon_sym_EQ_EQ] = ACTIONS(3337), - [anon_sym_BANG_EQ] = ACTIONS(3337), - [anon_sym_AMP_AMP] = ACTIONS(3337), - [anon_sym_PIPE_PIPE] = ACTIONS(3337), - [anon_sym_GT] = ACTIONS(3339), - [anon_sym_LT] = ACTIONS(3339), - [anon_sym_GT_EQ] = ACTIONS(3337), - [anon_sym_LT_EQ] = ACTIONS(3337), - [anon_sym_PLUS_EQ] = ACTIONS(3337), - [anon_sym_DASH_EQ] = ACTIONS(3337), - [anon_sym_if] = ACTIONS(3339), - [anon_sym_match] = ACTIONS(3339), - [anon_sym_EQ_GT] = ACTIONS(3337), - [anon_sym_while] = ACTIONS(3339), - [anon_sym_for] = ACTIONS(3339), - [anon_sym_asyncfor] = ACTIONS(3337), - [anon_sym_transform] = ACTIONS(3339), - [anon_sym_filter] = ACTIONS(3339), - [anon_sym_find] = ACTIONS(3339), - [anon_sym_remove] = ACTIONS(3339), - [anon_sym_reduce] = ACTIONS(3339), - [anon_sym_select] = ACTIONS(3339), - [anon_sym_insert] = ACTIONS(3339), - [anon_sym_async] = ACTIONS(3339), - [anon_sym_PIPE] = ACTIONS(3339), - [anon_sym_table] = ACTIONS(3339), - [anon_sym_assert] = ACTIONS(3339), - [anon_sym_assert_equal] = ACTIONS(3339), - [anon_sym_download] = ACTIONS(3339), - [anon_sym_help] = ACTIONS(3339), - [anon_sym_length] = ACTIONS(3339), - [anon_sym_output] = ACTIONS(3339), - [anon_sym_output_error] = ACTIONS(3339), - [anon_sym_type] = ACTIONS(3339), - [anon_sym_append] = ACTIONS(3339), - [anon_sym_metadata] = ACTIONS(3339), - [anon_sym_move] = ACTIONS(3339), - [anon_sym_read] = ACTIONS(3339), - [anon_sym_workdir] = ACTIONS(3339), - [anon_sym_write] = ACTIONS(3339), - [anon_sym_from_json] = ACTIONS(3339), - [anon_sym_to_json] = ACTIONS(3339), - [anon_sym_to_string] = ACTIONS(3339), - [anon_sym_to_float] = ACTIONS(3339), - [anon_sym_bash] = ACTIONS(3339), - [anon_sym_fish] = ACTIONS(3339), - [anon_sym_raw] = ACTIONS(3339), - [anon_sym_sh] = ACTIONS(3339), - [anon_sym_zsh] = ACTIONS(3339), - [anon_sym_random] = ACTIONS(3339), - [anon_sym_random_boolean] = ACTIONS(3339), - [anon_sym_random_float] = ACTIONS(3339), - [anon_sym_random_integer] = ACTIONS(3339), - [anon_sym_columns] = ACTIONS(3339), - [anon_sym_rows] = ACTIONS(3339), - [anon_sym_reverse] = ACTIONS(3339), - }, - [729] = { - [ts_builtin_sym_end] = ACTIONS(3341), - [sym_identifier] = ACTIONS(3343), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3341), - [anon_sym_RBRACE] = ACTIONS(3341), - [anon_sym_SEMI] = ACTIONS(3341), - [anon_sym_LPAREN] = ACTIONS(3341), - [anon_sym_RPAREN] = ACTIONS(3341), - [anon_sym_COMMA] = ACTIONS(3341), - [sym_integer] = ACTIONS(3343), - [sym_float] = ACTIONS(3341), - [sym_string] = ACTIONS(3341), - [anon_sym_true] = ACTIONS(3343), - [anon_sym_false] = ACTIONS(3343), - [anon_sym_LBRACK] = ACTIONS(3341), - [anon_sym_RBRACK] = ACTIONS(3341), - [anon_sym_EQ] = ACTIONS(3343), - [anon_sym_COLON] = ACTIONS(3341), - [anon_sym_DOT_DOT] = ACTIONS(3341), - [anon_sym_PLUS] = ACTIONS(3343), - [anon_sym_DASH] = ACTIONS(3343), - [anon_sym_STAR] = ACTIONS(3341), - [anon_sym_SLASH] = ACTIONS(3341), - [anon_sym_PERCENT] = ACTIONS(3341), - [anon_sym_EQ_EQ] = ACTIONS(3341), - [anon_sym_BANG_EQ] = ACTIONS(3341), - [anon_sym_AMP_AMP] = ACTIONS(3341), - [anon_sym_PIPE_PIPE] = ACTIONS(3341), - [anon_sym_GT] = ACTIONS(3343), - [anon_sym_LT] = ACTIONS(3343), - [anon_sym_GT_EQ] = ACTIONS(3341), - [anon_sym_LT_EQ] = ACTIONS(3341), - [anon_sym_PLUS_EQ] = ACTIONS(3341), - [anon_sym_DASH_EQ] = ACTIONS(3341), - [anon_sym_if] = ACTIONS(3343), - [anon_sym_match] = ACTIONS(3343), - [anon_sym_EQ_GT] = ACTIONS(3341), - [anon_sym_while] = ACTIONS(3343), - [anon_sym_for] = ACTIONS(3343), - [anon_sym_asyncfor] = ACTIONS(3341), - [anon_sym_transform] = ACTIONS(3343), - [anon_sym_filter] = ACTIONS(3343), - [anon_sym_find] = ACTIONS(3343), - [anon_sym_remove] = ACTIONS(3343), - [anon_sym_reduce] = ACTIONS(3343), - [anon_sym_select] = ACTIONS(3343), - [anon_sym_insert] = ACTIONS(3343), - [anon_sym_async] = ACTIONS(3343), - [anon_sym_PIPE] = ACTIONS(3343), - [anon_sym_table] = ACTIONS(3343), - [anon_sym_assert] = ACTIONS(3343), - [anon_sym_assert_equal] = ACTIONS(3343), - [anon_sym_download] = ACTIONS(3343), - [anon_sym_help] = ACTIONS(3343), - [anon_sym_length] = ACTIONS(3343), - [anon_sym_output] = ACTIONS(3343), - [anon_sym_output_error] = ACTIONS(3343), - [anon_sym_type] = ACTIONS(3343), - [anon_sym_append] = ACTIONS(3343), - [anon_sym_metadata] = ACTIONS(3343), - [anon_sym_move] = ACTIONS(3343), - [anon_sym_read] = ACTIONS(3343), - [anon_sym_workdir] = ACTIONS(3343), - [anon_sym_write] = ACTIONS(3343), - [anon_sym_from_json] = ACTIONS(3343), - [anon_sym_to_json] = ACTIONS(3343), - [anon_sym_to_string] = ACTIONS(3343), - [anon_sym_to_float] = ACTIONS(3343), - [anon_sym_bash] = ACTIONS(3343), - [anon_sym_fish] = ACTIONS(3343), - [anon_sym_raw] = ACTIONS(3343), - [anon_sym_sh] = ACTIONS(3343), - [anon_sym_zsh] = ACTIONS(3343), - [anon_sym_random] = ACTIONS(3343), - [anon_sym_random_boolean] = ACTIONS(3343), - [anon_sym_random_float] = ACTIONS(3343), - [anon_sym_random_integer] = ACTIONS(3343), - [anon_sym_columns] = ACTIONS(3343), - [anon_sym_rows] = ACTIONS(3343), - [anon_sym_reverse] = ACTIONS(3343), - }, - [730] = { - [sym_math_operator] = STATE(1455), - [sym_logic_operator] = STATE(1453), - [ts_builtin_sym_end] = ACTIONS(3281), - [sym_identifier] = ACTIONS(3283), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3281), - [anon_sym_RBRACE] = ACTIONS(3281), - [anon_sym_SEMI] = ACTIONS(3281), - [anon_sym_LPAREN] = ACTIONS(3281), - [anon_sym_RPAREN] = ACTIONS(3281), - [sym_integer] = ACTIONS(3283), - [sym_float] = ACTIONS(3281), - [sym_string] = ACTIONS(3281), - [anon_sym_true] = ACTIONS(3283), - [anon_sym_false] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3281), - [anon_sym_EQ] = ACTIONS(3283), - [anon_sym_COLON] = ACTIONS(495), - [anon_sym_DOT_DOT] = ACTIONS(3281), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_PLUS_EQ] = ACTIONS(3281), - [anon_sym_DASH_EQ] = ACTIONS(3281), - [anon_sym_if] = ACTIONS(3283), - [anon_sym_match] = ACTIONS(3283), - [anon_sym_EQ_GT] = ACTIONS(3281), - [anon_sym_while] = ACTIONS(3283), - [anon_sym_for] = ACTIONS(3283), - [anon_sym_asyncfor] = ACTIONS(3281), - [anon_sym_transform] = ACTIONS(3283), - [anon_sym_filter] = ACTIONS(3283), - [anon_sym_find] = ACTIONS(3283), - [anon_sym_remove] = ACTIONS(3283), - [anon_sym_reduce] = ACTIONS(3283), - [anon_sym_select] = ACTIONS(3283), - [anon_sym_insert] = ACTIONS(3283), - [anon_sym_async] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(3283), - [anon_sym_table] = ACTIONS(3283), - [anon_sym_assert] = ACTIONS(3283), - [anon_sym_assert_equal] = ACTIONS(3283), - [anon_sym_download] = ACTIONS(3283), - [anon_sym_help] = ACTIONS(3283), - [anon_sym_length] = ACTIONS(3283), - [anon_sym_output] = ACTIONS(3283), - [anon_sym_output_error] = ACTIONS(3283), - [anon_sym_type] = ACTIONS(3283), - [anon_sym_append] = ACTIONS(3283), - [anon_sym_metadata] = ACTIONS(3283), - [anon_sym_move] = ACTIONS(3283), - [anon_sym_read] = ACTIONS(3283), - [anon_sym_workdir] = ACTIONS(3283), - [anon_sym_write] = ACTIONS(3283), - [anon_sym_from_json] = ACTIONS(3283), - [anon_sym_to_json] = ACTIONS(3283), - [anon_sym_to_string] = ACTIONS(3283), - [anon_sym_to_float] = ACTIONS(3283), - [anon_sym_bash] = ACTIONS(3283), - [anon_sym_fish] = ACTIONS(3283), - [anon_sym_raw] = ACTIONS(3283), - [anon_sym_sh] = ACTIONS(3283), - [anon_sym_zsh] = ACTIONS(3283), - [anon_sym_random] = ACTIONS(3283), - [anon_sym_random_boolean] = ACTIONS(3283), - [anon_sym_random_float] = ACTIONS(3283), - [anon_sym_random_integer] = ACTIONS(3283), - [anon_sym_columns] = ACTIONS(3283), - [anon_sym_rows] = ACTIONS(3283), - [anon_sym_reverse] = ACTIONS(3283), - }, - [731] = { - [ts_builtin_sym_end] = ACTIONS(3296), - [sym_identifier] = ACTIONS(3298), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3296), - [anon_sym_RPAREN] = ACTIONS(3296), - [anon_sym_COMMA] = ACTIONS(3296), - [sym_integer] = ACTIONS(3298), - [sym_float] = ACTIONS(3296), - [sym_string] = ACTIONS(3296), - [anon_sym_true] = ACTIONS(3298), - [anon_sym_false] = ACTIONS(3298), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_RBRACK] = ACTIONS(3296), - [anon_sym_EQ] = ACTIONS(3298), - [anon_sym_COLON] = ACTIONS(3296), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3298), - [anon_sym_DASH] = ACTIONS(3298), - [anon_sym_STAR] = ACTIONS(3296), - [anon_sym_SLASH] = ACTIONS(3296), - [anon_sym_PERCENT] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_GT] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3298), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_PLUS_EQ] = ACTIONS(3296), - [anon_sym_DASH_EQ] = ACTIONS(3296), - [anon_sym_if] = ACTIONS(3298), - [anon_sym_match] = ACTIONS(3298), - [anon_sym_EQ_GT] = ACTIONS(3296), - [anon_sym_while] = ACTIONS(3298), - [anon_sym_for] = ACTIONS(3298), - [anon_sym_asyncfor] = ACTIONS(3296), - [anon_sym_transform] = ACTIONS(3298), - [anon_sym_filter] = ACTIONS(3298), - [anon_sym_find] = ACTIONS(3298), - [anon_sym_remove] = ACTIONS(3298), - [anon_sym_reduce] = ACTIONS(3298), - [anon_sym_select] = ACTIONS(3298), - [anon_sym_insert] = ACTIONS(3298), - [anon_sym_async] = ACTIONS(3298), - [anon_sym_PIPE] = ACTIONS(3298), - [anon_sym_table] = ACTIONS(3298), - [anon_sym_assert] = ACTIONS(3298), - [anon_sym_assert_equal] = ACTIONS(3298), - [anon_sym_download] = ACTIONS(3298), - [anon_sym_help] = ACTIONS(3298), - [anon_sym_length] = ACTIONS(3298), - [anon_sym_output] = ACTIONS(3298), - [anon_sym_output_error] = ACTIONS(3298), - [anon_sym_type] = ACTIONS(3298), - [anon_sym_append] = ACTIONS(3298), - [anon_sym_metadata] = ACTIONS(3298), - [anon_sym_move] = ACTIONS(3298), - [anon_sym_read] = ACTIONS(3298), - [anon_sym_workdir] = ACTIONS(3298), - [anon_sym_write] = ACTIONS(3298), - [anon_sym_from_json] = ACTIONS(3298), - [anon_sym_to_json] = ACTIONS(3298), - [anon_sym_to_string] = ACTIONS(3298), - [anon_sym_to_float] = ACTIONS(3298), - [anon_sym_bash] = ACTIONS(3298), - [anon_sym_fish] = ACTIONS(3298), - [anon_sym_raw] = ACTIONS(3298), - [anon_sym_sh] = ACTIONS(3298), - [anon_sym_zsh] = ACTIONS(3298), - [anon_sym_random] = ACTIONS(3298), - [anon_sym_random_boolean] = ACTIONS(3298), - [anon_sym_random_float] = ACTIONS(3298), - [anon_sym_random_integer] = ACTIONS(3298), - [anon_sym_columns] = ACTIONS(3298), - [anon_sym_rows] = ACTIONS(3298), - [anon_sym_reverse] = ACTIONS(3298), - }, - [732] = { - [sym_math_operator] = STATE(1322), - [sym_logic_operator] = STATE(1321), - [ts_builtin_sym_end] = ACTIONS(3275), - [sym_identifier] = ACTIONS(3277), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3275), - [anon_sym_RBRACE] = ACTIONS(3275), - [anon_sym_SEMI] = ACTIONS(3521), - [anon_sym_LPAREN] = ACTIONS(3275), - [anon_sym_RPAREN] = ACTIONS(3275), - [anon_sym_COMMA] = ACTIONS(3275), - [sym_integer] = ACTIONS(3277), - [sym_float] = ACTIONS(3275), - [sym_string] = ACTIONS(3275), - [anon_sym_true] = ACTIONS(3277), - [anon_sym_false] = ACTIONS(3277), - [anon_sym_LBRACK] = ACTIONS(3275), - [anon_sym_RBRACK] = ACTIONS(3275), - [anon_sym_COLON] = ACTIONS(115), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(3277), - [anon_sym_elseif] = ACTIONS(3275), - [anon_sym_else] = ACTIONS(3277), - [anon_sym_match] = ACTIONS(3277), - [anon_sym_EQ_GT] = ACTIONS(3275), - [anon_sym_while] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3277), - [anon_sym_asyncfor] = ACTIONS(3275), - [anon_sym_transform] = ACTIONS(3277), - [anon_sym_filter] = ACTIONS(3277), - [anon_sym_find] = ACTIONS(3277), - [anon_sym_remove] = ACTIONS(3277), - [anon_sym_reduce] = ACTIONS(3277), - [anon_sym_select] = ACTIONS(3277), - [anon_sym_insert] = ACTIONS(3277), - [anon_sym_async] = ACTIONS(3277), - [anon_sym_PIPE] = ACTIONS(3277), - [anon_sym_table] = ACTIONS(3277), - [anon_sym_assert] = ACTIONS(3277), - [anon_sym_assert_equal] = ACTIONS(3277), - [anon_sym_download] = ACTIONS(3277), - [anon_sym_help] = ACTIONS(3277), - [anon_sym_length] = ACTIONS(3277), - [anon_sym_output] = ACTIONS(3277), - [anon_sym_output_error] = ACTIONS(3277), - [anon_sym_type] = ACTIONS(3277), - [anon_sym_append] = ACTIONS(3277), - [anon_sym_metadata] = ACTIONS(3277), - [anon_sym_move] = ACTIONS(3277), - [anon_sym_read] = ACTIONS(3277), - [anon_sym_workdir] = ACTIONS(3277), - [anon_sym_write] = ACTIONS(3277), - [anon_sym_from_json] = ACTIONS(3277), - [anon_sym_to_json] = ACTIONS(3277), - [anon_sym_to_string] = ACTIONS(3277), - [anon_sym_to_float] = ACTIONS(3277), - [anon_sym_bash] = ACTIONS(3277), - [anon_sym_fish] = ACTIONS(3277), - [anon_sym_raw] = ACTIONS(3277), - [anon_sym_sh] = ACTIONS(3277), - [anon_sym_zsh] = ACTIONS(3277), - [anon_sym_random] = ACTIONS(3277), - [anon_sym_random_boolean] = ACTIONS(3277), - [anon_sym_random_float] = ACTIONS(3277), - [anon_sym_random_integer] = ACTIONS(3277), - [anon_sym_columns] = ACTIONS(3277), - [anon_sym_rows] = ACTIONS(3277), - [anon_sym_reverse] = ACTIONS(3277), - }, - [733] = { - [ts_builtin_sym_end] = ACTIONS(3367), - [sym_identifier] = ACTIONS(3369), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3367), - [anon_sym_RBRACE] = ACTIONS(3367), - [anon_sym_SEMI] = ACTIONS(3367), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_RPAREN] = ACTIONS(3367), - [anon_sym_COMMA] = ACTIONS(3367), - [sym_integer] = ACTIONS(3369), - [sym_float] = ACTIONS(3367), - [sym_string] = ACTIONS(3367), - [anon_sym_true] = ACTIONS(3369), - [anon_sym_false] = ACTIONS(3369), - [anon_sym_LBRACK] = ACTIONS(3367), - [anon_sym_RBRACK] = ACTIONS(3367), - [anon_sym_EQ] = ACTIONS(3369), - [anon_sym_COLON] = ACTIONS(3367), - [anon_sym_DOT_DOT] = ACTIONS(3367), - [anon_sym_PLUS] = ACTIONS(3369), - [anon_sym_DASH] = ACTIONS(3369), - [anon_sym_STAR] = ACTIONS(3367), - [anon_sym_SLASH] = ACTIONS(3367), - [anon_sym_PERCENT] = ACTIONS(3367), - [anon_sym_EQ_EQ] = ACTIONS(3367), - [anon_sym_BANG_EQ] = ACTIONS(3367), - [anon_sym_AMP_AMP] = ACTIONS(3367), - [anon_sym_PIPE_PIPE] = ACTIONS(3367), - [anon_sym_GT] = ACTIONS(3369), - [anon_sym_LT] = ACTIONS(3369), - [anon_sym_GT_EQ] = ACTIONS(3367), - [anon_sym_LT_EQ] = ACTIONS(3367), - [anon_sym_PLUS_EQ] = ACTIONS(3367), - [anon_sym_DASH_EQ] = ACTIONS(3367), - [anon_sym_if] = ACTIONS(3369), - [anon_sym_match] = ACTIONS(3369), - [anon_sym_EQ_GT] = ACTIONS(3367), - [anon_sym_while] = ACTIONS(3369), - [anon_sym_for] = ACTIONS(3369), - [anon_sym_asyncfor] = ACTIONS(3367), - [anon_sym_transform] = ACTIONS(3369), - [anon_sym_filter] = ACTIONS(3369), - [anon_sym_find] = ACTIONS(3369), - [anon_sym_remove] = ACTIONS(3369), - [anon_sym_reduce] = ACTIONS(3369), - [anon_sym_select] = ACTIONS(3369), - [anon_sym_insert] = ACTIONS(3369), - [anon_sym_async] = ACTIONS(3369), - [anon_sym_PIPE] = ACTIONS(3369), - [anon_sym_table] = ACTIONS(3369), - [anon_sym_assert] = ACTIONS(3369), - [anon_sym_assert_equal] = ACTIONS(3369), - [anon_sym_download] = ACTIONS(3369), - [anon_sym_help] = ACTIONS(3369), - [anon_sym_length] = ACTIONS(3369), - [anon_sym_output] = ACTIONS(3369), - [anon_sym_output_error] = ACTIONS(3369), - [anon_sym_type] = ACTIONS(3369), - [anon_sym_append] = ACTIONS(3369), - [anon_sym_metadata] = ACTIONS(3369), - [anon_sym_move] = ACTIONS(3369), - [anon_sym_read] = ACTIONS(3369), - [anon_sym_workdir] = ACTIONS(3369), - [anon_sym_write] = ACTIONS(3369), - [anon_sym_from_json] = ACTIONS(3369), - [anon_sym_to_json] = ACTIONS(3369), - [anon_sym_to_string] = ACTIONS(3369), - [anon_sym_to_float] = ACTIONS(3369), - [anon_sym_bash] = ACTIONS(3369), - [anon_sym_fish] = ACTIONS(3369), - [anon_sym_raw] = ACTIONS(3369), - [anon_sym_sh] = ACTIONS(3369), - [anon_sym_zsh] = ACTIONS(3369), - [anon_sym_random] = ACTIONS(3369), - [anon_sym_random_boolean] = ACTIONS(3369), - [anon_sym_random_float] = ACTIONS(3369), - [anon_sym_random_integer] = ACTIONS(3369), - [anon_sym_columns] = ACTIONS(3369), - [anon_sym_rows] = ACTIONS(3369), - [anon_sym_reverse] = ACTIONS(3369), - }, - [734] = { - [ts_builtin_sym_end] = ACTIONS(3379), - [sym_identifier] = ACTIONS(3381), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3379), - [anon_sym_RBRACE] = ACTIONS(3379), - [anon_sym_SEMI] = ACTIONS(3379), - [anon_sym_LPAREN] = ACTIONS(3379), - [anon_sym_RPAREN] = ACTIONS(3379), - [anon_sym_COMMA] = ACTIONS(3379), - [sym_integer] = ACTIONS(3381), - [sym_float] = ACTIONS(3379), - [sym_string] = ACTIONS(3379), - [anon_sym_true] = ACTIONS(3381), - [anon_sym_false] = ACTIONS(3381), - [anon_sym_LBRACK] = ACTIONS(3379), - [anon_sym_RBRACK] = ACTIONS(3379), - [anon_sym_EQ] = ACTIONS(3381), - [anon_sym_COLON] = ACTIONS(3379), - [anon_sym_DOT_DOT] = ACTIONS(3379), - [anon_sym_PLUS] = ACTIONS(3381), - [anon_sym_DASH] = ACTIONS(3381), - [anon_sym_STAR] = ACTIONS(3379), - [anon_sym_SLASH] = ACTIONS(3379), - [anon_sym_PERCENT] = ACTIONS(3379), - [anon_sym_EQ_EQ] = ACTIONS(3379), - [anon_sym_BANG_EQ] = ACTIONS(3379), - [anon_sym_AMP_AMP] = ACTIONS(3379), - [anon_sym_PIPE_PIPE] = ACTIONS(3379), - [anon_sym_GT] = ACTIONS(3381), - [anon_sym_LT] = ACTIONS(3381), - [anon_sym_GT_EQ] = ACTIONS(3379), - [anon_sym_LT_EQ] = ACTIONS(3379), - [anon_sym_PLUS_EQ] = ACTIONS(3379), - [anon_sym_DASH_EQ] = ACTIONS(3379), - [anon_sym_if] = ACTIONS(3381), - [anon_sym_match] = ACTIONS(3381), - [anon_sym_EQ_GT] = ACTIONS(3379), - [anon_sym_while] = ACTIONS(3381), - [anon_sym_for] = ACTIONS(3381), - [anon_sym_asyncfor] = ACTIONS(3379), - [anon_sym_transform] = ACTIONS(3381), - [anon_sym_filter] = ACTIONS(3381), - [anon_sym_find] = ACTIONS(3381), - [anon_sym_remove] = ACTIONS(3381), - [anon_sym_reduce] = ACTIONS(3381), - [anon_sym_select] = ACTIONS(3381), - [anon_sym_insert] = ACTIONS(3381), - [anon_sym_async] = ACTIONS(3381), - [anon_sym_PIPE] = ACTIONS(3381), - [anon_sym_table] = ACTIONS(3381), - [anon_sym_assert] = ACTIONS(3381), - [anon_sym_assert_equal] = ACTIONS(3381), - [anon_sym_download] = ACTIONS(3381), - [anon_sym_help] = ACTIONS(3381), - [anon_sym_length] = ACTIONS(3381), - [anon_sym_output] = ACTIONS(3381), - [anon_sym_output_error] = ACTIONS(3381), - [anon_sym_type] = ACTIONS(3381), - [anon_sym_append] = ACTIONS(3381), - [anon_sym_metadata] = ACTIONS(3381), - [anon_sym_move] = ACTIONS(3381), - [anon_sym_read] = ACTIONS(3381), - [anon_sym_workdir] = ACTIONS(3381), - [anon_sym_write] = ACTIONS(3381), - [anon_sym_from_json] = ACTIONS(3381), - [anon_sym_to_json] = ACTIONS(3381), - [anon_sym_to_string] = ACTIONS(3381), - [anon_sym_to_float] = ACTIONS(3381), - [anon_sym_bash] = ACTIONS(3381), - [anon_sym_fish] = ACTIONS(3381), - [anon_sym_raw] = ACTIONS(3381), - [anon_sym_sh] = ACTIONS(3381), - [anon_sym_zsh] = ACTIONS(3381), - [anon_sym_random] = ACTIONS(3381), - [anon_sym_random_boolean] = ACTIONS(3381), - [anon_sym_random_float] = ACTIONS(3381), - [anon_sym_random_integer] = ACTIONS(3381), - [anon_sym_columns] = ACTIONS(3381), - [anon_sym_rows] = ACTIONS(3381), - [anon_sym_reverse] = ACTIONS(3381), - }, - [735] = { - [ts_builtin_sym_end] = ACTIONS(3393), - [sym_identifier] = ACTIONS(3395), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_RBRACE] = ACTIONS(3393), - [anon_sym_SEMI] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_RPAREN] = ACTIONS(3393), - [anon_sym_COMMA] = ACTIONS(3393), - [sym_integer] = ACTIONS(3395), - [sym_float] = ACTIONS(3393), - [sym_string] = ACTIONS(3393), - [anon_sym_true] = ACTIONS(3395), - [anon_sym_false] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_RBRACK] = ACTIONS(3393), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_COLON] = ACTIONS(3393), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3393), - [anon_sym_SLASH] = ACTIONS(3393), - [anon_sym_PERCENT] = ACTIONS(3393), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_PLUS_EQ] = ACTIONS(3393), - [anon_sym_DASH_EQ] = ACTIONS(3393), - [anon_sym_if] = ACTIONS(3395), - [anon_sym_match] = ACTIONS(3395), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_while] = ACTIONS(3395), - [anon_sym_for] = ACTIONS(3395), - [anon_sym_asyncfor] = ACTIONS(3393), - [anon_sym_transform] = ACTIONS(3395), - [anon_sym_filter] = ACTIONS(3395), - [anon_sym_find] = ACTIONS(3395), - [anon_sym_remove] = ACTIONS(3395), - [anon_sym_reduce] = ACTIONS(3395), - [anon_sym_select] = ACTIONS(3395), - [anon_sym_insert] = ACTIONS(3395), - [anon_sym_async] = ACTIONS(3395), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_table] = ACTIONS(3395), - [anon_sym_assert] = ACTIONS(3395), - [anon_sym_assert_equal] = ACTIONS(3395), - [anon_sym_download] = ACTIONS(3395), - [anon_sym_help] = ACTIONS(3395), - [anon_sym_length] = ACTIONS(3395), - [anon_sym_output] = ACTIONS(3395), - [anon_sym_output_error] = ACTIONS(3395), - [anon_sym_type] = ACTIONS(3395), - [anon_sym_append] = ACTIONS(3395), - [anon_sym_metadata] = ACTIONS(3395), - [anon_sym_move] = ACTIONS(3395), - [anon_sym_read] = ACTIONS(3395), - [anon_sym_workdir] = ACTIONS(3395), - [anon_sym_write] = ACTIONS(3395), - [anon_sym_from_json] = ACTIONS(3395), - [anon_sym_to_json] = ACTIONS(3395), - [anon_sym_to_string] = ACTIONS(3395), - [anon_sym_to_float] = ACTIONS(3395), - [anon_sym_bash] = ACTIONS(3395), - [anon_sym_fish] = ACTIONS(3395), - [anon_sym_raw] = ACTIONS(3395), - [anon_sym_sh] = ACTIONS(3395), - [anon_sym_zsh] = ACTIONS(3395), - [anon_sym_random] = ACTIONS(3395), - [anon_sym_random_boolean] = ACTIONS(3395), - [anon_sym_random_float] = ACTIONS(3395), - [anon_sym_random_integer] = ACTIONS(3395), - [anon_sym_columns] = ACTIONS(3395), - [anon_sym_rows] = ACTIONS(3395), - [anon_sym_reverse] = ACTIONS(3395), - }, - [736] = { - [sym_math_operator] = STATE(1455), - [sym_logic_operator] = STATE(1453), - [ts_builtin_sym_end] = ACTIONS(3262), - [sym_identifier] = ACTIONS(3264), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3262), - [anon_sym_SEMI] = ACTIONS(3262), - [anon_sym_LPAREN] = ACTIONS(3262), - [anon_sym_RPAREN] = ACTIONS(3262), - [sym_integer] = ACTIONS(3264), - [sym_float] = ACTIONS(3262), - [sym_string] = ACTIONS(3262), - [anon_sym_true] = ACTIONS(3264), - [anon_sym_false] = ACTIONS(3264), - [anon_sym_LBRACK] = ACTIONS(3262), - [anon_sym_EQ] = ACTIONS(3264), - [anon_sym_COLON] = ACTIONS(3262), - [anon_sym_DOT_DOT] = ACTIONS(3262), - [anon_sym_PLUS] = ACTIONS(3264), - [anon_sym_DASH] = ACTIONS(3264), - [anon_sym_STAR] = ACTIONS(3262), - [anon_sym_SLASH] = ACTIONS(3262), - [anon_sym_PERCENT] = ACTIONS(3262), - [anon_sym_EQ_EQ] = ACTIONS(3262), - [anon_sym_BANG_EQ] = ACTIONS(3262), - [anon_sym_AMP_AMP] = ACTIONS(3262), - [anon_sym_PIPE_PIPE] = ACTIONS(3262), - [anon_sym_GT] = ACTIONS(3264), - [anon_sym_LT] = ACTIONS(3264), - [anon_sym_GT_EQ] = ACTIONS(3262), - [anon_sym_LT_EQ] = ACTIONS(3262), - [anon_sym_PLUS_EQ] = ACTIONS(3262), - [anon_sym_DASH_EQ] = ACTIONS(3262), - [anon_sym_if] = ACTIONS(3264), - [anon_sym_match] = ACTIONS(3264), - [anon_sym_EQ_GT] = ACTIONS(3262), - [anon_sym_while] = ACTIONS(3264), - [anon_sym_for] = ACTIONS(3264), - [anon_sym_asyncfor] = ACTIONS(3262), - [anon_sym_transform] = ACTIONS(3264), - [anon_sym_filter] = ACTIONS(3264), - [anon_sym_find] = ACTIONS(3264), - [anon_sym_remove] = ACTIONS(3264), - [anon_sym_reduce] = ACTIONS(3264), - [anon_sym_select] = ACTIONS(3264), - [anon_sym_insert] = ACTIONS(3264), - [anon_sym_async] = ACTIONS(3264), - [anon_sym_PIPE] = ACTIONS(3264), - [anon_sym_table] = ACTIONS(3264), - [anon_sym_assert] = ACTIONS(3264), - [anon_sym_assert_equal] = ACTIONS(3264), - [anon_sym_download] = ACTIONS(3264), - [anon_sym_help] = ACTIONS(3264), - [anon_sym_length] = ACTIONS(3264), - [anon_sym_output] = ACTIONS(3264), - [anon_sym_output_error] = ACTIONS(3264), - [anon_sym_type] = ACTIONS(3264), - [anon_sym_append] = ACTIONS(3264), - [anon_sym_metadata] = ACTIONS(3264), - [anon_sym_move] = ACTIONS(3264), - [anon_sym_read] = ACTIONS(3264), - [anon_sym_workdir] = ACTIONS(3264), - [anon_sym_write] = ACTIONS(3264), - [anon_sym_from_json] = ACTIONS(3264), - [anon_sym_to_json] = ACTIONS(3264), - [anon_sym_to_string] = ACTIONS(3264), - [anon_sym_to_float] = ACTIONS(3264), - [anon_sym_bash] = ACTIONS(3264), - [anon_sym_fish] = ACTIONS(3264), - [anon_sym_raw] = ACTIONS(3264), - [anon_sym_sh] = ACTIONS(3264), - [anon_sym_zsh] = ACTIONS(3264), - [anon_sym_random] = ACTIONS(3264), - [anon_sym_random_boolean] = ACTIONS(3264), - [anon_sym_random_float] = ACTIONS(3264), - [anon_sym_random_integer] = ACTIONS(3264), - [anon_sym_columns] = ACTIONS(3264), - [anon_sym_rows] = ACTIONS(3264), - [anon_sym_reverse] = ACTIONS(3264), - }, - [737] = { - [ts_builtin_sym_end] = ACTIONS(3415), - [sym_identifier] = ACTIONS(3417), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3415), - [anon_sym_RBRACE] = ACTIONS(3415), - [anon_sym_SEMI] = ACTIONS(3415), - [anon_sym_LPAREN] = ACTIONS(3415), - [anon_sym_RPAREN] = ACTIONS(3415), - [anon_sym_COMMA] = ACTIONS(3415), - [sym_integer] = ACTIONS(3417), - [sym_float] = ACTIONS(3415), - [sym_string] = ACTIONS(3415), - [anon_sym_true] = ACTIONS(3417), - [anon_sym_false] = ACTIONS(3417), - [anon_sym_LBRACK] = ACTIONS(3415), - [anon_sym_RBRACK] = ACTIONS(3415), - [anon_sym_EQ] = ACTIONS(3417), - [anon_sym_COLON] = ACTIONS(3415), - [anon_sym_DOT_DOT] = ACTIONS(3415), - [anon_sym_PLUS] = ACTIONS(3417), - [anon_sym_DASH] = ACTIONS(3417), - [anon_sym_STAR] = ACTIONS(3415), - [anon_sym_SLASH] = ACTIONS(3415), - [anon_sym_PERCENT] = ACTIONS(3415), - [anon_sym_EQ_EQ] = ACTIONS(3415), - [anon_sym_BANG_EQ] = ACTIONS(3415), - [anon_sym_AMP_AMP] = ACTIONS(3415), - [anon_sym_PIPE_PIPE] = ACTIONS(3415), - [anon_sym_GT] = ACTIONS(3417), - [anon_sym_LT] = ACTIONS(3417), - [anon_sym_GT_EQ] = ACTIONS(3415), - [anon_sym_LT_EQ] = ACTIONS(3415), - [anon_sym_PLUS_EQ] = ACTIONS(3415), - [anon_sym_DASH_EQ] = ACTIONS(3415), - [anon_sym_if] = ACTIONS(3417), - [anon_sym_match] = ACTIONS(3417), - [anon_sym_EQ_GT] = ACTIONS(3415), - [anon_sym_while] = ACTIONS(3417), - [anon_sym_for] = ACTIONS(3417), - [anon_sym_asyncfor] = ACTIONS(3415), - [anon_sym_transform] = ACTIONS(3417), - [anon_sym_filter] = ACTIONS(3417), - [anon_sym_find] = ACTIONS(3417), - [anon_sym_remove] = ACTIONS(3417), - [anon_sym_reduce] = ACTIONS(3417), - [anon_sym_select] = ACTIONS(3417), - [anon_sym_insert] = ACTIONS(3417), - [anon_sym_async] = ACTIONS(3417), - [anon_sym_PIPE] = ACTIONS(3417), - [anon_sym_table] = ACTIONS(3417), - [anon_sym_assert] = ACTIONS(3417), - [anon_sym_assert_equal] = ACTIONS(3417), - [anon_sym_download] = ACTIONS(3417), - [anon_sym_help] = ACTIONS(3417), - [anon_sym_length] = ACTIONS(3417), - [anon_sym_output] = ACTIONS(3417), - [anon_sym_output_error] = ACTIONS(3417), - [anon_sym_type] = ACTIONS(3417), - [anon_sym_append] = ACTIONS(3417), - [anon_sym_metadata] = ACTIONS(3417), - [anon_sym_move] = ACTIONS(3417), - [anon_sym_read] = ACTIONS(3417), - [anon_sym_workdir] = ACTIONS(3417), - [anon_sym_write] = ACTIONS(3417), - [anon_sym_from_json] = ACTIONS(3417), - [anon_sym_to_json] = ACTIONS(3417), - [anon_sym_to_string] = ACTIONS(3417), - [anon_sym_to_float] = ACTIONS(3417), - [anon_sym_bash] = ACTIONS(3417), - [anon_sym_fish] = ACTIONS(3417), - [anon_sym_raw] = ACTIONS(3417), - [anon_sym_sh] = ACTIONS(3417), - [anon_sym_zsh] = ACTIONS(3417), - [anon_sym_random] = ACTIONS(3417), - [anon_sym_random_boolean] = ACTIONS(3417), - [anon_sym_random_float] = ACTIONS(3417), - [anon_sym_random_integer] = ACTIONS(3417), - [anon_sym_columns] = ACTIONS(3417), - [anon_sym_rows] = ACTIONS(3417), - [anon_sym_reverse] = ACTIONS(3417), - }, - [738] = { - [ts_builtin_sym_end] = ACTIONS(3419), - [sym_identifier] = ACTIONS(3421), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3419), - [anon_sym_RBRACE] = ACTIONS(3419), - [anon_sym_SEMI] = ACTIONS(3419), - [anon_sym_LPAREN] = ACTIONS(3419), - [anon_sym_RPAREN] = ACTIONS(3419), - [anon_sym_COMMA] = ACTIONS(3419), - [sym_integer] = ACTIONS(3421), - [sym_float] = ACTIONS(3419), - [sym_string] = ACTIONS(3419), - [anon_sym_true] = ACTIONS(3421), - [anon_sym_false] = ACTIONS(3421), - [anon_sym_LBRACK] = ACTIONS(3419), - [anon_sym_RBRACK] = ACTIONS(3419), - [anon_sym_EQ] = ACTIONS(3421), - [anon_sym_COLON] = ACTIONS(3419), - [anon_sym_DOT_DOT] = ACTIONS(3419), - [anon_sym_PLUS] = ACTIONS(3421), - [anon_sym_DASH] = ACTIONS(3421), - [anon_sym_STAR] = ACTIONS(3419), - [anon_sym_SLASH] = ACTIONS(3419), - [anon_sym_PERCENT] = ACTIONS(3419), - [anon_sym_EQ_EQ] = ACTIONS(3419), - [anon_sym_BANG_EQ] = ACTIONS(3419), - [anon_sym_AMP_AMP] = ACTIONS(3419), - [anon_sym_PIPE_PIPE] = ACTIONS(3419), - [anon_sym_GT] = ACTIONS(3421), - [anon_sym_LT] = ACTIONS(3421), - [anon_sym_GT_EQ] = ACTIONS(3419), - [anon_sym_LT_EQ] = ACTIONS(3419), - [anon_sym_PLUS_EQ] = ACTIONS(3419), - [anon_sym_DASH_EQ] = ACTIONS(3419), - [anon_sym_if] = ACTIONS(3421), - [anon_sym_match] = ACTIONS(3421), - [anon_sym_EQ_GT] = ACTIONS(3419), - [anon_sym_while] = ACTIONS(3421), - [anon_sym_for] = ACTIONS(3421), - [anon_sym_asyncfor] = ACTIONS(3419), - [anon_sym_transform] = ACTIONS(3421), - [anon_sym_filter] = ACTIONS(3421), - [anon_sym_find] = ACTIONS(3421), - [anon_sym_remove] = ACTIONS(3421), - [anon_sym_reduce] = ACTIONS(3421), - [anon_sym_select] = ACTIONS(3421), - [anon_sym_insert] = ACTIONS(3421), - [anon_sym_async] = ACTIONS(3421), - [anon_sym_PIPE] = ACTIONS(3421), - [anon_sym_table] = ACTIONS(3421), - [anon_sym_assert] = ACTIONS(3421), - [anon_sym_assert_equal] = ACTIONS(3421), - [anon_sym_download] = ACTIONS(3421), - [anon_sym_help] = ACTIONS(3421), - [anon_sym_length] = ACTIONS(3421), - [anon_sym_output] = ACTIONS(3421), - [anon_sym_output_error] = ACTIONS(3421), - [anon_sym_type] = ACTIONS(3421), - [anon_sym_append] = ACTIONS(3421), - [anon_sym_metadata] = ACTIONS(3421), - [anon_sym_move] = ACTIONS(3421), - [anon_sym_read] = ACTIONS(3421), - [anon_sym_workdir] = ACTIONS(3421), - [anon_sym_write] = ACTIONS(3421), - [anon_sym_from_json] = ACTIONS(3421), - [anon_sym_to_json] = ACTIONS(3421), - [anon_sym_to_string] = ACTIONS(3421), - [anon_sym_to_float] = ACTIONS(3421), - [anon_sym_bash] = ACTIONS(3421), - [anon_sym_fish] = ACTIONS(3421), - [anon_sym_raw] = ACTIONS(3421), - [anon_sym_sh] = ACTIONS(3421), - [anon_sym_zsh] = ACTIONS(3421), - [anon_sym_random] = ACTIONS(3421), - [anon_sym_random_boolean] = ACTIONS(3421), - [anon_sym_random_float] = ACTIONS(3421), - [anon_sym_random_integer] = ACTIONS(3421), - [anon_sym_columns] = ACTIONS(3421), - [anon_sym_rows] = ACTIONS(3421), - [anon_sym_reverse] = ACTIONS(3421), - }, - [739] = { - [sym_assignment_operator] = STATE(539), - [ts_builtin_sym_end] = ACTIONS(2435), - [sym_identifier] = ACTIONS(2437), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_RBRACE] = ACTIONS(2435), - [anon_sym_SEMI] = ACTIONS(2435), - [anon_sym_LPAREN] = ACTIONS(2435), - [anon_sym_RPAREN] = ACTIONS(2435), - [anon_sym_COMMA] = ACTIONS(2435), - [sym_integer] = ACTIONS(2437), - [sym_float] = ACTIONS(2435), - [sym_string] = ACTIONS(2435), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [anon_sym_LBRACK] = ACTIONS(2435), - [anon_sym_RBRACK] = ACTIONS(2435), - [anon_sym_EQ] = ACTIONS(2439), - [anon_sym_COLON] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_PERCENT] = ACTIONS(2435), - [anon_sym_EQ_EQ] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_PIPE_PIPE] = ACTIONS(2435), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_PLUS_EQ] = ACTIONS(2441), - [anon_sym_DASH_EQ] = ACTIONS(2441), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_EQ_GT] = ACTIONS(2435), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_asyncfor] = ACTIONS(2435), - [anon_sym_transform] = ACTIONS(2437), - [anon_sym_filter] = ACTIONS(2437), - [anon_sym_find] = ACTIONS(2437), - [anon_sym_remove] = ACTIONS(2437), - [anon_sym_reduce] = ACTIONS(2437), - [anon_sym_select] = ACTIONS(2437), - [anon_sym_insert] = ACTIONS(2437), - [anon_sym_async] = ACTIONS(2437), - [anon_sym_PIPE] = ACTIONS(2437), - [anon_sym_table] = ACTIONS(2437), - [anon_sym_assert] = ACTIONS(2437), - [anon_sym_assert_equal] = ACTIONS(2437), - [anon_sym_download] = ACTIONS(2437), - [anon_sym_help] = ACTIONS(2437), - [anon_sym_length] = ACTIONS(2437), - [anon_sym_output] = ACTIONS(2437), - [anon_sym_output_error] = ACTIONS(2437), - [anon_sym_type] = ACTIONS(2437), - [anon_sym_append] = ACTIONS(2437), - [anon_sym_metadata] = ACTIONS(2437), - [anon_sym_move] = ACTIONS(2437), - [anon_sym_read] = ACTIONS(2437), - [anon_sym_workdir] = ACTIONS(2437), - [anon_sym_write] = ACTIONS(2437), - [anon_sym_from_json] = ACTIONS(2437), - [anon_sym_to_json] = ACTIONS(2437), - [anon_sym_to_string] = ACTIONS(2437), - [anon_sym_to_float] = ACTIONS(2437), - [anon_sym_bash] = ACTIONS(2437), - [anon_sym_fish] = ACTIONS(2437), - [anon_sym_raw] = ACTIONS(2437), - [anon_sym_sh] = ACTIONS(2437), - [anon_sym_zsh] = ACTIONS(2437), - [anon_sym_random] = ACTIONS(2437), - [anon_sym_random_boolean] = ACTIONS(2437), - [anon_sym_random_float] = ACTIONS(2437), - [anon_sym_random_integer] = ACTIONS(2437), - [anon_sym_columns] = ACTIONS(2437), - [anon_sym_rows] = ACTIONS(2437), - [anon_sym_reverse] = ACTIONS(2437), - }, - [740] = { - [sym_math_operator] = STATE(1322), - [sym_logic_operator] = STATE(1321), - [ts_builtin_sym_end] = ACTIONS(3262), - [sym_identifier] = ACTIONS(3264), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3262), - [anon_sym_SEMI] = ACTIONS(3262), - [anon_sym_LPAREN] = ACTIONS(3262), - [anon_sym_RPAREN] = ACTIONS(3262), - [anon_sym_COMMA] = ACTIONS(3262), - [sym_integer] = ACTIONS(3264), - [sym_float] = ACTIONS(3262), - [sym_string] = ACTIONS(3262), - [anon_sym_true] = ACTIONS(3264), - [anon_sym_false] = ACTIONS(3264), - [anon_sym_LBRACK] = ACTIONS(3262), - [anon_sym_RBRACK] = ACTIONS(3262), - [anon_sym_COLON] = ACTIONS(3262), - [anon_sym_PLUS] = ACTIONS(3262), - [anon_sym_DASH] = ACTIONS(3264), - [anon_sym_STAR] = ACTIONS(3262), - [anon_sym_SLASH] = ACTIONS(3262), - [anon_sym_PERCENT] = ACTIONS(3262), - [anon_sym_EQ_EQ] = ACTIONS(3262), - [anon_sym_BANG_EQ] = ACTIONS(3262), - [anon_sym_AMP_AMP] = ACTIONS(3262), - [anon_sym_PIPE_PIPE] = ACTIONS(3262), - [anon_sym_GT] = ACTIONS(3264), - [anon_sym_LT] = ACTIONS(3264), - [anon_sym_GT_EQ] = ACTIONS(3262), - [anon_sym_LT_EQ] = ACTIONS(3262), - [anon_sym_if] = ACTIONS(3264), - [anon_sym_elseif] = ACTIONS(3262), - [anon_sym_else] = ACTIONS(3264), - [anon_sym_match] = ACTIONS(3264), - [anon_sym_EQ_GT] = ACTIONS(3262), - [anon_sym_while] = ACTIONS(3264), - [anon_sym_for] = ACTIONS(3264), - [anon_sym_asyncfor] = ACTIONS(3262), - [anon_sym_transform] = ACTIONS(3264), - [anon_sym_filter] = ACTIONS(3264), - [anon_sym_find] = ACTIONS(3264), - [anon_sym_remove] = ACTIONS(3264), - [anon_sym_reduce] = ACTIONS(3264), - [anon_sym_select] = ACTIONS(3264), - [anon_sym_insert] = ACTIONS(3264), - [anon_sym_async] = ACTIONS(3264), - [anon_sym_PIPE] = ACTIONS(3264), - [anon_sym_table] = ACTIONS(3264), - [anon_sym_assert] = ACTIONS(3264), - [anon_sym_assert_equal] = ACTIONS(3264), - [anon_sym_download] = ACTIONS(3264), - [anon_sym_help] = ACTIONS(3264), - [anon_sym_length] = ACTIONS(3264), - [anon_sym_output] = ACTIONS(3264), - [anon_sym_output_error] = ACTIONS(3264), - [anon_sym_type] = ACTIONS(3264), - [anon_sym_append] = ACTIONS(3264), - [anon_sym_metadata] = ACTIONS(3264), - [anon_sym_move] = ACTIONS(3264), - [anon_sym_read] = ACTIONS(3264), - [anon_sym_workdir] = ACTIONS(3264), - [anon_sym_write] = ACTIONS(3264), - [anon_sym_from_json] = ACTIONS(3264), - [anon_sym_to_json] = ACTIONS(3264), - [anon_sym_to_string] = ACTIONS(3264), - [anon_sym_to_float] = ACTIONS(3264), - [anon_sym_bash] = ACTIONS(3264), - [anon_sym_fish] = ACTIONS(3264), - [anon_sym_raw] = ACTIONS(3264), - [anon_sym_sh] = ACTIONS(3264), - [anon_sym_zsh] = ACTIONS(3264), - [anon_sym_random] = ACTIONS(3264), - [anon_sym_random_boolean] = ACTIONS(3264), - [anon_sym_random_float] = ACTIONS(3264), - [anon_sym_random_integer] = ACTIONS(3264), - [anon_sym_columns] = ACTIONS(3264), - [anon_sym_rows] = ACTIONS(3264), - [anon_sym_reverse] = ACTIONS(3264), - }, - [741] = { - [sym_else_if] = STATE(741), - [aux_sym_if_else_repeat1] = STATE(741), - [ts_builtin_sym_end] = ACTIONS(3268), - [sym_identifier] = ACTIONS(3270), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(3268), - [anon_sym_SEMI] = ACTIONS(3268), - [anon_sym_LPAREN] = ACTIONS(3268), - [anon_sym_RPAREN] = ACTIONS(3268), - [anon_sym_COMMA] = ACTIONS(3268), - [sym_integer] = ACTIONS(3270), - [sym_float] = ACTIONS(3268), - [sym_string] = ACTIONS(3268), - [anon_sym_true] = ACTIONS(3270), - [anon_sym_false] = ACTIONS(3270), - [anon_sym_LBRACK] = ACTIONS(3268), - [anon_sym_RBRACK] = ACTIONS(3268), - [anon_sym_COLON] = ACTIONS(3268), - [anon_sym_PLUS] = ACTIONS(3268), - [anon_sym_DASH] = ACTIONS(3270), - [anon_sym_STAR] = ACTIONS(3268), - [anon_sym_SLASH] = ACTIONS(3268), - [anon_sym_PERCENT] = ACTIONS(3268), - [anon_sym_EQ_EQ] = ACTIONS(3268), - [anon_sym_BANG_EQ] = ACTIONS(3268), - [anon_sym_AMP_AMP] = ACTIONS(3268), - [anon_sym_PIPE_PIPE] = ACTIONS(3268), - [anon_sym_GT] = ACTIONS(3270), - [anon_sym_LT] = ACTIONS(3270), - [anon_sym_GT_EQ] = ACTIONS(3268), - [anon_sym_LT_EQ] = ACTIONS(3268), - [anon_sym_if] = ACTIONS(3270), - [anon_sym_elseif] = ACTIONS(3586), - [anon_sym_else] = ACTIONS(3270), - [anon_sym_match] = ACTIONS(3270), - [anon_sym_EQ_GT] = ACTIONS(3268), - [anon_sym_while] = ACTIONS(3270), - [anon_sym_for] = ACTIONS(3270), - [anon_sym_asyncfor] = ACTIONS(3268), - [anon_sym_transform] = ACTIONS(3270), - [anon_sym_filter] = ACTIONS(3270), - [anon_sym_find] = ACTIONS(3270), - [anon_sym_remove] = ACTIONS(3270), - [anon_sym_reduce] = ACTIONS(3270), - [anon_sym_select] = ACTIONS(3270), - [anon_sym_insert] = ACTIONS(3270), - [anon_sym_async] = ACTIONS(3270), - [anon_sym_PIPE] = ACTIONS(3270), - [anon_sym_table] = ACTIONS(3270), - [anon_sym_assert] = ACTIONS(3270), - [anon_sym_assert_equal] = ACTIONS(3270), - [anon_sym_download] = ACTIONS(3270), - [anon_sym_help] = ACTIONS(3270), - [anon_sym_length] = ACTIONS(3270), - [anon_sym_output] = ACTIONS(3270), - [anon_sym_output_error] = ACTIONS(3270), - [anon_sym_type] = ACTIONS(3270), - [anon_sym_append] = ACTIONS(3270), - [anon_sym_metadata] = ACTIONS(3270), - [anon_sym_move] = ACTIONS(3270), - [anon_sym_read] = ACTIONS(3270), - [anon_sym_workdir] = ACTIONS(3270), - [anon_sym_write] = ACTIONS(3270), - [anon_sym_from_json] = ACTIONS(3270), - [anon_sym_to_json] = ACTIONS(3270), - [anon_sym_to_string] = ACTIONS(3270), - [anon_sym_to_float] = ACTIONS(3270), - [anon_sym_bash] = ACTIONS(3270), - [anon_sym_fish] = ACTIONS(3270), - [anon_sym_raw] = ACTIONS(3270), - [anon_sym_sh] = ACTIONS(3270), - [anon_sym_zsh] = ACTIONS(3270), - [anon_sym_random] = ACTIONS(3270), - [anon_sym_random_boolean] = ACTIONS(3270), - [anon_sym_random_float] = ACTIONS(3270), - [anon_sym_random_integer] = ACTIONS(3270), - [anon_sym_columns] = ACTIONS(3270), - [anon_sym_rows] = ACTIONS(3270), - [anon_sym_reverse] = ACTIONS(3270), - }, - [742] = { - [ts_builtin_sym_end] = ACTIONS(3432), - [sym_identifier] = ACTIONS(3434), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3432), - [anon_sym_RBRACE] = ACTIONS(3432), - [anon_sym_SEMI] = ACTIONS(3432), - [anon_sym_LPAREN] = ACTIONS(3432), - [anon_sym_RPAREN] = ACTIONS(3432), - [anon_sym_COMMA] = ACTIONS(3432), - [sym_integer] = ACTIONS(3434), - [sym_float] = ACTIONS(3432), - [sym_string] = ACTIONS(3432), - [anon_sym_true] = ACTIONS(3434), - [anon_sym_false] = ACTIONS(3434), - [anon_sym_LBRACK] = ACTIONS(3432), - [anon_sym_RBRACK] = ACTIONS(3432), - [anon_sym_EQ] = ACTIONS(3434), - [anon_sym_COLON] = ACTIONS(3432), - [anon_sym_DOT_DOT] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3434), - [anon_sym_DASH] = ACTIONS(3434), - [anon_sym_STAR] = ACTIONS(3432), - [anon_sym_SLASH] = ACTIONS(3432), - [anon_sym_PERCENT] = ACTIONS(3432), - [anon_sym_EQ_EQ] = ACTIONS(3432), - [anon_sym_BANG_EQ] = ACTIONS(3432), - [anon_sym_AMP_AMP] = ACTIONS(3432), - [anon_sym_PIPE_PIPE] = ACTIONS(3432), - [anon_sym_GT] = ACTIONS(3434), - [anon_sym_LT] = ACTIONS(3434), - [anon_sym_GT_EQ] = ACTIONS(3432), - [anon_sym_LT_EQ] = ACTIONS(3432), - [anon_sym_PLUS_EQ] = ACTIONS(3432), - [anon_sym_DASH_EQ] = ACTIONS(3432), - [anon_sym_if] = ACTIONS(3434), - [anon_sym_match] = ACTIONS(3434), - [anon_sym_EQ_GT] = ACTIONS(3432), - [anon_sym_while] = ACTIONS(3434), - [anon_sym_for] = ACTIONS(3434), - [anon_sym_asyncfor] = ACTIONS(3432), - [anon_sym_transform] = ACTIONS(3434), - [anon_sym_filter] = ACTIONS(3434), - [anon_sym_find] = ACTIONS(3434), - [anon_sym_remove] = ACTIONS(3434), - [anon_sym_reduce] = ACTIONS(3434), - [anon_sym_select] = ACTIONS(3434), - [anon_sym_insert] = ACTIONS(3434), - [anon_sym_async] = ACTIONS(3434), - [anon_sym_PIPE] = ACTIONS(3434), - [anon_sym_table] = ACTIONS(3434), - [anon_sym_assert] = ACTIONS(3434), - [anon_sym_assert_equal] = ACTIONS(3434), - [anon_sym_download] = ACTIONS(3434), - [anon_sym_help] = ACTIONS(3434), - [anon_sym_length] = ACTIONS(3434), - [anon_sym_output] = ACTIONS(3434), - [anon_sym_output_error] = ACTIONS(3434), - [anon_sym_type] = ACTIONS(3434), - [anon_sym_append] = ACTIONS(3434), - [anon_sym_metadata] = ACTIONS(3434), - [anon_sym_move] = ACTIONS(3434), - [anon_sym_read] = ACTIONS(3434), - [anon_sym_workdir] = ACTIONS(3434), - [anon_sym_write] = ACTIONS(3434), - [anon_sym_from_json] = ACTIONS(3434), - [anon_sym_to_json] = ACTIONS(3434), - [anon_sym_to_string] = ACTIONS(3434), - [anon_sym_to_float] = ACTIONS(3434), - [anon_sym_bash] = ACTIONS(3434), - [anon_sym_fish] = ACTIONS(3434), - [anon_sym_raw] = ACTIONS(3434), - [anon_sym_sh] = ACTIONS(3434), - [anon_sym_zsh] = ACTIONS(3434), - [anon_sym_random] = ACTIONS(3434), - [anon_sym_random_boolean] = ACTIONS(3434), - [anon_sym_random_float] = ACTIONS(3434), - [anon_sym_random_integer] = ACTIONS(3434), - [anon_sym_columns] = ACTIONS(3434), - [anon_sym_rows] = ACTIONS(3434), - [anon_sym_reverse] = ACTIONS(3434), - }, - [743] = { - [sym_math_operator] = STATE(1322), - [sym_logic_operator] = STATE(1321), - [ts_builtin_sym_end] = ACTIONS(3252), - [sym_identifier] = ACTIONS(3254), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3252), - [anon_sym_RBRACE] = ACTIONS(3252), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_LPAREN] = ACTIONS(3252), - [anon_sym_RPAREN] = ACTIONS(3252), - [anon_sym_COMMA] = ACTIONS(3252), - [sym_integer] = ACTIONS(3254), - [sym_float] = ACTIONS(3252), - [sym_string] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_RBRACK] = ACTIONS(3252), - [anon_sym_COLON] = ACTIONS(3252), - [anon_sym_PLUS] = ACTIONS(3252), - [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_STAR] = ACTIONS(3252), - [anon_sym_SLASH] = ACTIONS(3252), - [anon_sym_PERCENT] = ACTIONS(3252), - [anon_sym_EQ_EQ] = ACTIONS(3252), - [anon_sym_BANG_EQ] = ACTIONS(3252), - [anon_sym_AMP_AMP] = ACTIONS(3252), - [anon_sym_PIPE_PIPE] = ACTIONS(3252), - [anon_sym_GT] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(3254), - [anon_sym_GT_EQ] = ACTIONS(3252), - [anon_sym_LT_EQ] = ACTIONS(3252), - [anon_sym_if] = ACTIONS(3254), - [anon_sym_elseif] = ACTIONS(3252), - [anon_sym_else] = ACTIONS(3254), - [anon_sym_match] = ACTIONS(3254), - [anon_sym_EQ_GT] = ACTIONS(3252), - [anon_sym_while] = ACTIONS(3254), - [anon_sym_for] = ACTIONS(3254), - [anon_sym_asyncfor] = ACTIONS(3252), - [anon_sym_transform] = ACTIONS(3254), - [anon_sym_filter] = ACTIONS(3254), - [anon_sym_find] = ACTIONS(3254), - [anon_sym_remove] = ACTIONS(3254), - [anon_sym_reduce] = ACTIONS(3254), - [anon_sym_select] = ACTIONS(3254), - [anon_sym_insert] = ACTIONS(3254), - [anon_sym_async] = ACTIONS(3254), - [anon_sym_PIPE] = ACTIONS(3254), - [anon_sym_table] = ACTIONS(3254), - [anon_sym_assert] = ACTIONS(3254), - [anon_sym_assert_equal] = ACTIONS(3254), - [anon_sym_download] = ACTIONS(3254), - [anon_sym_help] = ACTIONS(3254), - [anon_sym_length] = ACTIONS(3254), - [anon_sym_output] = ACTIONS(3254), - [anon_sym_output_error] = ACTIONS(3254), - [anon_sym_type] = ACTIONS(3254), - [anon_sym_append] = ACTIONS(3254), - [anon_sym_metadata] = ACTIONS(3254), - [anon_sym_move] = ACTIONS(3254), - [anon_sym_read] = ACTIONS(3254), - [anon_sym_workdir] = ACTIONS(3254), - [anon_sym_write] = ACTIONS(3254), - [anon_sym_from_json] = ACTIONS(3254), - [anon_sym_to_json] = ACTIONS(3254), - [anon_sym_to_string] = ACTIONS(3254), - [anon_sym_to_float] = ACTIONS(3254), - [anon_sym_bash] = ACTIONS(3254), - [anon_sym_fish] = ACTIONS(3254), - [anon_sym_raw] = ACTIONS(3254), - [anon_sym_sh] = ACTIONS(3254), - [anon_sym_zsh] = ACTIONS(3254), - [anon_sym_random] = ACTIONS(3254), - [anon_sym_random_boolean] = ACTIONS(3254), - [anon_sym_random_float] = ACTIONS(3254), - [anon_sym_random_integer] = ACTIONS(3254), - [anon_sym_columns] = ACTIONS(3254), - [anon_sym_rows] = ACTIONS(3254), - [anon_sym_reverse] = ACTIONS(3254), - }, - [744] = { - [sym_math_operator] = STATE(1322), - [sym_logic_operator] = STATE(1321), - [ts_builtin_sym_end] = ACTIONS(3233), - [sym_identifier] = ACTIONS(3235), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3233), - [anon_sym_RBRACE] = ACTIONS(3233), - [anon_sym_SEMI] = ACTIONS(3233), - [anon_sym_LPAREN] = ACTIONS(3233), - [anon_sym_RPAREN] = ACTIONS(3233), - [anon_sym_COMMA] = ACTIONS(3470), - [sym_integer] = ACTIONS(3235), - [sym_float] = ACTIONS(3233), - [sym_string] = ACTIONS(3233), - [anon_sym_true] = ACTIONS(3235), - [anon_sym_false] = ACTIONS(3235), - [anon_sym_LBRACK] = ACTIONS(3233), - [anon_sym_RBRACK] = ACTIONS(3233), - [anon_sym_COLON] = ACTIONS(625), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(3235), - [anon_sym_elseif] = ACTIONS(3233), - [anon_sym_else] = ACTIONS(3235), - [anon_sym_match] = ACTIONS(3235), - [anon_sym_EQ_GT] = ACTIONS(3233), - [anon_sym_while] = ACTIONS(3235), - [anon_sym_for] = ACTIONS(3235), - [anon_sym_asyncfor] = ACTIONS(3233), - [anon_sym_transform] = ACTIONS(3235), - [anon_sym_filter] = ACTIONS(3235), - [anon_sym_find] = ACTIONS(3235), - [anon_sym_remove] = ACTIONS(3235), - [anon_sym_reduce] = ACTIONS(3235), - [anon_sym_select] = ACTIONS(3235), - [anon_sym_insert] = ACTIONS(3235), - [anon_sym_async] = ACTIONS(3235), - [anon_sym_PIPE] = ACTIONS(3235), - [anon_sym_table] = ACTIONS(3235), - [anon_sym_assert] = ACTIONS(3235), - [anon_sym_assert_equal] = ACTIONS(3235), - [anon_sym_download] = ACTIONS(3235), - [anon_sym_help] = ACTIONS(3235), - [anon_sym_length] = ACTIONS(3235), - [anon_sym_output] = ACTIONS(3235), - [anon_sym_output_error] = ACTIONS(3235), - [anon_sym_type] = ACTIONS(3235), - [anon_sym_append] = ACTIONS(3235), - [anon_sym_metadata] = ACTIONS(3235), - [anon_sym_move] = ACTIONS(3235), - [anon_sym_read] = ACTIONS(3235), - [anon_sym_workdir] = ACTIONS(3235), - [anon_sym_write] = ACTIONS(3235), - [anon_sym_from_json] = ACTIONS(3235), - [anon_sym_to_json] = ACTIONS(3235), - [anon_sym_to_string] = ACTIONS(3235), - [anon_sym_to_float] = ACTIONS(3235), - [anon_sym_bash] = ACTIONS(3235), - [anon_sym_fish] = ACTIONS(3235), - [anon_sym_raw] = ACTIONS(3235), - [anon_sym_sh] = ACTIONS(3235), - [anon_sym_zsh] = ACTIONS(3235), - [anon_sym_random] = ACTIONS(3235), - [anon_sym_random_boolean] = ACTIONS(3235), - [anon_sym_random_float] = ACTIONS(3235), - [anon_sym_random_integer] = ACTIONS(3235), - [anon_sym_columns] = ACTIONS(3235), - [anon_sym_rows] = ACTIONS(3235), - [anon_sym_reverse] = ACTIONS(3235), - }, - [745] = { - [sym_expression] = STATE(966), - [sym__expression_kind] = STATE(986), - [aux_sym__expression_list] = STATE(695), - [sym_value] = STATE(986), - [sym_boolean] = STATE(981), - [sym_list] = STATE(981), - [sym_map] = STATE(981), - [sym_index] = STATE(986), - [sym_math] = STATE(986), - [sym_logic] = STATE(986), - [sym_identifier_list] = STATE(2055), - [sym_table] = STATE(981), - [sym_function] = STATE(981), - [sym_function_call] = STATE(986), - [sym__context_defined_function] = STATE(990), - [sym_built_in_function] = STATE(990), - [sym__built_in_function_name] = STATE(692), - [sym_identifier] = ACTIONS(2437), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3438), - [anon_sym_RBRACE] = ACTIONS(2435), - [anon_sym_SEMI] = ACTIONS(2435), - [anon_sym_LPAREN] = ACTIONS(3440), - [anon_sym_COMMA] = ACTIONS(2435), - [sym_integer] = ACTIONS(3442), - [sym_float] = ACTIONS(3444), - [sym_string] = ACTIONS(3444), - [anon_sym_true] = ACTIONS(3446), - [anon_sym_false] = ACTIONS(3446), - [anon_sym_LBRACK] = ACTIONS(3448), - [anon_sym_EQ] = ACTIONS(2437), - [anon_sym_COLON] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_PERCENT] = ACTIONS(2435), - [anon_sym_EQ_EQ] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_PIPE_PIPE] = ACTIONS(2435), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_PLUS_EQ] = ACTIONS(2435), - [anon_sym_DASH_EQ] = ACTIONS(2435), - [anon_sym_EQ_GT] = ACTIONS(3523), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(3525), - [anon_sym_assert] = ACTIONS(3527), - [anon_sym_assert_equal] = ACTIONS(3527), - [anon_sym_download] = ACTIONS(3527), - [anon_sym_help] = ACTIONS(3527), - [anon_sym_length] = ACTIONS(3527), - [anon_sym_output] = ACTIONS(3527), - [anon_sym_output_error] = ACTIONS(3527), - [anon_sym_type] = ACTIONS(3527), - [anon_sym_append] = ACTIONS(3527), - [anon_sym_metadata] = ACTIONS(3527), - [anon_sym_move] = ACTIONS(3527), - [anon_sym_read] = ACTIONS(3527), - [anon_sym_workdir] = ACTIONS(3527), - [anon_sym_write] = ACTIONS(3527), - [anon_sym_from_json] = ACTIONS(3527), - [anon_sym_to_json] = ACTIONS(3527), - [anon_sym_to_string] = ACTIONS(3527), - [anon_sym_to_float] = ACTIONS(3527), - [anon_sym_bash] = ACTIONS(3527), - [anon_sym_fish] = ACTIONS(3527), - [anon_sym_raw] = ACTIONS(3527), - [anon_sym_sh] = ACTIONS(3527), - [anon_sym_zsh] = ACTIONS(3527), - [anon_sym_random] = ACTIONS(3527), - [anon_sym_random_boolean] = ACTIONS(3527), - [anon_sym_random_float] = ACTIONS(3527), - [anon_sym_random_integer] = ACTIONS(3527), - [anon_sym_columns] = ACTIONS(3527), - [anon_sym_rows] = ACTIONS(3527), - [anon_sym_reverse] = ACTIONS(3527), - }, - [746] = { - [sym_else_if] = STATE(778), - [sym_else] = STATE(802), - [aux_sym_if_else_repeat1] = STATE(778), - [ts_builtin_sym_end] = ACTIONS(3229), - [sym_identifier] = ACTIONS(3231), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3229), - [anon_sym_RBRACE] = ACTIONS(3229), - [anon_sym_SEMI] = ACTIONS(3229), - [anon_sym_LPAREN] = ACTIONS(3229), - [anon_sym_RPAREN] = ACTIONS(3229), - [sym_integer] = ACTIONS(3231), - [sym_float] = ACTIONS(3229), - [sym_string] = ACTIONS(3229), - [anon_sym_true] = ACTIONS(3231), - [anon_sym_false] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3229), - [anon_sym_COLON] = ACTIONS(3229), - [anon_sym_DOT_DOT] = ACTIONS(3229), - [anon_sym_PLUS] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_SLASH] = ACTIONS(3229), - [anon_sym_PERCENT] = ACTIONS(3229), - [anon_sym_EQ_EQ] = ACTIONS(3229), - [anon_sym_BANG_EQ] = ACTIONS(3229), - [anon_sym_AMP_AMP] = ACTIONS(3229), - [anon_sym_PIPE_PIPE] = ACTIONS(3229), - [anon_sym_GT] = ACTIONS(3231), - [anon_sym_LT] = ACTIONS(3231), - [anon_sym_GT_EQ] = ACTIONS(3229), - [anon_sym_LT_EQ] = ACTIONS(3229), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_elseif] = ACTIONS(3572), - [anon_sym_else] = ACTIONS(3584), - [anon_sym_match] = ACTIONS(3231), - [anon_sym_EQ_GT] = ACTIONS(3229), - [anon_sym_while] = ACTIONS(3231), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_asyncfor] = ACTIONS(3229), - [anon_sym_transform] = ACTIONS(3231), - [anon_sym_filter] = ACTIONS(3231), - [anon_sym_find] = ACTIONS(3231), - [anon_sym_remove] = ACTIONS(3231), - [anon_sym_reduce] = ACTIONS(3231), - [anon_sym_select] = ACTIONS(3231), - [anon_sym_insert] = ACTIONS(3231), - [anon_sym_async] = ACTIONS(3231), - [anon_sym_PIPE] = ACTIONS(3231), - [anon_sym_table] = ACTIONS(3231), - [anon_sym_assert] = ACTIONS(3231), - [anon_sym_assert_equal] = ACTIONS(3231), - [anon_sym_download] = ACTIONS(3231), - [anon_sym_help] = ACTIONS(3231), - [anon_sym_length] = ACTIONS(3231), - [anon_sym_output] = ACTIONS(3231), - [anon_sym_output_error] = ACTIONS(3231), - [anon_sym_type] = ACTIONS(3231), - [anon_sym_append] = ACTIONS(3231), - [anon_sym_metadata] = ACTIONS(3231), - [anon_sym_move] = ACTIONS(3231), - [anon_sym_read] = ACTIONS(3231), - [anon_sym_workdir] = ACTIONS(3231), - [anon_sym_write] = ACTIONS(3231), - [anon_sym_from_json] = ACTIONS(3231), - [anon_sym_to_json] = ACTIONS(3231), - [anon_sym_to_string] = ACTIONS(3231), - [anon_sym_to_float] = ACTIONS(3231), - [anon_sym_bash] = ACTIONS(3231), - [anon_sym_fish] = ACTIONS(3231), - [anon_sym_raw] = ACTIONS(3231), - [anon_sym_sh] = ACTIONS(3231), - [anon_sym_zsh] = ACTIONS(3231), - [anon_sym_random] = ACTIONS(3231), - [anon_sym_random_boolean] = ACTIONS(3231), - [anon_sym_random_float] = ACTIONS(3231), - [anon_sym_random_integer] = ACTIONS(3231), - [anon_sym_columns] = ACTIONS(3231), - [anon_sym_rows] = ACTIONS(3231), - [anon_sym_reverse] = ACTIONS(3231), - }, - [747] = { - [ts_builtin_sym_end] = ACTIONS(2518), - [sym_identifier] = ACTIONS(2541), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_RBRACE] = ACTIONS(2518), - [anon_sym_SEMI] = ACTIONS(2518), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_RPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2518), - [sym_integer] = ACTIONS(2541), - [sym_float] = ACTIONS(2518), - [sym_string] = ACTIONS(2518), - [anon_sym_true] = ACTIONS(2541), - [anon_sym_false] = ACTIONS(2541), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_RBRACK] = ACTIONS(2518), - [anon_sym_EQ] = ACTIONS(2541), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_DOT_DOT] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2541), - [anon_sym_DASH] = ACTIONS(2541), - [anon_sym_STAR] = ACTIONS(2518), - [anon_sym_SLASH] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_EQ_EQ] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_GT] = ACTIONS(2541), - [anon_sym_LT] = ACTIONS(2541), - [anon_sym_GT_EQ] = ACTIONS(2518), - [anon_sym_LT_EQ] = ACTIONS(2518), - [anon_sym_PLUS_EQ] = ACTIONS(2518), - [anon_sym_DASH_EQ] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2541), - [anon_sym_match] = ACTIONS(2541), - [anon_sym_EQ_GT] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2541), - [anon_sym_for] = ACTIONS(2541), - [anon_sym_asyncfor] = ACTIONS(2518), - [anon_sym_transform] = ACTIONS(2541), - [anon_sym_filter] = ACTIONS(2541), - [anon_sym_find] = ACTIONS(2541), - [anon_sym_remove] = ACTIONS(2541), - [anon_sym_reduce] = ACTIONS(2541), - [anon_sym_select] = ACTIONS(2541), - [anon_sym_insert] = ACTIONS(2541), - [anon_sym_async] = ACTIONS(2541), - [anon_sym_PIPE] = ACTIONS(2541), - [anon_sym_table] = ACTIONS(2541), - [anon_sym_assert] = ACTIONS(2541), - [anon_sym_assert_equal] = ACTIONS(2541), - [anon_sym_download] = ACTIONS(2541), - [anon_sym_help] = ACTIONS(2541), - [anon_sym_length] = ACTIONS(2541), - [anon_sym_output] = ACTIONS(2541), - [anon_sym_output_error] = ACTIONS(2541), - [anon_sym_type] = ACTIONS(2541), - [anon_sym_append] = ACTIONS(2541), - [anon_sym_metadata] = ACTIONS(2541), - [anon_sym_move] = ACTIONS(2541), - [anon_sym_read] = ACTIONS(2541), - [anon_sym_workdir] = ACTIONS(2541), - [anon_sym_write] = ACTIONS(2541), - [anon_sym_from_json] = ACTIONS(2541), - [anon_sym_to_json] = ACTIONS(2541), - [anon_sym_to_string] = ACTIONS(2541), - [anon_sym_to_float] = ACTIONS(2541), - [anon_sym_bash] = ACTIONS(2541), - [anon_sym_fish] = ACTIONS(2541), - [anon_sym_raw] = ACTIONS(2541), - [anon_sym_sh] = ACTIONS(2541), - [anon_sym_zsh] = ACTIONS(2541), - [anon_sym_random] = ACTIONS(2541), - [anon_sym_random_boolean] = ACTIONS(2541), - [anon_sym_random_float] = ACTIONS(2541), - [anon_sym_random_integer] = ACTIONS(2541), - [anon_sym_columns] = ACTIONS(2541), - [anon_sym_rows] = ACTIONS(2541), - [anon_sym_reverse] = ACTIONS(2541), - }, - [748] = { - [sym_assignment_operator] = STATE(553), - [ts_builtin_sym_end] = ACTIONS(2435), - [sym_identifier] = ACTIONS(2437), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_RBRACE] = ACTIONS(2435), - [anon_sym_SEMI] = ACTIONS(2435), - [anon_sym_LPAREN] = ACTIONS(2435), - [anon_sym_RPAREN] = ACTIONS(2435), - [sym_integer] = ACTIONS(2437), - [sym_float] = ACTIONS(2435), - [sym_string] = ACTIONS(2435), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [anon_sym_LBRACK] = ACTIONS(2435), - [anon_sym_EQ] = ACTIONS(2439), - [anon_sym_COLON] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_PERCENT] = ACTIONS(2435), - [anon_sym_EQ_EQ] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_PIPE_PIPE] = ACTIONS(2435), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_PLUS_EQ] = ACTIONS(2441), - [anon_sym_DASH_EQ] = ACTIONS(2441), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_elseif] = ACTIONS(2435), - [anon_sym_else] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_EQ_GT] = ACTIONS(2435), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_asyncfor] = ACTIONS(2435), - [anon_sym_transform] = ACTIONS(2437), - [anon_sym_filter] = ACTIONS(2437), - [anon_sym_find] = ACTIONS(2437), - [anon_sym_remove] = ACTIONS(2437), - [anon_sym_reduce] = ACTIONS(2437), - [anon_sym_select] = ACTIONS(2437), - [anon_sym_insert] = ACTIONS(2437), - [anon_sym_async] = ACTIONS(2437), - [anon_sym_PIPE] = ACTIONS(2437), - [anon_sym_table] = ACTIONS(2437), - [anon_sym_assert] = ACTIONS(2437), - [anon_sym_assert_equal] = ACTIONS(2437), - [anon_sym_download] = ACTIONS(2437), - [anon_sym_help] = ACTIONS(2437), - [anon_sym_length] = ACTIONS(2437), - [anon_sym_output] = ACTIONS(2437), - [anon_sym_output_error] = ACTIONS(2437), - [anon_sym_type] = ACTIONS(2437), - [anon_sym_append] = ACTIONS(2437), - [anon_sym_metadata] = ACTIONS(2437), - [anon_sym_move] = ACTIONS(2437), - [anon_sym_read] = ACTIONS(2437), - [anon_sym_workdir] = ACTIONS(2437), - [anon_sym_write] = ACTIONS(2437), - [anon_sym_from_json] = ACTIONS(2437), - [anon_sym_to_json] = ACTIONS(2437), - [anon_sym_to_string] = ACTIONS(2437), - [anon_sym_to_float] = ACTIONS(2437), - [anon_sym_bash] = ACTIONS(2437), - [anon_sym_fish] = ACTIONS(2437), - [anon_sym_raw] = ACTIONS(2437), - [anon_sym_sh] = ACTIONS(2437), - [anon_sym_zsh] = ACTIONS(2437), - [anon_sym_random] = ACTIONS(2437), - [anon_sym_random_boolean] = ACTIONS(2437), - [anon_sym_random_float] = ACTIONS(2437), - [anon_sym_random_integer] = ACTIONS(2437), - [anon_sym_columns] = ACTIONS(2437), - [anon_sym_rows] = ACTIONS(2437), - [anon_sym_reverse] = ACTIONS(2437), - }, - [749] = { - [sym_math_operator] = STATE(1305), - [sym_logic_operator] = STATE(1306), - [ts_builtin_sym_end] = ACTIONS(3262), - [sym_identifier] = ACTIONS(3264), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3262), - [anon_sym_SEMI] = ACTIONS(3262), - [anon_sym_LPAREN] = ACTIONS(3262), - [anon_sym_RPAREN] = ACTIONS(3262), - [anon_sym_COMMA] = ACTIONS(3262), - [sym_integer] = ACTIONS(3264), - [sym_float] = ACTIONS(3262), - [sym_string] = ACTIONS(3262), - [anon_sym_true] = ACTIONS(3264), - [anon_sym_false] = ACTIONS(3264), - [anon_sym_LBRACK] = ACTIONS(3262), - [anon_sym_RBRACK] = ACTIONS(3262), - [anon_sym_COLON] = ACTIONS(3262), - [anon_sym_DOT_DOT] = ACTIONS(3262), - [anon_sym_PLUS] = ACTIONS(3262), - [anon_sym_DASH] = ACTIONS(3264), - [anon_sym_STAR] = ACTIONS(3262), - [anon_sym_SLASH] = ACTIONS(3262), - [anon_sym_PERCENT] = ACTIONS(3262), - [anon_sym_EQ_EQ] = ACTIONS(3262), - [anon_sym_BANG_EQ] = ACTIONS(3262), - [anon_sym_AMP_AMP] = ACTIONS(3262), - [anon_sym_PIPE_PIPE] = ACTIONS(3262), - [anon_sym_GT] = ACTIONS(3264), - [anon_sym_LT] = ACTIONS(3264), - [anon_sym_GT_EQ] = ACTIONS(3262), - [anon_sym_LT_EQ] = ACTIONS(3262), - [anon_sym_if] = ACTIONS(3264), - [anon_sym_match] = ACTIONS(3264), - [anon_sym_EQ_GT] = ACTIONS(3262), - [anon_sym_while] = ACTIONS(3264), - [anon_sym_for] = ACTIONS(3264), - [anon_sym_asyncfor] = ACTIONS(3262), - [anon_sym_transform] = ACTIONS(3264), - [anon_sym_filter] = ACTIONS(3264), - [anon_sym_find] = ACTIONS(3264), - [anon_sym_remove] = ACTIONS(3264), - [anon_sym_reduce] = ACTIONS(3264), - [anon_sym_select] = ACTIONS(3264), - [anon_sym_insert] = ACTIONS(3264), - [anon_sym_async] = ACTIONS(3264), - [anon_sym_PIPE] = ACTIONS(3264), - [anon_sym_table] = ACTIONS(3264), - [anon_sym_assert] = ACTIONS(3264), - [anon_sym_assert_equal] = ACTIONS(3264), - [anon_sym_download] = ACTIONS(3264), - [anon_sym_help] = ACTIONS(3264), - [anon_sym_length] = ACTIONS(3264), - [anon_sym_output] = ACTIONS(3264), - [anon_sym_output_error] = ACTIONS(3264), - [anon_sym_type] = ACTIONS(3264), - [anon_sym_append] = ACTIONS(3264), - [anon_sym_metadata] = ACTIONS(3264), - [anon_sym_move] = ACTIONS(3264), - [anon_sym_read] = ACTIONS(3264), - [anon_sym_workdir] = ACTIONS(3264), - [anon_sym_write] = ACTIONS(3264), - [anon_sym_from_json] = ACTIONS(3264), - [anon_sym_to_json] = ACTIONS(3264), - [anon_sym_to_string] = ACTIONS(3264), - [anon_sym_to_float] = ACTIONS(3264), - [anon_sym_bash] = ACTIONS(3264), - [anon_sym_fish] = ACTIONS(3264), - [anon_sym_raw] = ACTIONS(3264), - [anon_sym_sh] = ACTIONS(3264), - [anon_sym_zsh] = ACTIONS(3264), - [anon_sym_random] = ACTIONS(3264), - [anon_sym_random_boolean] = ACTIONS(3264), - [anon_sym_random_float] = ACTIONS(3264), - [anon_sym_random_integer] = ACTIONS(3264), - [anon_sym_columns] = ACTIONS(3264), - [anon_sym_rows] = ACTIONS(3264), - [anon_sym_reverse] = ACTIONS(3264), - }, - [750] = { - [ts_builtin_sym_end] = ACTIONS(3355), - [sym_identifier] = ACTIONS(3357), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3355), - [anon_sym_RBRACE] = ACTIONS(3355), - [anon_sym_SEMI] = ACTIONS(3355), - [anon_sym_LPAREN] = ACTIONS(3355), - [anon_sym_RPAREN] = ACTIONS(3355), - [anon_sym_COMMA] = ACTIONS(3355), - [sym_integer] = ACTIONS(3357), - [sym_float] = ACTIONS(3355), - [sym_string] = ACTIONS(3355), - [anon_sym_true] = ACTIONS(3357), - [anon_sym_false] = ACTIONS(3357), - [anon_sym_LBRACK] = ACTIONS(3355), - [anon_sym_RBRACK] = ACTIONS(3355), - [anon_sym_COLON] = ACTIONS(3355), - [anon_sym_DOT_DOT] = ACTIONS(3355), - [anon_sym_PLUS] = ACTIONS(3355), - [anon_sym_DASH] = ACTIONS(3357), - [anon_sym_STAR] = ACTIONS(3355), - [anon_sym_SLASH] = ACTIONS(3355), - [anon_sym_PERCENT] = ACTIONS(3355), - [anon_sym_EQ_EQ] = ACTIONS(3355), - [anon_sym_BANG_EQ] = ACTIONS(3355), - [anon_sym_AMP_AMP] = ACTIONS(3355), - [anon_sym_PIPE_PIPE] = ACTIONS(3355), - [anon_sym_GT] = ACTIONS(3357), - [anon_sym_LT] = ACTIONS(3357), - [anon_sym_GT_EQ] = ACTIONS(3355), - [anon_sym_LT_EQ] = ACTIONS(3355), - [anon_sym_if] = ACTIONS(3357), - [anon_sym_elseif] = ACTIONS(3355), - [anon_sym_else] = ACTIONS(3357), - [anon_sym_match] = ACTIONS(3357), - [anon_sym_EQ_GT] = ACTIONS(3355), - [anon_sym_while] = ACTIONS(3357), - [anon_sym_for] = ACTIONS(3357), - [anon_sym_asyncfor] = ACTIONS(3355), - [anon_sym_transform] = ACTIONS(3357), - [anon_sym_filter] = ACTIONS(3357), - [anon_sym_find] = ACTIONS(3357), - [anon_sym_remove] = ACTIONS(3357), - [anon_sym_reduce] = ACTIONS(3357), - [anon_sym_select] = ACTIONS(3357), - [anon_sym_insert] = ACTIONS(3357), - [anon_sym_async] = ACTIONS(3357), - [anon_sym_PIPE] = ACTIONS(3357), - [anon_sym_table] = ACTIONS(3357), - [anon_sym_assert] = ACTIONS(3357), - [anon_sym_assert_equal] = ACTIONS(3357), - [anon_sym_download] = ACTIONS(3357), - [anon_sym_help] = ACTIONS(3357), - [anon_sym_length] = ACTIONS(3357), - [anon_sym_output] = ACTIONS(3357), - [anon_sym_output_error] = ACTIONS(3357), - [anon_sym_type] = ACTIONS(3357), - [anon_sym_append] = ACTIONS(3357), - [anon_sym_metadata] = ACTIONS(3357), - [anon_sym_move] = ACTIONS(3357), - [anon_sym_read] = ACTIONS(3357), - [anon_sym_workdir] = ACTIONS(3357), - [anon_sym_write] = ACTIONS(3357), - [anon_sym_from_json] = ACTIONS(3357), - [anon_sym_to_json] = ACTIONS(3357), - [anon_sym_to_string] = ACTIONS(3357), - [anon_sym_to_float] = ACTIONS(3357), - [anon_sym_bash] = ACTIONS(3357), - [anon_sym_fish] = ACTIONS(3357), - [anon_sym_raw] = ACTIONS(3357), - [anon_sym_sh] = ACTIONS(3357), - [anon_sym_zsh] = ACTIONS(3357), - [anon_sym_random] = ACTIONS(3357), - [anon_sym_random_boolean] = ACTIONS(3357), - [anon_sym_random_float] = ACTIONS(3357), - [anon_sym_random_integer] = ACTIONS(3357), - [anon_sym_columns] = ACTIONS(3357), - [anon_sym_rows] = ACTIONS(3357), - [anon_sym_reverse] = ACTIONS(3357), - }, - [751] = { - [sym_math_operator] = STATE(1305), - [sym_logic_operator] = STATE(1306), - [ts_builtin_sym_end] = ACTIONS(3248), - [sym_identifier] = ACTIONS(3250), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3248), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(3248), - [anon_sym_RPAREN] = ACTIONS(3248), - [anon_sym_COMMA] = ACTIONS(3248), - [sym_integer] = ACTIONS(3250), - [sym_float] = ACTIONS(3248), - [sym_string] = ACTIONS(3248), - [anon_sym_true] = ACTIONS(3250), - [anon_sym_false] = ACTIONS(3250), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_RBRACK] = ACTIONS(3248), - [anon_sym_COLON] = ACTIONS(3248), - [anon_sym_DOT_DOT] = ACTIONS(3589), - [anon_sym_PLUS] = ACTIONS(3248), - [anon_sym_DASH] = ACTIONS(3250), - [anon_sym_STAR] = ACTIONS(3248), - [anon_sym_SLASH] = ACTIONS(3248), - [anon_sym_PERCENT] = ACTIONS(3248), - [anon_sym_EQ_EQ] = ACTIONS(3248), - [anon_sym_BANG_EQ] = ACTIONS(3248), - [anon_sym_AMP_AMP] = ACTIONS(3248), - [anon_sym_PIPE_PIPE] = ACTIONS(3248), - [anon_sym_GT] = ACTIONS(3250), - [anon_sym_LT] = ACTIONS(3250), - [anon_sym_GT_EQ] = ACTIONS(3248), - [anon_sym_LT_EQ] = ACTIONS(3248), - [anon_sym_if] = ACTIONS(3250), - [anon_sym_match] = ACTIONS(3250), - [anon_sym_EQ_GT] = ACTIONS(3248), - [anon_sym_while] = ACTIONS(3250), - [anon_sym_for] = ACTIONS(3250), - [anon_sym_asyncfor] = ACTIONS(3248), - [anon_sym_transform] = ACTIONS(3250), - [anon_sym_filter] = ACTIONS(3250), - [anon_sym_find] = ACTIONS(3250), - [anon_sym_remove] = ACTIONS(3250), - [anon_sym_reduce] = ACTIONS(3250), - [anon_sym_select] = ACTIONS(3250), - [anon_sym_insert] = ACTIONS(3250), - [anon_sym_async] = ACTIONS(3250), - [anon_sym_PIPE] = ACTIONS(3250), - [anon_sym_table] = ACTIONS(3250), - [anon_sym_assert] = ACTIONS(3250), - [anon_sym_assert_equal] = ACTIONS(3250), - [anon_sym_download] = ACTIONS(3250), - [anon_sym_help] = ACTIONS(3250), - [anon_sym_length] = ACTIONS(3250), - [anon_sym_output] = ACTIONS(3250), - [anon_sym_output_error] = ACTIONS(3250), - [anon_sym_type] = ACTIONS(3250), - [anon_sym_append] = ACTIONS(3250), - [anon_sym_metadata] = ACTIONS(3250), - [anon_sym_move] = ACTIONS(3250), - [anon_sym_read] = ACTIONS(3250), - [anon_sym_workdir] = ACTIONS(3250), - [anon_sym_write] = ACTIONS(3250), - [anon_sym_from_json] = ACTIONS(3250), - [anon_sym_to_json] = ACTIONS(3250), - [anon_sym_to_string] = ACTIONS(3250), - [anon_sym_to_float] = ACTIONS(3250), - [anon_sym_bash] = ACTIONS(3250), - [anon_sym_fish] = ACTIONS(3250), - [anon_sym_raw] = ACTIONS(3250), - [anon_sym_sh] = ACTIONS(3250), - [anon_sym_zsh] = ACTIONS(3250), - [anon_sym_random] = ACTIONS(3250), - [anon_sym_random_boolean] = ACTIONS(3250), - [anon_sym_random_float] = ACTIONS(3250), - [anon_sym_random_integer] = ACTIONS(3250), - [anon_sym_columns] = ACTIONS(3250), - [anon_sym_rows] = ACTIONS(3250), - [anon_sym_reverse] = ACTIONS(3250), - }, - [752] = { - [sym_math_operator] = STATE(1242), - [sym_logic_operator] = STATE(1243), - [ts_builtin_sym_end] = ACTIONS(3248), - [sym_identifier] = ACTIONS(3250), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3248), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(3248), - [anon_sym_RPAREN] = ACTIONS(3248), - [sym_integer] = ACTIONS(3250), - [sym_float] = ACTIONS(3248), - [sym_string] = ACTIONS(3248), - [anon_sym_true] = ACTIONS(3250), - [anon_sym_false] = ACTIONS(3250), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_COLON] = ACTIONS(3248), - [anon_sym_DOT_DOT] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3248), - [anon_sym_DASH] = ACTIONS(3250), - [anon_sym_STAR] = ACTIONS(3248), - [anon_sym_SLASH] = ACTIONS(3248), - [anon_sym_PERCENT] = ACTIONS(3248), - [anon_sym_EQ_EQ] = ACTIONS(3248), - [anon_sym_BANG_EQ] = ACTIONS(3248), - [anon_sym_AMP_AMP] = ACTIONS(3248), - [anon_sym_PIPE_PIPE] = ACTIONS(3248), - [anon_sym_GT] = ACTIONS(3250), - [anon_sym_LT] = ACTIONS(3250), - [anon_sym_GT_EQ] = ACTIONS(3248), - [anon_sym_LT_EQ] = ACTIONS(3248), - [anon_sym_if] = ACTIONS(3250), - [anon_sym_elseif] = ACTIONS(3248), - [anon_sym_else] = ACTIONS(3250), - [anon_sym_match] = ACTIONS(3250), - [anon_sym_EQ_GT] = ACTIONS(3248), - [anon_sym_while] = ACTIONS(3250), - [anon_sym_for] = ACTIONS(3250), - [anon_sym_asyncfor] = ACTIONS(3248), - [anon_sym_transform] = ACTIONS(3250), - [anon_sym_filter] = ACTIONS(3250), - [anon_sym_find] = ACTIONS(3250), - [anon_sym_remove] = ACTIONS(3250), - [anon_sym_reduce] = ACTIONS(3250), - [anon_sym_select] = ACTIONS(3250), - [anon_sym_insert] = ACTIONS(3250), - [anon_sym_async] = ACTIONS(3250), - [anon_sym_PIPE] = ACTIONS(3250), - [anon_sym_table] = ACTIONS(3250), - [anon_sym_assert] = ACTIONS(3250), - [anon_sym_assert_equal] = ACTIONS(3250), - [anon_sym_download] = ACTIONS(3250), - [anon_sym_help] = ACTIONS(3250), - [anon_sym_length] = ACTIONS(3250), - [anon_sym_output] = ACTIONS(3250), - [anon_sym_output_error] = ACTIONS(3250), - [anon_sym_type] = ACTIONS(3250), - [anon_sym_append] = ACTIONS(3250), - [anon_sym_metadata] = ACTIONS(3250), - [anon_sym_move] = ACTIONS(3250), - [anon_sym_read] = ACTIONS(3250), - [anon_sym_workdir] = ACTIONS(3250), - [anon_sym_write] = ACTIONS(3250), - [anon_sym_from_json] = ACTIONS(3250), - [anon_sym_to_json] = ACTIONS(3250), - [anon_sym_to_string] = ACTIONS(3250), - [anon_sym_to_float] = ACTIONS(3250), - [anon_sym_bash] = ACTIONS(3250), - [anon_sym_fish] = ACTIONS(3250), - [anon_sym_raw] = ACTIONS(3250), - [anon_sym_sh] = ACTIONS(3250), - [anon_sym_zsh] = ACTIONS(3250), - [anon_sym_random] = ACTIONS(3250), - [anon_sym_random_boolean] = ACTIONS(3250), - [anon_sym_random_float] = ACTIONS(3250), - [anon_sym_random_integer] = ACTIONS(3250), - [anon_sym_columns] = ACTIONS(3250), - [anon_sym_rows] = ACTIONS(3250), - [anon_sym_reverse] = ACTIONS(3250), - }, - [753] = { - [ts_builtin_sym_end] = ACTIONS(2518), - [sym_identifier] = ACTIONS(2541), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_RBRACE] = ACTIONS(2518), - [anon_sym_SEMI] = ACTIONS(2518), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_RPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2518), - [sym_integer] = ACTIONS(2541), - [sym_float] = ACTIONS(2518), - [sym_string] = ACTIONS(2518), - [anon_sym_true] = ACTIONS(2541), - [anon_sym_false] = ACTIONS(2541), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_RBRACK] = ACTIONS(2518), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_DOT_DOT] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2541), - [anon_sym_STAR] = ACTIONS(2518), - [anon_sym_SLASH] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_EQ_EQ] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_GT] = ACTIONS(2541), - [anon_sym_LT] = ACTIONS(2541), - [anon_sym_GT_EQ] = ACTIONS(2518), - [anon_sym_LT_EQ] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2541), - [anon_sym_elseif] = ACTIONS(2518), - [anon_sym_else] = ACTIONS(2541), - [anon_sym_match] = ACTIONS(2541), - [anon_sym_EQ_GT] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2541), - [anon_sym_for] = ACTIONS(2541), - [anon_sym_asyncfor] = ACTIONS(2518), - [anon_sym_transform] = ACTIONS(2541), - [anon_sym_filter] = ACTIONS(2541), - [anon_sym_find] = ACTIONS(2541), - [anon_sym_remove] = ACTIONS(2541), - [anon_sym_reduce] = ACTIONS(2541), - [anon_sym_select] = ACTIONS(2541), - [anon_sym_insert] = ACTIONS(2541), - [anon_sym_async] = ACTIONS(2541), - [anon_sym_PIPE] = ACTIONS(2541), - [anon_sym_table] = ACTIONS(2541), - [anon_sym_assert] = ACTIONS(2541), - [anon_sym_assert_equal] = ACTIONS(2541), - [anon_sym_download] = ACTIONS(2541), - [anon_sym_help] = ACTIONS(2541), - [anon_sym_length] = ACTIONS(2541), - [anon_sym_output] = ACTIONS(2541), - [anon_sym_output_error] = ACTIONS(2541), - [anon_sym_type] = ACTIONS(2541), - [anon_sym_append] = ACTIONS(2541), - [anon_sym_metadata] = ACTIONS(2541), - [anon_sym_move] = ACTIONS(2541), - [anon_sym_read] = ACTIONS(2541), - [anon_sym_workdir] = ACTIONS(2541), - [anon_sym_write] = ACTIONS(2541), - [anon_sym_from_json] = ACTIONS(2541), - [anon_sym_to_json] = ACTIONS(2541), - [anon_sym_to_string] = ACTIONS(2541), - [anon_sym_to_float] = ACTIONS(2541), - [anon_sym_bash] = ACTIONS(2541), - [anon_sym_fish] = ACTIONS(2541), - [anon_sym_raw] = ACTIONS(2541), - [anon_sym_sh] = ACTIONS(2541), - [anon_sym_zsh] = ACTIONS(2541), - [anon_sym_random] = ACTIONS(2541), - [anon_sym_random_boolean] = ACTIONS(2541), - [anon_sym_random_float] = ACTIONS(2541), - [anon_sym_random_integer] = ACTIONS(2541), - [anon_sym_columns] = ACTIONS(2541), - [anon_sym_rows] = ACTIONS(2541), - [anon_sym_reverse] = ACTIONS(2541), - }, - [754] = { - [sym_assignment_operator] = STATE(548), - [sym_identifier] = ACTIONS(2437), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_RBRACE] = ACTIONS(2435), - [anon_sym_SEMI] = ACTIONS(2435), - [anon_sym_LPAREN] = ACTIONS(2435), - [anon_sym_COMMA] = ACTIONS(2435), - [sym_integer] = ACTIONS(2437), - [sym_float] = ACTIONS(2435), - [sym_string] = ACTIONS(2435), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [anon_sym_LBRACK] = ACTIONS(2435), - [anon_sym_EQ] = ACTIONS(2439), - [anon_sym_COLON] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_PERCENT] = ACTIONS(2435), - [anon_sym_EQ_EQ] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_PIPE_PIPE] = ACTIONS(2435), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_PLUS_EQ] = ACTIONS(2441), - [anon_sym_DASH_EQ] = ACTIONS(2441), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_elseif] = ACTIONS(2435), - [anon_sym_else] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_EQ_GT] = ACTIONS(2435), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_asyncfor] = ACTIONS(2435), - [anon_sym_transform] = ACTIONS(2437), - [anon_sym_filter] = ACTIONS(2437), - [anon_sym_find] = ACTIONS(2437), - [anon_sym_remove] = ACTIONS(2437), - [anon_sym_reduce] = ACTIONS(2437), - [anon_sym_select] = ACTIONS(2437), - [anon_sym_insert] = ACTIONS(2437), - [anon_sym_async] = ACTIONS(2437), - [anon_sym_PIPE] = ACTIONS(2437), - [anon_sym_table] = ACTIONS(2437), - [anon_sym_assert] = ACTIONS(2437), - [anon_sym_assert_equal] = ACTIONS(2437), - [anon_sym_download] = ACTIONS(2437), - [anon_sym_help] = ACTIONS(2437), - [anon_sym_length] = ACTIONS(2437), - [anon_sym_output] = ACTIONS(2437), - [anon_sym_output_error] = ACTIONS(2437), - [anon_sym_type] = ACTIONS(2437), - [anon_sym_append] = ACTIONS(2437), - [anon_sym_metadata] = ACTIONS(2437), - [anon_sym_move] = ACTIONS(2437), - [anon_sym_read] = ACTIONS(2437), - [anon_sym_workdir] = ACTIONS(2437), - [anon_sym_write] = ACTIONS(2437), - [anon_sym_from_json] = ACTIONS(2437), - [anon_sym_to_json] = ACTIONS(2437), - [anon_sym_to_string] = ACTIONS(2437), - [anon_sym_to_float] = ACTIONS(2437), - [anon_sym_bash] = ACTIONS(2437), - [anon_sym_fish] = ACTIONS(2437), - [anon_sym_raw] = ACTIONS(2437), - [anon_sym_sh] = ACTIONS(2437), - [anon_sym_zsh] = ACTIONS(2437), - [anon_sym_random] = ACTIONS(2437), - [anon_sym_random_boolean] = ACTIONS(2437), - [anon_sym_random_float] = ACTIONS(2437), - [anon_sym_random_integer] = ACTIONS(2437), - [anon_sym_columns] = ACTIONS(2437), - [anon_sym_rows] = ACTIONS(2437), - [anon_sym_reverse] = ACTIONS(2437), - }, - [755] = { - [sym_math_operator] = STATE(1305), - [sym_logic_operator] = STATE(1306), - [ts_builtin_sym_end] = ACTIONS(3233), - [sym_identifier] = ACTIONS(3235), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3233), - [anon_sym_RBRACE] = ACTIONS(3233), - [anon_sym_SEMI] = ACTIONS(3233), - [anon_sym_LPAREN] = ACTIONS(3233), - [anon_sym_RPAREN] = ACTIONS(3233), - [anon_sym_COMMA] = ACTIONS(3591), - [sym_integer] = ACTIONS(3235), - [sym_float] = ACTIONS(3233), - [sym_string] = ACTIONS(3233), - [anon_sym_true] = ACTIONS(3235), - [anon_sym_false] = ACTIONS(3235), - [anon_sym_LBRACK] = ACTIONS(3233), - [anon_sym_RBRACK] = ACTIONS(3233), - [anon_sym_COLON] = ACTIONS(879), - [anon_sym_DOT_DOT] = ACTIONS(3233), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(3235), - [anon_sym_match] = ACTIONS(3235), - [anon_sym_EQ_GT] = ACTIONS(3233), - [anon_sym_while] = ACTIONS(3235), - [anon_sym_for] = ACTIONS(3235), - [anon_sym_asyncfor] = ACTIONS(3233), - [anon_sym_transform] = ACTIONS(3235), - [anon_sym_filter] = ACTIONS(3235), - [anon_sym_find] = ACTIONS(3235), - [anon_sym_remove] = ACTIONS(3235), - [anon_sym_reduce] = ACTIONS(3235), - [anon_sym_select] = ACTIONS(3235), - [anon_sym_insert] = ACTIONS(3235), - [anon_sym_async] = ACTIONS(3235), - [anon_sym_PIPE] = ACTIONS(3235), - [anon_sym_table] = ACTIONS(3235), - [anon_sym_assert] = ACTIONS(3235), - [anon_sym_assert_equal] = ACTIONS(3235), - [anon_sym_download] = ACTIONS(3235), - [anon_sym_help] = ACTIONS(3235), - [anon_sym_length] = ACTIONS(3235), - [anon_sym_output] = ACTIONS(3235), - [anon_sym_output_error] = ACTIONS(3235), - [anon_sym_type] = ACTIONS(3235), - [anon_sym_append] = ACTIONS(3235), - [anon_sym_metadata] = ACTIONS(3235), - [anon_sym_move] = ACTIONS(3235), - [anon_sym_read] = ACTIONS(3235), - [anon_sym_workdir] = ACTIONS(3235), - [anon_sym_write] = ACTIONS(3235), - [anon_sym_from_json] = ACTIONS(3235), - [anon_sym_to_json] = ACTIONS(3235), - [anon_sym_to_string] = ACTIONS(3235), - [anon_sym_to_float] = ACTIONS(3235), - [anon_sym_bash] = ACTIONS(3235), - [anon_sym_fish] = ACTIONS(3235), - [anon_sym_raw] = ACTIONS(3235), - [anon_sym_sh] = ACTIONS(3235), - [anon_sym_zsh] = ACTIONS(3235), - [anon_sym_random] = ACTIONS(3235), - [anon_sym_random_boolean] = ACTIONS(3235), - [anon_sym_random_float] = ACTIONS(3235), - [anon_sym_random_integer] = ACTIONS(3235), - [anon_sym_columns] = ACTIONS(3235), - [anon_sym_rows] = ACTIONS(3235), - [anon_sym_reverse] = ACTIONS(3235), - }, - [756] = { - [sym_math_operator] = STATE(1305), - [sym_logic_operator] = STATE(1306), - [ts_builtin_sym_end] = ACTIONS(3275), - [sym_identifier] = ACTIONS(3277), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3275), - [anon_sym_RBRACE] = ACTIONS(3275), - [anon_sym_SEMI] = ACTIONS(3594), - [anon_sym_LPAREN] = ACTIONS(3275), - [anon_sym_RPAREN] = ACTIONS(3275), - [anon_sym_COMMA] = ACTIONS(3275), - [sym_integer] = ACTIONS(3277), - [sym_float] = ACTIONS(3275), - [sym_string] = ACTIONS(3275), - [anon_sym_true] = ACTIONS(3277), - [anon_sym_false] = ACTIONS(3277), - [anon_sym_LBRACK] = ACTIONS(3275), - [anon_sym_RBRACK] = ACTIONS(3275), - [anon_sym_COLON] = ACTIONS(163), - [anon_sym_DOT_DOT] = ACTIONS(3275), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(3277), - [anon_sym_match] = ACTIONS(3277), - [anon_sym_EQ_GT] = ACTIONS(3275), - [anon_sym_while] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3277), - [anon_sym_asyncfor] = ACTIONS(3275), - [anon_sym_transform] = ACTIONS(3277), - [anon_sym_filter] = ACTIONS(3277), - [anon_sym_find] = ACTIONS(3277), - [anon_sym_remove] = ACTIONS(3277), - [anon_sym_reduce] = ACTIONS(3277), - [anon_sym_select] = ACTIONS(3277), - [anon_sym_insert] = ACTIONS(3277), - [anon_sym_async] = ACTIONS(3277), - [anon_sym_PIPE] = ACTIONS(3277), - [anon_sym_table] = ACTIONS(3277), - [anon_sym_assert] = ACTIONS(3277), - [anon_sym_assert_equal] = ACTIONS(3277), - [anon_sym_download] = ACTIONS(3277), - [anon_sym_help] = ACTIONS(3277), - [anon_sym_length] = ACTIONS(3277), - [anon_sym_output] = ACTIONS(3277), - [anon_sym_output_error] = ACTIONS(3277), - [anon_sym_type] = ACTIONS(3277), - [anon_sym_append] = ACTIONS(3277), - [anon_sym_metadata] = ACTIONS(3277), - [anon_sym_move] = ACTIONS(3277), - [anon_sym_read] = ACTIONS(3277), - [anon_sym_workdir] = ACTIONS(3277), - [anon_sym_write] = ACTIONS(3277), - [anon_sym_from_json] = ACTIONS(3277), - [anon_sym_to_json] = ACTIONS(3277), - [anon_sym_to_string] = ACTIONS(3277), - [anon_sym_to_float] = ACTIONS(3277), - [anon_sym_bash] = ACTIONS(3277), - [anon_sym_fish] = ACTIONS(3277), - [anon_sym_raw] = ACTIONS(3277), - [anon_sym_sh] = ACTIONS(3277), - [anon_sym_zsh] = ACTIONS(3277), - [anon_sym_random] = ACTIONS(3277), - [anon_sym_random_boolean] = ACTIONS(3277), - [anon_sym_random_float] = ACTIONS(3277), - [anon_sym_random_integer] = ACTIONS(3277), - [anon_sym_columns] = ACTIONS(3277), - [anon_sym_rows] = ACTIONS(3277), - [anon_sym_reverse] = ACTIONS(3277), - }, - [757] = { - [ts_builtin_sym_end] = ACTIONS(3409), - [sym_identifier] = ACTIONS(3411), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3409), - [anon_sym_RBRACE] = ACTIONS(3409), - [anon_sym_SEMI] = ACTIONS(3409), - [anon_sym_LPAREN] = ACTIONS(3409), - [anon_sym_RPAREN] = ACTIONS(3409), - [anon_sym_COMMA] = ACTIONS(3409), - [sym_integer] = ACTIONS(3411), - [sym_float] = ACTIONS(3409), - [sym_string] = ACTIONS(3409), - [anon_sym_true] = ACTIONS(3411), - [anon_sym_false] = ACTIONS(3411), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_RBRACK] = ACTIONS(3409), - [anon_sym_COLON] = ACTIONS(3409), - [anon_sym_DOT_DOT] = ACTIONS(3409), - [anon_sym_PLUS] = ACTIONS(3409), - [anon_sym_DASH] = ACTIONS(3411), - [anon_sym_STAR] = ACTIONS(3409), - [anon_sym_SLASH] = ACTIONS(3409), - [anon_sym_PERCENT] = ACTIONS(3409), - [anon_sym_EQ_EQ] = ACTIONS(3409), - [anon_sym_BANG_EQ] = ACTIONS(3409), - [anon_sym_AMP_AMP] = ACTIONS(3409), - [anon_sym_PIPE_PIPE] = ACTIONS(3409), - [anon_sym_GT] = ACTIONS(3411), - [anon_sym_LT] = ACTIONS(3411), - [anon_sym_GT_EQ] = ACTIONS(3409), - [anon_sym_LT_EQ] = ACTIONS(3409), - [anon_sym_if] = ACTIONS(3411), - [anon_sym_elseif] = ACTIONS(3409), - [anon_sym_else] = ACTIONS(3411), - [anon_sym_match] = ACTIONS(3411), - [anon_sym_EQ_GT] = ACTIONS(3409), - [anon_sym_while] = ACTIONS(3411), - [anon_sym_for] = ACTIONS(3411), - [anon_sym_asyncfor] = ACTIONS(3409), - [anon_sym_transform] = ACTIONS(3411), - [anon_sym_filter] = ACTIONS(3411), - [anon_sym_find] = ACTIONS(3411), - [anon_sym_remove] = ACTIONS(3411), - [anon_sym_reduce] = ACTIONS(3411), - [anon_sym_select] = ACTIONS(3411), - [anon_sym_insert] = ACTIONS(3411), - [anon_sym_async] = ACTIONS(3411), - [anon_sym_PIPE] = ACTIONS(3411), - [anon_sym_table] = ACTIONS(3411), - [anon_sym_assert] = ACTIONS(3411), - [anon_sym_assert_equal] = ACTIONS(3411), - [anon_sym_download] = ACTIONS(3411), - [anon_sym_help] = ACTIONS(3411), - [anon_sym_length] = ACTIONS(3411), - [anon_sym_output] = ACTIONS(3411), - [anon_sym_output_error] = ACTIONS(3411), - [anon_sym_type] = ACTIONS(3411), - [anon_sym_append] = ACTIONS(3411), - [anon_sym_metadata] = ACTIONS(3411), - [anon_sym_move] = ACTIONS(3411), - [anon_sym_read] = ACTIONS(3411), - [anon_sym_workdir] = ACTIONS(3411), - [anon_sym_write] = ACTIONS(3411), - [anon_sym_from_json] = ACTIONS(3411), - [anon_sym_to_json] = ACTIONS(3411), - [anon_sym_to_string] = ACTIONS(3411), - [anon_sym_to_float] = ACTIONS(3411), - [anon_sym_bash] = ACTIONS(3411), - [anon_sym_fish] = ACTIONS(3411), - [anon_sym_raw] = ACTIONS(3411), - [anon_sym_sh] = ACTIONS(3411), - [anon_sym_zsh] = ACTIONS(3411), - [anon_sym_random] = ACTIONS(3411), - [anon_sym_random_boolean] = ACTIONS(3411), - [anon_sym_random_float] = ACTIONS(3411), - [anon_sym_random_integer] = ACTIONS(3411), - [anon_sym_columns] = ACTIONS(3411), - [anon_sym_rows] = ACTIONS(3411), - [anon_sym_reverse] = ACTIONS(3411), - }, - [758] = { - [ts_builtin_sym_end] = ACTIONS(3405), - [sym_identifier] = ACTIONS(3407), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_RBRACE] = ACTIONS(3405), - [anon_sym_SEMI] = ACTIONS(3405), - [anon_sym_LPAREN] = ACTIONS(3405), - [anon_sym_RPAREN] = ACTIONS(3405), - [anon_sym_COMMA] = ACTIONS(3405), - [sym_integer] = ACTIONS(3407), - [sym_float] = ACTIONS(3405), - [sym_string] = ACTIONS(3405), - [anon_sym_true] = ACTIONS(3407), - [anon_sym_false] = ACTIONS(3407), - [anon_sym_LBRACK] = ACTIONS(3405), - [anon_sym_RBRACK] = ACTIONS(3405), - [anon_sym_COLON] = ACTIONS(3405), - [anon_sym_DOT_DOT] = ACTIONS(3405), - [anon_sym_PLUS] = ACTIONS(3405), - [anon_sym_DASH] = ACTIONS(3407), - [anon_sym_STAR] = ACTIONS(3405), - [anon_sym_SLASH] = ACTIONS(3405), - [anon_sym_PERCENT] = ACTIONS(3405), - [anon_sym_EQ_EQ] = ACTIONS(3405), - [anon_sym_BANG_EQ] = ACTIONS(3405), - [anon_sym_AMP_AMP] = ACTIONS(3405), - [anon_sym_PIPE_PIPE] = ACTIONS(3405), - [anon_sym_GT] = ACTIONS(3407), - [anon_sym_LT] = ACTIONS(3407), - [anon_sym_GT_EQ] = ACTIONS(3405), - [anon_sym_LT_EQ] = ACTIONS(3405), - [anon_sym_if] = ACTIONS(3407), - [anon_sym_elseif] = ACTIONS(3405), - [anon_sym_else] = ACTIONS(3407), - [anon_sym_match] = ACTIONS(3407), - [anon_sym_EQ_GT] = ACTIONS(3405), - [anon_sym_while] = ACTIONS(3407), - [anon_sym_for] = ACTIONS(3407), - [anon_sym_asyncfor] = ACTIONS(3405), - [anon_sym_transform] = ACTIONS(3407), - [anon_sym_filter] = ACTIONS(3407), - [anon_sym_find] = ACTIONS(3407), - [anon_sym_remove] = ACTIONS(3407), - [anon_sym_reduce] = ACTIONS(3407), - [anon_sym_select] = ACTIONS(3407), - [anon_sym_insert] = ACTIONS(3407), - [anon_sym_async] = ACTIONS(3407), - [anon_sym_PIPE] = ACTIONS(3407), - [anon_sym_table] = ACTIONS(3407), - [anon_sym_assert] = ACTIONS(3407), - [anon_sym_assert_equal] = ACTIONS(3407), - [anon_sym_download] = ACTIONS(3407), - [anon_sym_help] = ACTIONS(3407), - [anon_sym_length] = ACTIONS(3407), - [anon_sym_output] = ACTIONS(3407), - [anon_sym_output_error] = ACTIONS(3407), - [anon_sym_type] = ACTIONS(3407), - [anon_sym_append] = ACTIONS(3407), - [anon_sym_metadata] = ACTIONS(3407), - [anon_sym_move] = ACTIONS(3407), - [anon_sym_read] = ACTIONS(3407), - [anon_sym_workdir] = ACTIONS(3407), - [anon_sym_write] = ACTIONS(3407), - [anon_sym_from_json] = ACTIONS(3407), - [anon_sym_to_json] = ACTIONS(3407), - [anon_sym_to_string] = ACTIONS(3407), - [anon_sym_to_float] = ACTIONS(3407), - [anon_sym_bash] = ACTIONS(3407), - [anon_sym_fish] = ACTIONS(3407), - [anon_sym_raw] = ACTIONS(3407), - [anon_sym_sh] = ACTIONS(3407), - [anon_sym_zsh] = ACTIONS(3407), - [anon_sym_random] = ACTIONS(3407), - [anon_sym_random_boolean] = ACTIONS(3407), - [anon_sym_random_float] = ACTIONS(3407), - [anon_sym_random_integer] = ACTIONS(3407), - [anon_sym_columns] = ACTIONS(3407), - [anon_sym_rows] = ACTIONS(3407), - [anon_sym_reverse] = ACTIONS(3407), - }, - [759] = { - [ts_builtin_sym_end] = ACTIONS(3401), - [sym_identifier] = ACTIONS(3403), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_RBRACE] = ACTIONS(3401), - [anon_sym_SEMI] = ACTIONS(3401), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_RPAREN] = ACTIONS(3401), - [anon_sym_COMMA] = ACTIONS(3401), - [sym_integer] = ACTIONS(3403), - [sym_float] = ACTIONS(3401), - [sym_string] = ACTIONS(3401), - [anon_sym_true] = ACTIONS(3403), - [anon_sym_false] = ACTIONS(3403), - [anon_sym_LBRACK] = ACTIONS(3401), - [anon_sym_RBRACK] = ACTIONS(3401), - [anon_sym_COLON] = ACTIONS(3401), - [anon_sym_DOT_DOT] = ACTIONS(3401), - [anon_sym_PLUS] = ACTIONS(3401), - [anon_sym_DASH] = ACTIONS(3403), - [anon_sym_STAR] = ACTIONS(3401), - [anon_sym_SLASH] = ACTIONS(3401), - [anon_sym_PERCENT] = ACTIONS(3401), - [anon_sym_EQ_EQ] = ACTIONS(3401), - [anon_sym_BANG_EQ] = ACTIONS(3401), - [anon_sym_AMP_AMP] = ACTIONS(3401), - [anon_sym_PIPE_PIPE] = ACTIONS(3401), - [anon_sym_GT] = ACTIONS(3403), - [anon_sym_LT] = ACTIONS(3403), - [anon_sym_GT_EQ] = ACTIONS(3401), - [anon_sym_LT_EQ] = ACTIONS(3401), - [anon_sym_if] = ACTIONS(3403), - [anon_sym_elseif] = ACTIONS(3401), - [anon_sym_else] = ACTIONS(3403), - [anon_sym_match] = ACTIONS(3403), - [anon_sym_EQ_GT] = ACTIONS(3401), - [anon_sym_while] = ACTIONS(3403), - [anon_sym_for] = ACTIONS(3403), - [anon_sym_asyncfor] = ACTIONS(3401), - [anon_sym_transform] = ACTIONS(3403), - [anon_sym_filter] = ACTIONS(3403), - [anon_sym_find] = ACTIONS(3403), - [anon_sym_remove] = ACTIONS(3403), - [anon_sym_reduce] = ACTIONS(3403), - [anon_sym_select] = ACTIONS(3403), - [anon_sym_insert] = ACTIONS(3403), - [anon_sym_async] = ACTIONS(3403), - [anon_sym_PIPE] = ACTIONS(3403), - [anon_sym_table] = ACTIONS(3403), - [anon_sym_assert] = ACTIONS(3403), - [anon_sym_assert_equal] = ACTIONS(3403), - [anon_sym_download] = ACTIONS(3403), - [anon_sym_help] = ACTIONS(3403), - [anon_sym_length] = ACTIONS(3403), - [anon_sym_output] = ACTIONS(3403), - [anon_sym_output_error] = ACTIONS(3403), - [anon_sym_type] = ACTIONS(3403), - [anon_sym_append] = ACTIONS(3403), - [anon_sym_metadata] = ACTIONS(3403), - [anon_sym_move] = ACTIONS(3403), - [anon_sym_read] = ACTIONS(3403), - [anon_sym_workdir] = ACTIONS(3403), - [anon_sym_write] = ACTIONS(3403), - [anon_sym_from_json] = ACTIONS(3403), - [anon_sym_to_json] = ACTIONS(3403), - [anon_sym_to_string] = ACTIONS(3403), - [anon_sym_to_float] = ACTIONS(3403), - [anon_sym_bash] = ACTIONS(3403), - [anon_sym_fish] = ACTIONS(3403), - [anon_sym_raw] = ACTIONS(3403), - [anon_sym_sh] = ACTIONS(3403), - [anon_sym_zsh] = ACTIONS(3403), - [anon_sym_random] = ACTIONS(3403), - [anon_sym_random_boolean] = ACTIONS(3403), - [anon_sym_random_float] = ACTIONS(3403), - [anon_sym_random_integer] = ACTIONS(3403), - [anon_sym_columns] = ACTIONS(3403), - [anon_sym_rows] = ACTIONS(3403), - [anon_sym_reverse] = ACTIONS(3403), - }, - [760] = { - [sym_else_if] = STATE(793), - [sym_else] = STATE(792), - [aux_sym_if_else_repeat1] = STATE(793), - [ts_builtin_sym_end] = ACTIONS(3219), - [sym_identifier] = ACTIONS(3221), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_RPAREN] = ACTIONS(3219), - [sym_integer] = ACTIONS(3221), - [sym_float] = ACTIONS(3219), - [sym_string] = ACTIONS(3219), - [anon_sym_true] = ACTIONS(3221), - [anon_sym_false] = ACTIONS(3221), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_COLON] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3221), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_PERCENT] = ACTIONS(3219), - [anon_sym_EQ_EQ] = ACTIONS(3219), - [anon_sym_BANG_EQ] = ACTIONS(3219), - [anon_sym_AMP_AMP] = ACTIONS(3219), - [anon_sym_PIPE_PIPE] = ACTIONS(3219), - [anon_sym_GT] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3221), - [anon_sym_GT_EQ] = ACTIONS(3219), - [anon_sym_LT_EQ] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3221), - [anon_sym_elseif] = ACTIONS(3596), - [anon_sym_else] = ACTIONS(3598), - [anon_sym_match] = ACTIONS(3221), - [anon_sym_EQ_GT] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3221), - [anon_sym_for] = ACTIONS(3221), - [anon_sym_asyncfor] = ACTIONS(3219), - [anon_sym_transform] = ACTIONS(3221), - [anon_sym_filter] = ACTIONS(3221), - [anon_sym_find] = ACTIONS(3221), - [anon_sym_remove] = ACTIONS(3221), - [anon_sym_reduce] = ACTIONS(3221), - [anon_sym_select] = ACTIONS(3221), - [anon_sym_insert] = ACTIONS(3221), - [anon_sym_async] = ACTIONS(3221), - [anon_sym_PIPE] = ACTIONS(3221), - [anon_sym_table] = ACTIONS(3221), - [anon_sym_assert] = ACTIONS(3221), - [anon_sym_assert_equal] = ACTIONS(3221), - [anon_sym_download] = ACTIONS(3221), - [anon_sym_help] = ACTIONS(3221), - [anon_sym_length] = ACTIONS(3221), - [anon_sym_output] = ACTIONS(3221), - [anon_sym_output_error] = ACTIONS(3221), - [anon_sym_type] = ACTIONS(3221), - [anon_sym_append] = ACTIONS(3221), - [anon_sym_metadata] = ACTIONS(3221), - [anon_sym_move] = ACTIONS(3221), - [anon_sym_read] = ACTIONS(3221), - [anon_sym_workdir] = ACTIONS(3221), - [anon_sym_write] = ACTIONS(3221), - [anon_sym_from_json] = ACTIONS(3221), - [anon_sym_to_json] = ACTIONS(3221), - [anon_sym_to_string] = ACTIONS(3221), - [anon_sym_to_float] = ACTIONS(3221), - [anon_sym_bash] = ACTIONS(3221), - [anon_sym_fish] = ACTIONS(3221), - [anon_sym_raw] = ACTIONS(3221), - [anon_sym_sh] = ACTIONS(3221), - [anon_sym_zsh] = ACTIONS(3221), - [anon_sym_random] = ACTIONS(3221), - [anon_sym_random_boolean] = ACTIONS(3221), - [anon_sym_random_float] = ACTIONS(3221), - [anon_sym_random_integer] = ACTIONS(3221), - [anon_sym_columns] = ACTIONS(3221), - [anon_sym_rows] = ACTIONS(3221), - [anon_sym_reverse] = ACTIONS(3221), - }, - [761] = { - [ts_builtin_sym_end] = ACTIONS(3389), - [sym_identifier] = ACTIONS(3391), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3389), - [anon_sym_RBRACE] = ACTIONS(3389), - [anon_sym_SEMI] = ACTIONS(3389), - [anon_sym_LPAREN] = ACTIONS(3389), - [anon_sym_RPAREN] = ACTIONS(3389), - [anon_sym_COMMA] = ACTIONS(3389), - [sym_integer] = ACTIONS(3391), - [sym_float] = ACTIONS(3389), - [sym_string] = ACTIONS(3389), - [anon_sym_true] = ACTIONS(3391), - [anon_sym_false] = ACTIONS(3391), - [anon_sym_LBRACK] = ACTIONS(3389), - [anon_sym_RBRACK] = ACTIONS(3389), - [anon_sym_COLON] = ACTIONS(3389), - [anon_sym_DOT_DOT] = ACTIONS(3389), - [anon_sym_PLUS] = ACTIONS(3389), - [anon_sym_DASH] = ACTIONS(3391), - [anon_sym_STAR] = ACTIONS(3389), - [anon_sym_SLASH] = ACTIONS(3389), - [anon_sym_PERCENT] = ACTIONS(3389), - [anon_sym_EQ_EQ] = ACTIONS(3389), - [anon_sym_BANG_EQ] = ACTIONS(3389), - [anon_sym_AMP_AMP] = ACTIONS(3389), - [anon_sym_PIPE_PIPE] = ACTIONS(3389), - [anon_sym_GT] = ACTIONS(3391), - [anon_sym_LT] = ACTIONS(3391), - [anon_sym_GT_EQ] = ACTIONS(3389), - [anon_sym_LT_EQ] = ACTIONS(3389), - [anon_sym_if] = ACTIONS(3391), - [anon_sym_elseif] = ACTIONS(3389), - [anon_sym_else] = ACTIONS(3391), - [anon_sym_match] = ACTIONS(3391), - [anon_sym_EQ_GT] = ACTIONS(3389), - [anon_sym_while] = ACTIONS(3391), - [anon_sym_for] = ACTIONS(3391), - [anon_sym_asyncfor] = ACTIONS(3389), - [anon_sym_transform] = ACTIONS(3391), - [anon_sym_filter] = ACTIONS(3391), - [anon_sym_find] = ACTIONS(3391), - [anon_sym_remove] = ACTIONS(3391), - [anon_sym_reduce] = ACTIONS(3391), - [anon_sym_select] = ACTIONS(3391), - [anon_sym_insert] = ACTIONS(3391), - [anon_sym_async] = ACTIONS(3391), - [anon_sym_PIPE] = ACTIONS(3391), - [anon_sym_table] = ACTIONS(3391), - [anon_sym_assert] = ACTIONS(3391), - [anon_sym_assert_equal] = ACTIONS(3391), - [anon_sym_download] = ACTIONS(3391), - [anon_sym_help] = ACTIONS(3391), - [anon_sym_length] = ACTIONS(3391), - [anon_sym_output] = ACTIONS(3391), - [anon_sym_output_error] = ACTIONS(3391), - [anon_sym_type] = ACTIONS(3391), - [anon_sym_append] = ACTIONS(3391), - [anon_sym_metadata] = ACTIONS(3391), - [anon_sym_move] = ACTIONS(3391), - [anon_sym_read] = ACTIONS(3391), - [anon_sym_workdir] = ACTIONS(3391), - [anon_sym_write] = ACTIONS(3391), - [anon_sym_from_json] = ACTIONS(3391), - [anon_sym_to_json] = ACTIONS(3391), - [anon_sym_to_string] = ACTIONS(3391), - [anon_sym_to_float] = ACTIONS(3391), - [anon_sym_bash] = ACTIONS(3391), - [anon_sym_fish] = ACTIONS(3391), - [anon_sym_raw] = ACTIONS(3391), - [anon_sym_sh] = ACTIONS(3391), - [anon_sym_zsh] = ACTIONS(3391), - [anon_sym_random] = ACTIONS(3391), - [anon_sym_random_boolean] = ACTIONS(3391), - [anon_sym_random_float] = ACTIONS(3391), - [anon_sym_random_integer] = ACTIONS(3391), - [anon_sym_columns] = ACTIONS(3391), - [anon_sym_rows] = ACTIONS(3391), - [anon_sym_reverse] = ACTIONS(3391), - }, - [762] = { - [ts_builtin_sym_end] = ACTIONS(3397), - [sym_identifier] = ACTIONS(3399), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3397), - [anon_sym_RBRACE] = ACTIONS(3397), - [anon_sym_SEMI] = ACTIONS(3397), - [anon_sym_LPAREN] = ACTIONS(3397), - [anon_sym_RPAREN] = ACTIONS(3397), - [anon_sym_COMMA] = ACTIONS(3397), - [sym_integer] = ACTIONS(3399), - [sym_float] = ACTIONS(3397), - [sym_string] = ACTIONS(3397), - [anon_sym_true] = ACTIONS(3399), - [anon_sym_false] = ACTIONS(3399), - [anon_sym_LBRACK] = ACTIONS(3397), - [anon_sym_RBRACK] = ACTIONS(3397), - [anon_sym_COLON] = ACTIONS(3397), - [anon_sym_DOT_DOT] = ACTIONS(3397), - [anon_sym_PLUS] = ACTIONS(3397), - [anon_sym_DASH] = ACTIONS(3399), - [anon_sym_STAR] = ACTIONS(3397), - [anon_sym_SLASH] = ACTIONS(3397), - [anon_sym_PERCENT] = ACTIONS(3397), - [anon_sym_EQ_EQ] = ACTIONS(3397), - [anon_sym_BANG_EQ] = ACTIONS(3397), - [anon_sym_AMP_AMP] = ACTIONS(3397), - [anon_sym_PIPE_PIPE] = ACTIONS(3397), - [anon_sym_GT] = ACTIONS(3399), - [anon_sym_LT] = ACTIONS(3399), - [anon_sym_GT_EQ] = ACTIONS(3397), - [anon_sym_LT_EQ] = ACTIONS(3397), - [anon_sym_if] = ACTIONS(3399), - [anon_sym_elseif] = ACTIONS(3397), - [anon_sym_else] = ACTIONS(3399), - [anon_sym_match] = ACTIONS(3399), - [anon_sym_EQ_GT] = ACTIONS(3397), - [anon_sym_while] = ACTIONS(3399), - [anon_sym_for] = ACTIONS(3399), - [anon_sym_asyncfor] = ACTIONS(3397), - [anon_sym_transform] = ACTIONS(3399), - [anon_sym_filter] = ACTIONS(3399), - [anon_sym_find] = ACTIONS(3399), - [anon_sym_remove] = ACTIONS(3399), - [anon_sym_reduce] = ACTIONS(3399), - [anon_sym_select] = ACTIONS(3399), - [anon_sym_insert] = ACTIONS(3399), - [anon_sym_async] = ACTIONS(3399), - [anon_sym_PIPE] = ACTIONS(3399), - [anon_sym_table] = ACTIONS(3399), - [anon_sym_assert] = ACTIONS(3399), - [anon_sym_assert_equal] = ACTIONS(3399), - [anon_sym_download] = ACTIONS(3399), - [anon_sym_help] = ACTIONS(3399), - [anon_sym_length] = ACTIONS(3399), - [anon_sym_output] = ACTIONS(3399), - [anon_sym_output_error] = ACTIONS(3399), - [anon_sym_type] = ACTIONS(3399), - [anon_sym_append] = ACTIONS(3399), - [anon_sym_metadata] = ACTIONS(3399), - [anon_sym_move] = ACTIONS(3399), - [anon_sym_read] = ACTIONS(3399), - [anon_sym_workdir] = ACTIONS(3399), - [anon_sym_write] = ACTIONS(3399), - [anon_sym_from_json] = ACTIONS(3399), - [anon_sym_to_json] = ACTIONS(3399), - [anon_sym_to_string] = ACTIONS(3399), - [anon_sym_to_float] = ACTIONS(3399), - [anon_sym_bash] = ACTIONS(3399), - [anon_sym_fish] = ACTIONS(3399), - [anon_sym_raw] = ACTIONS(3399), - [anon_sym_sh] = ACTIONS(3399), - [anon_sym_zsh] = ACTIONS(3399), - [anon_sym_random] = ACTIONS(3399), - [anon_sym_random_boolean] = ACTIONS(3399), - [anon_sym_random_float] = ACTIONS(3399), - [anon_sym_random_integer] = ACTIONS(3399), - [anon_sym_columns] = ACTIONS(3399), - [anon_sym_rows] = ACTIONS(3399), - [anon_sym_reverse] = ACTIONS(3399), - }, - [763] = { - [ts_builtin_sym_end] = ACTIONS(3383), - [sym_identifier] = ACTIONS(3385), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3383), - [anon_sym_RBRACE] = ACTIONS(3383), - [anon_sym_SEMI] = ACTIONS(3383), - [anon_sym_LPAREN] = ACTIONS(3383), - [anon_sym_RPAREN] = ACTIONS(3383), - [anon_sym_COMMA] = ACTIONS(3383), - [sym_integer] = ACTIONS(3385), - [sym_float] = ACTIONS(3383), - [sym_string] = ACTIONS(3383), - [anon_sym_true] = ACTIONS(3385), - [anon_sym_false] = ACTIONS(3385), - [anon_sym_LBRACK] = ACTIONS(3383), - [anon_sym_RBRACK] = ACTIONS(3383), - [anon_sym_COLON] = ACTIONS(3383), - [anon_sym_DOT_DOT] = ACTIONS(3383), - [anon_sym_PLUS] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(3383), - [anon_sym_SLASH] = ACTIONS(3383), - [anon_sym_PERCENT] = ACTIONS(3383), - [anon_sym_EQ_EQ] = ACTIONS(3383), - [anon_sym_BANG_EQ] = ACTIONS(3383), - [anon_sym_AMP_AMP] = ACTIONS(3383), - [anon_sym_PIPE_PIPE] = ACTIONS(3383), - [anon_sym_GT] = ACTIONS(3385), - [anon_sym_LT] = ACTIONS(3385), - [anon_sym_GT_EQ] = ACTIONS(3383), - [anon_sym_LT_EQ] = ACTIONS(3383), - [anon_sym_if] = ACTIONS(3385), - [anon_sym_elseif] = ACTIONS(3383), - [anon_sym_else] = ACTIONS(3385), - [anon_sym_match] = ACTIONS(3385), - [anon_sym_EQ_GT] = ACTIONS(3383), - [anon_sym_while] = ACTIONS(3385), - [anon_sym_for] = ACTIONS(3385), - [anon_sym_asyncfor] = ACTIONS(3383), - [anon_sym_transform] = ACTIONS(3385), - [anon_sym_filter] = ACTIONS(3385), - [anon_sym_find] = ACTIONS(3385), - [anon_sym_remove] = ACTIONS(3385), - [anon_sym_reduce] = ACTIONS(3385), - [anon_sym_select] = ACTIONS(3385), - [anon_sym_insert] = ACTIONS(3385), - [anon_sym_async] = ACTIONS(3385), - [anon_sym_PIPE] = ACTIONS(3385), - [anon_sym_table] = ACTIONS(3385), - [anon_sym_assert] = ACTIONS(3385), - [anon_sym_assert_equal] = ACTIONS(3385), - [anon_sym_download] = ACTIONS(3385), - [anon_sym_help] = ACTIONS(3385), - [anon_sym_length] = ACTIONS(3385), - [anon_sym_output] = ACTIONS(3385), - [anon_sym_output_error] = ACTIONS(3385), - [anon_sym_type] = ACTIONS(3385), - [anon_sym_append] = ACTIONS(3385), - [anon_sym_metadata] = ACTIONS(3385), - [anon_sym_move] = ACTIONS(3385), - [anon_sym_read] = ACTIONS(3385), - [anon_sym_workdir] = ACTIONS(3385), - [anon_sym_write] = ACTIONS(3385), - [anon_sym_from_json] = ACTIONS(3385), - [anon_sym_to_json] = ACTIONS(3385), - [anon_sym_to_string] = ACTIONS(3385), - [anon_sym_to_float] = ACTIONS(3385), - [anon_sym_bash] = ACTIONS(3385), - [anon_sym_fish] = ACTIONS(3385), - [anon_sym_raw] = ACTIONS(3385), - [anon_sym_sh] = ACTIONS(3385), - [anon_sym_zsh] = ACTIONS(3385), - [anon_sym_random] = ACTIONS(3385), - [anon_sym_random_boolean] = ACTIONS(3385), - [anon_sym_random_float] = ACTIONS(3385), - [anon_sym_random_integer] = ACTIONS(3385), - [anon_sym_columns] = ACTIONS(3385), - [anon_sym_rows] = ACTIONS(3385), - [anon_sym_reverse] = ACTIONS(3385), - }, - [764] = { - [ts_builtin_sym_end] = ACTIONS(3375), - [sym_identifier] = ACTIONS(3377), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3375), - [anon_sym_RBRACE] = ACTIONS(3375), - [anon_sym_SEMI] = ACTIONS(3375), - [anon_sym_LPAREN] = ACTIONS(3375), - [anon_sym_RPAREN] = ACTIONS(3375), - [anon_sym_COMMA] = ACTIONS(3375), - [sym_integer] = ACTIONS(3377), - [sym_float] = ACTIONS(3375), - [sym_string] = ACTIONS(3375), - [anon_sym_true] = ACTIONS(3377), - [anon_sym_false] = ACTIONS(3377), - [anon_sym_LBRACK] = ACTIONS(3375), - [anon_sym_RBRACK] = ACTIONS(3375), - [anon_sym_COLON] = ACTIONS(3375), - [anon_sym_DOT_DOT] = ACTIONS(3375), - [anon_sym_PLUS] = ACTIONS(3375), - [anon_sym_DASH] = ACTIONS(3377), - [anon_sym_STAR] = ACTIONS(3375), - [anon_sym_SLASH] = ACTIONS(3375), - [anon_sym_PERCENT] = ACTIONS(3375), - [anon_sym_EQ_EQ] = ACTIONS(3375), - [anon_sym_BANG_EQ] = ACTIONS(3375), - [anon_sym_AMP_AMP] = ACTIONS(3375), - [anon_sym_PIPE_PIPE] = ACTIONS(3375), - [anon_sym_GT] = ACTIONS(3377), - [anon_sym_LT] = ACTIONS(3377), - [anon_sym_GT_EQ] = ACTIONS(3375), - [anon_sym_LT_EQ] = ACTIONS(3375), - [anon_sym_if] = ACTIONS(3377), - [anon_sym_elseif] = ACTIONS(3375), - [anon_sym_else] = ACTIONS(3377), - [anon_sym_match] = ACTIONS(3377), - [anon_sym_EQ_GT] = ACTIONS(3375), - [anon_sym_while] = ACTIONS(3377), - [anon_sym_for] = ACTIONS(3377), - [anon_sym_asyncfor] = ACTIONS(3375), - [anon_sym_transform] = ACTIONS(3377), - [anon_sym_filter] = ACTIONS(3377), - [anon_sym_find] = ACTIONS(3377), - [anon_sym_remove] = ACTIONS(3377), - [anon_sym_reduce] = ACTIONS(3377), - [anon_sym_select] = ACTIONS(3377), - [anon_sym_insert] = ACTIONS(3377), - [anon_sym_async] = ACTIONS(3377), - [anon_sym_PIPE] = ACTIONS(3377), - [anon_sym_table] = ACTIONS(3377), - [anon_sym_assert] = ACTIONS(3377), - [anon_sym_assert_equal] = ACTIONS(3377), - [anon_sym_download] = ACTIONS(3377), - [anon_sym_help] = ACTIONS(3377), - [anon_sym_length] = ACTIONS(3377), - [anon_sym_output] = ACTIONS(3377), - [anon_sym_output_error] = ACTIONS(3377), - [anon_sym_type] = ACTIONS(3377), - [anon_sym_append] = ACTIONS(3377), - [anon_sym_metadata] = ACTIONS(3377), - [anon_sym_move] = ACTIONS(3377), - [anon_sym_read] = ACTIONS(3377), - [anon_sym_workdir] = ACTIONS(3377), - [anon_sym_write] = ACTIONS(3377), - [anon_sym_from_json] = ACTIONS(3377), - [anon_sym_to_json] = ACTIONS(3377), - [anon_sym_to_string] = ACTIONS(3377), - [anon_sym_to_float] = ACTIONS(3377), - [anon_sym_bash] = ACTIONS(3377), - [anon_sym_fish] = ACTIONS(3377), - [anon_sym_raw] = ACTIONS(3377), - [anon_sym_sh] = ACTIONS(3377), - [anon_sym_zsh] = ACTIONS(3377), - [anon_sym_random] = ACTIONS(3377), - [anon_sym_random_boolean] = ACTIONS(3377), - [anon_sym_random_float] = ACTIONS(3377), - [anon_sym_random_integer] = ACTIONS(3377), - [anon_sym_columns] = ACTIONS(3377), - [anon_sym_rows] = ACTIONS(3377), - [anon_sym_reverse] = ACTIONS(3377), - }, - [765] = { - [ts_builtin_sym_end] = ACTIONS(3371), - [sym_identifier] = ACTIONS(3373), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3371), - [anon_sym_RBRACE] = ACTIONS(3371), - [anon_sym_SEMI] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3371), - [anon_sym_RPAREN] = ACTIONS(3371), - [anon_sym_COMMA] = ACTIONS(3371), - [sym_integer] = ACTIONS(3373), - [sym_float] = ACTIONS(3371), - [sym_string] = ACTIONS(3371), - [anon_sym_true] = ACTIONS(3373), - [anon_sym_false] = ACTIONS(3373), - [anon_sym_LBRACK] = ACTIONS(3371), - [anon_sym_RBRACK] = ACTIONS(3371), - [anon_sym_COLON] = ACTIONS(3371), - [anon_sym_DOT_DOT] = ACTIONS(3371), - [anon_sym_PLUS] = ACTIONS(3371), - [anon_sym_DASH] = ACTIONS(3373), - [anon_sym_STAR] = ACTIONS(3371), - [anon_sym_SLASH] = ACTIONS(3371), - [anon_sym_PERCENT] = ACTIONS(3371), - [anon_sym_EQ_EQ] = ACTIONS(3371), - [anon_sym_BANG_EQ] = ACTIONS(3371), - [anon_sym_AMP_AMP] = ACTIONS(3371), - [anon_sym_PIPE_PIPE] = ACTIONS(3371), - [anon_sym_GT] = ACTIONS(3373), - [anon_sym_LT] = ACTIONS(3373), - [anon_sym_GT_EQ] = ACTIONS(3371), - [anon_sym_LT_EQ] = ACTIONS(3371), - [anon_sym_if] = ACTIONS(3373), - [anon_sym_elseif] = ACTIONS(3371), - [anon_sym_else] = ACTIONS(3373), - [anon_sym_match] = ACTIONS(3373), - [anon_sym_EQ_GT] = ACTIONS(3371), - [anon_sym_while] = ACTIONS(3373), - [anon_sym_for] = ACTIONS(3373), - [anon_sym_asyncfor] = ACTIONS(3371), - [anon_sym_transform] = ACTIONS(3373), - [anon_sym_filter] = ACTIONS(3373), - [anon_sym_find] = ACTIONS(3373), - [anon_sym_remove] = ACTIONS(3373), - [anon_sym_reduce] = ACTIONS(3373), - [anon_sym_select] = ACTIONS(3373), - [anon_sym_insert] = ACTIONS(3373), - [anon_sym_async] = ACTIONS(3373), - [anon_sym_PIPE] = ACTIONS(3373), - [anon_sym_table] = ACTIONS(3373), - [anon_sym_assert] = ACTIONS(3373), - [anon_sym_assert_equal] = ACTIONS(3373), - [anon_sym_download] = ACTIONS(3373), - [anon_sym_help] = ACTIONS(3373), - [anon_sym_length] = ACTIONS(3373), - [anon_sym_output] = ACTIONS(3373), - [anon_sym_output_error] = ACTIONS(3373), - [anon_sym_type] = ACTIONS(3373), - [anon_sym_append] = ACTIONS(3373), - [anon_sym_metadata] = ACTIONS(3373), - [anon_sym_move] = ACTIONS(3373), - [anon_sym_read] = ACTIONS(3373), - [anon_sym_workdir] = ACTIONS(3373), - [anon_sym_write] = ACTIONS(3373), - [anon_sym_from_json] = ACTIONS(3373), - [anon_sym_to_json] = ACTIONS(3373), - [anon_sym_to_string] = ACTIONS(3373), - [anon_sym_to_float] = ACTIONS(3373), - [anon_sym_bash] = ACTIONS(3373), - [anon_sym_fish] = ACTIONS(3373), - [anon_sym_raw] = ACTIONS(3373), - [anon_sym_sh] = ACTIONS(3373), - [anon_sym_zsh] = ACTIONS(3373), - [anon_sym_random] = ACTIONS(3373), - [anon_sym_random_boolean] = ACTIONS(3373), - [anon_sym_random_float] = ACTIONS(3373), - [anon_sym_random_integer] = ACTIONS(3373), - [anon_sym_columns] = ACTIONS(3373), - [anon_sym_rows] = ACTIONS(3373), - [anon_sym_reverse] = ACTIONS(3373), - }, - [766] = { - [ts_builtin_sym_end] = ACTIONS(3359), - [sym_identifier] = ACTIONS(3361), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3359), - [anon_sym_RBRACE] = ACTIONS(3359), - [anon_sym_SEMI] = ACTIONS(3359), - [anon_sym_LPAREN] = ACTIONS(3359), - [anon_sym_RPAREN] = ACTIONS(3359), - [anon_sym_COMMA] = ACTIONS(3359), - [sym_integer] = ACTIONS(3361), - [sym_float] = ACTIONS(3359), - [sym_string] = ACTIONS(3359), - [anon_sym_true] = ACTIONS(3361), - [anon_sym_false] = ACTIONS(3361), - [anon_sym_LBRACK] = ACTIONS(3359), - [anon_sym_RBRACK] = ACTIONS(3359), - [anon_sym_COLON] = ACTIONS(3359), - [anon_sym_DOT_DOT] = ACTIONS(3359), - [anon_sym_PLUS] = ACTIONS(3359), - [anon_sym_DASH] = ACTIONS(3361), - [anon_sym_STAR] = ACTIONS(3359), - [anon_sym_SLASH] = ACTIONS(3359), - [anon_sym_PERCENT] = ACTIONS(3359), - [anon_sym_EQ_EQ] = ACTIONS(3359), - [anon_sym_BANG_EQ] = ACTIONS(3359), - [anon_sym_AMP_AMP] = ACTIONS(3359), - [anon_sym_PIPE_PIPE] = ACTIONS(3359), - [anon_sym_GT] = ACTIONS(3361), - [anon_sym_LT] = ACTIONS(3361), - [anon_sym_GT_EQ] = ACTIONS(3359), - [anon_sym_LT_EQ] = ACTIONS(3359), - [anon_sym_if] = ACTIONS(3361), - [anon_sym_elseif] = ACTIONS(3359), - [anon_sym_else] = ACTIONS(3361), - [anon_sym_match] = ACTIONS(3361), - [anon_sym_EQ_GT] = ACTIONS(3359), - [anon_sym_while] = ACTIONS(3361), - [anon_sym_for] = ACTIONS(3361), - [anon_sym_asyncfor] = ACTIONS(3359), - [anon_sym_transform] = ACTIONS(3361), - [anon_sym_filter] = ACTIONS(3361), - [anon_sym_find] = ACTIONS(3361), - [anon_sym_remove] = ACTIONS(3361), - [anon_sym_reduce] = ACTIONS(3361), - [anon_sym_select] = ACTIONS(3361), - [anon_sym_insert] = ACTIONS(3361), - [anon_sym_async] = ACTIONS(3361), - [anon_sym_PIPE] = ACTIONS(3361), - [anon_sym_table] = ACTIONS(3361), - [anon_sym_assert] = ACTIONS(3361), - [anon_sym_assert_equal] = ACTIONS(3361), - [anon_sym_download] = ACTIONS(3361), - [anon_sym_help] = ACTIONS(3361), - [anon_sym_length] = ACTIONS(3361), - [anon_sym_output] = ACTIONS(3361), - [anon_sym_output_error] = ACTIONS(3361), - [anon_sym_type] = ACTIONS(3361), - [anon_sym_append] = ACTIONS(3361), - [anon_sym_metadata] = ACTIONS(3361), - [anon_sym_move] = ACTIONS(3361), - [anon_sym_read] = ACTIONS(3361), - [anon_sym_workdir] = ACTIONS(3361), - [anon_sym_write] = ACTIONS(3361), - [anon_sym_from_json] = ACTIONS(3361), - [anon_sym_to_json] = ACTIONS(3361), - [anon_sym_to_string] = ACTIONS(3361), - [anon_sym_to_float] = ACTIONS(3361), - [anon_sym_bash] = ACTIONS(3361), - [anon_sym_fish] = ACTIONS(3361), - [anon_sym_raw] = ACTIONS(3361), - [anon_sym_sh] = ACTIONS(3361), - [anon_sym_zsh] = ACTIONS(3361), - [anon_sym_random] = ACTIONS(3361), - [anon_sym_random_boolean] = ACTIONS(3361), - [anon_sym_random_float] = ACTIONS(3361), - [anon_sym_random_integer] = ACTIONS(3361), - [anon_sym_columns] = ACTIONS(3361), - [anon_sym_rows] = ACTIONS(3361), - [anon_sym_reverse] = ACTIONS(3361), - }, - [767] = { - [ts_builtin_sym_end] = ACTIONS(3423), - [sym_identifier] = ACTIONS(3425), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3423), - [anon_sym_RBRACE] = ACTIONS(3423), - [anon_sym_SEMI] = ACTIONS(3423), - [anon_sym_LPAREN] = ACTIONS(3423), - [anon_sym_RPAREN] = ACTIONS(3423), - [anon_sym_COMMA] = ACTIONS(3423), - [sym_integer] = ACTIONS(3425), - [sym_float] = ACTIONS(3423), - [sym_string] = ACTIONS(3423), - [anon_sym_true] = ACTIONS(3425), - [anon_sym_false] = ACTIONS(3425), - [anon_sym_LBRACK] = ACTIONS(3423), - [anon_sym_RBRACK] = ACTIONS(3423), - [anon_sym_COLON] = ACTIONS(3423), - [anon_sym_DOT_DOT] = ACTIONS(3423), - [anon_sym_PLUS] = ACTIONS(3423), - [anon_sym_DASH] = ACTIONS(3425), - [anon_sym_STAR] = ACTIONS(3423), - [anon_sym_SLASH] = ACTIONS(3423), - [anon_sym_PERCENT] = ACTIONS(3423), - [anon_sym_EQ_EQ] = ACTIONS(3423), - [anon_sym_BANG_EQ] = ACTIONS(3423), - [anon_sym_AMP_AMP] = ACTIONS(3423), - [anon_sym_PIPE_PIPE] = ACTIONS(3423), - [anon_sym_GT] = ACTIONS(3425), - [anon_sym_LT] = ACTIONS(3425), - [anon_sym_GT_EQ] = ACTIONS(3423), - [anon_sym_LT_EQ] = ACTIONS(3423), - [anon_sym_if] = ACTIONS(3425), - [anon_sym_elseif] = ACTIONS(3423), - [anon_sym_else] = ACTIONS(3425), - [anon_sym_match] = ACTIONS(3425), - [anon_sym_EQ_GT] = ACTIONS(3423), - [anon_sym_while] = ACTIONS(3425), - [anon_sym_for] = ACTIONS(3425), - [anon_sym_asyncfor] = ACTIONS(3423), - [anon_sym_transform] = ACTIONS(3425), - [anon_sym_filter] = ACTIONS(3425), - [anon_sym_find] = ACTIONS(3425), - [anon_sym_remove] = ACTIONS(3425), - [anon_sym_reduce] = ACTIONS(3425), - [anon_sym_select] = ACTIONS(3425), - [anon_sym_insert] = ACTIONS(3425), - [anon_sym_async] = ACTIONS(3425), - [anon_sym_PIPE] = ACTIONS(3425), - [anon_sym_table] = ACTIONS(3425), - [anon_sym_assert] = ACTIONS(3425), - [anon_sym_assert_equal] = ACTIONS(3425), - [anon_sym_download] = ACTIONS(3425), - [anon_sym_help] = ACTIONS(3425), - [anon_sym_length] = ACTIONS(3425), - [anon_sym_output] = ACTIONS(3425), - [anon_sym_output_error] = ACTIONS(3425), - [anon_sym_type] = ACTIONS(3425), - [anon_sym_append] = ACTIONS(3425), - [anon_sym_metadata] = ACTIONS(3425), - [anon_sym_move] = ACTIONS(3425), - [anon_sym_read] = ACTIONS(3425), - [anon_sym_workdir] = ACTIONS(3425), - [anon_sym_write] = ACTIONS(3425), - [anon_sym_from_json] = ACTIONS(3425), - [anon_sym_to_json] = ACTIONS(3425), - [anon_sym_to_string] = ACTIONS(3425), - [anon_sym_to_float] = ACTIONS(3425), - [anon_sym_bash] = ACTIONS(3425), - [anon_sym_fish] = ACTIONS(3425), - [anon_sym_raw] = ACTIONS(3425), - [anon_sym_sh] = ACTIONS(3425), - [anon_sym_zsh] = ACTIONS(3425), - [anon_sym_random] = ACTIONS(3425), - [anon_sym_random_boolean] = ACTIONS(3425), - [anon_sym_random_float] = ACTIONS(3425), - [anon_sym_random_integer] = ACTIONS(3425), - [anon_sym_columns] = ACTIONS(3425), - [anon_sym_rows] = ACTIONS(3425), - [anon_sym_reverse] = ACTIONS(3425), - }, - [768] = { - [sym_math_operator] = STATE(1270), - [sym_logic_operator] = STATE(1260), - [ts_builtin_sym_end] = ACTIONS(3262), - [sym_identifier] = ACTIONS(3264), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3262), - [anon_sym_SEMI] = ACTIONS(3262), - [anon_sym_LPAREN] = ACTIONS(3262), - [anon_sym_RPAREN] = ACTIONS(3262), - [sym_integer] = ACTIONS(3264), - [sym_float] = ACTIONS(3262), - [sym_string] = ACTIONS(3262), - [anon_sym_true] = ACTIONS(3264), - [anon_sym_false] = ACTIONS(3264), - [anon_sym_LBRACK] = ACTIONS(3262), - [anon_sym_EQ] = ACTIONS(3264), - [anon_sym_COLON] = ACTIONS(3262), - [anon_sym_PLUS] = ACTIONS(3264), - [anon_sym_DASH] = ACTIONS(3264), - [anon_sym_STAR] = ACTIONS(3262), - [anon_sym_SLASH] = ACTIONS(3262), - [anon_sym_PERCENT] = ACTIONS(3262), - [anon_sym_EQ_EQ] = ACTIONS(3262), - [anon_sym_BANG_EQ] = ACTIONS(3262), - [anon_sym_AMP_AMP] = ACTIONS(3262), - [anon_sym_PIPE_PIPE] = ACTIONS(3262), - [anon_sym_GT] = ACTIONS(3264), - [anon_sym_LT] = ACTIONS(3264), - [anon_sym_GT_EQ] = ACTIONS(3262), - [anon_sym_LT_EQ] = ACTIONS(3262), - [anon_sym_PLUS_EQ] = ACTIONS(3262), - [anon_sym_DASH_EQ] = ACTIONS(3262), - [anon_sym_if] = ACTIONS(3264), - [anon_sym_match] = ACTIONS(3264), - [anon_sym_EQ_GT] = ACTIONS(3262), - [anon_sym_while] = ACTIONS(3264), - [anon_sym_for] = ACTIONS(3264), - [anon_sym_asyncfor] = ACTIONS(3262), - [anon_sym_transform] = ACTIONS(3264), - [anon_sym_filter] = ACTIONS(3264), - [anon_sym_find] = ACTIONS(3264), - [anon_sym_remove] = ACTIONS(3264), - [anon_sym_reduce] = ACTIONS(3264), - [anon_sym_select] = ACTIONS(3264), - [anon_sym_insert] = ACTIONS(3264), - [anon_sym_async] = ACTIONS(3264), - [anon_sym_PIPE] = ACTIONS(3264), - [anon_sym_table] = ACTIONS(3264), - [anon_sym_assert] = ACTIONS(3264), - [anon_sym_assert_equal] = ACTIONS(3264), - [anon_sym_download] = ACTIONS(3264), - [anon_sym_help] = ACTIONS(3264), - [anon_sym_length] = ACTIONS(3264), - [anon_sym_output] = ACTIONS(3264), - [anon_sym_output_error] = ACTIONS(3264), - [anon_sym_type] = ACTIONS(3264), - [anon_sym_append] = ACTIONS(3264), - [anon_sym_metadata] = ACTIONS(3264), - [anon_sym_move] = ACTIONS(3264), - [anon_sym_read] = ACTIONS(3264), - [anon_sym_workdir] = ACTIONS(3264), - [anon_sym_write] = ACTIONS(3264), - [anon_sym_from_json] = ACTIONS(3264), - [anon_sym_to_json] = ACTIONS(3264), - [anon_sym_to_string] = ACTIONS(3264), - [anon_sym_to_float] = ACTIONS(3264), - [anon_sym_bash] = ACTIONS(3264), - [anon_sym_fish] = ACTIONS(3264), - [anon_sym_raw] = ACTIONS(3264), - [anon_sym_sh] = ACTIONS(3264), - [anon_sym_zsh] = ACTIONS(3264), - [anon_sym_random] = ACTIONS(3264), - [anon_sym_random_boolean] = ACTIONS(3264), - [anon_sym_random_float] = ACTIONS(3264), - [anon_sym_random_integer] = ACTIONS(3264), - [anon_sym_columns] = ACTIONS(3264), - [anon_sym_rows] = ACTIONS(3264), - [anon_sym_reverse] = ACTIONS(3264), - }, - [769] = { - [sym_expression] = STATE(975), - [sym__expression_kind] = STATE(1002), - [aux_sym__expression_list] = STATE(769), - [sym_value] = STATE(1002), - [sym_boolean] = STATE(996), - [sym_list] = STATE(996), - [sym_map] = STATE(996), - [sym_index] = STATE(1002), - [sym_math] = STATE(1002), - [sym_logic] = STATE(1002), - [sym_identifier_list] = STATE(1980), - [sym_table] = STATE(996), - [sym_function] = STATE(996), - [sym_function_call] = STATE(1002), - [sym__context_defined_function] = STATE(1009), - [sym_built_in_function] = STATE(1009), - [sym__built_in_function_name] = STATE(780), - [sym_identifier] = ACTIONS(3542), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3545), - [anon_sym_RBRACE] = ACTIONS(2518), - [anon_sym_SEMI] = ACTIONS(2518), - [anon_sym_LPAREN] = ACTIONS(3548), - [anon_sym_RPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2518), - [sym_integer] = ACTIONS(3551), - [sym_float] = ACTIONS(3554), - [sym_string] = ACTIONS(3554), - [anon_sym_true] = ACTIONS(3557), - [anon_sym_false] = ACTIONS(3557), - [anon_sym_LBRACK] = ACTIONS(3560), - [anon_sym_RBRACK] = ACTIONS(2518), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2541), - [anon_sym_STAR] = ACTIONS(2518), - [anon_sym_SLASH] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_EQ_EQ] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_GT] = ACTIONS(2541), - [anon_sym_LT] = ACTIONS(2541), - [anon_sym_GT_EQ] = ACTIONS(2518), - [anon_sym_LT_EQ] = ACTIONS(2518), - [anon_sym_EQ_GT] = ACTIONS(3600), - [anon_sym_PIPE] = ACTIONS(2546), - [anon_sym_table] = ACTIONS(3603), - [anon_sym_assert] = ACTIONS(3606), - [anon_sym_assert_equal] = ACTIONS(3606), - [anon_sym_download] = ACTIONS(3606), - [anon_sym_help] = ACTIONS(3606), - [anon_sym_length] = ACTIONS(3606), - [anon_sym_output] = ACTIONS(3606), - [anon_sym_output_error] = ACTIONS(3606), - [anon_sym_type] = ACTIONS(3606), - [anon_sym_append] = ACTIONS(3606), - [anon_sym_metadata] = ACTIONS(3606), - [anon_sym_move] = ACTIONS(3606), - [anon_sym_read] = ACTIONS(3606), - [anon_sym_workdir] = ACTIONS(3606), - [anon_sym_write] = ACTIONS(3606), - [anon_sym_from_json] = ACTIONS(3606), - [anon_sym_to_json] = ACTIONS(3606), - [anon_sym_to_string] = ACTIONS(3606), - [anon_sym_to_float] = ACTIONS(3606), - [anon_sym_bash] = ACTIONS(3606), - [anon_sym_fish] = ACTIONS(3606), - [anon_sym_raw] = ACTIONS(3606), - [anon_sym_sh] = ACTIONS(3606), - [anon_sym_zsh] = ACTIONS(3606), - [anon_sym_random] = ACTIONS(3606), - [anon_sym_random_boolean] = ACTIONS(3606), - [anon_sym_random_float] = ACTIONS(3606), - [anon_sym_random_integer] = ACTIONS(3606), - [anon_sym_columns] = ACTIONS(3606), - [anon_sym_rows] = ACTIONS(3606), - [anon_sym_reverse] = ACTIONS(3606), - }, - [770] = { - [ts_builtin_sym_end] = ACTIONS(3351), - [sym_identifier] = ACTIONS(3353), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3351), - [anon_sym_RBRACE] = ACTIONS(3351), - [anon_sym_SEMI] = ACTIONS(3351), - [anon_sym_LPAREN] = ACTIONS(3351), - [anon_sym_RPAREN] = ACTIONS(3351), - [anon_sym_COMMA] = ACTIONS(3351), - [sym_integer] = ACTIONS(3353), - [sym_float] = ACTIONS(3351), - [sym_string] = ACTIONS(3351), - [anon_sym_true] = ACTIONS(3353), - [anon_sym_false] = ACTIONS(3353), - [anon_sym_LBRACK] = ACTIONS(3351), - [anon_sym_RBRACK] = ACTIONS(3351), - [anon_sym_COLON] = ACTIONS(3351), - [anon_sym_DOT_DOT] = ACTIONS(3351), - [anon_sym_PLUS] = ACTIONS(3351), - [anon_sym_DASH] = ACTIONS(3353), - [anon_sym_STAR] = ACTIONS(3351), - [anon_sym_SLASH] = ACTIONS(3351), - [anon_sym_PERCENT] = ACTIONS(3351), - [anon_sym_EQ_EQ] = ACTIONS(3351), - [anon_sym_BANG_EQ] = ACTIONS(3351), - [anon_sym_AMP_AMP] = ACTIONS(3351), - [anon_sym_PIPE_PIPE] = ACTIONS(3351), - [anon_sym_GT] = ACTIONS(3353), - [anon_sym_LT] = ACTIONS(3353), - [anon_sym_GT_EQ] = ACTIONS(3351), - [anon_sym_LT_EQ] = ACTIONS(3351), - [anon_sym_if] = ACTIONS(3353), - [anon_sym_elseif] = ACTIONS(3351), - [anon_sym_else] = ACTIONS(3353), - [anon_sym_match] = ACTIONS(3353), - [anon_sym_EQ_GT] = ACTIONS(3351), - [anon_sym_while] = ACTIONS(3353), - [anon_sym_for] = ACTIONS(3353), - [anon_sym_asyncfor] = ACTIONS(3351), - [anon_sym_transform] = ACTIONS(3353), - [anon_sym_filter] = ACTIONS(3353), - [anon_sym_find] = ACTIONS(3353), - [anon_sym_remove] = ACTIONS(3353), - [anon_sym_reduce] = ACTIONS(3353), - [anon_sym_select] = ACTIONS(3353), - [anon_sym_insert] = ACTIONS(3353), - [anon_sym_async] = ACTIONS(3353), - [anon_sym_PIPE] = ACTIONS(3353), - [anon_sym_table] = ACTIONS(3353), - [anon_sym_assert] = ACTIONS(3353), - [anon_sym_assert_equal] = ACTIONS(3353), - [anon_sym_download] = ACTIONS(3353), - [anon_sym_help] = ACTIONS(3353), - [anon_sym_length] = ACTIONS(3353), - [anon_sym_output] = ACTIONS(3353), - [anon_sym_output_error] = ACTIONS(3353), - [anon_sym_type] = ACTIONS(3353), - [anon_sym_append] = ACTIONS(3353), - [anon_sym_metadata] = ACTIONS(3353), - [anon_sym_move] = ACTIONS(3353), - [anon_sym_read] = ACTIONS(3353), - [anon_sym_workdir] = ACTIONS(3353), - [anon_sym_write] = ACTIONS(3353), - [anon_sym_from_json] = ACTIONS(3353), - [anon_sym_to_json] = ACTIONS(3353), - [anon_sym_to_string] = ACTIONS(3353), - [anon_sym_to_float] = ACTIONS(3353), - [anon_sym_bash] = ACTIONS(3353), - [anon_sym_fish] = ACTIONS(3353), - [anon_sym_raw] = ACTIONS(3353), - [anon_sym_sh] = ACTIONS(3353), - [anon_sym_zsh] = ACTIONS(3353), - [anon_sym_random] = ACTIONS(3353), - [anon_sym_random_boolean] = ACTIONS(3353), - [anon_sym_random_float] = ACTIONS(3353), - [anon_sym_random_integer] = ACTIONS(3353), - [anon_sym_columns] = ACTIONS(3353), - [anon_sym_rows] = ACTIONS(3353), - [anon_sym_reverse] = ACTIONS(3353), - }, - [771] = { - [sym_math_operator] = STATE(1270), - [sym_logic_operator] = STATE(1260), - [ts_builtin_sym_end] = ACTIONS(3252), - [sym_identifier] = ACTIONS(3254), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3252), - [anon_sym_RBRACE] = ACTIONS(3252), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_LPAREN] = ACTIONS(3252), - [anon_sym_RPAREN] = ACTIONS(3252), - [sym_integer] = ACTIONS(3254), - [sym_float] = ACTIONS(3252), - [sym_string] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_EQ] = ACTIONS(3254), - [anon_sym_COLON] = ACTIONS(3252), - [anon_sym_PLUS] = ACTIONS(3254), - [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_STAR] = ACTIONS(3252), - [anon_sym_SLASH] = ACTIONS(3252), - [anon_sym_PERCENT] = ACTIONS(3252), - [anon_sym_EQ_EQ] = ACTIONS(3252), - [anon_sym_BANG_EQ] = ACTIONS(3252), - [anon_sym_AMP_AMP] = ACTIONS(3252), - [anon_sym_PIPE_PIPE] = ACTIONS(3252), - [anon_sym_GT] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(3254), - [anon_sym_GT_EQ] = ACTIONS(3252), - [anon_sym_LT_EQ] = ACTIONS(3252), - [anon_sym_PLUS_EQ] = ACTIONS(3252), - [anon_sym_DASH_EQ] = ACTIONS(3252), - [anon_sym_if] = ACTIONS(3254), - [anon_sym_match] = ACTIONS(3254), - [anon_sym_EQ_GT] = ACTIONS(3252), - [anon_sym_while] = ACTIONS(3254), - [anon_sym_for] = ACTIONS(3254), - [anon_sym_asyncfor] = ACTIONS(3252), - [anon_sym_transform] = ACTIONS(3254), - [anon_sym_filter] = ACTIONS(3254), - [anon_sym_find] = ACTIONS(3254), - [anon_sym_remove] = ACTIONS(3254), - [anon_sym_reduce] = ACTIONS(3254), - [anon_sym_select] = ACTIONS(3254), - [anon_sym_insert] = ACTIONS(3254), - [anon_sym_async] = ACTIONS(3254), - [anon_sym_PIPE] = ACTIONS(3254), - [anon_sym_table] = ACTIONS(3254), - [anon_sym_assert] = ACTIONS(3254), - [anon_sym_assert_equal] = ACTIONS(3254), - [anon_sym_download] = ACTIONS(3254), - [anon_sym_help] = ACTIONS(3254), - [anon_sym_length] = ACTIONS(3254), - [anon_sym_output] = ACTIONS(3254), - [anon_sym_output_error] = ACTIONS(3254), - [anon_sym_type] = ACTIONS(3254), - [anon_sym_append] = ACTIONS(3254), - [anon_sym_metadata] = ACTIONS(3254), - [anon_sym_move] = ACTIONS(3254), - [anon_sym_read] = ACTIONS(3254), - [anon_sym_workdir] = ACTIONS(3254), - [anon_sym_write] = ACTIONS(3254), - [anon_sym_from_json] = ACTIONS(3254), - [anon_sym_to_json] = ACTIONS(3254), - [anon_sym_to_string] = ACTIONS(3254), - [anon_sym_to_float] = ACTIONS(3254), - [anon_sym_bash] = ACTIONS(3254), - [anon_sym_fish] = ACTIONS(3254), - [anon_sym_raw] = ACTIONS(3254), - [anon_sym_sh] = ACTIONS(3254), - [anon_sym_zsh] = ACTIONS(3254), - [anon_sym_random] = ACTIONS(3254), - [anon_sym_random_boolean] = ACTIONS(3254), - [anon_sym_random_float] = ACTIONS(3254), - [anon_sym_random_integer] = ACTIONS(3254), - [anon_sym_columns] = ACTIONS(3254), - [anon_sym_rows] = ACTIONS(3254), - [anon_sym_reverse] = ACTIONS(3254), - }, - [772] = { - [sym_expression] = STATE(975), - [sym__expression_kind] = STATE(1002), - [aux_sym__expression_list] = STATE(769), - [sym_value] = STATE(1002), - [sym_boolean] = STATE(996), - [sym_list] = STATE(996), - [sym_map] = STATE(996), - [sym_index] = STATE(1002), - [sym_math] = STATE(1002), - [sym_logic] = STATE(1002), - [sym_identifier_list] = STATE(1980), - [sym_table] = STATE(996), - [sym_function] = STATE(996), - [sym_function_call] = STATE(1002), - [sym__context_defined_function] = STATE(1009), - [sym_built_in_function] = STATE(1009), - [sym__built_in_function_name] = STATE(780), - [sym_identifier] = ACTIONS(3576), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3503), - [anon_sym_RBRACE] = ACTIONS(2443), - [anon_sym_SEMI] = ACTIONS(2443), - [anon_sym_LPAREN] = ACTIONS(3505), - [anon_sym_RPAREN] = ACTIONS(2443), - [anon_sym_COMMA] = ACTIONS(2443), - [sym_integer] = ACTIONS(3507), - [sym_float] = ACTIONS(3509), - [sym_string] = ACTIONS(3509), - [anon_sym_true] = ACTIONS(3511), - [anon_sym_false] = ACTIONS(3511), - [anon_sym_LBRACK] = ACTIONS(3513), - [anon_sym_RBRACK] = ACTIONS(2443), - [anon_sym_COLON] = ACTIONS(2443), - [anon_sym_PLUS] = ACTIONS(2443), - [anon_sym_DASH] = ACTIONS(2447), - [anon_sym_STAR] = ACTIONS(2443), - [anon_sym_SLASH] = ACTIONS(2443), - [anon_sym_PERCENT] = ACTIONS(2443), - [anon_sym_EQ_EQ] = ACTIONS(2443), - [anon_sym_BANG_EQ] = ACTIONS(2443), - [anon_sym_AMP_AMP] = ACTIONS(2443), - [anon_sym_PIPE_PIPE] = ACTIONS(2443), - [anon_sym_GT] = ACTIONS(2447), - [anon_sym_LT] = ACTIONS(2447), - [anon_sym_GT_EQ] = ACTIONS(2443), - [anon_sym_LT_EQ] = ACTIONS(2443), - [anon_sym_EQ_GT] = ACTIONS(3515), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(3517), - [anon_sym_assert] = ACTIONS(3145), - [anon_sym_assert_equal] = ACTIONS(3145), - [anon_sym_download] = ACTIONS(3145), - [anon_sym_help] = ACTIONS(3145), - [anon_sym_length] = ACTIONS(3145), - [anon_sym_output] = ACTIONS(3145), - [anon_sym_output_error] = ACTIONS(3145), - [anon_sym_type] = ACTIONS(3145), - [anon_sym_append] = ACTIONS(3145), - [anon_sym_metadata] = ACTIONS(3145), - [anon_sym_move] = ACTIONS(3145), - [anon_sym_read] = ACTIONS(3145), - [anon_sym_workdir] = ACTIONS(3145), - [anon_sym_write] = ACTIONS(3145), - [anon_sym_from_json] = ACTIONS(3145), - [anon_sym_to_json] = ACTIONS(3145), - [anon_sym_to_string] = ACTIONS(3145), - [anon_sym_to_float] = ACTIONS(3145), - [anon_sym_bash] = ACTIONS(3145), - [anon_sym_fish] = ACTIONS(3145), - [anon_sym_raw] = ACTIONS(3145), - [anon_sym_sh] = ACTIONS(3145), - [anon_sym_zsh] = ACTIONS(3145), - [anon_sym_random] = ACTIONS(3145), - [anon_sym_random_boolean] = ACTIONS(3145), - [anon_sym_random_float] = ACTIONS(3145), - [anon_sym_random_integer] = ACTIONS(3145), - [anon_sym_columns] = ACTIONS(3145), - [anon_sym_rows] = ACTIONS(3145), - [anon_sym_reverse] = ACTIONS(3145), - }, - [773] = { - [sym_expression] = STATE(975), - [sym__expression_kind] = STATE(1002), - [aux_sym__expression_list] = STATE(769), - [sym_value] = STATE(1002), - [sym_boolean] = STATE(996), - [sym_list] = STATE(996), - [sym_map] = STATE(996), - [sym_index] = STATE(1002), - [sym_math] = STATE(1002), - [sym_logic] = STATE(1002), - [sym_identifier_list] = STATE(1980), - [sym_table] = STATE(996), - [sym_function] = STATE(996), - [sym_function_call] = STATE(1002), - [sym__context_defined_function] = STATE(1009), - [sym_built_in_function] = STATE(1009), - [sym__built_in_function_name] = STATE(780), - [sym_identifier] = ACTIONS(3576), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3503), - [anon_sym_RBRACE] = ACTIONS(2477), - [anon_sym_SEMI] = ACTIONS(2477), - [anon_sym_LPAREN] = ACTIONS(3505), - [anon_sym_RPAREN] = ACTIONS(2477), - [anon_sym_COMMA] = ACTIONS(2477), - [sym_integer] = ACTIONS(3507), - [sym_float] = ACTIONS(3509), - [sym_string] = ACTIONS(3509), - [anon_sym_true] = ACTIONS(3511), - [anon_sym_false] = ACTIONS(3511), - [anon_sym_LBRACK] = ACTIONS(3513), - [anon_sym_RBRACK] = ACTIONS(2477), - [anon_sym_COLON] = ACTIONS(2477), - [anon_sym_PLUS] = ACTIONS(2477), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2477), - [anon_sym_SLASH] = ACTIONS(2477), - [anon_sym_PERCENT] = ACTIONS(2477), - [anon_sym_EQ_EQ] = ACTIONS(2477), - [anon_sym_BANG_EQ] = ACTIONS(2477), - [anon_sym_AMP_AMP] = ACTIONS(2477), - [anon_sym_PIPE_PIPE] = ACTIONS(2477), - [anon_sym_GT] = ACTIONS(2479), - [anon_sym_LT] = ACTIONS(2479), - [anon_sym_GT_EQ] = ACTIONS(2477), - [anon_sym_LT_EQ] = ACTIONS(2477), - [anon_sym_EQ_GT] = ACTIONS(3515), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(3517), - [anon_sym_assert] = ACTIONS(3145), - [anon_sym_assert_equal] = ACTIONS(3145), - [anon_sym_download] = ACTIONS(3145), - [anon_sym_help] = ACTIONS(3145), - [anon_sym_length] = ACTIONS(3145), - [anon_sym_output] = ACTIONS(3145), - [anon_sym_output_error] = ACTIONS(3145), - [anon_sym_type] = ACTIONS(3145), - [anon_sym_append] = ACTIONS(3145), - [anon_sym_metadata] = ACTIONS(3145), - [anon_sym_move] = ACTIONS(3145), - [anon_sym_read] = ACTIONS(3145), - [anon_sym_workdir] = ACTIONS(3145), - [anon_sym_write] = ACTIONS(3145), - [anon_sym_from_json] = ACTIONS(3145), - [anon_sym_to_json] = ACTIONS(3145), - [anon_sym_to_string] = ACTIONS(3145), - [anon_sym_to_float] = ACTIONS(3145), - [anon_sym_bash] = ACTIONS(3145), - [anon_sym_fish] = ACTIONS(3145), - [anon_sym_raw] = ACTIONS(3145), - [anon_sym_sh] = ACTIONS(3145), - [anon_sym_zsh] = ACTIONS(3145), - [anon_sym_random] = ACTIONS(3145), - [anon_sym_random_boolean] = ACTIONS(3145), - [anon_sym_random_float] = ACTIONS(3145), - [anon_sym_random_integer] = ACTIONS(3145), - [anon_sym_columns] = ACTIONS(3145), - [anon_sym_rows] = ACTIONS(3145), - [anon_sym_reverse] = ACTIONS(3145), - }, - [774] = { - [sym_math_operator] = STATE(1305), - [sym_logic_operator] = STATE(1306), - [ts_builtin_sym_end] = ACTIONS(3244), - [sym_identifier] = ACTIONS(3246), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_RBRACE] = ACTIONS(3244), - [anon_sym_SEMI] = ACTIONS(3244), - [anon_sym_LPAREN] = ACTIONS(3244), - [anon_sym_RPAREN] = ACTIONS(3244), - [anon_sym_COMMA] = ACTIONS(3244), - [sym_integer] = ACTIONS(3246), - [sym_float] = ACTIONS(3244), - [sym_string] = ACTIONS(3244), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_LBRACK] = ACTIONS(3244), - [anon_sym_RBRACK] = ACTIONS(3244), - [anon_sym_COLON] = ACTIONS(879), - [anon_sym_DOT_DOT] = ACTIONS(3244), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(3246), - [anon_sym_match] = ACTIONS(3246), - [anon_sym_EQ_GT] = ACTIONS(3244), - [anon_sym_while] = ACTIONS(3246), - [anon_sym_for] = ACTIONS(3246), - [anon_sym_asyncfor] = ACTIONS(3244), - [anon_sym_transform] = ACTIONS(3246), - [anon_sym_filter] = ACTIONS(3246), - [anon_sym_find] = ACTIONS(3246), - [anon_sym_remove] = ACTIONS(3246), - [anon_sym_reduce] = ACTIONS(3246), - [anon_sym_select] = ACTIONS(3246), - [anon_sym_insert] = ACTIONS(3246), - [anon_sym_async] = ACTIONS(3246), - [anon_sym_PIPE] = ACTIONS(3246), - [anon_sym_table] = ACTIONS(3246), - [anon_sym_assert] = ACTIONS(3246), - [anon_sym_assert_equal] = ACTIONS(3246), - [anon_sym_download] = ACTIONS(3246), - [anon_sym_help] = ACTIONS(3246), - [anon_sym_length] = ACTIONS(3246), - [anon_sym_output] = ACTIONS(3246), - [anon_sym_output_error] = ACTIONS(3246), - [anon_sym_type] = ACTIONS(3246), - [anon_sym_append] = ACTIONS(3246), - [anon_sym_metadata] = ACTIONS(3246), - [anon_sym_move] = ACTIONS(3246), - [anon_sym_read] = ACTIONS(3246), - [anon_sym_workdir] = ACTIONS(3246), - [anon_sym_write] = ACTIONS(3246), - [anon_sym_from_json] = ACTIONS(3246), - [anon_sym_to_json] = ACTIONS(3246), - [anon_sym_to_string] = ACTIONS(3246), - [anon_sym_to_float] = ACTIONS(3246), - [anon_sym_bash] = ACTIONS(3246), - [anon_sym_fish] = ACTIONS(3246), - [anon_sym_raw] = ACTIONS(3246), - [anon_sym_sh] = ACTIONS(3246), - [anon_sym_zsh] = ACTIONS(3246), - [anon_sym_random] = ACTIONS(3246), - [anon_sym_random_boolean] = ACTIONS(3246), - [anon_sym_random_float] = ACTIONS(3246), - [anon_sym_random_integer] = ACTIONS(3246), - [anon_sym_columns] = ACTIONS(3246), - [anon_sym_rows] = ACTIONS(3246), - [anon_sym_reverse] = ACTIONS(3246), - }, - [775] = { - [sym_math_operator] = STATE(1305), - [sym_logic_operator] = STATE(1306), - [ts_builtin_sym_end] = ACTIONS(3240), - [sym_identifier] = ACTIONS(3242), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3240), - [anon_sym_SEMI] = ACTIONS(3240), - [anon_sym_LPAREN] = ACTIONS(3240), - [anon_sym_RPAREN] = ACTIONS(3240), - [anon_sym_COMMA] = ACTIONS(3240), - [sym_integer] = ACTIONS(3242), - [sym_float] = ACTIONS(3240), - [sym_string] = ACTIONS(3240), - [anon_sym_true] = ACTIONS(3242), - [anon_sym_false] = ACTIONS(3242), - [anon_sym_LBRACK] = ACTIONS(3240), - [anon_sym_RBRACK] = ACTIONS(3240), - [anon_sym_COLON] = ACTIONS(879), - [anon_sym_DOT_DOT] = ACTIONS(3240), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(3242), - [anon_sym_match] = ACTIONS(3242), - [anon_sym_EQ_GT] = ACTIONS(3240), - [anon_sym_while] = ACTIONS(3242), - [anon_sym_for] = ACTIONS(3242), - [anon_sym_asyncfor] = ACTIONS(3240), - [anon_sym_transform] = ACTIONS(3242), - [anon_sym_filter] = ACTIONS(3242), - [anon_sym_find] = ACTIONS(3242), - [anon_sym_remove] = ACTIONS(3242), - [anon_sym_reduce] = ACTIONS(3242), - [anon_sym_select] = ACTIONS(3242), - [anon_sym_insert] = ACTIONS(3242), - [anon_sym_async] = ACTIONS(3242), - [anon_sym_PIPE] = ACTIONS(3242), - [anon_sym_table] = ACTIONS(3242), - [anon_sym_assert] = ACTIONS(3242), - [anon_sym_assert_equal] = ACTIONS(3242), - [anon_sym_download] = ACTIONS(3242), - [anon_sym_help] = ACTIONS(3242), - [anon_sym_length] = ACTIONS(3242), - [anon_sym_output] = ACTIONS(3242), - [anon_sym_output_error] = ACTIONS(3242), - [anon_sym_type] = ACTIONS(3242), - [anon_sym_append] = ACTIONS(3242), - [anon_sym_metadata] = ACTIONS(3242), - [anon_sym_move] = ACTIONS(3242), - [anon_sym_read] = ACTIONS(3242), - [anon_sym_workdir] = ACTIONS(3242), - [anon_sym_write] = ACTIONS(3242), - [anon_sym_from_json] = ACTIONS(3242), - [anon_sym_to_json] = ACTIONS(3242), - [anon_sym_to_string] = ACTIONS(3242), - [anon_sym_to_float] = ACTIONS(3242), - [anon_sym_bash] = ACTIONS(3242), - [anon_sym_fish] = ACTIONS(3242), - [anon_sym_raw] = ACTIONS(3242), - [anon_sym_sh] = ACTIONS(3242), - [anon_sym_zsh] = ACTIONS(3242), - [anon_sym_random] = ACTIONS(3242), - [anon_sym_random_boolean] = ACTIONS(3242), - [anon_sym_random_float] = ACTIONS(3242), - [anon_sym_random_integer] = ACTIONS(3242), - [anon_sym_columns] = ACTIONS(3242), - [anon_sym_rows] = ACTIONS(3242), - [anon_sym_reverse] = ACTIONS(3242), - }, - [776] = { - [sym_assignment_operator] = STATE(535), - [ts_builtin_sym_end] = ACTIONS(2435), - [sym_identifier] = ACTIONS(2437), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_RBRACE] = ACTIONS(2435), - [anon_sym_SEMI] = ACTIONS(2435), - [anon_sym_LPAREN] = ACTIONS(2435), - [anon_sym_RPAREN] = ACTIONS(2435), - [sym_integer] = ACTIONS(2437), - [sym_float] = ACTIONS(2435), - [sym_string] = ACTIONS(2435), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [anon_sym_LBRACK] = ACTIONS(2435), - [anon_sym_EQ] = ACTIONS(2439), - [anon_sym_COLON] = ACTIONS(2435), - [anon_sym_DOT_DOT] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_PERCENT] = ACTIONS(2435), - [anon_sym_EQ_EQ] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_PIPE_PIPE] = ACTIONS(2435), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_PLUS_EQ] = ACTIONS(2441), - [anon_sym_DASH_EQ] = ACTIONS(2441), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_EQ_GT] = ACTIONS(2435), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_asyncfor] = ACTIONS(2435), - [anon_sym_transform] = ACTIONS(2437), - [anon_sym_filter] = ACTIONS(2437), - [anon_sym_find] = ACTIONS(2437), - [anon_sym_remove] = ACTIONS(2437), - [anon_sym_reduce] = ACTIONS(2437), - [anon_sym_select] = ACTIONS(2437), - [anon_sym_insert] = ACTIONS(2437), - [anon_sym_async] = ACTIONS(2437), - [anon_sym_PIPE] = ACTIONS(2437), - [anon_sym_table] = ACTIONS(2437), - [anon_sym_assert] = ACTIONS(2437), - [anon_sym_assert_equal] = ACTIONS(2437), - [anon_sym_download] = ACTIONS(2437), - [anon_sym_help] = ACTIONS(2437), - [anon_sym_length] = ACTIONS(2437), - [anon_sym_output] = ACTIONS(2437), - [anon_sym_output_error] = ACTIONS(2437), - [anon_sym_type] = ACTIONS(2437), - [anon_sym_append] = ACTIONS(2437), - [anon_sym_metadata] = ACTIONS(2437), - [anon_sym_move] = ACTIONS(2437), - [anon_sym_read] = ACTIONS(2437), - [anon_sym_workdir] = ACTIONS(2437), - [anon_sym_write] = ACTIONS(2437), - [anon_sym_from_json] = ACTIONS(2437), - [anon_sym_to_json] = ACTIONS(2437), - [anon_sym_to_string] = ACTIONS(2437), - [anon_sym_to_float] = ACTIONS(2437), - [anon_sym_bash] = ACTIONS(2437), - [anon_sym_fish] = ACTIONS(2437), - [anon_sym_raw] = ACTIONS(2437), - [anon_sym_sh] = ACTIONS(2437), - [anon_sym_zsh] = ACTIONS(2437), - [anon_sym_random] = ACTIONS(2437), - [anon_sym_random_boolean] = ACTIONS(2437), - [anon_sym_random_float] = ACTIONS(2437), - [anon_sym_random_integer] = ACTIONS(2437), - [anon_sym_columns] = ACTIONS(2437), - [anon_sym_rows] = ACTIONS(2437), - [anon_sym_reverse] = ACTIONS(2437), - }, - [777] = { - [ts_builtin_sym_end] = ACTIONS(3333), - [sym_identifier] = ACTIONS(3335), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3333), - [anon_sym_RBRACE] = ACTIONS(3333), - [anon_sym_SEMI] = ACTIONS(3333), - [anon_sym_LPAREN] = ACTIONS(3333), - [anon_sym_RPAREN] = ACTIONS(3333), - [anon_sym_COMMA] = ACTIONS(3333), - [sym_integer] = ACTIONS(3335), - [sym_float] = ACTIONS(3333), - [sym_string] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_RBRACK] = ACTIONS(3333), - [anon_sym_COLON] = ACTIONS(3333), - [anon_sym_DOT_DOT] = ACTIONS(3333), - [anon_sym_PLUS] = ACTIONS(3333), - [anon_sym_DASH] = ACTIONS(3335), - [anon_sym_STAR] = ACTIONS(3333), - [anon_sym_SLASH] = ACTIONS(3333), - [anon_sym_PERCENT] = ACTIONS(3333), - [anon_sym_EQ_EQ] = ACTIONS(3333), - [anon_sym_BANG_EQ] = ACTIONS(3333), - [anon_sym_AMP_AMP] = ACTIONS(3333), - [anon_sym_PIPE_PIPE] = ACTIONS(3333), - [anon_sym_GT] = ACTIONS(3335), - [anon_sym_LT] = ACTIONS(3335), - [anon_sym_GT_EQ] = ACTIONS(3333), - [anon_sym_LT_EQ] = ACTIONS(3333), - [anon_sym_if] = ACTIONS(3335), - [anon_sym_elseif] = ACTIONS(3333), - [anon_sym_else] = ACTIONS(3335), - [anon_sym_match] = ACTIONS(3335), - [anon_sym_EQ_GT] = ACTIONS(3333), - [anon_sym_while] = ACTIONS(3335), - [anon_sym_for] = ACTIONS(3335), - [anon_sym_asyncfor] = ACTIONS(3333), - [anon_sym_transform] = ACTIONS(3335), - [anon_sym_filter] = ACTIONS(3335), - [anon_sym_find] = ACTIONS(3335), - [anon_sym_remove] = ACTIONS(3335), - [anon_sym_reduce] = ACTIONS(3335), - [anon_sym_select] = ACTIONS(3335), - [anon_sym_insert] = ACTIONS(3335), - [anon_sym_async] = ACTIONS(3335), - [anon_sym_PIPE] = ACTIONS(3335), - [anon_sym_table] = ACTIONS(3335), - [anon_sym_assert] = ACTIONS(3335), - [anon_sym_assert_equal] = ACTIONS(3335), - [anon_sym_download] = ACTIONS(3335), - [anon_sym_help] = ACTIONS(3335), - [anon_sym_length] = ACTIONS(3335), - [anon_sym_output] = ACTIONS(3335), - [anon_sym_output_error] = ACTIONS(3335), - [anon_sym_type] = ACTIONS(3335), - [anon_sym_append] = ACTIONS(3335), - [anon_sym_metadata] = ACTIONS(3335), - [anon_sym_move] = ACTIONS(3335), - [anon_sym_read] = ACTIONS(3335), - [anon_sym_workdir] = ACTIONS(3335), - [anon_sym_write] = ACTIONS(3335), - [anon_sym_from_json] = ACTIONS(3335), - [anon_sym_to_json] = ACTIONS(3335), - [anon_sym_to_string] = ACTIONS(3335), - [anon_sym_to_float] = ACTIONS(3335), - [anon_sym_bash] = ACTIONS(3335), - [anon_sym_fish] = ACTIONS(3335), - [anon_sym_raw] = ACTIONS(3335), - [anon_sym_sh] = ACTIONS(3335), - [anon_sym_zsh] = ACTIONS(3335), - [anon_sym_random] = ACTIONS(3335), - [anon_sym_random_boolean] = ACTIONS(3335), - [anon_sym_random_float] = ACTIONS(3335), - [anon_sym_random_integer] = ACTIONS(3335), - [anon_sym_columns] = ACTIONS(3335), - [anon_sym_rows] = ACTIONS(3335), - [anon_sym_reverse] = ACTIONS(3335), - }, - [778] = { - [sym_else_if] = STATE(778), - [aux_sym_if_else_repeat1] = STATE(778), - [ts_builtin_sym_end] = ACTIONS(3268), - [sym_identifier] = ACTIONS(3270), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(3268), - [anon_sym_SEMI] = ACTIONS(3268), - [anon_sym_LPAREN] = ACTIONS(3268), - [anon_sym_RPAREN] = ACTIONS(3268), - [sym_integer] = ACTIONS(3270), - [sym_float] = ACTIONS(3268), - [sym_string] = ACTIONS(3268), - [anon_sym_true] = ACTIONS(3270), - [anon_sym_false] = ACTIONS(3270), - [anon_sym_LBRACK] = ACTIONS(3268), - [anon_sym_COLON] = ACTIONS(3268), - [anon_sym_DOT_DOT] = ACTIONS(3268), - [anon_sym_PLUS] = ACTIONS(3268), - [anon_sym_DASH] = ACTIONS(3270), - [anon_sym_STAR] = ACTIONS(3268), - [anon_sym_SLASH] = ACTIONS(3268), - [anon_sym_PERCENT] = ACTIONS(3268), - [anon_sym_EQ_EQ] = ACTIONS(3268), - [anon_sym_BANG_EQ] = ACTIONS(3268), - [anon_sym_AMP_AMP] = ACTIONS(3268), - [anon_sym_PIPE_PIPE] = ACTIONS(3268), - [anon_sym_GT] = ACTIONS(3270), - [anon_sym_LT] = ACTIONS(3270), - [anon_sym_GT_EQ] = ACTIONS(3268), - [anon_sym_LT_EQ] = ACTIONS(3268), - [anon_sym_if] = ACTIONS(3270), - [anon_sym_elseif] = ACTIONS(3609), - [anon_sym_else] = ACTIONS(3270), - [anon_sym_match] = ACTIONS(3270), - [anon_sym_EQ_GT] = ACTIONS(3268), - [anon_sym_while] = ACTIONS(3270), - [anon_sym_for] = ACTIONS(3270), - [anon_sym_asyncfor] = ACTIONS(3268), - [anon_sym_transform] = ACTIONS(3270), - [anon_sym_filter] = ACTIONS(3270), - [anon_sym_find] = ACTIONS(3270), - [anon_sym_remove] = ACTIONS(3270), - [anon_sym_reduce] = ACTIONS(3270), - [anon_sym_select] = ACTIONS(3270), - [anon_sym_insert] = ACTIONS(3270), - [anon_sym_async] = ACTIONS(3270), - [anon_sym_PIPE] = ACTIONS(3270), - [anon_sym_table] = ACTIONS(3270), - [anon_sym_assert] = ACTIONS(3270), - [anon_sym_assert_equal] = ACTIONS(3270), - [anon_sym_download] = ACTIONS(3270), - [anon_sym_help] = ACTIONS(3270), - [anon_sym_length] = ACTIONS(3270), - [anon_sym_output] = ACTIONS(3270), - [anon_sym_output_error] = ACTIONS(3270), - [anon_sym_type] = ACTIONS(3270), - [anon_sym_append] = ACTIONS(3270), - [anon_sym_metadata] = ACTIONS(3270), - [anon_sym_move] = ACTIONS(3270), - [anon_sym_read] = ACTIONS(3270), - [anon_sym_workdir] = ACTIONS(3270), - [anon_sym_write] = ACTIONS(3270), - [anon_sym_from_json] = ACTIONS(3270), - [anon_sym_to_json] = ACTIONS(3270), - [anon_sym_to_string] = ACTIONS(3270), - [anon_sym_to_float] = ACTIONS(3270), - [anon_sym_bash] = ACTIONS(3270), - [anon_sym_fish] = ACTIONS(3270), - [anon_sym_raw] = ACTIONS(3270), - [anon_sym_sh] = ACTIONS(3270), - [anon_sym_zsh] = ACTIONS(3270), - [anon_sym_random] = ACTIONS(3270), - [anon_sym_random_boolean] = ACTIONS(3270), - [anon_sym_random_float] = ACTIONS(3270), - [anon_sym_random_integer] = ACTIONS(3270), - [anon_sym_columns] = ACTIONS(3270), - [anon_sym_rows] = ACTIONS(3270), - [anon_sym_reverse] = ACTIONS(3270), - }, - [779] = { - [sym_math_operator] = STATE(1242), - [sym_logic_operator] = STATE(1243), - [ts_builtin_sym_end] = ACTIONS(3275), - [sym_identifier] = ACTIONS(3277), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3275), - [anon_sym_RBRACE] = ACTIONS(3275), - [anon_sym_SEMI] = ACTIONS(3521), - [anon_sym_LPAREN] = ACTIONS(3275), - [anon_sym_RPAREN] = ACTIONS(3275), - [sym_integer] = ACTIONS(3277), - [sym_float] = ACTIONS(3275), - [sym_string] = ACTIONS(3275), - [anon_sym_true] = ACTIONS(3277), - [anon_sym_false] = ACTIONS(3277), - [anon_sym_LBRACK] = ACTIONS(3275), - [anon_sym_COLON] = ACTIONS(195), - [anon_sym_DOT_DOT] = ACTIONS(3275), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(3277), - [anon_sym_elseif] = ACTIONS(3275), - [anon_sym_else] = ACTIONS(3277), - [anon_sym_match] = ACTIONS(3277), - [anon_sym_EQ_GT] = ACTIONS(3275), - [anon_sym_while] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3277), - [anon_sym_asyncfor] = ACTIONS(3275), - [anon_sym_transform] = ACTIONS(3277), - [anon_sym_filter] = ACTIONS(3277), - [anon_sym_find] = ACTIONS(3277), - [anon_sym_remove] = ACTIONS(3277), - [anon_sym_reduce] = ACTIONS(3277), - [anon_sym_select] = ACTIONS(3277), - [anon_sym_insert] = ACTIONS(3277), - [anon_sym_async] = ACTIONS(3277), - [anon_sym_PIPE] = ACTIONS(3277), - [anon_sym_table] = ACTIONS(3277), - [anon_sym_assert] = ACTIONS(3277), - [anon_sym_assert_equal] = ACTIONS(3277), - [anon_sym_download] = ACTIONS(3277), - [anon_sym_help] = ACTIONS(3277), - [anon_sym_length] = ACTIONS(3277), - [anon_sym_output] = ACTIONS(3277), - [anon_sym_output_error] = ACTIONS(3277), - [anon_sym_type] = ACTIONS(3277), - [anon_sym_append] = ACTIONS(3277), - [anon_sym_metadata] = ACTIONS(3277), - [anon_sym_move] = ACTIONS(3277), - [anon_sym_read] = ACTIONS(3277), - [anon_sym_workdir] = ACTIONS(3277), - [anon_sym_write] = ACTIONS(3277), - [anon_sym_from_json] = ACTIONS(3277), - [anon_sym_to_json] = ACTIONS(3277), - [anon_sym_to_string] = ACTIONS(3277), - [anon_sym_to_float] = ACTIONS(3277), - [anon_sym_bash] = ACTIONS(3277), - [anon_sym_fish] = ACTIONS(3277), - [anon_sym_raw] = ACTIONS(3277), - [anon_sym_sh] = ACTIONS(3277), - [anon_sym_zsh] = ACTIONS(3277), - [anon_sym_random] = ACTIONS(3277), - [anon_sym_random_boolean] = ACTIONS(3277), - [anon_sym_random_float] = ACTIONS(3277), - [anon_sym_random_integer] = ACTIONS(3277), - [anon_sym_columns] = ACTIONS(3277), - [anon_sym_rows] = ACTIONS(3277), - [anon_sym_reverse] = ACTIONS(3277), - }, - [780] = { - [sym_expression] = STATE(975), - [sym__expression_kind] = STATE(1002), - [aux_sym__expression_list] = STATE(772), - [sym_value] = STATE(1002), - [sym_boolean] = STATE(996), - [sym_list] = STATE(996), - [sym_map] = STATE(996), - [sym_index] = STATE(1002), - [sym_math] = STATE(1002), - [sym_logic] = STATE(1002), - [sym_identifier_list] = STATE(1980), - [sym_table] = STATE(996), - [sym_function] = STATE(996), - [sym_function_call] = STATE(1002), - [sym__context_defined_function] = STATE(1009), - [sym_built_in_function] = STATE(1009), - [sym__built_in_function_name] = STATE(780), - [sym_identifier] = ACTIONS(3576), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3503), - [anon_sym_RBRACE] = ACTIONS(2473), - [anon_sym_SEMI] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(3505), - [anon_sym_RPAREN] = ACTIONS(2473), - [anon_sym_COMMA] = ACTIONS(2473), - [sym_integer] = ACTIONS(3507), - [sym_float] = ACTIONS(3509), - [sym_string] = ACTIONS(3509), - [anon_sym_true] = ACTIONS(3511), - [anon_sym_false] = ACTIONS(3511), - [anon_sym_LBRACK] = ACTIONS(3513), - [anon_sym_RBRACK] = ACTIONS(2473), - [anon_sym_COLON] = ACTIONS(2473), - [anon_sym_PLUS] = ACTIONS(2473), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2473), - [anon_sym_SLASH] = ACTIONS(2473), - [anon_sym_PERCENT] = ACTIONS(2473), - [anon_sym_EQ_EQ] = ACTIONS(2473), - [anon_sym_BANG_EQ] = ACTIONS(2473), - [anon_sym_AMP_AMP] = ACTIONS(2473), - [anon_sym_PIPE_PIPE] = ACTIONS(2473), - [anon_sym_GT] = ACTIONS(2475), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_GT_EQ] = ACTIONS(2473), - [anon_sym_LT_EQ] = ACTIONS(2473), - [anon_sym_EQ_GT] = ACTIONS(3515), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(3517), - [anon_sym_assert] = ACTIONS(3145), - [anon_sym_assert_equal] = ACTIONS(3145), - [anon_sym_download] = ACTIONS(3145), - [anon_sym_help] = ACTIONS(3145), - [anon_sym_length] = ACTIONS(3145), - [anon_sym_output] = ACTIONS(3145), - [anon_sym_output_error] = ACTIONS(3145), - [anon_sym_type] = ACTIONS(3145), - [anon_sym_append] = ACTIONS(3145), - [anon_sym_metadata] = ACTIONS(3145), - [anon_sym_move] = ACTIONS(3145), - [anon_sym_read] = ACTIONS(3145), - [anon_sym_workdir] = ACTIONS(3145), - [anon_sym_write] = ACTIONS(3145), - [anon_sym_from_json] = ACTIONS(3145), - [anon_sym_to_json] = ACTIONS(3145), - [anon_sym_to_string] = ACTIONS(3145), - [anon_sym_to_float] = ACTIONS(3145), - [anon_sym_bash] = ACTIONS(3145), - [anon_sym_fish] = ACTIONS(3145), - [anon_sym_raw] = ACTIONS(3145), - [anon_sym_sh] = ACTIONS(3145), - [anon_sym_zsh] = ACTIONS(3145), - [anon_sym_random] = ACTIONS(3145), - [anon_sym_random_boolean] = ACTIONS(3145), - [anon_sym_random_float] = ACTIONS(3145), - [anon_sym_random_integer] = ACTIONS(3145), - [anon_sym_columns] = ACTIONS(3145), - [anon_sym_rows] = ACTIONS(3145), - [anon_sym_reverse] = ACTIONS(3145), - }, - [781] = { - [ts_builtin_sym_end] = ACTIONS(3275), - [sym_identifier] = ACTIONS(3277), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3275), - [anon_sym_RBRACE] = ACTIONS(3275), - [anon_sym_SEMI] = ACTIONS(3521), - [anon_sym_LPAREN] = ACTIONS(3275), - [anon_sym_RPAREN] = ACTIONS(3275), - [anon_sym_COMMA] = ACTIONS(3275), - [sym_integer] = ACTIONS(3277), - [sym_float] = ACTIONS(3275), - [sym_string] = ACTIONS(3275), - [anon_sym_true] = ACTIONS(3277), - [anon_sym_false] = ACTIONS(3277), - [anon_sym_LBRACK] = ACTIONS(3275), - [anon_sym_RBRACK] = ACTIONS(3275), - [anon_sym_COLON] = ACTIONS(3275), - [anon_sym_DOT_DOT] = ACTIONS(3275), - [anon_sym_PLUS] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3275), - [anon_sym_SLASH] = ACTIONS(3275), - [anon_sym_PERCENT] = ACTIONS(3275), - [anon_sym_EQ_EQ] = ACTIONS(3275), - [anon_sym_BANG_EQ] = ACTIONS(3275), - [anon_sym_AMP_AMP] = ACTIONS(3275), - [anon_sym_PIPE_PIPE] = ACTIONS(3275), - [anon_sym_GT] = ACTIONS(3277), - [anon_sym_LT] = ACTIONS(3277), - [anon_sym_GT_EQ] = ACTIONS(3275), - [anon_sym_LT_EQ] = ACTIONS(3275), - [anon_sym_if] = ACTIONS(3277), - [anon_sym_elseif] = ACTIONS(3275), - [anon_sym_else] = ACTIONS(3277), - [anon_sym_match] = ACTIONS(3277), - [anon_sym_EQ_GT] = ACTIONS(3275), - [anon_sym_while] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3277), - [anon_sym_asyncfor] = ACTIONS(3275), - [anon_sym_transform] = ACTIONS(3277), - [anon_sym_filter] = ACTIONS(3277), - [anon_sym_find] = ACTIONS(3277), - [anon_sym_remove] = ACTIONS(3277), - [anon_sym_reduce] = ACTIONS(3277), - [anon_sym_select] = ACTIONS(3277), - [anon_sym_insert] = ACTIONS(3277), - [anon_sym_async] = ACTIONS(3277), - [anon_sym_PIPE] = ACTIONS(3277), - [anon_sym_table] = ACTIONS(3277), - [anon_sym_assert] = ACTIONS(3277), - [anon_sym_assert_equal] = ACTIONS(3277), - [anon_sym_download] = ACTIONS(3277), - [anon_sym_help] = ACTIONS(3277), - [anon_sym_length] = ACTIONS(3277), - [anon_sym_output] = ACTIONS(3277), - [anon_sym_output_error] = ACTIONS(3277), - [anon_sym_type] = ACTIONS(3277), - [anon_sym_append] = ACTIONS(3277), - [anon_sym_metadata] = ACTIONS(3277), - [anon_sym_move] = ACTIONS(3277), - [anon_sym_read] = ACTIONS(3277), - [anon_sym_workdir] = ACTIONS(3277), - [anon_sym_write] = ACTIONS(3277), - [anon_sym_from_json] = ACTIONS(3277), - [anon_sym_to_json] = ACTIONS(3277), - [anon_sym_to_string] = ACTIONS(3277), - [anon_sym_to_float] = ACTIONS(3277), - [anon_sym_bash] = ACTIONS(3277), - [anon_sym_fish] = ACTIONS(3277), - [anon_sym_raw] = ACTIONS(3277), - [anon_sym_sh] = ACTIONS(3277), - [anon_sym_zsh] = ACTIONS(3277), - [anon_sym_random] = ACTIONS(3277), - [anon_sym_random_boolean] = ACTIONS(3277), - [anon_sym_random_float] = ACTIONS(3277), - [anon_sym_random_integer] = ACTIONS(3277), - [anon_sym_columns] = ACTIONS(3277), - [anon_sym_rows] = ACTIONS(3277), - [anon_sym_reverse] = ACTIONS(3277), - }, - [782] = { - [sym_assignment_operator] = STATE(540), - [ts_builtin_sym_end] = ACTIONS(2435), - [sym_identifier] = ACTIONS(2437), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_RBRACE] = ACTIONS(2435), - [anon_sym_SEMI] = ACTIONS(2435), - [anon_sym_LPAREN] = ACTIONS(2435), - [sym_integer] = ACTIONS(2437), - [sym_float] = ACTIONS(2435), - [sym_string] = ACTIONS(2435), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [anon_sym_LBRACK] = ACTIONS(2435), - [anon_sym_EQ] = ACTIONS(2439), - [anon_sym_COLON] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_PERCENT] = ACTIONS(2435), - [anon_sym_EQ_EQ] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_PIPE_PIPE] = ACTIONS(2435), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_PLUS_EQ] = ACTIONS(2441), - [anon_sym_DASH_EQ] = ACTIONS(2441), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_elseif] = ACTIONS(2435), - [anon_sym_else] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_EQ_GT] = ACTIONS(2435), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_asyncfor] = ACTIONS(2435), - [anon_sym_transform] = ACTIONS(2437), - [anon_sym_filter] = ACTIONS(2437), - [anon_sym_find] = ACTIONS(2437), - [anon_sym_remove] = ACTIONS(2437), - [anon_sym_reduce] = ACTIONS(2437), - [anon_sym_select] = ACTIONS(2437), - [anon_sym_insert] = ACTIONS(2437), - [anon_sym_async] = ACTIONS(2437), - [anon_sym_PIPE] = ACTIONS(2437), - [anon_sym_table] = ACTIONS(2437), - [anon_sym_assert] = ACTIONS(2437), - [anon_sym_assert_equal] = ACTIONS(2437), - [anon_sym_download] = ACTIONS(2437), - [anon_sym_help] = ACTIONS(2437), - [anon_sym_length] = ACTIONS(2437), - [anon_sym_output] = ACTIONS(2437), - [anon_sym_output_error] = ACTIONS(2437), - [anon_sym_type] = ACTIONS(2437), - [anon_sym_append] = ACTIONS(2437), - [anon_sym_metadata] = ACTIONS(2437), - [anon_sym_move] = ACTIONS(2437), - [anon_sym_read] = ACTIONS(2437), - [anon_sym_workdir] = ACTIONS(2437), - [anon_sym_write] = ACTIONS(2437), - [anon_sym_from_json] = ACTIONS(2437), - [anon_sym_to_json] = ACTIONS(2437), - [anon_sym_to_string] = ACTIONS(2437), - [anon_sym_to_float] = ACTIONS(2437), - [anon_sym_bash] = ACTIONS(2437), - [anon_sym_fish] = ACTIONS(2437), - [anon_sym_raw] = ACTIONS(2437), - [anon_sym_sh] = ACTIONS(2437), - [anon_sym_zsh] = ACTIONS(2437), - [anon_sym_random] = ACTIONS(2437), - [anon_sym_random_boolean] = ACTIONS(2437), - [anon_sym_random_float] = ACTIONS(2437), - [anon_sym_random_integer] = ACTIONS(2437), - [anon_sym_columns] = ACTIONS(2437), - [anon_sym_rows] = ACTIONS(2437), - [anon_sym_reverse] = ACTIONS(2437), - }, - [783] = { - [sym_math_operator] = STATE(1322), - [sym_logic_operator] = STATE(1321), - [ts_builtin_sym_end] = ACTIONS(3233), - [sym_identifier] = ACTIONS(3235), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3233), - [anon_sym_RBRACE] = ACTIONS(3233), - [anon_sym_SEMI] = ACTIONS(3233), - [anon_sym_LPAREN] = ACTIONS(3233), - [anon_sym_RPAREN] = ACTIONS(3233), - [anon_sym_COMMA] = ACTIONS(3540), - [sym_integer] = ACTIONS(3235), - [sym_float] = ACTIONS(3233), - [sym_string] = ACTIONS(3233), - [anon_sym_true] = ACTIONS(3235), - [anon_sym_false] = ACTIONS(3235), - [anon_sym_LBRACK] = ACTIONS(3233), - [anon_sym_COLON] = ACTIONS(625), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(3235), - [anon_sym_elseif] = ACTIONS(3233), - [anon_sym_else] = ACTIONS(3235), - [anon_sym_match] = ACTIONS(3235), - [anon_sym_EQ_GT] = ACTIONS(3233), - [anon_sym_while] = ACTIONS(3235), - [anon_sym_for] = ACTIONS(3235), - [anon_sym_asyncfor] = ACTIONS(3233), - [anon_sym_transform] = ACTIONS(3235), - [anon_sym_filter] = ACTIONS(3235), - [anon_sym_find] = ACTIONS(3235), - [anon_sym_remove] = ACTIONS(3235), - [anon_sym_reduce] = ACTIONS(3235), - [anon_sym_select] = ACTIONS(3235), - [anon_sym_insert] = ACTIONS(3235), - [anon_sym_async] = ACTIONS(3235), - [anon_sym_PIPE] = ACTIONS(3235), - [anon_sym_table] = ACTIONS(3235), - [anon_sym_assert] = ACTIONS(3235), - [anon_sym_assert_equal] = ACTIONS(3235), - [anon_sym_download] = ACTIONS(3235), - [anon_sym_help] = ACTIONS(3235), - [anon_sym_length] = ACTIONS(3235), - [anon_sym_output] = ACTIONS(3235), - [anon_sym_output_error] = ACTIONS(3235), - [anon_sym_type] = ACTIONS(3235), - [anon_sym_append] = ACTIONS(3235), - [anon_sym_metadata] = ACTIONS(3235), - [anon_sym_move] = ACTIONS(3235), - [anon_sym_read] = ACTIONS(3235), - [anon_sym_workdir] = ACTIONS(3235), - [anon_sym_write] = ACTIONS(3235), - [anon_sym_from_json] = ACTIONS(3235), - [anon_sym_to_json] = ACTIONS(3235), - [anon_sym_to_string] = ACTIONS(3235), - [anon_sym_to_float] = ACTIONS(3235), - [anon_sym_bash] = ACTIONS(3235), - [anon_sym_fish] = ACTIONS(3235), - [anon_sym_raw] = ACTIONS(3235), - [anon_sym_sh] = ACTIONS(3235), - [anon_sym_zsh] = ACTIONS(3235), - [anon_sym_random] = ACTIONS(3235), - [anon_sym_random_boolean] = ACTIONS(3235), - [anon_sym_random_float] = ACTIONS(3235), - [anon_sym_random_integer] = ACTIONS(3235), - [anon_sym_columns] = ACTIONS(3235), - [anon_sym_rows] = ACTIONS(3235), - [anon_sym_reverse] = ACTIONS(3235), - }, - [784] = { - [sym_math_operator] = STATE(1305), - [sym_logic_operator] = STATE(1306), - [ts_builtin_sym_end] = ACTIONS(3281), - [sym_identifier] = ACTIONS(3283), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3281), - [anon_sym_RBRACE] = ACTIONS(3281), - [anon_sym_SEMI] = ACTIONS(3281), - [anon_sym_LPAREN] = ACTIONS(3281), - [anon_sym_RPAREN] = ACTIONS(3281), - [anon_sym_COMMA] = ACTIONS(3281), - [sym_integer] = ACTIONS(3283), - [sym_float] = ACTIONS(3281), - [sym_string] = ACTIONS(3281), - [anon_sym_true] = ACTIONS(3283), - [anon_sym_false] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3281), - [anon_sym_RBRACK] = ACTIONS(3281), - [anon_sym_COLON] = ACTIONS(879), - [anon_sym_DOT_DOT] = ACTIONS(3281), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(3283), - [anon_sym_match] = ACTIONS(3283), - [anon_sym_EQ_GT] = ACTIONS(3281), - [anon_sym_while] = ACTIONS(3283), - [anon_sym_for] = ACTIONS(3283), - [anon_sym_asyncfor] = ACTIONS(3281), - [anon_sym_transform] = ACTIONS(3283), - [anon_sym_filter] = ACTIONS(3283), - [anon_sym_find] = ACTIONS(3283), - [anon_sym_remove] = ACTIONS(3283), - [anon_sym_reduce] = ACTIONS(3283), - [anon_sym_select] = ACTIONS(3283), - [anon_sym_insert] = ACTIONS(3283), - [anon_sym_async] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(3283), - [anon_sym_table] = ACTIONS(3283), - [anon_sym_assert] = ACTIONS(3283), - [anon_sym_assert_equal] = ACTIONS(3283), - [anon_sym_download] = ACTIONS(3283), - [anon_sym_help] = ACTIONS(3283), - [anon_sym_length] = ACTIONS(3283), - [anon_sym_output] = ACTIONS(3283), - [anon_sym_output_error] = ACTIONS(3283), - [anon_sym_type] = ACTIONS(3283), - [anon_sym_append] = ACTIONS(3283), - [anon_sym_metadata] = ACTIONS(3283), - [anon_sym_move] = ACTIONS(3283), - [anon_sym_read] = ACTIONS(3283), - [anon_sym_workdir] = ACTIONS(3283), - [anon_sym_write] = ACTIONS(3283), - [anon_sym_from_json] = ACTIONS(3283), - [anon_sym_to_json] = ACTIONS(3283), - [anon_sym_to_string] = ACTIONS(3283), - [anon_sym_to_float] = ACTIONS(3283), - [anon_sym_bash] = ACTIONS(3283), - [anon_sym_fish] = ACTIONS(3283), - [anon_sym_raw] = ACTIONS(3283), - [anon_sym_sh] = ACTIONS(3283), - [anon_sym_zsh] = ACTIONS(3283), - [anon_sym_random] = ACTIONS(3283), - [anon_sym_random_boolean] = ACTIONS(3283), - [anon_sym_random_float] = ACTIONS(3283), - [anon_sym_random_integer] = ACTIONS(3283), - [anon_sym_columns] = ACTIONS(3283), - [anon_sym_rows] = ACTIONS(3283), - [anon_sym_reverse] = ACTIONS(3283), - }, - [785] = { - [sym_math_operator] = STATE(1242), - [sym_logic_operator] = STATE(1243), - [ts_builtin_sym_end] = ACTIONS(3248), - [sym_identifier] = ACTIONS(3250), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3248), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(3248), - [anon_sym_RPAREN] = ACTIONS(3248), - [sym_integer] = ACTIONS(3250), - [sym_float] = ACTIONS(3248), - [sym_string] = ACTIONS(3248), - [anon_sym_true] = ACTIONS(3250), - [anon_sym_false] = ACTIONS(3250), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_COLON] = ACTIONS(3248), - [anon_sym_DOT_DOT] = ACTIONS(3612), - [anon_sym_PLUS] = ACTIONS(3248), - [anon_sym_DASH] = ACTIONS(3250), - [anon_sym_STAR] = ACTIONS(3248), - [anon_sym_SLASH] = ACTIONS(3248), - [anon_sym_PERCENT] = ACTIONS(3248), - [anon_sym_EQ_EQ] = ACTIONS(3248), - [anon_sym_BANG_EQ] = ACTIONS(3248), - [anon_sym_AMP_AMP] = ACTIONS(3248), - [anon_sym_PIPE_PIPE] = ACTIONS(3248), - [anon_sym_GT] = ACTIONS(3250), - [anon_sym_LT] = ACTIONS(3250), - [anon_sym_GT_EQ] = ACTIONS(3248), - [anon_sym_LT_EQ] = ACTIONS(3248), - [anon_sym_if] = ACTIONS(3250), - [anon_sym_elseif] = ACTIONS(3248), - [anon_sym_else] = ACTIONS(3250), - [anon_sym_match] = ACTIONS(3250), - [anon_sym_EQ_GT] = ACTIONS(3248), - [anon_sym_while] = ACTIONS(3250), - [anon_sym_for] = ACTIONS(3250), - [anon_sym_asyncfor] = ACTIONS(3248), - [anon_sym_transform] = ACTIONS(3250), - [anon_sym_filter] = ACTIONS(3250), - [anon_sym_find] = ACTIONS(3250), - [anon_sym_remove] = ACTIONS(3250), - [anon_sym_reduce] = ACTIONS(3250), - [anon_sym_select] = ACTIONS(3250), - [anon_sym_insert] = ACTIONS(3250), - [anon_sym_async] = ACTIONS(3250), - [anon_sym_PIPE] = ACTIONS(3250), - [anon_sym_table] = ACTIONS(3250), - [anon_sym_assert] = ACTIONS(3250), - [anon_sym_assert_equal] = ACTIONS(3250), - [anon_sym_download] = ACTIONS(3250), - [anon_sym_help] = ACTIONS(3250), - [anon_sym_length] = ACTIONS(3250), - [anon_sym_output] = ACTIONS(3250), - [anon_sym_output_error] = ACTIONS(3250), - [anon_sym_type] = ACTIONS(3250), - [anon_sym_append] = ACTIONS(3250), - [anon_sym_metadata] = ACTIONS(3250), - [anon_sym_move] = ACTIONS(3250), - [anon_sym_read] = ACTIONS(3250), - [anon_sym_workdir] = ACTIONS(3250), - [anon_sym_write] = ACTIONS(3250), - [anon_sym_from_json] = ACTIONS(3250), - [anon_sym_to_json] = ACTIONS(3250), - [anon_sym_to_string] = ACTIONS(3250), - [anon_sym_to_float] = ACTIONS(3250), - [anon_sym_bash] = ACTIONS(3250), - [anon_sym_fish] = ACTIONS(3250), - [anon_sym_raw] = ACTIONS(3250), - [anon_sym_sh] = ACTIONS(3250), - [anon_sym_zsh] = ACTIONS(3250), - [anon_sym_random] = ACTIONS(3250), - [anon_sym_random_boolean] = ACTIONS(3250), - [anon_sym_random_float] = ACTIONS(3250), - [anon_sym_random_integer] = ACTIONS(3250), - [anon_sym_columns] = ACTIONS(3250), - [anon_sym_rows] = ACTIONS(3250), - [anon_sym_reverse] = ACTIONS(3250), - }, - [786] = { - [sym_math_operator] = STATE(1305), - [sym_logic_operator] = STATE(1306), - [ts_builtin_sym_end] = ACTIONS(3248), - [sym_identifier] = ACTIONS(3250), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3248), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(3248), - [anon_sym_RPAREN] = ACTIONS(3248), - [anon_sym_COMMA] = ACTIONS(3248), - [sym_integer] = ACTIONS(3250), - [sym_float] = ACTIONS(3248), - [sym_string] = ACTIONS(3248), - [anon_sym_true] = ACTIONS(3250), - [anon_sym_false] = ACTIONS(3250), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_RBRACK] = ACTIONS(3248), - [anon_sym_COLON] = ACTIONS(3248), - [anon_sym_DOT_DOT] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3248), - [anon_sym_DASH] = ACTIONS(3250), - [anon_sym_STAR] = ACTIONS(3248), - [anon_sym_SLASH] = ACTIONS(3248), - [anon_sym_PERCENT] = ACTIONS(3248), - [anon_sym_EQ_EQ] = ACTIONS(3248), - [anon_sym_BANG_EQ] = ACTIONS(3248), - [anon_sym_AMP_AMP] = ACTIONS(3248), - [anon_sym_PIPE_PIPE] = ACTIONS(3248), - [anon_sym_GT] = ACTIONS(3250), - [anon_sym_LT] = ACTIONS(3250), - [anon_sym_GT_EQ] = ACTIONS(3248), - [anon_sym_LT_EQ] = ACTIONS(3248), - [anon_sym_if] = ACTIONS(3250), - [anon_sym_match] = ACTIONS(3250), - [anon_sym_EQ_GT] = ACTIONS(3248), - [anon_sym_while] = ACTIONS(3250), - [anon_sym_for] = ACTIONS(3250), - [anon_sym_asyncfor] = ACTIONS(3248), - [anon_sym_transform] = ACTIONS(3250), - [anon_sym_filter] = ACTIONS(3250), - [anon_sym_find] = ACTIONS(3250), - [anon_sym_remove] = ACTIONS(3250), - [anon_sym_reduce] = ACTIONS(3250), - [anon_sym_select] = ACTIONS(3250), - [anon_sym_insert] = ACTIONS(3250), - [anon_sym_async] = ACTIONS(3250), - [anon_sym_PIPE] = ACTIONS(3250), - [anon_sym_table] = ACTIONS(3250), - [anon_sym_assert] = ACTIONS(3250), - [anon_sym_assert_equal] = ACTIONS(3250), - [anon_sym_download] = ACTIONS(3250), - [anon_sym_help] = ACTIONS(3250), - [anon_sym_length] = ACTIONS(3250), - [anon_sym_output] = ACTIONS(3250), - [anon_sym_output_error] = ACTIONS(3250), - [anon_sym_type] = ACTIONS(3250), - [anon_sym_append] = ACTIONS(3250), - [anon_sym_metadata] = ACTIONS(3250), - [anon_sym_move] = ACTIONS(3250), - [anon_sym_read] = ACTIONS(3250), - [anon_sym_workdir] = ACTIONS(3250), - [anon_sym_write] = ACTIONS(3250), - [anon_sym_from_json] = ACTIONS(3250), - [anon_sym_to_json] = ACTIONS(3250), - [anon_sym_to_string] = ACTIONS(3250), - [anon_sym_to_float] = ACTIONS(3250), - [anon_sym_bash] = ACTIONS(3250), - [anon_sym_fish] = ACTIONS(3250), - [anon_sym_raw] = ACTIONS(3250), - [anon_sym_sh] = ACTIONS(3250), - [anon_sym_zsh] = ACTIONS(3250), - [anon_sym_random] = ACTIONS(3250), - [anon_sym_random_boolean] = ACTIONS(3250), - [anon_sym_random_float] = ACTIONS(3250), - [anon_sym_random_integer] = ACTIONS(3250), - [anon_sym_columns] = ACTIONS(3250), - [anon_sym_rows] = ACTIONS(3250), - [anon_sym_reverse] = ACTIONS(3250), - }, - [787] = { - [sym_else_if] = STATE(805), - [sym_else] = STATE(878), - [aux_sym_if_else_repeat1] = STATE(805), - [ts_builtin_sym_end] = ACTIONS(3219), - [sym_identifier] = ACTIONS(3221), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_RPAREN] = ACTIONS(3219), - [sym_integer] = ACTIONS(3221), - [sym_float] = ACTIONS(3219), - [sym_string] = ACTIONS(3219), - [anon_sym_true] = ACTIONS(3221), - [anon_sym_false] = ACTIONS(3221), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_COLON] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3221), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_PERCENT] = ACTIONS(3219), - [anon_sym_EQ_EQ] = ACTIONS(3219), - [anon_sym_BANG_EQ] = ACTIONS(3219), - [anon_sym_AMP_AMP] = ACTIONS(3219), - [anon_sym_PIPE_PIPE] = ACTIONS(3219), - [anon_sym_GT] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3221), - [anon_sym_GT_EQ] = ACTIONS(3219), - [anon_sym_LT_EQ] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3221), - [anon_sym_elseif] = ACTIONS(3596), - [anon_sym_else] = ACTIONS(3614), - [anon_sym_match] = ACTIONS(3221), - [anon_sym_EQ_GT] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3221), - [anon_sym_for] = ACTIONS(3221), - [anon_sym_asyncfor] = ACTIONS(3219), - [anon_sym_transform] = ACTIONS(3221), - [anon_sym_filter] = ACTIONS(3221), - [anon_sym_find] = ACTIONS(3221), - [anon_sym_remove] = ACTIONS(3221), - [anon_sym_reduce] = ACTIONS(3221), - [anon_sym_select] = ACTIONS(3221), - [anon_sym_insert] = ACTIONS(3221), - [anon_sym_async] = ACTIONS(3221), - [anon_sym_PIPE] = ACTIONS(3221), - [anon_sym_table] = ACTIONS(3221), - [anon_sym_assert] = ACTIONS(3221), - [anon_sym_assert_equal] = ACTIONS(3221), - [anon_sym_download] = ACTIONS(3221), - [anon_sym_help] = ACTIONS(3221), - [anon_sym_length] = ACTIONS(3221), - [anon_sym_output] = ACTIONS(3221), - [anon_sym_output_error] = ACTIONS(3221), - [anon_sym_type] = ACTIONS(3221), - [anon_sym_append] = ACTIONS(3221), - [anon_sym_metadata] = ACTIONS(3221), - [anon_sym_move] = ACTIONS(3221), - [anon_sym_read] = ACTIONS(3221), - [anon_sym_workdir] = ACTIONS(3221), - [anon_sym_write] = ACTIONS(3221), - [anon_sym_from_json] = ACTIONS(3221), - [anon_sym_to_json] = ACTIONS(3221), - [anon_sym_to_string] = ACTIONS(3221), - [anon_sym_to_float] = ACTIONS(3221), - [anon_sym_bash] = ACTIONS(3221), - [anon_sym_fish] = ACTIONS(3221), - [anon_sym_raw] = ACTIONS(3221), - [anon_sym_sh] = ACTIONS(3221), - [anon_sym_zsh] = ACTIONS(3221), - [anon_sym_random] = ACTIONS(3221), - [anon_sym_random_boolean] = ACTIONS(3221), - [anon_sym_random_float] = ACTIONS(3221), - [anon_sym_random_integer] = ACTIONS(3221), - [anon_sym_columns] = ACTIONS(3221), - [anon_sym_rows] = ACTIONS(3221), - [anon_sym_reverse] = ACTIONS(3221), - }, - [788] = { - [ts_builtin_sym_end] = ACTIONS(3321), - [sym_identifier] = ACTIONS(3323), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3321), - [anon_sym_RBRACE] = ACTIONS(3321), - [anon_sym_SEMI] = ACTIONS(3321), - [anon_sym_LPAREN] = ACTIONS(3321), - [anon_sym_RPAREN] = ACTIONS(3321), - [anon_sym_COMMA] = ACTIONS(3321), - [sym_integer] = ACTIONS(3323), - [sym_float] = ACTIONS(3321), - [sym_string] = ACTIONS(3321), - [anon_sym_true] = ACTIONS(3323), - [anon_sym_false] = ACTIONS(3323), - [anon_sym_LBRACK] = ACTIONS(3321), - [anon_sym_RBRACK] = ACTIONS(3321), - [anon_sym_COLON] = ACTIONS(3321), - [anon_sym_DOT_DOT] = ACTIONS(3321), - [anon_sym_PLUS] = ACTIONS(3321), - [anon_sym_DASH] = ACTIONS(3323), - [anon_sym_STAR] = ACTIONS(3321), - [anon_sym_SLASH] = ACTIONS(3321), - [anon_sym_PERCENT] = ACTIONS(3321), - [anon_sym_EQ_EQ] = ACTIONS(3321), - [anon_sym_BANG_EQ] = ACTIONS(3321), - [anon_sym_AMP_AMP] = ACTIONS(3321), - [anon_sym_PIPE_PIPE] = ACTIONS(3321), - [anon_sym_GT] = ACTIONS(3323), - [anon_sym_LT] = ACTIONS(3323), - [anon_sym_GT_EQ] = ACTIONS(3321), - [anon_sym_LT_EQ] = ACTIONS(3321), - [anon_sym_if] = ACTIONS(3323), - [anon_sym_elseif] = ACTIONS(3321), - [anon_sym_else] = ACTIONS(3323), - [anon_sym_match] = ACTIONS(3323), - [anon_sym_EQ_GT] = ACTIONS(3321), - [anon_sym_while] = ACTIONS(3323), - [anon_sym_for] = ACTIONS(3323), - [anon_sym_asyncfor] = ACTIONS(3321), - [anon_sym_transform] = ACTIONS(3323), - [anon_sym_filter] = ACTIONS(3323), - [anon_sym_find] = ACTIONS(3323), - [anon_sym_remove] = ACTIONS(3323), - [anon_sym_reduce] = ACTIONS(3323), - [anon_sym_select] = ACTIONS(3323), - [anon_sym_insert] = ACTIONS(3323), - [anon_sym_async] = ACTIONS(3323), - [anon_sym_PIPE] = ACTIONS(3323), - [anon_sym_table] = ACTIONS(3323), - [anon_sym_assert] = ACTIONS(3323), - [anon_sym_assert_equal] = ACTIONS(3323), - [anon_sym_download] = ACTIONS(3323), - [anon_sym_help] = ACTIONS(3323), - [anon_sym_length] = ACTIONS(3323), - [anon_sym_output] = ACTIONS(3323), - [anon_sym_output_error] = ACTIONS(3323), - [anon_sym_type] = ACTIONS(3323), - [anon_sym_append] = ACTIONS(3323), - [anon_sym_metadata] = ACTIONS(3323), - [anon_sym_move] = ACTIONS(3323), - [anon_sym_read] = ACTIONS(3323), - [anon_sym_workdir] = ACTIONS(3323), - [anon_sym_write] = ACTIONS(3323), - [anon_sym_from_json] = ACTIONS(3323), - [anon_sym_to_json] = ACTIONS(3323), - [anon_sym_to_string] = ACTIONS(3323), - [anon_sym_to_float] = ACTIONS(3323), - [anon_sym_bash] = ACTIONS(3323), - [anon_sym_fish] = ACTIONS(3323), - [anon_sym_raw] = ACTIONS(3323), - [anon_sym_sh] = ACTIONS(3323), - [anon_sym_zsh] = ACTIONS(3323), - [anon_sym_random] = ACTIONS(3323), - [anon_sym_random_boolean] = ACTIONS(3323), - [anon_sym_random_float] = ACTIONS(3323), - [anon_sym_random_integer] = ACTIONS(3323), - [anon_sym_columns] = ACTIONS(3323), - [anon_sym_rows] = ACTIONS(3323), - [anon_sym_reverse] = ACTIONS(3323), - }, - [789] = { - [ts_builtin_sym_end] = ACTIONS(3363), - [sym_identifier] = ACTIONS(3365), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3363), - [anon_sym_RBRACE] = ACTIONS(3363), - [anon_sym_SEMI] = ACTIONS(3363), - [anon_sym_LPAREN] = ACTIONS(3363), - [anon_sym_RPAREN] = ACTIONS(3363), - [anon_sym_COMMA] = ACTIONS(3363), - [sym_integer] = ACTIONS(3365), - [sym_float] = ACTIONS(3363), - [sym_string] = ACTIONS(3363), - [anon_sym_true] = ACTIONS(3365), - [anon_sym_false] = ACTIONS(3365), - [anon_sym_LBRACK] = ACTIONS(3363), - [anon_sym_RBRACK] = ACTIONS(3363), - [anon_sym_COLON] = ACTIONS(3363), - [anon_sym_DOT_DOT] = ACTIONS(3363), - [anon_sym_PLUS] = ACTIONS(3363), - [anon_sym_DASH] = ACTIONS(3365), - [anon_sym_STAR] = ACTIONS(3363), - [anon_sym_SLASH] = ACTIONS(3363), - [anon_sym_PERCENT] = ACTIONS(3363), - [anon_sym_EQ_EQ] = ACTIONS(3363), - [anon_sym_BANG_EQ] = ACTIONS(3363), - [anon_sym_AMP_AMP] = ACTIONS(3363), - [anon_sym_PIPE_PIPE] = ACTIONS(3363), - [anon_sym_GT] = ACTIONS(3365), - [anon_sym_LT] = ACTIONS(3365), - [anon_sym_GT_EQ] = ACTIONS(3363), - [anon_sym_LT_EQ] = ACTIONS(3363), - [anon_sym_if] = ACTIONS(3365), - [anon_sym_elseif] = ACTIONS(3363), - [anon_sym_else] = ACTIONS(3365), - [anon_sym_match] = ACTIONS(3365), - [anon_sym_EQ_GT] = ACTIONS(3363), - [anon_sym_while] = ACTIONS(3365), - [anon_sym_for] = ACTIONS(3365), - [anon_sym_asyncfor] = ACTIONS(3363), - [anon_sym_transform] = ACTIONS(3365), - [anon_sym_filter] = ACTIONS(3365), - [anon_sym_find] = ACTIONS(3365), - [anon_sym_remove] = ACTIONS(3365), - [anon_sym_reduce] = ACTIONS(3365), - [anon_sym_select] = ACTIONS(3365), - [anon_sym_insert] = ACTIONS(3365), - [anon_sym_async] = ACTIONS(3365), - [anon_sym_PIPE] = ACTIONS(3365), - [anon_sym_table] = ACTIONS(3365), - [anon_sym_assert] = ACTIONS(3365), - [anon_sym_assert_equal] = ACTIONS(3365), - [anon_sym_download] = ACTIONS(3365), - [anon_sym_help] = ACTIONS(3365), - [anon_sym_length] = ACTIONS(3365), - [anon_sym_output] = ACTIONS(3365), - [anon_sym_output_error] = ACTIONS(3365), - [anon_sym_type] = ACTIONS(3365), - [anon_sym_append] = ACTIONS(3365), - [anon_sym_metadata] = ACTIONS(3365), - [anon_sym_move] = ACTIONS(3365), - [anon_sym_read] = ACTIONS(3365), - [anon_sym_workdir] = ACTIONS(3365), - [anon_sym_write] = ACTIONS(3365), - [anon_sym_from_json] = ACTIONS(3365), - [anon_sym_to_json] = ACTIONS(3365), - [anon_sym_to_string] = ACTIONS(3365), - [anon_sym_to_float] = ACTIONS(3365), - [anon_sym_bash] = ACTIONS(3365), - [anon_sym_fish] = ACTIONS(3365), - [anon_sym_raw] = ACTIONS(3365), - [anon_sym_sh] = ACTIONS(3365), - [anon_sym_zsh] = ACTIONS(3365), - [anon_sym_random] = ACTIONS(3365), - [anon_sym_random_boolean] = ACTIONS(3365), - [anon_sym_random_float] = ACTIONS(3365), - [anon_sym_random_integer] = ACTIONS(3365), - [anon_sym_columns] = ACTIONS(3365), - [anon_sym_rows] = ACTIONS(3365), - [anon_sym_reverse] = ACTIONS(3365), - }, - [790] = { - [sym_math_operator] = STATE(1305), - [sym_logic_operator] = STATE(1306), - [ts_builtin_sym_end] = ACTIONS(3252), - [sym_identifier] = ACTIONS(3254), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3252), - [anon_sym_RBRACE] = ACTIONS(3252), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_LPAREN] = ACTIONS(3252), - [anon_sym_RPAREN] = ACTIONS(3252), - [anon_sym_COMMA] = ACTIONS(3252), - [sym_integer] = ACTIONS(3254), - [sym_float] = ACTIONS(3252), - [sym_string] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_RBRACK] = ACTIONS(3252), - [anon_sym_COLON] = ACTIONS(3252), - [anon_sym_DOT_DOT] = ACTIONS(3252), - [anon_sym_PLUS] = ACTIONS(3252), - [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_STAR] = ACTIONS(3252), - [anon_sym_SLASH] = ACTIONS(3252), - [anon_sym_PERCENT] = ACTIONS(3252), - [anon_sym_EQ_EQ] = ACTIONS(3252), - [anon_sym_BANG_EQ] = ACTIONS(3252), - [anon_sym_AMP_AMP] = ACTIONS(3252), - [anon_sym_PIPE_PIPE] = ACTIONS(3252), - [anon_sym_GT] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(3254), - [anon_sym_GT_EQ] = ACTIONS(3252), - [anon_sym_LT_EQ] = ACTIONS(3252), - [anon_sym_if] = ACTIONS(3254), - [anon_sym_match] = ACTIONS(3254), - [anon_sym_EQ_GT] = ACTIONS(3252), - [anon_sym_while] = ACTIONS(3254), - [anon_sym_for] = ACTIONS(3254), - [anon_sym_asyncfor] = ACTIONS(3252), - [anon_sym_transform] = ACTIONS(3254), - [anon_sym_filter] = ACTIONS(3254), - [anon_sym_find] = ACTIONS(3254), - [anon_sym_remove] = ACTIONS(3254), - [anon_sym_reduce] = ACTIONS(3254), - [anon_sym_select] = ACTIONS(3254), - [anon_sym_insert] = ACTIONS(3254), - [anon_sym_async] = ACTIONS(3254), - [anon_sym_PIPE] = ACTIONS(3254), - [anon_sym_table] = ACTIONS(3254), - [anon_sym_assert] = ACTIONS(3254), - [anon_sym_assert_equal] = ACTIONS(3254), - [anon_sym_download] = ACTIONS(3254), - [anon_sym_help] = ACTIONS(3254), - [anon_sym_length] = ACTIONS(3254), - [anon_sym_output] = ACTIONS(3254), - [anon_sym_output_error] = ACTIONS(3254), - [anon_sym_type] = ACTIONS(3254), - [anon_sym_append] = ACTIONS(3254), - [anon_sym_metadata] = ACTIONS(3254), - [anon_sym_move] = ACTIONS(3254), - [anon_sym_read] = ACTIONS(3254), - [anon_sym_workdir] = ACTIONS(3254), - [anon_sym_write] = ACTIONS(3254), - [anon_sym_from_json] = ACTIONS(3254), - [anon_sym_to_json] = ACTIONS(3254), - [anon_sym_to_string] = ACTIONS(3254), - [anon_sym_to_float] = ACTIONS(3254), - [anon_sym_bash] = ACTIONS(3254), - [anon_sym_fish] = ACTIONS(3254), - [anon_sym_raw] = ACTIONS(3254), - [anon_sym_sh] = ACTIONS(3254), - [anon_sym_zsh] = ACTIONS(3254), - [anon_sym_random] = ACTIONS(3254), - [anon_sym_random_boolean] = ACTIONS(3254), - [anon_sym_random_float] = ACTIONS(3254), - [anon_sym_random_integer] = ACTIONS(3254), - [anon_sym_columns] = ACTIONS(3254), - [anon_sym_rows] = ACTIONS(3254), - [anon_sym_reverse] = ACTIONS(3254), - }, - [791] = { - [sym_math_operator] = STATE(1242), - [sym_logic_operator] = STATE(1243), - [ts_builtin_sym_end] = ACTIONS(3244), - [sym_identifier] = ACTIONS(3246), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_RBRACE] = ACTIONS(3244), - [anon_sym_SEMI] = ACTIONS(3244), - [anon_sym_LPAREN] = ACTIONS(3244), - [anon_sym_RPAREN] = ACTIONS(3244), - [sym_integer] = ACTIONS(3246), - [sym_float] = ACTIONS(3244), - [sym_string] = ACTIONS(3244), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_LBRACK] = ACTIONS(3244), - [anon_sym_COLON] = ACTIONS(841), - [anon_sym_DOT_DOT] = ACTIONS(3244), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(3246), - [anon_sym_elseif] = ACTIONS(3244), - [anon_sym_else] = ACTIONS(3246), - [anon_sym_match] = ACTIONS(3246), - [anon_sym_EQ_GT] = ACTIONS(3244), - [anon_sym_while] = ACTIONS(3246), - [anon_sym_for] = ACTIONS(3246), - [anon_sym_asyncfor] = ACTIONS(3244), - [anon_sym_transform] = ACTIONS(3246), - [anon_sym_filter] = ACTIONS(3246), - [anon_sym_find] = ACTIONS(3246), - [anon_sym_remove] = ACTIONS(3246), - [anon_sym_reduce] = ACTIONS(3246), - [anon_sym_select] = ACTIONS(3246), - [anon_sym_insert] = ACTIONS(3246), - [anon_sym_async] = ACTIONS(3246), - [anon_sym_PIPE] = ACTIONS(3246), - [anon_sym_table] = ACTIONS(3246), - [anon_sym_assert] = ACTIONS(3246), - [anon_sym_assert_equal] = ACTIONS(3246), - [anon_sym_download] = ACTIONS(3246), - [anon_sym_help] = ACTIONS(3246), - [anon_sym_length] = ACTIONS(3246), - [anon_sym_output] = ACTIONS(3246), - [anon_sym_output_error] = ACTIONS(3246), - [anon_sym_type] = ACTIONS(3246), - [anon_sym_append] = ACTIONS(3246), - [anon_sym_metadata] = ACTIONS(3246), - [anon_sym_move] = ACTIONS(3246), - [anon_sym_read] = ACTIONS(3246), - [anon_sym_workdir] = ACTIONS(3246), - [anon_sym_write] = ACTIONS(3246), - [anon_sym_from_json] = ACTIONS(3246), - [anon_sym_to_json] = ACTIONS(3246), - [anon_sym_to_string] = ACTIONS(3246), - [anon_sym_to_float] = ACTIONS(3246), - [anon_sym_bash] = ACTIONS(3246), - [anon_sym_fish] = ACTIONS(3246), - [anon_sym_raw] = ACTIONS(3246), - [anon_sym_sh] = ACTIONS(3246), - [anon_sym_zsh] = ACTIONS(3246), - [anon_sym_random] = ACTIONS(3246), - [anon_sym_random_boolean] = ACTIONS(3246), - [anon_sym_random_float] = ACTIONS(3246), - [anon_sym_random_integer] = ACTIONS(3246), - [anon_sym_columns] = ACTIONS(3246), - [anon_sym_rows] = ACTIONS(3246), - [anon_sym_reverse] = ACTIONS(3246), - }, - [792] = { - [ts_builtin_sym_end] = ACTIONS(3229), - [sym_identifier] = ACTIONS(3231), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3229), - [anon_sym_RBRACE] = ACTIONS(3229), - [anon_sym_SEMI] = ACTIONS(3229), - [anon_sym_LPAREN] = ACTIONS(3229), - [anon_sym_RPAREN] = ACTIONS(3229), - [anon_sym_COMMA] = ACTIONS(3229), - [sym_integer] = ACTIONS(3231), - [sym_float] = ACTIONS(3229), - [sym_string] = ACTIONS(3229), - [anon_sym_true] = ACTIONS(3231), - [anon_sym_false] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3229), - [anon_sym_RBRACK] = ACTIONS(3229), - [anon_sym_COLON] = ACTIONS(3229), - [anon_sym_DOT_DOT] = ACTIONS(3229), - [anon_sym_PLUS] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_SLASH] = ACTIONS(3229), - [anon_sym_PERCENT] = ACTIONS(3229), - [anon_sym_EQ_EQ] = ACTIONS(3229), - [anon_sym_BANG_EQ] = ACTIONS(3229), - [anon_sym_AMP_AMP] = ACTIONS(3229), - [anon_sym_PIPE_PIPE] = ACTIONS(3229), - [anon_sym_GT] = ACTIONS(3231), - [anon_sym_LT] = ACTIONS(3231), - [anon_sym_GT_EQ] = ACTIONS(3229), - [anon_sym_LT_EQ] = ACTIONS(3229), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_elseif] = ACTIONS(3229), - [anon_sym_else] = ACTIONS(3231), - [anon_sym_match] = ACTIONS(3231), - [anon_sym_EQ_GT] = ACTIONS(3229), - [anon_sym_while] = ACTIONS(3231), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_asyncfor] = ACTIONS(3229), - [anon_sym_transform] = ACTIONS(3231), - [anon_sym_filter] = ACTIONS(3231), - [anon_sym_find] = ACTIONS(3231), - [anon_sym_remove] = ACTIONS(3231), - [anon_sym_reduce] = ACTIONS(3231), - [anon_sym_select] = ACTIONS(3231), - [anon_sym_insert] = ACTIONS(3231), - [anon_sym_async] = ACTIONS(3231), - [anon_sym_PIPE] = ACTIONS(3231), - [anon_sym_table] = ACTIONS(3231), - [anon_sym_assert] = ACTIONS(3231), - [anon_sym_assert_equal] = ACTIONS(3231), - [anon_sym_download] = ACTIONS(3231), - [anon_sym_help] = ACTIONS(3231), - [anon_sym_length] = ACTIONS(3231), - [anon_sym_output] = ACTIONS(3231), - [anon_sym_output_error] = ACTIONS(3231), - [anon_sym_type] = ACTIONS(3231), - [anon_sym_append] = ACTIONS(3231), - [anon_sym_metadata] = ACTIONS(3231), - [anon_sym_move] = ACTIONS(3231), - [anon_sym_read] = ACTIONS(3231), - [anon_sym_workdir] = ACTIONS(3231), - [anon_sym_write] = ACTIONS(3231), - [anon_sym_from_json] = ACTIONS(3231), - [anon_sym_to_json] = ACTIONS(3231), - [anon_sym_to_string] = ACTIONS(3231), - [anon_sym_to_float] = ACTIONS(3231), - [anon_sym_bash] = ACTIONS(3231), - [anon_sym_fish] = ACTIONS(3231), - [anon_sym_raw] = ACTIONS(3231), - [anon_sym_sh] = ACTIONS(3231), - [anon_sym_zsh] = ACTIONS(3231), - [anon_sym_random] = ACTIONS(3231), - [anon_sym_random_boolean] = ACTIONS(3231), - [anon_sym_random_float] = ACTIONS(3231), - [anon_sym_random_integer] = ACTIONS(3231), - [anon_sym_columns] = ACTIONS(3231), - [anon_sym_rows] = ACTIONS(3231), - [anon_sym_reverse] = ACTIONS(3231), - }, - [793] = { - [sym_else_if] = STATE(825), - [sym_else] = STATE(802), - [aux_sym_if_else_repeat1] = STATE(825), - [ts_builtin_sym_end] = ACTIONS(3229), - [sym_identifier] = ACTIONS(3231), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3229), - [anon_sym_RBRACE] = ACTIONS(3229), - [anon_sym_SEMI] = ACTIONS(3229), - [anon_sym_LPAREN] = ACTIONS(3229), - [anon_sym_RPAREN] = ACTIONS(3229), - [sym_integer] = ACTIONS(3231), - [sym_float] = ACTIONS(3229), - [sym_string] = ACTIONS(3229), - [anon_sym_true] = ACTIONS(3231), - [anon_sym_false] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3229), - [anon_sym_COLON] = ACTIONS(3229), - [anon_sym_PLUS] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_SLASH] = ACTIONS(3229), - [anon_sym_PERCENT] = ACTIONS(3229), - [anon_sym_EQ_EQ] = ACTIONS(3229), - [anon_sym_BANG_EQ] = ACTIONS(3229), - [anon_sym_AMP_AMP] = ACTIONS(3229), - [anon_sym_PIPE_PIPE] = ACTIONS(3229), - [anon_sym_GT] = ACTIONS(3231), - [anon_sym_LT] = ACTIONS(3231), - [anon_sym_GT_EQ] = ACTIONS(3229), - [anon_sym_LT_EQ] = ACTIONS(3229), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_elseif] = ACTIONS(3596), - [anon_sym_else] = ACTIONS(3598), - [anon_sym_match] = ACTIONS(3231), - [anon_sym_EQ_GT] = ACTIONS(3229), - [anon_sym_while] = ACTIONS(3231), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_asyncfor] = ACTIONS(3229), - [anon_sym_transform] = ACTIONS(3231), - [anon_sym_filter] = ACTIONS(3231), - [anon_sym_find] = ACTIONS(3231), - [anon_sym_remove] = ACTIONS(3231), - [anon_sym_reduce] = ACTIONS(3231), - [anon_sym_select] = ACTIONS(3231), - [anon_sym_insert] = ACTIONS(3231), - [anon_sym_async] = ACTIONS(3231), - [anon_sym_PIPE] = ACTIONS(3231), - [anon_sym_table] = ACTIONS(3231), - [anon_sym_assert] = ACTIONS(3231), - [anon_sym_assert_equal] = ACTIONS(3231), - [anon_sym_download] = ACTIONS(3231), - [anon_sym_help] = ACTIONS(3231), - [anon_sym_length] = ACTIONS(3231), - [anon_sym_output] = ACTIONS(3231), - [anon_sym_output_error] = ACTIONS(3231), - [anon_sym_type] = ACTIONS(3231), - [anon_sym_append] = ACTIONS(3231), - [anon_sym_metadata] = ACTIONS(3231), - [anon_sym_move] = ACTIONS(3231), - [anon_sym_read] = ACTIONS(3231), - [anon_sym_workdir] = ACTIONS(3231), - [anon_sym_write] = ACTIONS(3231), - [anon_sym_from_json] = ACTIONS(3231), - [anon_sym_to_json] = ACTIONS(3231), - [anon_sym_to_string] = ACTIONS(3231), - [anon_sym_to_float] = ACTIONS(3231), - [anon_sym_bash] = ACTIONS(3231), - [anon_sym_fish] = ACTIONS(3231), - [anon_sym_raw] = ACTIONS(3231), - [anon_sym_sh] = ACTIONS(3231), - [anon_sym_zsh] = ACTIONS(3231), - [anon_sym_random] = ACTIONS(3231), - [anon_sym_random_boolean] = ACTIONS(3231), - [anon_sym_random_float] = ACTIONS(3231), - [anon_sym_random_integer] = ACTIONS(3231), - [anon_sym_columns] = ACTIONS(3231), - [anon_sym_rows] = ACTIONS(3231), - [anon_sym_reverse] = ACTIONS(3231), - }, - [794] = { - [sym_math_operator] = STATE(1242), - [sym_logic_operator] = STATE(1243), - [ts_builtin_sym_end] = ACTIONS(3240), - [sym_identifier] = ACTIONS(3242), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3240), - [anon_sym_SEMI] = ACTIONS(3240), - [anon_sym_LPAREN] = ACTIONS(3240), - [anon_sym_RPAREN] = ACTIONS(3240), - [sym_integer] = ACTIONS(3242), - [sym_float] = ACTIONS(3240), - [sym_string] = ACTIONS(3240), - [anon_sym_true] = ACTIONS(3242), - [anon_sym_false] = ACTIONS(3242), - [anon_sym_LBRACK] = ACTIONS(3240), - [anon_sym_COLON] = ACTIONS(841), - [anon_sym_DOT_DOT] = ACTIONS(3240), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(3242), - [anon_sym_elseif] = ACTIONS(3240), - [anon_sym_else] = ACTIONS(3242), - [anon_sym_match] = ACTIONS(3242), - [anon_sym_EQ_GT] = ACTIONS(3240), - [anon_sym_while] = ACTIONS(3242), - [anon_sym_for] = ACTIONS(3242), - [anon_sym_asyncfor] = ACTIONS(3240), - [anon_sym_transform] = ACTIONS(3242), - [anon_sym_filter] = ACTIONS(3242), - [anon_sym_find] = ACTIONS(3242), - [anon_sym_remove] = ACTIONS(3242), - [anon_sym_reduce] = ACTIONS(3242), - [anon_sym_select] = ACTIONS(3242), - [anon_sym_insert] = ACTIONS(3242), - [anon_sym_async] = ACTIONS(3242), - [anon_sym_PIPE] = ACTIONS(3242), - [anon_sym_table] = ACTIONS(3242), - [anon_sym_assert] = ACTIONS(3242), - [anon_sym_assert_equal] = ACTIONS(3242), - [anon_sym_download] = ACTIONS(3242), - [anon_sym_help] = ACTIONS(3242), - [anon_sym_length] = ACTIONS(3242), - [anon_sym_output] = ACTIONS(3242), - [anon_sym_output_error] = ACTIONS(3242), - [anon_sym_type] = ACTIONS(3242), - [anon_sym_append] = ACTIONS(3242), - [anon_sym_metadata] = ACTIONS(3242), - [anon_sym_move] = ACTIONS(3242), - [anon_sym_read] = ACTIONS(3242), - [anon_sym_workdir] = ACTIONS(3242), - [anon_sym_write] = ACTIONS(3242), - [anon_sym_from_json] = ACTIONS(3242), - [anon_sym_to_json] = ACTIONS(3242), - [anon_sym_to_string] = ACTIONS(3242), - [anon_sym_to_float] = ACTIONS(3242), - [anon_sym_bash] = ACTIONS(3242), - [anon_sym_fish] = ACTIONS(3242), - [anon_sym_raw] = ACTIONS(3242), - [anon_sym_sh] = ACTIONS(3242), - [anon_sym_zsh] = ACTIONS(3242), - [anon_sym_random] = ACTIONS(3242), - [anon_sym_random_boolean] = ACTIONS(3242), - [anon_sym_random_float] = ACTIONS(3242), - [anon_sym_random_integer] = ACTIONS(3242), - [anon_sym_columns] = ACTIONS(3242), - [anon_sym_rows] = ACTIONS(3242), - [anon_sym_reverse] = ACTIONS(3242), - }, - [795] = { - [sym_math_operator] = STATE(1270), - [sym_logic_operator] = STATE(1260), - [ts_builtin_sym_end] = ACTIONS(3275), - [sym_identifier] = ACTIONS(3277), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3275), - [anon_sym_RBRACE] = ACTIONS(3275), - [anon_sym_SEMI] = ACTIONS(3315), - [anon_sym_LPAREN] = ACTIONS(3275), - [anon_sym_RPAREN] = ACTIONS(3275), - [sym_integer] = ACTIONS(3277), - [sym_float] = ACTIONS(3275), - [sym_string] = ACTIONS(3275), - [anon_sym_true] = ACTIONS(3277), - [anon_sym_false] = ACTIONS(3277), - [anon_sym_LBRACK] = ACTIONS(3275), - [anon_sym_EQ] = ACTIONS(3277), - [anon_sym_COLON] = ACTIONS(911), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_PLUS_EQ] = ACTIONS(3275), - [anon_sym_DASH_EQ] = ACTIONS(3275), - [anon_sym_if] = ACTIONS(3277), - [anon_sym_match] = ACTIONS(3277), - [anon_sym_EQ_GT] = ACTIONS(3275), - [anon_sym_while] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3277), - [anon_sym_asyncfor] = ACTIONS(3275), - [anon_sym_transform] = ACTIONS(3277), - [anon_sym_filter] = ACTIONS(3277), - [anon_sym_find] = ACTIONS(3277), - [anon_sym_remove] = ACTIONS(3277), - [anon_sym_reduce] = ACTIONS(3277), - [anon_sym_select] = ACTIONS(3277), - [anon_sym_insert] = ACTIONS(3277), - [anon_sym_async] = ACTIONS(3277), - [anon_sym_PIPE] = ACTIONS(3277), - [anon_sym_table] = ACTIONS(3277), - [anon_sym_assert] = ACTIONS(3277), - [anon_sym_assert_equal] = ACTIONS(3277), - [anon_sym_download] = ACTIONS(3277), - [anon_sym_help] = ACTIONS(3277), - [anon_sym_length] = ACTIONS(3277), - [anon_sym_output] = ACTIONS(3277), - [anon_sym_output_error] = ACTIONS(3277), - [anon_sym_type] = ACTIONS(3277), - [anon_sym_append] = ACTIONS(3277), - [anon_sym_metadata] = ACTIONS(3277), - [anon_sym_move] = ACTIONS(3277), - [anon_sym_read] = ACTIONS(3277), - [anon_sym_workdir] = ACTIONS(3277), - [anon_sym_write] = ACTIONS(3277), - [anon_sym_from_json] = ACTIONS(3277), - [anon_sym_to_json] = ACTIONS(3277), - [anon_sym_to_string] = ACTIONS(3277), - [anon_sym_to_float] = ACTIONS(3277), - [anon_sym_bash] = ACTIONS(3277), - [anon_sym_fish] = ACTIONS(3277), - [anon_sym_raw] = ACTIONS(3277), - [anon_sym_sh] = ACTIONS(3277), - [anon_sym_zsh] = ACTIONS(3277), - [anon_sym_random] = ACTIONS(3277), - [anon_sym_random_boolean] = ACTIONS(3277), - [anon_sym_random_float] = ACTIONS(3277), - [anon_sym_random_integer] = ACTIONS(3277), - [anon_sym_columns] = ACTIONS(3277), - [anon_sym_rows] = ACTIONS(3277), - [anon_sym_reverse] = ACTIONS(3277), - }, - [796] = { - [ts_builtin_sym_end] = ACTIONS(3303), - [sym_identifier] = ACTIONS(3305), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3303), - [anon_sym_RBRACE] = ACTIONS(3303), - [anon_sym_SEMI] = ACTIONS(3303), - [anon_sym_LPAREN] = ACTIONS(3303), - [anon_sym_RPAREN] = ACTIONS(3303), - [anon_sym_COMMA] = ACTIONS(3303), - [sym_integer] = ACTIONS(3305), - [sym_float] = ACTIONS(3303), - [sym_string] = ACTIONS(3303), - [anon_sym_true] = ACTIONS(3305), - [anon_sym_false] = ACTIONS(3305), - [anon_sym_LBRACK] = ACTIONS(3303), - [anon_sym_RBRACK] = ACTIONS(3303), - [anon_sym_COLON] = ACTIONS(3303), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [anon_sym_PLUS] = ACTIONS(3303), - [anon_sym_DASH] = ACTIONS(3305), - [anon_sym_STAR] = ACTIONS(3303), - [anon_sym_SLASH] = ACTIONS(3303), - [anon_sym_PERCENT] = ACTIONS(3303), - [anon_sym_EQ_EQ] = ACTIONS(3303), - [anon_sym_BANG_EQ] = ACTIONS(3303), - [anon_sym_AMP_AMP] = ACTIONS(3303), - [anon_sym_PIPE_PIPE] = ACTIONS(3303), - [anon_sym_GT] = ACTIONS(3305), - [anon_sym_LT] = ACTIONS(3305), - [anon_sym_GT_EQ] = ACTIONS(3303), - [anon_sym_LT_EQ] = ACTIONS(3303), - [anon_sym_if] = ACTIONS(3305), - [anon_sym_elseif] = ACTIONS(3303), - [anon_sym_else] = ACTIONS(3305), - [anon_sym_match] = ACTIONS(3305), - [anon_sym_EQ_GT] = ACTIONS(3303), - [anon_sym_while] = ACTIONS(3305), - [anon_sym_for] = ACTIONS(3305), - [anon_sym_asyncfor] = ACTIONS(3303), - [anon_sym_transform] = ACTIONS(3305), - [anon_sym_filter] = ACTIONS(3305), - [anon_sym_find] = ACTIONS(3305), - [anon_sym_remove] = ACTIONS(3305), - [anon_sym_reduce] = ACTIONS(3305), - [anon_sym_select] = ACTIONS(3305), - [anon_sym_insert] = ACTIONS(3305), - [anon_sym_async] = ACTIONS(3305), - [anon_sym_PIPE] = ACTIONS(3305), - [anon_sym_table] = ACTIONS(3305), - [anon_sym_assert] = ACTIONS(3305), - [anon_sym_assert_equal] = ACTIONS(3305), - [anon_sym_download] = ACTIONS(3305), - [anon_sym_help] = ACTIONS(3305), - [anon_sym_length] = ACTIONS(3305), - [anon_sym_output] = ACTIONS(3305), - [anon_sym_output_error] = ACTIONS(3305), - [anon_sym_type] = ACTIONS(3305), - [anon_sym_append] = ACTIONS(3305), - [anon_sym_metadata] = ACTIONS(3305), - [anon_sym_move] = ACTIONS(3305), - [anon_sym_read] = ACTIONS(3305), - [anon_sym_workdir] = ACTIONS(3305), - [anon_sym_write] = ACTIONS(3305), - [anon_sym_from_json] = ACTIONS(3305), - [anon_sym_to_json] = ACTIONS(3305), - [anon_sym_to_string] = ACTIONS(3305), - [anon_sym_to_float] = ACTIONS(3305), - [anon_sym_bash] = ACTIONS(3305), - [anon_sym_fish] = ACTIONS(3305), - [anon_sym_raw] = ACTIONS(3305), - [anon_sym_sh] = ACTIONS(3305), - [anon_sym_zsh] = ACTIONS(3305), - [anon_sym_random] = ACTIONS(3305), - [anon_sym_random_boolean] = ACTIONS(3305), - [anon_sym_random_float] = ACTIONS(3305), - [anon_sym_random_integer] = ACTIONS(3305), - [anon_sym_columns] = ACTIONS(3305), - [anon_sym_rows] = ACTIONS(3305), - [anon_sym_reverse] = ACTIONS(3305), - }, - [797] = { - [sym_math_operator] = STATE(1270), - [sym_logic_operator] = STATE(1260), - [ts_builtin_sym_end] = ACTIONS(3240), - [sym_identifier] = ACTIONS(3242), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3240), - [anon_sym_SEMI] = ACTIONS(3240), - [anon_sym_LPAREN] = ACTIONS(3240), - [anon_sym_RPAREN] = ACTIONS(3240), - [sym_integer] = ACTIONS(3242), - [sym_float] = ACTIONS(3240), - [sym_string] = ACTIONS(3240), - [anon_sym_true] = ACTIONS(3242), - [anon_sym_false] = ACTIONS(3242), - [anon_sym_LBRACK] = ACTIONS(3240), - [anon_sym_EQ] = ACTIONS(3242), - [anon_sym_COLON] = ACTIONS(911), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_PLUS_EQ] = ACTIONS(3240), - [anon_sym_DASH_EQ] = ACTIONS(3240), - [anon_sym_if] = ACTIONS(3242), - [anon_sym_match] = ACTIONS(3242), - [anon_sym_EQ_GT] = ACTIONS(3240), - [anon_sym_while] = ACTIONS(3242), - [anon_sym_for] = ACTIONS(3242), - [anon_sym_asyncfor] = ACTIONS(3240), - [anon_sym_transform] = ACTIONS(3242), - [anon_sym_filter] = ACTIONS(3242), - [anon_sym_find] = ACTIONS(3242), - [anon_sym_remove] = ACTIONS(3242), - [anon_sym_reduce] = ACTIONS(3242), - [anon_sym_select] = ACTIONS(3242), - [anon_sym_insert] = ACTIONS(3242), - [anon_sym_async] = ACTIONS(3242), - [anon_sym_PIPE] = ACTIONS(3242), - [anon_sym_table] = ACTIONS(3242), - [anon_sym_assert] = ACTIONS(3242), - [anon_sym_assert_equal] = ACTIONS(3242), - [anon_sym_download] = ACTIONS(3242), - [anon_sym_help] = ACTIONS(3242), - [anon_sym_length] = ACTIONS(3242), - [anon_sym_output] = ACTIONS(3242), - [anon_sym_output_error] = ACTIONS(3242), - [anon_sym_type] = ACTIONS(3242), - [anon_sym_append] = ACTIONS(3242), - [anon_sym_metadata] = ACTIONS(3242), - [anon_sym_move] = ACTIONS(3242), - [anon_sym_read] = ACTIONS(3242), - [anon_sym_workdir] = ACTIONS(3242), - [anon_sym_write] = ACTIONS(3242), - [anon_sym_from_json] = ACTIONS(3242), - [anon_sym_to_json] = ACTIONS(3242), - [anon_sym_to_string] = ACTIONS(3242), - [anon_sym_to_float] = ACTIONS(3242), - [anon_sym_bash] = ACTIONS(3242), - [anon_sym_fish] = ACTIONS(3242), - [anon_sym_raw] = ACTIONS(3242), - [anon_sym_sh] = ACTIONS(3242), - [anon_sym_zsh] = ACTIONS(3242), - [anon_sym_random] = ACTIONS(3242), - [anon_sym_random_boolean] = ACTIONS(3242), - [anon_sym_random_float] = ACTIONS(3242), - [anon_sym_random_integer] = ACTIONS(3242), - [anon_sym_columns] = ACTIONS(3242), - [anon_sym_rows] = ACTIONS(3242), - [anon_sym_reverse] = ACTIONS(3242), - }, - [798] = { - [sym_math_operator] = STATE(1270), - [sym_logic_operator] = STATE(1260), - [ts_builtin_sym_end] = ACTIONS(3244), - [sym_identifier] = ACTIONS(3246), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_RBRACE] = ACTIONS(3244), - [anon_sym_SEMI] = ACTIONS(3244), - [anon_sym_LPAREN] = ACTIONS(3244), - [anon_sym_RPAREN] = ACTIONS(3244), - [sym_integer] = ACTIONS(3246), - [sym_float] = ACTIONS(3244), - [sym_string] = ACTIONS(3244), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_LBRACK] = ACTIONS(3244), - [anon_sym_EQ] = ACTIONS(3246), - [anon_sym_COLON] = ACTIONS(911), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_PLUS_EQ] = ACTIONS(3244), - [anon_sym_DASH_EQ] = ACTIONS(3244), - [anon_sym_if] = ACTIONS(3246), - [anon_sym_match] = ACTIONS(3246), - [anon_sym_EQ_GT] = ACTIONS(3244), - [anon_sym_while] = ACTIONS(3246), - [anon_sym_for] = ACTIONS(3246), - [anon_sym_asyncfor] = ACTIONS(3244), - [anon_sym_transform] = ACTIONS(3246), - [anon_sym_filter] = ACTIONS(3246), - [anon_sym_find] = ACTIONS(3246), - [anon_sym_remove] = ACTIONS(3246), - [anon_sym_reduce] = ACTIONS(3246), - [anon_sym_select] = ACTIONS(3246), - [anon_sym_insert] = ACTIONS(3246), - [anon_sym_async] = ACTIONS(3246), - [anon_sym_PIPE] = ACTIONS(3246), - [anon_sym_table] = ACTIONS(3246), - [anon_sym_assert] = ACTIONS(3246), - [anon_sym_assert_equal] = ACTIONS(3246), - [anon_sym_download] = ACTIONS(3246), - [anon_sym_help] = ACTIONS(3246), - [anon_sym_length] = ACTIONS(3246), - [anon_sym_output] = ACTIONS(3246), - [anon_sym_output_error] = ACTIONS(3246), - [anon_sym_type] = ACTIONS(3246), - [anon_sym_append] = ACTIONS(3246), - [anon_sym_metadata] = ACTIONS(3246), - [anon_sym_move] = ACTIONS(3246), - [anon_sym_read] = ACTIONS(3246), - [anon_sym_workdir] = ACTIONS(3246), - [anon_sym_write] = ACTIONS(3246), - [anon_sym_from_json] = ACTIONS(3246), - [anon_sym_to_json] = ACTIONS(3246), - [anon_sym_to_string] = ACTIONS(3246), - [anon_sym_to_float] = ACTIONS(3246), - [anon_sym_bash] = ACTIONS(3246), - [anon_sym_fish] = ACTIONS(3246), - [anon_sym_raw] = ACTIONS(3246), - [anon_sym_sh] = ACTIONS(3246), - [anon_sym_zsh] = ACTIONS(3246), - [anon_sym_random] = ACTIONS(3246), - [anon_sym_random_boolean] = ACTIONS(3246), - [anon_sym_random_float] = ACTIONS(3246), - [anon_sym_random_integer] = ACTIONS(3246), - [anon_sym_columns] = ACTIONS(3246), - [anon_sym_rows] = ACTIONS(3246), - [anon_sym_reverse] = ACTIONS(3246), - }, - [799] = { - [ts_builtin_sym_end] = ACTIONS(3317), - [sym_identifier] = ACTIONS(3319), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3317), - [anon_sym_RBRACE] = ACTIONS(3317), - [anon_sym_SEMI] = ACTIONS(3317), - [anon_sym_LPAREN] = ACTIONS(3317), - [anon_sym_RPAREN] = ACTIONS(3317), - [anon_sym_COMMA] = ACTIONS(3317), - [sym_integer] = ACTIONS(3319), - [sym_float] = ACTIONS(3317), - [sym_string] = ACTIONS(3317), - [anon_sym_true] = ACTIONS(3319), - [anon_sym_false] = ACTIONS(3319), - [anon_sym_LBRACK] = ACTIONS(3317), - [anon_sym_RBRACK] = ACTIONS(3317), - [anon_sym_COLON] = ACTIONS(3317), - [anon_sym_DOT_DOT] = ACTIONS(3317), - [anon_sym_PLUS] = ACTIONS(3317), - [anon_sym_DASH] = ACTIONS(3319), - [anon_sym_STAR] = ACTIONS(3317), - [anon_sym_SLASH] = ACTIONS(3317), - [anon_sym_PERCENT] = ACTIONS(3317), - [anon_sym_EQ_EQ] = ACTIONS(3317), - [anon_sym_BANG_EQ] = ACTIONS(3317), - [anon_sym_AMP_AMP] = ACTIONS(3317), - [anon_sym_PIPE_PIPE] = ACTIONS(3317), - [anon_sym_GT] = ACTIONS(3319), - [anon_sym_LT] = ACTIONS(3319), - [anon_sym_GT_EQ] = ACTIONS(3317), - [anon_sym_LT_EQ] = ACTIONS(3317), - [anon_sym_if] = ACTIONS(3319), - [anon_sym_elseif] = ACTIONS(3317), - [anon_sym_else] = ACTIONS(3319), - [anon_sym_match] = ACTIONS(3319), - [anon_sym_EQ_GT] = ACTIONS(3317), - [anon_sym_while] = ACTIONS(3319), - [anon_sym_for] = ACTIONS(3319), - [anon_sym_asyncfor] = ACTIONS(3317), - [anon_sym_transform] = ACTIONS(3319), - [anon_sym_filter] = ACTIONS(3319), - [anon_sym_find] = ACTIONS(3319), - [anon_sym_remove] = ACTIONS(3319), - [anon_sym_reduce] = ACTIONS(3319), - [anon_sym_select] = ACTIONS(3319), - [anon_sym_insert] = ACTIONS(3319), - [anon_sym_async] = ACTIONS(3319), - [anon_sym_PIPE] = ACTIONS(3319), - [anon_sym_table] = ACTIONS(3319), - [anon_sym_assert] = ACTIONS(3319), - [anon_sym_assert_equal] = ACTIONS(3319), - [anon_sym_download] = ACTIONS(3319), - [anon_sym_help] = ACTIONS(3319), - [anon_sym_length] = ACTIONS(3319), - [anon_sym_output] = ACTIONS(3319), - [anon_sym_output_error] = ACTIONS(3319), - [anon_sym_type] = ACTIONS(3319), - [anon_sym_append] = ACTIONS(3319), - [anon_sym_metadata] = ACTIONS(3319), - [anon_sym_move] = ACTIONS(3319), - [anon_sym_read] = ACTIONS(3319), - [anon_sym_workdir] = ACTIONS(3319), - [anon_sym_write] = ACTIONS(3319), - [anon_sym_from_json] = ACTIONS(3319), - [anon_sym_to_json] = ACTIONS(3319), - [anon_sym_to_string] = ACTIONS(3319), - [anon_sym_to_float] = ACTIONS(3319), - [anon_sym_bash] = ACTIONS(3319), - [anon_sym_fish] = ACTIONS(3319), - [anon_sym_raw] = ACTIONS(3319), - [anon_sym_sh] = ACTIONS(3319), - [anon_sym_zsh] = ACTIONS(3319), - [anon_sym_random] = ACTIONS(3319), - [anon_sym_random_boolean] = ACTIONS(3319), - [anon_sym_random_float] = ACTIONS(3319), - [anon_sym_random_integer] = ACTIONS(3319), - [anon_sym_columns] = ACTIONS(3319), - [anon_sym_rows] = ACTIONS(3319), - [anon_sym_reverse] = ACTIONS(3319), - }, - [800] = { - [sym_math_operator] = STATE(1242), - [sym_logic_operator] = STATE(1243), - [ts_builtin_sym_end] = ACTIONS(3252), - [sym_identifier] = ACTIONS(3254), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3252), - [anon_sym_RBRACE] = ACTIONS(3252), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_LPAREN] = ACTIONS(3252), - [anon_sym_RPAREN] = ACTIONS(3252), - [sym_integer] = ACTIONS(3254), - [sym_float] = ACTIONS(3252), - [sym_string] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_COLON] = ACTIONS(3252), - [anon_sym_DOT_DOT] = ACTIONS(3252), - [anon_sym_PLUS] = ACTIONS(3252), - [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_STAR] = ACTIONS(3252), - [anon_sym_SLASH] = ACTIONS(3252), - [anon_sym_PERCENT] = ACTIONS(3252), - [anon_sym_EQ_EQ] = ACTIONS(3252), - [anon_sym_BANG_EQ] = ACTIONS(3252), - [anon_sym_AMP_AMP] = ACTIONS(3252), - [anon_sym_PIPE_PIPE] = ACTIONS(3252), - [anon_sym_GT] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(3254), - [anon_sym_GT_EQ] = ACTIONS(3252), - [anon_sym_LT_EQ] = ACTIONS(3252), - [anon_sym_if] = ACTIONS(3254), - [anon_sym_elseif] = ACTIONS(3252), - [anon_sym_else] = ACTIONS(3254), - [anon_sym_match] = ACTIONS(3254), - [anon_sym_EQ_GT] = ACTIONS(3252), - [anon_sym_while] = ACTIONS(3254), - [anon_sym_for] = ACTIONS(3254), - [anon_sym_asyncfor] = ACTIONS(3252), - [anon_sym_transform] = ACTIONS(3254), - [anon_sym_filter] = ACTIONS(3254), - [anon_sym_find] = ACTIONS(3254), - [anon_sym_remove] = ACTIONS(3254), - [anon_sym_reduce] = ACTIONS(3254), - [anon_sym_select] = ACTIONS(3254), - [anon_sym_insert] = ACTIONS(3254), - [anon_sym_async] = ACTIONS(3254), - [anon_sym_PIPE] = ACTIONS(3254), - [anon_sym_table] = ACTIONS(3254), - [anon_sym_assert] = ACTIONS(3254), - [anon_sym_assert_equal] = ACTIONS(3254), - [anon_sym_download] = ACTIONS(3254), - [anon_sym_help] = ACTIONS(3254), - [anon_sym_length] = ACTIONS(3254), - [anon_sym_output] = ACTIONS(3254), - [anon_sym_output_error] = ACTIONS(3254), - [anon_sym_type] = ACTIONS(3254), - [anon_sym_append] = ACTIONS(3254), - [anon_sym_metadata] = ACTIONS(3254), - [anon_sym_move] = ACTIONS(3254), - [anon_sym_read] = ACTIONS(3254), - [anon_sym_workdir] = ACTIONS(3254), - [anon_sym_write] = ACTIONS(3254), - [anon_sym_from_json] = ACTIONS(3254), - [anon_sym_to_json] = ACTIONS(3254), - [anon_sym_to_string] = ACTIONS(3254), - [anon_sym_to_float] = ACTIONS(3254), - [anon_sym_bash] = ACTIONS(3254), - [anon_sym_fish] = ACTIONS(3254), - [anon_sym_raw] = ACTIONS(3254), - [anon_sym_sh] = ACTIONS(3254), - [anon_sym_zsh] = ACTIONS(3254), - [anon_sym_random] = ACTIONS(3254), - [anon_sym_random_boolean] = ACTIONS(3254), - [anon_sym_random_float] = ACTIONS(3254), - [anon_sym_random_integer] = ACTIONS(3254), - [anon_sym_columns] = ACTIONS(3254), - [anon_sym_rows] = ACTIONS(3254), - [anon_sym_reverse] = ACTIONS(3254), - }, - [801] = { - [sym_math_operator] = STATE(1242), - [sym_logic_operator] = STATE(1243), - [ts_builtin_sym_end] = ACTIONS(3262), - [sym_identifier] = ACTIONS(3264), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3262), - [anon_sym_SEMI] = ACTIONS(3262), - [anon_sym_LPAREN] = ACTIONS(3262), - [anon_sym_RPAREN] = ACTIONS(3262), - [sym_integer] = ACTIONS(3264), - [sym_float] = ACTIONS(3262), - [sym_string] = ACTIONS(3262), - [anon_sym_true] = ACTIONS(3264), - [anon_sym_false] = ACTIONS(3264), - [anon_sym_LBRACK] = ACTIONS(3262), - [anon_sym_COLON] = ACTIONS(3262), - [anon_sym_DOT_DOT] = ACTIONS(3262), - [anon_sym_PLUS] = ACTIONS(3262), - [anon_sym_DASH] = ACTIONS(3264), - [anon_sym_STAR] = ACTIONS(3262), - [anon_sym_SLASH] = ACTIONS(3262), - [anon_sym_PERCENT] = ACTIONS(3262), - [anon_sym_EQ_EQ] = ACTIONS(3262), - [anon_sym_BANG_EQ] = ACTIONS(3262), - [anon_sym_AMP_AMP] = ACTIONS(3262), - [anon_sym_PIPE_PIPE] = ACTIONS(3262), - [anon_sym_GT] = ACTIONS(3264), - [anon_sym_LT] = ACTIONS(3264), - [anon_sym_GT_EQ] = ACTIONS(3262), - [anon_sym_LT_EQ] = ACTIONS(3262), - [anon_sym_if] = ACTIONS(3264), - [anon_sym_elseif] = ACTIONS(3262), - [anon_sym_else] = ACTIONS(3264), - [anon_sym_match] = ACTIONS(3264), - [anon_sym_EQ_GT] = ACTIONS(3262), - [anon_sym_while] = ACTIONS(3264), - [anon_sym_for] = ACTIONS(3264), - [anon_sym_asyncfor] = ACTIONS(3262), - [anon_sym_transform] = ACTIONS(3264), - [anon_sym_filter] = ACTIONS(3264), - [anon_sym_find] = ACTIONS(3264), - [anon_sym_remove] = ACTIONS(3264), - [anon_sym_reduce] = ACTIONS(3264), - [anon_sym_select] = ACTIONS(3264), - [anon_sym_insert] = ACTIONS(3264), - [anon_sym_async] = ACTIONS(3264), - [anon_sym_PIPE] = ACTIONS(3264), - [anon_sym_table] = ACTIONS(3264), - [anon_sym_assert] = ACTIONS(3264), - [anon_sym_assert_equal] = ACTIONS(3264), - [anon_sym_download] = ACTIONS(3264), - [anon_sym_help] = ACTIONS(3264), - [anon_sym_length] = ACTIONS(3264), - [anon_sym_output] = ACTIONS(3264), - [anon_sym_output_error] = ACTIONS(3264), - [anon_sym_type] = ACTIONS(3264), - [anon_sym_append] = ACTIONS(3264), - [anon_sym_metadata] = ACTIONS(3264), - [anon_sym_move] = ACTIONS(3264), - [anon_sym_read] = ACTIONS(3264), - [anon_sym_workdir] = ACTIONS(3264), - [anon_sym_write] = ACTIONS(3264), - [anon_sym_from_json] = ACTIONS(3264), - [anon_sym_to_json] = ACTIONS(3264), - [anon_sym_to_string] = ACTIONS(3264), - [anon_sym_to_float] = ACTIONS(3264), - [anon_sym_bash] = ACTIONS(3264), - [anon_sym_fish] = ACTIONS(3264), - [anon_sym_raw] = ACTIONS(3264), - [anon_sym_sh] = ACTIONS(3264), - [anon_sym_zsh] = ACTIONS(3264), - [anon_sym_random] = ACTIONS(3264), - [anon_sym_random_boolean] = ACTIONS(3264), - [anon_sym_random_float] = ACTIONS(3264), - [anon_sym_random_integer] = ACTIONS(3264), - [anon_sym_columns] = ACTIONS(3264), - [anon_sym_rows] = ACTIONS(3264), - [anon_sym_reverse] = ACTIONS(3264), - }, - [802] = { - [ts_builtin_sym_end] = ACTIONS(3325), - [sym_identifier] = ACTIONS(3327), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3325), - [anon_sym_RBRACE] = ACTIONS(3325), - [anon_sym_SEMI] = ACTIONS(3325), - [anon_sym_LPAREN] = ACTIONS(3325), - [anon_sym_RPAREN] = ACTIONS(3325), - [anon_sym_COMMA] = ACTIONS(3325), - [sym_integer] = ACTIONS(3327), - [sym_float] = ACTIONS(3325), - [sym_string] = ACTIONS(3325), - [anon_sym_true] = ACTIONS(3327), - [anon_sym_false] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3325), - [anon_sym_RBRACK] = ACTIONS(3325), - [anon_sym_COLON] = ACTIONS(3325), - [anon_sym_DOT_DOT] = ACTIONS(3325), - [anon_sym_PLUS] = ACTIONS(3325), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_STAR] = ACTIONS(3325), - [anon_sym_SLASH] = ACTIONS(3325), - [anon_sym_PERCENT] = ACTIONS(3325), - [anon_sym_EQ_EQ] = ACTIONS(3325), - [anon_sym_BANG_EQ] = ACTIONS(3325), - [anon_sym_AMP_AMP] = ACTIONS(3325), - [anon_sym_PIPE_PIPE] = ACTIONS(3325), - [anon_sym_GT] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_GT_EQ] = ACTIONS(3325), - [anon_sym_LT_EQ] = ACTIONS(3325), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_elseif] = ACTIONS(3325), - [anon_sym_else] = ACTIONS(3327), - [anon_sym_match] = ACTIONS(3327), - [anon_sym_EQ_GT] = ACTIONS(3325), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_asyncfor] = ACTIONS(3325), - [anon_sym_transform] = ACTIONS(3327), - [anon_sym_filter] = ACTIONS(3327), - [anon_sym_find] = ACTIONS(3327), - [anon_sym_remove] = ACTIONS(3327), - [anon_sym_reduce] = ACTIONS(3327), - [anon_sym_select] = ACTIONS(3327), - [anon_sym_insert] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_PIPE] = ACTIONS(3327), - [anon_sym_table] = ACTIONS(3327), - [anon_sym_assert] = ACTIONS(3327), - [anon_sym_assert_equal] = ACTIONS(3327), - [anon_sym_download] = ACTIONS(3327), - [anon_sym_help] = ACTIONS(3327), - [anon_sym_length] = ACTIONS(3327), - [anon_sym_output] = ACTIONS(3327), - [anon_sym_output_error] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_append] = ACTIONS(3327), - [anon_sym_metadata] = ACTIONS(3327), - [anon_sym_move] = ACTIONS(3327), - [anon_sym_read] = ACTIONS(3327), - [anon_sym_workdir] = ACTIONS(3327), - [anon_sym_write] = ACTIONS(3327), - [anon_sym_from_json] = ACTIONS(3327), - [anon_sym_to_json] = ACTIONS(3327), - [anon_sym_to_string] = ACTIONS(3327), - [anon_sym_to_float] = ACTIONS(3327), - [anon_sym_bash] = ACTIONS(3327), - [anon_sym_fish] = ACTIONS(3327), - [anon_sym_raw] = ACTIONS(3327), - [anon_sym_sh] = ACTIONS(3327), - [anon_sym_zsh] = ACTIONS(3327), - [anon_sym_random] = ACTIONS(3327), - [anon_sym_random_boolean] = ACTIONS(3327), - [anon_sym_random_float] = ACTIONS(3327), - [anon_sym_random_integer] = ACTIONS(3327), - [anon_sym_columns] = ACTIONS(3327), - [anon_sym_rows] = ACTIONS(3327), - [anon_sym_reverse] = ACTIONS(3327), - }, - [803] = { - [ts_builtin_sym_end] = ACTIONS(3329), - [sym_identifier] = ACTIONS(3331), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3329), - [anon_sym_RBRACE] = ACTIONS(3329), - [anon_sym_SEMI] = ACTIONS(3329), - [anon_sym_LPAREN] = ACTIONS(3329), - [anon_sym_RPAREN] = ACTIONS(3329), - [anon_sym_COMMA] = ACTIONS(3329), - [sym_integer] = ACTIONS(3331), - [sym_float] = ACTIONS(3329), - [sym_string] = ACTIONS(3329), - [anon_sym_true] = ACTIONS(3331), - [anon_sym_false] = ACTIONS(3331), - [anon_sym_LBRACK] = ACTIONS(3329), - [anon_sym_RBRACK] = ACTIONS(3329), - [anon_sym_COLON] = ACTIONS(3329), - [anon_sym_DOT_DOT] = ACTIONS(3329), - [anon_sym_PLUS] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(3331), - [anon_sym_STAR] = ACTIONS(3329), - [anon_sym_SLASH] = ACTIONS(3329), - [anon_sym_PERCENT] = ACTIONS(3329), - [anon_sym_EQ_EQ] = ACTIONS(3329), - [anon_sym_BANG_EQ] = ACTIONS(3329), - [anon_sym_AMP_AMP] = ACTIONS(3329), - [anon_sym_PIPE_PIPE] = ACTIONS(3329), - [anon_sym_GT] = ACTIONS(3331), - [anon_sym_LT] = ACTIONS(3331), - [anon_sym_GT_EQ] = ACTIONS(3329), - [anon_sym_LT_EQ] = ACTIONS(3329), - [anon_sym_if] = ACTIONS(3331), - [anon_sym_elseif] = ACTIONS(3329), - [anon_sym_else] = ACTIONS(3331), - [anon_sym_match] = ACTIONS(3331), - [anon_sym_EQ_GT] = ACTIONS(3329), - [anon_sym_while] = ACTIONS(3331), - [anon_sym_for] = ACTIONS(3331), - [anon_sym_asyncfor] = ACTIONS(3329), - [anon_sym_transform] = ACTIONS(3331), - [anon_sym_filter] = ACTIONS(3331), - [anon_sym_find] = ACTIONS(3331), - [anon_sym_remove] = ACTIONS(3331), - [anon_sym_reduce] = ACTIONS(3331), - [anon_sym_select] = ACTIONS(3331), - [anon_sym_insert] = ACTIONS(3331), - [anon_sym_async] = ACTIONS(3331), - [anon_sym_PIPE] = ACTIONS(3331), - [anon_sym_table] = ACTIONS(3331), - [anon_sym_assert] = ACTIONS(3331), - [anon_sym_assert_equal] = ACTIONS(3331), - [anon_sym_download] = ACTIONS(3331), - [anon_sym_help] = ACTIONS(3331), - [anon_sym_length] = ACTIONS(3331), - [anon_sym_output] = ACTIONS(3331), - [anon_sym_output_error] = ACTIONS(3331), - [anon_sym_type] = ACTIONS(3331), - [anon_sym_append] = ACTIONS(3331), - [anon_sym_metadata] = ACTIONS(3331), - [anon_sym_move] = ACTIONS(3331), - [anon_sym_read] = ACTIONS(3331), - [anon_sym_workdir] = ACTIONS(3331), - [anon_sym_write] = ACTIONS(3331), - [anon_sym_from_json] = ACTIONS(3331), - [anon_sym_to_json] = ACTIONS(3331), - [anon_sym_to_string] = ACTIONS(3331), - [anon_sym_to_float] = ACTIONS(3331), - [anon_sym_bash] = ACTIONS(3331), - [anon_sym_fish] = ACTIONS(3331), - [anon_sym_raw] = ACTIONS(3331), - [anon_sym_sh] = ACTIONS(3331), - [anon_sym_zsh] = ACTIONS(3331), - [anon_sym_random] = ACTIONS(3331), - [anon_sym_random_boolean] = ACTIONS(3331), - [anon_sym_random_float] = ACTIONS(3331), - [anon_sym_random_integer] = ACTIONS(3331), - [anon_sym_columns] = ACTIONS(3331), - [anon_sym_rows] = ACTIONS(3331), - [anon_sym_reverse] = ACTIONS(3331), - }, - [804] = { - [ts_builtin_sym_end] = ACTIONS(3337), - [sym_identifier] = ACTIONS(3339), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3337), - [anon_sym_RBRACE] = ACTIONS(3337), - [anon_sym_SEMI] = ACTIONS(3337), - [anon_sym_LPAREN] = ACTIONS(3337), - [anon_sym_RPAREN] = ACTIONS(3337), - [anon_sym_COMMA] = ACTIONS(3337), - [sym_integer] = ACTIONS(3339), - [sym_float] = ACTIONS(3337), - [sym_string] = ACTIONS(3337), - [anon_sym_true] = ACTIONS(3339), - [anon_sym_false] = ACTIONS(3339), - [anon_sym_LBRACK] = ACTIONS(3337), - [anon_sym_RBRACK] = ACTIONS(3337), - [anon_sym_COLON] = ACTIONS(3337), - [anon_sym_DOT_DOT] = ACTIONS(3337), - [anon_sym_PLUS] = ACTIONS(3337), - [anon_sym_DASH] = ACTIONS(3339), - [anon_sym_STAR] = ACTIONS(3337), - [anon_sym_SLASH] = ACTIONS(3337), - [anon_sym_PERCENT] = ACTIONS(3337), - [anon_sym_EQ_EQ] = ACTIONS(3337), - [anon_sym_BANG_EQ] = ACTIONS(3337), - [anon_sym_AMP_AMP] = ACTIONS(3337), - [anon_sym_PIPE_PIPE] = ACTIONS(3337), - [anon_sym_GT] = ACTIONS(3339), - [anon_sym_LT] = ACTIONS(3339), - [anon_sym_GT_EQ] = ACTIONS(3337), - [anon_sym_LT_EQ] = ACTIONS(3337), - [anon_sym_if] = ACTIONS(3339), - [anon_sym_elseif] = ACTIONS(3337), - [anon_sym_else] = ACTIONS(3339), - [anon_sym_match] = ACTIONS(3339), - [anon_sym_EQ_GT] = ACTIONS(3337), - [anon_sym_while] = ACTIONS(3339), - [anon_sym_for] = ACTIONS(3339), - [anon_sym_asyncfor] = ACTIONS(3337), - [anon_sym_transform] = ACTIONS(3339), - [anon_sym_filter] = ACTIONS(3339), - [anon_sym_find] = ACTIONS(3339), - [anon_sym_remove] = ACTIONS(3339), - [anon_sym_reduce] = ACTIONS(3339), - [anon_sym_select] = ACTIONS(3339), - [anon_sym_insert] = ACTIONS(3339), - [anon_sym_async] = ACTIONS(3339), - [anon_sym_PIPE] = ACTIONS(3339), - [anon_sym_table] = ACTIONS(3339), - [anon_sym_assert] = ACTIONS(3339), - [anon_sym_assert_equal] = ACTIONS(3339), - [anon_sym_download] = ACTIONS(3339), - [anon_sym_help] = ACTIONS(3339), - [anon_sym_length] = ACTIONS(3339), - [anon_sym_output] = ACTIONS(3339), - [anon_sym_output_error] = ACTIONS(3339), - [anon_sym_type] = ACTIONS(3339), - [anon_sym_append] = ACTIONS(3339), - [anon_sym_metadata] = ACTIONS(3339), - [anon_sym_move] = ACTIONS(3339), - [anon_sym_read] = ACTIONS(3339), - [anon_sym_workdir] = ACTIONS(3339), - [anon_sym_write] = ACTIONS(3339), - [anon_sym_from_json] = ACTIONS(3339), - [anon_sym_to_json] = ACTIONS(3339), - [anon_sym_to_string] = ACTIONS(3339), - [anon_sym_to_float] = ACTIONS(3339), - [anon_sym_bash] = ACTIONS(3339), - [anon_sym_fish] = ACTIONS(3339), - [anon_sym_raw] = ACTIONS(3339), - [anon_sym_sh] = ACTIONS(3339), - [anon_sym_zsh] = ACTIONS(3339), - [anon_sym_random] = ACTIONS(3339), - [anon_sym_random_boolean] = ACTIONS(3339), - [anon_sym_random_float] = ACTIONS(3339), - [anon_sym_random_integer] = ACTIONS(3339), - [anon_sym_columns] = ACTIONS(3339), - [anon_sym_rows] = ACTIONS(3339), - [anon_sym_reverse] = ACTIONS(3339), - }, - [805] = { - [sym_else_if] = STATE(825), - [sym_else] = STATE(857), - [aux_sym_if_else_repeat1] = STATE(825), - [ts_builtin_sym_end] = ACTIONS(3229), - [sym_identifier] = ACTIONS(3231), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3229), - [anon_sym_RBRACE] = ACTIONS(3229), - [anon_sym_SEMI] = ACTIONS(3229), - [anon_sym_LPAREN] = ACTIONS(3229), - [anon_sym_RPAREN] = ACTIONS(3229), - [sym_integer] = ACTIONS(3231), - [sym_float] = ACTIONS(3229), - [sym_string] = ACTIONS(3229), - [anon_sym_true] = ACTIONS(3231), - [anon_sym_false] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3229), - [anon_sym_COLON] = ACTIONS(3229), - [anon_sym_PLUS] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_SLASH] = ACTIONS(3229), - [anon_sym_PERCENT] = ACTIONS(3229), - [anon_sym_EQ_EQ] = ACTIONS(3229), - [anon_sym_BANG_EQ] = ACTIONS(3229), - [anon_sym_AMP_AMP] = ACTIONS(3229), - [anon_sym_PIPE_PIPE] = ACTIONS(3229), - [anon_sym_GT] = ACTIONS(3231), - [anon_sym_LT] = ACTIONS(3231), - [anon_sym_GT_EQ] = ACTIONS(3229), - [anon_sym_LT_EQ] = ACTIONS(3229), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_elseif] = ACTIONS(3596), - [anon_sym_else] = ACTIONS(3614), - [anon_sym_match] = ACTIONS(3231), - [anon_sym_EQ_GT] = ACTIONS(3229), - [anon_sym_while] = ACTIONS(3231), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_asyncfor] = ACTIONS(3229), - [anon_sym_transform] = ACTIONS(3231), - [anon_sym_filter] = ACTIONS(3231), - [anon_sym_find] = ACTIONS(3231), - [anon_sym_remove] = ACTIONS(3231), - [anon_sym_reduce] = ACTIONS(3231), - [anon_sym_select] = ACTIONS(3231), - [anon_sym_insert] = ACTIONS(3231), - [anon_sym_async] = ACTIONS(3231), - [anon_sym_PIPE] = ACTIONS(3231), - [anon_sym_table] = ACTIONS(3231), - [anon_sym_assert] = ACTIONS(3231), - [anon_sym_assert_equal] = ACTIONS(3231), - [anon_sym_download] = ACTIONS(3231), - [anon_sym_help] = ACTIONS(3231), - [anon_sym_length] = ACTIONS(3231), - [anon_sym_output] = ACTIONS(3231), - [anon_sym_output_error] = ACTIONS(3231), - [anon_sym_type] = ACTIONS(3231), - [anon_sym_append] = ACTIONS(3231), - [anon_sym_metadata] = ACTIONS(3231), - [anon_sym_move] = ACTIONS(3231), - [anon_sym_read] = ACTIONS(3231), - [anon_sym_workdir] = ACTIONS(3231), - [anon_sym_write] = ACTIONS(3231), - [anon_sym_from_json] = ACTIONS(3231), - [anon_sym_to_json] = ACTIONS(3231), - [anon_sym_to_string] = ACTIONS(3231), - [anon_sym_to_float] = ACTIONS(3231), - [anon_sym_bash] = ACTIONS(3231), - [anon_sym_fish] = ACTIONS(3231), - [anon_sym_raw] = ACTIONS(3231), - [anon_sym_sh] = ACTIONS(3231), - [anon_sym_zsh] = ACTIONS(3231), - [anon_sym_random] = ACTIONS(3231), - [anon_sym_random_boolean] = ACTIONS(3231), - [anon_sym_random_float] = ACTIONS(3231), - [anon_sym_random_integer] = ACTIONS(3231), - [anon_sym_columns] = ACTIONS(3231), - [anon_sym_rows] = ACTIONS(3231), - [anon_sym_reverse] = ACTIONS(3231), - }, - [806] = { - [ts_builtin_sym_end] = ACTIONS(3341), - [sym_identifier] = ACTIONS(3343), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3341), - [anon_sym_RBRACE] = ACTIONS(3341), - [anon_sym_SEMI] = ACTIONS(3341), - [anon_sym_LPAREN] = ACTIONS(3341), - [anon_sym_RPAREN] = ACTIONS(3341), - [anon_sym_COMMA] = ACTIONS(3341), - [sym_integer] = ACTIONS(3343), - [sym_float] = ACTIONS(3341), - [sym_string] = ACTIONS(3341), - [anon_sym_true] = ACTIONS(3343), - [anon_sym_false] = ACTIONS(3343), - [anon_sym_LBRACK] = ACTIONS(3341), - [anon_sym_RBRACK] = ACTIONS(3341), - [anon_sym_COLON] = ACTIONS(3341), - [anon_sym_DOT_DOT] = ACTIONS(3341), - [anon_sym_PLUS] = ACTIONS(3341), - [anon_sym_DASH] = ACTIONS(3343), - [anon_sym_STAR] = ACTIONS(3341), - [anon_sym_SLASH] = ACTIONS(3341), - [anon_sym_PERCENT] = ACTIONS(3341), - [anon_sym_EQ_EQ] = ACTIONS(3341), - [anon_sym_BANG_EQ] = ACTIONS(3341), - [anon_sym_AMP_AMP] = ACTIONS(3341), - [anon_sym_PIPE_PIPE] = ACTIONS(3341), - [anon_sym_GT] = ACTIONS(3343), - [anon_sym_LT] = ACTIONS(3343), - [anon_sym_GT_EQ] = ACTIONS(3341), - [anon_sym_LT_EQ] = ACTIONS(3341), - [anon_sym_if] = ACTIONS(3343), - [anon_sym_elseif] = ACTIONS(3341), - [anon_sym_else] = ACTIONS(3343), - [anon_sym_match] = ACTIONS(3343), - [anon_sym_EQ_GT] = ACTIONS(3341), - [anon_sym_while] = ACTIONS(3343), - [anon_sym_for] = ACTIONS(3343), - [anon_sym_asyncfor] = ACTIONS(3341), - [anon_sym_transform] = ACTIONS(3343), - [anon_sym_filter] = ACTIONS(3343), - [anon_sym_find] = ACTIONS(3343), - [anon_sym_remove] = ACTIONS(3343), - [anon_sym_reduce] = ACTIONS(3343), - [anon_sym_select] = ACTIONS(3343), - [anon_sym_insert] = ACTIONS(3343), - [anon_sym_async] = ACTIONS(3343), - [anon_sym_PIPE] = ACTIONS(3343), - [anon_sym_table] = ACTIONS(3343), - [anon_sym_assert] = ACTIONS(3343), - [anon_sym_assert_equal] = ACTIONS(3343), - [anon_sym_download] = ACTIONS(3343), - [anon_sym_help] = ACTIONS(3343), - [anon_sym_length] = ACTIONS(3343), - [anon_sym_output] = ACTIONS(3343), - [anon_sym_output_error] = ACTIONS(3343), - [anon_sym_type] = ACTIONS(3343), - [anon_sym_append] = ACTIONS(3343), - [anon_sym_metadata] = ACTIONS(3343), - [anon_sym_move] = ACTIONS(3343), - [anon_sym_read] = ACTIONS(3343), - [anon_sym_workdir] = ACTIONS(3343), - [anon_sym_write] = ACTIONS(3343), - [anon_sym_from_json] = ACTIONS(3343), - [anon_sym_to_json] = ACTIONS(3343), - [anon_sym_to_string] = ACTIONS(3343), - [anon_sym_to_float] = ACTIONS(3343), - [anon_sym_bash] = ACTIONS(3343), - [anon_sym_fish] = ACTIONS(3343), - [anon_sym_raw] = ACTIONS(3343), - [anon_sym_sh] = ACTIONS(3343), - [anon_sym_zsh] = ACTIONS(3343), - [anon_sym_random] = ACTIONS(3343), - [anon_sym_random_boolean] = ACTIONS(3343), - [anon_sym_random_float] = ACTIONS(3343), - [anon_sym_random_integer] = ACTIONS(3343), - [anon_sym_columns] = ACTIONS(3343), - [anon_sym_rows] = ACTIONS(3343), - [anon_sym_reverse] = ACTIONS(3343), - }, - [807] = { - [ts_builtin_sym_end] = ACTIONS(3432), - [sym_identifier] = ACTIONS(3434), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3432), - [anon_sym_RBRACE] = ACTIONS(3432), - [anon_sym_SEMI] = ACTIONS(3432), - [anon_sym_LPAREN] = ACTIONS(3432), - [anon_sym_RPAREN] = ACTIONS(3432), - [anon_sym_COMMA] = ACTIONS(3432), - [sym_integer] = ACTIONS(3434), - [sym_float] = ACTIONS(3432), - [sym_string] = ACTIONS(3432), - [anon_sym_true] = ACTIONS(3434), - [anon_sym_false] = ACTIONS(3434), - [anon_sym_LBRACK] = ACTIONS(3432), - [anon_sym_RBRACK] = ACTIONS(3432), - [anon_sym_COLON] = ACTIONS(3432), - [anon_sym_DOT_DOT] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3432), - [anon_sym_DASH] = ACTIONS(3434), - [anon_sym_STAR] = ACTIONS(3432), - [anon_sym_SLASH] = ACTIONS(3432), - [anon_sym_PERCENT] = ACTIONS(3432), - [anon_sym_EQ_EQ] = ACTIONS(3432), - [anon_sym_BANG_EQ] = ACTIONS(3432), - [anon_sym_AMP_AMP] = ACTIONS(3432), - [anon_sym_PIPE_PIPE] = ACTIONS(3432), - [anon_sym_GT] = ACTIONS(3434), - [anon_sym_LT] = ACTIONS(3434), - [anon_sym_GT_EQ] = ACTIONS(3432), - [anon_sym_LT_EQ] = ACTIONS(3432), - [anon_sym_if] = ACTIONS(3434), - [anon_sym_elseif] = ACTIONS(3432), - [anon_sym_else] = ACTIONS(3434), - [anon_sym_match] = ACTIONS(3434), - [anon_sym_EQ_GT] = ACTIONS(3432), - [anon_sym_while] = ACTIONS(3434), - [anon_sym_for] = ACTIONS(3434), - [anon_sym_asyncfor] = ACTIONS(3432), - [anon_sym_transform] = ACTIONS(3434), - [anon_sym_filter] = ACTIONS(3434), - [anon_sym_find] = ACTIONS(3434), - [anon_sym_remove] = ACTIONS(3434), - [anon_sym_reduce] = ACTIONS(3434), - [anon_sym_select] = ACTIONS(3434), - [anon_sym_insert] = ACTIONS(3434), - [anon_sym_async] = ACTIONS(3434), - [anon_sym_PIPE] = ACTIONS(3434), - [anon_sym_table] = ACTIONS(3434), - [anon_sym_assert] = ACTIONS(3434), - [anon_sym_assert_equal] = ACTIONS(3434), - [anon_sym_download] = ACTIONS(3434), - [anon_sym_help] = ACTIONS(3434), - [anon_sym_length] = ACTIONS(3434), - [anon_sym_output] = ACTIONS(3434), - [anon_sym_output_error] = ACTIONS(3434), - [anon_sym_type] = ACTIONS(3434), - [anon_sym_append] = ACTIONS(3434), - [anon_sym_metadata] = ACTIONS(3434), - [anon_sym_move] = ACTIONS(3434), - [anon_sym_read] = ACTIONS(3434), - [anon_sym_workdir] = ACTIONS(3434), - [anon_sym_write] = ACTIONS(3434), - [anon_sym_from_json] = ACTIONS(3434), - [anon_sym_to_json] = ACTIONS(3434), - [anon_sym_to_string] = ACTIONS(3434), - [anon_sym_to_float] = ACTIONS(3434), - [anon_sym_bash] = ACTIONS(3434), - [anon_sym_fish] = ACTIONS(3434), - [anon_sym_raw] = ACTIONS(3434), - [anon_sym_sh] = ACTIONS(3434), - [anon_sym_zsh] = ACTIONS(3434), - [anon_sym_random] = ACTIONS(3434), - [anon_sym_random_boolean] = ACTIONS(3434), - [anon_sym_random_float] = ACTIONS(3434), - [anon_sym_random_integer] = ACTIONS(3434), - [anon_sym_columns] = ACTIONS(3434), - [anon_sym_rows] = ACTIONS(3434), - [anon_sym_reverse] = ACTIONS(3434), - }, - [808] = { - [ts_builtin_sym_end] = ACTIONS(3296), - [sym_identifier] = ACTIONS(3298), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3296), - [anon_sym_RPAREN] = ACTIONS(3296), - [anon_sym_COMMA] = ACTIONS(3296), - [sym_integer] = ACTIONS(3298), - [sym_float] = ACTIONS(3296), - [sym_string] = ACTIONS(3296), - [anon_sym_true] = ACTIONS(3298), - [anon_sym_false] = ACTIONS(3298), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_RBRACK] = ACTIONS(3296), - [anon_sym_COLON] = ACTIONS(3296), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3296), - [anon_sym_DASH] = ACTIONS(3298), - [anon_sym_STAR] = ACTIONS(3296), - [anon_sym_SLASH] = ACTIONS(3296), - [anon_sym_PERCENT] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_GT] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3298), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_if] = ACTIONS(3298), - [anon_sym_elseif] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3298), - [anon_sym_match] = ACTIONS(3298), - [anon_sym_EQ_GT] = ACTIONS(3296), - [anon_sym_while] = ACTIONS(3298), - [anon_sym_for] = ACTIONS(3298), - [anon_sym_asyncfor] = ACTIONS(3296), - [anon_sym_transform] = ACTIONS(3298), - [anon_sym_filter] = ACTIONS(3298), - [anon_sym_find] = ACTIONS(3298), - [anon_sym_remove] = ACTIONS(3298), - [anon_sym_reduce] = ACTIONS(3298), - [anon_sym_select] = ACTIONS(3298), - [anon_sym_insert] = ACTIONS(3298), - [anon_sym_async] = ACTIONS(3298), - [anon_sym_PIPE] = ACTIONS(3298), - [anon_sym_table] = ACTIONS(3298), - [anon_sym_assert] = ACTIONS(3298), - [anon_sym_assert_equal] = ACTIONS(3298), - [anon_sym_download] = ACTIONS(3298), - [anon_sym_help] = ACTIONS(3298), - [anon_sym_length] = ACTIONS(3298), - [anon_sym_output] = ACTIONS(3298), - [anon_sym_output_error] = ACTIONS(3298), - [anon_sym_type] = ACTIONS(3298), - [anon_sym_append] = ACTIONS(3298), - [anon_sym_metadata] = ACTIONS(3298), - [anon_sym_move] = ACTIONS(3298), - [anon_sym_read] = ACTIONS(3298), - [anon_sym_workdir] = ACTIONS(3298), - [anon_sym_write] = ACTIONS(3298), - [anon_sym_from_json] = ACTIONS(3298), - [anon_sym_to_json] = ACTIONS(3298), - [anon_sym_to_string] = ACTIONS(3298), - [anon_sym_to_float] = ACTIONS(3298), - [anon_sym_bash] = ACTIONS(3298), - [anon_sym_fish] = ACTIONS(3298), - [anon_sym_raw] = ACTIONS(3298), - [anon_sym_sh] = ACTIONS(3298), - [anon_sym_zsh] = ACTIONS(3298), - [anon_sym_random] = ACTIONS(3298), - [anon_sym_random_boolean] = ACTIONS(3298), - [anon_sym_random_float] = ACTIONS(3298), - [anon_sym_random_integer] = ACTIONS(3298), - [anon_sym_columns] = ACTIONS(3298), - [anon_sym_rows] = ACTIONS(3298), - [anon_sym_reverse] = ACTIONS(3298), - }, - [809] = { - [ts_builtin_sym_end] = ACTIONS(3367), - [sym_identifier] = ACTIONS(3369), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3367), - [anon_sym_RBRACE] = ACTIONS(3367), - [anon_sym_SEMI] = ACTIONS(3367), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_RPAREN] = ACTIONS(3367), - [anon_sym_COMMA] = ACTIONS(3367), - [sym_integer] = ACTIONS(3369), - [sym_float] = ACTIONS(3367), - [sym_string] = ACTIONS(3367), - [anon_sym_true] = ACTIONS(3369), - [anon_sym_false] = ACTIONS(3369), - [anon_sym_LBRACK] = ACTIONS(3367), - [anon_sym_RBRACK] = ACTIONS(3367), - [anon_sym_COLON] = ACTIONS(3367), - [anon_sym_DOT_DOT] = ACTIONS(3367), - [anon_sym_PLUS] = ACTIONS(3367), - [anon_sym_DASH] = ACTIONS(3369), - [anon_sym_STAR] = ACTIONS(3367), - [anon_sym_SLASH] = ACTIONS(3367), - [anon_sym_PERCENT] = ACTIONS(3367), - [anon_sym_EQ_EQ] = ACTIONS(3367), - [anon_sym_BANG_EQ] = ACTIONS(3367), - [anon_sym_AMP_AMP] = ACTIONS(3367), - [anon_sym_PIPE_PIPE] = ACTIONS(3367), - [anon_sym_GT] = ACTIONS(3369), - [anon_sym_LT] = ACTIONS(3369), - [anon_sym_GT_EQ] = ACTIONS(3367), - [anon_sym_LT_EQ] = ACTIONS(3367), - [anon_sym_if] = ACTIONS(3369), - [anon_sym_elseif] = ACTIONS(3367), - [anon_sym_else] = ACTIONS(3369), - [anon_sym_match] = ACTIONS(3369), - [anon_sym_EQ_GT] = ACTIONS(3367), - [anon_sym_while] = ACTIONS(3369), - [anon_sym_for] = ACTIONS(3369), - [anon_sym_asyncfor] = ACTIONS(3367), - [anon_sym_transform] = ACTIONS(3369), - [anon_sym_filter] = ACTIONS(3369), - [anon_sym_find] = ACTIONS(3369), - [anon_sym_remove] = ACTIONS(3369), - [anon_sym_reduce] = ACTIONS(3369), - [anon_sym_select] = ACTIONS(3369), - [anon_sym_insert] = ACTIONS(3369), - [anon_sym_async] = ACTIONS(3369), - [anon_sym_PIPE] = ACTIONS(3369), - [anon_sym_table] = ACTIONS(3369), - [anon_sym_assert] = ACTIONS(3369), - [anon_sym_assert_equal] = ACTIONS(3369), - [anon_sym_download] = ACTIONS(3369), - [anon_sym_help] = ACTIONS(3369), - [anon_sym_length] = ACTIONS(3369), - [anon_sym_output] = ACTIONS(3369), - [anon_sym_output_error] = ACTIONS(3369), - [anon_sym_type] = ACTIONS(3369), - [anon_sym_append] = ACTIONS(3369), - [anon_sym_metadata] = ACTIONS(3369), - [anon_sym_move] = ACTIONS(3369), - [anon_sym_read] = ACTIONS(3369), - [anon_sym_workdir] = ACTIONS(3369), - [anon_sym_write] = ACTIONS(3369), - [anon_sym_from_json] = ACTIONS(3369), - [anon_sym_to_json] = ACTIONS(3369), - [anon_sym_to_string] = ACTIONS(3369), - [anon_sym_to_float] = ACTIONS(3369), - [anon_sym_bash] = ACTIONS(3369), - [anon_sym_fish] = ACTIONS(3369), - [anon_sym_raw] = ACTIONS(3369), - [anon_sym_sh] = ACTIONS(3369), - [anon_sym_zsh] = ACTIONS(3369), - [anon_sym_random] = ACTIONS(3369), - [anon_sym_random_boolean] = ACTIONS(3369), - [anon_sym_random_float] = ACTIONS(3369), - [anon_sym_random_integer] = ACTIONS(3369), - [anon_sym_columns] = ACTIONS(3369), - [anon_sym_rows] = ACTIONS(3369), - [anon_sym_reverse] = ACTIONS(3369), - }, - [810] = { - [ts_builtin_sym_end] = ACTIONS(3379), - [sym_identifier] = ACTIONS(3381), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3379), - [anon_sym_RBRACE] = ACTIONS(3379), - [anon_sym_SEMI] = ACTIONS(3379), - [anon_sym_LPAREN] = ACTIONS(3379), - [anon_sym_RPAREN] = ACTIONS(3379), - [anon_sym_COMMA] = ACTIONS(3379), - [sym_integer] = ACTIONS(3381), - [sym_float] = ACTIONS(3379), - [sym_string] = ACTIONS(3379), - [anon_sym_true] = ACTIONS(3381), - [anon_sym_false] = ACTIONS(3381), - [anon_sym_LBRACK] = ACTIONS(3379), - [anon_sym_RBRACK] = ACTIONS(3379), - [anon_sym_COLON] = ACTIONS(3379), - [anon_sym_DOT_DOT] = ACTIONS(3379), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3381), - [anon_sym_STAR] = ACTIONS(3379), - [anon_sym_SLASH] = ACTIONS(3379), - [anon_sym_PERCENT] = ACTIONS(3379), - [anon_sym_EQ_EQ] = ACTIONS(3379), - [anon_sym_BANG_EQ] = ACTIONS(3379), - [anon_sym_AMP_AMP] = ACTIONS(3379), - [anon_sym_PIPE_PIPE] = ACTIONS(3379), - [anon_sym_GT] = ACTIONS(3381), - [anon_sym_LT] = ACTIONS(3381), - [anon_sym_GT_EQ] = ACTIONS(3379), - [anon_sym_LT_EQ] = ACTIONS(3379), - [anon_sym_if] = ACTIONS(3381), - [anon_sym_elseif] = ACTIONS(3379), - [anon_sym_else] = ACTIONS(3381), - [anon_sym_match] = ACTIONS(3381), - [anon_sym_EQ_GT] = ACTIONS(3379), - [anon_sym_while] = ACTIONS(3381), - [anon_sym_for] = ACTIONS(3381), - [anon_sym_asyncfor] = ACTIONS(3379), - [anon_sym_transform] = ACTIONS(3381), - [anon_sym_filter] = ACTIONS(3381), - [anon_sym_find] = ACTIONS(3381), - [anon_sym_remove] = ACTIONS(3381), - [anon_sym_reduce] = ACTIONS(3381), - [anon_sym_select] = ACTIONS(3381), - [anon_sym_insert] = ACTIONS(3381), - [anon_sym_async] = ACTIONS(3381), - [anon_sym_PIPE] = ACTIONS(3381), - [anon_sym_table] = ACTIONS(3381), - [anon_sym_assert] = ACTIONS(3381), - [anon_sym_assert_equal] = ACTIONS(3381), - [anon_sym_download] = ACTIONS(3381), - [anon_sym_help] = ACTIONS(3381), - [anon_sym_length] = ACTIONS(3381), - [anon_sym_output] = ACTIONS(3381), - [anon_sym_output_error] = ACTIONS(3381), - [anon_sym_type] = ACTIONS(3381), - [anon_sym_append] = ACTIONS(3381), - [anon_sym_metadata] = ACTIONS(3381), - [anon_sym_move] = ACTIONS(3381), - [anon_sym_read] = ACTIONS(3381), - [anon_sym_workdir] = ACTIONS(3381), - [anon_sym_write] = ACTIONS(3381), - [anon_sym_from_json] = ACTIONS(3381), - [anon_sym_to_json] = ACTIONS(3381), - [anon_sym_to_string] = ACTIONS(3381), - [anon_sym_to_float] = ACTIONS(3381), - [anon_sym_bash] = ACTIONS(3381), - [anon_sym_fish] = ACTIONS(3381), - [anon_sym_raw] = ACTIONS(3381), - [anon_sym_sh] = ACTIONS(3381), - [anon_sym_zsh] = ACTIONS(3381), - [anon_sym_random] = ACTIONS(3381), - [anon_sym_random_boolean] = ACTIONS(3381), - [anon_sym_random_float] = ACTIONS(3381), - [anon_sym_random_integer] = ACTIONS(3381), - [anon_sym_columns] = ACTIONS(3381), - [anon_sym_rows] = ACTIONS(3381), - [anon_sym_reverse] = ACTIONS(3381), - }, - [811] = { - [ts_builtin_sym_end] = ACTIONS(3393), - [sym_identifier] = ACTIONS(3395), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_RBRACE] = ACTIONS(3393), - [anon_sym_SEMI] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_RPAREN] = ACTIONS(3393), - [anon_sym_COMMA] = ACTIONS(3393), - [sym_integer] = ACTIONS(3395), - [sym_float] = ACTIONS(3393), - [sym_string] = ACTIONS(3393), - [anon_sym_true] = ACTIONS(3395), - [anon_sym_false] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_RBRACK] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3393), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3393), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3393), - [anon_sym_SLASH] = ACTIONS(3393), - [anon_sym_PERCENT] = ACTIONS(3393), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_if] = ACTIONS(3395), - [anon_sym_elseif] = ACTIONS(3393), - [anon_sym_else] = ACTIONS(3395), - [anon_sym_match] = ACTIONS(3395), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_while] = ACTIONS(3395), - [anon_sym_for] = ACTIONS(3395), - [anon_sym_asyncfor] = ACTIONS(3393), - [anon_sym_transform] = ACTIONS(3395), - [anon_sym_filter] = ACTIONS(3395), - [anon_sym_find] = ACTIONS(3395), - [anon_sym_remove] = ACTIONS(3395), - [anon_sym_reduce] = ACTIONS(3395), - [anon_sym_select] = ACTIONS(3395), - [anon_sym_insert] = ACTIONS(3395), - [anon_sym_async] = ACTIONS(3395), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_table] = ACTIONS(3395), - [anon_sym_assert] = ACTIONS(3395), - [anon_sym_assert_equal] = ACTIONS(3395), - [anon_sym_download] = ACTIONS(3395), - [anon_sym_help] = ACTIONS(3395), - [anon_sym_length] = ACTIONS(3395), - [anon_sym_output] = ACTIONS(3395), - [anon_sym_output_error] = ACTIONS(3395), - [anon_sym_type] = ACTIONS(3395), - [anon_sym_append] = ACTIONS(3395), - [anon_sym_metadata] = ACTIONS(3395), - [anon_sym_move] = ACTIONS(3395), - [anon_sym_read] = ACTIONS(3395), - [anon_sym_workdir] = ACTIONS(3395), - [anon_sym_write] = ACTIONS(3395), - [anon_sym_from_json] = ACTIONS(3395), - [anon_sym_to_json] = ACTIONS(3395), - [anon_sym_to_string] = ACTIONS(3395), - [anon_sym_to_float] = ACTIONS(3395), - [anon_sym_bash] = ACTIONS(3395), - [anon_sym_fish] = ACTIONS(3395), - [anon_sym_raw] = ACTIONS(3395), - [anon_sym_sh] = ACTIONS(3395), - [anon_sym_zsh] = ACTIONS(3395), - [anon_sym_random] = ACTIONS(3395), - [anon_sym_random_boolean] = ACTIONS(3395), - [anon_sym_random_float] = ACTIONS(3395), - [anon_sym_random_integer] = ACTIONS(3395), - [anon_sym_columns] = ACTIONS(3395), - [anon_sym_rows] = ACTIONS(3395), - [anon_sym_reverse] = ACTIONS(3395), - }, - [812] = { - [ts_builtin_sym_end] = ACTIONS(3415), - [sym_identifier] = ACTIONS(3417), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3415), - [anon_sym_RBRACE] = ACTIONS(3415), - [anon_sym_SEMI] = ACTIONS(3415), - [anon_sym_LPAREN] = ACTIONS(3415), - [anon_sym_RPAREN] = ACTIONS(3415), - [anon_sym_COMMA] = ACTIONS(3415), - [sym_integer] = ACTIONS(3417), - [sym_float] = ACTIONS(3415), - [sym_string] = ACTIONS(3415), - [anon_sym_true] = ACTIONS(3417), - [anon_sym_false] = ACTIONS(3417), - [anon_sym_LBRACK] = ACTIONS(3415), - [anon_sym_RBRACK] = ACTIONS(3415), - [anon_sym_COLON] = ACTIONS(3415), - [anon_sym_DOT_DOT] = ACTIONS(3415), - [anon_sym_PLUS] = ACTIONS(3415), - [anon_sym_DASH] = ACTIONS(3417), - [anon_sym_STAR] = ACTIONS(3415), - [anon_sym_SLASH] = ACTIONS(3415), - [anon_sym_PERCENT] = ACTIONS(3415), - [anon_sym_EQ_EQ] = ACTIONS(3415), - [anon_sym_BANG_EQ] = ACTIONS(3415), - [anon_sym_AMP_AMP] = ACTIONS(3415), - [anon_sym_PIPE_PIPE] = ACTIONS(3415), - [anon_sym_GT] = ACTIONS(3417), - [anon_sym_LT] = ACTIONS(3417), - [anon_sym_GT_EQ] = ACTIONS(3415), - [anon_sym_LT_EQ] = ACTIONS(3415), - [anon_sym_if] = ACTIONS(3417), - [anon_sym_elseif] = ACTIONS(3415), - [anon_sym_else] = ACTIONS(3417), - [anon_sym_match] = ACTIONS(3417), - [anon_sym_EQ_GT] = ACTIONS(3415), - [anon_sym_while] = ACTIONS(3417), - [anon_sym_for] = ACTIONS(3417), - [anon_sym_asyncfor] = ACTIONS(3415), - [anon_sym_transform] = ACTIONS(3417), - [anon_sym_filter] = ACTIONS(3417), - [anon_sym_find] = ACTIONS(3417), - [anon_sym_remove] = ACTIONS(3417), - [anon_sym_reduce] = ACTIONS(3417), - [anon_sym_select] = ACTIONS(3417), - [anon_sym_insert] = ACTIONS(3417), - [anon_sym_async] = ACTIONS(3417), - [anon_sym_PIPE] = ACTIONS(3417), - [anon_sym_table] = ACTIONS(3417), - [anon_sym_assert] = ACTIONS(3417), - [anon_sym_assert_equal] = ACTIONS(3417), - [anon_sym_download] = ACTIONS(3417), - [anon_sym_help] = ACTIONS(3417), - [anon_sym_length] = ACTIONS(3417), - [anon_sym_output] = ACTIONS(3417), - [anon_sym_output_error] = ACTIONS(3417), - [anon_sym_type] = ACTIONS(3417), - [anon_sym_append] = ACTIONS(3417), - [anon_sym_metadata] = ACTIONS(3417), - [anon_sym_move] = ACTIONS(3417), - [anon_sym_read] = ACTIONS(3417), - [anon_sym_workdir] = ACTIONS(3417), - [anon_sym_write] = ACTIONS(3417), - [anon_sym_from_json] = ACTIONS(3417), - [anon_sym_to_json] = ACTIONS(3417), - [anon_sym_to_string] = ACTIONS(3417), - [anon_sym_to_float] = ACTIONS(3417), - [anon_sym_bash] = ACTIONS(3417), - [anon_sym_fish] = ACTIONS(3417), - [anon_sym_raw] = ACTIONS(3417), - [anon_sym_sh] = ACTIONS(3417), - [anon_sym_zsh] = ACTIONS(3417), - [anon_sym_random] = ACTIONS(3417), - [anon_sym_random_boolean] = ACTIONS(3417), - [anon_sym_random_float] = ACTIONS(3417), - [anon_sym_random_integer] = ACTIONS(3417), - [anon_sym_columns] = ACTIONS(3417), - [anon_sym_rows] = ACTIONS(3417), - [anon_sym_reverse] = ACTIONS(3417), - }, - [813] = { - [ts_builtin_sym_end] = ACTIONS(3419), - [sym_identifier] = ACTIONS(3421), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3419), - [anon_sym_RBRACE] = ACTIONS(3419), - [anon_sym_SEMI] = ACTIONS(3419), - [anon_sym_LPAREN] = ACTIONS(3419), - [anon_sym_RPAREN] = ACTIONS(3419), - [anon_sym_COMMA] = ACTIONS(3419), - [sym_integer] = ACTIONS(3421), - [sym_float] = ACTIONS(3419), - [sym_string] = ACTIONS(3419), - [anon_sym_true] = ACTIONS(3421), - [anon_sym_false] = ACTIONS(3421), - [anon_sym_LBRACK] = ACTIONS(3419), - [anon_sym_RBRACK] = ACTIONS(3419), - [anon_sym_COLON] = ACTIONS(3419), - [anon_sym_DOT_DOT] = ACTIONS(3419), - [anon_sym_PLUS] = ACTIONS(3419), - [anon_sym_DASH] = ACTIONS(3421), - [anon_sym_STAR] = ACTIONS(3419), - [anon_sym_SLASH] = ACTIONS(3419), - [anon_sym_PERCENT] = ACTIONS(3419), - [anon_sym_EQ_EQ] = ACTIONS(3419), - [anon_sym_BANG_EQ] = ACTIONS(3419), - [anon_sym_AMP_AMP] = ACTIONS(3419), - [anon_sym_PIPE_PIPE] = ACTIONS(3419), - [anon_sym_GT] = ACTIONS(3421), - [anon_sym_LT] = ACTIONS(3421), - [anon_sym_GT_EQ] = ACTIONS(3419), - [anon_sym_LT_EQ] = ACTIONS(3419), - [anon_sym_if] = ACTIONS(3421), - [anon_sym_elseif] = ACTIONS(3419), - [anon_sym_else] = ACTIONS(3421), - [anon_sym_match] = ACTIONS(3421), - [anon_sym_EQ_GT] = ACTIONS(3419), - [anon_sym_while] = ACTIONS(3421), - [anon_sym_for] = ACTIONS(3421), - [anon_sym_asyncfor] = ACTIONS(3419), - [anon_sym_transform] = ACTIONS(3421), - [anon_sym_filter] = ACTIONS(3421), - [anon_sym_find] = ACTIONS(3421), - [anon_sym_remove] = ACTIONS(3421), - [anon_sym_reduce] = ACTIONS(3421), - [anon_sym_select] = ACTIONS(3421), - [anon_sym_insert] = ACTIONS(3421), - [anon_sym_async] = ACTIONS(3421), - [anon_sym_PIPE] = ACTIONS(3421), - [anon_sym_table] = ACTIONS(3421), - [anon_sym_assert] = ACTIONS(3421), - [anon_sym_assert_equal] = ACTIONS(3421), - [anon_sym_download] = ACTIONS(3421), - [anon_sym_help] = ACTIONS(3421), - [anon_sym_length] = ACTIONS(3421), - [anon_sym_output] = ACTIONS(3421), - [anon_sym_output_error] = ACTIONS(3421), - [anon_sym_type] = ACTIONS(3421), - [anon_sym_append] = ACTIONS(3421), - [anon_sym_metadata] = ACTIONS(3421), - [anon_sym_move] = ACTIONS(3421), - [anon_sym_read] = ACTIONS(3421), - [anon_sym_workdir] = ACTIONS(3421), - [anon_sym_write] = ACTIONS(3421), - [anon_sym_from_json] = ACTIONS(3421), - [anon_sym_to_json] = ACTIONS(3421), - [anon_sym_to_string] = ACTIONS(3421), - [anon_sym_to_float] = ACTIONS(3421), - [anon_sym_bash] = ACTIONS(3421), - [anon_sym_fish] = ACTIONS(3421), - [anon_sym_raw] = ACTIONS(3421), - [anon_sym_sh] = ACTIONS(3421), - [anon_sym_zsh] = ACTIONS(3421), - [anon_sym_random] = ACTIONS(3421), - [anon_sym_random_boolean] = ACTIONS(3421), - [anon_sym_random_float] = ACTIONS(3421), - [anon_sym_random_integer] = ACTIONS(3421), - [anon_sym_columns] = ACTIONS(3421), - [anon_sym_rows] = ACTIONS(3421), - [anon_sym_reverse] = ACTIONS(3421), - }, - [814] = { - [sym_math_operator] = STATE(1270), - [sym_logic_operator] = STATE(1260), - [ts_builtin_sym_end] = ACTIONS(3281), - [sym_identifier] = ACTIONS(3283), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3281), - [anon_sym_RBRACE] = ACTIONS(3281), - [anon_sym_SEMI] = ACTIONS(3281), - [anon_sym_LPAREN] = ACTIONS(3281), - [anon_sym_RPAREN] = ACTIONS(3281), - [sym_integer] = ACTIONS(3283), - [sym_float] = ACTIONS(3281), - [sym_string] = ACTIONS(3281), - [anon_sym_true] = ACTIONS(3283), - [anon_sym_false] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3281), - [anon_sym_EQ] = ACTIONS(3283), - [anon_sym_COLON] = ACTIONS(911), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_PLUS_EQ] = ACTIONS(3281), - [anon_sym_DASH_EQ] = ACTIONS(3281), - [anon_sym_if] = ACTIONS(3283), - [anon_sym_match] = ACTIONS(3283), - [anon_sym_EQ_GT] = ACTIONS(3281), - [anon_sym_while] = ACTIONS(3283), - [anon_sym_for] = ACTIONS(3283), - [anon_sym_asyncfor] = ACTIONS(3281), - [anon_sym_transform] = ACTIONS(3283), - [anon_sym_filter] = ACTIONS(3283), - [anon_sym_find] = ACTIONS(3283), - [anon_sym_remove] = ACTIONS(3283), - [anon_sym_reduce] = ACTIONS(3283), - [anon_sym_select] = ACTIONS(3283), - [anon_sym_insert] = ACTIONS(3283), - [anon_sym_async] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(3283), - [anon_sym_table] = ACTIONS(3283), - [anon_sym_assert] = ACTIONS(3283), - [anon_sym_assert_equal] = ACTIONS(3283), - [anon_sym_download] = ACTIONS(3283), - [anon_sym_help] = ACTIONS(3283), - [anon_sym_length] = ACTIONS(3283), - [anon_sym_output] = ACTIONS(3283), - [anon_sym_output_error] = ACTIONS(3283), - [anon_sym_type] = ACTIONS(3283), - [anon_sym_append] = ACTIONS(3283), - [anon_sym_metadata] = ACTIONS(3283), - [anon_sym_move] = ACTIONS(3283), - [anon_sym_read] = ACTIONS(3283), - [anon_sym_workdir] = ACTIONS(3283), - [anon_sym_write] = ACTIONS(3283), - [anon_sym_from_json] = ACTIONS(3283), - [anon_sym_to_json] = ACTIONS(3283), - [anon_sym_to_string] = ACTIONS(3283), - [anon_sym_to_float] = ACTIONS(3283), - [anon_sym_bash] = ACTIONS(3283), - [anon_sym_fish] = ACTIONS(3283), - [anon_sym_raw] = ACTIONS(3283), - [anon_sym_sh] = ACTIONS(3283), - [anon_sym_zsh] = ACTIONS(3283), - [anon_sym_random] = ACTIONS(3283), - [anon_sym_random_boolean] = ACTIONS(3283), - [anon_sym_random_float] = ACTIONS(3283), - [anon_sym_random_integer] = ACTIONS(3283), - [anon_sym_columns] = ACTIONS(3283), - [anon_sym_rows] = ACTIONS(3283), - [anon_sym_reverse] = ACTIONS(3283), - }, - [815] = { - [sym_math_operator] = STATE(1242), - [sym_logic_operator] = STATE(1243), - [ts_builtin_sym_end] = ACTIONS(3281), - [sym_identifier] = ACTIONS(3283), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3281), - [anon_sym_RBRACE] = ACTIONS(3281), - [anon_sym_SEMI] = ACTIONS(3281), - [anon_sym_LPAREN] = ACTIONS(3281), - [anon_sym_RPAREN] = ACTIONS(3281), - [sym_integer] = ACTIONS(3283), - [sym_float] = ACTIONS(3281), - [sym_string] = ACTIONS(3281), - [anon_sym_true] = ACTIONS(3283), - [anon_sym_false] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3281), - [anon_sym_COLON] = ACTIONS(841), - [anon_sym_DOT_DOT] = ACTIONS(3281), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(3283), - [anon_sym_elseif] = ACTIONS(3281), - [anon_sym_else] = ACTIONS(3283), - [anon_sym_match] = ACTIONS(3283), - [anon_sym_EQ_GT] = ACTIONS(3281), - [anon_sym_while] = ACTIONS(3283), - [anon_sym_for] = ACTIONS(3283), - [anon_sym_asyncfor] = ACTIONS(3281), - [anon_sym_transform] = ACTIONS(3283), - [anon_sym_filter] = ACTIONS(3283), - [anon_sym_find] = ACTIONS(3283), - [anon_sym_remove] = ACTIONS(3283), - [anon_sym_reduce] = ACTIONS(3283), - [anon_sym_select] = ACTIONS(3283), - [anon_sym_insert] = ACTIONS(3283), - [anon_sym_async] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(3283), - [anon_sym_table] = ACTIONS(3283), - [anon_sym_assert] = ACTIONS(3283), - [anon_sym_assert_equal] = ACTIONS(3283), - [anon_sym_download] = ACTIONS(3283), - [anon_sym_help] = ACTIONS(3283), - [anon_sym_length] = ACTIONS(3283), - [anon_sym_output] = ACTIONS(3283), - [anon_sym_output_error] = ACTIONS(3283), - [anon_sym_type] = ACTIONS(3283), - [anon_sym_append] = ACTIONS(3283), - [anon_sym_metadata] = ACTIONS(3283), - [anon_sym_move] = ACTIONS(3283), - [anon_sym_read] = ACTIONS(3283), - [anon_sym_workdir] = ACTIONS(3283), - [anon_sym_write] = ACTIONS(3283), - [anon_sym_from_json] = ACTIONS(3283), - [anon_sym_to_json] = ACTIONS(3283), - [anon_sym_to_string] = ACTIONS(3283), - [anon_sym_to_float] = ACTIONS(3283), - [anon_sym_bash] = ACTIONS(3283), - [anon_sym_fish] = ACTIONS(3283), - [anon_sym_raw] = ACTIONS(3283), - [anon_sym_sh] = ACTIONS(3283), - [anon_sym_zsh] = ACTIONS(3283), - [anon_sym_random] = ACTIONS(3283), - [anon_sym_random_boolean] = ACTIONS(3283), - [anon_sym_random_float] = ACTIONS(3283), - [anon_sym_random_integer] = ACTIONS(3283), - [anon_sym_columns] = ACTIONS(3283), - [anon_sym_rows] = ACTIONS(3283), - [anon_sym_reverse] = ACTIONS(3283), - }, - [816] = { - [ts_builtin_sym_end] = ACTIONS(3307), - [sym_identifier] = ACTIONS(3309), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3307), - [anon_sym_RBRACE] = ACTIONS(3307), - [anon_sym_SEMI] = ACTIONS(3307), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_RPAREN] = ACTIONS(3307), - [anon_sym_COMMA] = ACTIONS(3307), - [sym_integer] = ACTIONS(3309), - [sym_float] = ACTIONS(3307), - [sym_string] = ACTIONS(3307), - [anon_sym_true] = ACTIONS(3309), - [anon_sym_false] = ACTIONS(3309), - [anon_sym_LBRACK] = ACTIONS(3307), - [anon_sym_RBRACK] = ACTIONS(3307), - [anon_sym_COLON] = ACTIONS(3307), - [anon_sym_DOT_DOT] = ACTIONS(3307), - [anon_sym_PLUS] = ACTIONS(3307), - [anon_sym_DASH] = ACTIONS(3309), - [anon_sym_STAR] = ACTIONS(3307), - [anon_sym_SLASH] = ACTIONS(3307), - [anon_sym_PERCENT] = ACTIONS(3307), - [anon_sym_EQ_EQ] = ACTIONS(3307), - [anon_sym_BANG_EQ] = ACTIONS(3307), - [anon_sym_AMP_AMP] = ACTIONS(3307), - [anon_sym_PIPE_PIPE] = ACTIONS(3307), - [anon_sym_GT] = ACTIONS(3309), - [anon_sym_LT] = ACTIONS(3309), - [anon_sym_GT_EQ] = ACTIONS(3307), - [anon_sym_LT_EQ] = ACTIONS(3307), - [anon_sym_if] = ACTIONS(3309), - [anon_sym_elseif] = ACTIONS(3307), - [anon_sym_else] = ACTIONS(3309), - [anon_sym_match] = ACTIONS(3309), - [anon_sym_EQ_GT] = ACTIONS(3307), - [anon_sym_while] = ACTIONS(3309), - [anon_sym_for] = ACTIONS(3309), - [anon_sym_asyncfor] = ACTIONS(3307), - [anon_sym_transform] = ACTIONS(3309), - [anon_sym_filter] = ACTIONS(3309), - [anon_sym_find] = ACTIONS(3309), - [anon_sym_remove] = ACTIONS(3309), - [anon_sym_reduce] = ACTIONS(3309), - [anon_sym_select] = ACTIONS(3309), - [anon_sym_insert] = ACTIONS(3309), - [anon_sym_async] = ACTIONS(3309), - [anon_sym_PIPE] = ACTIONS(3309), - [anon_sym_table] = ACTIONS(3309), - [anon_sym_assert] = ACTIONS(3309), - [anon_sym_assert_equal] = ACTIONS(3309), - [anon_sym_download] = ACTIONS(3309), - [anon_sym_help] = ACTIONS(3309), - [anon_sym_length] = ACTIONS(3309), - [anon_sym_output] = ACTIONS(3309), - [anon_sym_output_error] = ACTIONS(3309), - [anon_sym_type] = ACTIONS(3309), - [anon_sym_append] = ACTIONS(3309), - [anon_sym_metadata] = ACTIONS(3309), - [anon_sym_move] = ACTIONS(3309), - [anon_sym_read] = ACTIONS(3309), - [anon_sym_workdir] = ACTIONS(3309), - [anon_sym_write] = ACTIONS(3309), - [anon_sym_from_json] = ACTIONS(3309), - [anon_sym_to_json] = ACTIONS(3309), - [anon_sym_to_string] = ACTIONS(3309), - [anon_sym_to_float] = ACTIONS(3309), - [anon_sym_bash] = ACTIONS(3309), - [anon_sym_fish] = ACTIONS(3309), - [anon_sym_raw] = ACTIONS(3309), - [anon_sym_sh] = ACTIONS(3309), - [anon_sym_zsh] = ACTIONS(3309), - [anon_sym_random] = ACTIONS(3309), - [anon_sym_random_boolean] = ACTIONS(3309), - [anon_sym_random_float] = ACTIONS(3309), - [anon_sym_random_integer] = ACTIONS(3309), - [anon_sym_columns] = ACTIONS(3309), - [anon_sym_rows] = ACTIONS(3309), - [anon_sym_reverse] = ACTIONS(3309), - }, - [817] = { - [sym_math_operator] = STATE(1472), - [sym_logic_operator] = STATE(1480), - [ts_builtin_sym_end] = ACTIONS(3275), - [sym_identifier] = ACTIONS(3277), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3275), - [anon_sym_RBRACE] = ACTIONS(3275), - [anon_sym_SEMI] = ACTIONS(3521), - [anon_sym_LPAREN] = ACTIONS(3275), - [anon_sym_RPAREN] = ACTIONS(3275), - [sym_integer] = ACTIONS(3277), - [sym_float] = ACTIONS(3275), - [sym_string] = ACTIONS(3275), - [anon_sym_true] = ACTIONS(3277), - [anon_sym_false] = ACTIONS(3277), - [anon_sym_LBRACK] = ACTIONS(3275), - [anon_sym_COLON] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(3277), - [anon_sym_elseif] = ACTIONS(3275), - [anon_sym_else] = ACTIONS(3277), - [anon_sym_match] = ACTIONS(3277), - [anon_sym_EQ_GT] = ACTIONS(3275), - [anon_sym_while] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3277), - [anon_sym_asyncfor] = ACTIONS(3275), - [anon_sym_transform] = ACTIONS(3277), - [anon_sym_filter] = ACTIONS(3277), - [anon_sym_find] = ACTIONS(3277), - [anon_sym_remove] = ACTIONS(3277), - [anon_sym_reduce] = ACTIONS(3277), - [anon_sym_select] = ACTIONS(3277), - [anon_sym_insert] = ACTIONS(3277), - [anon_sym_async] = ACTIONS(3277), - [anon_sym_PIPE] = ACTIONS(3277), - [anon_sym_table] = ACTIONS(3277), - [anon_sym_assert] = ACTIONS(3277), - [anon_sym_assert_equal] = ACTIONS(3277), - [anon_sym_download] = ACTIONS(3277), - [anon_sym_help] = ACTIONS(3277), - [anon_sym_length] = ACTIONS(3277), - [anon_sym_output] = ACTIONS(3277), - [anon_sym_output_error] = ACTIONS(3277), - [anon_sym_type] = ACTIONS(3277), - [anon_sym_append] = ACTIONS(3277), - [anon_sym_metadata] = ACTIONS(3277), - [anon_sym_move] = ACTIONS(3277), - [anon_sym_read] = ACTIONS(3277), - [anon_sym_workdir] = ACTIONS(3277), - [anon_sym_write] = ACTIONS(3277), - [anon_sym_from_json] = ACTIONS(3277), - [anon_sym_to_json] = ACTIONS(3277), - [anon_sym_to_string] = ACTIONS(3277), - [anon_sym_to_float] = ACTIONS(3277), - [anon_sym_bash] = ACTIONS(3277), - [anon_sym_fish] = ACTIONS(3277), - [anon_sym_raw] = ACTIONS(3277), - [anon_sym_sh] = ACTIONS(3277), - [anon_sym_zsh] = ACTIONS(3277), - [anon_sym_random] = ACTIONS(3277), - [anon_sym_random_boolean] = ACTIONS(3277), - [anon_sym_random_float] = ACTIONS(3277), - [anon_sym_random_integer] = ACTIONS(3277), - [anon_sym_columns] = ACTIONS(3277), - [anon_sym_rows] = ACTIONS(3277), - [anon_sym_reverse] = ACTIONS(3277), - }, - [818] = { - [sym_math_operator] = STATE(1472), - [sym_logic_operator] = STATE(1480), - [ts_builtin_sym_end] = ACTIONS(3240), - [sym_identifier] = ACTIONS(3242), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3240), - [anon_sym_SEMI] = ACTIONS(3240), - [anon_sym_LPAREN] = ACTIONS(3240), - [anon_sym_RPAREN] = ACTIONS(3240), - [sym_integer] = ACTIONS(3242), - [sym_float] = ACTIONS(3240), - [sym_string] = ACTIONS(3240), - [anon_sym_true] = ACTIONS(3242), - [anon_sym_false] = ACTIONS(3242), - [anon_sym_LBRACK] = ACTIONS(3240), - [anon_sym_COLON] = ACTIONS(1282), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(3242), - [anon_sym_elseif] = ACTIONS(3240), - [anon_sym_else] = ACTIONS(3242), - [anon_sym_match] = ACTIONS(3242), - [anon_sym_EQ_GT] = ACTIONS(3240), - [anon_sym_while] = ACTIONS(3242), - [anon_sym_for] = ACTIONS(3242), - [anon_sym_asyncfor] = ACTIONS(3240), - [anon_sym_transform] = ACTIONS(3242), - [anon_sym_filter] = ACTIONS(3242), - [anon_sym_find] = ACTIONS(3242), - [anon_sym_remove] = ACTIONS(3242), - [anon_sym_reduce] = ACTIONS(3242), - [anon_sym_select] = ACTIONS(3242), - [anon_sym_insert] = ACTIONS(3242), - [anon_sym_async] = ACTIONS(3242), - [anon_sym_PIPE] = ACTIONS(3242), - [anon_sym_table] = ACTIONS(3242), - [anon_sym_assert] = ACTIONS(3242), - [anon_sym_assert_equal] = ACTIONS(3242), - [anon_sym_download] = ACTIONS(3242), - [anon_sym_help] = ACTIONS(3242), - [anon_sym_length] = ACTIONS(3242), - [anon_sym_output] = ACTIONS(3242), - [anon_sym_output_error] = ACTIONS(3242), - [anon_sym_type] = ACTIONS(3242), - [anon_sym_append] = ACTIONS(3242), - [anon_sym_metadata] = ACTIONS(3242), - [anon_sym_move] = ACTIONS(3242), - [anon_sym_read] = ACTIONS(3242), - [anon_sym_workdir] = ACTIONS(3242), - [anon_sym_write] = ACTIONS(3242), - [anon_sym_from_json] = ACTIONS(3242), - [anon_sym_to_json] = ACTIONS(3242), - [anon_sym_to_string] = ACTIONS(3242), - [anon_sym_to_float] = ACTIONS(3242), - [anon_sym_bash] = ACTIONS(3242), - [anon_sym_fish] = ACTIONS(3242), - [anon_sym_raw] = ACTIONS(3242), - [anon_sym_sh] = ACTIONS(3242), - [anon_sym_zsh] = ACTIONS(3242), - [anon_sym_random] = ACTIONS(3242), - [anon_sym_random_boolean] = ACTIONS(3242), - [anon_sym_random_float] = ACTIONS(3242), - [anon_sym_random_integer] = ACTIONS(3242), - [anon_sym_columns] = ACTIONS(3242), - [anon_sym_rows] = ACTIONS(3242), - [anon_sym_reverse] = ACTIONS(3242), - }, - [819] = { - [sym_expression] = STATE(1591), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_logic] = STATE(1539), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(821), - [sym_identifier] = ACTIONS(2451), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_RBRACE] = ACTIONS(2449), - [anon_sym_SEMI] = ACTIONS(2449), - [anon_sym_LPAREN] = ACTIONS(2455), - [anon_sym_COMMA] = ACTIONS(2449), - [sym_integer] = ACTIONS(2457), - [sym_float] = ACTIONS(2459), - [sym_string] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(2461), - [anon_sym_false] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_if] = ACTIONS(2465), - [anon_sym_elseif] = ACTIONS(2449), - [anon_sym_else] = ACTIONS(2465), - [anon_sym_match] = ACTIONS(2465), - [anon_sym_EQ_GT] = ACTIONS(2467), - [anon_sym_while] = ACTIONS(2465), - [anon_sym_for] = ACTIONS(2465), - [anon_sym_asyncfor] = ACTIONS(2449), - [anon_sym_transform] = ACTIONS(2465), - [anon_sym_filter] = ACTIONS(2465), - [anon_sym_find] = ACTIONS(2465), - [anon_sym_remove] = ACTIONS(2465), - [anon_sym_reduce] = ACTIONS(2465), - [anon_sym_select] = ACTIONS(2465), - [anon_sym_insert] = ACTIONS(2465), - [anon_sym_async] = ACTIONS(2465), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(2469), - [anon_sym_assert] = ACTIONS(2471), - [anon_sym_assert_equal] = ACTIONS(2471), - [anon_sym_download] = ACTIONS(2471), - [anon_sym_help] = ACTIONS(2471), - [anon_sym_length] = ACTIONS(2471), - [anon_sym_output] = ACTIONS(2471), - [anon_sym_output_error] = ACTIONS(2471), - [anon_sym_type] = ACTIONS(2471), - [anon_sym_append] = ACTIONS(2471), - [anon_sym_metadata] = ACTIONS(2471), - [anon_sym_move] = ACTIONS(2471), - [anon_sym_read] = ACTIONS(2471), - [anon_sym_workdir] = ACTIONS(2471), - [anon_sym_write] = ACTIONS(2471), - [anon_sym_from_json] = ACTIONS(2471), - [anon_sym_to_json] = ACTIONS(2471), - [anon_sym_to_string] = ACTIONS(2471), - [anon_sym_to_float] = ACTIONS(2471), - [anon_sym_bash] = ACTIONS(2471), - [anon_sym_fish] = ACTIONS(2471), - [anon_sym_raw] = ACTIONS(2471), - [anon_sym_sh] = ACTIONS(2471), - [anon_sym_zsh] = ACTIONS(2471), - [anon_sym_random] = ACTIONS(2471), - [anon_sym_random_boolean] = ACTIONS(2471), - [anon_sym_random_float] = ACTIONS(2471), - [anon_sym_random_integer] = ACTIONS(2471), - [anon_sym_columns] = ACTIONS(2471), - [anon_sym_rows] = ACTIONS(2471), - [anon_sym_reverse] = ACTIONS(2471), - }, - [820] = { - [sym_expression] = STATE(1624), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_logic] = STATE(1539), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(820), - [ts_builtin_sym_end] = ACTIONS(2481), - [sym_identifier] = ACTIONS(2483), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2486), - [anon_sym_RBRACE] = ACTIONS(2481), - [anon_sym_SEMI] = ACTIONS(2481), - [anon_sym_LPAREN] = ACTIONS(2489), - [sym_integer] = ACTIONS(2492), - [sym_float] = ACTIONS(2495), - [sym_string] = ACTIONS(2495), - [anon_sym_true] = ACTIONS(2498), - [anon_sym_false] = ACTIONS(2498), - [anon_sym_LBRACK] = ACTIONS(2501), - [anon_sym_if] = ACTIONS(2504), - [anon_sym_elseif] = ACTIONS(2481), - [anon_sym_else] = ACTIONS(2504), - [anon_sym_match] = ACTIONS(2504), - [anon_sym_EQ_GT] = ACTIONS(2506), - [anon_sym_while] = ACTIONS(2504), - [anon_sym_for] = ACTIONS(2504), - [anon_sym_asyncfor] = ACTIONS(2481), - [anon_sym_transform] = ACTIONS(2504), - [anon_sym_filter] = ACTIONS(2504), - [anon_sym_find] = ACTIONS(2504), - [anon_sym_remove] = ACTIONS(2504), - [anon_sym_reduce] = ACTIONS(2504), - [anon_sym_select] = ACTIONS(2504), - [anon_sym_insert] = ACTIONS(2504), - [anon_sym_async] = ACTIONS(2504), - [anon_sym_PIPE] = ACTIONS(3616), - [anon_sym_table] = ACTIONS(2512), - [anon_sym_assert] = ACTIONS(2515), - [anon_sym_assert_equal] = ACTIONS(2515), - [anon_sym_download] = ACTIONS(2515), - [anon_sym_help] = ACTIONS(2515), - [anon_sym_length] = ACTIONS(2515), - [anon_sym_output] = ACTIONS(2515), - [anon_sym_output_error] = ACTIONS(2515), - [anon_sym_type] = ACTIONS(2515), - [anon_sym_append] = ACTIONS(2515), - [anon_sym_metadata] = ACTIONS(2515), - [anon_sym_move] = ACTIONS(2515), - [anon_sym_read] = ACTIONS(2515), - [anon_sym_workdir] = ACTIONS(2515), - [anon_sym_write] = ACTIONS(2515), - [anon_sym_from_json] = ACTIONS(2515), - [anon_sym_to_json] = ACTIONS(2515), - [anon_sym_to_string] = ACTIONS(2515), - [anon_sym_to_float] = ACTIONS(2515), - [anon_sym_bash] = ACTIONS(2515), - [anon_sym_fish] = ACTIONS(2515), - [anon_sym_raw] = ACTIONS(2515), - [anon_sym_sh] = ACTIONS(2515), - [anon_sym_zsh] = ACTIONS(2515), - [anon_sym_random] = ACTIONS(2515), - [anon_sym_random_boolean] = ACTIONS(2515), - [anon_sym_random_float] = ACTIONS(2515), - [anon_sym_random_integer] = ACTIONS(2515), - [anon_sym_columns] = ACTIONS(2515), - [anon_sym_rows] = ACTIONS(2515), - [anon_sym_reverse] = ACTIONS(2515), - }, - [821] = { - [sym_expression] = STATE(1591), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_logic] = STATE(1539), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(821), - [sym_identifier] = ACTIONS(2483), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2486), - [anon_sym_RBRACE] = ACTIONS(2481), - [anon_sym_SEMI] = ACTIONS(2481), - [anon_sym_LPAREN] = ACTIONS(2489), - [anon_sym_COMMA] = ACTIONS(2481), - [sym_integer] = ACTIONS(2492), - [sym_float] = ACTIONS(2495), - [sym_string] = ACTIONS(2495), - [anon_sym_true] = ACTIONS(2498), - [anon_sym_false] = ACTIONS(2498), - [anon_sym_LBRACK] = ACTIONS(2501), - [anon_sym_if] = ACTIONS(2504), - [anon_sym_elseif] = ACTIONS(2481), - [anon_sym_else] = ACTIONS(2504), - [anon_sym_match] = ACTIONS(2504), - [anon_sym_EQ_GT] = ACTIONS(2506), - [anon_sym_while] = ACTIONS(2504), - [anon_sym_for] = ACTIONS(2504), - [anon_sym_asyncfor] = ACTIONS(2481), - [anon_sym_transform] = ACTIONS(2504), - [anon_sym_filter] = ACTIONS(2504), - [anon_sym_find] = ACTIONS(2504), - [anon_sym_remove] = ACTIONS(2504), - [anon_sym_reduce] = ACTIONS(2504), - [anon_sym_select] = ACTIONS(2504), - [anon_sym_insert] = ACTIONS(2504), - [anon_sym_async] = ACTIONS(2504), - [anon_sym_PIPE] = ACTIONS(3616), - [anon_sym_table] = ACTIONS(2512), - [anon_sym_assert] = ACTIONS(2515), - [anon_sym_assert_equal] = ACTIONS(2515), - [anon_sym_download] = ACTIONS(2515), - [anon_sym_help] = ACTIONS(2515), - [anon_sym_length] = ACTIONS(2515), - [anon_sym_output] = ACTIONS(2515), - [anon_sym_output_error] = ACTIONS(2515), - [anon_sym_type] = ACTIONS(2515), - [anon_sym_append] = ACTIONS(2515), - [anon_sym_metadata] = ACTIONS(2515), - [anon_sym_move] = ACTIONS(2515), - [anon_sym_read] = ACTIONS(2515), - [anon_sym_workdir] = ACTIONS(2515), - [anon_sym_write] = ACTIONS(2515), - [anon_sym_from_json] = ACTIONS(2515), - [anon_sym_to_json] = ACTIONS(2515), - [anon_sym_to_string] = ACTIONS(2515), - [anon_sym_to_float] = ACTIONS(2515), - [anon_sym_bash] = ACTIONS(2515), - [anon_sym_fish] = ACTIONS(2515), - [anon_sym_raw] = ACTIONS(2515), - [anon_sym_sh] = ACTIONS(2515), - [anon_sym_zsh] = ACTIONS(2515), - [anon_sym_random] = ACTIONS(2515), - [anon_sym_random_boolean] = ACTIONS(2515), - [anon_sym_random_float] = ACTIONS(2515), - [anon_sym_random_integer] = ACTIONS(2515), - [anon_sym_columns] = ACTIONS(2515), - [anon_sym_rows] = ACTIONS(2515), - [anon_sym_reverse] = ACTIONS(2515), - }, - [822] = { - [sym_assignment_operator] = STATE(543), - [ts_builtin_sym_end] = ACTIONS(2435), - [sym_identifier] = ACTIONS(2437), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_RBRACE] = ACTIONS(2435), - [anon_sym_SEMI] = ACTIONS(2435), - [anon_sym_LPAREN] = ACTIONS(2435), - [anon_sym_RPAREN] = ACTIONS(2435), - [sym_integer] = ACTIONS(2437), - [sym_float] = ACTIONS(2435), - [sym_string] = ACTIONS(2435), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [anon_sym_LBRACK] = ACTIONS(2435), - [anon_sym_EQ] = ACTIONS(2439), - [anon_sym_COLON] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_PERCENT] = ACTIONS(2435), - [anon_sym_EQ_EQ] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_PIPE_PIPE] = ACTIONS(2435), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_PLUS_EQ] = ACTIONS(2441), - [anon_sym_DASH_EQ] = ACTIONS(2441), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_EQ_GT] = ACTIONS(2435), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_asyncfor] = ACTIONS(2435), - [anon_sym_transform] = ACTIONS(2437), - [anon_sym_filter] = ACTIONS(2437), - [anon_sym_find] = ACTIONS(2437), - [anon_sym_remove] = ACTIONS(2437), - [anon_sym_reduce] = ACTIONS(2437), - [anon_sym_select] = ACTIONS(2437), - [anon_sym_insert] = ACTIONS(2437), - [anon_sym_async] = ACTIONS(2437), - [anon_sym_PIPE] = ACTIONS(2437), - [anon_sym_table] = ACTIONS(2437), - [anon_sym_assert] = ACTIONS(2437), - [anon_sym_assert_equal] = ACTIONS(2437), - [anon_sym_download] = ACTIONS(2437), - [anon_sym_help] = ACTIONS(2437), - [anon_sym_length] = ACTIONS(2437), - [anon_sym_output] = ACTIONS(2437), - [anon_sym_output_error] = ACTIONS(2437), - [anon_sym_type] = ACTIONS(2437), - [anon_sym_append] = ACTIONS(2437), - [anon_sym_metadata] = ACTIONS(2437), - [anon_sym_move] = ACTIONS(2437), - [anon_sym_read] = ACTIONS(2437), - [anon_sym_workdir] = ACTIONS(2437), - [anon_sym_write] = ACTIONS(2437), - [anon_sym_from_json] = ACTIONS(2437), - [anon_sym_to_json] = ACTIONS(2437), - [anon_sym_to_string] = ACTIONS(2437), - [anon_sym_to_float] = ACTIONS(2437), - [anon_sym_bash] = ACTIONS(2437), - [anon_sym_fish] = ACTIONS(2437), - [anon_sym_raw] = ACTIONS(2437), - [anon_sym_sh] = ACTIONS(2437), - [anon_sym_zsh] = ACTIONS(2437), - [anon_sym_random] = ACTIONS(2437), - [anon_sym_random_boolean] = ACTIONS(2437), - [anon_sym_random_float] = ACTIONS(2437), - [anon_sym_random_integer] = ACTIONS(2437), - [anon_sym_columns] = ACTIONS(2437), - [anon_sym_rows] = ACTIONS(2437), - [anon_sym_reverse] = ACTIONS(2437), - }, - [823] = { - [sym_math_operator] = STATE(1381), - [sym_logic_operator] = STATE(1380), - [ts_builtin_sym_end] = ACTIONS(3262), - [sym_identifier] = ACTIONS(3264), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3262), - [anon_sym_SEMI] = ACTIONS(3262), - [anon_sym_LPAREN] = ACTIONS(3262), - [anon_sym_RPAREN] = ACTIONS(3262), - [anon_sym_COMMA] = ACTIONS(3262), - [sym_integer] = ACTIONS(3264), - [sym_float] = ACTIONS(3262), - [sym_string] = ACTIONS(3262), - [anon_sym_true] = ACTIONS(3264), - [anon_sym_false] = ACTIONS(3264), - [anon_sym_LBRACK] = ACTIONS(3262), - [anon_sym_RBRACK] = ACTIONS(3262), - [anon_sym_COLON] = ACTIONS(3262), - [anon_sym_PLUS] = ACTIONS(3262), - [anon_sym_DASH] = ACTIONS(3264), - [anon_sym_STAR] = ACTIONS(3262), - [anon_sym_SLASH] = ACTIONS(3262), - [anon_sym_PERCENT] = ACTIONS(3262), - [anon_sym_EQ_EQ] = ACTIONS(3262), - [anon_sym_BANG_EQ] = ACTIONS(3262), - [anon_sym_AMP_AMP] = ACTIONS(3262), - [anon_sym_PIPE_PIPE] = ACTIONS(3262), - [anon_sym_GT] = ACTIONS(3264), - [anon_sym_LT] = ACTIONS(3264), - [anon_sym_GT_EQ] = ACTIONS(3262), - [anon_sym_LT_EQ] = ACTIONS(3262), - [anon_sym_if] = ACTIONS(3264), - [anon_sym_match] = ACTIONS(3264), - [anon_sym_EQ_GT] = ACTIONS(3262), - [anon_sym_while] = ACTIONS(3264), - [anon_sym_for] = ACTIONS(3264), - [anon_sym_asyncfor] = ACTIONS(3262), - [anon_sym_transform] = ACTIONS(3264), - [anon_sym_filter] = ACTIONS(3264), - [anon_sym_find] = ACTIONS(3264), - [anon_sym_remove] = ACTIONS(3264), - [anon_sym_reduce] = ACTIONS(3264), - [anon_sym_select] = ACTIONS(3264), - [anon_sym_insert] = ACTIONS(3264), - [anon_sym_async] = ACTIONS(3264), - [anon_sym_PIPE] = ACTIONS(3264), - [anon_sym_table] = ACTIONS(3264), - [anon_sym_assert] = ACTIONS(3264), - [anon_sym_assert_equal] = ACTIONS(3264), - [anon_sym_download] = ACTIONS(3264), - [anon_sym_help] = ACTIONS(3264), - [anon_sym_length] = ACTIONS(3264), - [anon_sym_output] = ACTIONS(3264), - [anon_sym_output_error] = ACTIONS(3264), - [anon_sym_type] = ACTIONS(3264), - [anon_sym_append] = ACTIONS(3264), - [anon_sym_metadata] = ACTIONS(3264), - [anon_sym_move] = ACTIONS(3264), - [anon_sym_read] = ACTIONS(3264), - [anon_sym_workdir] = ACTIONS(3264), - [anon_sym_write] = ACTIONS(3264), - [anon_sym_from_json] = ACTIONS(3264), - [anon_sym_to_json] = ACTIONS(3264), - [anon_sym_to_string] = ACTIONS(3264), - [anon_sym_to_float] = ACTIONS(3264), - [anon_sym_bash] = ACTIONS(3264), - [anon_sym_fish] = ACTIONS(3264), - [anon_sym_raw] = ACTIONS(3264), - [anon_sym_sh] = ACTIONS(3264), - [anon_sym_zsh] = ACTIONS(3264), - [anon_sym_random] = ACTIONS(3264), - [anon_sym_random_boolean] = ACTIONS(3264), - [anon_sym_random_float] = ACTIONS(3264), - [anon_sym_random_integer] = ACTIONS(3264), - [anon_sym_columns] = ACTIONS(3264), - [anon_sym_rows] = ACTIONS(3264), - [anon_sym_reverse] = ACTIONS(3264), - }, - [824] = { - [sym_math_operator] = STATE(1381), - [sym_logic_operator] = STATE(1380), - [ts_builtin_sym_end] = ACTIONS(3275), - [sym_identifier] = ACTIONS(3277), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3275), - [anon_sym_RBRACE] = ACTIONS(3275), - [anon_sym_SEMI] = ACTIONS(3594), - [anon_sym_LPAREN] = ACTIONS(3275), - [anon_sym_RPAREN] = ACTIONS(3275), - [anon_sym_COMMA] = ACTIONS(3275), - [sym_integer] = ACTIONS(3277), - [sym_float] = ACTIONS(3275), - [sym_string] = ACTIONS(3275), - [anon_sym_true] = ACTIONS(3277), - [anon_sym_false] = ACTIONS(3277), - [anon_sym_LBRACK] = ACTIONS(3275), - [anon_sym_RBRACK] = ACTIONS(3275), - [anon_sym_COLON] = ACTIONS(277), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(3277), - [anon_sym_match] = ACTIONS(3277), - [anon_sym_EQ_GT] = ACTIONS(3275), - [anon_sym_while] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3277), - [anon_sym_asyncfor] = ACTIONS(3275), - [anon_sym_transform] = ACTIONS(3277), - [anon_sym_filter] = ACTIONS(3277), - [anon_sym_find] = ACTIONS(3277), - [anon_sym_remove] = ACTIONS(3277), - [anon_sym_reduce] = ACTIONS(3277), - [anon_sym_select] = ACTIONS(3277), - [anon_sym_insert] = ACTIONS(3277), - [anon_sym_async] = ACTIONS(3277), - [anon_sym_PIPE] = ACTIONS(3277), - [anon_sym_table] = ACTIONS(3277), - [anon_sym_assert] = ACTIONS(3277), - [anon_sym_assert_equal] = ACTIONS(3277), - [anon_sym_download] = ACTIONS(3277), - [anon_sym_help] = ACTIONS(3277), - [anon_sym_length] = ACTIONS(3277), - [anon_sym_output] = ACTIONS(3277), - [anon_sym_output_error] = ACTIONS(3277), - [anon_sym_type] = ACTIONS(3277), - [anon_sym_append] = ACTIONS(3277), - [anon_sym_metadata] = ACTIONS(3277), - [anon_sym_move] = ACTIONS(3277), - [anon_sym_read] = ACTIONS(3277), - [anon_sym_workdir] = ACTIONS(3277), - [anon_sym_write] = ACTIONS(3277), - [anon_sym_from_json] = ACTIONS(3277), - [anon_sym_to_json] = ACTIONS(3277), - [anon_sym_to_string] = ACTIONS(3277), - [anon_sym_to_float] = ACTIONS(3277), - [anon_sym_bash] = ACTIONS(3277), - [anon_sym_fish] = ACTIONS(3277), - [anon_sym_raw] = ACTIONS(3277), - [anon_sym_sh] = ACTIONS(3277), - [anon_sym_zsh] = ACTIONS(3277), - [anon_sym_random] = ACTIONS(3277), - [anon_sym_random_boolean] = ACTIONS(3277), - [anon_sym_random_float] = ACTIONS(3277), - [anon_sym_random_integer] = ACTIONS(3277), - [anon_sym_columns] = ACTIONS(3277), - [anon_sym_rows] = ACTIONS(3277), - [anon_sym_reverse] = ACTIONS(3277), - }, - [825] = { - [sym_else_if] = STATE(825), - [aux_sym_if_else_repeat1] = STATE(825), - [ts_builtin_sym_end] = ACTIONS(3268), - [sym_identifier] = ACTIONS(3270), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(3268), - [anon_sym_SEMI] = ACTIONS(3268), - [anon_sym_LPAREN] = ACTIONS(3268), - [anon_sym_RPAREN] = ACTIONS(3268), - [sym_integer] = ACTIONS(3270), - [sym_float] = ACTIONS(3268), - [sym_string] = ACTIONS(3268), - [anon_sym_true] = ACTIONS(3270), - [anon_sym_false] = ACTIONS(3270), - [anon_sym_LBRACK] = ACTIONS(3268), - [anon_sym_COLON] = ACTIONS(3268), - [anon_sym_PLUS] = ACTIONS(3268), - [anon_sym_DASH] = ACTIONS(3270), - [anon_sym_STAR] = ACTIONS(3268), - [anon_sym_SLASH] = ACTIONS(3268), - [anon_sym_PERCENT] = ACTIONS(3268), - [anon_sym_EQ_EQ] = ACTIONS(3268), - [anon_sym_BANG_EQ] = ACTIONS(3268), - [anon_sym_AMP_AMP] = ACTIONS(3268), - [anon_sym_PIPE_PIPE] = ACTIONS(3268), - [anon_sym_GT] = ACTIONS(3270), - [anon_sym_LT] = ACTIONS(3270), - [anon_sym_GT_EQ] = ACTIONS(3268), - [anon_sym_LT_EQ] = ACTIONS(3268), - [anon_sym_if] = ACTIONS(3270), - [anon_sym_elseif] = ACTIONS(3619), - [anon_sym_else] = ACTIONS(3270), - [anon_sym_match] = ACTIONS(3270), - [anon_sym_EQ_GT] = ACTIONS(3268), - [anon_sym_while] = ACTIONS(3270), - [anon_sym_for] = ACTIONS(3270), - [anon_sym_asyncfor] = ACTIONS(3268), - [anon_sym_transform] = ACTIONS(3270), - [anon_sym_filter] = ACTIONS(3270), - [anon_sym_find] = ACTIONS(3270), - [anon_sym_remove] = ACTIONS(3270), - [anon_sym_reduce] = ACTIONS(3270), - [anon_sym_select] = ACTIONS(3270), - [anon_sym_insert] = ACTIONS(3270), - [anon_sym_async] = ACTIONS(3270), - [anon_sym_PIPE] = ACTIONS(3270), - [anon_sym_table] = ACTIONS(3270), - [anon_sym_assert] = ACTIONS(3270), - [anon_sym_assert_equal] = ACTIONS(3270), - [anon_sym_download] = ACTIONS(3270), - [anon_sym_help] = ACTIONS(3270), - [anon_sym_length] = ACTIONS(3270), - [anon_sym_output] = ACTIONS(3270), - [anon_sym_output_error] = ACTIONS(3270), - [anon_sym_type] = ACTIONS(3270), - [anon_sym_append] = ACTIONS(3270), - [anon_sym_metadata] = ACTIONS(3270), - [anon_sym_move] = ACTIONS(3270), - [anon_sym_read] = ACTIONS(3270), - [anon_sym_workdir] = ACTIONS(3270), - [anon_sym_write] = ACTIONS(3270), - [anon_sym_from_json] = ACTIONS(3270), - [anon_sym_to_json] = ACTIONS(3270), - [anon_sym_to_string] = ACTIONS(3270), - [anon_sym_to_float] = ACTIONS(3270), - [anon_sym_bash] = ACTIONS(3270), - [anon_sym_fish] = ACTIONS(3270), - [anon_sym_raw] = ACTIONS(3270), - [anon_sym_sh] = ACTIONS(3270), - [anon_sym_zsh] = ACTIONS(3270), - [anon_sym_random] = ACTIONS(3270), - [anon_sym_random_boolean] = ACTIONS(3270), - [anon_sym_random_float] = ACTIONS(3270), - [anon_sym_random_integer] = ACTIONS(3270), - [anon_sym_columns] = ACTIONS(3270), - [anon_sym_rows] = ACTIONS(3270), - [anon_sym_reverse] = ACTIONS(3270), - }, - [826] = { - [sym_math_operator] = STATE(1472), - [sym_logic_operator] = STATE(1480), - [ts_builtin_sym_end] = ACTIONS(3281), - [sym_identifier] = ACTIONS(3283), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3281), - [anon_sym_RBRACE] = ACTIONS(3281), - [anon_sym_SEMI] = ACTIONS(3281), - [anon_sym_LPAREN] = ACTIONS(3281), - [anon_sym_RPAREN] = ACTIONS(3281), - [sym_integer] = ACTIONS(3283), - [sym_float] = ACTIONS(3281), - [sym_string] = ACTIONS(3281), - [anon_sym_true] = ACTIONS(3283), - [anon_sym_false] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3281), - [anon_sym_COLON] = ACTIONS(1282), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(3283), - [anon_sym_elseif] = ACTIONS(3281), - [anon_sym_else] = ACTIONS(3283), - [anon_sym_match] = ACTIONS(3283), - [anon_sym_EQ_GT] = ACTIONS(3281), - [anon_sym_while] = ACTIONS(3283), - [anon_sym_for] = ACTIONS(3283), - [anon_sym_asyncfor] = ACTIONS(3281), - [anon_sym_transform] = ACTIONS(3283), - [anon_sym_filter] = ACTIONS(3283), - [anon_sym_find] = ACTIONS(3283), - [anon_sym_remove] = ACTIONS(3283), - [anon_sym_reduce] = ACTIONS(3283), - [anon_sym_select] = ACTIONS(3283), - [anon_sym_insert] = ACTIONS(3283), - [anon_sym_async] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(3283), - [anon_sym_table] = ACTIONS(3283), - [anon_sym_assert] = ACTIONS(3283), - [anon_sym_assert_equal] = ACTIONS(3283), - [anon_sym_download] = ACTIONS(3283), - [anon_sym_help] = ACTIONS(3283), - [anon_sym_length] = ACTIONS(3283), - [anon_sym_output] = ACTIONS(3283), - [anon_sym_output_error] = ACTIONS(3283), - [anon_sym_type] = ACTIONS(3283), - [anon_sym_append] = ACTIONS(3283), - [anon_sym_metadata] = ACTIONS(3283), - [anon_sym_move] = ACTIONS(3283), - [anon_sym_read] = ACTIONS(3283), - [anon_sym_workdir] = ACTIONS(3283), - [anon_sym_write] = ACTIONS(3283), - [anon_sym_from_json] = ACTIONS(3283), - [anon_sym_to_json] = ACTIONS(3283), - [anon_sym_to_string] = ACTIONS(3283), - [anon_sym_to_float] = ACTIONS(3283), - [anon_sym_bash] = ACTIONS(3283), - [anon_sym_fish] = ACTIONS(3283), - [anon_sym_raw] = ACTIONS(3283), - [anon_sym_sh] = ACTIONS(3283), - [anon_sym_zsh] = ACTIONS(3283), - [anon_sym_random] = ACTIONS(3283), - [anon_sym_random_boolean] = ACTIONS(3283), - [anon_sym_random_float] = ACTIONS(3283), - [anon_sym_random_integer] = ACTIONS(3283), - [anon_sym_columns] = ACTIONS(3283), - [anon_sym_rows] = ACTIONS(3283), - [anon_sym_reverse] = ACTIONS(3283), - }, - [827] = { - [sym_math_operator] = STATE(1472), - [sym_logic_operator] = STATE(1480), - [ts_builtin_sym_end] = ACTIONS(3252), - [sym_identifier] = ACTIONS(3254), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3252), - [anon_sym_RBRACE] = ACTIONS(3252), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_LPAREN] = ACTIONS(3252), - [anon_sym_RPAREN] = ACTIONS(3252), - [sym_integer] = ACTIONS(3254), - [sym_float] = ACTIONS(3252), - [sym_string] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_COLON] = ACTIONS(3252), - [anon_sym_PLUS] = ACTIONS(3252), - [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_STAR] = ACTIONS(3252), - [anon_sym_SLASH] = ACTIONS(3252), - [anon_sym_PERCENT] = ACTIONS(3252), - [anon_sym_EQ_EQ] = ACTIONS(3252), - [anon_sym_BANG_EQ] = ACTIONS(3252), - [anon_sym_AMP_AMP] = ACTIONS(3252), - [anon_sym_PIPE_PIPE] = ACTIONS(3252), - [anon_sym_GT] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(3254), - [anon_sym_GT_EQ] = ACTIONS(3252), - [anon_sym_LT_EQ] = ACTIONS(3252), - [anon_sym_if] = ACTIONS(3254), - [anon_sym_elseif] = ACTIONS(3252), - [anon_sym_else] = ACTIONS(3254), - [anon_sym_match] = ACTIONS(3254), - [anon_sym_EQ_GT] = ACTIONS(3252), - [anon_sym_while] = ACTIONS(3254), - [anon_sym_for] = ACTIONS(3254), - [anon_sym_asyncfor] = ACTIONS(3252), - [anon_sym_transform] = ACTIONS(3254), - [anon_sym_filter] = ACTIONS(3254), - [anon_sym_find] = ACTIONS(3254), - [anon_sym_remove] = ACTIONS(3254), - [anon_sym_reduce] = ACTIONS(3254), - [anon_sym_select] = ACTIONS(3254), - [anon_sym_insert] = ACTIONS(3254), - [anon_sym_async] = ACTIONS(3254), - [anon_sym_PIPE] = ACTIONS(3254), - [anon_sym_table] = ACTIONS(3254), - [anon_sym_assert] = ACTIONS(3254), - [anon_sym_assert_equal] = ACTIONS(3254), - [anon_sym_download] = ACTIONS(3254), - [anon_sym_help] = ACTIONS(3254), - [anon_sym_length] = ACTIONS(3254), - [anon_sym_output] = ACTIONS(3254), - [anon_sym_output_error] = ACTIONS(3254), - [anon_sym_type] = ACTIONS(3254), - [anon_sym_append] = ACTIONS(3254), - [anon_sym_metadata] = ACTIONS(3254), - [anon_sym_move] = ACTIONS(3254), - [anon_sym_read] = ACTIONS(3254), - [anon_sym_workdir] = ACTIONS(3254), - [anon_sym_write] = ACTIONS(3254), - [anon_sym_from_json] = ACTIONS(3254), - [anon_sym_to_json] = ACTIONS(3254), - [anon_sym_to_string] = ACTIONS(3254), - [anon_sym_to_float] = ACTIONS(3254), - [anon_sym_bash] = ACTIONS(3254), - [anon_sym_fish] = ACTIONS(3254), - [anon_sym_raw] = ACTIONS(3254), - [anon_sym_sh] = ACTIONS(3254), - [anon_sym_zsh] = ACTIONS(3254), - [anon_sym_random] = ACTIONS(3254), - [anon_sym_random_boolean] = ACTIONS(3254), - [anon_sym_random_float] = ACTIONS(3254), - [anon_sym_random_integer] = ACTIONS(3254), - [anon_sym_columns] = ACTIONS(3254), - [anon_sym_rows] = ACTIONS(3254), - [anon_sym_reverse] = ACTIONS(3254), - }, - [828] = { - [sym_math_operator] = STATE(1381), - [sym_logic_operator] = STATE(1380), - [ts_builtin_sym_end] = ACTIONS(3233), - [sym_identifier] = ACTIONS(3235), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3233), - [anon_sym_RBRACE] = ACTIONS(3233), - [anon_sym_SEMI] = ACTIONS(3233), - [anon_sym_LPAREN] = ACTIONS(3233), - [anon_sym_RPAREN] = ACTIONS(3233), - [anon_sym_COMMA] = ACTIONS(3591), - [sym_integer] = ACTIONS(3235), - [sym_float] = ACTIONS(3233), - [sym_string] = ACTIONS(3233), - [anon_sym_true] = ACTIONS(3235), - [anon_sym_false] = ACTIONS(3235), - [anon_sym_LBRACK] = ACTIONS(3233), - [anon_sym_RBRACK] = ACTIONS(3233), - [anon_sym_COLON] = ACTIONS(1200), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(3235), - [anon_sym_match] = ACTIONS(3235), - [anon_sym_EQ_GT] = ACTIONS(3233), - [anon_sym_while] = ACTIONS(3235), - [anon_sym_for] = ACTIONS(3235), - [anon_sym_asyncfor] = ACTIONS(3233), - [anon_sym_transform] = ACTIONS(3235), - [anon_sym_filter] = ACTIONS(3235), - [anon_sym_find] = ACTIONS(3235), - [anon_sym_remove] = ACTIONS(3235), - [anon_sym_reduce] = ACTIONS(3235), - [anon_sym_select] = ACTIONS(3235), - [anon_sym_insert] = ACTIONS(3235), - [anon_sym_async] = ACTIONS(3235), - [anon_sym_PIPE] = ACTIONS(3235), - [anon_sym_table] = ACTIONS(3235), - [anon_sym_assert] = ACTIONS(3235), - [anon_sym_assert_equal] = ACTIONS(3235), - [anon_sym_download] = ACTIONS(3235), - [anon_sym_help] = ACTIONS(3235), - [anon_sym_length] = ACTIONS(3235), - [anon_sym_output] = ACTIONS(3235), - [anon_sym_output_error] = ACTIONS(3235), - [anon_sym_type] = ACTIONS(3235), - [anon_sym_append] = ACTIONS(3235), - [anon_sym_metadata] = ACTIONS(3235), - [anon_sym_move] = ACTIONS(3235), - [anon_sym_read] = ACTIONS(3235), - [anon_sym_workdir] = ACTIONS(3235), - [anon_sym_write] = ACTIONS(3235), - [anon_sym_from_json] = ACTIONS(3235), - [anon_sym_to_json] = ACTIONS(3235), - [anon_sym_to_string] = ACTIONS(3235), - [anon_sym_to_float] = ACTIONS(3235), - [anon_sym_bash] = ACTIONS(3235), - [anon_sym_fish] = ACTIONS(3235), - [anon_sym_raw] = ACTIONS(3235), - [anon_sym_sh] = ACTIONS(3235), - [anon_sym_zsh] = ACTIONS(3235), - [anon_sym_random] = ACTIONS(3235), - [anon_sym_random_boolean] = ACTIONS(3235), - [anon_sym_random_float] = ACTIONS(3235), - [anon_sym_random_integer] = ACTIONS(3235), - [anon_sym_columns] = ACTIONS(3235), - [anon_sym_rows] = ACTIONS(3235), - [anon_sym_reverse] = ACTIONS(3235), - }, - [829] = { - [sym_math_operator] = STATE(1381), - [sym_logic_operator] = STATE(1380), - [ts_builtin_sym_end] = ACTIONS(3281), - [sym_identifier] = ACTIONS(3283), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3281), - [anon_sym_RBRACE] = ACTIONS(3281), - [anon_sym_SEMI] = ACTIONS(3281), - [anon_sym_LPAREN] = ACTIONS(3281), - [anon_sym_RPAREN] = ACTIONS(3281), - [anon_sym_COMMA] = ACTIONS(3281), - [sym_integer] = ACTIONS(3283), - [sym_float] = ACTIONS(3281), - [sym_string] = ACTIONS(3281), - [anon_sym_true] = ACTIONS(3283), - [anon_sym_false] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3281), - [anon_sym_RBRACK] = ACTIONS(3281), - [anon_sym_COLON] = ACTIONS(1200), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(3283), - [anon_sym_match] = ACTIONS(3283), - [anon_sym_EQ_GT] = ACTIONS(3281), - [anon_sym_while] = ACTIONS(3283), - [anon_sym_for] = ACTIONS(3283), - [anon_sym_asyncfor] = ACTIONS(3281), - [anon_sym_transform] = ACTIONS(3283), - [anon_sym_filter] = ACTIONS(3283), - [anon_sym_find] = ACTIONS(3283), - [anon_sym_remove] = ACTIONS(3283), - [anon_sym_reduce] = ACTIONS(3283), - [anon_sym_select] = ACTIONS(3283), - [anon_sym_insert] = ACTIONS(3283), - [anon_sym_async] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(3283), - [anon_sym_table] = ACTIONS(3283), - [anon_sym_assert] = ACTIONS(3283), - [anon_sym_assert_equal] = ACTIONS(3283), - [anon_sym_download] = ACTIONS(3283), - [anon_sym_help] = ACTIONS(3283), - [anon_sym_length] = ACTIONS(3283), - [anon_sym_output] = ACTIONS(3283), - [anon_sym_output_error] = ACTIONS(3283), - [anon_sym_type] = ACTIONS(3283), - [anon_sym_append] = ACTIONS(3283), - [anon_sym_metadata] = ACTIONS(3283), - [anon_sym_move] = ACTIONS(3283), - [anon_sym_read] = ACTIONS(3283), - [anon_sym_workdir] = ACTIONS(3283), - [anon_sym_write] = ACTIONS(3283), - [anon_sym_from_json] = ACTIONS(3283), - [anon_sym_to_json] = ACTIONS(3283), - [anon_sym_to_string] = ACTIONS(3283), - [anon_sym_to_float] = ACTIONS(3283), - [anon_sym_bash] = ACTIONS(3283), - [anon_sym_fish] = ACTIONS(3283), - [anon_sym_raw] = ACTIONS(3283), - [anon_sym_sh] = ACTIONS(3283), - [anon_sym_zsh] = ACTIONS(3283), - [anon_sym_random] = ACTIONS(3283), - [anon_sym_random_boolean] = ACTIONS(3283), - [anon_sym_random_float] = ACTIONS(3283), - [anon_sym_random_integer] = ACTIONS(3283), - [anon_sym_columns] = ACTIONS(3283), - [anon_sym_rows] = ACTIONS(3283), - [anon_sym_reverse] = ACTIONS(3283), - }, - [830] = { - [sym_expression] = STATE(968), - [sym__expression_kind] = STATE(1002), - [aux_sym__expression_list] = STATE(716), - [sym_value] = STATE(1002), - [sym_boolean] = STATE(996), - [sym_list] = STATE(996), - [sym_map] = STATE(996), - [sym_index] = STATE(1002), - [sym_math] = STATE(1002), - [sym_logic] = STATE(1002), - [sym_identifier_list] = STATE(1762), - [sym_table] = STATE(996), - [sym_function] = STATE(996), - [sym_function_call] = STATE(1002), - [sym__context_defined_function] = STATE(1009), - [sym_built_in_function] = STATE(1009), - [sym__built_in_function_name] = STATE(726), - [sym_identifier] = ACTIONS(2437), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3503), - [anon_sym_RBRACE] = ACTIONS(2435), - [anon_sym_SEMI] = ACTIONS(2435), - [anon_sym_LPAREN] = ACTIONS(3505), - [anon_sym_COMMA] = ACTIONS(2435), - [sym_integer] = ACTIONS(3507), - [sym_float] = ACTIONS(3509), - [sym_string] = ACTIONS(3509), - [anon_sym_true] = ACTIONS(3511), - [anon_sym_false] = ACTIONS(3511), - [anon_sym_LBRACK] = ACTIONS(3513), - [anon_sym_COLON] = ACTIONS(2435), - [anon_sym_DOT_DOT] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2435), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_PERCENT] = ACTIONS(2435), - [anon_sym_EQ_EQ] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_PIPE_PIPE] = ACTIONS(2435), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_EQ_GT] = ACTIONS(3578), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(3580), - [anon_sym_assert] = ACTIONS(3582), - [anon_sym_assert_equal] = ACTIONS(3582), - [anon_sym_download] = ACTIONS(3582), - [anon_sym_help] = ACTIONS(3582), - [anon_sym_length] = ACTIONS(3582), - [anon_sym_output] = ACTIONS(3582), - [anon_sym_output_error] = ACTIONS(3582), - [anon_sym_type] = ACTIONS(3582), - [anon_sym_append] = ACTIONS(3582), - [anon_sym_metadata] = ACTIONS(3582), - [anon_sym_move] = ACTIONS(3582), - [anon_sym_read] = ACTIONS(3582), - [anon_sym_workdir] = ACTIONS(3582), - [anon_sym_write] = ACTIONS(3582), - [anon_sym_from_json] = ACTIONS(3582), - [anon_sym_to_json] = ACTIONS(3582), - [anon_sym_to_string] = ACTIONS(3582), - [anon_sym_to_float] = ACTIONS(3582), - [anon_sym_bash] = ACTIONS(3582), - [anon_sym_fish] = ACTIONS(3582), - [anon_sym_raw] = ACTIONS(3582), - [anon_sym_sh] = ACTIONS(3582), - [anon_sym_zsh] = ACTIONS(3582), - [anon_sym_random] = ACTIONS(3582), - [anon_sym_random_boolean] = ACTIONS(3582), - [anon_sym_random_float] = ACTIONS(3582), - [anon_sym_random_integer] = ACTIONS(3582), - [anon_sym_columns] = ACTIONS(3582), - [anon_sym_rows] = ACTIONS(3582), - [anon_sym_reverse] = ACTIONS(3582), - }, - [831] = { - [sym_math_operator] = STATE(1381), - [sym_logic_operator] = STATE(1380), - [ts_builtin_sym_end] = ACTIONS(3252), - [sym_identifier] = ACTIONS(3254), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3252), - [anon_sym_RBRACE] = ACTIONS(3252), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_LPAREN] = ACTIONS(3252), - [anon_sym_RPAREN] = ACTIONS(3252), - [anon_sym_COMMA] = ACTIONS(3252), - [sym_integer] = ACTIONS(3254), - [sym_float] = ACTIONS(3252), - [sym_string] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_RBRACK] = ACTIONS(3252), - [anon_sym_COLON] = ACTIONS(3252), - [anon_sym_PLUS] = ACTIONS(3252), - [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_STAR] = ACTIONS(3252), - [anon_sym_SLASH] = ACTIONS(3252), - [anon_sym_PERCENT] = ACTIONS(3252), - [anon_sym_EQ_EQ] = ACTIONS(3252), - [anon_sym_BANG_EQ] = ACTIONS(3252), - [anon_sym_AMP_AMP] = ACTIONS(3252), - [anon_sym_PIPE_PIPE] = ACTIONS(3252), - [anon_sym_GT] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(3254), - [anon_sym_GT_EQ] = ACTIONS(3252), - [anon_sym_LT_EQ] = ACTIONS(3252), - [anon_sym_if] = ACTIONS(3254), - [anon_sym_match] = ACTIONS(3254), - [anon_sym_EQ_GT] = ACTIONS(3252), - [anon_sym_while] = ACTIONS(3254), - [anon_sym_for] = ACTIONS(3254), - [anon_sym_asyncfor] = ACTIONS(3252), - [anon_sym_transform] = ACTIONS(3254), - [anon_sym_filter] = ACTIONS(3254), - [anon_sym_find] = ACTIONS(3254), - [anon_sym_remove] = ACTIONS(3254), - [anon_sym_reduce] = ACTIONS(3254), - [anon_sym_select] = ACTIONS(3254), - [anon_sym_insert] = ACTIONS(3254), - [anon_sym_async] = ACTIONS(3254), - [anon_sym_PIPE] = ACTIONS(3254), - [anon_sym_table] = ACTIONS(3254), - [anon_sym_assert] = ACTIONS(3254), - [anon_sym_assert_equal] = ACTIONS(3254), - [anon_sym_download] = ACTIONS(3254), - [anon_sym_help] = ACTIONS(3254), - [anon_sym_length] = ACTIONS(3254), - [anon_sym_output] = ACTIONS(3254), - [anon_sym_output_error] = ACTIONS(3254), - [anon_sym_type] = ACTIONS(3254), - [anon_sym_append] = ACTIONS(3254), - [anon_sym_metadata] = ACTIONS(3254), - [anon_sym_move] = ACTIONS(3254), - [anon_sym_read] = ACTIONS(3254), - [anon_sym_workdir] = ACTIONS(3254), - [anon_sym_write] = ACTIONS(3254), - [anon_sym_from_json] = ACTIONS(3254), - [anon_sym_to_json] = ACTIONS(3254), - [anon_sym_to_string] = ACTIONS(3254), - [anon_sym_to_float] = ACTIONS(3254), - [anon_sym_bash] = ACTIONS(3254), - [anon_sym_fish] = ACTIONS(3254), - [anon_sym_raw] = ACTIONS(3254), - [anon_sym_sh] = ACTIONS(3254), - [anon_sym_zsh] = ACTIONS(3254), - [anon_sym_random] = ACTIONS(3254), - [anon_sym_random_boolean] = ACTIONS(3254), - [anon_sym_random_float] = ACTIONS(3254), - [anon_sym_random_integer] = ACTIONS(3254), - [anon_sym_columns] = ACTIONS(3254), - [anon_sym_rows] = ACTIONS(3254), - [anon_sym_reverse] = ACTIONS(3254), - }, - [832] = { - [sym_math_operator] = STATE(1472), - [sym_logic_operator] = STATE(1480), - [ts_builtin_sym_end] = ACTIONS(3244), - [sym_identifier] = ACTIONS(3246), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_RBRACE] = ACTIONS(3244), - [anon_sym_SEMI] = ACTIONS(3244), - [anon_sym_LPAREN] = ACTIONS(3244), - [anon_sym_RPAREN] = ACTIONS(3244), - [sym_integer] = ACTIONS(3246), - [sym_float] = ACTIONS(3244), - [sym_string] = ACTIONS(3244), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_LBRACK] = ACTIONS(3244), - [anon_sym_COLON] = ACTIONS(1282), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(3246), - [anon_sym_elseif] = ACTIONS(3244), - [anon_sym_else] = ACTIONS(3246), - [anon_sym_match] = ACTIONS(3246), - [anon_sym_EQ_GT] = ACTIONS(3244), - [anon_sym_while] = ACTIONS(3246), - [anon_sym_for] = ACTIONS(3246), - [anon_sym_asyncfor] = ACTIONS(3244), - [anon_sym_transform] = ACTIONS(3246), - [anon_sym_filter] = ACTIONS(3246), - [anon_sym_find] = ACTIONS(3246), - [anon_sym_remove] = ACTIONS(3246), - [anon_sym_reduce] = ACTIONS(3246), - [anon_sym_select] = ACTIONS(3246), - [anon_sym_insert] = ACTIONS(3246), - [anon_sym_async] = ACTIONS(3246), - [anon_sym_PIPE] = ACTIONS(3246), - [anon_sym_table] = ACTIONS(3246), - [anon_sym_assert] = ACTIONS(3246), - [anon_sym_assert_equal] = ACTIONS(3246), - [anon_sym_download] = ACTIONS(3246), - [anon_sym_help] = ACTIONS(3246), - [anon_sym_length] = ACTIONS(3246), - [anon_sym_output] = ACTIONS(3246), - [anon_sym_output_error] = ACTIONS(3246), - [anon_sym_type] = ACTIONS(3246), - [anon_sym_append] = ACTIONS(3246), - [anon_sym_metadata] = ACTIONS(3246), - [anon_sym_move] = ACTIONS(3246), - [anon_sym_read] = ACTIONS(3246), - [anon_sym_workdir] = ACTIONS(3246), - [anon_sym_write] = ACTIONS(3246), - [anon_sym_from_json] = ACTIONS(3246), - [anon_sym_to_json] = ACTIONS(3246), - [anon_sym_to_string] = ACTIONS(3246), - [anon_sym_to_float] = ACTIONS(3246), - [anon_sym_bash] = ACTIONS(3246), - [anon_sym_fish] = ACTIONS(3246), - [anon_sym_raw] = ACTIONS(3246), - [anon_sym_sh] = ACTIONS(3246), - [anon_sym_zsh] = ACTIONS(3246), - [anon_sym_random] = ACTIONS(3246), - [anon_sym_random_boolean] = ACTIONS(3246), - [anon_sym_random_float] = ACTIONS(3246), - [anon_sym_random_integer] = ACTIONS(3246), - [anon_sym_columns] = ACTIONS(3246), - [anon_sym_rows] = ACTIONS(3246), - [anon_sym_reverse] = ACTIONS(3246), - }, - [833] = { - [sym_math_operator] = STATE(1305), - [sym_logic_operator] = STATE(1306), - [ts_builtin_sym_end] = ACTIONS(3233), - [sym_identifier] = ACTIONS(3235), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3233), - [anon_sym_RBRACE] = ACTIONS(3233), - [anon_sym_SEMI] = ACTIONS(3233), - [anon_sym_LPAREN] = ACTIONS(3233), - [anon_sym_RPAREN] = ACTIONS(3233), - [anon_sym_COMMA] = ACTIONS(3622), - [sym_integer] = ACTIONS(3235), - [sym_float] = ACTIONS(3233), - [sym_string] = ACTIONS(3233), - [anon_sym_true] = ACTIONS(3235), - [anon_sym_false] = ACTIONS(3235), - [anon_sym_LBRACK] = ACTIONS(3233), - [anon_sym_COLON] = ACTIONS(879), - [anon_sym_DOT_DOT] = ACTIONS(3233), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(3235), - [anon_sym_match] = ACTIONS(3235), - [anon_sym_EQ_GT] = ACTIONS(3233), - [anon_sym_while] = ACTIONS(3235), - [anon_sym_for] = ACTIONS(3235), - [anon_sym_asyncfor] = ACTIONS(3233), - [anon_sym_transform] = ACTIONS(3235), - [anon_sym_filter] = ACTIONS(3235), - [anon_sym_find] = ACTIONS(3235), - [anon_sym_remove] = ACTIONS(3235), - [anon_sym_reduce] = ACTIONS(3235), - [anon_sym_select] = ACTIONS(3235), - [anon_sym_insert] = ACTIONS(3235), - [anon_sym_async] = ACTIONS(3235), - [anon_sym_PIPE] = ACTIONS(3235), - [anon_sym_table] = ACTIONS(3235), - [anon_sym_assert] = ACTIONS(3235), - [anon_sym_assert_equal] = ACTIONS(3235), - [anon_sym_download] = ACTIONS(3235), - [anon_sym_help] = ACTIONS(3235), - [anon_sym_length] = ACTIONS(3235), - [anon_sym_output] = ACTIONS(3235), - [anon_sym_output_error] = ACTIONS(3235), - [anon_sym_type] = ACTIONS(3235), - [anon_sym_append] = ACTIONS(3235), - [anon_sym_metadata] = ACTIONS(3235), - [anon_sym_move] = ACTIONS(3235), - [anon_sym_read] = ACTIONS(3235), - [anon_sym_workdir] = ACTIONS(3235), - [anon_sym_write] = ACTIONS(3235), - [anon_sym_from_json] = ACTIONS(3235), - [anon_sym_to_json] = ACTIONS(3235), - [anon_sym_to_string] = ACTIONS(3235), - [anon_sym_to_float] = ACTIONS(3235), - [anon_sym_bash] = ACTIONS(3235), - [anon_sym_fish] = ACTIONS(3235), - [anon_sym_raw] = ACTIONS(3235), - [anon_sym_sh] = ACTIONS(3235), - [anon_sym_zsh] = ACTIONS(3235), - [anon_sym_random] = ACTIONS(3235), - [anon_sym_random_boolean] = ACTIONS(3235), - [anon_sym_random_float] = ACTIONS(3235), - [anon_sym_random_integer] = ACTIONS(3235), - [anon_sym_columns] = ACTIONS(3235), - [anon_sym_rows] = ACTIONS(3235), - [anon_sym_reverse] = ACTIONS(3235), - }, - [834] = { - [sym_math_operator] = STATE(1381), - [sym_logic_operator] = STATE(1380), - [ts_builtin_sym_end] = ACTIONS(3244), - [sym_identifier] = ACTIONS(3246), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_RBRACE] = ACTIONS(3244), - [anon_sym_SEMI] = ACTIONS(3244), - [anon_sym_LPAREN] = ACTIONS(3244), - [anon_sym_RPAREN] = ACTIONS(3244), - [anon_sym_COMMA] = ACTIONS(3244), - [sym_integer] = ACTIONS(3246), - [sym_float] = ACTIONS(3244), - [sym_string] = ACTIONS(3244), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_LBRACK] = ACTIONS(3244), - [anon_sym_RBRACK] = ACTIONS(3244), - [anon_sym_COLON] = ACTIONS(1200), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(3246), - [anon_sym_match] = ACTIONS(3246), - [anon_sym_EQ_GT] = ACTIONS(3244), - [anon_sym_while] = ACTIONS(3246), - [anon_sym_for] = ACTIONS(3246), - [anon_sym_asyncfor] = ACTIONS(3244), - [anon_sym_transform] = ACTIONS(3246), - [anon_sym_filter] = ACTIONS(3246), - [anon_sym_find] = ACTIONS(3246), - [anon_sym_remove] = ACTIONS(3246), - [anon_sym_reduce] = ACTIONS(3246), - [anon_sym_select] = ACTIONS(3246), - [anon_sym_insert] = ACTIONS(3246), - [anon_sym_async] = ACTIONS(3246), - [anon_sym_PIPE] = ACTIONS(3246), - [anon_sym_table] = ACTIONS(3246), - [anon_sym_assert] = ACTIONS(3246), - [anon_sym_assert_equal] = ACTIONS(3246), - [anon_sym_download] = ACTIONS(3246), - [anon_sym_help] = ACTIONS(3246), - [anon_sym_length] = ACTIONS(3246), - [anon_sym_output] = ACTIONS(3246), - [anon_sym_output_error] = ACTIONS(3246), - [anon_sym_type] = ACTIONS(3246), - [anon_sym_append] = ACTIONS(3246), - [anon_sym_metadata] = ACTIONS(3246), - [anon_sym_move] = ACTIONS(3246), - [anon_sym_read] = ACTIONS(3246), - [anon_sym_workdir] = ACTIONS(3246), - [anon_sym_write] = ACTIONS(3246), - [anon_sym_from_json] = ACTIONS(3246), - [anon_sym_to_json] = ACTIONS(3246), - [anon_sym_to_string] = ACTIONS(3246), - [anon_sym_to_float] = ACTIONS(3246), - [anon_sym_bash] = ACTIONS(3246), - [anon_sym_fish] = ACTIONS(3246), - [anon_sym_raw] = ACTIONS(3246), - [anon_sym_sh] = ACTIONS(3246), - [anon_sym_zsh] = ACTIONS(3246), - [anon_sym_random] = ACTIONS(3246), - [anon_sym_random_boolean] = ACTIONS(3246), - [anon_sym_random_float] = ACTIONS(3246), - [anon_sym_random_integer] = ACTIONS(3246), - [anon_sym_columns] = ACTIONS(3246), - [anon_sym_rows] = ACTIONS(3246), - [anon_sym_reverse] = ACTIONS(3246), - }, - [835] = { - [sym_math_operator] = STATE(1381), - [sym_logic_operator] = STATE(1380), - [ts_builtin_sym_end] = ACTIONS(3240), - [sym_identifier] = ACTIONS(3242), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3240), - [anon_sym_SEMI] = ACTIONS(3240), - [anon_sym_LPAREN] = ACTIONS(3240), - [anon_sym_RPAREN] = ACTIONS(3240), - [anon_sym_COMMA] = ACTIONS(3240), - [sym_integer] = ACTIONS(3242), - [sym_float] = ACTIONS(3240), - [sym_string] = ACTIONS(3240), - [anon_sym_true] = ACTIONS(3242), - [anon_sym_false] = ACTIONS(3242), - [anon_sym_LBRACK] = ACTIONS(3240), - [anon_sym_RBRACK] = ACTIONS(3240), - [anon_sym_COLON] = ACTIONS(1200), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(3242), - [anon_sym_match] = ACTIONS(3242), - [anon_sym_EQ_GT] = ACTIONS(3240), - [anon_sym_while] = ACTIONS(3242), - [anon_sym_for] = ACTIONS(3242), - [anon_sym_asyncfor] = ACTIONS(3240), - [anon_sym_transform] = ACTIONS(3242), - [anon_sym_filter] = ACTIONS(3242), - [anon_sym_find] = ACTIONS(3242), - [anon_sym_remove] = ACTIONS(3242), - [anon_sym_reduce] = ACTIONS(3242), - [anon_sym_select] = ACTIONS(3242), - [anon_sym_insert] = ACTIONS(3242), - [anon_sym_async] = ACTIONS(3242), - [anon_sym_PIPE] = ACTIONS(3242), - [anon_sym_table] = ACTIONS(3242), - [anon_sym_assert] = ACTIONS(3242), - [anon_sym_assert_equal] = ACTIONS(3242), - [anon_sym_download] = ACTIONS(3242), - [anon_sym_help] = ACTIONS(3242), - [anon_sym_length] = ACTIONS(3242), - [anon_sym_output] = ACTIONS(3242), - [anon_sym_output_error] = ACTIONS(3242), - [anon_sym_type] = ACTIONS(3242), - [anon_sym_append] = ACTIONS(3242), - [anon_sym_metadata] = ACTIONS(3242), - [anon_sym_move] = ACTIONS(3242), - [anon_sym_read] = ACTIONS(3242), - [anon_sym_workdir] = ACTIONS(3242), - [anon_sym_write] = ACTIONS(3242), - [anon_sym_from_json] = ACTIONS(3242), - [anon_sym_to_json] = ACTIONS(3242), - [anon_sym_to_string] = ACTIONS(3242), - [anon_sym_to_float] = ACTIONS(3242), - [anon_sym_bash] = ACTIONS(3242), - [anon_sym_fish] = ACTIONS(3242), - [anon_sym_raw] = ACTIONS(3242), - [anon_sym_sh] = ACTIONS(3242), - [anon_sym_zsh] = ACTIONS(3242), - [anon_sym_random] = ACTIONS(3242), - [anon_sym_random_boolean] = ACTIONS(3242), - [anon_sym_random_float] = ACTIONS(3242), - [anon_sym_random_integer] = ACTIONS(3242), - [anon_sym_columns] = ACTIONS(3242), - [anon_sym_rows] = ACTIONS(3242), - [anon_sym_reverse] = ACTIONS(3242), - }, - [836] = { - [sym_math_operator] = STATE(1472), - [sym_logic_operator] = STATE(1480), - [ts_builtin_sym_end] = ACTIONS(3262), - [sym_identifier] = ACTIONS(3264), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3262), - [anon_sym_SEMI] = ACTIONS(3262), - [anon_sym_LPAREN] = ACTIONS(3262), - [anon_sym_RPAREN] = ACTIONS(3262), - [sym_integer] = ACTIONS(3264), - [sym_float] = ACTIONS(3262), - [sym_string] = ACTIONS(3262), - [anon_sym_true] = ACTIONS(3264), - [anon_sym_false] = ACTIONS(3264), - [anon_sym_LBRACK] = ACTIONS(3262), - [anon_sym_COLON] = ACTIONS(3262), - [anon_sym_PLUS] = ACTIONS(3262), - [anon_sym_DASH] = ACTIONS(3264), - [anon_sym_STAR] = ACTIONS(3262), - [anon_sym_SLASH] = ACTIONS(3262), - [anon_sym_PERCENT] = ACTIONS(3262), - [anon_sym_EQ_EQ] = ACTIONS(3262), - [anon_sym_BANG_EQ] = ACTIONS(3262), - [anon_sym_AMP_AMP] = ACTIONS(3262), - [anon_sym_PIPE_PIPE] = ACTIONS(3262), - [anon_sym_GT] = ACTIONS(3264), - [anon_sym_LT] = ACTIONS(3264), - [anon_sym_GT_EQ] = ACTIONS(3262), - [anon_sym_LT_EQ] = ACTIONS(3262), - [anon_sym_if] = ACTIONS(3264), - [anon_sym_elseif] = ACTIONS(3262), - [anon_sym_else] = ACTIONS(3264), - [anon_sym_match] = ACTIONS(3264), - [anon_sym_EQ_GT] = ACTIONS(3262), - [anon_sym_while] = ACTIONS(3264), - [anon_sym_for] = ACTIONS(3264), - [anon_sym_asyncfor] = ACTIONS(3262), - [anon_sym_transform] = ACTIONS(3264), - [anon_sym_filter] = ACTIONS(3264), - [anon_sym_find] = ACTIONS(3264), - [anon_sym_remove] = ACTIONS(3264), - [anon_sym_reduce] = ACTIONS(3264), - [anon_sym_select] = ACTIONS(3264), - [anon_sym_insert] = ACTIONS(3264), - [anon_sym_async] = ACTIONS(3264), - [anon_sym_PIPE] = ACTIONS(3264), - [anon_sym_table] = ACTIONS(3264), - [anon_sym_assert] = ACTIONS(3264), - [anon_sym_assert_equal] = ACTIONS(3264), - [anon_sym_download] = ACTIONS(3264), - [anon_sym_help] = ACTIONS(3264), - [anon_sym_length] = ACTIONS(3264), - [anon_sym_output] = ACTIONS(3264), - [anon_sym_output_error] = ACTIONS(3264), - [anon_sym_type] = ACTIONS(3264), - [anon_sym_append] = ACTIONS(3264), - [anon_sym_metadata] = ACTIONS(3264), - [anon_sym_move] = ACTIONS(3264), - [anon_sym_read] = ACTIONS(3264), - [anon_sym_workdir] = ACTIONS(3264), - [anon_sym_write] = ACTIONS(3264), - [anon_sym_from_json] = ACTIONS(3264), - [anon_sym_to_json] = ACTIONS(3264), - [anon_sym_to_string] = ACTIONS(3264), - [anon_sym_to_float] = ACTIONS(3264), - [anon_sym_bash] = ACTIONS(3264), - [anon_sym_fish] = ACTIONS(3264), - [anon_sym_raw] = ACTIONS(3264), - [anon_sym_sh] = ACTIONS(3264), - [anon_sym_zsh] = ACTIONS(3264), - [anon_sym_random] = ACTIONS(3264), - [anon_sym_random_boolean] = ACTIONS(3264), - [anon_sym_random_float] = ACTIONS(3264), - [anon_sym_random_integer] = ACTIONS(3264), - [anon_sym_columns] = ACTIONS(3264), - [anon_sym_rows] = ACTIONS(3264), - [anon_sym_reverse] = ACTIONS(3264), - }, - [837] = { - [sym_expression] = STATE(1624), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_logic] = STATE(1539), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(820), - [ts_builtin_sym_end] = ACTIONS(2449), - [sym_identifier] = ACTIONS(2451), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_RBRACE] = ACTIONS(2449), - [anon_sym_SEMI] = ACTIONS(2449), - [anon_sym_LPAREN] = ACTIONS(2455), - [sym_integer] = ACTIONS(2457), - [sym_float] = ACTIONS(2459), - [sym_string] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(2461), - [anon_sym_false] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_if] = ACTIONS(2465), - [anon_sym_elseif] = ACTIONS(2449), - [anon_sym_else] = ACTIONS(2465), - [anon_sym_match] = ACTIONS(2465), - [anon_sym_EQ_GT] = ACTIONS(2467), - [anon_sym_while] = ACTIONS(2465), - [anon_sym_for] = ACTIONS(2465), - [anon_sym_asyncfor] = ACTIONS(2449), - [anon_sym_transform] = ACTIONS(2465), - [anon_sym_filter] = ACTIONS(2465), - [anon_sym_find] = ACTIONS(2465), - [anon_sym_remove] = ACTIONS(2465), - [anon_sym_reduce] = ACTIONS(2465), - [anon_sym_select] = ACTIONS(2465), - [anon_sym_insert] = ACTIONS(2465), - [anon_sym_async] = ACTIONS(2465), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(2469), - [anon_sym_assert] = ACTIONS(2471), - [anon_sym_assert_equal] = ACTIONS(2471), - [anon_sym_download] = ACTIONS(2471), - [anon_sym_help] = ACTIONS(2471), - [anon_sym_length] = ACTIONS(2471), - [anon_sym_output] = ACTIONS(2471), - [anon_sym_output_error] = ACTIONS(2471), - [anon_sym_type] = ACTIONS(2471), - [anon_sym_append] = ACTIONS(2471), - [anon_sym_metadata] = ACTIONS(2471), - [anon_sym_move] = ACTIONS(2471), - [anon_sym_read] = ACTIONS(2471), - [anon_sym_workdir] = ACTIONS(2471), - [anon_sym_write] = ACTIONS(2471), - [anon_sym_from_json] = ACTIONS(2471), - [anon_sym_to_json] = ACTIONS(2471), - [anon_sym_to_string] = ACTIONS(2471), - [anon_sym_to_float] = ACTIONS(2471), - [anon_sym_bash] = ACTIONS(2471), - [anon_sym_fish] = ACTIONS(2471), - [anon_sym_raw] = ACTIONS(2471), - [anon_sym_sh] = ACTIONS(2471), - [anon_sym_zsh] = ACTIONS(2471), - [anon_sym_random] = ACTIONS(2471), - [anon_sym_random_boolean] = ACTIONS(2471), - [anon_sym_random_float] = ACTIONS(2471), - [anon_sym_random_integer] = ACTIONS(2471), - [anon_sym_columns] = ACTIONS(2471), - [anon_sym_rows] = ACTIONS(2471), - [anon_sym_reverse] = ACTIONS(2471), - }, - [838] = { - [ts_builtin_sym_end] = ACTIONS(3351), - [sym_identifier] = ACTIONS(3353), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3351), - [anon_sym_RBRACE] = ACTIONS(3351), - [anon_sym_SEMI] = ACTIONS(3351), - [anon_sym_LPAREN] = ACTIONS(3351), - [anon_sym_RPAREN] = ACTIONS(3351), - [anon_sym_COMMA] = ACTIONS(3351), - [sym_integer] = ACTIONS(3353), - [sym_float] = ACTIONS(3351), - [sym_string] = ACTIONS(3351), - [anon_sym_true] = ACTIONS(3353), - [anon_sym_false] = ACTIONS(3353), - [anon_sym_LBRACK] = ACTIONS(3351), - [anon_sym_RBRACK] = ACTIONS(3351), - [anon_sym_COLON] = ACTIONS(3351), - [anon_sym_DOT_DOT] = ACTIONS(3351), - [anon_sym_PLUS] = ACTIONS(3351), - [anon_sym_DASH] = ACTIONS(3353), - [anon_sym_STAR] = ACTIONS(3351), - [anon_sym_SLASH] = ACTIONS(3351), - [anon_sym_PERCENT] = ACTIONS(3351), - [anon_sym_EQ_EQ] = ACTIONS(3351), - [anon_sym_BANG_EQ] = ACTIONS(3351), - [anon_sym_AMP_AMP] = ACTIONS(3351), - [anon_sym_PIPE_PIPE] = ACTIONS(3351), - [anon_sym_GT] = ACTIONS(3353), - [anon_sym_LT] = ACTIONS(3353), - [anon_sym_GT_EQ] = ACTIONS(3351), - [anon_sym_LT_EQ] = ACTIONS(3351), - [anon_sym_if] = ACTIONS(3353), - [anon_sym_match] = ACTIONS(3353), - [anon_sym_EQ_GT] = ACTIONS(3351), - [anon_sym_while] = ACTIONS(3353), - [anon_sym_for] = ACTIONS(3353), - [anon_sym_asyncfor] = ACTIONS(3351), - [anon_sym_transform] = ACTIONS(3353), - [anon_sym_filter] = ACTIONS(3353), - [anon_sym_find] = ACTIONS(3353), - [anon_sym_remove] = ACTIONS(3353), - [anon_sym_reduce] = ACTIONS(3353), - [anon_sym_select] = ACTIONS(3353), - [anon_sym_insert] = ACTIONS(3353), - [anon_sym_async] = ACTIONS(3353), - [anon_sym_PIPE] = ACTIONS(3353), - [anon_sym_table] = ACTIONS(3353), - [anon_sym_assert] = ACTIONS(3353), - [anon_sym_assert_equal] = ACTIONS(3353), - [anon_sym_download] = ACTIONS(3353), - [anon_sym_help] = ACTIONS(3353), - [anon_sym_length] = ACTIONS(3353), - [anon_sym_output] = ACTIONS(3353), - [anon_sym_output_error] = ACTIONS(3353), - [anon_sym_type] = ACTIONS(3353), - [anon_sym_append] = ACTIONS(3353), - [anon_sym_metadata] = ACTIONS(3353), - [anon_sym_move] = ACTIONS(3353), - [anon_sym_read] = ACTIONS(3353), - [anon_sym_workdir] = ACTIONS(3353), - [anon_sym_write] = ACTIONS(3353), - [anon_sym_from_json] = ACTIONS(3353), - [anon_sym_to_json] = ACTIONS(3353), - [anon_sym_to_string] = ACTIONS(3353), - [anon_sym_to_float] = ACTIONS(3353), - [anon_sym_bash] = ACTIONS(3353), - [anon_sym_fish] = ACTIONS(3353), - [anon_sym_raw] = ACTIONS(3353), - [anon_sym_sh] = ACTIONS(3353), - [anon_sym_zsh] = ACTIONS(3353), - [anon_sym_random] = ACTIONS(3353), - [anon_sym_random_boolean] = ACTIONS(3353), - [anon_sym_random_float] = ACTIONS(3353), - [anon_sym_random_integer] = ACTIONS(3353), - [anon_sym_columns] = ACTIONS(3353), - [anon_sym_rows] = ACTIONS(3353), - [anon_sym_reverse] = ACTIONS(3353), - }, - [839] = { - [ts_builtin_sym_end] = ACTIONS(3393), - [sym_identifier] = ACTIONS(3395), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_RBRACE] = ACTIONS(3393), - [anon_sym_SEMI] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_RPAREN] = ACTIONS(3393), - [anon_sym_COMMA] = ACTIONS(3393), - [sym_integer] = ACTIONS(3395), - [sym_float] = ACTIONS(3393), - [sym_string] = ACTIONS(3393), - [anon_sym_true] = ACTIONS(3395), - [anon_sym_false] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_RBRACK] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3393), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3393), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3393), - [anon_sym_SLASH] = ACTIONS(3393), - [anon_sym_PERCENT] = ACTIONS(3393), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_if] = ACTIONS(3395), - [anon_sym_match] = ACTIONS(3395), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_while] = ACTIONS(3395), - [anon_sym_for] = ACTIONS(3395), - [anon_sym_asyncfor] = ACTIONS(3393), - [anon_sym_transform] = ACTIONS(3395), - [anon_sym_filter] = ACTIONS(3395), - [anon_sym_find] = ACTIONS(3395), - [anon_sym_remove] = ACTIONS(3395), - [anon_sym_reduce] = ACTIONS(3395), - [anon_sym_select] = ACTIONS(3395), - [anon_sym_insert] = ACTIONS(3395), - [anon_sym_async] = ACTIONS(3395), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_table] = ACTIONS(3395), - [anon_sym_assert] = ACTIONS(3395), - [anon_sym_assert_equal] = ACTIONS(3395), - [anon_sym_download] = ACTIONS(3395), - [anon_sym_help] = ACTIONS(3395), - [anon_sym_length] = ACTIONS(3395), - [anon_sym_output] = ACTIONS(3395), - [anon_sym_output_error] = ACTIONS(3395), - [anon_sym_type] = ACTIONS(3395), - [anon_sym_append] = ACTIONS(3395), - [anon_sym_metadata] = ACTIONS(3395), - [anon_sym_move] = ACTIONS(3395), - [anon_sym_read] = ACTIONS(3395), - [anon_sym_workdir] = ACTIONS(3395), - [anon_sym_write] = ACTIONS(3395), - [anon_sym_from_json] = ACTIONS(3395), - [anon_sym_to_json] = ACTIONS(3395), - [anon_sym_to_string] = ACTIONS(3395), - [anon_sym_to_float] = ACTIONS(3395), - [anon_sym_bash] = ACTIONS(3395), - [anon_sym_fish] = ACTIONS(3395), - [anon_sym_raw] = ACTIONS(3395), - [anon_sym_sh] = ACTIONS(3395), - [anon_sym_zsh] = ACTIONS(3395), - [anon_sym_random] = ACTIONS(3395), - [anon_sym_random_boolean] = ACTIONS(3395), - [anon_sym_random_float] = ACTIONS(3395), - [anon_sym_random_integer] = ACTIONS(3395), - [anon_sym_columns] = ACTIONS(3395), - [anon_sym_rows] = ACTIONS(3395), - [anon_sym_reverse] = ACTIONS(3395), - }, - [840] = { - [ts_builtin_sym_end] = ACTIONS(3415), - [sym_identifier] = ACTIONS(3417), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3415), - [anon_sym_RBRACE] = ACTIONS(3415), - [anon_sym_SEMI] = ACTIONS(3415), - [anon_sym_LPAREN] = ACTIONS(3415), - [anon_sym_RPAREN] = ACTIONS(3415), - [anon_sym_COMMA] = ACTIONS(3415), - [sym_integer] = ACTIONS(3417), - [sym_float] = ACTIONS(3415), - [sym_string] = ACTIONS(3415), - [anon_sym_true] = ACTIONS(3417), - [anon_sym_false] = ACTIONS(3417), - [anon_sym_LBRACK] = ACTIONS(3415), - [anon_sym_RBRACK] = ACTIONS(3415), - [anon_sym_COLON] = ACTIONS(3415), - [anon_sym_DOT_DOT] = ACTIONS(3415), - [anon_sym_PLUS] = ACTIONS(3415), - [anon_sym_DASH] = ACTIONS(3417), - [anon_sym_STAR] = ACTIONS(3415), - [anon_sym_SLASH] = ACTIONS(3415), - [anon_sym_PERCENT] = ACTIONS(3415), - [anon_sym_EQ_EQ] = ACTIONS(3415), - [anon_sym_BANG_EQ] = ACTIONS(3415), - [anon_sym_AMP_AMP] = ACTIONS(3415), - [anon_sym_PIPE_PIPE] = ACTIONS(3415), - [anon_sym_GT] = ACTIONS(3417), - [anon_sym_LT] = ACTIONS(3417), - [anon_sym_GT_EQ] = ACTIONS(3415), - [anon_sym_LT_EQ] = ACTIONS(3415), - [anon_sym_if] = ACTIONS(3417), - [anon_sym_match] = ACTIONS(3417), - [anon_sym_EQ_GT] = ACTIONS(3415), - [anon_sym_while] = ACTIONS(3417), - [anon_sym_for] = ACTIONS(3417), - [anon_sym_asyncfor] = ACTIONS(3415), - [anon_sym_transform] = ACTIONS(3417), - [anon_sym_filter] = ACTIONS(3417), - [anon_sym_find] = ACTIONS(3417), - [anon_sym_remove] = ACTIONS(3417), - [anon_sym_reduce] = ACTIONS(3417), - [anon_sym_select] = ACTIONS(3417), - [anon_sym_insert] = ACTIONS(3417), - [anon_sym_async] = ACTIONS(3417), - [anon_sym_PIPE] = ACTIONS(3417), - [anon_sym_table] = ACTIONS(3417), - [anon_sym_assert] = ACTIONS(3417), - [anon_sym_assert_equal] = ACTIONS(3417), - [anon_sym_download] = ACTIONS(3417), - [anon_sym_help] = ACTIONS(3417), - [anon_sym_length] = ACTIONS(3417), - [anon_sym_output] = ACTIONS(3417), - [anon_sym_output_error] = ACTIONS(3417), - [anon_sym_type] = ACTIONS(3417), - [anon_sym_append] = ACTIONS(3417), - [anon_sym_metadata] = ACTIONS(3417), - [anon_sym_move] = ACTIONS(3417), - [anon_sym_read] = ACTIONS(3417), - [anon_sym_workdir] = ACTIONS(3417), - [anon_sym_write] = ACTIONS(3417), - [anon_sym_from_json] = ACTIONS(3417), - [anon_sym_to_json] = ACTIONS(3417), - [anon_sym_to_string] = ACTIONS(3417), - [anon_sym_to_float] = ACTIONS(3417), - [anon_sym_bash] = ACTIONS(3417), - [anon_sym_fish] = ACTIONS(3417), - [anon_sym_raw] = ACTIONS(3417), - [anon_sym_sh] = ACTIONS(3417), - [anon_sym_zsh] = ACTIONS(3417), - [anon_sym_random] = ACTIONS(3417), - [anon_sym_random_boolean] = ACTIONS(3417), - [anon_sym_random_float] = ACTIONS(3417), - [anon_sym_random_integer] = ACTIONS(3417), - [anon_sym_columns] = ACTIONS(3417), - [anon_sym_rows] = ACTIONS(3417), - [anon_sym_reverse] = ACTIONS(3417), - }, - [841] = { - [ts_builtin_sym_end] = ACTIONS(3363), - [sym_identifier] = ACTIONS(3365), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3363), - [anon_sym_RBRACE] = ACTIONS(3363), - [anon_sym_SEMI] = ACTIONS(3363), - [anon_sym_LPAREN] = ACTIONS(3363), - [anon_sym_RPAREN] = ACTIONS(3363), - [anon_sym_COMMA] = ACTIONS(3363), - [sym_integer] = ACTIONS(3365), - [sym_float] = ACTIONS(3363), - [sym_string] = ACTIONS(3363), - [anon_sym_true] = ACTIONS(3365), - [anon_sym_false] = ACTIONS(3365), - [anon_sym_LBRACK] = ACTIONS(3363), - [anon_sym_RBRACK] = ACTIONS(3363), - [anon_sym_COLON] = ACTIONS(3363), - [anon_sym_DOT_DOT] = ACTIONS(3363), - [anon_sym_PLUS] = ACTIONS(3363), - [anon_sym_DASH] = ACTIONS(3365), - [anon_sym_STAR] = ACTIONS(3363), - [anon_sym_SLASH] = ACTIONS(3363), - [anon_sym_PERCENT] = ACTIONS(3363), - [anon_sym_EQ_EQ] = ACTIONS(3363), - [anon_sym_BANG_EQ] = ACTIONS(3363), - [anon_sym_AMP_AMP] = ACTIONS(3363), - [anon_sym_PIPE_PIPE] = ACTIONS(3363), - [anon_sym_GT] = ACTIONS(3365), - [anon_sym_LT] = ACTIONS(3365), - [anon_sym_GT_EQ] = ACTIONS(3363), - [anon_sym_LT_EQ] = ACTIONS(3363), - [anon_sym_if] = ACTIONS(3365), - [anon_sym_match] = ACTIONS(3365), - [anon_sym_EQ_GT] = ACTIONS(3363), - [anon_sym_while] = ACTIONS(3365), - [anon_sym_for] = ACTIONS(3365), - [anon_sym_asyncfor] = ACTIONS(3363), - [anon_sym_transform] = ACTIONS(3365), - [anon_sym_filter] = ACTIONS(3365), - [anon_sym_find] = ACTIONS(3365), - [anon_sym_remove] = ACTIONS(3365), - [anon_sym_reduce] = ACTIONS(3365), - [anon_sym_select] = ACTIONS(3365), - [anon_sym_insert] = ACTIONS(3365), - [anon_sym_async] = ACTIONS(3365), - [anon_sym_PIPE] = ACTIONS(3365), - [anon_sym_table] = ACTIONS(3365), - [anon_sym_assert] = ACTIONS(3365), - [anon_sym_assert_equal] = ACTIONS(3365), - [anon_sym_download] = ACTIONS(3365), - [anon_sym_help] = ACTIONS(3365), - [anon_sym_length] = ACTIONS(3365), - [anon_sym_output] = ACTIONS(3365), - [anon_sym_output_error] = ACTIONS(3365), - [anon_sym_type] = ACTIONS(3365), - [anon_sym_append] = ACTIONS(3365), - [anon_sym_metadata] = ACTIONS(3365), - [anon_sym_move] = ACTIONS(3365), - [anon_sym_read] = ACTIONS(3365), - [anon_sym_workdir] = ACTIONS(3365), - [anon_sym_write] = ACTIONS(3365), - [anon_sym_from_json] = ACTIONS(3365), - [anon_sym_to_json] = ACTIONS(3365), - [anon_sym_to_string] = ACTIONS(3365), - [anon_sym_to_float] = ACTIONS(3365), - [anon_sym_bash] = ACTIONS(3365), - [anon_sym_fish] = ACTIONS(3365), - [anon_sym_raw] = ACTIONS(3365), - [anon_sym_sh] = ACTIONS(3365), - [anon_sym_zsh] = ACTIONS(3365), - [anon_sym_random] = ACTIONS(3365), - [anon_sym_random_boolean] = ACTIONS(3365), - [anon_sym_random_float] = ACTIONS(3365), - [anon_sym_random_integer] = ACTIONS(3365), - [anon_sym_columns] = ACTIONS(3365), - [anon_sym_rows] = ACTIONS(3365), - [anon_sym_reverse] = ACTIONS(3365), - }, - [842] = { - [sym_assignment_operator] = STATE(554), - [sym_identifier] = ACTIONS(2437), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_RBRACE] = ACTIONS(2435), - [anon_sym_SEMI] = ACTIONS(2435), - [anon_sym_LPAREN] = ACTIONS(2435), - [anon_sym_COMMA] = ACTIONS(2435), - [sym_integer] = ACTIONS(2437), - [sym_float] = ACTIONS(2435), - [sym_string] = ACTIONS(2435), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [anon_sym_LBRACK] = ACTIONS(2435), - [anon_sym_EQ] = ACTIONS(2439), - [anon_sym_COLON] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_PERCENT] = ACTIONS(2435), - [anon_sym_EQ_EQ] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_PIPE_PIPE] = ACTIONS(2435), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_PLUS_EQ] = ACTIONS(2441), - [anon_sym_DASH_EQ] = ACTIONS(2441), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_EQ_GT] = ACTIONS(2435), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_asyncfor] = ACTIONS(2435), - [anon_sym_transform] = ACTIONS(2437), - [anon_sym_filter] = ACTIONS(2437), - [anon_sym_find] = ACTIONS(2437), - [anon_sym_remove] = ACTIONS(2437), - [anon_sym_reduce] = ACTIONS(2437), - [anon_sym_select] = ACTIONS(2437), - [anon_sym_insert] = ACTIONS(2437), - [anon_sym_async] = ACTIONS(2437), - [anon_sym_PIPE] = ACTIONS(2437), - [anon_sym_table] = ACTIONS(2437), - [anon_sym_assert] = ACTIONS(2437), - [anon_sym_assert_equal] = ACTIONS(2437), - [anon_sym_download] = ACTIONS(2437), - [anon_sym_help] = ACTIONS(2437), - [anon_sym_length] = ACTIONS(2437), - [anon_sym_output] = ACTIONS(2437), - [anon_sym_output_error] = ACTIONS(2437), - [anon_sym_type] = ACTIONS(2437), - [anon_sym_append] = ACTIONS(2437), - [anon_sym_metadata] = ACTIONS(2437), - [anon_sym_move] = ACTIONS(2437), - [anon_sym_read] = ACTIONS(2437), - [anon_sym_workdir] = ACTIONS(2437), - [anon_sym_write] = ACTIONS(2437), - [anon_sym_from_json] = ACTIONS(2437), - [anon_sym_to_json] = ACTIONS(2437), - [anon_sym_to_string] = ACTIONS(2437), - [anon_sym_to_float] = ACTIONS(2437), - [anon_sym_bash] = ACTIONS(2437), - [anon_sym_fish] = ACTIONS(2437), - [anon_sym_raw] = ACTIONS(2437), - [anon_sym_sh] = ACTIONS(2437), - [anon_sym_zsh] = ACTIONS(2437), - [anon_sym_random] = ACTIONS(2437), - [anon_sym_random_boolean] = ACTIONS(2437), - [anon_sym_random_float] = ACTIONS(2437), - [anon_sym_random_integer] = ACTIONS(2437), - [anon_sym_columns] = ACTIONS(2437), - [anon_sym_rows] = ACTIONS(2437), - [anon_sym_reverse] = ACTIONS(2437), - }, - [843] = { - [sym_math_operator] = STATE(1142), - [sym_logic_operator] = STATE(1143), - [ts_builtin_sym_end] = ACTIONS(3244), - [sym_identifier] = ACTIONS(3246), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_RBRACE] = ACTIONS(3244), - [anon_sym_SEMI] = ACTIONS(3244), - [anon_sym_LPAREN] = ACTIONS(3244), - [anon_sym_RPAREN] = ACTIONS(3244), - [sym_integer] = ACTIONS(3246), - [sym_float] = ACTIONS(3244), - [sym_string] = ACTIONS(3244), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_LBRACK] = ACTIONS(3244), - [anon_sym_COLON] = ACTIONS(1438), - [anon_sym_DOT_DOT] = ACTIONS(3244), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(3246), - [anon_sym_match] = ACTIONS(3246), - [anon_sym_EQ_GT] = ACTIONS(3244), - [anon_sym_while] = ACTIONS(3246), - [anon_sym_for] = ACTIONS(3246), - [anon_sym_asyncfor] = ACTIONS(3244), - [anon_sym_transform] = ACTIONS(3246), - [anon_sym_filter] = ACTIONS(3246), - [anon_sym_find] = ACTIONS(3246), - [anon_sym_remove] = ACTIONS(3246), - [anon_sym_reduce] = ACTIONS(3246), - [anon_sym_select] = ACTIONS(3246), - [anon_sym_insert] = ACTIONS(3246), - [anon_sym_async] = ACTIONS(3246), - [anon_sym_PIPE] = ACTIONS(3246), - [anon_sym_table] = ACTIONS(3246), - [anon_sym_assert] = ACTIONS(3246), - [anon_sym_assert_equal] = ACTIONS(3246), - [anon_sym_download] = ACTIONS(3246), - [anon_sym_help] = ACTIONS(3246), - [anon_sym_length] = ACTIONS(3246), - [anon_sym_output] = ACTIONS(3246), - [anon_sym_output_error] = ACTIONS(3246), - [anon_sym_type] = ACTIONS(3246), - [anon_sym_append] = ACTIONS(3246), - [anon_sym_metadata] = ACTIONS(3246), - [anon_sym_move] = ACTIONS(3246), - [anon_sym_read] = ACTIONS(3246), - [anon_sym_workdir] = ACTIONS(3246), - [anon_sym_write] = ACTIONS(3246), - [anon_sym_from_json] = ACTIONS(3246), - [anon_sym_to_json] = ACTIONS(3246), - [anon_sym_to_string] = ACTIONS(3246), - [anon_sym_to_float] = ACTIONS(3246), - [anon_sym_bash] = ACTIONS(3246), - [anon_sym_fish] = ACTIONS(3246), - [anon_sym_raw] = ACTIONS(3246), - [anon_sym_sh] = ACTIONS(3246), - [anon_sym_zsh] = ACTIONS(3246), - [anon_sym_random] = ACTIONS(3246), - [anon_sym_random_boolean] = ACTIONS(3246), - [anon_sym_random_float] = ACTIONS(3246), - [anon_sym_random_integer] = ACTIONS(3246), - [anon_sym_columns] = ACTIONS(3246), - [anon_sym_rows] = ACTIONS(3246), - [anon_sym_reverse] = ACTIONS(3246), - }, - [844] = { - [ts_builtin_sym_end] = ACTIONS(3409), - [sym_identifier] = ACTIONS(3411), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3409), - [anon_sym_RBRACE] = ACTIONS(3409), - [anon_sym_SEMI] = ACTIONS(3409), - [anon_sym_LPAREN] = ACTIONS(3409), - [anon_sym_RPAREN] = ACTIONS(3409), - [anon_sym_COMMA] = ACTIONS(3409), - [sym_integer] = ACTIONS(3411), - [sym_float] = ACTIONS(3409), - [sym_string] = ACTIONS(3409), - [anon_sym_true] = ACTIONS(3411), - [anon_sym_false] = ACTIONS(3411), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_RBRACK] = ACTIONS(3409), - [anon_sym_COLON] = ACTIONS(3409), - [anon_sym_DOT_DOT] = ACTIONS(3409), - [anon_sym_PLUS] = ACTIONS(3409), - [anon_sym_DASH] = ACTIONS(3411), - [anon_sym_STAR] = ACTIONS(3409), - [anon_sym_SLASH] = ACTIONS(3409), - [anon_sym_PERCENT] = ACTIONS(3409), - [anon_sym_EQ_EQ] = ACTIONS(3409), - [anon_sym_BANG_EQ] = ACTIONS(3409), - [anon_sym_AMP_AMP] = ACTIONS(3409), - [anon_sym_PIPE_PIPE] = ACTIONS(3409), - [anon_sym_GT] = ACTIONS(3411), - [anon_sym_LT] = ACTIONS(3411), - [anon_sym_GT_EQ] = ACTIONS(3409), - [anon_sym_LT_EQ] = ACTIONS(3409), - [anon_sym_if] = ACTIONS(3411), - [anon_sym_match] = ACTIONS(3411), - [anon_sym_EQ_GT] = ACTIONS(3409), - [anon_sym_while] = ACTIONS(3411), - [anon_sym_for] = ACTIONS(3411), - [anon_sym_asyncfor] = ACTIONS(3409), - [anon_sym_transform] = ACTIONS(3411), - [anon_sym_filter] = ACTIONS(3411), - [anon_sym_find] = ACTIONS(3411), - [anon_sym_remove] = ACTIONS(3411), - [anon_sym_reduce] = ACTIONS(3411), - [anon_sym_select] = ACTIONS(3411), - [anon_sym_insert] = ACTIONS(3411), - [anon_sym_async] = ACTIONS(3411), - [anon_sym_PIPE] = ACTIONS(3411), - [anon_sym_table] = ACTIONS(3411), - [anon_sym_assert] = ACTIONS(3411), - [anon_sym_assert_equal] = ACTIONS(3411), - [anon_sym_download] = ACTIONS(3411), - [anon_sym_help] = ACTIONS(3411), - [anon_sym_length] = ACTIONS(3411), - [anon_sym_output] = ACTIONS(3411), - [anon_sym_output_error] = ACTIONS(3411), - [anon_sym_type] = ACTIONS(3411), - [anon_sym_append] = ACTIONS(3411), - [anon_sym_metadata] = ACTIONS(3411), - [anon_sym_move] = ACTIONS(3411), - [anon_sym_read] = ACTIONS(3411), - [anon_sym_workdir] = ACTIONS(3411), - [anon_sym_write] = ACTIONS(3411), - [anon_sym_from_json] = ACTIONS(3411), - [anon_sym_to_json] = ACTIONS(3411), - [anon_sym_to_string] = ACTIONS(3411), - [anon_sym_to_float] = ACTIONS(3411), - [anon_sym_bash] = ACTIONS(3411), - [anon_sym_fish] = ACTIONS(3411), - [anon_sym_raw] = ACTIONS(3411), - [anon_sym_sh] = ACTIONS(3411), - [anon_sym_zsh] = ACTIONS(3411), - [anon_sym_random] = ACTIONS(3411), - [anon_sym_random_boolean] = ACTIONS(3411), - [anon_sym_random_float] = ACTIONS(3411), - [anon_sym_random_integer] = ACTIONS(3411), - [anon_sym_columns] = ACTIONS(3411), - [anon_sym_rows] = ACTIONS(3411), - [anon_sym_reverse] = ACTIONS(3411), - }, - [845] = { - [ts_builtin_sym_end] = ACTIONS(3405), - [sym_identifier] = ACTIONS(3407), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_RBRACE] = ACTIONS(3405), - [anon_sym_SEMI] = ACTIONS(3405), - [anon_sym_LPAREN] = ACTIONS(3405), - [anon_sym_RPAREN] = ACTIONS(3405), - [anon_sym_COMMA] = ACTIONS(3405), - [sym_integer] = ACTIONS(3407), - [sym_float] = ACTIONS(3405), - [sym_string] = ACTIONS(3405), - [anon_sym_true] = ACTIONS(3407), - [anon_sym_false] = ACTIONS(3407), - [anon_sym_LBRACK] = ACTIONS(3405), - [anon_sym_RBRACK] = ACTIONS(3405), - [anon_sym_COLON] = ACTIONS(3405), - [anon_sym_DOT_DOT] = ACTIONS(3405), - [anon_sym_PLUS] = ACTIONS(3405), - [anon_sym_DASH] = ACTIONS(3407), - [anon_sym_STAR] = ACTIONS(3405), - [anon_sym_SLASH] = ACTIONS(3405), - [anon_sym_PERCENT] = ACTIONS(3405), - [anon_sym_EQ_EQ] = ACTIONS(3405), - [anon_sym_BANG_EQ] = ACTIONS(3405), - [anon_sym_AMP_AMP] = ACTIONS(3405), - [anon_sym_PIPE_PIPE] = ACTIONS(3405), - [anon_sym_GT] = ACTIONS(3407), - [anon_sym_LT] = ACTIONS(3407), - [anon_sym_GT_EQ] = ACTIONS(3405), - [anon_sym_LT_EQ] = ACTIONS(3405), - [anon_sym_if] = ACTIONS(3407), - [anon_sym_match] = ACTIONS(3407), - [anon_sym_EQ_GT] = ACTIONS(3405), - [anon_sym_while] = ACTIONS(3407), - [anon_sym_for] = ACTIONS(3407), - [anon_sym_asyncfor] = ACTIONS(3405), - [anon_sym_transform] = ACTIONS(3407), - [anon_sym_filter] = ACTIONS(3407), - [anon_sym_find] = ACTIONS(3407), - [anon_sym_remove] = ACTIONS(3407), - [anon_sym_reduce] = ACTIONS(3407), - [anon_sym_select] = ACTIONS(3407), - [anon_sym_insert] = ACTIONS(3407), - [anon_sym_async] = ACTIONS(3407), - [anon_sym_PIPE] = ACTIONS(3407), - [anon_sym_table] = ACTIONS(3407), - [anon_sym_assert] = ACTIONS(3407), - [anon_sym_assert_equal] = ACTIONS(3407), - [anon_sym_download] = ACTIONS(3407), - [anon_sym_help] = ACTIONS(3407), - [anon_sym_length] = ACTIONS(3407), - [anon_sym_output] = ACTIONS(3407), - [anon_sym_output_error] = ACTIONS(3407), - [anon_sym_type] = ACTIONS(3407), - [anon_sym_append] = ACTIONS(3407), - [anon_sym_metadata] = ACTIONS(3407), - [anon_sym_move] = ACTIONS(3407), - [anon_sym_read] = ACTIONS(3407), - [anon_sym_workdir] = ACTIONS(3407), - [anon_sym_write] = ACTIONS(3407), - [anon_sym_from_json] = ACTIONS(3407), - [anon_sym_to_json] = ACTIONS(3407), - [anon_sym_to_string] = ACTIONS(3407), - [anon_sym_to_float] = ACTIONS(3407), - [anon_sym_bash] = ACTIONS(3407), - [anon_sym_fish] = ACTIONS(3407), - [anon_sym_raw] = ACTIONS(3407), - [anon_sym_sh] = ACTIONS(3407), - [anon_sym_zsh] = ACTIONS(3407), - [anon_sym_random] = ACTIONS(3407), - [anon_sym_random_boolean] = ACTIONS(3407), - [anon_sym_random_float] = ACTIONS(3407), - [anon_sym_random_integer] = ACTIONS(3407), - [anon_sym_columns] = ACTIONS(3407), - [anon_sym_rows] = ACTIONS(3407), - [anon_sym_reverse] = ACTIONS(3407), - }, - [846] = { - [ts_builtin_sym_end] = ACTIONS(3307), - [sym_identifier] = ACTIONS(3309), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3307), - [anon_sym_RBRACE] = ACTIONS(3307), - [anon_sym_SEMI] = ACTIONS(3307), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_RPAREN] = ACTIONS(3307), - [anon_sym_COMMA] = ACTIONS(3307), - [sym_integer] = ACTIONS(3309), - [sym_float] = ACTIONS(3307), - [sym_string] = ACTIONS(3307), - [anon_sym_true] = ACTIONS(3309), - [anon_sym_false] = ACTIONS(3309), - [anon_sym_LBRACK] = ACTIONS(3307), - [anon_sym_RBRACK] = ACTIONS(3307), - [anon_sym_COLON] = ACTIONS(3307), - [anon_sym_DOT_DOT] = ACTIONS(3307), - [anon_sym_PLUS] = ACTIONS(3307), - [anon_sym_DASH] = ACTIONS(3309), - [anon_sym_STAR] = ACTIONS(3307), - [anon_sym_SLASH] = ACTIONS(3307), - [anon_sym_PERCENT] = ACTIONS(3307), - [anon_sym_EQ_EQ] = ACTIONS(3307), - [anon_sym_BANG_EQ] = ACTIONS(3307), - [anon_sym_AMP_AMP] = ACTIONS(3307), - [anon_sym_PIPE_PIPE] = ACTIONS(3307), - [anon_sym_GT] = ACTIONS(3309), - [anon_sym_LT] = ACTIONS(3309), - [anon_sym_GT_EQ] = ACTIONS(3307), - [anon_sym_LT_EQ] = ACTIONS(3307), - [anon_sym_if] = ACTIONS(3309), - [anon_sym_match] = ACTIONS(3309), - [anon_sym_EQ_GT] = ACTIONS(3307), - [anon_sym_while] = ACTIONS(3309), - [anon_sym_for] = ACTIONS(3309), - [anon_sym_asyncfor] = ACTIONS(3307), - [anon_sym_transform] = ACTIONS(3309), - [anon_sym_filter] = ACTIONS(3309), - [anon_sym_find] = ACTIONS(3309), - [anon_sym_remove] = ACTIONS(3309), - [anon_sym_reduce] = ACTIONS(3309), - [anon_sym_select] = ACTIONS(3309), - [anon_sym_insert] = ACTIONS(3309), - [anon_sym_async] = ACTIONS(3309), - [anon_sym_PIPE] = ACTIONS(3309), - [anon_sym_table] = ACTIONS(3309), - [anon_sym_assert] = ACTIONS(3309), - [anon_sym_assert_equal] = ACTIONS(3309), - [anon_sym_download] = ACTIONS(3309), - [anon_sym_help] = ACTIONS(3309), - [anon_sym_length] = ACTIONS(3309), - [anon_sym_output] = ACTIONS(3309), - [anon_sym_output_error] = ACTIONS(3309), - [anon_sym_type] = ACTIONS(3309), - [anon_sym_append] = ACTIONS(3309), - [anon_sym_metadata] = ACTIONS(3309), - [anon_sym_move] = ACTIONS(3309), - [anon_sym_read] = ACTIONS(3309), - [anon_sym_workdir] = ACTIONS(3309), - [anon_sym_write] = ACTIONS(3309), - [anon_sym_from_json] = ACTIONS(3309), - [anon_sym_to_json] = ACTIONS(3309), - [anon_sym_to_string] = ACTIONS(3309), - [anon_sym_to_float] = ACTIONS(3309), - [anon_sym_bash] = ACTIONS(3309), - [anon_sym_fish] = ACTIONS(3309), - [anon_sym_raw] = ACTIONS(3309), - [anon_sym_sh] = ACTIONS(3309), - [anon_sym_zsh] = ACTIONS(3309), - [anon_sym_random] = ACTIONS(3309), - [anon_sym_random_boolean] = ACTIONS(3309), - [anon_sym_random_float] = ACTIONS(3309), - [anon_sym_random_integer] = ACTIONS(3309), - [anon_sym_columns] = ACTIONS(3309), - [anon_sym_rows] = ACTIONS(3309), - [anon_sym_reverse] = ACTIONS(3309), - }, - [847] = { - [sym_math_operator] = STATE(1142), - [sym_logic_operator] = STATE(1143), - [ts_builtin_sym_end] = ACTIONS(3248), - [sym_identifier] = ACTIONS(3250), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3248), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(3248), - [anon_sym_RPAREN] = ACTIONS(3248), - [sym_integer] = ACTIONS(3250), - [sym_float] = ACTIONS(3248), - [sym_string] = ACTIONS(3248), - [anon_sym_true] = ACTIONS(3250), - [anon_sym_false] = ACTIONS(3250), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_COLON] = ACTIONS(3248), - [anon_sym_DOT_DOT] = ACTIONS(3624), - [anon_sym_PLUS] = ACTIONS(3248), - [anon_sym_DASH] = ACTIONS(3250), - [anon_sym_STAR] = ACTIONS(3248), - [anon_sym_SLASH] = ACTIONS(3248), - [anon_sym_PERCENT] = ACTIONS(3248), - [anon_sym_EQ_EQ] = ACTIONS(3248), - [anon_sym_BANG_EQ] = ACTIONS(3248), - [anon_sym_AMP_AMP] = ACTIONS(3248), - [anon_sym_PIPE_PIPE] = ACTIONS(3248), - [anon_sym_GT] = ACTIONS(3250), - [anon_sym_LT] = ACTIONS(3250), - [anon_sym_GT_EQ] = ACTIONS(3248), - [anon_sym_LT_EQ] = ACTIONS(3248), - [anon_sym_if] = ACTIONS(3250), - [anon_sym_match] = ACTIONS(3250), - [anon_sym_EQ_GT] = ACTIONS(3248), - [anon_sym_while] = ACTIONS(3250), - [anon_sym_for] = ACTIONS(3250), - [anon_sym_asyncfor] = ACTIONS(3248), - [anon_sym_transform] = ACTIONS(3250), - [anon_sym_filter] = ACTIONS(3250), - [anon_sym_find] = ACTIONS(3250), - [anon_sym_remove] = ACTIONS(3250), - [anon_sym_reduce] = ACTIONS(3250), - [anon_sym_select] = ACTIONS(3250), - [anon_sym_insert] = ACTIONS(3250), - [anon_sym_async] = ACTIONS(3250), - [anon_sym_PIPE] = ACTIONS(3250), - [anon_sym_table] = ACTIONS(3250), - [anon_sym_assert] = ACTIONS(3250), - [anon_sym_assert_equal] = ACTIONS(3250), - [anon_sym_download] = ACTIONS(3250), - [anon_sym_help] = ACTIONS(3250), - [anon_sym_length] = ACTIONS(3250), - [anon_sym_output] = ACTIONS(3250), - [anon_sym_output_error] = ACTIONS(3250), - [anon_sym_type] = ACTIONS(3250), - [anon_sym_append] = ACTIONS(3250), - [anon_sym_metadata] = ACTIONS(3250), - [anon_sym_move] = ACTIONS(3250), - [anon_sym_read] = ACTIONS(3250), - [anon_sym_workdir] = ACTIONS(3250), - [anon_sym_write] = ACTIONS(3250), - [anon_sym_from_json] = ACTIONS(3250), - [anon_sym_to_json] = ACTIONS(3250), - [anon_sym_to_string] = ACTIONS(3250), - [anon_sym_to_float] = ACTIONS(3250), - [anon_sym_bash] = ACTIONS(3250), - [anon_sym_fish] = ACTIONS(3250), - [anon_sym_raw] = ACTIONS(3250), - [anon_sym_sh] = ACTIONS(3250), - [anon_sym_zsh] = ACTIONS(3250), - [anon_sym_random] = ACTIONS(3250), - [anon_sym_random_boolean] = ACTIONS(3250), - [anon_sym_random_float] = ACTIONS(3250), - [anon_sym_random_integer] = ACTIONS(3250), - [anon_sym_columns] = ACTIONS(3250), - [anon_sym_rows] = ACTIONS(3250), - [anon_sym_reverse] = ACTIONS(3250), - }, - [848] = { - [ts_builtin_sym_end] = ACTIONS(3371), - [sym_identifier] = ACTIONS(3373), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3371), - [anon_sym_RBRACE] = ACTIONS(3371), - [anon_sym_SEMI] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3371), - [anon_sym_RPAREN] = ACTIONS(3371), - [anon_sym_COMMA] = ACTIONS(3371), - [sym_integer] = ACTIONS(3373), - [sym_float] = ACTIONS(3371), - [sym_string] = ACTIONS(3371), - [anon_sym_true] = ACTIONS(3373), - [anon_sym_false] = ACTIONS(3373), - [anon_sym_LBRACK] = ACTIONS(3371), - [anon_sym_RBRACK] = ACTIONS(3371), - [anon_sym_COLON] = ACTIONS(3371), - [anon_sym_DOT_DOT] = ACTIONS(3371), - [anon_sym_PLUS] = ACTIONS(3371), - [anon_sym_DASH] = ACTIONS(3373), - [anon_sym_STAR] = ACTIONS(3371), - [anon_sym_SLASH] = ACTIONS(3371), - [anon_sym_PERCENT] = ACTIONS(3371), - [anon_sym_EQ_EQ] = ACTIONS(3371), - [anon_sym_BANG_EQ] = ACTIONS(3371), - [anon_sym_AMP_AMP] = ACTIONS(3371), - [anon_sym_PIPE_PIPE] = ACTIONS(3371), - [anon_sym_GT] = ACTIONS(3373), - [anon_sym_LT] = ACTIONS(3373), - [anon_sym_GT_EQ] = ACTIONS(3371), - [anon_sym_LT_EQ] = ACTIONS(3371), - [anon_sym_if] = ACTIONS(3373), - [anon_sym_match] = ACTIONS(3373), - [anon_sym_EQ_GT] = ACTIONS(3371), - [anon_sym_while] = ACTIONS(3373), - [anon_sym_for] = ACTIONS(3373), - [anon_sym_asyncfor] = ACTIONS(3371), - [anon_sym_transform] = ACTIONS(3373), - [anon_sym_filter] = ACTIONS(3373), - [anon_sym_find] = ACTIONS(3373), - [anon_sym_remove] = ACTIONS(3373), - [anon_sym_reduce] = ACTIONS(3373), - [anon_sym_select] = ACTIONS(3373), - [anon_sym_insert] = ACTIONS(3373), - [anon_sym_async] = ACTIONS(3373), - [anon_sym_PIPE] = ACTIONS(3373), - [anon_sym_table] = ACTIONS(3373), - [anon_sym_assert] = ACTIONS(3373), - [anon_sym_assert_equal] = ACTIONS(3373), - [anon_sym_download] = ACTIONS(3373), - [anon_sym_help] = ACTIONS(3373), - [anon_sym_length] = ACTIONS(3373), - [anon_sym_output] = ACTIONS(3373), - [anon_sym_output_error] = ACTIONS(3373), - [anon_sym_type] = ACTIONS(3373), - [anon_sym_append] = ACTIONS(3373), - [anon_sym_metadata] = ACTIONS(3373), - [anon_sym_move] = ACTIONS(3373), - [anon_sym_read] = ACTIONS(3373), - [anon_sym_workdir] = ACTIONS(3373), - [anon_sym_write] = ACTIONS(3373), - [anon_sym_from_json] = ACTIONS(3373), - [anon_sym_to_json] = ACTIONS(3373), - [anon_sym_to_string] = ACTIONS(3373), - [anon_sym_to_float] = ACTIONS(3373), - [anon_sym_bash] = ACTIONS(3373), - [anon_sym_fish] = ACTIONS(3373), - [anon_sym_raw] = ACTIONS(3373), - [anon_sym_sh] = ACTIONS(3373), - [anon_sym_zsh] = ACTIONS(3373), - [anon_sym_random] = ACTIONS(3373), - [anon_sym_random_boolean] = ACTIONS(3373), - [anon_sym_random_float] = ACTIONS(3373), - [anon_sym_random_integer] = ACTIONS(3373), - [anon_sym_columns] = ACTIONS(3373), - [anon_sym_rows] = ACTIONS(3373), - [anon_sym_reverse] = ACTIONS(3373), - }, - [849] = { - [sym_math_operator] = STATE(1142), - [sym_logic_operator] = STATE(1143), - [ts_builtin_sym_end] = ACTIONS(3252), - [sym_identifier] = ACTIONS(3254), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3252), - [anon_sym_RBRACE] = ACTIONS(3252), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_LPAREN] = ACTIONS(3252), - [anon_sym_RPAREN] = ACTIONS(3252), - [sym_integer] = ACTIONS(3254), - [sym_float] = ACTIONS(3252), - [sym_string] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_COLON] = ACTIONS(3252), - [anon_sym_DOT_DOT] = ACTIONS(3252), - [anon_sym_PLUS] = ACTIONS(3252), - [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_STAR] = ACTIONS(3252), - [anon_sym_SLASH] = ACTIONS(3252), - [anon_sym_PERCENT] = ACTIONS(3252), - [anon_sym_EQ_EQ] = ACTIONS(3252), - [anon_sym_BANG_EQ] = ACTIONS(3252), - [anon_sym_AMP_AMP] = ACTIONS(3252), - [anon_sym_PIPE_PIPE] = ACTIONS(3252), - [anon_sym_GT] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(3254), - [anon_sym_GT_EQ] = ACTIONS(3252), - [anon_sym_LT_EQ] = ACTIONS(3252), - [anon_sym_if] = ACTIONS(3254), - [anon_sym_match] = ACTIONS(3254), - [anon_sym_EQ_GT] = ACTIONS(3252), - [anon_sym_while] = ACTIONS(3254), - [anon_sym_for] = ACTIONS(3254), - [anon_sym_asyncfor] = ACTIONS(3252), - [anon_sym_transform] = ACTIONS(3254), - [anon_sym_filter] = ACTIONS(3254), - [anon_sym_find] = ACTIONS(3254), - [anon_sym_remove] = ACTIONS(3254), - [anon_sym_reduce] = ACTIONS(3254), - [anon_sym_select] = ACTIONS(3254), - [anon_sym_insert] = ACTIONS(3254), - [anon_sym_async] = ACTIONS(3254), - [anon_sym_PIPE] = ACTIONS(3254), - [anon_sym_table] = ACTIONS(3254), - [anon_sym_assert] = ACTIONS(3254), - [anon_sym_assert_equal] = ACTIONS(3254), - [anon_sym_download] = ACTIONS(3254), - [anon_sym_help] = ACTIONS(3254), - [anon_sym_length] = ACTIONS(3254), - [anon_sym_output] = ACTIONS(3254), - [anon_sym_output_error] = ACTIONS(3254), - [anon_sym_type] = ACTIONS(3254), - [anon_sym_append] = ACTIONS(3254), - [anon_sym_metadata] = ACTIONS(3254), - [anon_sym_move] = ACTIONS(3254), - [anon_sym_read] = ACTIONS(3254), - [anon_sym_workdir] = ACTIONS(3254), - [anon_sym_write] = ACTIONS(3254), - [anon_sym_from_json] = ACTIONS(3254), - [anon_sym_to_json] = ACTIONS(3254), - [anon_sym_to_string] = ACTIONS(3254), - [anon_sym_to_float] = ACTIONS(3254), - [anon_sym_bash] = ACTIONS(3254), - [anon_sym_fish] = ACTIONS(3254), - [anon_sym_raw] = ACTIONS(3254), - [anon_sym_sh] = ACTIONS(3254), - [anon_sym_zsh] = ACTIONS(3254), - [anon_sym_random] = ACTIONS(3254), - [anon_sym_random_boolean] = ACTIONS(3254), - [anon_sym_random_float] = ACTIONS(3254), - [anon_sym_random_integer] = ACTIONS(3254), - [anon_sym_columns] = ACTIONS(3254), - [anon_sym_rows] = ACTIONS(3254), - [anon_sym_reverse] = ACTIONS(3254), - }, - [850] = { - [sym_math_operator] = STATE(1142), - [sym_logic_operator] = STATE(1143), - [ts_builtin_sym_end] = ACTIONS(3240), - [sym_identifier] = ACTIONS(3242), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3240), - [anon_sym_SEMI] = ACTIONS(3240), - [anon_sym_LPAREN] = ACTIONS(3240), - [anon_sym_RPAREN] = ACTIONS(3240), - [sym_integer] = ACTIONS(3242), - [sym_float] = ACTIONS(3240), - [sym_string] = ACTIONS(3240), - [anon_sym_true] = ACTIONS(3242), - [anon_sym_false] = ACTIONS(3242), - [anon_sym_LBRACK] = ACTIONS(3240), - [anon_sym_COLON] = ACTIONS(1438), - [anon_sym_DOT_DOT] = ACTIONS(3240), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(3242), - [anon_sym_match] = ACTIONS(3242), - [anon_sym_EQ_GT] = ACTIONS(3240), - [anon_sym_while] = ACTIONS(3242), - [anon_sym_for] = ACTIONS(3242), - [anon_sym_asyncfor] = ACTIONS(3240), - [anon_sym_transform] = ACTIONS(3242), - [anon_sym_filter] = ACTIONS(3242), - [anon_sym_find] = ACTIONS(3242), - [anon_sym_remove] = ACTIONS(3242), - [anon_sym_reduce] = ACTIONS(3242), - [anon_sym_select] = ACTIONS(3242), - [anon_sym_insert] = ACTIONS(3242), - [anon_sym_async] = ACTIONS(3242), - [anon_sym_PIPE] = ACTIONS(3242), - [anon_sym_table] = ACTIONS(3242), - [anon_sym_assert] = ACTIONS(3242), - [anon_sym_assert_equal] = ACTIONS(3242), - [anon_sym_download] = ACTIONS(3242), - [anon_sym_help] = ACTIONS(3242), - [anon_sym_length] = ACTIONS(3242), - [anon_sym_output] = ACTIONS(3242), - [anon_sym_output_error] = ACTIONS(3242), - [anon_sym_type] = ACTIONS(3242), - [anon_sym_append] = ACTIONS(3242), - [anon_sym_metadata] = ACTIONS(3242), - [anon_sym_move] = ACTIONS(3242), - [anon_sym_read] = ACTIONS(3242), - [anon_sym_workdir] = ACTIONS(3242), - [anon_sym_write] = ACTIONS(3242), - [anon_sym_from_json] = ACTIONS(3242), - [anon_sym_to_json] = ACTIONS(3242), - [anon_sym_to_string] = ACTIONS(3242), - [anon_sym_to_float] = ACTIONS(3242), - [anon_sym_bash] = ACTIONS(3242), - [anon_sym_fish] = ACTIONS(3242), - [anon_sym_raw] = ACTIONS(3242), - [anon_sym_sh] = ACTIONS(3242), - [anon_sym_zsh] = ACTIONS(3242), - [anon_sym_random] = ACTIONS(3242), - [anon_sym_random_boolean] = ACTIONS(3242), - [anon_sym_random_float] = ACTIONS(3242), - [anon_sym_random_integer] = ACTIONS(3242), - [anon_sym_columns] = ACTIONS(3242), - [anon_sym_rows] = ACTIONS(3242), - [anon_sym_reverse] = ACTIONS(3242), - }, - [851] = { - [ts_builtin_sym_end] = ACTIONS(3317), - [sym_identifier] = ACTIONS(3319), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3317), - [anon_sym_RBRACE] = ACTIONS(3317), - [anon_sym_SEMI] = ACTIONS(3317), - [anon_sym_LPAREN] = ACTIONS(3317), - [anon_sym_RPAREN] = ACTIONS(3317), - [anon_sym_COMMA] = ACTIONS(3317), - [sym_integer] = ACTIONS(3319), - [sym_float] = ACTIONS(3317), - [sym_string] = ACTIONS(3317), - [anon_sym_true] = ACTIONS(3319), - [anon_sym_false] = ACTIONS(3319), - [anon_sym_LBRACK] = ACTIONS(3317), - [anon_sym_RBRACK] = ACTIONS(3317), - [anon_sym_COLON] = ACTIONS(3317), - [anon_sym_DOT_DOT] = ACTIONS(3317), - [anon_sym_PLUS] = ACTIONS(3317), - [anon_sym_DASH] = ACTIONS(3319), - [anon_sym_STAR] = ACTIONS(3317), - [anon_sym_SLASH] = ACTIONS(3317), - [anon_sym_PERCENT] = ACTIONS(3317), - [anon_sym_EQ_EQ] = ACTIONS(3317), - [anon_sym_BANG_EQ] = ACTIONS(3317), - [anon_sym_AMP_AMP] = ACTIONS(3317), - [anon_sym_PIPE_PIPE] = ACTIONS(3317), - [anon_sym_GT] = ACTIONS(3319), - [anon_sym_LT] = ACTIONS(3319), - [anon_sym_GT_EQ] = ACTIONS(3317), - [anon_sym_LT_EQ] = ACTIONS(3317), - [anon_sym_if] = ACTIONS(3319), - [anon_sym_match] = ACTIONS(3319), - [anon_sym_EQ_GT] = ACTIONS(3317), - [anon_sym_while] = ACTIONS(3319), - [anon_sym_for] = ACTIONS(3319), - [anon_sym_asyncfor] = ACTIONS(3317), - [anon_sym_transform] = ACTIONS(3319), - [anon_sym_filter] = ACTIONS(3319), - [anon_sym_find] = ACTIONS(3319), - [anon_sym_remove] = ACTIONS(3319), - [anon_sym_reduce] = ACTIONS(3319), - [anon_sym_select] = ACTIONS(3319), - [anon_sym_insert] = ACTIONS(3319), - [anon_sym_async] = ACTIONS(3319), - [anon_sym_PIPE] = ACTIONS(3319), - [anon_sym_table] = ACTIONS(3319), - [anon_sym_assert] = ACTIONS(3319), - [anon_sym_assert_equal] = ACTIONS(3319), - [anon_sym_download] = ACTIONS(3319), - [anon_sym_help] = ACTIONS(3319), - [anon_sym_length] = ACTIONS(3319), - [anon_sym_output] = ACTIONS(3319), - [anon_sym_output_error] = ACTIONS(3319), - [anon_sym_type] = ACTIONS(3319), - [anon_sym_append] = ACTIONS(3319), - [anon_sym_metadata] = ACTIONS(3319), - [anon_sym_move] = ACTIONS(3319), - [anon_sym_read] = ACTIONS(3319), - [anon_sym_workdir] = ACTIONS(3319), - [anon_sym_write] = ACTIONS(3319), - [anon_sym_from_json] = ACTIONS(3319), - [anon_sym_to_json] = ACTIONS(3319), - [anon_sym_to_string] = ACTIONS(3319), - [anon_sym_to_float] = ACTIONS(3319), - [anon_sym_bash] = ACTIONS(3319), - [anon_sym_fish] = ACTIONS(3319), - [anon_sym_raw] = ACTIONS(3319), - [anon_sym_sh] = ACTIONS(3319), - [anon_sym_zsh] = ACTIONS(3319), - [anon_sym_random] = ACTIONS(3319), - [anon_sym_random_boolean] = ACTIONS(3319), - [anon_sym_random_float] = ACTIONS(3319), - [anon_sym_random_integer] = ACTIONS(3319), - [anon_sym_columns] = ACTIONS(3319), - [anon_sym_rows] = ACTIONS(3319), - [anon_sym_reverse] = ACTIONS(3319), - }, - [852] = { - [sym_math_operator] = STATE(1142), - [sym_logic_operator] = STATE(1143), - [ts_builtin_sym_end] = ACTIONS(3262), - [sym_identifier] = ACTIONS(3264), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3262), - [anon_sym_SEMI] = ACTIONS(3262), - [anon_sym_LPAREN] = ACTIONS(3262), - [anon_sym_RPAREN] = ACTIONS(3262), - [sym_integer] = ACTIONS(3264), - [sym_float] = ACTIONS(3262), - [sym_string] = ACTIONS(3262), - [anon_sym_true] = ACTIONS(3264), - [anon_sym_false] = ACTIONS(3264), - [anon_sym_LBRACK] = ACTIONS(3262), - [anon_sym_COLON] = ACTIONS(3262), - [anon_sym_DOT_DOT] = ACTIONS(3262), - [anon_sym_PLUS] = ACTIONS(3262), - [anon_sym_DASH] = ACTIONS(3264), - [anon_sym_STAR] = ACTIONS(3262), - [anon_sym_SLASH] = ACTIONS(3262), - [anon_sym_PERCENT] = ACTIONS(3262), - [anon_sym_EQ_EQ] = ACTIONS(3262), - [anon_sym_BANG_EQ] = ACTIONS(3262), - [anon_sym_AMP_AMP] = ACTIONS(3262), - [anon_sym_PIPE_PIPE] = ACTIONS(3262), - [anon_sym_GT] = ACTIONS(3264), - [anon_sym_LT] = ACTIONS(3264), - [anon_sym_GT_EQ] = ACTIONS(3262), - [anon_sym_LT_EQ] = ACTIONS(3262), - [anon_sym_if] = ACTIONS(3264), - [anon_sym_match] = ACTIONS(3264), - [anon_sym_EQ_GT] = ACTIONS(3262), - [anon_sym_while] = ACTIONS(3264), - [anon_sym_for] = ACTIONS(3264), - [anon_sym_asyncfor] = ACTIONS(3262), - [anon_sym_transform] = ACTIONS(3264), - [anon_sym_filter] = ACTIONS(3264), - [anon_sym_find] = ACTIONS(3264), - [anon_sym_remove] = ACTIONS(3264), - [anon_sym_reduce] = ACTIONS(3264), - [anon_sym_select] = ACTIONS(3264), - [anon_sym_insert] = ACTIONS(3264), - [anon_sym_async] = ACTIONS(3264), - [anon_sym_PIPE] = ACTIONS(3264), - [anon_sym_table] = ACTIONS(3264), - [anon_sym_assert] = ACTIONS(3264), - [anon_sym_assert_equal] = ACTIONS(3264), - [anon_sym_download] = ACTIONS(3264), - [anon_sym_help] = ACTIONS(3264), - [anon_sym_length] = ACTIONS(3264), - [anon_sym_output] = ACTIONS(3264), - [anon_sym_output_error] = ACTIONS(3264), - [anon_sym_type] = ACTIONS(3264), - [anon_sym_append] = ACTIONS(3264), - [anon_sym_metadata] = ACTIONS(3264), - [anon_sym_move] = ACTIONS(3264), - [anon_sym_read] = ACTIONS(3264), - [anon_sym_workdir] = ACTIONS(3264), - [anon_sym_write] = ACTIONS(3264), - [anon_sym_from_json] = ACTIONS(3264), - [anon_sym_to_json] = ACTIONS(3264), - [anon_sym_to_string] = ACTIONS(3264), - [anon_sym_to_float] = ACTIONS(3264), - [anon_sym_bash] = ACTIONS(3264), - [anon_sym_fish] = ACTIONS(3264), - [anon_sym_raw] = ACTIONS(3264), - [anon_sym_sh] = ACTIONS(3264), - [anon_sym_zsh] = ACTIONS(3264), - [anon_sym_random] = ACTIONS(3264), - [anon_sym_random_boolean] = ACTIONS(3264), - [anon_sym_random_float] = ACTIONS(3264), - [anon_sym_random_integer] = ACTIONS(3264), - [anon_sym_columns] = ACTIONS(3264), - [anon_sym_rows] = ACTIONS(3264), - [anon_sym_reverse] = ACTIONS(3264), - }, - [853] = { - [sym_math_operator] = STATE(1142), - [sym_logic_operator] = STATE(1143), - [ts_builtin_sym_end] = ACTIONS(3275), - [sym_identifier] = ACTIONS(3277), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3275), - [anon_sym_RBRACE] = ACTIONS(3275), - [anon_sym_SEMI] = ACTIONS(3594), - [anon_sym_LPAREN] = ACTIONS(3275), - [anon_sym_RPAREN] = ACTIONS(3275), - [sym_integer] = ACTIONS(3277), - [sym_float] = ACTIONS(3275), - [sym_string] = ACTIONS(3275), - [anon_sym_true] = ACTIONS(3277), - [anon_sym_false] = ACTIONS(3277), - [anon_sym_LBRACK] = ACTIONS(3275), - [anon_sym_COLON] = ACTIONS(495), - [anon_sym_DOT_DOT] = ACTIONS(3275), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(3277), - [anon_sym_match] = ACTIONS(3277), - [anon_sym_EQ_GT] = ACTIONS(3275), - [anon_sym_while] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3277), - [anon_sym_asyncfor] = ACTIONS(3275), - [anon_sym_transform] = ACTIONS(3277), - [anon_sym_filter] = ACTIONS(3277), - [anon_sym_find] = ACTIONS(3277), - [anon_sym_remove] = ACTIONS(3277), - [anon_sym_reduce] = ACTIONS(3277), - [anon_sym_select] = ACTIONS(3277), - [anon_sym_insert] = ACTIONS(3277), - [anon_sym_async] = ACTIONS(3277), - [anon_sym_PIPE] = ACTIONS(3277), - [anon_sym_table] = ACTIONS(3277), - [anon_sym_assert] = ACTIONS(3277), - [anon_sym_assert_equal] = ACTIONS(3277), - [anon_sym_download] = ACTIONS(3277), - [anon_sym_help] = ACTIONS(3277), - [anon_sym_length] = ACTIONS(3277), - [anon_sym_output] = ACTIONS(3277), - [anon_sym_output_error] = ACTIONS(3277), - [anon_sym_type] = ACTIONS(3277), - [anon_sym_append] = ACTIONS(3277), - [anon_sym_metadata] = ACTIONS(3277), - [anon_sym_move] = ACTIONS(3277), - [anon_sym_read] = ACTIONS(3277), - [anon_sym_workdir] = ACTIONS(3277), - [anon_sym_write] = ACTIONS(3277), - [anon_sym_from_json] = ACTIONS(3277), - [anon_sym_to_json] = ACTIONS(3277), - [anon_sym_to_string] = ACTIONS(3277), - [anon_sym_to_float] = ACTIONS(3277), - [anon_sym_bash] = ACTIONS(3277), - [anon_sym_fish] = ACTIONS(3277), - [anon_sym_raw] = ACTIONS(3277), - [anon_sym_sh] = ACTIONS(3277), - [anon_sym_zsh] = ACTIONS(3277), - [anon_sym_random] = ACTIONS(3277), - [anon_sym_random_boolean] = ACTIONS(3277), - [anon_sym_random_float] = ACTIONS(3277), - [anon_sym_random_integer] = ACTIONS(3277), - [anon_sym_columns] = ACTIONS(3277), - [anon_sym_rows] = ACTIONS(3277), - [anon_sym_reverse] = ACTIONS(3277), - }, - [854] = { - [sym_math_operator] = STATE(1142), - [sym_logic_operator] = STATE(1143), - [ts_builtin_sym_end] = ACTIONS(3281), - [sym_identifier] = ACTIONS(3283), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3281), - [anon_sym_RBRACE] = ACTIONS(3281), - [anon_sym_SEMI] = ACTIONS(3281), - [anon_sym_LPAREN] = ACTIONS(3281), - [anon_sym_RPAREN] = ACTIONS(3281), - [sym_integer] = ACTIONS(3283), - [sym_float] = ACTIONS(3281), - [sym_string] = ACTIONS(3281), - [anon_sym_true] = ACTIONS(3283), - [anon_sym_false] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3281), - [anon_sym_COLON] = ACTIONS(1438), - [anon_sym_DOT_DOT] = ACTIONS(3281), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(3283), - [anon_sym_match] = ACTIONS(3283), - [anon_sym_EQ_GT] = ACTIONS(3281), - [anon_sym_while] = ACTIONS(3283), - [anon_sym_for] = ACTIONS(3283), - [anon_sym_asyncfor] = ACTIONS(3281), - [anon_sym_transform] = ACTIONS(3283), - [anon_sym_filter] = ACTIONS(3283), - [anon_sym_find] = ACTIONS(3283), - [anon_sym_remove] = ACTIONS(3283), - [anon_sym_reduce] = ACTIONS(3283), - [anon_sym_select] = ACTIONS(3283), - [anon_sym_insert] = ACTIONS(3283), - [anon_sym_async] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(3283), - [anon_sym_table] = ACTIONS(3283), - [anon_sym_assert] = ACTIONS(3283), - [anon_sym_assert_equal] = ACTIONS(3283), - [anon_sym_download] = ACTIONS(3283), - [anon_sym_help] = ACTIONS(3283), - [anon_sym_length] = ACTIONS(3283), - [anon_sym_output] = ACTIONS(3283), - [anon_sym_output_error] = ACTIONS(3283), - [anon_sym_type] = ACTIONS(3283), - [anon_sym_append] = ACTIONS(3283), - [anon_sym_metadata] = ACTIONS(3283), - [anon_sym_move] = ACTIONS(3283), - [anon_sym_read] = ACTIONS(3283), - [anon_sym_workdir] = ACTIONS(3283), - [anon_sym_write] = ACTIONS(3283), - [anon_sym_from_json] = ACTIONS(3283), - [anon_sym_to_json] = ACTIONS(3283), - [anon_sym_to_string] = ACTIONS(3283), - [anon_sym_to_float] = ACTIONS(3283), - [anon_sym_bash] = ACTIONS(3283), - [anon_sym_fish] = ACTIONS(3283), - [anon_sym_raw] = ACTIONS(3283), - [anon_sym_sh] = ACTIONS(3283), - [anon_sym_zsh] = ACTIONS(3283), - [anon_sym_random] = ACTIONS(3283), - [anon_sym_random_boolean] = ACTIONS(3283), - [anon_sym_random_float] = ACTIONS(3283), - [anon_sym_random_integer] = ACTIONS(3283), - [anon_sym_columns] = ACTIONS(3283), - [anon_sym_rows] = ACTIONS(3283), - [anon_sym_reverse] = ACTIONS(3283), - }, - [855] = { - [sym_expression] = STATE(975), - [sym__expression_kind] = STATE(1002), - [aux_sym__expression_list] = STATE(773), - [sym_value] = STATE(1002), - [sym_boolean] = STATE(996), - [sym_list] = STATE(996), - [sym_map] = STATE(996), - [sym_index] = STATE(1002), - [sym_math] = STATE(1002), - [sym_logic] = STATE(1002), - [sym_identifier_list] = STATE(1980), - [sym_table] = STATE(996), - [sym_function] = STATE(996), - [sym_function_call] = STATE(1002), - [sym__context_defined_function] = STATE(1009), - [sym_built_in_function] = STATE(1009), - [sym__built_in_function_name] = STATE(780), - [sym_identifier] = ACTIONS(2437), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3503), - [anon_sym_RBRACE] = ACTIONS(2435), - [anon_sym_SEMI] = ACTIONS(2435), - [anon_sym_LPAREN] = ACTIONS(3505), - [anon_sym_COMMA] = ACTIONS(2435), - [sym_integer] = ACTIONS(3507), - [sym_float] = ACTIONS(3509), - [sym_string] = ACTIONS(3509), - [anon_sym_true] = ACTIONS(3511), - [anon_sym_false] = ACTIONS(3511), - [anon_sym_LBRACK] = ACTIONS(3513), - [anon_sym_COLON] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2435), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_PERCENT] = ACTIONS(2435), - [anon_sym_EQ_EQ] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_PIPE_PIPE] = ACTIONS(2435), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_EQ_GT] = ACTIONS(3515), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(3517), - [anon_sym_assert] = ACTIONS(3145), - [anon_sym_assert_equal] = ACTIONS(3145), - [anon_sym_download] = ACTIONS(3145), - [anon_sym_help] = ACTIONS(3145), - [anon_sym_length] = ACTIONS(3145), - [anon_sym_output] = ACTIONS(3145), - [anon_sym_output_error] = ACTIONS(3145), - [anon_sym_type] = ACTIONS(3145), - [anon_sym_append] = ACTIONS(3145), - [anon_sym_metadata] = ACTIONS(3145), - [anon_sym_move] = ACTIONS(3145), - [anon_sym_read] = ACTIONS(3145), - [anon_sym_workdir] = ACTIONS(3145), - [anon_sym_write] = ACTIONS(3145), - [anon_sym_from_json] = ACTIONS(3145), - [anon_sym_to_json] = ACTIONS(3145), - [anon_sym_to_string] = ACTIONS(3145), - [anon_sym_to_float] = ACTIONS(3145), - [anon_sym_bash] = ACTIONS(3145), - [anon_sym_fish] = ACTIONS(3145), - [anon_sym_raw] = ACTIONS(3145), - [anon_sym_sh] = ACTIONS(3145), - [anon_sym_zsh] = ACTIONS(3145), - [anon_sym_random] = ACTIONS(3145), - [anon_sym_random_boolean] = ACTIONS(3145), - [anon_sym_random_float] = ACTIONS(3145), - [anon_sym_random_integer] = ACTIONS(3145), - [anon_sym_columns] = ACTIONS(3145), - [anon_sym_rows] = ACTIONS(3145), - [anon_sym_reverse] = ACTIONS(3145), - }, - [856] = { - [ts_builtin_sym_end] = ACTIONS(3432), - [sym_identifier] = ACTIONS(3434), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3432), - [anon_sym_RBRACE] = ACTIONS(3432), - [anon_sym_SEMI] = ACTIONS(3432), - [anon_sym_LPAREN] = ACTIONS(3432), - [anon_sym_RPAREN] = ACTIONS(3432), - [anon_sym_COMMA] = ACTIONS(3432), - [sym_integer] = ACTIONS(3434), - [sym_float] = ACTIONS(3432), - [sym_string] = ACTIONS(3432), - [anon_sym_true] = ACTIONS(3434), - [anon_sym_false] = ACTIONS(3434), - [anon_sym_LBRACK] = ACTIONS(3432), - [anon_sym_RBRACK] = ACTIONS(3432), - [anon_sym_COLON] = ACTIONS(3432), - [anon_sym_DOT_DOT] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3432), - [anon_sym_DASH] = ACTIONS(3434), - [anon_sym_STAR] = ACTIONS(3432), - [anon_sym_SLASH] = ACTIONS(3432), - [anon_sym_PERCENT] = ACTIONS(3432), - [anon_sym_EQ_EQ] = ACTIONS(3432), - [anon_sym_BANG_EQ] = ACTIONS(3432), - [anon_sym_AMP_AMP] = ACTIONS(3432), - [anon_sym_PIPE_PIPE] = ACTIONS(3432), - [anon_sym_GT] = ACTIONS(3434), - [anon_sym_LT] = ACTIONS(3434), - [anon_sym_GT_EQ] = ACTIONS(3432), - [anon_sym_LT_EQ] = ACTIONS(3432), - [anon_sym_if] = ACTIONS(3434), - [anon_sym_match] = ACTIONS(3434), - [anon_sym_EQ_GT] = ACTIONS(3432), - [anon_sym_while] = ACTIONS(3434), - [anon_sym_for] = ACTIONS(3434), - [anon_sym_asyncfor] = ACTIONS(3432), - [anon_sym_transform] = ACTIONS(3434), - [anon_sym_filter] = ACTIONS(3434), - [anon_sym_find] = ACTIONS(3434), - [anon_sym_remove] = ACTIONS(3434), - [anon_sym_reduce] = ACTIONS(3434), - [anon_sym_select] = ACTIONS(3434), - [anon_sym_insert] = ACTIONS(3434), - [anon_sym_async] = ACTIONS(3434), - [anon_sym_PIPE] = ACTIONS(3434), - [anon_sym_table] = ACTIONS(3434), - [anon_sym_assert] = ACTIONS(3434), - [anon_sym_assert_equal] = ACTIONS(3434), - [anon_sym_download] = ACTIONS(3434), - [anon_sym_help] = ACTIONS(3434), - [anon_sym_length] = ACTIONS(3434), - [anon_sym_output] = ACTIONS(3434), - [anon_sym_output_error] = ACTIONS(3434), - [anon_sym_type] = ACTIONS(3434), - [anon_sym_append] = ACTIONS(3434), - [anon_sym_metadata] = ACTIONS(3434), - [anon_sym_move] = ACTIONS(3434), - [anon_sym_read] = ACTIONS(3434), - [anon_sym_workdir] = ACTIONS(3434), - [anon_sym_write] = ACTIONS(3434), - [anon_sym_from_json] = ACTIONS(3434), - [anon_sym_to_json] = ACTIONS(3434), - [anon_sym_to_string] = ACTIONS(3434), - [anon_sym_to_float] = ACTIONS(3434), - [anon_sym_bash] = ACTIONS(3434), - [anon_sym_fish] = ACTIONS(3434), - [anon_sym_raw] = ACTIONS(3434), - [anon_sym_sh] = ACTIONS(3434), - [anon_sym_zsh] = ACTIONS(3434), - [anon_sym_random] = ACTIONS(3434), - [anon_sym_random_boolean] = ACTIONS(3434), - [anon_sym_random_float] = ACTIONS(3434), - [anon_sym_random_integer] = ACTIONS(3434), - [anon_sym_columns] = ACTIONS(3434), - [anon_sym_rows] = ACTIONS(3434), - [anon_sym_reverse] = ACTIONS(3434), - }, - [857] = { - [ts_builtin_sym_end] = ACTIONS(3325), - [sym_identifier] = ACTIONS(3327), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3325), - [anon_sym_RBRACE] = ACTIONS(3325), - [anon_sym_SEMI] = ACTIONS(3325), - [anon_sym_LPAREN] = ACTIONS(3325), - [anon_sym_RPAREN] = ACTIONS(3325), - [anon_sym_COMMA] = ACTIONS(3325), - [sym_integer] = ACTIONS(3327), - [sym_float] = ACTIONS(3325), - [sym_string] = ACTIONS(3325), - [anon_sym_true] = ACTIONS(3327), - [anon_sym_false] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3325), - [anon_sym_RBRACK] = ACTIONS(3325), - [anon_sym_COLON] = ACTIONS(3325), - [anon_sym_DOT_DOT] = ACTIONS(3325), - [anon_sym_PLUS] = ACTIONS(3325), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_STAR] = ACTIONS(3325), - [anon_sym_SLASH] = ACTIONS(3325), - [anon_sym_PERCENT] = ACTIONS(3325), - [anon_sym_EQ_EQ] = ACTIONS(3325), - [anon_sym_BANG_EQ] = ACTIONS(3325), - [anon_sym_AMP_AMP] = ACTIONS(3325), - [anon_sym_PIPE_PIPE] = ACTIONS(3325), - [anon_sym_GT] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_GT_EQ] = ACTIONS(3325), - [anon_sym_LT_EQ] = ACTIONS(3325), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_match] = ACTIONS(3327), - [anon_sym_EQ_GT] = ACTIONS(3325), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_asyncfor] = ACTIONS(3325), - [anon_sym_transform] = ACTIONS(3327), - [anon_sym_filter] = ACTIONS(3327), - [anon_sym_find] = ACTIONS(3327), - [anon_sym_remove] = ACTIONS(3327), - [anon_sym_reduce] = ACTIONS(3327), - [anon_sym_select] = ACTIONS(3327), - [anon_sym_insert] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_PIPE] = ACTIONS(3327), - [anon_sym_table] = ACTIONS(3327), - [anon_sym_assert] = ACTIONS(3327), - [anon_sym_assert_equal] = ACTIONS(3327), - [anon_sym_download] = ACTIONS(3327), - [anon_sym_help] = ACTIONS(3327), - [anon_sym_length] = ACTIONS(3327), - [anon_sym_output] = ACTIONS(3327), - [anon_sym_output_error] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_append] = ACTIONS(3327), - [anon_sym_metadata] = ACTIONS(3327), - [anon_sym_move] = ACTIONS(3327), - [anon_sym_read] = ACTIONS(3327), - [anon_sym_workdir] = ACTIONS(3327), - [anon_sym_write] = ACTIONS(3327), - [anon_sym_from_json] = ACTIONS(3327), - [anon_sym_to_json] = ACTIONS(3327), - [anon_sym_to_string] = ACTIONS(3327), - [anon_sym_to_float] = ACTIONS(3327), - [anon_sym_bash] = ACTIONS(3327), - [anon_sym_fish] = ACTIONS(3327), - [anon_sym_raw] = ACTIONS(3327), - [anon_sym_sh] = ACTIONS(3327), - [anon_sym_zsh] = ACTIONS(3327), - [anon_sym_random] = ACTIONS(3327), - [anon_sym_random_boolean] = ACTIONS(3327), - [anon_sym_random_float] = ACTIONS(3327), - [anon_sym_random_integer] = ACTIONS(3327), - [anon_sym_columns] = ACTIONS(3327), - [anon_sym_rows] = ACTIONS(3327), - [anon_sym_reverse] = ACTIONS(3327), - }, - [858] = { - [ts_builtin_sym_end] = ACTIONS(3321), - [sym_identifier] = ACTIONS(3323), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3321), - [anon_sym_RBRACE] = ACTIONS(3321), - [anon_sym_SEMI] = ACTIONS(3321), - [anon_sym_LPAREN] = ACTIONS(3321), - [anon_sym_RPAREN] = ACTIONS(3321), - [anon_sym_COMMA] = ACTIONS(3321), - [sym_integer] = ACTIONS(3323), - [sym_float] = ACTIONS(3321), - [sym_string] = ACTIONS(3321), - [anon_sym_true] = ACTIONS(3323), - [anon_sym_false] = ACTIONS(3323), - [anon_sym_LBRACK] = ACTIONS(3321), - [anon_sym_RBRACK] = ACTIONS(3321), - [anon_sym_COLON] = ACTIONS(3321), - [anon_sym_DOT_DOT] = ACTIONS(3321), - [anon_sym_PLUS] = ACTIONS(3321), - [anon_sym_DASH] = ACTIONS(3323), - [anon_sym_STAR] = ACTIONS(3321), - [anon_sym_SLASH] = ACTIONS(3321), - [anon_sym_PERCENT] = ACTIONS(3321), - [anon_sym_EQ_EQ] = ACTIONS(3321), - [anon_sym_BANG_EQ] = ACTIONS(3321), - [anon_sym_AMP_AMP] = ACTIONS(3321), - [anon_sym_PIPE_PIPE] = ACTIONS(3321), - [anon_sym_GT] = ACTIONS(3323), - [anon_sym_LT] = ACTIONS(3323), - [anon_sym_GT_EQ] = ACTIONS(3321), - [anon_sym_LT_EQ] = ACTIONS(3321), - [anon_sym_if] = ACTIONS(3323), - [anon_sym_match] = ACTIONS(3323), - [anon_sym_EQ_GT] = ACTIONS(3321), - [anon_sym_while] = ACTIONS(3323), - [anon_sym_for] = ACTIONS(3323), - [anon_sym_asyncfor] = ACTIONS(3321), - [anon_sym_transform] = ACTIONS(3323), - [anon_sym_filter] = ACTIONS(3323), - [anon_sym_find] = ACTIONS(3323), - [anon_sym_remove] = ACTIONS(3323), - [anon_sym_reduce] = ACTIONS(3323), - [anon_sym_select] = ACTIONS(3323), - [anon_sym_insert] = ACTIONS(3323), - [anon_sym_async] = ACTIONS(3323), - [anon_sym_PIPE] = ACTIONS(3323), - [anon_sym_table] = ACTIONS(3323), - [anon_sym_assert] = ACTIONS(3323), - [anon_sym_assert_equal] = ACTIONS(3323), - [anon_sym_download] = ACTIONS(3323), - [anon_sym_help] = ACTIONS(3323), - [anon_sym_length] = ACTIONS(3323), - [anon_sym_output] = ACTIONS(3323), - [anon_sym_output_error] = ACTIONS(3323), - [anon_sym_type] = ACTIONS(3323), - [anon_sym_append] = ACTIONS(3323), - [anon_sym_metadata] = ACTIONS(3323), - [anon_sym_move] = ACTIONS(3323), - [anon_sym_read] = ACTIONS(3323), - [anon_sym_workdir] = ACTIONS(3323), - [anon_sym_write] = ACTIONS(3323), - [anon_sym_from_json] = ACTIONS(3323), - [anon_sym_to_json] = ACTIONS(3323), - [anon_sym_to_string] = ACTIONS(3323), - [anon_sym_to_float] = ACTIONS(3323), - [anon_sym_bash] = ACTIONS(3323), - [anon_sym_fish] = ACTIONS(3323), - [anon_sym_raw] = ACTIONS(3323), - [anon_sym_sh] = ACTIONS(3323), - [anon_sym_zsh] = ACTIONS(3323), - [anon_sym_random] = ACTIONS(3323), - [anon_sym_random_boolean] = ACTIONS(3323), - [anon_sym_random_float] = ACTIONS(3323), - [anon_sym_random_integer] = ACTIONS(3323), - [anon_sym_columns] = ACTIONS(3323), - [anon_sym_rows] = ACTIONS(3323), - [anon_sym_reverse] = ACTIONS(3323), - }, - [859] = { - [sym_math_operator] = STATE(1322), - [sym_logic_operator] = STATE(1321), - [sym_identifier] = ACTIONS(3277), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3275), - [anon_sym_RBRACE] = ACTIONS(3275), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3275), - [anon_sym_COMMA] = ACTIONS(3275), - [sym_integer] = ACTIONS(3277), - [sym_float] = ACTIONS(3275), - [sym_string] = ACTIONS(3275), - [anon_sym_true] = ACTIONS(3277), - [anon_sym_false] = ACTIONS(3277), - [anon_sym_LBRACK] = ACTIONS(3275), - [anon_sym_COLON] = ACTIONS(115), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(3277), - [anon_sym_elseif] = ACTIONS(3275), - [anon_sym_else] = ACTIONS(3277), - [anon_sym_match] = ACTIONS(3277), - [anon_sym_EQ_GT] = ACTIONS(3275), - [anon_sym_while] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3277), - [anon_sym_asyncfor] = ACTIONS(3275), - [anon_sym_transform] = ACTIONS(3277), - [anon_sym_filter] = ACTIONS(3277), - [anon_sym_find] = ACTIONS(3277), - [anon_sym_remove] = ACTIONS(3277), - [anon_sym_reduce] = ACTIONS(3277), - [anon_sym_select] = ACTIONS(3277), - [anon_sym_insert] = ACTIONS(3277), - [anon_sym_async] = ACTIONS(3277), - [anon_sym_PIPE] = ACTIONS(3277), - [anon_sym_table] = ACTIONS(3277), - [anon_sym_assert] = ACTIONS(3277), - [anon_sym_assert_equal] = ACTIONS(3277), - [anon_sym_download] = ACTIONS(3277), - [anon_sym_help] = ACTIONS(3277), - [anon_sym_length] = ACTIONS(3277), - [anon_sym_output] = ACTIONS(3277), - [anon_sym_output_error] = ACTIONS(3277), - [anon_sym_type] = ACTIONS(3277), - [anon_sym_append] = ACTIONS(3277), - [anon_sym_metadata] = ACTIONS(3277), - [anon_sym_move] = ACTIONS(3277), - [anon_sym_read] = ACTIONS(3277), - [anon_sym_workdir] = ACTIONS(3277), - [anon_sym_write] = ACTIONS(3277), - [anon_sym_from_json] = ACTIONS(3277), - [anon_sym_to_json] = ACTIONS(3277), - [anon_sym_to_string] = ACTIONS(3277), - [anon_sym_to_float] = ACTIONS(3277), - [anon_sym_bash] = ACTIONS(3277), - [anon_sym_fish] = ACTIONS(3277), - [anon_sym_raw] = ACTIONS(3277), - [anon_sym_sh] = ACTIONS(3277), - [anon_sym_zsh] = ACTIONS(3277), - [anon_sym_random] = ACTIONS(3277), - [anon_sym_random_boolean] = ACTIONS(3277), - [anon_sym_random_float] = ACTIONS(3277), - [anon_sym_random_integer] = ACTIONS(3277), - [anon_sym_columns] = ACTIONS(3277), - [anon_sym_rows] = ACTIONS(3277), - [anon_sym_reverse] = ACTIONS(3277), - }, - [860] = { - [ts_builtin_sym_end] = ACTIONS(3383), - [sym_identifier] = ACTIONS(3385), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3383), - [anon_sym_RBRACE] = ACTIONS(3383), - [anon_sym_SEMI] = ACTIONS(3383), - [anon_sym_LPAREN] = ACTIONS(3383), - [anon_sym_RPAREN] = ACTIONS(3383), - [anon_sym_COMMA] = ACTIONS(3383), - [sym_integer] = ACTIONS(3385), - [sym_float] = ACTIONS(3383), - [sym_string] = ACTIONS(3383), - [anon_sym_true] = ACTIONS(3385), - [anon_sym_false] = ACTIONS(3385), - [anon_sym_LBRACK] = ACTIONS(3383), - [anon_sym_RBRACK] = ACTIONS(3383), - [anon_sym_COLON] = ACTIONS(3383), - [anon_sym_DOT_DOT] = ACTIONS(3383), - [anon_sym_PLUS] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(3383), - [anon_sym_SLASH] = ACTIONS(3383), - [anon_sym_PERCENT] = ACTIONS(3383), - [anon_sym_EQ_EQ] = ACTIONS(3383), - [anon_sym_BANG_EQ] = ACTIONS(3383), - [anon_sym_AMP_AMP] = ACTIONS(3383), - [anon_sym_PIPE_PIPE] = ACTIONS(3383), - [anon_sym_GT] = ACTIONS(3385), - [anon_sym_LT] = ACTIONS(3385), - [anon_sym_GT_EQ] = ACTIONS(3383), - [anon_sym_LT_EQ] = ACTIONS(3383), - [anon_sym_if] = ACTIONS(3385), - [anon_sym_match] = ACTIONS(3385), - [anon_sym_EQ_GT] = ACTIONS(3383), - [anon_sym_while] = ACTIONS(3385), - [anon_sym_for] = ACTIONS(3385), - [anon_sym_asyncfor] = ACTIONS(3383), - [anon_sym_transform] = ACTIONS(3385), - [anon_sym_filter] = ACTIONS(3385), - [anon_sym_find] = ACTIONS(3385), - [anon_sym_remove] = ACTIONS(3385), - [anon_sym_reduce] = ACTIONS(3385), - [anon_sym_select] = ACTIONS(3385), - [anon_sym_insert] = ACTIONS(3385), - [anon_sym_async] = ACTIONS(3385), - [anon_sym_PIPE] = ACTIONS(3385), - [anon_sym_table] = ACTIONS(3385), - [anon_sym_assert] = ACTIONS(3385), - [anon_sym_assert_equal] = ACTIONS(3385), - [anon_sym_download] = ACTIONS(3385), - [anon_sym_help] = ACTIONS(3385), - [anon_sym_length] = ACTIONS(3385), - [anon_sym_output] = ACTIONS(3385), - [anon_sym_output_error] = ACTIONS(3385), - [anon_sym_type] = ACTIONS(3385), - [anon_sym_append] = ACTIONS(3385), - [anon_sym_metadata] = ACTIONS(3385), - [anon_sym_move] = ACTIONS(3385), - [anon_sym_read] = ACTIONS(3385), - [anon_sym_workdir] = ACTIONS(3385), - [anon_sym_write] = ACTIONS(3385), - [anon_sym_from_json] = ACTIONS(3385), - [anon_sym_to_json] = ACTIONS(3385), - [anon_sym_to_string] = ACTIONS(3385), - [anon_sym_to_float] = ACTIONS(3385), - [anon_sym_bash] = ACTIONS(3385), - [anon_sym_fish] = ACTIONS(3385), - [anon_sym_raw] = ACTIONS(3385), - [anon_sym_sh] = ACTIONS(3385), - [anon_sym_zsh] = ACTIONS(3385), - [anon_sym_random] = ACTIONS(3385), - [anon_sym_random_boolean] = ACTIONS(3385), - [anon_sym_random_float] = ACTIONS(3385), - [anon_sym_random_integer] = ACTIONS(3385), - [anon_sym_columns] = ACTIONS(3385), - [anon_sym_rows] = ACTIONS(3385), - [anon_sym_reverse] = ACTIONS(3385), - }, - [861] = { - [ts_builtin_sym_end] = ACTIONS(3329), - [sym_identifier] = ACTIONS(3331), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3329), - [anon_sym_RBRACE] = ACTIONS(3329), - [anon_sym_SEMI] = ACTIONS(3329), - [anon_sym_LPAREN] = ACTIONS(3329), - [anon_sym_RPAREN] = ACTIONS(3329), - [anon_sym_COMMA] = ACTIONS(3329), - [sym_integer] = ACTIONS(3331), - [sym_float] = ACTIONS(3329), - [sym_string] = ACTIONS(3329), - [anon_sym_true] = ACTIONS(3331), - [anon_sym_false] = ACTIONS(3331), - [anon_sym_LBRACK] = ACTIONS(3329), - [anon_sym_RBRACK] = ACTIONS(3329), - [anon_sym_COLON] = ACTIONS(3329), - [anon_sym_DOT_DOT] = ACTIONS(3329), - [anon_sym_PLUS] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(3331), - [anon_sym_STAR] = ACTIONS(3329), - [anon_sym_SLASH] = ACTIONS(3329), - [anon_sym_PERCENT] = ACTIONS(3329), - [anon_sym_EQ_EQ] = ACTIONS(3329), - [anon_sym_BANG_EQ] = ACTIONS(3329), - [anon_sym_AMP_AMP] = ACTIONS(3329), - [anon_sym_PIPE_PIPE] = ACTIONS(3329), - [anon_sym_GT] = ACTIONS(3331), - [anon_sym_LT] = ACTIONS(3331), - [anon_sym_GT_EQ] = ACTIONS(3329), - [anon_sym_LT_EQ] = ACTIONS(3329), - [anon_sym_if] = ACTIONS(3331), - [anon_sym_match] = ACTIONS(3331), - [anon_sym_EQ_GT] = ACTIONS(3329), - [anon_sym_while] = ACTIONS(3331), - [anon_sym_for] = ACTIONS(3331), - [anon_sym_asyncfor] = ACTIONS(3329), - [anon_sym_transform] = ACTIONS(3331), - [anon_sym_filter] = ACTIONS(3331), - [anon_sym_find] = ACTIONS(3331), - [anon_sym_remove] = ACTIONS(3331), - [anon_sym_reduce] = ACTIONS(3331), - [anon_sym_select] = ACTIONS(3331), - [anon_sym_insert] = ACTIONS(3331), - [anon_sym_async] = ACTIONS(3331), - [anon_sym_PIPE] = ACTIONS(3331), - [anon_sym_table] = ACTIONS(3331), - [anon_sym_assert] = ACTIONS(3331), - [anon_sym_assert_equal] = ACTIONS(3331), - [anon_sym_download] = ACTIONS(3331), - [anon_sym_help] = ACTIONS(3331), - [anon_sym_length] = ACTIONS(3331), - [anon_sym_output] = ACTIONS(3331), - [anon_sym_output_error] = ACTIONS(3331), - [anon_sym_type] = ACTIONS(3331), - [anon_sym_append] = ACTIONS(3331), - [anon_sym_metadata] = ACTIONS(3331), - [anon_sym_move] = ACTIONS(3331), - [anon_sym_read] = ACTIONS(3331), - [anon_sym_workdir] = ACTIONS(3331), - [anon_sym_write] = ACTIONS(3331), - [anon_sym_from_json] = ACTIONS(3331), - [anon_sym_to_json] = ACTIONS(3331), - [anon_sym_to_string] = ACTIONS(3331), - [anon_sym_to_float] = ACTIONS(3331), - [anon_sym_bash] = ACTIONS(3331), - [anon_sym_fish] = ACTIONS(3331), - [anon_sym_raw] = ACTIONS(3331), - [anon_sym_sh] = ACTIONS(3331), - [anon_sym_zsh] = ACTIONS(3331), - [anon_sym_random] = ACTIONS(3331), - [anon_sym_random_boolean] = ACTIONS(3331), - [anon_sym_random_float] = ACTIONS(3331), - [anon_sym_random_integer] = ACTIONS(3331), - [anon_sym_columns] = ACTIONS(3331), - [anon_sym_rows] = ACTIONS(3331), - [anon_sym_reverse] = ACTIONS(3331), - }, - [862] = { - [ts_builtin_sym_end] = ACTIONS(3375), - [sym_identifier] = ACTIONS(3377), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3375), - [anon_sym_RBRACE] = ACTIONS(3375), - [anon_sym_SEMI] = ACTIONS(3375), - [anon_sym_LPAREN] = ACTIONS(3375), - [anon_sym_RPAREN] = ACTIONS(3375), - [anon_sym_COMMA] = ACTIONS(3375), - [sym_integer] = ACTIONS(3377), - [sym_float] = ACTIONS(3375), - [sym_string] = ACTIONS(3375), - [anon_sym_true] = ACTIONS(3377), - [anon_sym_false] = ACTIONS(3377), - [anon_sym_LBRACK] = ACTIONS(3375), - [anon_sym_RBRACK] = ACTIONS(3375), - [anon_sym_COLON] = ACTIONS(3375), - [anon_sym_DOT_DOT] = ACTIONS(3375), - [anon_sym_PLUS] = ACTIONS(3375), - [anon_sym_DASH] = ACTIONS(3377), - [anon_sym_STAR] = ACTIONS(3375), - [anon_sym_SLASH] = ACTIONS(3375), - [anon_sym_PERCENT] = ACTIONS(3375), - [anon_sym_EQ_EQ] = ACTIONS(3375), - [anon_sym_BANG_EQ] = ACTIONS(3375), - [anon_sym_AMP_AMP] = ACTIONS(3375), - [anon_sym_PIPE_PIPE] = ACTIONS(3375), - [anon_sym_GT] = ACTIONS(3377), - [anon_sym_LT] = ACTIONS(3377), - [anon_sym_GT_EQ] = ACTIONS(3375), - [anon_sym_LT_EQ] = ACTIONS(3375), - [anon_sym_if] = ACTIONS(3377), - [anon_sym_match] = ACTIONS(3377), - [anon_sym_EQ_GT] = ACTIONS(3375), - [anon_sym_while] = ACTIONS(3377), - [anon_sym_for] = ACTIONS(3377), - [anon_sym_asyncfor] = ACTIONS(3375), - [anon_sym_transform] = ACTIONS(3377), - [anon_sym_filter] = ACTIONS(3377), - [anon_sym_find] = ACTIONS(3377), - [anon_sym_remove] = ACTIONS(3377), - [anon_sym_reduce] = ACTIONS(3377), - [anon_sym_select] = ACTIONS(3377), - [anon_sym_insert] = ACTIONS(3377), - [anon_sym_async] = ACTIONS(3377), - [anon_sym_PIPE] = ACTIONS(3377), - [anon_sym_table] = ACTIONS(3377), - [anon_sym_assert] = ACTIONS(3377), - [anon_sym_assert_equal] = ACTIONS(3377), - [anon_sym_download] = ACTIONS(3377), - [anon_sym_help] = ACTIONS(3377), - [anon_sym_length] = ACTIONS(3377), - [anon_sym_output] = ACTIONS(3377), - [anon_sym_output_error] = ACTIONS(3377), - [anon_sym_type] = ACTIONS(3377), - [anon_sym_append] = ACTIONS(3377), - [anon_sym_metadata] = ACTIONS(3377), - [anon_sym_move] = ACTIONS(3377), - [anon_sym_read] = ACTIONS(3377), - [anon_sym_workdir] = ACTIONS(3377), - [anon_sym_write] = ACTIONS(3377), - [anon_sym_from_json] = ACTIONS(3377), - [anon_sym_to_json] = ACTIONS(3377), - [anon_sym_to_string] = ACTIONS(3377), - [anon_sym_to_float] = ACTIONS(3377), - [anon_sym_bash] = ACTIONS(3377), - [anon_sym_fish] = ACTIONS(3377), - [anon_sym_raw] = ACTIONS(3377), - [anon_sym_sh] = ACTIONS(3377), - [anon_sym_zsh] = ACTIONS(3377), - [anon_sym_random] = ACTIONS(3377), - [anon_sym_random_boolean] = ACTIONS(3377), - [anon_sym_random_float] = ACTIONS(3377), - [anon_sym_random_integer] = ACTIONS(3377), - [anon_sym_columns] = ACTIONS(3377), - [anon_sym_rows] = ACTIONS(3377), - [anon_sym_reverse] = ACTIONS(3377), - }, - [863] = { - [ts_builtin_sym_end] = ACTIONS(3337), - [sym_identifier] = ACTIONS(3339), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3337), - [anon_sym_RBRACE] = ACTIONS(3337), - [anon_sym_SEMI] = ACTIONS(3337), - [anon_sym_LPAREN] = ACTIONS(3337), - [anon_sym_RPAREN] = ACTIONS(3337), - [anon_sym_COMMA] = ACTIONS(3337), - [sym_integer] = ACTIONS(3339), - [sym_float] = ACTIONS(3337), - [sym_string] = ACTIONS(3337), - [anon_sym_true] = ACTIONS(3339), - [anon_sym_false] = ACTIONS(3339), - [anon_sym_LBRACK] = ACTIONS(3337), - [anon_sym_RBRACK] = ACTIONS(3337), - [anon_sym_COLON] = ACTIONS(3337), - [anon_sym_DOT_DOT] = ACTIONS(3337), - [anon_sym_PLUS] = ACTIONS(3337), - [anon_sym_DASH] = ACTIONS(3339), - [anon_sym_STAR] = ACTIONS(3337), - [anon_sym_SLASH] = ACTIONS(3337), - [anon_sym_PERCENT] = ACTIONS(3337), - [anon_sym_EQ_EQ] = ACTIONS(3337), - [anon_sym_BANG_EQ] = ACTIONS(3337), - [anon_sym_AMP_AMP] = ACTIONS(3337), - [anon_sym_PIPE_PIPE] = ACTIONS(3337), - [anon_sym_GT] = ACTIONS(3339), - [anon_sym_LT] = ACTIONS(3339), - [anon_sym_GT_EQ] = ACTIONS(3337), - [anon_sym_LT_EQ] = ACTIONS(3337), - [anon_sym_if] = ACTIONS(3339), - [anon_sym_match] = ACTIONS(3339), - [anon_sym_EQ_GT] = ACTIONS(3337), - [anon_sym_while] = ACTIONS(3339), - [anon_sym_for] = ACTIONS(3339), - [anon_sym_asyncfor] = ACTIONS(3337), - [anon_sym_transform] = ACTIONS(3339), - [anon_sym_filter] = ACTIONS(3339), - [anon_sym_find] = ACTIONS(3339), - [anon_sym_remove] = ACTIONS(3339), - [anon_sym_reduce] = ACTIONS(3339), - [anon_sym_select] = ACTIONS(3339), - [anon_sym_insert] = ACTIONS(3339), - [anon_sym_async] = ACTIONS(3339), - [anon_sym_PIPE] = ACTIONS(3339), - [anon_sym_table] = ACTIONS(3339), - [anon_sym_assert] = ACTIONS(3339), - [anon_sym_assert_equal] = ACTIONS(3339), - [anon_sym_download] = ACTIONS(3339), - [anon_sym_help] = ACTIONS(3339), - [anon_sym_length] = ACTIONS(3339), - [anon_sym_output] = ACTIONS(3339), - [anon_sym_output_error] = ACTIONS(3339), - [anon_sym_type] = ACTIONS(3339), - [anon_sym_append] = ACTIONS(3339), - [anon_sym_metadata] = ACTIONS(3339), - [anon_sym_move] = ACTIONS(3339), - [anon_sym_read] = ACTIONS(3339), - [anon_sym_workdir] = ACTIONS(3339), - [anon_sym_write] = ACTIONS(3339), - [anon_sym_from_json] = ACTIONS(3339), - [anon_sym_to_json] = ACTIONS(3339), - [anon_sym_to_string] = ACTIONS(3339), - [anon_sym_to_float] = ACTIONS(3339), - [anon_sym_bash] = ACTIONS(3339), - [anon_sym_fish] = ACTIONS(3339), - [anon_sym_raw] = ACTIONS(3339), - [anon_sym_sh] = ACTIONS(3339), - [anon_sym_zsh] = ACTIONS(3339), - [anon_sym_random] = ACTIONS(3339), - [anon_sym_random_boolean] = ACTIONS(3339), - [anon_sym_random_float] = ACTIONS(3339), - [anon_sym_random_integer] = ACTIONS(3339), - [anon_sym_columns] = ACTIONS(3339), - [anon_sym_rows] = ACTIONS(3339), - [anon_sym_reverse] = ACTIONS(3339), - }, - [864] = { - [ts_builtin_sym_end] = ACTIONS(3341), - [sym_identifier] = ACTIONS(3343), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3341), - [anon_sym_RBRACE] = ACTIONS(3341), - [anon_sym_SEMI] = ACTIONS(3341), - [anon_sym_LPAREN] = ACTIONS(3341), - [anon_sym_RPAREN] = ACTIONS(3341), - [anon_sym_COMMA] = ACTIONS(3341), - [sym_integer] = ACTIONS(3343), - [sym_float] = ACTIONS(3341), - [sym_string] = ACTIONS(3341), - [anon_sym_true] = ACTIONS(3343), - [anon_sym_false] = ACTIONS(3343), - [anon_sym_LBRACK] = ACTIONS(3341), - [anon_sym_RBRACK] = ACTIONS(3341), - [anon_sym_COLON] = ACTIONS(3341), - [anon_sym_DOT_DOT] = ACTIONS(3341), - [anon_sym_PLUS] = ACTIONS(3341), - [anon_sym_DASH] = ACTIONS(3343), - [anon_sym_STAR] = ACTIONS(3341), - [anon_sym_SLASH] = ACTIONS(3341), - [anon_sym_PERCENT] = ACTIONS(3341), - [anon_sym_EQ_EQ] = ACTIONS(3341), - [anon_sym_BANG_EQ] = ACTIONS(3341), - [anon_sym_AMP_AMP] = ACTIONS(3341), - [anon_sym_PIPE_PIPE] = ACTIONS(3341), - [anon_sym_GT] = ACTIONS(3343), - [anon_sym_LT] = ACTIONS(3343), - [anon_sym_GT_EQ] = ACTIONS(3341), - [anon_sym_LT_EQ] = ACTIONS(3341), - [anon_sym_if] = ACTIONS(3343), - [anon_sym_match] = ACTIONS(3343), - [anon_sym_EQ_GT] = ACTIONS(3341), - [anon_sym_while] = ACTIONS(3343), - [anon_sym_for] = ACTIONS(3343), - [anon_sym_asyncfor] = ACTIONS(3341), - [anon_sym_transform] = ACTIONS(3343), - [anon_sym_filter] = ACTIONS(3343), - [anon_sym_find] = ACTIONS(3343), - [anon_sym_remove] = ACTIONS(3343), - [anon_sym_reduce] = ACTIONS(3343), - [anon_sym_select] = ACTIONS(3343), - [anon_sym_insert] = ACTIONS(3343), - [anon_sym_async] = ACTIONS(3343), - [anon_sym_PIPE] = ACTIONS(3343), - [anon_sym_table] = ACTIONS(3343), - [anon_sym_assert] = ACTIONS(3343), - [anon_sym_assert_equal] = ACTIONS(3343), - [anon_sym_download] = ACTIONS(3343), - [anon_sym_help] = ACTIONS(3343), - [anon_sym_length] = ACTIONS(3343), - [anon_sym_output] = ACTIONS(3343), - [anon_sym_output_error] = ACTIONS(3343), - [anon_sym_type] = ACTIONS(3343), - [anon_sym_append] = ACTIONS(3343), - [anon_sym_metadata] = ACTIONS(3343), - [anon_sym_move] = ACTIONS(3343), - [anon_sym_read] = ACTIONS(3343), - [anon_sym_workdir] = ACTIONS(3343), - [anon_sym_write] = ACTIONS(3343), - [anon_sym_from_json] = ACTIONS(3343), - [anon_sym_to_json] = ACTIONS(3343), - [anon_sym_to_string] = ACTIONS(3343), - [anon_sym_to_float] = ACTIONS(3343), - [anon_sym_bash] = ACTIONS(3343), - [anon_sym_fish] = ACTIONS(3343), - [anon_sym_raw] = ACTIONS(3343), - [anon_sym_sh] = ACTIONS(3343), - [anon_sym_zsh] = ACTIONS(3343), - [anon_sym_random] = ACTIONS(3343), - [anon_sym_random_boolean] = ACTIONS(3343), - [anon_sym_random_float] = ACTIONS(3343), - [anon_sym_random_integer] = ACTIONS(3343), - [anon_sym_columns] = ACTIONS(3343), - [anon_sym_rows] = ACTIONS(3343), - [anon_sym_reverse] = ACTIONS(3343), - }, - [865] = { - [ts_builtin_sym_end] = ACTIONS(3303), - [sym_identifier] = ACTIONS(3305), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3303), - [anon_sym_RBRACE] = ACTIONS(3303), - [anon_sym_SEMI] = ACTIONS(3303), - [anon_sym_LPAREN] = ACTIONS(3303), - [anon_sym_RPAREN] = ACTIONS(3303), - [anon_sym_COMMA] = ACTIONS(3303), - [sym_integer] = ACTIONS(3305), - [sym_float] = ACTIONS(3303), - [sym_string] = ACTIONS(3303), - [anon_sym_true] = ACTIONS(3305), - [anon_sym_false] = ACTIONS(3305), - [anon_sym_LBRACK] = ACTIONS(3303), - [anon_sym_RBRACK] = ACTIONS(3303), - [anon_sym_COLON] = ACTIONS(3303), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [anon_sym_PLUS] = ACTIONS(3303), - [anon_sym_DASH] = ACTIONS(3305), - [anon_sym_STAR] = ACTIONS(3303), - [anon_sym_SLASH] = ACTIONS(3303), - [anon_sym_PERCENT] = ACTIONS(3303), - [anon_sym_EQ_EQ] = ACTIONS(3303), - [anon_sym_BANG_EQ] = ACTIONS(3303), - [anon_sym_AMP_AMP] = ACTIONS(3303), - [anon_sym_PIPE_PIPE] = ACTIONS(3303), - [anon_sym_GT] = ACTIONS(3305), - [anon_sym_LT] = ACTIONS(3305), - [anon_sym_GT_EQ] = ACTIONS(3303), - [anon_sym_LT_EQ] = ACTIONS(3303), - [anon_sym_if] = ACTIONS(3305), - [anon_sym_match] = ACTIONS(3305), - [anon_sym_EQ_GT] = ACTIONS(3303), - [anon_sym_while] = ACTIONS(3305), - [anon_sym_for] = ACTIONS(3305), - [anon_sym_asyncfor] = ACTIONS(3303), - [anon_sym_transform] = ACTIONS(3305), - [anon_sym_filter] = ACTIONS(3305), - [anon_sym_find] = ACTIONS(3305), - [anon_sym_remove] = ACTIONS(3305), - [anon_sym_reduce] = ACTIONS(3305), - [anon_sym_select] = ACTIONS(3305), - [anon_sym_insert] = ACTIONS(3305), - [anon_sym_async] = ACTIONS(3305), - [anon_sym_PIPE] = ACTIONS(3305), - [anon_sym_table] = ACTIONS(3305), - [anon_sym_assert] = ACTIONS(3305), - [anon_sym_assert_equal] = ACTIONS(3305), - [anon_sym_download] = ACTIONS(3305), - [anon_sym_help] = ACTIONS(3305), - [anon_sym_length] = ACTIONS(3305), - [anon_sym_output] = ACTIONS(3305), - [anon_sym_output_error] = ACTIONS(3305), - [anon_sym_type] = ACTIONS(3305), - [anon_sym_append] = ACTIONS(3305), - [anon_sym_metadata] = ACTIONS(3305), - [anon_sym_move] = ACTIONS(3305), - [anon_sym_read] = ACTIONS(3305), - [anon_sym_workdir] = ACTIONS(3305), - [anon_sym_write] = ACTIONS(3305), - [anon_sym_from_json] = ACTIONS(3305), - [anon_sym_to_json] = ACTIONS(3305), - [anon_sym_to_string] = ACTIONS(3305), - [anon_sym_to_float] = ACTIONS(3305), - [anon_sym_bash] = ACTIONS(3305), - [anon_sym_fish] = ACTIONS(3305), - [anon_sym_raw] = ACTIONS(3305), - [anon_sym_sh] = ACTIONS(3305), - [anon_sym_zsh] = ACTIONS(3305), - [anon_sym_random] = ACTIONS(3305), - [anon_sym_random_boolean] = ACTIONS(3305), - [anon_sym_random_float] = ACTIONS(3305), - [anon_sym_random_integer] = ACTIONS(3305), - [anon_sym_columns] = ACTIONS(3305), - [anon_sym_rows] = ACTIONS(3305), - [anon_sym_reverse] = ACTIONS(3305), - }, - [866] = { - [ts_builtin_sym_end] = ACTIONS(3401), - [sym_identifier] = ACTIONS(3403), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_RBRACE] = ACTIONS(3401), - [anon_sym_SEMI] = ACTIONS(3401), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_RPAREN] = ACTIONS(3401), - [anon_sym_COMMA] = ACTIONS(3401), - [sym_integer] = ACTIONS(3403), - [sym_float] = ACTIONS(3401), - [sym_string] = ACTIONS(3401), - [anon_sym_true] = ACTIONS(3403), - [anon_sym_false] = ACTIONS(3403), - [anon_sym_LBRACK] = ACTIONS(3401), - [anon_sym_RBRACK] = ACTIONS(3401), - [anon_sym_COLON] = ACTIONS(3401), - [anon_sym_DOT_DOT] = ACTIONS(3401), - [anon_sym_PLUS] = ACTIONS(3401), - [anon_sym_DASH] = ACTIONS(3403), - [anon_sym_STAR] = ACTIONS(3401), - [anon_sym_SLASH] = ACTIONS(3401), - [anon_sym_PERCENT] = ACTIONS(3401), - [anon_sym_EQ_EQ] = ACTIONS(3401), - [anon_sym_BANG_EQ] = ACTIONS(3401), - [anon_sym_AMP_AMP] = ACTIONS(3401), - [anon_sym_PIPE_PIPE] = ACTIONS(3401), - [anon_sym_GT] = ACTIONS(3403), - [anon_sym_LT] = ACTIONS(3403), - [anon_sym_GT_EQ] = ACTIONS(3401), - [anon_sym_LT_EQ] = ACTIONS(3401), - [anon_sym_if] = ACTIONS(3403), - [anon_sym_match] = ACTIONS(3403), - [anon_sym_EQ_GT] = ACTIONS(3401), - [anon_sym_while] = ACTIONS(3403), - [anon_sym_for] = ACTIONS(3403), - [anon_sym_asyncfor] = ACTIONS(3401), - [anon_sym_transform] = ACTIONS(3403), - [anon_sym_filter] = ACTIONS(3403), - [anon_sym_find] = ACTIONS(3403), - [anon_sym_remove] = ACTIONS(3403), - [anon_sym_reduce] = ACTIONS(3403), - [anon_sym_select] = ACTIONS(3403), - [anon_sym_insert] = ACTIONS(3403), - [anon_sym_async] = ACTIONS(3403), - [anon_sym_PIPE] = ACTIONS(3403), - [anon_sym_table] = ACTIONS(3403), - [anon_sym_assert] = ACTIONS(3403), - [anon_sym_assert_equal] = ACTIONS(3403), - [anon_sym_download] = ACTIONS(3403), - [anon_sym_help] = ACTIONS(3403), - [anon_sym_length] = ACTIONS(3403), - [anon_sym_output] = ACTIONS(3403), - [anon_sym_output_error] = ACTIONS(3403), - [anon_sym_type] = ACTIONS(3403), - [anon_sym_append] = ACTIONS(3403), - [anon_sym_metadata] = ACTIONS(3403), - [anon_sym_move] = ACTIONS(3403), - [anon_sym_read] = ACTIONS(3403), - [anon_sym_workdir] = ACTIONS(3403), - [anon_sym_write] = ACTIONS(3403), - [anon_sym_from_json] = ACTIONS(3403), - [anon_sym_to_json] = ACTIONS(3403), - [anon_sym_to_string] = ACTIONS(3403), - [anon_sym_to_float] = ACTIONS(3403), - [anon_sym_bash] = ACTIONS(3403), - [anon_sym_fish] = ACTIONS(3403), - [anon_sym_raw] = ACTIONS(3403), - [anon_sym_sh] = ACTIONS(3403), - [anon_sym_zsh] = ACTIONS(3403), - [anon_sym_random] = ACTIONS(3403), - [anon_sym_random_boolean] = ACTIONS(3403), - [anon_sym_random_float] = ACTIONS(3403), - [anon_sym_random_integer] = ACTIONS(3403), - [anon_sym_columns] = ACTIONS(3403), - [anon_sym_rows] = ACTIONS(3403), - [anon_sym_reverse] = ACTIONS(3403), - }, - [867] = { - [sym_assignment_operator] = STATE(536), - [ts_builtin_sym_end] = ACTIONS(2435), - [sym_identifier] = ACTIONS(2437), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_RBRACE] = ACTIONS(2435), - [anon_sym_SEMI] = ACTIONS(2435), - [anon_sym_LPAREN] = ACTIONS(2435), - [sym_integer] = ACTIONS(2437), - [sym_float] = ACTIONS(2435), - [sym_string] = ACTIONS(2435), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [anon_sym_LBRACK] = ACTIONS(2435), - [anon_sym_EQ] = ACTIONS(2439), - [anon_sym_COLON] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_PERCENT] = ACTIONS(2435), - [anon_sym_EQ_EQ] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_PIPE_PIPE] = ACTIONS(2435), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_PLUS_EQ] = ACTIONS(2441), - [anon_sym_DASH_EQ] = ACTIONS(2441), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_EQ_GT] = ACTIONS(2435), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_asyncfor] = ACTIONS(2435), - [anon_sym_transform] = ACTIONS(2437), - [anon_sym_filter] = ACTIONS(2437), - [anon_sym_find] = ACTIONS(2437), - [anon_sym_remove] = ACTIONS(2437), - [anon_sym_reduce] = ACTIONS(2437), - [anon_sym_select] = ACTIONS(2437), - [anon_sym_insert] = ACTIONS(2437), - [anon_sym_async] = ACTIONS(2437), - [anon_sym_PIPE] = ACTIONS(2437), - [anon_sym_table] = ACTIONS(2437), - [anon_sym_assert] = ACTIONS(2437), - [anon_sym_assert_equal] = ACTIONS(2437), - [anon_sym_download] = ACTIONS(2437), - [anon_sym_help] = ACTIONS(2437), - [anon_sym_length] = ACTIONS(2437), - [anon_sym_output] = ACTIONS(2437), - [anon_sym_output_error] = ACTIONS(2437), - [anon_sym_type] = ACTIONS(2437), - [anon_sym_append] = ACTIONS(2437), - [anon_sym_metadata] = ACTIONS(2437), - [anon_sym_move] = ACTIONS(2437), - [anon_sym_read] = ACTIONS(2437), - [anon_sym_workdir] = ACTIONS(2437), - [anon_sym_write] = ACTIONS(2437), - [anon_sym_from_json] = ACTIONS(2437), - [anon_sym_to_json] = ACTIONS(2437), - [anon_sym_to_string] = ACTIONS(2437), - [anon_sym_to_float] = ACTIONS(2437), - [anon_sym_bash] = ACTIONS(2437), - [anon_sym_fish] = ACTIONS(2437), - [anon_sym_raw] = ACTIONS(2437), - [anon_sym_sh] = ACTIONS(2437), - [anon_sym_zsh] = ACTIONS(2437), - [anon_sym_random] = ACTIONS(2437), - [anon_sym_random_boolean] = ACTIONS(2437), - [anon_sym_random_float] = ACTIONS(2437), - [anon_sym_random_integer] = ACTIONS(2437), - [anon_sym_columns] = ACTIONS(2437), - [anon_sym_rows] = ACTIONS(2437), - [anon_sym_reverse] = ACTIONS(2437), - }, - [868] = { - [ts_builtin_sym_end] = ACTIONS(2518), - [sym_identifier] = ACTIONS(2541), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_RBRACE] = ACTIONS(2518), - [anon_sym_SEMI] = ACTIONS(2518), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_RPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2518), - [sym_integer] = ACTIONS(2541), - [sym_float] = ACTIONS(2518), - [sym_string] = ACTIONS(2518), - [anon_sym_true] = ACTIONS(2541), - [anon_sym_false] = ACTIONS(2541), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_RBRACK] = ACTIONS(2518), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_DOT_DOT] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2541), - [anon_sym_STAR] = ACTIONS(2518), - [anon_sym_SLASH] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_EQ_EQ] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_GT] = ACTIONS(2541), - [anon_sym_LT] = ACTIONS(2541), - [anon_sym_GT_EQ] = ACTIONS(2518), - [anon_sym_LT_EQ] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2541), - [anon_sym_match] = ACTIONS(2541), - [anon_sym_EQ_GT] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2541), - [anon_sym_for] = ACTIONS(2541), - [anon_sym_asyncfor] = ACTIONS(2518), - [anon_sym_transform] = ACTIONS(2541), - [anon_sym_filter] = ACTIONS(2541), - [anon_sym_find] = ACTIONS(2541), - [anon_sym_remove] = ACTIONS(2541), - [anon_sym_reduce] = ACTIONS(2541), - [anon_sym_select] = ACTIONS(2541), - [anon_sym_insert] = ACTIONS(2541), - [anon_sym_async] = ACTIONS(2541), - [anon_sym_PIPE] = ACTIONS(2541), - [anon_sym_table] = ACTIONS(2541), - [anon_sym_assert] = ACTIONS(2541), - [anon_sym_assert_equal] = ACTIONS(2541), - [anon_sym_download] = ACTIONS(2541), - [anon_sym_help] = ACTIONS(2541), - [anon_sym_length] = ACTIONS(2541), - [anon_sym_output] = ACTIONS(2541), - [anon_sym_output_error] = ACTIONS(2541), - [anon_sym_type] = ACTIONS(2541), - [anon_sym_append] = ACTIONS(2541), - [anon_sym_metadata] = ACTIONS(2541), - [anon_sym_move] = ACTIONS(2541), - [anon_sym_read] = ACTIONS(2541), - [anon_sym_workdir] = ACTIONS(2541), - [anon_sym_write] = ACTIONS(2541), - [anon_sym_from_json] = ACTIONS(2541), - [anon_sym_to_json] = ACTIONS(2541), - [anon_sym_to_string] = ACTIONS(2541), - [anon_sym_to_float] = ACTIONS(2541), - [anon_sym_bash] = ACTIONS(2541), - [anon_sym_fish] = ACTIONS(2541), - [anon_sym_raw] = ACTIONS(2541), - [anon_sym_sh] = ACTIONS(2541), - [anon_sym_zsh] = ACTIONS(2541), - [anon_sym_random] = ACTIONS(2541), - [anon_sym_random_boolean] = ACTIONS(2541), - [anon_sym_random_float] = ACTIONS(2541), - [anon_sym_random_integer] = ACTIONS(2541), - [anon_sym_columns] = ACTIONS(2541), - [anon_sym_rows] = ACTIONS(2541), - [anon_sym_reverse] = ACTIONS(2541), - }, - [869] = { - [sym_math_operator] = STATE(1142), - [sym_logic_operator] = STATE(1143), - [ts_builtin_sym_end] = ACTIONS(3248), - [sym_identifier] = ACTIONS(3250), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3248), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(3248), - [anon_sym_RPAREN] = ACTIONS(3248), - [sym_integer] = ACTIONS(3250), - [sym_float] = ACTIONS(3248), - [sym_string] = ACTIONS(3248), - [anon_sym_true] = ACTIONS(3250), - [anon_sym_false] = ACTIONS(3250), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_COLON] = ACTIONS(3248), - [anon_sym_DOT_DOT] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3248), - [anon_sym_DASH] = ACTIONS(3250), - [anon_sym_STAR] = ACTIONS(3248), - [anon_sym_SLASH] = ACTIONS(3248), - [anon_sym_PERCENT] = ACTIONS(3248), - [anon_sym_EQ_EQ] = ACTIONS(3248), - [anon_sym_BANG_EQ] = ACTIONS(3248), - [anon_sym_AMP_AMP] = ACTIONS(3248), - [anon_sym_PIPE_PIPE] = ACTIONS(3248), - [anon_sym_GT] = ACTIONS(3250), - [anon_sym_LT] = ACTIONS(3250), - [anon_sym_GT_EQ] = ACTIONS(3248), - [anon_sym_LT_EQ] = ACTIONS(3248), - [anon_sym_if] = ACTIONS(3250), - [anon_sym_match] = ACTIONS(3250), - [anon_sym_EQ_GT] = ACTIONS(3248), - [anon_sym_while] = ACTIONS(3250), - [anon_sym_for] = ACTIONS(3250), - [anon_sym_asyncfor] = ACTIONS(3248), - [anon_sym_transform] = ACTIONS(3250), - [anon_sym_filter] = ACTIONS(3250), - [anon_sym_find] = ACTIONS(3250), - [anon_sym_remove] = ACTIONS(3250), - [anon_sym_reduce] = ACTIONS(3250), - [anon_sym_select] = ACTIONS(3250), - [anon_sym_insert] = ACTIONS(3250), - [anon_sym_async] = ACTIONS(3250), - [anon_sym_PIPE] = ACTIONS(3250), - [anon_sym_table] = ACTIONS(3250), - [anon_sym_assert] = ACTIONS(3250), - [anon_sym_assert_equal] = ACTIONS(3250), - [anon_sym_download] = ACTIONS(3250), - [anon_sym_help] = ACTIONS(3250), - [anon_sym_length] = ACTIONS(3250), - [anon_sym_output] = ACTIONS(3250), - [anon_sym_output_error] = ACTIONS(3250), - [anon_sym_type] = ACTIONS(3250), - [anon_sym_append] = ACTIONS(3250), - [anon_sym_metadata] = ACTIONS(3250), - [anon_sym_move] = ACTIONS(3250), - [anon_sym_read] = ACTIONS(3250), - [anon_sym_workdir] = ACTIONS(3250), - [anon_sym_write] = ACTIONS(3250), - [anon_sym_from_json] = ACTIONS(3250), - [anon_sym_to_json] = ACTIONS(3250), - [anon_sym_to_string] = ACTIONS(3250), - [anon_sym_to_float] = ACTIONS(3250), - [anon_sym_bash] = ACTIONS(3250), - [anon_sym_fish] = ACTIONS(3250), - [anon_sym_raw] = ACTIONS(3250), - [anon_sym_sh] = ACTIONS(3250), - [anon_sym_zsh] = ACTIONS(3250), - [anon_sym_random] = ACTIONS(3250), - [anon_sym_random_boolean] = ACTIONS(3250), - [anon_sym_random_float] = ACTIONS(3250), - [anon_sym_random_integer] = ACTIONS(3250), - [anon_sym_columns] = ACTIONS(3250), - [anon_sym_rows] = ACTIONS(3250), - [anon_sym_reverse] = ACTIONS(3250), - }, - [870] = { - [ts_builtin_sym_end] = ACTIONS(3275), - [sym_identifier] = ACTIONS(3277), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3275), - [anon_sym_RBRACE] = ACTIONS(3275), - [anon_sym_SEMI] = ACTIONS(3594), - [anon_sym_LPAREN] = ACTIONS(3275), - [anon_sym_RPAREN] = ACTIONS(3275), - [anon_sym_COMMA] = ACTIONS(3275), - [sym_integer] = ACTIONS(3277), - [sym_float] = ACTIONS(3275), - [sym_string] = ACTIONS(3275), - [anon_sym_true] = ACTIONS(3277), - [anon_sym_false] = ACTIONS(3277), - [anon_sym_LBRACK] = ACTIONS(3275), - [anon_sym_RBRACK] = ACTIONS(3275), - [anon_sym_COLON] = ACTIONS(3275), - [anon_sym_DOT_DOT] = ACTIONS(3275), - [anon_sym_PLUS] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_STAR] = ACTIONS(3275), - [anon_sym_SLASH] = ACTIONS(3275), - [anon_sym_PERCENT] = ACTIONS(3275), - [anon_sym_EQ_EQ] = ACTIONS(3275), - [anon_sym_BANG_EQ] = ACTIONS(3275), - [anon_sym_AMP_AMP] = ACTIONS(3275), - [anon_sym_PIPE_PIPE] = ACTIONS(3275), - [anon_sym_GT] = ACTIONS(3277), - [anon_sym_LT] = ACTIONS(3277), - [anon_sym_GT_EQ] = ACTIONS(3275), - [anon_sym_LT_EQ] = ACTIONS(3275), - [anon_sym_if] = ACTIONS(3277), - [anon_sym_match] = ACTIONS(3277), - [anon_sym_EQ_GT] = ACTIONS(3275), - [anon_sym_while] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3277), - [anon_sym_asyncfor] = ACTIONS(3275), - [anon_sym_transform] = ACTIONS(3277), - [anon_sym_filter] = ACTIONS(3277), - [anon_sym_find] = ACTIONS(3277), - [anon_sym_remove] = ACTIONS(3277), - [anon_sym_reduce] = ACTIONS(3277), - [anon_sym_select] = ACTIONS(3277), - [anon_sym_insert] = ACTIONS(3277), - [anon_sym_async] = ACTIONS(3277), - [anon_sym_PIPE] = ACTIONS(3277), - [anon_sym_table] = ACTIONS(3277), - [anon_sym_assert] = ACTIONS(3277), - [anon_sym_assert_equal] = ACTIONS(3277), - [anon_sym_download] = ACTIONS(3277), - [anon_sym_help] = ACTIONS(3277), - [anon_sym_length] = ACTIONS(3277), - [anon_sym_output] = ACTIONS(3277), - [anon_sym_output_error] = ACTIONS(3277), - [anon_sym_type] = ACTIONS(3277), - [anon_sym_append] = ACTIONS(3277), - [anon_sym_metadata] = ACTIONS(3277), - [anon_sym_move] = ACTIONS(3277), - [anon_sym_read] = ACTIONS(3277), - [anon_sym_workdir] = ACTIONS(3277), - [anon_sym_write] = ACTIONS(3277), - [anon_sym_from_json] = ACTIONS(3277), - [anon_sym_to_json] = ACTIONS(3277), - [anon_sym_to_string] = ACTIONS(3277), - [anon_sym_to_float] = ACTIONS(3277), - [anon_sym_bash] = ACTIONS(3277), - [anon_sym_fish] = ACTIONS(3277), - [anon_sym_raw] = ACTIONS(3277), - [anon_sym_sh] = ACTIONS(3277), - [anon_sym_zsh] = ACTIONS(3277), - [anon_sym_random] = ACTIONS(3277), - [anon_sym_random_boolean] = ACTIONS(3277), - [anon_sym_random_float] = ACTIONS(3277), - [anon_sym_random_integer] = ACTIONS(3277), - [anon_sym_columns] = ACTIONS(3277), - [anon_sym_rows] = ACTIONS(3277), - [anon_sym_reverse] = ACTIONS(3277), - }, - [871] = { - [ts_builtin_sym_end] = ACTIONS(3296), - [sym_identifier] = ACTIONS(3298), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3296), - [anon_sym_RPAREN] = ACTIONS(3296), - [anon_sym_COMMA] = ACTIONS(3296), - [sym_integer] = ACTIONS(3298), - [sym_float] = ACTIONS(3296), - [sym_string] = ACTIONS(3296), - [anon_sym_true] = ACTIONS(3298), - [anon_sym_false] = ACTIONS(3298), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_RBRACK] = ACTIONS(3296), - [anon_sym_COLON] = ACTIONS(3296), - [anon_sym_DOT_DOT] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3296), - [anon_sym_DASH] = ACTIONS(3298), - [anon_sym_STAR] = ACTIONS(3296), - [anon_sym_SLASH] = ACTIONS(3296), - [anon_sym_PERCENT] = ACTIONS(3296), - [anon_sym_EQ_EQ] = ACTIONS(3296), - [anon_sym_BANG_EQ] = ACTIONS(3296), - [anon_sym_AMP_AMP] = ACTIONS(3296), - [anon_sym_PIPE_PIPE] = ACTIONS(3296), - [anon_sym_GT] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3298), - [anon_sym_GT_EQ] = ACTIONS(3296), - [anon_sym_LT_EQ] = ACTIONS(3296), - [anon_sym_if] = ACTIONS(3298), - [anon_sym_match] = ACTIONS(3298), - [anon_sym_EQ_GT] = ACTIONS(3296), - [anon_sym_while] = ACTIONS(3298), - [anon_sym_for] = ACTIONS(3298), - [anon_sym_asyncfor] = ACTIONS(3296), - [anon_sym_transform] = ACTIONS(3298), - [anon_sym_filter] = ACTIONS(3298), - [anon_sym_find] = ACTIONS(3298), - [anon_sym_remove] = ACTIONS(3298), - [anon_sym_reduce] = ACTIONS(3298), - [anon_sym_select] = ACTIONS(3298), - [anon_sym_insert] = ACTIONS(3298), - [anon_sym_async] = ACTIONS(3298), - [anon_sym_PIPE] = ACTIONS(3298), - [anon_sym_table] = ACTIONS(3298), - [anon_sym_assert] = ACTIONS(3298), - [anon_sym_assert_equal] = ACTIONS(3298), - [anon_sym_download] = ACTIONS(3298), - [anon_sym_help] = ACTIONS(3298), - [anon_sym_length] = ACTIONS(3298), - [anon_sym_output] = ACTIONS(3298), - [anon_sym_output_error] = ACTIONS(3298), - [anon_sym_type] = ACTIONS(3298), - [anon_sym_append] = ACTIONS(3298), - [anon_sym_metadata] = ACTIONS(3298), - [anon_sym_move] = ACTIONS(3298), - [anon_sym_read] = ACTIONS(3298), - [anon_sym_workdir] = ACTIONS(3298), - [anon_sym_write] = ACTIONS(3298), - [anon_sym_from_json] = ACTIONS(3298), - [anon_sym_to_json] = ACTIONS(3298), - [anon_sym_to_string] = ACTIONS(3298), - [anon_sym_to_float] = ACTIONS(3298), - [anon_sym_bash] = ACTIONS(3298), - [anon_sym_fish] = ACTIONS(3298), - [anon_sym_raw] = ACTIONS(3298), - [anon_sym_sh] = ACTIONS(3298), - [anon_sym_zsh] = ACTIONS(3298), - [anon_sym_random] = ACTIONS(3298), - [anon_sym_random_boolean] = ACTIONS(3298), - [anon_sym_random_float] = ACTIONS(3298), - [anon_sym_random_integer] = ACTIONS(3298), - [anon_sym_columns] = ACTIONS(3298), - [anon_sym_rows] = ACTIONS(3298), - [anon_sym_reverse] = ACTIONS(3298), - }, - [872] = { - [ts_builtin_sym_end] = ACTIONS(3333), - [sym_identifier] = ACTIONS(3335), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3333), - [anon_sym_RBRACE] = ACTIONS(3333), - [anon_sym_SEMI] = ACTIONS(3333), - [anon_sym_LPAREN] = ACTIONS(3333), - [anon_sym_RPAREN] = ACTIONS(3333), - [anon_sym_COMMA] = ACTIONS(3333), - [sym_integer] = ACTIONS(3335), - [sym_float] = ACTIONS(3333), - [sym_string] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_RBRACK] = ACTIONS(3333), - [anon_sym_COLON] = ACTIONS(3333), - [anon_sym_DOT_DOT] = ACTIONS(3333), - [anon_sym_PLUS] = ACTIONS(3333), - [anon_sym_DASH] = ACTIONS(3335), - [anon_sym_STAR] = ACTIONS(3333), - [anon_sym_SLASH] = ACTIONS(3333), - [anon_sym_PERCENT] = ACTIONS(3333), - [anon_sym_EQ_EQ] = ACTIONS(3333), - [anon_sym_BANG_EQ] = ACTIONS(3333), - [anon_sym_AMP_AMP] = ACTIONS(3333), - [anon_sym_PIPE_PIPE] = ACTIONS(3333), - [anon_sym_GT] = ACTIONS(3335), - [anon_sym_LT] = ACTIONS(3335), - [anon_sym_GT_EQ] = ACTIONS(3333), - [anon_sym_LT_EQ] = ACTIONS(3333), - [anon_sym_if] = ACTIONS(3335), - [anon_sym_match] = ACTIONS(3335), - [anon_sym_EQ_GT] = ACTIONS(3333), - [anon_sym_while] = ACTIONS(3335), - [anon_sym_for] = ACTIONS(3335), - [anon_sym_asyncfor] = ACTIONS(3333), - [anon_sym_transform] = ACTIONS(3335), - [anon_sym_filter] = ACTIONS(3335), - [anon_sym_find] = ACTIONS(3335), - [anon_sym_remove] = ACTIONS(3335), - [anon_sym_reduce] = ACTIONS(3335), - [anon_sym_select] = ACTIONS(3335), - [anon_sym_insert] = ACTIONS(3335), - [anon_sym_async] = ACTIONS(3335), - [anon_sym_PIPE] = ACTIONS(3335), - [anon_sym_table] = ACTIONS(3335), - [anon_sym_assert] = ACTIONS(3335), - [anon_sym_assert_equal] = ACTIONS(3335), - [anon_sym_download] = ACTIONS(3335), - [anon_sym_help] = ACTIONS(3335), - [anon_sym_length] = ACTIONS(3335), - [anon_sym_output] = ACTIONS(3335), - [anon_sym_output_error] = ACTIONS(3335), - [anon_sym_type] = ACTIONS(3335), - [anon_sym_append] = ACTIONS(3335), - [anon_sym_metadata] = ACTIONS(3335), - [anon_sym_move] = ACTIONS(3335), - [anon_sym_read] = ACTIONS(3335), - [anon_sym_workdir] = ACTIONS(3335), - [anon_sym_write] = ACTIONS(3335), - [anon_sym_from_json] = ACTIONS(3335), - [anon_sym_to_json] = ACTIONS(3335), - [anon_sym_to_string] = ACTIONS(3335), - [anon_sym_to_float] = ACTIONS(3335), - [anon_sym_bash] = ACTIONS(3335), - [anon_sym_fish] = ACTIONS(3335), - [anon_sym_raw] = ACTIONS(3335), - [anon_sym_sh] = ACTIONS(3335), - [anon_sym_zsh] = ACTIONS(3335), - [anon_sym_random] = ACTIONS(3335), - [anon_sym_random_boolean] = ACTIONS(3335), - [anon_sym_random_float] = ACTIONS(3335), - [anon_sym_random_integer] = ACTIONS(3335), - [anon_sym_columns] = ACTIONS(3335), - [anon_sym_rows] = ACTIONS(3335), - [anon_sym_reverse] = ACTIONS(3335), - }, - [873] = { - [ts_builtin_sym_end] = ACTIONS(3367), - [sym_identifier] = ACTIONS(3369), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3367), - [anon_sym_RBRACE] = ACTIONS(3367), - [anon_sym_SEMI] = ACTIONS(3367), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_RPAREN] = ACTIONS(3367), - [anon_sym_COMMA] = ACTIONS(3367), - [sym_integer] = ACTIONS(3369), - [sym_float] = ACTIONS(3367), - [sym_string] = ACTIONS(3367), - [anon_sym_true] = ACTIONS(3369), - [anon_sym_false] = ACTIONS(3369), - [anon_sym_LBRACK] = ACTIONS(3367), - [anon_sym_RBRACK] = ACTIONS(3367), - [anon_sym_COLON] = ACTIONS(3367), - [anon_sym_DOT_DOT] = ACTIONS(3367), - [anon_sym_PLUS] = ACTIONS(3367), - [anon_sym_DASH] = ACTIONS(3369), - [anon_sym_STAR] = ACTIONS(3367), - [anon_sym_SLASH] = ACTIONS(3367), - [anon_sym_PERCENT] = ACTIONS(3367), - [anon_sym_EQ_EQ] = ACTIONS(3367), - [anon_sym_BANG_EQ] = ACTIONS(3367), - [anon_sym_AMP_AMP] = ACTIONS(3367), - [anon_sym_PIPE_PIPE] = ACTIONS(3367), - [anon_sym_GT] = ACTIONS(3369), - [anon_sym_LT] = ACTIONS(3369), - [anon_sym_GT_EQ] = ACTIONS(3367), - [anon_sym_LT_EQ] = ACTIONS(3367), - [anon_sym_if] = ACTIONS(3369), - [anon_sym_match] = ACTIONS(3369), - [anon_sym_EQ_GT] = ACTIONS(3367), - [anon_sym_while] = ACTIONS(3369), - [anon_sym_for] = ACTIONS(3369), - [anon_sym_asyncfor] = ACTIONS(3367), - [anon_sym_transform] = ACTIONS(3369), - [anon_sym_filter] = ACTIONS(3369), - [anon_sym_find] = ACTIONS(3369), - [anon_sym_remove] = ACTIONS(3369), - [anon_sym_reduce] = ACTIONS(3369), - [anon_sym_select] = ACTIONS(3369), - [anon_sym_insert] = ACTIONS(3369), - [anon_sym_async] = ACTIONS(3369), - [anon_sym_PIPE] = ACTIONS(3369), - [anon_sym_table] = ACTIONS(3369), - [anon_sym_assert] = ACTIONS(3369), - [anon_sym_assert_equal] = ACTIONS(3369), - [anon_sym_download] = ACTIONS(3369), - [anon_sym_help] = ACTIONS(3369), - [anon_sym_length] = ACTIONS(3369), - [anon_sym_output] = ACTIONS(3369), - [anon_sym_output_error] = ACTIONS(3369), - [anon_sym_type] = ACTIONS(3369), - [anon_sym_append] = ACTIONS(3369), - [anon_sym_metadata] = ACTIONS(3369), - [anon_sym_move] = ACTIONS(3369), - [anon_sym_read] = ACTIONS(3369), - [anon_sym_workdir] = ACTIONS(3369), - [anon_sym_write] = ACTIONS(3369), - [anon_sym_from_json] = ACTIONS(3369), - [anon_sym_to_json] = ACTIONS(3369), - [anon_sym_to_string] = ACTIONS(3369), - [anon_sym_to_float] = ACTIONS(3369), - [anon_sym_bash] = ACTIONS(3369), - [anon_sym_fish] = ACTIONS(3369), - [anon_sym_raw] = ACTIONS(3369), - [anon_sym_sh] = ACTIONS(3369), - [anon_sym_zsh] = ACTIONS(3369), - [anon_sym_random] = ACTIONS(3369), - [anon_sym_random_boolean] = ACTIONS(3369), - [anon_sym_random_float] = ACTIONS(3369), - [anon_sym_random_integer] = ACTIONS(3369), - [anon_sym_columns] = ACTIONS(3369), - [anon_sym_rows] = ACTIONS(3369), - [anon_sym_reverse] = ACTIONS(3369), - }, - [874] = { - [ts_builtin_sym_end] = ACTIONS(3389), - [sym_identifier] = ACTIONS(3391), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3389), - [anon_sym_RBRACE] = ACTIONS(3389), - [anon_sym_SEMI] = ACTIONS(3389), - [anon_sym_LPAREN] = ACTIONS(3389), - [anon_sym_RPAREN] = ACTIONS(3389), - [anon_sym_COMMA] = ACTIONS(3389), - [sym_integer] = ACTIONS(3391), - [sym_float] = ACTIONS(3389), - [sym_string] = ACTIONS(3389), - [anon_sym_true] = ACTIONS(3391), - [anon_sym_false] = ACTIONS(3391), - [anon_sym_LBRACK] = ACTIONS(3389), - [anon_sym_RBRACK] = ACTIONS(3389), - [anon_sym_COLON] = ACTIONS(3389), - [anon_sym_DOT_DOT] = ACTIONS(3389), - [anon_sym_PLUS] = ACTIONS(3389), - [anon_sym_DASH] = ACTIONS(3391), - [anon_sym_STAR] = ACTIONS(3389), - [anon_sym_SLASH] = ACTIONS(3389), - [anon_sym_PERCENT] = ACTIONS(3389), - [anon_sym_EQ_EQ] = ACTIONS(3389), - [anon_sym_BANG_EQ] = ACTIONS(3389), - [anon_sym_AMP_AMP] = ACTIONS(3389), - [anon_sym_PIPE_PIPE] = ACTIONS(3389), - [anon_sym_GT] = ACTIONS(3391), - [anon_sym_LT] = ACTIONS(3391), - [anon_sym_GT_EQ] = ACTIONS(3389), - [anon_sym_LT_EQ] = ACTIONS(3389), - [anon_sym_if] = ACTIONS(3391), - [anon_sym_match] = ACTIONS(3391), - [anon_sym_EQ_GT] = ACTIONS(3389), - [anon_sym_while] = ACTIONS(3391), - [anon_sym_for] = ACTIONS(3391), - [anon_sym_asyncfor] = ACTIONS(3389), - [anon_sym_transform] = ACTIONS(3391), - [anon_sym_filter] = ACTIONS(3391), - [anon_sym_find] = ACTIONS(3391), - [anon_sym_remove] = ACTIONS(3391), - [anon_sym_reduce] = ACTIONS(3391), - [anon_sym_select] = ACTIONS(3391), - [anon_sym_insert] = ACTIONS(3391), - [anon_sym_async] = ACTIONS(3391), - [anon_sym_PIPE] = ACTIONS(3391), - [anon_sym_table] = ACTIONS(3391), - [anon_sym_assert] = ACTIONS(3391), - [anon_sym_assert_equal] = ACTIONS(3391), - [anon_sym_download] = ACTIONS(3391), - [anon_sym_help] = ACTIONS(3391), - [anon_sym_length] = ACTIONS(3391), - [anon_sym_output] = ACTIONS(3391), - [anon_sym_output_error] = ACTIONS(3391), - [anon_sym_type] = ACTIONS(3391), - [anon_sym_append] = ACTIONS(3391), - [anon_sym_metadata] = ACTIONS(3391), - [anon_sym_move] = ACTIONS(3391), - [anon_sym_read] = ACTIONS(3391), - [anon_sym_workdir] = ACTIONS(3391), - [anon_sym_write] = ACTIONS(3391), - [anon_sym_from_json] = ACTIONS(3391), - [anon_sym_to_json] = ACTIONS(3391), - [anon_sym_to_string] = ACTIONS(3391), - [anon_sym_to_float] = ACTIONS(3391), - [anon_sym_bash] = ACTIONS(3391), - [anon_sym_fish] = ACTIONS(3391), - [anon_sym_raw] = ACTIONS(3391), - [anon_sym_sh] = ACTIONS(3391), - [anon_sym_zsh] = ACTIONS(3391), - [anon_sym_random] = ACTIONS(3391), - [anon_sym_random_boolean] = ACTIONS(3391), - [anon_sym_random_float] = ACTIONS(3391), - [anon_sym_random_integer] = ACTIONS(3391), - [anon_sym_columns] = ACTIONS(3391), - [anon_sym_rows] = ACTIONS(3391), - [anon_sym_reverse] = ACTIONS(3391), - }, - [875] = { - [ts_builtin_sym_end] = ACTIONS(3355), - [sym_identifier] = ACTIONS(3357), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3355), - [anon_sym_RBRACE] = ACTIONS(3355), - [anon_sym_SEMI] = ACTIONS(3355), - [anon_sym_LPAREN] = ACTIONS(3355), - [anon_sym_RPAREN] = ACTIONS(3355), - [anon_sym_COMMA] = ACTIONS(3355), - [sym_integer] = ACTIONS(3357), - [sym_float] = ACTIONS(3355), - [sym_string] = ACTIONS(3355), - [anon_sym_true] = ACTIONS(3357), - [anon_sym_false] = ACTIONS(3357), - [anon_sym_LBRACK] = ACTIONS(3355), - [anon_sym_RBRACK] = ACTIONS(3355), - [anon_sym_COLON] = ACTIONS(3355), - [anon_sym_DOT_DOT] = ACTIONS(3355), - [anon_sym_PLUS] = ACTIONS(3355), - [anon_sym_DASH] = ACTIONS(3357), - [anon_sym_STAR] = ACTIONS(3355), - [anon_sym_SLASH] = ACTIONS(3355), - [anon_sym_PERCENT] = ACTIONS(3355), - [anon_sym_EQ_EQ] = ACTIONS(3355), - [anon_sym_BANG_EQ] = ACTIONS(3355), - [anon_sym_AMP_AMP] = ACTIONS(3355), - [anon_sym_PIPE_PIPE] = ACTIONS(3355), - [anon_sym_GT] = ACTIONS(3357), - [anon_sym_LT] = ACTIONS(3357), - [anon_sym_GT_EQ] = ACTIONS(3355), - [anon_sym_LT_EQ] = ACTIONS(3355), - [anon_sym_if] = ACTIONS(3357), - [anon_sym_match] = ACTIONS(3357), - [anon_sym_EQ_GT] = ACTIONS(3355), - [anon_sym_while] = ACTIONS(3357), - [anon_sym_for] = ACTIONS(3357), - [anon_sym_asyncfor] = ACTIONS(3355), - [anon_sym_transform] = ACTIONS(3357), - [anon_sym_filter] = ACTIONS(3357), - [anon_sym_find] = ACTIONS(3357), - [anon_sym_remove] = ACTIONS(3357), - [anon_sym_reduce] = ACTIONS(3357), - [anon_sym_select] = ACTIONS(3357), - [anon_sym_insert] = ACTIONS(3357), - [anon_sym_async] = ACTIONS(3357), - [anon_sym_PIPE] = ACTIONS(3357), - [anon_sym_table] = ACTIONS(3357), - [anon_sym_assert] = ACTIONS(3357), - [anon_sym_assert_equal] = ACTIONS(3357), - [anon_sym_download] = ACTIONS(3357), - [anon_sym_help] = ACTIONS(3357), - [anon_sym_length] = ACTIONS(3357), - [anon_sym_output] = ACTIONS(3357), - [anon_sym_output_error] = ACTIONS(3357), - [anon_sym_type] = ACTIONS(3357), - [anon_sym_append] = ACTIONS(3357), - [anon_sym_metadata] = ACTIONS(3357), - [anon_sym_move] = ACTIONS(3357), - [anon_sym_read] = ACTIONS(3357), - [anon_sym_workdir] = ACTIONS(3357), - [anon_sym_write] = ACTIONS(3357), - [anon_sym_from_json] = ACTIONS(3357), - [anon_sym_to_json] = ACTIONS(3357), - [anon_sym_to_string] = ACTIONS(3357), - [anon_sym_to_float] = ACTIONS(3357), - [anon_sym_bash] = ACTIONS(3357), - [anon_sym_fish] = ACTIONS(3357), - [anon_sym_raw] = ACTIONS(3357), - [anon_sym_sh] = ACTIONS(3357), - [anon_sym_zsh] = ACTIONS(3357), - [anon_sym_random] = ACTIONS(3357), - [anon_sym_random_boolean] = ACTIONS(3357), - [anon_sym_random_float] = ACTIONS(3357), - [anon_sym_random_integer] = ACTIONS(3357), - [anon_sym_columns] = ACTIONS(3357), - [anon_sym_rows] = ACTIONS(3357), - [anon_sym_reverse] = ACTIONS(3357), - }, - [876] = { - [sym_math_operator] = STATE(1381), - [sym_logic_operator] = STATE(1380), - [ts_builtin_sym_end] = ACTIONS(3233), - [sym_identifier] = ACTIONS(3235), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3233), - [anon_sym_RBRACE] = ACTIONS(3233), - [anon_sym_SEMI] = ACTIONS(3233), - [anon_sym_LPAREN] = ACTIONS(3233), - [anon_sym_RPAREN] = ACTIONS(3233), - [anon_sym_COMMA] = ACTIONS(3622), - [sym_integer] = ACTIONS(3235), - [sym_float] = ACTIONS(3233), - [sym_string] = ACTIONS(3233), - [anon_sym_true] = ACTIONS(3235), - [anon_sym_false] = ACTIONS(3235), - [anon_sym_LBRACK] = ACTIONS(3233), - [anon_sym_COLON] = ACTIONS(1200), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(3235), - [anon_sym_match] = ACTIONS(3235), - [anon_sym_EQ_GT] = ACTIONS(3233), - [anon_sym_while] = ACTIONS(3235), - [anon_sym_for] = ACTIONS(3235), - [anon_sym_asyncfor] = ACTIONS(3233), - [anon_sym_transform] = ACTIONS(3235), - [anon_sym_filter] = ACTIONS(3235), - [anon_sym_find] = ACTIONS(3235), - [anon_sym_remove] = ACTIONS(3235), - [anon_sym_reduce] = ACTIONS(3235), - [anon_sym_select] = ACTIONS(3235), - [anon_sym_insert] = ACTIONS(3235), - [anon_sym_async] = ACTIONS(3235), - [anon_sym_PIPE] = ACTIONS(3235), - [anon_sym_table] = ACTIONS(3235), - [anon_sym_assert] = ACTIONS(3235), - [anon_sym_assert_equal] = ACTIONS(3235), - [anon_sym_download] = ACTIONS(3235), - [anon_sym_help] = ACTIONS(3235), - [anon_sym_length] = ACTIONS(3235), - [anon_sym_output] = ACTIONS(3235), - [anon_sym_output_error] = ACTIONS(3235), - [anon_sym_type] = ACTIONS(3235), - [anon_sym_append] = ACTIONS(3235), - [anon_sym_metadata] = ACTIONS(3235), - [anon_sym_move] = ACTIONS(3235), - [anon_sym_read] = ACTIONS(3235), - [anon_sym_workdir] = ACTIONS(3235), - [anon_sym_write] = ACTIONS(3235), - [anon_sym_from_json] = ACTIONS(3235), - [anon_sym_to_json] = ACTIONS(3235), - [anon_sym_to_string] = ACTIONS(3235), - [anon_sym_to_float] = ACTIONS(3235), - [anon_sym_bash] = ACTIONS(3235), - [anon_sym_fish] = ACTIONS(3235), - [anon_sym_raw] = ACTIONS(3235), - [anon_sym_sh] = ACTIONS(3235), - [anon_sym_zsh] = ACTIONS(3235), - [anon_sym_random] = ACTIONS(3235), - [anon_sym_random_boolean] = ACTIONS(3235), - [anon_sym_random_float] = ACTIONS(3235), - [anon_sym_random_integer] = ACTIONS(3235), - [anon_sym_columns] = ACTIONS(3235), - [anon_sym_rows] = ACTIONS(3235), - [anon_sym_reverse] = ACTIONS(3235), - }, - [877] = { - [sym_math_operator] = STATE(1472), - [sym_logic_operator] = STATE(1480), - [ts_builtin_sym_end] = ACTIONS(3275), - [sym_identifier] = ACTIONS(3277), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3275), - [anon_sym_RBRACE] = ACTIONS(3275), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3275), - [sym_integer] = ACTIONS(3277), - [sym_float] = ACTIONS(3275), - [sym_string] = ACTIONS(3275), - [anon_sym_true] = ACTIONS(3277), - [anon_sym_false] = ACTIONS(3277), - [anon_sym_LBRACK] = ACTIONS(3275), - [anon_sym_COLON] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(3277), - [anon_sym_elseif] = ACTIONS(3275), - [anon_sym_else] = ACTIONS(3277), - [anon_sym_match] = ACTIONS(3277), - [anon_sym_EQ_GT] = ACTIONS(3275), - [anon_sym_while] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3277), - [anon_sym_asyncfor] = ACTIONS(3275), - [anon_sym_transform] = ACTIONS(3277), - [anon_sym_filter] = ACTIONS(3277), - [anon_sym_find] = ACTIONS(3277), - [anon_sym_remove] = ACTIONS(3277), - [anon_sym_reduce] = ACTIONS(3277), - [anon_sym_select] = ACTIONS(3277), - [anon_sym_insert] = ACTIONS(3277), - [anon_sym_async] = ACTIONS(3277), - [anon_sym_PIPE] = ACTIONS(3277), - [anon_sym_table] = ACTIONS(3277), - [anon_sym_assert] = ACTIONS(3277), - [anon_sym_assert_equal] = ACTIONS(3277), - [anon_sym_download] = ACTIONS(3277), - [anon_sym_help] = ACTIONS(3277), - [anon_sym_length] = ACTIONS(3277), - [anon_sym_output] = ACTIONS(3277), - [anon_sym_output_error] = ACTIONS(3277), - [anon_sym_type] = ACTIONS(3277), - [anon_sym_append] = ACTIONS(3277), - [anon_sym_metadata] = ACTIONS(3277), - [anon_sym_move] = ACTIONS(3277), - [anon_sym_read] = ACTIONS(3277), - [anon_sym_workdir] = ACTIONS(3277), - [anon_sym_write] = ACTIONS(3277), - [anon_sym_from_json] = ACTIONS(3277), - [anon_sym_to_json] = ACTIONS(3277), - [anon_sym_to_string] = ACTIONS(3277), - [anon_sym_to_float] = ACTIONS(3277), - [anon_sym_bash] = ACTIONS(3277), - [anon_sym_fish] = ACTIONS(3277), - [anon_sym_raw] = ACTIONS(3277), - [anon_sym_sh] = ACTIONS(3277), - [anon_sym_zsh] = ACTIONS(3277), - [anon_sym_random] = ACTIONS(3277), - [anon_sym_random_boolean] = ACTIONS(3277), - [anon_sym_random_float] = ACTIONS(3277), - [anon_sym_random_integer] = ACTIONS(3277), - [anon_sym_columns] = ACTIONS(3277), - [anon_sym_rows] = ACTIONS(3277), - [anon_sym_reverse] = ACTIONS(3277), - }, - [878] = { - [ts_builtin_sym_end] = ACTIONS(3229), - [sym_identifier] = ACTIONS(3231), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3229), - [anon_sym_RBRACE] = ACTIONS(3229), - [anon_sym_SEMI] = ACTIONS(3229), - [anon_sym_LPAREN] = ACTIONS(3229), - [anon_sym_RPAREN] = ACTIONS(3229), - [anon_sym_COMMA] = ACTIONS(3229), - [sym_integer] = ACTIONS(3231), - [sym_float] = ACTIONS(3229), - [sym_string] = ACTIONS(3229), - [anon_sym_true] = ACTIONS(3231), - [anon_sym_false] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3229), - [anon_sym_RBRACK] = ACTIONS(3229), - [anon_sym_COLON] = ACTIONS(3229), - [anon_sym_DOT_DOT] = ACTIONS(3229), - [anon_sym_PLUS] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_SLASH] = ACTIONS(3229), - [anon_sym_PERCENT] = ACTIONS(3229), - [anon_sym_EQ_EQ] = ACTIONS(3229), - [anon_sym_BANG_EQ] = ACTIONS(3229), - [anon_sym_AMP_AMP] = ACTIONS(3229), - [anon_sym_PIPE_PIPE] = ACTIONS(3229), - [anon_sym_GT] = ACTIONS(3231), - [anon_sym_LT] = ACTIONS(3231), - [anon_sym_GT_EQ] = ACTIONS(3229), - [anon_sym_LT_EQ] = ACTIONS(3229), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_match] = ACTIONS(3231), - [anon_sym_EQ_GT] = ACTIONS(3229), - [anon_sym_while] = ACTIONS(3231), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_asyncfor] = ACTIONS(3229), - [anon_sym_transform] = ACTIONS(3231), - [anon_sym_filter] = ACTIONS(3231), - [anon_sym_find] = ACTIONS(3231), - [anon_sym_remove] = ACTIONS(3231), - [anon_sym_reduce] = ACTIONS(3231), - [anon_sym_select] = ACTIONS(3231), - [anon_sym_insert] = ACTIONS(3231), - [anon_sym_async] = ACTIONS(3231), - [anon_sym_PIPE] = ACTIONS(3231), - [anon_sym_table] = ACTIONS(3231), - [anon_sym_assert] = ACTIONS(3231), - [anon_sym_assert_equal] = ACTIONS(3231), - [anon_sym_download] = ACTIONS(3231), - [anon_sym_help] = ACTIONS(3231), - [anon_sym_length] = ACTIONS(3231), - [anon_sym_output] = ACTIONS(3231), - [anon_sym_output_error] = ACTIONS(3231), - [anon_sym_type] = ACTIONS(3231), - [anon_sym_append] = ACTIONS(3231), - [anon_sym_metadata] = ACTIONS(3231), - [anon_sym_move] = ACTIONS(3231), - [anon_sym_read] = ACTIONS(3231), - [anon_sym_workdir] = ACTIONS(3231), - [anon_sym_write] = ACTIONS(3231), - [anon_sym_from_json] = ACTIONS(3231), - [anon_sym_to_json] = ACTIONS(3231), - [anon_sym_to_string] = ACTIONS(3231), - [anon_sym_to_float] = ACTIONS(3231), - [anon_sym_bash] = ACTIONS(3231), - [anon_sym_fish] = ACTIONS(3231), - [anon_sym_raw] = ACTIONS(3231), - [anon_sym_sh] = ACTIONS(3231), - [anon_sym_zsh] = ACTIONS(3231), - [anon_sym_random] = ACTIONS(3231), - [anon_sym_random_boolean] = ACTIONS(3231), - [anon_sym_random_float] = ACTIONS(3231), - [anon_sym_random_integer] = ACTIONS(3231), - [anon_sym_columns] = ACTIONS(3231), - [anon_sym_rows] = ACTIONS(3231), - [anon_sym_reverse] = ACTIONS(3231), - }, - [879] = { - [ts_builtin_sym_end] = ACTIONS(3419), - [sym_identifier] = ACTIONS(3421), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3419), - [anon_sym_RBRACE] = ACTIONS(3419), - [anon_sym_SEMI] = ACTIONS(3419), - [anon_sym_LPAREN] = ACTIONS(3419), - [anon_sym_RPAREN] = ACTIONS(3419), - [anon_sym_COMMA] = ACTIONS(3419), - [sym_integer] = ACTIONS(3421), - [sym_float] = ACTIONS(3419), - [sym_string] = ACTIONS(3419), - [anon_sym_true] = ACTIONS(3421), - [anon_sym_false] = ACTIONS(3421), - [anon_sym_LBRACK] = ACTIONS(3419), - [anon_sym_RBRACK] = ACTIONS(3419), - [anon_sym_COLON] = ACTIONS(3419), - [anon_sym_DOT_DOT] = ACTIONS(3419), - [anon_sym_PLUS] = ACTIONS(3419), - [anon_sym_DASH] = ACTIONS(3421), - [anon_sym_STAR] = ACTIONS(3419), - [anon_sym_SLASH] = ACTIONS(3419), - [anon_sym_PERCENT] = ACTIONS(3419), - [anon_sym_EQ_EQ] = ACTIONS(3419), - [anon_sym_BANG_EQ] = ACTIONS(3419), - [anon_sym_AMP_AMP] = ACTIONS(3419), - [anon_sym_PIPE_PIPE] = ACTIONS(3419), - [anon_sym_GT] = ACTIONS(3421), - [anon_sym_LT] = ACTIONS(3421), - [anon_sym_GT_EQ] = ACTIONS(3419), - [anon_sym_LT_EQ] = ACTIONS(3419), - [anon_sym_if] = ACTIONS(3421), - [anon_sym_match] = ACTIONS(3421), - [anon_sym_EQ_GT] = ACTIONS(3419), - [anon_sym_while] = ACTIONS(3421), - [anon_sym_for] = ACTIONS(3421), - [anon_sym_asyncfor] = ACTIONS(3419), - [anon_sym_transform] = ACTIONS(3421), - [anon_sym_filter] = ACTIONS(3421), - [anon_sym_find] = ACTIONS(3421), - [anon_sym_remove] = ACTIONS(3421), - [anon_sym_reduce] = ACTIONS(3421), - [anon_sym_select] = ACTIONS(3421), - [anon_sym_insert] = ACTIONS(3421), - [anon_sym_async] = ACTIONS(3421), - [anon_sym_PIPE] = ACTIONS(3421), - [anon_sym_table] = ACTIONS(3421), - [anon_sym_assert] = ACTIONS(3421), - [anon_sym_assert_equal] = ACTIONS(3421), - [anon_sym_download] = ACTIONS(3421), - [anon_sym_help] = ACTIONS(3421), - [anon_sym_length] = ACTIONS(3421), - [anon_sym_output] = ACTIONS(3421), - [anon_sym_output_error] = ACTIONS(3421), - [anon_sym_type] = ACTIONS(3421), - [anon_sym_append] = ACTIONS(3421), - [anon_sym_metadata] = ACTIONS(3421), - [anon_sym_move] = ACTIONS(3421), - [anon_sym_read] = ACTIONS(3421), - [anon_sym_workdir] = ACTIONS(3421), - [anon_sym_write] = ACTIONS(3421), - [anon_sym_from_json] = ACTIONS(3421), - [anon_sym_to_json] = ACTIONS(3421), - [anon_sym_to_string] = ACTIONS(3421), - [anon_sym_to_float] = ACTIONS(3421), - [anon_sym_bash] = ACTIONS(3421), - [anon_sym_fish] = ACTIONS(3421), - [anon_sym_raw] = ACTIONS(3421), - [anon_sym_sh] = ACTIONS(3421), - [anon_sym_zsh] = ACTIONS(3421), - [anon_sym_random] = ACTIONS(3421), - [anon_sym_random_boolean] = ACTIONS(3421), - [anon_sym_random_float] = ACTIONS(3421), - [anon_sym_random_integer] = ACTIONS(3421), - [anon_sym_columns] = ACTIONS(3421), - [anon_sym_rows] = ACTIONS(3421), - [anon_sym_reverse] = ACTIONS(3421), - }, - [880] = { - [ts_builtin_sym_end] = ACTIONS(3379), - [sym_identifier] = ACTIONS(3381), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3379), - [anon_sym_RBRACE] = ACTIONS(3379), - [anon_sym_SEMI] = ACTIONS(3379), - [anon_sym_LPAREN] = ACTIONS(3379), - [anon_sym_RPAREN] = ACTIONS(3379), - [anon_sym_COMMA] = ACTIONS(3379), - [sym_integer] = ACTIONS(3381), - [sym_float] = ACTIONS(3379), - [sym_string] = ACTIONS(3379), - [anon_sym_true] = ACTIONS(3381), - [anon_sym_false] = ACTIONS(3381), - [anon_sym_LBRACK] = ACTIONS(3379), - [anon_sym_RBRACK] = ACTIONS(3379), - [anon_sym_COLON] = ACTIONS(3379), - [anon_sym_DOT_DOT] = ACTIONS(3379), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3381), - [anon_sym_STAR] = ACTIONS(3379), - [anon_sym_SLASH] = ACTIONS(3379), - [anon_sym_PERCENT] = ACTIONS(3379), - [anon_sym_EQ_EQ] = ACTIONS(3379), - [anon_sym_BANG_EQ] = ACTIONS(3379), - [anon_sym_AMP_AMP] = ACTIONS(3379), - [anon_sym_PIPE_PIPE] = ACTIONS(3379), - [anon_sym_GT] = ACTIONS(3381), - [anon_sym_LT] = ACTIONS(3381), - [anon_sym_GT_EQ] = ACTIONS(3379), - [anon_sym_LT_EQ] = ACTIONS(3379), - [anon_sym_if] = ACTIONS(3381), - [anon_sym_match] = ACTIONS(3381), - [anon_sym_EQ_GT] = ACTIONS(3379), - [anon_sym_while] = ACTIONS(3381), - [anon_sym_for] = ACTIONS(3381), - [anon_sym_asyncfor] = ACTIONS(3379), - [anon_sym_transform] = ACTIONS(3381), - [anon_sym_filter] = ACTIONS(3381), - [anon_sym_find] = ACTIONS(3381), - [anon_sym_remove] = ACTIONS(3381), - [anon_sym_reduce] = ACTIONS(3381), - [anon_sym_select] = ACTIONS(3381), - [anon_sym_insert] = ACTIONS(3381), - [anon_sym_async] = ACTIONS(3381), - [anon_sym_PIPE] = ACTIONS(3381), - [anon_sym_table] = ACTIONS(3381), - [anon_sym_assert] = ACTIONS(3381), - [anon_sym_assert_equal] = ACTIONS(3381), - [anon_sym_download] = ACTIONS(3381), - [anon_sym_help] = ACTIONS(3381), - [anon_sym_length] = ACTIONS(3381), - [anon_sym_output] = ACTIONS(3381), - [anon_sym_output_error] = ACTIONS(3381), - [anon_sym_type] = ACTIONS(3381), - [anon_sym_append] = ACTIONS(3381), - [anon_sym_metadata] = ACTIONS(3381), - [anon_sym_move] = ACTIONS(3381), - [anon_sym_read] = ACTIONS(3381), - [anon_sym_workdir] = ACTIONS(3381), - [anon_sym_write] = ACTIONS(3381), - [anon_sym_from_json] = ACTIONS(3381), - [anon_sym_to_json] = ACTIONS(3381), - [anon_sym_to_string] = ACTIONS(3381), - [anon_sym_to_float] = ACTIONS(3381), - [anon_sym_bash] = ACTIONS(3381), - [anon_sym_fish] = ACTIONS(3381), - [anon_sym_raw] = ACTIONS(3381), - [anon_sym_sh] = ACTIONS(3381), - [anon_sym_zsh] = ACTIONS(3381), - [anon_sym_random] = ACTIONS(3381), - [anon_sym_random_boolean] = ACTIONS(3381), - [anon_sym_random_float] = ACTIONS(3381), - [anon_sym_random_integer] = ACTIONS(3381), - [anon_sym_columns] = ACTIONS(3381), - [anon_sym_rows] = ACTIONS(3381), - [anon_sym_reverse] = ACTIONS(3381), - }, - [881] = { - [ts_builtin_sym_end] = ACTIONS(3359), - [sym_identifier] = ACTIONS(3361), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3359), - [anon_sym_RBRACE] = ACTIONS(3359), - [anon_sym_SEMI] = ACTIONS(3359), - [anon_sym_LPAREN] = ACTIONS(3359), - [anon_sym_RPAREN] = ACTIONS(3359), - [anon_sym_COMMA] = ACTIONS(3359), - [sym_integer] = ACTIONS(3361), - [sym_float] = ACTIONS(3359), - [sym_string] = ACTIONS(3359), - [anon_sym_true] = ACTIONS(3361), - [anon_sym_false] = ACTIONS(3361), - [anon_sym_LBRACK] = ACTIONS(3359), - [anon_sym_RBRACK] = ACTIONS(3359), - [anon_sym_COLON] = ACTIONS(3359), - [anon_sym_DOT_DOT] = ACTIONS(3359), - [anon_sym_PLUS] = ACTIONS(3359), - [anon_sym_DASH] = ACTIONS(3361), - [anon_sym_STAR] = ACTIONS(3359), - [anon_sym_SLASH] = ACTIONS(3359), - [anon_sym_PERCENT] = ACTIONS(3359), - [anon_sym_EQ_EQ] = ACTIONS(3359), - [anon_sym_BANG_EQ] = ACTIONS(3359), - [anon_sym_AMP_AMP] = ACTIONS(3359), - [anon_sym_PIPE_PIPE] = ACTIONS(3359), - [anon_sym_GT] = ACTIONS(3361), - [anon_sym_LT] = ACTIONS(3361), - [anon_sym_GT_EQ] = ACTIONS(3359), - [anon_sym_LT_EQ] = ACTIONS(3359), - [anon_sym_if] = ACTIONS(3361), - [anon_sym_match] = ACTIONS(3361), - [anon_sym_EQ_GT] = ACTIONS(3359), - [anon_sym_while] = ACTIONS(3361), - [anon_sym_for] = ACTIONS(3361), - [anon_sym_asyncfor] = ACTIONS(3359), - [anon_sym_transform] = ACTIONS(3361), - [anon_sym_filter] = ACTIONS(3361), - [anon_sym_find] = ACTIONS(3361), - [anon_sym_remove] = ACTIONS(3361), - [anon_sym_reduce] = ACTIONS(3361), - [anon_sym_select] = ACTIONS(3361), - [anon_sym_insert] = ACTIONS(3361), - [anon_sym_async] = ACTIONS(3361), - [anon_sym_PIPE] = ACTIONS(3361), - [anon_sym_table] = ACTIONS(3361), - [anon_sym_assert] = ACTIONS(3361), - [anon_sym_assert_equal] = ACTIONS(3361), - [anon_sym_download] = ACTIONS(3361), - [anon_sym_help] = ACTIONS(3361), - [anon_sym_length] = ACTIONS(3361), - [anon_sym_output] = ACTIONS(3361), - [anon_sym_output_error] = ACTIONS(3361), - [anon_sym_type] = ACTIONS(3361), - [anon_sym_append] = ACTIONS(3361), - [anon_sym_metadata] = ACTIONS(3361), - [anon_sym_move] = ACTIONS(3361), - [anon_sym_read] = ACTIONS(3361), - [anon_sym_workdir] = ACTIONS(3361), - [anon_sym_write] = ACTIONS(3361), - [anon_sym_from_json] = ACTIONS(3361), - [anon_sym_to_json] = ACTIONS(3361), - [anon_sym_to_string] = ACTIONS(3361), - [anon_sym_to_float] = ACTIONS(3361), - [anon_sym_bash] = ACTIONS(3361), - [anon_sym_fish] = ACTIONS(3361), - [anon_sym_raw] = ACTIONS(3361), - [anon_sym_sh] = ACTIONS(3361), - [anon_sym_zsh] = ACTIONS(3361), - [anon_sym_random] = ACTIONS(3361), - [anon_sym_random_boolean] = ACTIONS(3361), - [anon_sym_random_float] = ACTIONS(3361), - [anon_sym_random_integer] = ACTIONS(3361), - [anon_sym_columns] = ACTIONS(3361), - [anon_sym_rows] = ACTIONS(3361), - [anon_sym_reverse] = ACTIONS(3361), - }, - [882] = { - [sym_math_operator] = STATE(1153), - [sym_logic_operator] = STATE(1077), - [ts_builtin_sym_end] = ACTIONS(3240), - [sym_identifier] = ACTIONS(3242), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3240), - [anon_sym_SEMI] = ACTIONS(3240), - [anon_sym_LPAREN] = ACTIONS(3240), - [anon_sym_RPAREN] = ACTIONS(3240), - [sym_integer] = ACTIONS(3242), - [sym_float] = ACTIONS(3240), - [sym_string] = ACTIONS(3240), - [anon_sym_true] = ACTIONS(3242), - [anon_sym_false] = ACTIONS(3242), - [anon_sym_LBRACK] = ACTIONS(3240), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(3242), - [anon_sym_match] = ACTIONS(3242), - [anon_sym_EQ_GT] = ACTIONS(3240), - [anon_sym_while] = ACTIONS(3242), - [anon_sym_for] = ACTIONS(3242), - [anon_sym_asyncfor] = ACTIONS(3240), - [anon_sym_transform] = ACTIONS(3242), - [anon_sym_filter] = ACTIONS(3242), - [anon_sym_find] = ACTIONS(3242), - [anon_sym_remove] = ACTIONS(3242), - [anon_sym_reduce] = ACTIONS(3242), - [anon_sym_select] = ACTIONS(3242), - [anon_sym_insert] = ACTIONS(3242), - [anon_sym_async] = ACTIONS(3242), - [anon_sym_PIPE] = ACTIONS(3242), - [anon_sym_table] = ACTIONS(3242), - [anon_sym_assert] = ACTIONS(3242), - [anon_sym_assert_equal] = ACTIONS(3242), - [anon_sym_download] = ACTIONS(3242), - [anon_sym_help] = ACTIONS(3242), - [anon_sym_length] = ACTIONS(3242), - [anon_sym_output] = ACTIONS(3242), - [anon_sym_output_error] = ACTIONS(3242), - [anon_sym_type] = ACTIONS(3242), - [anon_sym_append] = ACTIONS(3242), - [anon_sym_metadata] = ACTIONS(3242), - [anon_sym_move] = ACTIONS(3242), - [anon_sym_read] = ACTIONS(3242), - [anon_sym_workdir] = ACTIONS(3242), - [anon_sym_write] = ACTIONS(3242), - [anon_sym_from_json] = ACTIONS(3242), - [anon_sym_to_json] = ACTIONS(3242), - [anon_sym_to_string] = ACTIONS(3242), - [anon_sym_to_float] = ACTIONS(3242), - [anon_sym_bash] = ACTIONS(3242), - [anon_sym_fish] = ACTIONS(3242), - [anon_sym_raw] = ACTIONS(3242), - [anon_sym_sh] = ACTIONS(3242), - [anon_sym_zsh] = ACTIONS(3242), - [anon_sym_random] = ACTIONS(3242), - [anon_sym_random_boolean] = ACTIONS(3242), - [anon_sym_random_float] = ACTIONS(3242), - [anon_sym_random_integer] = ACTIONS(3242), - [anon_sym_columns] = ACTIONS(3242), - [anon_sym_rows] = ACTIONS(3242), - [anon_sym_reverse] = ACTIONS(3242), - }, - [883] = { - [sym_expression] = STATE(1605), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_math_operator] = STATE(1348), - [sym_logic] = STATE(1539), - [sym_logic_operator] = STATE(1347), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(1005), - [sym_identifier] = ACTIONS(2451), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_LPAREN] = ACTIONS(2455), - [sym_integer] = ACTIONS(2457), - [sym_float] = ACTIONS(2459), - [sym_string] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(2461), - [anon_sym_false] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_COLON] = ACTIONS(3628), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_EQ_GT] = ACTIONS(2467), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(2469), - [anon_sym_assert] = ACTIONS(2471), - [anon_sym_assert_equal] = ACTIONS(2471), - [anon_sym_download] = ACTIONS(2471), - [anon_sym_help] = ACTIONS(2471), - [anon_sym_length] = ACTIONS(2471), - [anon_sym_output] = ACTIONS(2471), - [anon_sym_output_error] = ACTIONS(2471), - [anon_sym_type] = ACTIONS(2471), - [anon_sym_append] = ACTIONS(2471), - [anon_sym_metadata] = ACTIONS(2471), - [anon_sym_move] = ACTIONS(2471), - [anon_sym_read] = ACTIONS(2471), - [anon_sym_workdir] = ACTIONS(2471), - [anon_sym_write] = ACTIONS(2471), - [anon_sym_from_json] = ACTIONS(2471), - [anon_sym_to_json] = ACTIONS(2471), - [anon_sym_to_string] = ACTIONS(2471), - [anon_sym_to_float] = ACTIONS(2471), - [anon_sym_bash] = ACTIONS(2471), - [anon_sym_fish] = ACTIONS(2471), - [anon_sym_raw] = ACTIONS(2471), - [anon_sym_sh] = ACTIONS(2471), - [anon_sym_zsh] = ACTIONS(2471), - [anon_sym_random] = ACTIONS(2471), - [anon_sym_random_boolean] = ACTIONS(2471), - [anon_sym_random_float] = ACTIONS(2471), - [anon_sym_random_integer] = ACTIONS(2471), - [anon_sym_columns] = ACTIONS(2471), - [anon_sym_rows] = ACTIONS(2471), - [anon_sym_reverse] = ACTIONS(2471), - }, - [884] = { - [sym_expression] = STATE(1030), - [sym__expression_kind] = STATE(1002), - [aux_sym__expression_list] = STATE(894), - [sym_value] = STATE(1002), - [sym_boolean] = STATE(996), - [sym_list] = STATE(996), - [sym_map] = STATE(996), - [sym_index] = STATE(1002), - [sym_math] = STATE(1002), - [sym_logic] = STATE(1002), - [sym_identifier_list] = STATE(1762), - [sym_table] = STATE(996), - [sym_function] = STATE(996), - [sym_function_call] = STATE(1002), - [sym__context_defined_function] = STATE(1009), - [sym_built_in_function] = STATE(1009), - [sym__built_in_function_name] = STATE(726), - [sym_identifier] = ACTIONS(3576), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3503), - [anon_sym_LPAREN] = ACTIONS(3505), - [anon_sym_RPAREN] = ACTIONS(2477), - [sym_integer] = ACTIONS(3507), - [sym_float] = ACTIONS(3509), - [sym_string] = ACTIONS(3509), - [anon_sym_true] = ACTIONS(3511), - [anon_sym_false] = ACTIONS(3511), - [anon_sym_LBRACK] = ACTIONS(3513), - [anon_sym_COLON] = ACTIONS(2477), - [anon_sym_DOT_DOT] = ACTIONS(2477), - [anon_sym_PLUS] = ACTIONS(2477), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2477), - [anon_sym_SLASH] = ACTIONS(2477), - [anon_sym_PERCENT] = ACTIONS(2477), - [anon_sym_EQ_EQ] = ACTIONS(2477), - [anon_sym_BANG_EQ] = ACTIONS(2477), - [anon_sym_AMP_AMP] = ACTIONS(2477), - [anon_sym_PIPE_PIPE] = ACTIONS(2477), - [anon_sym_GT] = ACTIONS(2479), - [anon_sym_LT] = ACTIONS(2479), - [anon_sym_GT_EQ] = ACTIONS(2477), - [anon_sym_LT_EQ] = ACTIONS(2477), - [anon_sym_EQ_GT] = ACTIONS(3578), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(3580), - [anon_sym_assert] = ACTIONS(3582), - [anon_sym_assert_equal] = ACTIONS(3582), - [anon_sym_download] = ACTIONS(3582), - [anon_sym_help] = ACTIONS(3582), - [anon_sym_length] = ACTIONS(3582), - [anon_sym_output] = ACTIONS(3582), - [anon_sym_output_error] = ACTIONS(3582), - [anon_sym_type] = ACTIONS(3582), - [anon_sym_append] = ACTIONS(3582), - [anon_sym_metadata] = ACTIONS(3582), - [anon_sym_move] = ACTIONS(3582), - [anon_sym_read] = ACTIONS(3582), - [anon_sym_workdir] = ACTIONS(3582), - [anon_sym_write] = ACTIONS(3582), - [anon_sym_from_json] = ACTIONS(3582), - [anon_sym_to_json] = ACTIONS(3582), - [anon_sym_to_string] = ACTIONS(3582), - [anon_sym_to_float] = ACTIONS(3582), - [anon_sym_bash] = ACTIONS(3582), - [anon_sym_fish] = ACTIONS(3582), - [anon_sym_raw] = ACTIONS(3582), - [anon_sym_sh] = ACTIONS(3582), - [anon_sym_zsh] = ACTIONS(3582), - [anon_sym_random] = ACTIONS(3582), - [anon_sym_random_boolean] = ACTIONS(3582), - [anon_sym_random_float] = ACTIONS(3582), - [anon_sym_random_integer] = ACTIONS(3582), - [anon_sym_columns] = ACTIONS(3582), - [anon_sym_rows] = ACTIONS(3582), - [anon_sym_reverse] = ACTIONS(3582), - }, - [885] = { - [sym_expression] = STATE(1608), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_math_operator] = STATE(1348), - [sym_logic] = STATE(1539), - [sym_logic_operator] = STATE(1347), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(264), - [sym_identifier] = ACTIONS(2451), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_LPAREN] = ACTIONS(2455), - [sym_integer] = ACTIONS(2457), - [sym_float] = ACTIONS(2459), - [sym_string] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(2461), - [anon_sym_false] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_COLON] = ACTIONS(3628), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_EQ_GT] = ACTIONS(2467), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(2469), - [anon_sym_assert] = ACTIONS(2471), - [anon_sym_assert_equal] = ACTIONS(2471), - [anon_sym_download] = ACTIONS(2471), - [anon_sym_help] = ACTIONS(2471), - [anon_sym_length] = ACTIONS(2471), - [anon_sym_output] = ACTIONS(2471), - [anon_sym_output_error] = ACTIONS(2471), - [anon_sym_type] = ACTIONS(2471), - [anon_sym_append] = ACTIONS(2471), - [anon_sym_metadata] = ACTIONS(2471), - [anon_sym_move] = ACTIONS(2471), - [anon_sym_read] = ACTIONS(2471), - [anon_sym_workdir] = ACTIONS(2471), - [anon_sym_write] = ACTIONS(2471), - [anon_sym_from_json] = ACTIONS(2471), - [anon_sym_to_json] = ACTIONS(2471), - [anon_sym_to_string] = ACTIONS(2471), - [anon_sym_to_float] = ACTIONS(2471), - [anon_sym_bash] = ACTIONS(2471), - [anon_sym_fish] = ACTIONS(2471), - [anon_sym_raw] = ACTIONS(2471), - [anon_sym_sh] = ACTIONS(2471), - [anon_sym_zsh] = ACTIONS(2471), - [anon_sym_random] = ACTIONS(2471), - [anon_sym_random_boolean] = ACTIONS(2471), - [anon_sym_random_float] = ACTIONS(2471), - [anon_sym_random_integer] = ACTIONS(2471), - [anon_sym_columns] = ACTIONS(2471), - [anon_sym_rows] = ACTIONS(2471), - [anon_sym_reverse] = ACTIONS(2471), - }, - [886] = { - [sym_expression] = STATE(1620), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_math_operator] = STATE(1348), - [sym_logic] = STATE(1539), - [sym_logic_operator] = STATE(1347), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(309), - [sym_identifier] = ACTIONS(2451), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_LPAREN] = ACTIONS(2455), - [sym_integer] = ACTIONS(2457), - [sym_float] = ACTIONS(2459), - [sym_string] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(2461), - [anon_sym_false] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_COLON] = ACTIONS(3628), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_EQ_GT] = ACTIONS(2467), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(2469), - [anon_sym_assert] = ACTIONS(2471), - [anon_sym_assert_equal] = ACTIONS(2471), - [anon_sym_download] = ACTIONS(2471), - [anon_sym_help] = ACTIONS(2471), - [anon_sym_length] = ACTIONS(2471), - [anon_sym_output] = ACTIONS(2471), - [anon_sym_output_error] = ACTIONS(2471), - [anon_sym_type] = ACTIONS(2471), - [anon_sym_append] = ACTIONS(2471), - [anon_sym_metadata] = ACTIONS(2471), - [anon_sym_move] = ACTIONS(2471), - [anon_sym_read] = ACTIONS(2471), - [anon_sym_workdir] = ACTIONS(2471), - [anon_sym_write] = ACTIONS(2471), - [anon_sym_from_json] = ACTIONS(2471), - [anon_sym_to_json] = ACTIONS(2471), - [anon_sym_to_string] = ACTIONS(2471), - [anon_sym_to_float] = ACTIONS(2471), - [anon_sym_bash] = ACTIONS(2471), - [anon_sym_fish] = ACTIONS(2471), - [anon_sym_raw] = ACTIONS(2471), - [anon_sym_sh] = ACTIONS(2471), - [anon_sym_zsh] = ACTIONS(2471), - [anon_sym_random] = ACTIONS(2471), - [anon_sym_random_boolean] = ACTIONS(2471), - [anon_sym_random_float] = ACTIONS(2471), - [anon_sym_random_integer] = ACTIONS(2471), - [anon_sym_columns] = ACTIONS(2471), - [anon_sym_rows] = ACTIONS(2471), - [anon_sym_reverse] = ACTIONS(2471), - }, - [887] = { - [sym_expression] = STATE(1596), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_logic] = STATE(1539), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(891), - [ts_builtin_sym_end] = ACTIONS(2449), - [sym_identifier] = ACTIONS(2451), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_RBRACE] = ACTIONS(2449), - [anon_sym_SEMI] = ACTIONS(2449), - [anon_sym_LPAREN] = ACTIONS(2455), - [sym_integer] = ACTIONS(2457), - [sym_float] = ACTIONS(2459), - [sym_string] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(2461), - [anon_sym_false] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_if] = ACTIONS(2465), - [anon_sym_match] = ACTIONS(2465), - [anon_sym_EQ_GT] = ACTIONS(2467), - [anon_sym_while] = ACTIONS(2465), - [anon_sym_for] = ACTIONS(2465), - [anon_sym_asyncfor] = ACTIONS(2449), - [anon_sym_transform] = ACTIONS(2465), - [anon_sym_filter] = ACTIONS(2465), - [anon_sym_find] = ACTIONS(2465), - [anon_sym_remove] = ACTIONS(2465), - [anon_sym_reduce] = ACTIONS(2465), - [anon_sym_select] = ACTIONS(2465), - [anon_sym_insert] = ACTIONS(2465), - [anon_sym_async] = ACTIONS(2465), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(2469), - [anon_sym_assert] = ACTIONS(2471), - [anon_sym_assert_equal] = ACTIONS(2471), - [anon_sym_download] = ACTIONS(2471), - [anon_sym_help] = ACTIONS(2471), - [anon_sym_length] = ACTIONS(2471), - [anon_sym_output] = ACTIONS(2471), - [anon_sym_output_error] = ACTIONS(2471), - [anon_sym_type] = ACTIONS(2471), - [anon_sym_append] = ACTIONS(2471), - [anon_sym_metadata] = ACTIONS(2471), - [anon_sym_move] = ACTIONS(2471), - [anon_sym_read] = ACTIONS(2471), - [anon_sym_workdir] = ACTIONS(2471), - [anon_sym_write] = ACTIONS(2471), - [anon_sym_from_json] = ACTIONS(2471), - [anon_sym_to_json] = ACTIONS(2471), - [anon_sym_to_string] = ACTIONS(2471), - [anon_sym_to_float] = ACTIONS(2471), - [anon_sym_bash] = ACTIONS(2471), - [anon_sym_fish] = ACTIONS(2471), - [anon_sym_raw] = ACTIONS(2471), - [anon_sym_sh] = ACTIONS(2471), - [anon_sym_zsh] = ACTIONS(2471), - [anon_sym_random] = ACTIONS(2471), - [anon_sym_random_boolean] = ACTIONS(2471), - [anon_sym_random_float] = ACTIONS(2471), - [anon_sym_random_integer] = ACTIONS(2471), - [anon_sym_columns] = ACTIONS(2471), - [anon_sym_rows] = ACTIONS(2471), - [anon_sym_reverse] = ACTIONS(2471), - }, - [888] = { - [sym_math_operator] = STATE(1153), - [sym_logic_operator] = STATE(1077), - [ts_builtin_sym_end] = ACTIONS(3275), - [sym_identifier] = ACTIONS(3277), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3275), - [anon_sym_RBRACE] = ACTIONS(3275), - [anon_sym_SEMI] = ACTIONS(3594), - [anon_sym_LPAREN] = ACTIONS(3275), - [anon_sym_RPAREN] = ACTIONS(3275), - [sym_integer] = ACTIONS(3277), - [sym_float] = ACTIONS(3275), - [sym_string] = ACTIONS(3275), - [anon_sym_true] = ACTIONS(3277), - [anon_sym_false] = ACTIONS(3277), - [anon_sym_LBRACK] = ACTIONS(3275), - [anon_sym_COLON] = ACTIONS(911), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(3277), - [anon_sym_match] = ACTIONS(3277), - [anon_sym_EQ_GT] = ACTIONS(3275), - [anon_sym_while] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3277), - [anon_sym_asyncfor] = ACTIONS(3275), - [anon_sym_transform] = ACTIONS(3277), - [anon_sym_filter] = ACTIONS(3277), - [anon_sym_find] = ACTIONS(3277), - [anon_sym_remove] = ACTIONS(3277), - [anon_sym_reduce] = ACTIONS(3277), - [anon_sym_select] = ACTIONS(3277), - [anon_sym_insert] = ACTIONS(3277), - [anon_sym_async] = ACTIONS(3277), - [anon_sym_PIPE] = ACTIONS(3277), - [anon_sym_table] = ACTIONS(3277), - [anon_sym_assert] = ACTIONS(3277), - [anon_sym_assert_equal] = ACTIONS(3277), - [anon_sym_download] = ACTIONS(3277), - [anon_sym_help] = ACTIONS(3277), - [anon_sym_length] = ACTIONS(3277), - [anon_sym_output] = ACTIONS(3277), - [anon_sym_output_error] = ACTIONS(3277), - [anon_sym_type] = ACTIONS(3277), - [anon_sym_append] = ACTIONS(3277), - [anon_sym_metadata] = ACTIONS(3277), - [anon_sym_move] = ACTIONS(3277), - [anon_sym_read] = ACTIONS(3277), - [anon_sym_workdir] = ACTIONS(3277), - [anon_sym_write] = ACTIONS(3277), - [anon_sym_from_json] = ACTIONS(3277), - [anon_sym_to_json] = ACTIONS(3277), - [anon_sym_to_string] = ACTIONS(3277), - [anon_sym_to_float] = ACTIONS(3277), - [anon_sym_bash] = ACTIONS(3277), - [anon_sym_fish] = ACTIONS(3277), - [anon_sym_raw] = ACTIONS(3277), - [anon_sym_sh] = ACTIONS(3277), - [anon_sym_zsh] = ACTIONS(3277), - [anon_sym_random] = ACTIONS(3277), - [anon_sym_random_boolean] = ACTIONS(3277), - [anon_sym_random_float] = ACTIONS(3277), - [anon_sym_random_integer] = ACTIONS(3277), - [anon_sym_columns] = ACTIONS(3277), - [anon_sym_rows] = ACTIONS(3277), - [anon_sym_reverse] = ACTIONS(3277), - }, - [889] = { - [sym_math_operator] = STATE(1153), - [sym_logic_operator] = STATE(1077), - [ts_builtin_sym_end] = ACTIONS(3262), - [sym_identifier] = ACTIONS(3264), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3262), - [anon_sym_SEMI] = ACTIONS(3262), - [anon_sym_LPAREN] = ACTIONS(3262), - [anon_sym_RPAREN] = ACTIONS(3262), - [sym_integer] = ACTIONS(3264), - [sym_float] = ACTIONS(3262), - [sym_string] = ACTIONS(3262), - [anon_sym_true] = ACTIONS(3264), - [anon_sym_false] = ACTIONS(3264), - [anon_sym_LBRACK] = ACTIONS(3262), - [anon_sym_COLON] = ACTIONS(3262), - [anon_sym_PLUS] = ACTIONS(3262), - [anon_sym_DASH] = ACTIONS(3264), - [anon_sym_STAR] = ACTIONS(3262), - [anon_sym_SLASH] = ACTIONS(3262), - [anon_sym_PERCENT] = ACTIONS(3262), - [anon_sym_EQ_EQ] = ACTIONS(3262), - [anon_sym_BANG_EQ] = ACTIONS(3262), - [anon_sym_AMP_AMP] = ACTIONS(3262), - [anon_sym_PIPE_PIPE] = ACTIONS(3262), - [anon_sym_GT] = ACTIONS(3264), - [anon_sym_LT] = ACTIONS(3264), - [anon_sym_GT_EQ] = ACTIONS(3262), - [anon_sym_LT_EQ] = ACTIONS(3262), - [anon_sym_if] = ACTIONS(3264), - [anon_sym_match] = ACTIONS(3264), - [anon_sym_EQ_GT] = ACTIONS(3262), - [anon_sym_while] = ACTIONS(3264), - [anon_sym_for] = ACTIONS(3264), - [anon_sym_asyncfor] = ACTIONS(3262), - [anon_sym_transform] = ACTIONS(3264), - [anon_sym_filter] = ACTIONS(3264), - [anon_sym_find] = ACTIONS(3264), - [anon_sym_remove] = ACTIONS(3264), - [anon_sym_reduce] = ACTIONS(3264), - [anon_sym_select] = ACTIONS(3264), - [anon_sym_insert] = ACTIONS(3264), - [anon_sym_async] = ACTIONS(3264), - [anon_sym_PIPE] = ACTIONS(3264), - [anon_sym_table] = ACTIONS(3264), - [anon_sym_assert] = ACTIONS(3264), - [anon_sym_assert_equal] = ACTIONS(3264), - [anon_sym_download] = ACTIONS(3264), - [anon_sym_help] = ACTIONS(3264), - [anon_sym_length] = ACTIONS(3264), - [anon_sym_output] = ACTIONS(3264), - [anon_sym_output_error] = ACTIONS(3264), - [anon_sym_type] = ACTIONS(3264), - [anon_sym_append] = ACTIONS(3264), - [anon_sym_metadata] = ACTIONS(3264), - [anon_sym_move] = ACTIONS(3264), - [anon_sym_read] = ACTIONS(3264), - [anon_sym_workdir] = ACTIONS(3264), - [anon_sym_write] = ACTIONS(3264), - [anon_sym_from_json] = ACTIONS(3264), - [anon_sym_to_json] = ACTIONS(3264), - [anon_sym_to_string] = ACTIONS(3264), - [anon_sym_to_float] = ACTIONS(3264), - [anon_sym_bash] = ACTIONS(3264), - [anon_sym_fish] = ACTIONS(3264), - [anon_sym_raw] = ACTIONS(3264), - [anon_sym_sh] = ACTIONS(3264), - [anon_sym_zsh] = ACTIONS(3264), - [anon_sym_random] = ACTIONS(3264), - [anon_sym_random_boolean] = ACTIONS(3264), - [anon_sym_random_float] = ACTIONS(3264), - [anon_sym_random_integer] = ACTIONS(3264), - [anon_sym_columns] = ACTIONS(3264), - [anon_sym_rows] = ACTIONS(3264), - [anon_sym_reverse] = ACTIONS(3264), - }, - [890] = { - [sym_math_operator] = STATE(1153), - [sym_logic_operator] = STATE(1077), - [ts_builtin_sym_end] = ACTIONS(3244), - [sym_identifier] = ACTIONS(3246), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_RBRACE] = ACTIONS(3244), - [anon_sym_SEMI] = ACTIONS(3244), - [anon_sym_LPAREN] = ACTIONS(3244), - [anon_sym_RPAREN] = ACTIONS(3244), - [sym_integer] = ACTIONS(3246), - [sym_float] = ACTIONS(3244), - [sym_string] = ACTIONS(3244), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_LBRACK] = ACTIONS(3244), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(3246), - [anon_sym_match] = ACTIONS(3246), - [anon_sym_EQ_GT] = ACTIONS(3244), - [anon_sym_while] = ACTIONS(3246), - [anon_sym_for] = ACTIONS(3246), - [anon_sym_asyncfor] = ACTIONS(3244), - [anon_sym_transform] = ACTIONS(3246), - [anon_sym_filter] = ACTIONS(3246), - [anon_sym_find] = ACTIONS(3246), - [anon_sym_remove] = ACTIONS(3246), - [anon_sym_reduce] = ACTIONS(3246), - [anon_sym_select] = ACTIONS(3246), - [anon_sym_insert] = ACTIONS(3246), - [anon_sym_async] = ACTIONS(3246), - [anon_sym_PIPE] = ACTIONS(3246), - [anon_sym_table] = ACTIONS(3246), - [anon_sym_assert] = ACTIONS(3246), - [anon_sym_assert_equal] = ACTIONS(3246), - [anon_sym_download] = ACTIONS(3246), - [anon_sym_help] = ACTIONS(3246), - [anon_sym_length] = ACTIONS(3246), - [anon_sym_output] = ACTIONS(3246), - [anon_sym_output_error] = ACTIONS(3246), - [anon_sym_type] = ACTIONS(3246), - [anon_sym_append] = ACTIONS(3246), - [anon_sym_metadata] = ACTIONS(3246), - [anon_sym_move] = ACTIONS(3246), - [anon_sym_read] = ACTIONS(3246), - [anon_sym_workdir] = ACTIONS(3246), - [anon_sym_write] = ACTIONS(3246), - [anon_sym_from_json] = ACTIONS(3246), - [anon_sym_to_json] = ACTIONS(3246), - [anon_sym_to_string] = ACTIONS(3246), - [anon_sym_to_float] = ACTIONS(3246), - [anon_sym_bash] = ACTIONS(3246), - [anon_sym_fish] = ACTIONS(3246), - [anon_sym_raw] = ACTIONS(3246), - [anon_sym_sh] = ACTIONS(3246), - [anon_sym_zsh] = ACTIONS(3246), - [anon_sym_random] = ACTIONS(3246), - [anon_sym_random_boolean] = ACTIONS(3246), - [anon_sym_random_float] = ACTIONS(3246), - [anon_sym_random_integer] = ACTIONS(3246), - [anon_sym_columns] = ACTIONS(3246), - [anon_sym_rows] = ACTIONS(3246), - [anon_sym_reverse] = ACTIONS(3246), - }, - [891] = { - [sym_expression] = STATE(1596), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_logic] = STATE(1539), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(891), - [ts_builtin_sym_end] = ACTIONS(2481), - [sym_identifier] = ACTIONS(2483), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2486), - [anon_sym_RBRACE] = ACTIONS(2481), - [anon_sym_SEMI] = ACTIONS(2481), - [anon_sym_LPAREN] = ACTIONS(2489), - [sym_integer] = ACTIONS(2492), - [sym_float] = ACTIONS(2495), - [sym_string] = ACTIONS(2495), - [anon_sym_true] = ACTIONS(2498), - [anon_sym_false] = ACTIONS(2498), - [anon_sym_LBRACK] = ACTIONS(2501), - [anon_sym_if] = ACTIONS(2504), - [anon_sym_match] = ACTIONS(2504), - [anon_sym_EQ_GT] = ACTIONS(2506), - [anon_sym_while] = ACTIONS(2504), - [anon_sym_for] = ACTIONS(2504), - [anon_sym_asyncfor] = ACTIONS(2481), - [anon_sym_transform] = ACTIONS(2504), - [anon_sym_filter] = ACTIONS(2504), - [anon_sym_find] = ACTIONS(2504), - [anon_sym_remove] = ACTIONS(2504), - [anon_sym_reduce] = ACTIONS(2504), - [anon_sym_select] = ACTIONS(2504), - [anon_sym_insert] = ACTIONS(2504), - [anon_sym_async] = ACTIONS(2504), - [anon_sym_PIPE] = ACTIONS(3616), - [anon_sym_table] = ACTIONS(2512), - [anon_sym_assert] = ACTIONS(2515), - [anon_sym_assert_equal] = ACTIONS(2515), - [anon_sym_download] = ACTIONS(2515), - [anon_sym_help] = ACTIONS(2515), - [anon_sym_length] = ACTIONS(2515), - [anon_sym_output] = ACTIONS(2515), - [anon_sym_output_error] = ACTIONS(2515), - [anon_sym_type] = ACTIONS(2515), - [anon_sym_append] = ACTIONS(2515), - [anon_sym_metadata] = ACTIONS(2515), - [anon_sym_move] = ACTIONS(2515), - [anon_sym_read] = ACTIONS(2515), - [anon_sym_workdir] = ACTIONS(2515), - [anon_sym_write] = ACTIONS(2515), - [anon_sym_from_json] = ACTIONS(2515), - [anon_sym_to_json] = ACTIONS(2515), - [anon_sym_to_string] = ACTIONS(2515), - [anon_sym_to_float] = ACTIONS(2515), - [anon_sym_bash] = ACTIONS(2515), - [anon_sym_fish] = ACTIONS(2515), - [anon_sym_raw] = ACTIONS(2515), - [anon_sym_sh] = ACTIONS(2515), - [anon_sym_zsh] = ACTIONS(2515), - [anon_sym_random] = ACTIONS(2515), - [anon_sym_random_boolean] = ACTIONS(2515), - [anon_sym_random_float] = ACTIONS(2515), - [anon_sym_random_integer] = ACTIONS(2515), - [anon_sym_columns] = ACTIONS(2515), - [anon_sym_rows] = ACTIONS(2515), - [anon_sym_reverse] = ACTIONS(2515), - }, - [892] = { - [sym_expression] = STATE(1607), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_math_operator] = STATE(1348), - [sym_logic] = STATE(1539), - [sym_logic_operator] = STATE(1347), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(2451), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_LPAREN] = ACTIONS(2455), - [sym_integer] = ACTIONS(2457), - [sym_float] = ACTIONS(2459), - [sym_string] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(2461), - [anon_sym_false] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_COLON] = ACTIONS(3628), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_EQ_GT] = ACTIONS(2467), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(2469), - [anon_sym_assert] = ACTIONS(2471), - [anon_sym_assert_equal] = ACTIONS(2471), - [anon_sym_download] = ACTIONS(2471), - [anon_sym_help] = ACTIONS(2471), - [anon_sym_length] = ACTIONS(2471), - [anon_sym_output] = ACTIONS(2471), - [anon_sym_output_error] = ACTIONS(2471), - [anon_sym_type] = ACTIONS(2471), - [anon_sym_append] = ACTIONS(2471), - [anon_sym_metadata] = ACTIONS(2471), - [anon_sym_move] = ACTIONS(2471), - [anon_sym_read] = ACTIONS(2471), - [anon_sym_workdir] = ACTIONS(2471), - [anon_sym_write] = ACTIONS(2471), - [anon_sym_from_json] = ACTIONS(2471), - [anon_sym_to_json] = ACTIONS(2471), - [anon_sym_to_string] = ACTIONS(2471), - [anon_sym_to_float] = ACTIONS(2471), - [anon_sym_bash] = ACTIONS(2471), - [anon_sym_fish] = ACTIONS(2471), - [anon_sym_raw] = ACTIONS(2471), - [anon_sym_sh] = ACTIONS(2471), - [anon_sym_zsh] = ACTIONS(2471), - [anon_sym_random] = ACTIONS(2471), - [anon_sym_random_boolean] = ACTIONS(2471), - [anon_sym_random_float] = ACTIONS(2471), - [anon_sym_random_integer] = ACTIONS(2471), - [anon_sym_columns] = ACTIONS(2471), - [anon_sym_rows] = ACTIONS(2471), - [anon_sym_reverse] = ACTIONS(2471), - }, - [893] = { - [sym_expression] = STATE(1577), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_math_operator] = STATE(1348), - [sym_logic] = STATE(1539), - [sym_logic_operator] = STATE(1347), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(312), - [sym_identifier] = ACTIONS(2451), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_LPAREN] = ACTIONS(2455), - [sym_integer] = ACTIONS(2457), - [sym_float] = ACTIONS(2459), - [sym_string] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(2461), - [anon_sym_false] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_COLON] = ACTIONS(3628), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_EQ_GT] = ACTIONS(2467), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(2469), - [anon_sym_assert] = ACTIONS(2471), - [anon_sym_assert_equal] = ACTIONS(2471), - [anon_sym_download] = ACTIONS(2471), - [anon_sym_help] = ACTIONS(2471), - [anon_sym_length] = ACTIONS(2471), - [anon_sym_output] = ACTIONS(2471), - [anon_sym_output_error] = ACTIONS(2471), - [anon_sym_type] = ACTIONS(2471), - [anon_sym_append] = ACTIONS(2471), - [anon_sym_metadata] = ACTIONS(2471), - [anon_sym_move] = ACTIONS(2471), - [anon_sym_read] = ACTIONS(2471), - [anon_sym_workdir] = ACTIONS(2471), - [anon_sym_write] = ACTIONS(2471), - [anon_sym_from_json] = ACTIONS(2471), - [anon_sym_to_json] = ACTIONS(2471), - [anon_sym_to_string] = ACTIONS(2471), - [anon_sym_to_float] = ACTIONS(2471), - [anon_sym_bash] = ACTIONS(2471), - [anon_sym_fish] = ACTIONS(2471), - [anon_sym_raw] = ACTIONS(2471), - [anon_sym_sh] = ACTIONS(2471), - [anon_sym_zsh] = ACTIONS(2471), - [anon_sym_random] = ACTIONS(2471), - [anon_sym_random_boolean] = ACTIONS(2471), - [anon_sym_random_float] = ACTIONS(2471), - [anon_sym_random_integer] = ACTIONS(2471), - [anon_sym_columns] = ACTIONS(2471), - [anon_sym_rows] = ACTIONS(2471), - [anon_sym_reverse] = ACTIONS(2471), - }, - [894] = { - [sym_expression] = STATE(1030), - [sym__expression_kind] = STATE(1002), - [aux_sym__expression_list] = STATE(894), - [sym_value] = STATE(1002), - [sym_boolean] = STATE(996), - [sym_list] = STATE(996), - [sym_map] = STATE(996), - [sym_index] = STATE(1002), - [sym_math] = STATE(1002), - [sym_logic] = STATE(1002), - [sym_identifier_list] = STATE(1762), - [sym_table] = STATE(996), - [sym_function] = STATE(996), - [sym_function_call] = STATE(1002), - [sym__context_defined_function] = STATE(1009), - [sym_built_in_function] = STATE(1009), - [sym__built_in_function_name] = STATE(726), - [sym_identifier] = ACTIONS(3542), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3545), - [anon_sym_LPAREN] = ACTIONS(3548), - [anon_sym_RPAREN] = ACTIONS(2518), - [sym_integer] = ACTIONS(3551), - [sym_float] = ACTIONS(3554), - [sym_string] = ACTIONS(3554), - [anon_sym_true] = ACTIONS(3557), - [anon_sym_false] = ACTIONS(3557), - [anon_sym_LBRACK] = ACTIONS(3560), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_DOT_DOT] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2541), - [anon_sym_STAR] = ACTIONS(2518), - [anon_sym_SLASH] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_EQ_EQ] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_GT] = ACTIONS(2541), - [anon_sym_LT] = ACTIONS(2541), - [anon_sym_GT_EQ] = ACTIONS(2518), - [anon_sym_LT_EQ] = ACTIONS(2518), - [anon_sym_EQ_GT] = ACTIONS(3563), - [anon_sym_PIPE] = ACTIONS(2546), - [anon_sym_table] = ACTIONS(3566), - [anon_sym_assert] = ACTIONS(3569), - [anon_sym_assert_equal] = ACTIONS(3569), - [anon_sym_download] = ACTIONS(3569), - [anon_sym_help] = ACTIONS(3569), - [anon_sym_length] = ACTIONS(3569), - [anon_sym_output] = ACTIONS(3569), - [anon_sym_output_error] = ACTIONS(3569), - [anon_sym_type] = ACTIONS(3569), - [anon_sym_append] = ACTIONS(3569), - [anon_sym_metadata] = ACTIONS(3569), - [anon_sym_move] = ACTIONS(3569), - [anon_sym_read] = ACTIONS(3569), - [anon_sym_workdir] = ACTIONS(3569), - [anon_sym_write] = ACTIONS(3569), - [anon_sym_from_json] = ACTIONS(3569), - [anon_sym_to_json] = ACTIONS(3569), - [anon_sym_to_string] = ACTIONS(3569), - [anon_sym_to_float] = ACTIONS(3569), - [anon_sym_bash] = ACTIONS(3569), - [anon_sym_fish] = ACTIONS(3569), - [anon_sym_raw] = ACTIONS(3569), - [anon_sym_sh] = ACTIONS(3569), - [anon_sym_zsh] = ACTIONS(3569), - [anon_sym_random] = ACTIONS(3569), - [anon_sym_random_boolean] = ACTIONS(3569), - [anon_sym_random_float] = ACTIONS(3569), - [anon_sym_random_integer] = ACTIONS(3569), - [anon_sym_columns] = ACTIONS(3569), - [anon_sym_rows] = ACTIONS(3569), - [anon_sym_reverse] = ACTIONS(3569), - }, - [895] = { - [sym_expression] = STATE(1592), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_math_operator] = STATE(1348), - [sym_logic] = STATE(1539), - [sym_logic_operator] = STATE(1347), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(277), - [sym_identifier] = ACTIONS(2451), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_LPAREN] = ACTIONS(2455), - [sym_integer] = ACTIONS(2457), - [sym_float] = ACTIONS(2459), - [sym_string] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(2461), - [anon_sym_false] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_COLON] = ACTIONS(3628), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_EQ_GT] = ACTIONS(2467), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(2469), - [anon_sym_assert] = ACTIONS(2471), - [anon_sym_assert_equal] = ACTIONS(2471), - [anon_sym_download] = ACTIONS(2471), - [anon_sym_help] = ACTIONS(2471), - [anon_sym_length] = ACTIONS(2471), - [anon_sym_output] = ACTIONS(2471), - [anon_sym_output_error] = ACTIONS(2471), - [anon_sym_type] = ACTIONS(2471), - [anon_sym_append] = ACTIONS(2471), - [anon_sym_metadata] = ACTIONS(2471), - [anon_sym_move] = ACTIONS(2471), - [anon_sym_read] = ACTIONS(2471), - [anon_sym_workdir] = ACTIONS(2471), - [anon_sym_write] = ACTIONS(2471), - [anon_sym_from_json] = ACTIONS(2471), - [anon_sym_to_json] = ACTIONS(2471), - [anon_sym_to_string] = ACTIONS(2471), - [anon_sym_to_float] = ACTIONS(2471), - [anon_sym_bash] = ACTIONS(2471), - [anon_sym_fish] = ACTIONS(2471), - [anon_sym_raw] = ACTIONS(2471), - [anon_sym_sh] = ACTIONS(2471), - [anon_sym_zsh] = ACTIONS(2471), - [anon_sym_random] = ACTIONS(2471), - [anon_sym_random_boolean] = ACTIONS(2471), - [anon_sym_random_float] = ACTIONS(2471), - [anon_sym_random_integer] = ACTIONS(2471), - [anon_sym_columns] = ACTIONS(2471), - [anon_sym_rows] = ACTIONS(2471), - [anon_sym_reverse] = ACTIONS(2471), - }, - [896] = { - [sym_expression] = STATE(1596), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_math_operator] = STATE(1348), - [sym_logic] = STATE(1539), - [sym_logic_operator] = STATE(1347), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(887), - [sym_identifier] = ACTIONS(2451), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_LPAREN] = ACTIONS(2455), - [sym_integer] = ACTIONS(2457), - [sym_float] = ACTIONS(2459), - [sym_string] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(2461), - [anon_sym_false] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_COLON] = ACTIONS(3628), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_EQ_GT] = ACTIONS(2467), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(2469), - [anon_sym_assert] = ACTIONS(2471), - [anon_sym_assert_equal] = ACTIONS(2471), - [anon_sym_download] = ACTIONS(2471), - [anon_sym_help] = ACTIONS(2471), - [anon_sym_length] = ACTIONS(2471), - [anon_sym_output] = ACTIONS(2471), - [anon_sym_output_error] = ACTIONS(2471), - [anon_sym_type] = ACTIONS(2471), - [anon_sym_append] = ACTIONS(2471), - [anon_sym_metadata] = ACTIONS(2471), - [anon_sym_move] = ACTIONS(2471), - [anon_sym_read] = ACTIONS(2471), - [anon_sym_workdir] = ACTIONS(2471), - [anon_sym_write] = ACTIONS(2471), - [anon_sym_from_json] = ACTIONS(2471), - [anon_sym_to_json] = ACTIONS(2471), - [anon_sym_to_string] = ACTIONS(2471), - [anon_sym_to_float] = ACTIONS(2471), - [anon_sym_bash] = ACTIONS(2471), - [anon_sym_fish] = ACTIONS(2471), - [anon_sym_raw] = ACTIONS(2471), - [anon_sym_sh] = ACTIONS(2471), - [anon_sym_zsh] = ACTIONS(2471), - [anon_sym_random] = ACTIONS(2471), - [anon_sym_random_boolean] = ACTIONS(2471), - [anon_sym_random_float] = ACTIONS(2471), - [anon_sym_random_integer] = ACTIONS(2471), - [anon_sym_columns] = ACTIONS(2471), - [anon_sym_rows] = ACTIONS(2471), - [anon_sym_reverse] = ACTIONS(2471), - }, - [897] = { - [sym_expression] = STATE(1611), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_logic] = STATE(1539), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(908), - [sym_identifier] = ACTIONS(2451), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_RBRACE] = ACTIONS(2449), - [anon_sym_SEMI] = ACTIONS(2449), - [anon_sym_LPAREN] = ACTIONS(2455), - [anon_sym_COMMA] = ACTIONS(2449), - [sym_integer] = ACTIONS(2457), - [sym_float] = ACTIONS(2459), - [sym_string] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(2461), - [anon_sym_false] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_if] = ACTIONS(2465), - [anon_sym_match] = ACTIONS(2465), - [anon_sym_EQ_GT] = ACTIONS(2467), - [anon_sym_while] = ACTIONS(2465), - [anon_sym_for] = ACTIONS(2465), - [anon_sym_asyncfor] = ACTIONS(2449), - [anon_sym_transform] = ACTIONS(2465), - [anon_sym_filter] = ACTIONS(2465), - [anon_sym_find] = ACTIONS(2465), - [anon_sym_remove] = ACTIONS(2465), - [anon_sym_reduce] = ACTIONS(2465), - [anon_sym_select] = ACTIONS(2465), - [anon_sym_insert] = ACTIONS(2465), - [anon_sym_async] = ACTIONS(2465), - [anon_sym_PIPE] = ACTIONS(47), - [anon_sym_table] = ACTIONS(2469), - [anon_sym_assert] = ACTIONS(2471), - [anon_sym_assert_equal] = ACTIONS(2471), - [anon_sym_download] = ACTIONS(2471), - [anon_sym_help] = ACTIONS(2471), - [anon_sym_length] = ACTIONS(2471), - [anon_sym_output] = ACTIONS(2471), - [anon_sym_output_error] = ACTIONS(2471), - [anon_sym_type] = ACTIONS(2471), - [anon_sym_append] = ACTIONS(2471), - [anon_sym_metadata] = ACTIONS(2471), - [anon_sym_move] = ACTIONS(2471), - [anon_sym_read] = ACTIONS(2471), - [anon_sym_workdir] = ACTIONS(2471), - [anon_sym_write] = ACTIONS(2471), - [anon_sym_from_json] = ACTIONS(2471), - [anon_sym_to_json] = ACTIONS(2471), - [anon_sym_to_string] = ACTIONS(2471), - [anon_sym_to_float] = ACTIONS(2471), - [anon_sym_bash] = ACTIONS(2471), - [anon_sym_fish] = ACTIONS(2471), - [anon_sym_raw] = ACTIONS(2471), - [anon_sym_sh] = ACTIONS(2471), - [anon_sym_zsh] = ACTIONS(2471), - [anon_sym_random] = ACTIONS(2471), - [anon_sym_random_boolean] = ACTIONS(2471), - [anon_sym_random_float] = ACTIONS(2471), - [anon_sym_random_integer] = ACTIONS(2471), - [anon_sym_columns] = ACTIONS(2471), - [anon_sym_rows] = ACTIONS(2471), - [anon_sym_reverse] = ACTIONS(2471), - }, - [898] = { - [sym_expression] = STATE(1575), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_math_operator] = STATE(1348), - [sym_logic] = STATE(1539), - [sym_logic_operator] = STATE(1347), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(373), - [sym_identifier] = ACTIONS(2451), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_LPAREN] = ACTIONS(2455), - [sym_integer] = ACTIONS(2457), - [sym_float] = ACTIONS(2459), - [sym_string] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(2461), - [anon_sym_false] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_COLON] = ACTIONS(3628), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_EQ_GT] = ACTIONS(2467), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(2469), - [anon_sym_assert] = ACTIONS(2471), - [anon_sym_assert_equal] = ACTIONS(2471), - [anon_sym_download] = ACTIONS(2471), - [anon_sym_help] = ACTIONS(2471), - [anon_sym_length] = ACTIONS(2471), - [anon_sym_output] = ACTIONS(2471), - [anon_sym_output_error] = ACTIONS(2471), - [anon_sym_type] = ACTIONS(2471), - [anon_sym_append] = ACTIONS(2471), - [anon_sym_metadata] = ACTIONS(2471), - [anon_sym_move] = ACTIONS(2471), - [anon_sym_read] = ACTIONS(2471), - [anon_sym_workdir] = ACTIONS(2471), - [anon_sym_write] = ACTIONS(2471), - [anon_sym_from_json] = ACTIONS(2471), - [anon_sym_to_json] = ACTIONS(2471), - [anon_sym_to_string] = ACTIONS(2471), - [anon_sym_to_float] = ACTIONS(2471), - [anon_sym_bash] = ACTIONS(2471), - [anon_sym_fish] = ACTIONS(2471), - [anon_sym_raw] = ACTIONS(2471), - [anon_sym_sh] = ACTIONS(2471), - [anon_sym_zsh] = ACTIONS(2471), - [anon_sym_random] = ACTIONS(2471), - [anon_sym_random_boolean] = ACTIONS(2471), - [anon_sym_random_float] = ACTIONS(2471), - [anon_sym_random_integer] = ACTIONS(2471), - [anon_sym_columns] = ACTIONS(2471), - [anon_sym_rows] = ACTIONS(2471), - [anon_sym_reverse] = ACTIONS(2471), - }, - [899] = { - [sym_expression] = STATE(1030), - [sym__expression_kind] = STATE(1002), - [aux_sym__expression_list] = STATE(894), - [sym_value] = STATE(1002), - [sym_boolean] = STATE(996), - [sym_list] = STATE(996), - [sym_map] = STATE(996), - [sym_index] = STATE(1002), - [sym_math] = STATE(1002), - [sym_logic] = STATE(1002), - [sym_identifier_list] = STATE(1762), - [sym_table] = STATE(996), - [sym_function] = STATE(996), - [sym_function_call] = STATE(1002), - [sym__context_defined_function] = STATE(1009), - [sym_built_in_function] = STATE(1009), - [sym__built_in_function_name] = STATE(726), - [sym_identifier] = ACTIONS(3576), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3503), - [anon_sym_LPAREN] = ACTIONS(3505), - [anon_sym_RPAREN] = ACTIONS(2443), - [sym_integer] = ACTIONS(3507), - [sym_float] = ACTIONS(3509), - [sym_string] = ACTIONS(3509), - [anon_sym_true] = ACTIONS(3511), - [anon_sym_false] = ACTIONS(3511), - [anon_sym_LBRACK] = ACTIONS(3513), - [anon_sym_COLON] = ACTIONS(2443), - [anon_sym_DOT_DOT] = ACTIONS(2443), - [anon_sym_PLUS] = ACTIONS(2443), - [anon_sym_DASH] = ACTIONS(2447), - [anon_sym_STAR] = ACTIONS(2443), - [anon_sym_SLASH] = ACTIONS(2443), - [anon_sym_PERCENT] = ACTIONS(2443), - [anon_sym_EQ_EQ] = ACTIONS(2443), - [anon_sym_BANG_EQ] = ACTIONS(2443), - [anon_sym_AMP_AMP] = ACTIONS(2443), - [anon_sym_PIPE_PIPE] = ACTIONS(2443), - [anon_sym_GT] = ACTIONS(2447), - [anon_sym_LT] = ACTIONS(2447), - [anon_sym_GT_EQ] = ACTIONS(2443), - [anon_sym_LT_EQ] = ACTIONS(2443), - [anon_sym_EQ_GT] = ACTIONS(3578), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(3580), - [anon_sym_assert] = ACTIONS(3582), - [anon_sym_assert_equal] = ACTIONS(3582), - [anon_sym_download] = ACTIONS(3582), - [anon_sym_help] = ACTIONS(3582), - [anon_sym_length] = ACTIONS(3582), - [anon_sym_output] = ACTIONS(3582), - [anon_sym_output_error] = ACTIONS(3582), - [anon_sym_type] = ACTIONS(3582), - [anon_sym_append] = ACTIONS(3582), - [anon_sym_metadata] = ACTIONS(3582), - [anon_sym_move] = ACTIONS(3582), - [anon_sym_read] = ACTIONS(3582), - [anon_sym_workdir] = ACTIONS(3582), - [anon_sym_write] = ACTIONS(3582), - [anon_sym_from_json] = ACTIONS(3582), - [anon_sym_to_json] = ACTIONS(3582), - [anon_sym_to_string] = ACTIONS(3582), - [anon_sym_to_float] = ACTIONS(3582), - [anon_sym_bash] = ACTIONS(3582), - [anon_sym_fish] = ACTIONS(3582), - [anon_sym_raw] = ACTIONS(3582), - [anon_sym_sh] = ACTIONS(3582), - [anon_sym_zsh] = ACTIONS(3582), - [anon_sym_random] = ACTIONS(3582), - [anon_sym_random_boolean] = ACTIONS(3582), - [anon_sym_random_float] = ACTIONS(3582), - [anon_sym_random_integer] = ACTIONS(3582), - [anon_sym_columns] = ACTIONS(3582), - [anon_sym_rows] = ACTIONS(3582), - [anon_sym_reverse] = ACTIONS(3582), - }, - [900] = { - [sym_expression] = STATE(1586), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_math_operator] = STATE(1348), - [sym_logic] = STATE(1539), - [sym_logic_operator] = STATE(1347), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(333), - [sym_identifier] = ACTIONS(2451), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_LPAREN] = ACTIONS(2455), - [sym_integer] = ACTIONS(2457), - [sym_float] = ACTIONS(2459), - [sym_string] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(2461), - [anon_sym_false] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_COLON] = ACTIONS(3628), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_EQ_GT] = ACTIONS(2467), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(2469), - [anon_sym_assert] = ACTIONS(2471), - [anon_sym_assert_equal] = ACTIONS(2471), - [anon_sym_download] = ACTIONS(2471), - [anon_sym_help] = ACTIONS(2471), - [anon_sym_length] = ACTIONS(2471), - [anon_sym_output] = ACTIONS(2471), - [anon_sym_output_error] = ACTIONS(2471), - [anon_sym_type] = ACTIONS(2471), - [anon_sym_append] = ACTIONS(2471), - [anon_sym_metadata] = ACTIONS(2471), - [anon_sym_move] = ACTIONS(2471), - [anon_sym_read] = ACTIONS(2471), - [anon_sym_workdir] = ACTIONS(2471), - [anon_sym_write] = ACTIONS(2471), - [anon_sym_from_json] = ACTIONS(2471), - [anon_sym_to_json] = ACTIONS(2471), - [anon_sym_to_string] = ACTIONS(2471), - [anon_sym_to_float] = ACTIONS(2471), - [anon_sym_bash] = ACTIONS(2471), - [anon_sym_fish] = ACTIONS(2471), - [anon_sym_raw] = ACTIONS(2471), - [anon_sym_sh] = ACTIONS(2471), - [anon_sym_zsh] = ACTIONS(2471), - [anon_sym_random] = ACTIONS(2471), - [anon_sym_random_boolean] = ACTIONS(2471), - [anon_sym_random_float] = ACTIONS(2471), - [anon_sym_random_integer] = ACTIONS(2471), - [anon_sym_columns] = ACTIONS(2471), - [anon_sym_rows] = ACTIONS(2471), - [anon_sym_reverse] = ACTIONS(2471), - }, - [901] = { - [sym_expression] = STATE(1627), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_math_operator] = STATE(1348), - [sym_logic] = STATE(1539), - [sym_logic_operator] = STATE(1347), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(306), - [sym_identifier] = ACTIONS(2451), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_LPAREN] = ACTIONS(2455), - [sym_integer] = ACTIONS(2457), - [sym_float] = ACTIONS(2459), - [sym_string] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(2461), - [anon_sym_false] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_COLON] = ACTIONS(3628), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_EQ_GT] = ACTIONS(2467), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(2469), - [anon_sym_assert] = ACTIONS(2471), - [anon_sym_assert_equal] = ACTIONS(2471), - [anon_sym_download] = ACTIONS(2471), - [anon_sym_help] = ACTIONS(2471), - [anon_sym_length] = ACTIONS(2471), - [anon_sym_output] = ACTIONS(2471), - [anon_sym_output_error] = ACTIONS(2471), - [anon_sym_type] = ACTIONS(2471), - [anon_sym_append] = ACTIONS(2471), - [anon_sym_metadata] = ACTIONS(2471), - [anon_sym_move] = ACTIONS(2471), - [anon_sym_read] = ACTIONS(2471), - [anon_sym_workdir] = ACTIONS(2471), - [anon_sym_write] = ACTIONS(2471), - [anon_sym_from_json] = ACTIONS(2471), - [anon_sym_to_json] = ACTIONS(2471), - [anon_sym_to_string] = ACTIONS(2471), - [anon_sym_to_float] = ACTIONS(2471), - [anon_sym_bash] = ACTIONS(2471), - [anon_sym_fish] = ACTIONS(2471), - [anon_sym_raw] = ACTIONS(2471), - [anon_sym_sh] = ACTIONS(2471), - [anon_sym_zsh] = ACTIONS(2471), - [anon_sym_random] = ACTIONS(2471), - [anon_sym_random_boolean] = ACTIONS(2471), - [anon_sym_random_float] = ACTIONS(2471), - [anon_sym_random_integer] = ACTIONS(2471), - [anon_sym_columns] = ACTIONS(2471), - [anon_sym_rows] = ACTIONS(2471), - [anon_sym_reverse] = ACTIONS(2471), - }, - [902] = { - [sym_expression] = STATE(1593), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_math_operator] = STATE(1348), - [sym_logic] = STATE(1539), - [sym_logic_operator] = STATE(1347), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(342), - [sym_identifier] = ACTIONS(2451), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_LPAREN] = ACTIONS(2455), - [sym_integer] = ACTIONS(2457), - [sym_float] = ACTIONS(2459), - [sym_string] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(2461), - [anon_sym_false] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_COLON] = ACTIONS(3628), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_EQ_GT] = ACTIONS(2467), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(2469), - [anon_sym_assert] = ACTIONS(2471), - [anon_sym_assert_equal] = ACTIONS(2471), - [anon_sym_download] = ACTIONS(2471), - [anon_sym_help] = ACTIONS(2471), - [anon_sym_length] = ACTIONS(2471), - [anon_sym_output] = ACTIONS(2471), - [anon_sym_output_error] = ACTIONS(2471), - [anon_sym_type] = ACTIONS(2471), - [anon_sym_append] = ACTIONS(2471), - [anon_sym_metadata] = ACTIONS(2471), - [anon_sym_move] = ACTIONS(2471), - [anon_sym_read] = ACTIONS(2471), - [anon_sym_workdir] = ACTIONS(2471), - [anon_sym_write] = ACTIONS(2471), - [anon_sym_from_json] = ACTIONS(2471), - [anon_sym_to_json] = ACTIONS(2471), - [anon_sym_to_string] = ACTIONS(2471), - [anon_sym_to_float] = ACTIONS(2471), - [anon_sym_bash] = ACTIONS(2471), - [anon_sym_fish] = ACTIONS(2471), - [anon_sym_raw] = ACTIONS(2471), - [anon_sym_sh] = ACTIONS(2471), - [anon_sym_zsh] = ACTIONS(2471), - [anon_sym_random] = ACTIONS(2471), - [anon_sym_random_boolean] = ACTIONS(2471), - [anon_sym_random_float] = ACTIONS(2471), - [anon_sym_random_integer] = ACTIONS(2471), - [anon_sym_columns] = ACTIONS(2471), - [anon_sym_rows] = ACTIONS(2471), - [anon_sym_reverse] = ACTIONS(2471), - }, - [903] = { - [sym_expression] = STATE(1601), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_math_operator] = STATE(1348), - [sym_logic] = STATE(1539), - [sym_logic_operator] = STATE(1347), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(281), - [sym_identifier] = ACTIONS(2451), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_LPAREN] = ACTIONS(2455), - [sym_integer] = ACTIONS(2457), - [sym_float] = ACTIONS(2459), - [sym_string] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(2461), - [anon_sym_false] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_COLON] = ACTIONS(3628), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_EQ_GT] = ACTIONS(2467), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(2469), - [anon_sym_assert] = ACTIONS(2471), - [anon_sym_assert_equal] = ACTIONS(2471), - [anon_sym_download] = ACTIONS(2471), - [anon_sym_help] = ACTIONS(2471), - [anon_sym_length] = ACTIONS(2471), - [anon_sym_output] = ACTIONS(2471), - [anon_sym_output_error] = ACTIONS(2471), - [anon_sym_type] = ACTIONS(2471), - [anon_sym_append] = ACTIONS(2471), - [anon_sym_metadata] = ACTIONS(2471), - [anon_sym_move] = ACTIONS(2471), - [anon_sym_read] = ACTIONS(2471), - [anon_sym_workdir] = ACTIONS(2471), - [anon_sym_write] = ACTIONS(2471), - [anon_sym_from_json] = ACTIONS(2471), - [anon_sym_to_json] = ACTIONS(2471), - [anon_sym_to_string] = ACTIONS(2471), - [anon_sym_to_float] = ACTIONS(2471), - [anon_sym_bash] = ACTIONS(2471), - [anon_sym_fish] = ACTIONS(2471), - [anon_sym_raw] = ACTIONS(2471), - [anon_sym_sh] = ACTIONS(2471), - [anon_sym_zsh] = ACTIONS(2471), - [anon_sym_random] = ACTIONS(2471), - [anon_sym_random_boolean] = ACTIONS(2471), - [anon_sym_random_float] = ACTIONS(2471), - [anon_sym_random_integer] = ACTIONS(2471), - [anon_sym_columns] = ACTIONS(2471), - [anon_sym_rows] = ACTIONS(2471), - [anon_sym_reverse] = ACTIONS(2471), - }, - [904] = { - [sym_expression] = STATE(1587), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_math_operator] = STATE(1348), - [sym_logic] = STATE(1539), - [sym_logic_operator] = STATE(1347), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(327), - [sym_identifier] = ACTIONS(2451), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_LPAREN] = ACTIONS(2455), - [sym_integer] = ACTIONS(2457), - [sym_float] = ACTIONS(2459), - [sym_string] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(2461), - [anon_sym_false] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_COLON] = ACTIONS(3628), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_EQ_GT] = ACTIONS(2467), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(2469), - [anon_sym_assert] = ACTIONS(2471), - [anon_sym_assert_equal] = ACTIONS(2471), - [anon_sym_download] = ACTIONS(2471), - [anon_sym_help] = ACTIONS(2471), - [anon_sym_length] = ACTIONS(2471), - [anon_sym_output] = ACTIONS(2471), - [anon_sym_output_error] = ACTIONS(2471), - [anon_sym_type] = ACTIONS(2471), - [anon_sym_append] = ACTIONS(2471), - [anon_sym_metadata] = ACTIONS(2471), - [anon_sym_move] = ACTIONS(2471), - [anon_sym_read] = ACTIONS(2471), - [anon_sym_workdir] = ACTIONS(2471), - [anon_sym_write] = ACTIONS(2471), - [anon_sym_from_json] = ACTIONS(2471), - [anon_sym_to_json] = ACTIONS(2471), - [anon_sym_to_string] = ACTIONS(2471), - [anon_sym_to_float] = ACTIONS(2471), - [anon_sym_bash] = ACTIONS(2471), - [anon_sym_fish] = ACTIONS(2471), - [anon_sym_raw] = ACTIONS(2471), - [anon_sym_sh] = ACTIONS(2471), - [anon_sym_zsh] = ACTIONS(2471), - [anon_sym_random] = ACTIONS(2471), - [anon_sym_random_boolean] = ACTIONS(2471), - [anon_sym_random_float] = ACTIONS(2471), - [anon_sym_random_integer] = ACTIONS(2471), - [anon_sym_columns] = ACTIONS(2471), - [anon_sym_rows] = ACTIONS(2471), - [anon_sym_reverse] = ACTIONS(2471), - }, - [905] = { - [sym_expression] = STATE(1609), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_math_operator] = STATE(1348), - [sym_logic] = STATE(1539), - [sym_logic_operator] = STATE(1347), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(356), - [sym_identifier] = ACTIONS(2451), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_LPAREN] = ACTIONS(2455), - [sym_integer] = ACTIONS(2457), - [sym_float] = ACTIONS(2459), - [sym_string] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(2461), - [anon_sym_false] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_COLON] = ACTIONS(3628), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_EQ_GT] = ACTIONS(2467), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(2469), - [anon_sym_assert] = ACTIONS(2471), - [anon_sym_assert_equal] = ACTIONS(2471), - [anon_sym_download] = ACTIONS(2471), - [anon_sym_help] = ACTIONS(2471), - [anon_sym_length] = ACTIONS(2471), - [anon_sym_output] = ACTIONS(2471), - [anon_sym_output_error] = ACTIONS(2471), - [anon_sym_type] = ACTIONS(2471), - [anon_sym_append] = ACTIONS(2471), - [anon_sym_metadata] = ACTIONS(2471), - [anon_sym_move] = ACTIONS(2471), - [anon_sym_read] = ACTIONS(2471), - [anon_sym_workdir] = ACTIONS(2471), - [anon_sym_write] = ACTIONS(2471), - [anon_sym_from_json] = ACTIONS(2471), - [anon_sym_to_json] = ACTIONS(2471), - [anon_sym_to_string] = ACTIONS(2471), - [anon_sym_to_float] = ACTIONS(2471), - [anon_sym_bash] = ACTIONS(2471), - [anon_sym_fish] = ACTIONS(2471), - [anon_sym_raw] = ACTIONS(2471), - [anon_sym_sh] = ACTIONS(2471), - [anon_sym_zsh] = ACTIONS(2471), - [anon_sym_random] = ACTIONS(2471), - [anon_sym_random_boolean] = ACTIONS(2471), - [anon_sym_random_float] = ACTIONS(2471), - [anon_sym_random_integer] = ACTIONS(2471), - [anon_sym_columns] = ACTIONS(2471), - [anon_sym_rows] = ACTIONS(2471), - [anon_sym_reverse] = ACTIONS(2471), - }, - [906] = { - [sym_expression] = STATE(1611), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_math_operator] = STATE(1348), - [sym_logic] = STATE(1539), - [sym_logic_operator] = STATE(1347), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(897), - [sym_identifier] = ACTIONS(2451), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_LPAREN] = ACTIONS(2455), - [sym_integer] = ACTIONS(2457), - [sym_float] = ACTIONS(2459), - [sym_string] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(2461), - [anon_sym_false] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_COLON] = ACTIONS(3628), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_EQ_GT] = ACTIONS(2467), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(2469), - [anon_sym_assert] = ACTIONS(2471), - [anon_sym_assert_equal] = ACTIONS(2471), - [anon_sym_download] = ACTIONS(2471), - [anon_sym_help] = ACTIONS(2471), - [anon_sym_length] = ACTIONS(2471), - [anon_sym_output] = ACTIONS(2471), - [anon_sym_output_error] = ACTIONS(2471), - [anon_sym_type] = ACTIONS(2471), - [anon_sym_append] = ACTIONS(2471), - [anon_sym_metadata] = ACTIONS(2471), - [anon_sym_move] = ACTIONS(2471), - [anon_sym_read] = ACTIONS(2471), - [anon_sym_workdir] = ACTIONS(2471), - [anon_sym_write] = ACTIONS(2471), - [anon_sym_from_json] = ACTIONS(2471), - [anon_sym_to_json] = ACTIONS(2471), - [anon_sym_to_string] = ACTIONS(2471), - [anon_sym_to_float] = ACTIONS(2471), - [anon_sym_bash] = ACTIONS(2471), - [anon_sym_fish] = ACTIONS(2471), - [anon_sym_raw] = ACTIONS(2471), - [anon_sym_sh] = ACTIONS(2471), - [anon_sym_zsh] = ACTIONS(2471), - [anon_sym_random] = ACTIONS(2471), - [anon_sym_random_boolean] = ACTIONS(2471), - [anon_sym_random_float] = ACTIONS(2471), - [anon_sym_random_integer] = ACTIONS(2471), - [anon_sym_columns] = ACTIONS(2471), - [anon_sym_rows] = ACTIONS(2471), - [anon_sym_reverse] = ACTIONS(2471), - }, - [907] = { - [sym_expression] = STATE(1624), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_math_operator] = STATE(1348), - [sym_logic] = STATE(1539), - [sym_logic_operator] = STATE(1347), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(837), - [sym_identifier] = ACTIONS(2451), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_LPAREN] = ACTIONS(2455), - [sym_integer] = ACTIONS(2457), - [sym_float] = ACTIONS(2459), - [sym_string] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(2461), - [anon_sym_false] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_COLON] = ACTIONS(3628), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_EQ_GT] = ACTIONS(2467), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(2469), - [anon_sym_assert] = ACTIONS(2471), - [anon_sym_assert_equal] = ACTIONS(2471), - [anon_sym_download] = ACTIONS(2471), - [anon_sym_help] = ACTIONS(2471), - [anon_sym_length] = ACTIONS(2471), - [anon_sym_output] = ACTIONS(2471), - [anon_sym_output_error] = ACTIONS(2471), - [anon_sym_type] = ACTIONS(2471), - [anon_sym_append] = ACTIONS(2471), - [anon_sym_metadata] = ACTIONS(2471), - [anon_sym_move] = ACTIONS(2471), - [anon_sym_read] = ACTIONS(2471), - [anon_sym_workdir] = ACTIONS(2471), - [anon_sym_write] = ACTIONS(2471), - [anon_sym_from_json] = ACTIONS(2471), - [anon_sym_to_json] = ACTIONS(2471), - [anon_sym_to_string] = ACTIONS(2471), - [anon_sym_to_float] = ACTIONS(2471), - [anon_sym_bash] = ACTIONS(2471), - [anon_sym_fish] = ACTIONS(2471), - [anon_sym_raw] = ACTIONS(2471), - [anon_sym_sh] = ACTIONS(2471), - [anon_sym_zsh] = ACTIONS(2471), - [anon_sym_random] = ACTIONS(2471), - [anon_sym_random_boolean] = ACTIONS(2471), - [anon_sym_random_float] = ACTIONS(2471), - [anon_sym_random_integer] = ACTIONS(2471), - [anon_sym_columns] = ACTIONS(2471), - [anon_sym_rows] = ACTIONS(2471), - [anon_sym_reverse] = ACTIONS(2471), - }, - [908] = { - [sym_expression] = STATE(1611), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_logic] = STATE(1539), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(908), - [sym_identifier] = ACTIONS(2483), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2486), - [anon_sym_RBRACE] = ACTIONS(2481), - [anon_sym_SEMI] = ACTIONS(2481), - [anon_sym_LPAREN] = ACTIONS(2489), - [anon_sym_COMMA] = ACTIONS(2481), - [sym_integer] = ACTIONS(2492), - [sym_float] = ACTIONS(2495), - [sym_string] = ACTIONS(2495), - [anon_sym_true] = ACTIONS(2498), - [anon_sym_false] = ACTIONS(2498), - [anon_sym_LBRACK] = ACTIONS(2501), - [anon_sym_if] = ACTIONS(2504), - [anon_sym_match] = ACTIONS(2504), - [anon_sym_EQ_GT] = ACTIONS(2506), - [anon_sym_while] = ACTIONS(2504), - [anon_sym_for] = ACTIONS(2504), - [anon_sym_asyncfor] = ACTIONS(2481), - [anon_sym_transform] = ACTIONS(2504), - [anon_sym_filter] = ACTIONS(2504), - [anon_sym_find] = ACTIONS(2504), - [anon_sym_remove] = ACTIONS(2504), - [anon_sym_reduce] = ACTIONS(2504), - [anon_sym_select] = ACTIONS(2504), - [anon_sym_insert] = ACTIONS(2504), - [anon_sym_async] = ACTIONS(2504), - [anon_sym_PIPE] = ACTIONS(3616), - [anon_sym_table] = ACTIONS(2512), - [anon_sym_assert] = ACTIONS(2515), - [anon_sym_assert_equal] = ACTIONS(2515), - [anon_sym_download] = ACTIONS(2515), - [anon_sym_help] = ACTIONS(2515), - [anon_sym_length] = ACTIONS(2515), - [anon_sym_output] = ACTIONS(2515), - [anon_sym_output_error] = ACTIONS(2515), - [anon_sym_type] = ACTIONS(2515), - [anon_sym_append] = ACTIONS(2515), - [anon_sym_metadata] = ACTIONS(2515), - [anon_sym_move] = ACTIONS(2515), - [anon_sym_read] = ACTIONS(2515), - [anon_sym_workdir] = ACTIONS(2515), - [anon_sym_write] = ACTIONS(2515), - [anon_sym_from_json] = ACTIONS(2515), - [anon_sym_to_json] = ACTIONS(2515), - [anon_sym_to_string] = ACTIONS(2515), - [anon_sym_to_float] = ACTIONS(2515), - [anon_sym_bash] = ACTIONS(2515), - [anon_sym_fish] = ACTIONS(2515), - [anon_sym_raw] = ACTIONS(2515), - [anon_sym_sh] = ACTIONS(2515), - [anon_sym_zsh] = ACTIONS(2515), - [anon_sym_random] = ACTIONS(2515), - [anon_sym_random_boolean] = ACTIONS(2515), - [anon_sym_random_float] = ACTIONS(2515), - [anon_sym_random_integer] = ACTIONS(2515), - [anon_sym_columns] = ACTIONS(2515), - [anon_sym_rows] = ACTIONS(2515), - [anon_sym_reverse] = ACTIONS(2515), - }, - [909] = { - [sym_expression] = STATE(1590), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_math_operator] = STATE(1348), - [sym_logic] = STATE(1539), - [sym_logic_operator] = STATE(1347), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(318), - [sym_identifier] = ACTIONS(2451), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_LPAREN] = ACTIONS(2455), - [sym_integer] = ACTIONS(2457), - [sym_float] = ACTIONS(2459), - [sym_string] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(2461), - [anon_sym_false] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_COLON] = ACTIONS(3628), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_EQ_GT] = ACTIONS(2467), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(2469), - [anon_sym_assert] = ACTIONS(2471), - [anon_sym_assert_equal] = ACTIONS(2471), - [anon_sym_download] = ACTIONS(2471), - [anon_sym_help] = ACTIONS(2471), - [anon_sym_length] = ACTIONS(2471), - [anon_sym_output] = ACTIONS(2471), - [anon_sym_output_error] = ACTIONS(2471), - [anon_sym_type] = ACTIONS(2471), - [anon_sym_append] = ACTIONS(2471), - [anon_sym_metadata] = ACTIONS(2471), - [anon_sym_move] = ACTIONS(2471), - [anon_sym_read] = ACTIONS(2471), - [anon_sym_workdir] = ACTIONS(2471), - [anon_sym_write] = ACTIONS(2471), - [anon_sym_from_json] = ACTIONS(2471), - [anon_sym_to_json] = ACTIONS(2471), - [anon_sym_to_string] = ACTIONS(2471), - [anon_sym_to_float] = ACTIONS(2471), - [anon_sym_bash] = ACTIONS(2471), - [anon_sym_fish] = ACTIONS(2471), - [anon_sym_raw] = ACTIONS(2471), - [anon_sym_sh] = ACTIONS(2471), - [anon_sym_zsh] = ACTIONS(2471), - [anon_sym_random] = ACTIONS(2471), - [anon_sym_random_boolean] = ACTIONS(2471), - [anon_sym_random_float] = ACTIONS(2471), - [anon_sym_random_integer] = ACTIONS(2471), - [anon_sym_columns] = ACTIONS(2471), - [anon_sym_rows] = ACTIONS(2471), - [anon_sym_reverse] = ACTIONS(2471), - }, - [910] = { - [sym_expression] = STATE(1579), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_math_operator] = STATE(1348), - [sym_logic] = STATE(1539), - [sym_logic_operator] = STATE(1347), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(291), - [sym_identifier] = ACTIONS(2451), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_LPAREN] = ACTIONS(2455), - [sym_integer] = ACTIONS(2457), - [sym_float] = ACTIONS(2459), - [sym_string] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(2461), - [anon_sym_false] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_COLON] = ACTIONS(3628), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_EQ_GT] = ACTIONS(2467), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(2469), - [anon_sym_assert] = ACTIONS(2471), - [anon_sym_assert_equal] = ACTIONS(2471), - [anon_sym_download] = ACTIONS(2471), - [anon_sym_help] = ACTIONS(2471), - [anon_sym_length] = ACTIONS(2471), - [anon_sym_output] = ACTIONS(2471), - [anon_sym_output_error] = ACTIONS(2471), - [anon_sym_type] = ACTIONS(2471), - [anon_sym_append] = ACTIONS(2471), - [anon_sym_metadata] = ACTIONS(2471), - [anon_sym_move] = ACTIONS(2471), - [anon_sym_read] = ACTIONS(2471), - [anon_sym_workdir] = ACTIONS(2471), - [anon_sym_write] = ACTIONS(2471), - [anon_sym_from_json] = ACTIONS(2471), - [anon_sym_to_json] = ACTIONS(2471), - [anon_sym_to_string] = ACTIONS(2471), - [anon_sym_to_float] = ACTIONS(2471), - [anon_sym_bash] = ACTIONS(2471), - [anon_sym_fish] = ACTIONS(2471), - [anon_sym_raw] = ACTIONS(2471), - [anon_sym_sh] = ACTIONS(2471), - [anon_sym_zsh] = ACTIONS(2471), - [anon_sym_random] = ACTIONS(2471), - [anon_sym_random_boolean] = ACTIONS(2471), - [anon_sym_random_float] = ACTIONS(2471), - [anon_sym_random_integer] = ACTIONS(2471), - [anon_sym_columns] = ACTIONS(2471), - [anon_sym_rows] = ACTIONS(2471), - [anon_sym_reverse] = ACTIONS(2471), - }, - [911] = { - [sym_math_operator] = STATE(1153), - [sym_logic_operator] = STATE(1077), - [ts_builtin_sym_end] = ACTIONS(3252), - [sym_identifier] = ACTIONS(3254), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3252), - [anon_sym_RBRACE] = ACTIONS(3252), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_LPAREN] = ACTIONS(3252), - [anon_sym_RPAREN] = ACTIONS(3252), - [sym_integer] = ACTIONS(3254), - [sym_float] = ACTIONS(3252), - [sym_string] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_COLON] = ACTIONS(3252), - [anon_sym_PLUS] = ACTIONS(3252), - [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_STAR] = ACTIONS(3252), - [anon_sym_SLASH] = ACTIONS(3252), - [anon_sym_PERCENT] = ACTIONS(3252), - [anon_sym_EQ_EQ] = ACTIONS(3252), - [anon_sym_BANG_EQ] = ACTIONS(3252), - [anon_sym_AMP_AMP] = ACTIONS(3252), - [anon_sym_PIPE_PIPE] = ACTIONS(3252), - [anon_sym_GT] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(3254), - [anon_sym_GT_EQ] = ACTIONS(3252), - [anon_sym_LT_EQ] = ACTIONS(3252), - [anon_sym_if] = ACTIONS(3254), - [anon_sym_match] = ACTIONS(3254), - [anon_sym_EQ_GT] = ACTIONS(3252), - [anon_sym_while] = ACTIONS(3254), - [anon_sym_for] = ACTIONS(3254), - [anon_sym_asyncfor] = ACTIONS(3252), - [anon_sym_transform] = ACTIONS(3254), - [anon_sym_filter] = ACTIONS(3254), - [anon_sym_find] = ACTIONS(3254), - [anon_sym_remove] = ACTIONS(3254), - [anon_sym_reduce] = ACTIONS(3254), - [anon_sym_select] = ACTIONS(3254), - [anon_sym_insert] = ACTIONS(3254), - [anon_sym_async] = ACTIONS(3254), - [anon_sym_PIPE] = ACTIONS(3254), - [anon_sym_table] = ACTIONS(3254), - [anon_sym_assert] = ACTIONS(3254), - [anon_sym_assert_equal] = ACTIONS(3254), - [anon_sym_download] = ACTIONS(3254), - [anon_sym_help] = ACTIONS(3254), - [anon_sym_length] = ACTIONS(3254), - [anon_sym_output] = ACTIONS(3254), - [anon_sym_output_error] = ACTIONS(3254), - [anon_sym_type] = ACTIONS(3254), - [anon_sym_append] = ACTIONS(3254), - [anon_sym_metadata] = ACTIONS(3254), - [anon_sym_move] = ACTIONS(3254), - [anon_sym_read] = ACTIONS(3254), - [anon_sym_workdir] = ACTIONS(3254), - [anon_sym_write] = ACTIONS(3254), - [anon_sym_from_json] = ACTIONS(3254), - [anon_sym_to_json] = ACTIONS(3254), - [anon_sym_to_string] = ACTIONS(3254), - [anon_sym_to_float] = ACTIONS(3254), - [anon_sym_bash] = ACTIONS(3254), - [anon_sym_fish] = ACTIONS(3254), - [anon_sym_raw] = ACTIONS(3254), - [anon_sym_sh] = ACTIONS(3254), - [anon_sym_zsh] = ACTIONS(3254), - [anon_sym_random] = ACTIONS(3254), - [anon_sym_random_boolean] = ACTIONS(3254), - [anon_sym_random_float] = ACTIONS(3254), - [anon_sym_random_integer] = ACTIONS(3254), - [anon_sym_columns] = ACTIONS(3254), - [anon_sym_rows] = ACTIONS(3254), - [anon_sym_reverse] = ACTIONS(3254), - }, - [912] = { - [sym_expression] = STATE(1604), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_math_operator] = STATE(1348), - [sym_logic] = STATE(1539), - [sym_logic_operator] = STATE(1347), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(367), - [sym_identifier] = ACTIONS(2451), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_LPAREN] = ACTIONS(2455), - [sym_integer] = ACTIONS(2457), - [sym_float] = ACTIONS(2459), - [sym_string] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(2461), - [anon_sym_false] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_COLON] = ACTIONS(3628), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_EQ_GT] = ACTIONS(2467), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(2469), - [anon_sym_assert] = ACTIONS(2471), - [anon_sym_assert_equal] = ACTIONS(2471), - [anon_sym_download] = ACTIONS(2471), - [anon_sym_help] = ACTIONS(2471), - [anon_sym_length] = ACTIONS(2471), - [anon_sym_output] = ACTIONS(2471), - [anon_sym_output_error] = ACTIONS(2471), - [anon_sym_type] = ACTIONS(2471), - [anon_sym_append] = ACTIONS(2471), - [anon_sym_metadata] = ACTIONS(2471), - [anon_sym_move] = ACTIONS(2471), - [anon_sym_read] = ACTIONS(2471), - [anon_sym_workdir] = ACTIONS(2471), - [anon_sym_write] = ACTIONS(2471), - [anon_sym_from_json] = ACTIONS(2471), - [anon_sym_to_json] = ACTIONS(2471), - [anon_sym_to_string] = ACTIONS(2471), - [anon_sym_to_float] = ACTIONS(2471), - [anon_sym_bash] = ACTIONS(2471), - [anon_sym_fish] = ACTIONS(2471), - [anon_sym_raw] = ACTIONS(2471), - [anon_sym_sh] = ACTIONS(2471), - [anon_sym_zsh] = ACTIONS(2471), - [anon_sym_random] = ACTIONS(2471), - [anon_sym_random_boolean] = ACTIONS(2471), - [anon_sym_random_float] = ACTIONS(2471), - [anon_sym_random_integer] = ACTIONS(2471), - [anon_sym_columns] = ACTIONS(2471), - [anon_sym_rows] = ACTIONS(2471), - [anon_sym_reverse] = ACTIONS(2471), - }, - [913] = { - [sym_expression] = STATE(1591), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_math_operator] = STATE(1348), - [sym_logic] = STATE(1539), - [sym_logic_operator] = STATE(1347), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(819), - [sym_identifier] = ACTIONS(2451), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_LPAREN] = ACTIONS(2455), - [sym_integer] = ACTIONS(2457), - [sym_float] = ACTIONS(2459), - [sym_string] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(2461), - [anon_sym_false] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_COLON] = ACTIONS(3628), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_EQ_GT] = ACTIONS(2467), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(2469), - [anon_sym_assert] = ACTIONS(2471), - [anon_sym_assert_equal] = ACTIONS(2471), - [anon_sym_download] = ACTIONS(2471), - [anon_sym_help] = ACTIONS(2471), - [anon_sym_length] = ACTIONS(2471), - [anon_sym_output] = ACTIONS(2471), - [anon_sym_output_error] = ACTIONS(2471), - [anon_sym_type] = ACTIONS(2471), - [anon_sym_append] = ACTIONS(2471), - [anon_sym_metadata] = ACTIONS(2471), - [anon_sym_move] = ACTIONS(2471), - [anon_sym_read] = ACTIONS(2471), - [anon_sym_workdir] = ACTIONS(2471), - [anon_sym_write] = ACTIONS(2471), - [anon_sym_from_json] = ACTIONS(2471), - [anon_sym_to_json] = ACTIONS(2471), - [anon_sym_to_string] = ACTIONS(2471), - [anon_sym_to_float] = ACTIONS(2471), - [anon_sym_bash] = ACTIONS(2471), - [anon_sym_fish] = ACTIONS(2471), - [anon_sym_raw] = ACTIONS(2471), - [anon_sym_sh] = ACTIONS(2471), - [anon_sym_zsh] = ACTIONS(2471), - [anon_sym_random] = ACTIONS(2471), - [anon_sym_random_boolean] = ACTIONS(2471), - [anon_sym_random_float] = ACTIONS(2471), - [anon_sym_random_integer] = ACTIONS(2471), - [anon_sym_columns] = ACTIONS(2471), - [anon_sym_rows] = ACTIONS(2471), - [anon_sym_reverse] = ACTIONS(2471), - }, - [914] = { - [sym_expression] = STATE(1030), - [sym__expression_kind] = STATE(1002), - [aux_sym__expression_list] = STATE(899), - [sym_value] = STATE(1002), - [sym_boolean] = STATE(996), - [sym_list] = STATE(996), - [sym_map] = STATE(996), - [sym_index] = STATE(1002), - [sym_math] = STATE(1002), - [sym_logic] = STATE(1002), - [sym_identifier_list] = STATE(1762), - [sym_table] = STATE(996), - [sym_function] = STATE(996), - [sym_function_call] = STATE(1002), - [sym__context_defined_function] = STATE(1009), - [sym_built_in_function] = STATE(1009), - [sym__built_in_function_name] = STATE(726), - [sym_identifier] = ACTIONS(3576), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3503), - [anon_sym_LPAREN] = ACTIONS(3505), - [anon_sym_RPAREN] = ACTIONS(2473), - [sym_integer] = ACTIONS(3507), - [sym_float] = ACTIONS(3509), - [sym_string] = ACTIONS(3509), - [anon_sym_true] = ACTIONS(3511), - [anon_sym_false] = ACTIONS(3511), - [anon_sym_LBRACK] = ACTIONS(3513), - [anon_sym_COLON] = ACTIONS(2473), - [anon_sym_DOT_DOT] = ACTIONS(2473), - [anon_sym_PLUS] = ACTIONS(2473), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2473), - [anon_sym_SLASH] = ACTIONS(2473), - [anon_sym_PERCENT] = ACTIONS(2473), - [anon_sym_EQ_EQ] = ACTIONS(2473), - [anon_sym_BANG_EQ] = ACTIONS(2473), - [anon_sym_AMP_AMP] = ACTIONS(2473), - [anon_sym_PIPE_PIPE] = ACTIONS(2473), - [anon_sym_GT] = ACTIONS(2475), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_GT_EQ] = ACTIONS(2473), - [anon_sym_LT_EQ] = ACTIONS(2473), - [anon_sym_EQ_GT] = ACTIONS(3578), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(3580), - [anon_sym_assert] = ACTIONS(3582), - [anon_sym_assert_equal] = ACTIONS(3582), - [anon_sym_download] = ACTIONS(3582), - [anon_sym_help] = ACTIONS(3582), - [anon_sym_length] = ACTIONS(3582), - [anon_sym_output] = ACTIONS(3582), - [anon_sym_output_error] = ACTIONS(3582), - [anon_sym_type] = ACTIONS(3582), - [anon_sym_append] = ACTIONS(3582), - [anon_sym_metadata] = ACTIONS(3582), - [anon_sym_move] = ACTIONS(3582), - [anon_sym_read] = ACTIONS(3582), - [anon_sym_workdir] = ACTIONS(3582), - [anon_sym_write] = ACTIONS(3582), - [anon_sym_from_json] = ACTIONS(3582), - [anon_sym_to_json] = ACTIONS(3582), - [anon_sym_to_string] = ACTIONS(3582), - [anon_sym_to_float] = ACTIONS(3582), - [anon_sym_bash] = ACTIONS(3582), - [anon_sym_fish] = ACTIONS(3582), - [anon_sym_raw] = ACTIONS(3582), - [anon_sym_sh] = ACTIONS(3582), - [anon_sym_zsh] = ACTIONS(3582), - [anon_sym_random] = ACTIONS(3582), - [anon_sym_random_boolean] = ACTIONS(3582), - [anon_sym_random_float] = ACTIONS(3582), - [anon_sym_random_integer] = ACTIONS(3582), - [anon_sym_columns] = ACTIONS(3582), - [anon_sym_rows] = ACTIONS(3582), - [anon_sym_reverse] = ACTIONS(3582), - }, - [915] = { - [sym_expression] = STATE(1578), - [sym__expression_kind] = STATE(1539), - [sym_value] = STATE(1539), - [sym_boolean] = STATE(1550), - [sym_list] = STATE(1550), - [sym_map] = STATE(1550), - [sym_index] = STATE(1539), - [sym_math] = STATE(1539), - [sym_math_operator] = STATE(1348), - [sym_logic] = STATE(1539), - [sym_logic_operator] = STATE(1347), - [sym_identifier_list] = STATE(1837), - [sym_table] = STATE(1550), - [sym_function] = STATE(1550), - [sym_function_call] = STATE(1539), - [sym__context_defined_function] = STATE(1533), - [sym_built_in_function] = STATE(1533), - [sym__built_in_function_name] = STATE(928), - [aux_sym_match_repeat1] = STATE(347), - [sym_identifier] = ACTIONS(2451), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_LPAREN] = ACTIONS(2455), - [sym_integer] = ACTIONS(2457), - [sym_float] = ACTIONS(2459), - [sym_string] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(2461), - [anon_sym_false] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_COLON] = ACTIONS(3628), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_EQ_GT] = ACTIONS(2467), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(2469), - [anon_sym_assert] = ACTIONS(2471), - [anon_sym_assert_equal] = ACTIONS(2471), - [anon_sym_download] = ACTIONS(2471), - [anon_sym_help] = ACTIONS(2471), - [anon_sym_length] = ACTIONS(2471), - [anon_sym_output] = ACTIONS(2471), - [anon_sym_output_error] = ACTIONS(2471), - [anon_sym_type] = ACTIONS(2471), - [anon_sym_append] = ACTIONS(2471), - [anon_sym_metadata] = ACTIONS(2471), - [anon_sym_move] = ACTIONS(2471), - [anon_sym_read] = ACTIONS(2471), - [anon_sym_workdir] = ACTIONS(2471), - [anon_sym_write] = ACTIONS(2471), - [anon_sym_from_json] = ACTIONS(2471), - [anon_sym_to_json] = ACTIONS(2471), - [anon_sym_to_string] = ACTIONS(2471), - [anon_sym_to_float] = ACTIONS(2471), - [anon_sym_bash] = ACTIONS(2471), - [anon_sym_fish] = ACTIONS(2471), - [anon_sym_raw] = ACTIONS(2471), - [anon_sym_sh] = ACTIONS(2471), - [anon_sym_zsh] = ACTIONS(2471), - [anon_sym_random] = ACTIONS(2471), - [anon_sym_random_boolean] = ACTIONS(2471), - [anon_sym_random_float] = ACTIONS(2471), - [anon_sym_random_integer] = ACTIONS(2471), - [anon_sym_columns] = ACTIONS(2471), - [anon_sym_rows] = ACTIONS(2471), - [anon_sym_reverse] = ACTIONS(2471), - }, - [916] = { - [sym_math_operator] = STATE(1153), - [sym_logic_operator] = STATE(1077), - [ts_builtin_sym_end] = ACTIONS(3281), - [sym_identifier] = ACTIONS(3283), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3281), - [anon_sym_RBRACE] = ACTIONS(3281), - [anon_sym_SEMI] = ACTIONS(3281), - [anon_sym_LPAREN] = ACTIONS(3281), - [anon_sym_RPAREN] = ACTIONS(3281), - [sym_integer] = ACTIONS(3283), - [sym_float] = ACTIONS(3281), - [sym_string] = ACTIONS(3281), - [anon_sym_true] = ACTIONS(3283), - [anon_sym_false] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3281), - [anon_sym_COLON] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(3283), - [anon_sym_match] = ACTIONS(3283), - [anon_sym_EQ_GT] = ACTIONS(3281), - [anon_sym_while] = ACTIONS(3283), - [anon_sym_for] = ACTIONS(3283), - [anon_sym_asyncfor] = ACTIONS(3281), - [anon_sym_transform] = ACTIONS(3283), - [anon_sym_filter] = ACTIONS(3283), - [anon_sym_find] = ACTIONS(3283), - [anon_sym_remove] = ACTIONS(3283), - [anon_sym_reduce] = ACTIONS(3283), - [anon_sym_select] = ACTIONS(3283), - [anon_sym_insert] = ACTIONS(3283), - [anon_sym_async] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(3283), - [anon_sym_table] = ACTIONS(3283), - [anon_sym_assert] = ACTIONS(3283), - [anon_sym_assert_equal] = ACTIONS(3283), - [anon_sym_download] = ACTIONS(3283), - [anon_sym_help] = ACTIONS(3283), - [anon_sym_length] = ACTIONS(3283), - [anon_sym_output] = ACTIONS(3283), - [anon_sym_output_error] = ACTIONS(3283), - [anon_sym_type] = ACTIONS(3283), - [anon_sym_append] = ACTIONS(3283), - [anon_sym_metadata] = ACTIONS(3283), - [anon_sym_move] = ACTIONS(3283), - [anon_sym_read] = ACTIONS(3283), - [anon_sym_workdir] = ACTIONS(3283), - [anon_sym_write] = ACTIONS(3283), - [anon_sym_from_json] = ACTIONS(3283), - [anon_sym_to_json] = ACTIONS(3283), - [anon_sym_to_string] = ACTIONS(3283), - [anon_sym_to_float] = ACTIONS(3283), - [anon_sym_bash] = ACTIONS(3283), - [anon_sym_fish] = ACTIONS(3283), - [anon_sym_raw] = ACTIONS(3283), - [anon_sym_sh] = ACTIONS(3283), - [anon_sym_zsh] = ACTIONS(3283), - [anon_sym_random] = ACTIONS(3283), - [anon_sym_random_boolean] = ACTIONS(3283), - [anon_sym_random_float] = ACTIONS(3283), - [anon_sym_random_integer] = ACTIONS(3283), - [anon_sym_columns] = ACTIONS(3283), - [anon_sym_rows] = ACTIONS(3283), - [anon_sym_reverse] = ACTIONS(3283), - }, - [917] = { - [sym_expression] = STATE(1030), - [sym__expression_kind] = STATE(1002), - [aux_sym__expression_list] = STATE(884), - [sym_value] = STATE(1002), - [sym_boolean] = STATE(996), - [sym_list] = STATE(996), - [sym_map] = STATE(996), - [sym_index] = STATE(1002), - [sym_math] = STATE(1002), - [sym_logic] = STATE(1002), - [sym_identifier_list] = STATE(1762), - [sym_table] = STATE(996), - [sym_function] = STATE(996), - [sym_function_call] = STATE(1002), - [sym__context_defined_function] = STATE(1009), - [sym_built_in_function] = STATE(1009), - [sym__built_in_function_name] = STATE(726), - [sym_identifier] = ACTIONS(3576), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3503), - [anon_sym_LPAREN] = ACTIONS(3505), - [anon_sym_RPAREN] = ACTIONS(2435), - [sym_integer] = ACTIONS(3507), - [sym_float] = ACTIONS(3509), - [sym_string] = ACTIONS(3509), - [anon_sym_true] = ACTIONS(3511), - [anon_sym_false] = ACTIONS(3511), - [anon_sym_LBRACK] = ACTIONS(3513), - [anon_sym_COLON] = ACTIONS(2435), - [anon_sym_DOT_DOT] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2435), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_PERCENT] = ACTIONS(2435), - [anon_sym_EQ_EQ] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_PIPE_PIPE] = ACTIONS(2435), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_EQ_GT] = ACTIONS(3578), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(3580), - [anon_sym_assert] = ACTIONS(3582), - [anon_sym_assert_equal] = ACTIONS(3582), - [anon_sym_download] = ACTIONS(3582), - [anon_sym_help] = ACTIONS(3582), - [anon_sym_length] = ACTIONS(3582), - [anon_sym_output] = ACTIONS(3582), - [anon_sym_output_error] = ACTIONS(3582), - [anon_sym_type] = ACTIONS(3582), - [anon_sym_append] = ACTIONS(3582), - [anon_sym_metadata] = ACTIONS(3582), - [anon_sym_move] = ACTIONS(3582), - [anon_sym_read] = ACTIONS(3582), - [anon_sym_workdir] = ACTIONS(3582), - [anon_sym_write] = ACTIONS(3582), - [anon_sym_from_json] = ACTIONS(3582), - [anon_sym_to_json] = ACTIONS(3582), - [anon_sym_to_string] = ACTIONS(3582), - [anon_sym_to_float] = ACTIONS(3582), - [anon_sym_bash] = ACTIONS(3582), - [anon_sym_fish] = ACTIONS(3582), - [anon_sym_raw] = ACTIONS(3582), - [anon_sym_sh] = ACTIONS(3582), - [anon_sym_zsh] = ACTIONS(3582), - [anon_sym_random] = ACTIONS(3582), - [anon_sym_random_boolean] = ACTIONS(3582), - [anon_sym_random_float] = ACTIONS(3582), - [anon_sym_random_integer] = ACTIONS(3582), - [anon_sym_columns] = ACTIONS(3582), - [anon_sym_rows] = ACTIONS(3582), - [anon_sym_reverse] = ACTIONS(3582), - }, - [918] = { - [sym_expression] = STATE(1042), - [sym__expression_kind] = STATE(1002), - [aux_sym__expression_list] = STATE(941), - [sym_value] = STATE(1002), - [sym_boolean] = STATE(996), - [sym_list] = STATE(996), - [sym_map] = STATE(996), - [sym_index] = STATE(1002), - [sym_math] = STATE(1002), - [sym_logic] = STATE(1002), - [sym_identifier_list] = STATE(1980), - [sym_table] = STATE(996), - [sym_function] = STATE(996), - [sym_function_call] = STATE(1002), - [sym__context_defined_function] = STATE(1009), - [sym_built_in_function] = STATE(1009), - [sym__built_in_function_name] = STATE(780), - [sym_identifier] = ACTIONS(2437), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3503), - [anon_sym_LPAREN] = ACTIONS(3505), - [sym_integer] = ACTIONS(3507), - [sym_float] = ACTIONS(3509), - [sym_string] = ACTIONS(3509), - [anon_sym_true] = ACTIONS(3511), - [anon_sym_false] = ACTIONS(3511), - [anon_sym_LBRACK] = ACTIONS(3513), - [anon_sym_COLON] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2435), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_PERCENT] = ACTIONS(2435), - [anon_sym_EQ_EQ] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_PIPE_PIPE] = ACTIONS(2435), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_EQ_GT] = ACTIONS(3515), - [anon_sym_in] = ACTIONS(3630), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(3517), - [anon_sym_assert] = ACTIONS(3145), - [anon_sym_assert_equal] = ACTIONS(3145), - [anon_sym_download] = ACTIONS(3145), - [anon_sym_help] = ACTIONS(3145), - [anon_sym_length] = ACTIONS(3145), - [anon_sym_output] = ACTIONS(3145), - [anon_sym_output_error] = ACTIONS(3145), - [anon_sym_type] = ACTIONS(3145), - [anon_sym_append] = ACTIONS(3145), - [anon_sym_metadata] = ACTIONS(3145), - [anon_sym_move] = ACTIONS(3145), - [anon_sym_read] = ACTIONS(3145), - [anon_sym_workdir] = ACTIONS(3145), - [anon_sym_write] = ACTIONS(3145), - [anon_sym_from_json] = ACTIONS(3145), - [anon_sym_to_json] = ACTIONS(3145), - [anon_sym_to_string] = ACTIONS(3145), - [anon_sym_to_float] = ACTIONS(3145), - [anon_sym_bash] = ACTIONS(3145), - [anon_sym_fish] = ACTIONS(3145), - [anon_sym_raw] = ACTIONS(3145), - [anon_sym_sh] = ACTIONS(3145), - [anon_sym_zsh] = ACTIONS(3145), - [anon_sym_random] = ACTIONS(3145), - [anon_sym_random_boolean] = ACTIONS(3145), - [anon_sym_random_float] = ACTIONS(3145), - [anon_sym_random_integer] = ACTIONS(3145), - [anon_sym_columns] = ACTIONS(3145), - [anon_sym_rows] = ACTIONS(3145), - [anon_sym_reverse] = ACTIONS(3145), - }, - [919] = { - [sym_expression] = STATE(1042), - [sym__expression_kind] = STATE(1002), - [aux_sym__expression_list] = STATE(941), - [sym_value] = STATE(1002), - [sym_boolean] = STATE(996), - [sym_list] = STATE(996), - [sym_map] = STATE(996), - [sym_index] = STATE(1002), - [sym_math] = STATE(1002), - [sym_logic] = STATE(1002), - [sym_identifier_list] = STATE(1980), - [sym_table] = STATE(996), - [sym_function] = STATE(996), - [sym_function_call] = STATE(1002), - [sym__context_defined_function] = STATE(1009), - [sym_built_in_function] = STATE(1009), - [sym__built_in_function_name] = STATE(780), - [sym_identifier] = ACTIONS(2437), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3503), - [anon_sym_LPAREN] = ACTIONS(3505), - [sym_integer] = ACTIONS(3507), - [sym_float] = ACTIONS(3509), - [sym_string] = ACTIONS(3509), - [anon_sym_true] = ACTIONS(3511), - [anon_sym_false] = ACTIONS(3511), - [anon_sym_LBRACK] = ACTIONS(3513), - [anon_sym_COLON] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2435), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_PERCENT] = ACTIONS(2435), - [anon_sym_EQ_EQ] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_PIPE_PIPE] = ACTIONS(2435), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_EQ_GT] = ACTIONS(3515), - [anon_sym_in] = ACTIONS(3632), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(3517), - [anon_sym_assert] = ACTIONS(3145), - [anon_sym_assert_equal] = ACTIONS(3145), - [anon_sym_download] = ACTIONS(3145), - [anon_sym_help] = ACTIONS(3145), - [anon_sym_length] = ACTIONS(3145), - [anon_sym_output] = ACTIONS(3145), - [anon_sym_output_error] = ACTIONS(3145), - [anon_sym_type] = ACTIONS(3145), - [anon_sym_append] = ACTIONS(3145), - [anon_sym_metadata] = ACTIONS(3145), - [anon_sym_move] = ACTIONS(3145), - [anon_sym_read] = ACTIONS(3145), - [anon_sym_workdir] = ACTIONS(3145), - [anon_sym_write] = ACTIONS(3145), - [anon_sym_from_json] = ACTIONS(3145), - [anon_sym_to_json] = ACTIONS(3145), - [anon_sym_to_string] = ACTIONS(3145), - [anon_sym_to_float] = ACTIONS(3145), - [anon_sym_bash] = ACTIONS(3145), - [anon_sym_fish] = ACTIONS(3145), - [anon_sym_raw] = ACTIONS(3145), - [anon_sym_sh] = ACTIONS(3145), - [anon_sym_zsh] = ACTIONS(3145), - [anon_sym_random] = ACTIONS(3145), - [anon_sym_random_boolean] = ACTIONS(3145), - [anon_sym_random_float] = ACTIONS(3145), - [anon_sym_random_integer] = ACTIONS(3145), - [anon_sym_columns] = ACTIONS(3145), - [anon_sym_rows] = ACTIONS(3145), - [anon_sym_reverse] = ACTIONS(3145), - }, - [920] = { - [sym_expression] = STATE(1042), - [sym__expression_kind] = STATE(1002), - [aux_sym__expression_list] = STATE(920), - [sym_value] = STATE(1002), - [sym_boolean] = STATE(996), - [sym_list] = STATE(996), - [sym_map] = STATE(996), - [sym_index] = STATE(1002), - [sym_math] = STATE(1002), - [sym_logic] = STATE(1002), - [sym_identifier_list] = STATE(1980), - [sym_table] = STATE(996), - [sym_function] = STATE(996), - [sym_function_call] = STATE(1002), - [sym__context_defined_function] = STATE(1009), - [sym_built_in_function] = STATE(1009), - [sym__built_in_function_name] = STATE(780), - [sym_identifier] = ACTIONS(3542), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3545), - [anon_sym_LPAREN] = ACTIONS(3548), - [anon_sym_RPAREN] = ACTIONS(2518), - [sym_integer] = ACTIONS(3551), - [sym_float] = ACTIONS(3554), - [sym_string] = ACTIONS(3554), - [anon_sym_true] = ACTIONS(3557), - [anon_sym_false] = ACTIONS(3557), - [anon_sym_LBRACK] = ACTIONS(3560), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2541), - [anon_sym_STAR] = ACTIONS(2518), - [anon_sym_SLASH] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_EQ_EQ] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_GT] = ACTIONS(2541), - [anon_sym_LT] = ACTIONS(2541), - [anon_sym_GT_EQ] = ACTIONS(2518), - [anon_sym_LT_EQ] = ACTIONS(2518), - [anon_sym_EQ_GT] = ACTIONS(3600), - [anon_sym_PIPE] = ACTIONS(2546), - [anon_sym_table] = ACTIONS(3603), - [anon_sym_assert] = ACTIONS(3606), - [anon_sym_assert_equal] = ACTIONS(3606), - [anon_sym_download] = ACTIONS(3606), - [anon_sym_help] = ACTIONS(3606), - [anon_sym_length] = ACTIONS(3606), - [anon_sym_output] = ACTIONS(3606), - [anon_sym_output_error] = ACTIONS(3606), - [anon_sym_type] = ACTIONS(3606), - [anon_sym_append] = ACTIONS(3606), - [anon_sym_metadata] = ACTIONS(3606), - [anon_sym_move] = ACTIONS(3606), - [anon_sym_read] = ACTIONS(3606), - [anon_sym_workdir] = ACTIONS(3606), - [anon_sym_write] = ACTIONS(3606), - [anon_sym_from_json] = ACTIONS(3606), - [anon_sym_to_json] = ACTIONS(3606), - [anon_sym_to_string] = ACTIONS(3606), - [anon_sym_to_float] = ACTIONS(3606), - [anon_sym_bash] = ACTIONS(3606), - [anon_sym_fish] = ACTIONS(3606), - [anon_sym_raw] = ACTIONS(3606), - [anon_sym_sh] = ACTIONS(3606), - [anon_sym_zsh] = ACTIONS(3606), - [anon_sym_random] = ACTIONS(3606), - [anon_sym_random_boolean] = ACTIONS(3606), - [anon_sym_random_float] = ACTIONS(3606), - [anon_sym_random_integer] = ACTIONS(3606), - [anon_sym_columns] = ACTIONS(3606), - [anon_sym_rows] = ACTIONS(3606), - [anon_sym_reverse] = ACTIONS(3606), - }, - [921] = { - [sym_expression] = STATE(1042), - [sym__expression_kind] = STATE(1002), - [aux_sym__expression_list] = STATE(941), - [sym_value] = STATE(1002), - [sym_boolean] = STATE(996), - [sym_list] = STATE(996), - [sym_map] = STATE(996), - [sym_index] = STATE(1002), - [sym_math] = STATE(1002), - [sym_logic] = STATE(1002), - [sym_identifier_list] = STATE(1980), - [sym_table] = STATE(996), - [sym_function] = STATE(996), - [sym_function_call] = STATE(1002), - [sym__context_defined_function] = STATE(1009), - [sym_built_in_function] = STATE(1009), - [sym__built_in_function_name] = STATE(780), - [sym_identifier] = ACTIONS(2437), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3503), - [anon_sym_LPAREN] = ACTIONS(3505), - [sym_integer] = ACTIONS(3507), - [sym_float] = ACTIONS(3509), - [sym_string] = ACTIONS(3509), - [anon_sym_true] = ACTIONS(3511), - [anon_sym_false] = ACTIONS(3511), - [anon_sym_LBRACK] = ACTIONS(3513), - [anon_sym_COLON] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2435), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_PERCENT] = ACTIONS(2435), - [anon_sym_EQ_EQ] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_PIPE_PIPE] = ACTIONS(2435), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_EQ_GT] = ACTIONS(3515), - [anon_sym_in] = ACTIONS(3634), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(3517), - [anon_sym_assert] = ACTIONS(3145), - [anon_sym_assert_equal] = ACTIONS(3145), - [anon_sym_download] = ACTIONS(3145), - [anon_sym_help] = ACTIONS(3145), - [anon_sym_length] = ACTIONS(3145), - [anon_sym_output] = ACTIONS(3145), - [anon_sym_output_error] = ACTIONS(3145), - [anon_sym_type] = ACTIONS(3145), - [anon_sym_append] = ACTIONS(3145), - [anon_sym_metadata] = ACTIONS(3145), - [anon_sym_move] = ACTIONS(3145), - [anon_sym_read] = ACTIONS(3145), - [anon_sym_workdir] = ACTIONS(3145), - [anon_sym_write] = ACTIONS(3145), - [anon_sym_from_json] = ACTIONS(3145), - [anon_sym_to_json] = ACTIONS(3145), - [anon_sym_to_string] = ACTIONS(3145), - [anon_sym_to_float] = ACTIONS(3145), - [anon_sym_bash] = ACTIONS(3145), - [anon_sym_fish] = ACTIONS(3145), - [anon_sym_raw] = ACTIONS(3145), - [anon_sym_sh] = ACTIONS(3145), - [anon_sym_zsh] = ACTIONS(3145), - [anon_sym_random] = ACTIONS(3145), - [anon_sym_random_boolean] = ACTIONS(3145), - [anon_sym_random_float] = ACTIONS(3145), - [anon_sym_random_integer] = ACTIONS(3145), - [anon_sym_columns] = ACTIONS(3145), - [anon_sym_rows] = ACTIONS(3145), - [anon_sym_reverse] = ACTIONS(3145), - }, - [922] = { - [sym_expression] = STATE(1042), - [sym__expression_kind] = STATE(1002), - [aux_sym__expression_list] = STATE(941), - [sym_value] = STATE(1002), - [sym_boolean] = STATE(996), - [sym_list] = STATE(996), - [sym_map] = STATE(996), - [sym_index] = STATE(1002), - [sym_math] = STATE(1002), - [sym_logic] = STATE(1002), - [sym_identifier_list] = STATE(1980), - [sym_table] = STATE(996), - [sym_function] = STATE(996), - [sym_function_call] = STATE(1002), - [sym__context_defined_function] = STATE(1009), - [sym_built_in_function] = STATE(1009), - [sym__built_in_function_name] = STATE(780), - [sym_identifier] = ACTIONS(2437), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3503), - [anon_sym_LPAREN] = ACTIONS(3505), - [sym_integer] = ACTIONS(3507), - [sym_float] = ACTIONS(3509), - [sym_string] = ACTIONS(3509), - [anon_sym_true] = ACTIONS(3511), - [anon_sym_false] = ACTIONS(3511), - [anon_sym_LBRACK] = ACTIONS(3513), - [anon_sym_COLON] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2435), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_PERCENT] = ACTIONS(2435), - [anon_sym_EQ_EQ] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_PIPE_PIPE] = ACTIONS(2435), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_EQ_GT] = ACTIONS(3515), - [anon_sym_in] = ACTIONS(3636), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(3517), - [anon_sym_assert] = ACTIONS(3145), - [anon_sym_assert_equal] = ACTIONS(3145), - [anon_sym_download] = ACTIONS(3145), - [anon_sym_help] = ACTIONS(3145), - [anon_sym_length] = ACTIONS(3145), - [anon_sym_output] = ACTIONS(3145), - [anon_sym_output_error] = ACTIONS(3145), - [anon_sym_type] = ACTIONS(3145), - [anon_sym_append] = ACTIONS(3145), - [anon_sym_metadata] = ACTIONS(3145), - [anon_sym_move] = ACTIONS(3145), - [anon_sym_read] = ACTIONS(3145), - [anon_sym_workdir] = ACTIONS(3145), - [anon_sym_write] = ACTIONS(3145), - [anon_sym_from_json] = ACTIONS(3145), - [anon_sym_to_json] = ACTIONS(3145), - [anon_sym_to_string] = ACTIONS(3145), - [anon_sym_to_float] = ACTIONS(3145), - [anon_sym_bash] = ACTIONS(3145), - [anon_sym_fish] = ACTIONS(3145), - [anon_sym_raw] = ACTIONS(3145), - [anon_sym_sh] = ACTIONS(3145), - [anon_sym_zsh] = ACTIONS(3145), - [anon_sym_random] = ACTIONS(3145), - [anon_sym_random_boolean] = ACTIONS(3145), - [anon_sym_random_float] = ACTIONS(3145), - [anon_sym_random_integer] = ACTIONS(3145), - [anon_sym_columns] = ACTIONS(3145), - [anon_sym_rows] = ACTIONS(3145), - [anon_sym_reverse] = ACTIONS(3145), - }, - [923] = { - [sym_expression] = STATE(1042), - [sym__expression_kind] = STATE(1002), - [aux_sym__expression_list] = STATE(941), - [sym_value] = STATE(1002), - [sym_boolean] = STATE(996), - [sym_list] = STATE(996), - [sym_map] = STATE(996), - [sym_index] = STATE(1002), - [sym_math] = STATE(1002), - [sym_logic] = STATE(1002), - [sym_identifier_list] = STATE(1980), - [sym_table] = STATE(996), - [sym_function] = STATE(996), - [sym_function_call] = STATE(1002), - [sym__context_defined_function] = STATE(1009), - [sym_built_in_function] = STATE(1009), - [sym__built_in_function_name] = STATE(780), - [sym_identifier] = ACTIONS(2437), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3503), - [anon_sym_LPAREN] = ACTIONS(3505), - [sym_integer] = ACTIONS(3507), - [sym_float] = ACTIONS(3509), - [sym_string] = ACTIONS(3509), - [anon_sym_true] = ACTIONS(3511), - [anon_sym_false] = ACTIONS(3511), - [anon_sym_LBRACK] = ACTIONS(3513), - [anon_sym_COLON] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2435), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_PERCENT] = ACTIONS(2435), - [anon_sym_EQ_EQ] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_PIPE_PIPE] = ACTIONS(2435), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_EQ_GT] = ACTIONS(3515), - [anon_sym_in] = ACTIONS(3638), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(3517), - [anon_sym_assert] = ACTIONS(3145), - [anon_sym_assert_equal] = ACTIONS(3145), - [anon_sym_download] = ACTIONS(3145), - [anon_sym_help] = ACTIONS(3145), - [anon_sym_length] = ACTIONS(3145), - [anon_sym_output] = ACTIONS(3145), - [anon_sym_output_error] = ACTIONS(3145), - [anon_sym_type] = ACTIONS(3145), - [anon_sym_append] = ACTIONS(3145), - [anon_sym_metadata] = ACTIONS(3145), - [anon_sym_move] = ACTIONS(3145), - [anon_sym_read] = ACTIONS(3145), - [anon_sym_workdir] = ACTIONS(3145), - [anon_sym_write] = ACTIONS(3145), - [anon_sym_from_json] = ACTIONS(3145), - [anon_sym_to_json] = ACTIONS(3145), - [anon_sym_to_string] = ACTIONS(3145), - [anon_sym_to_float] = ACTIONS(3145), - [anon_sym_bash] = ACTIONS(3145), - [anon_sym_fish] = ACTIONS(3145), - [anon_sym_raw] = ACTIONS(3145), - [anon_sym_sh] = ACTIONS(3145), - [anon_sym_zsh] = ACTIONS(3145), - [anon_sym_random] = ACTIONS(3145), - [anon_sym_random_boolean] = ACTIONS(3145), - [anon_sym_random_float] = ACTIONS(3145), - [anon_sym_random_integer] = ACTIONS(3145), - [anon_sym_columns] = ACTIONS(3145), - [anon_sym_rows] = ACTIONS(3145), - [anon_sym_reverse] = ACTIONS(3145), - }, - [924] = { - [sym_expression] = STATE(1042), - [sym__expression_kind] = STATE(1002), - [aux_sym__expression_list] = STATE(941), - [sym_value] = STATE(1002), - [sym_boolean] = STATE(996), - [sym_list] = STATE(996), - [sym_map] = STATE(996), - [sym_index] = STATE(1002), - [sym_math] = STATE(1002), - [sym_logic] = STATE(1002), - [sym_identifier_list] = STATE(1980), - [sym_table] = STATE(996), - [sym_function] = STATE(996), - [sym_function_call] = STATE(1002), - [sym__context_defined_function] = STATE(1009), - [sym_built_in_function] = STATE(1009), - [sym__built_in_function_name] = STATE(780), - [sym_identifier] = ACTIONS(2437), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3503), - [anon_sym_LPAREN] = ACTIONS(3505), - [sym_integer] = ACTIONS(3507), - [sym_float] = ACTIONS(3509), - [sym_string] = ACTIONS(3509), - [anon_sym_true] = ACTIONS(3511), - [anon_sym_false] = ACTIONS(3511), - [anon_sym_LBRACK] = ACTIONS(3513), - [anon_sym_COLON] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2435), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_PERCENT] = ACTIONS(2435), - [anon_sym_EQ_EQ] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_PIPE_PIPE] = ACTIONS(2435), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_EQ_GT] = ACTIONS(3515), - [anon_sym_in] = ACTIONS(3640), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(3517), - [anon_sym_assert] = ACTIONS(3145), - [anon_sym_assert_equal] = ACTIONS(3145), - [anon_sym_download] = ACTIONS(3145), - [anon_sym_help] = ACTIONS(3145), - [anon_sym_length] = ACTIONS(3145), - [anon_sym_output] = ACTIONS(3145), - [anon_sym_output_error] = ACTIONS(3145), - [anon_sym_type] = ACTIONS(3145), - [anon_sym_append] = ACTIONS(3145), - [anon_sym_metadata] = ACTIONS(3145), - [anon_sym_move] = ACTIONS(3145), - [anon_sym_read] = ACTIONS(3145), - [anon_sym_workdir] = ACTIONS(3145), - [anon_sym_write] = ACTIONS(3145), - [anon_sym_from_json] = ACTIONS(3145), - [anon_sym_to_json] = ACTIONS(3145), - [anon_sym_to_string] = ACTIONS(3145), - [anon_sym_to_float] = ACTIONS(3145), - [anon_sym_bash] = ACTIONS(3145), - [anon_sym_fish] = ACTIONS(3145), - [anon_sym_raw] = ACTIONS(3145), - [anon_sym_sh] = ACTIONS(3145), - [anon_sym_zsh] = ACTIONS(3145), - [anon_sym_random] = ACTIONS(3145), - [anon_sym_random_boolean] = ACTIONS(3145), - [anon_sym_random_float] = ACTIONS(3145), - [anon_sym_random_integer] = ACTIONS(3145), - [anon_sym_columns] = ACTIONS(3145), - [anon_sym_rows] = ACTIONS(3145), - [anon_sym_reverse] = ACTIONS(3145), - }, - [925] = { - [sym_math_operator] = STATE(1153), - [sym_logic_operator] = STATE(1077), - [ts_builtin_sym_end] = ACTIONS(3275), - [sym_identifier] = ACTIONS(3277), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3275), - [anon_sym_RBRACE] = ACTIONS(3275), - [anon_sym_SEMI] = ACTIONS(3642), - [anon_sym_LPAREN] = ACTIONS(3275), - [sym_integer] = ACTIONS(3277), - [sym_float] = ACTIONS(3275), - [sym_string] = ACTIONS(3275), - [anon_sym_true] = ACTIONS(3277), - [anon_sym_false] = ACTIONS(3277), - [anon_sym_LBRACK] = ACTIONS(3275), - [anon_sym_COLON] = ACTIONS(911), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(3277), - [anon_sym_match] = ACTIONS(3277), - [anon_sym_EQ_GT] = ACTIONS(3275), - [anon_sym_while] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3277), - [anon_sym_asyncfor] = ACTIONS(3275), - [anon_sym_transform] = ACTIONS(3277), - [anon_sym_filter] = ACTIONS(3277), - [anon_sym_find] = ACTIONS(3277), - [anon_sym_remove] = ACTIONS(3277), - [anon_sym_reduce] = ACTIONS(3277), - [anon_sym_select] = ACTIONS(3277), - [anon_sym_insert] = ACTIONS(3277), - [anon_sym_async] = ACTIONS(3277), - [anon_sym_PIPE] = ACTIONS(3277), - [anon_sym_table] = ACTIONS(3277), - [anon_sym_assert] = ACTIONS(3277), - [anon_sym_assert_equal] = ACTIONS(3277), - [anon_sym_download] = ACTIONS(3277), - [anon_sym_help] = ACTIONS(3277), - [anon_sym_length] = ACTIONS(3277), - [anon_sym_output] = ACTIONS(3277), - [anon_sym_output_error] = ACTIONS(3277), - [anon_sym_type] = ACTIONS(3277), - [anon_sym_append] = ACTIONS(3277), - [anon_sym_metadata] = ACTIONS(3277), - [anon_sym_move] = ACTIONS(3277), - [anon_sym_read] = ACTIONS(3277), - [anon_sym_workdir] = ACTIONS(3277), - [anon_sym_write] = ACTIONS(3277), - [anon_sym_from_json] = ACTIONS(3277), - [anon_sym_to_json] = ACTIONS(3277), - [anon_sym_to_string] = ACTIONS(3277), - [anon_sym_to_float] = ACTIONS(3277), - [anon_sym_bash] = ACTIONS(3277), - [anon_sym_fish] = ACTIONS(3277), - [anon_sym_raw] = ACTIONS(3277), - [anon_sym_sh] = ACTIONS(3277), - [anon_sym_zsh] = ACTIONS(3277), - [anon_sym_random] = ACTIONS(3277), - [anon_sym_random_boolean] = ACTIONS(3277), - [anon_sym_random_float] = ACTIONS(3277), - [anon_sym_random_integer] = ACTIONS(3277), - [anon_sym_columns] = ACTIONS(3277), - [anon_sym_rows] = ACTIONS(3277), - [anon_sym_reverse] = ACTIONS(3277), - }, - [926] = { - [sym_expression] = STATE(1042), - [sym__expression_kind] = STATE(1002), - [aux_sym__expression_list] = STATE(941), - [sym_value] = STATE(1002), - [sym_boolean] = STATE(996), - [sym_list] = STATE(996), - [sym_map] = STATE(996), - [sym_index] = STATE(1002), - [sym_math] = STATE(1002), - [sym_logic] = STATE(1002), - [sym_identifier_list] = STATE(1980), - [sym_table] = STATE(996), - [sym_function] = STATE(996), - [sym_function_call] = STATE(1002), - [sym__context_defined_function] = STATE(1009), - [sym_built_in_function] = STATE(1009), - [sym__built_in_function_name] = STATE(780), - [sym_identifier] = ACTIONS(2437), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3503), - [anon_sym_LPAREN] = ACTIONS(3505), - [sym_integer] = ACTIONS(3507), - [sym_float] = ACTIONS(3509), - [sym_string] = ACTIONS(3509), - [anon_sym_true] = ACTIONS(3511), - [anon_sym_false] = ACTIONS(3511), - [anon_sym_LBRACK] = ACTIONS(3513), - [anon_sym_COLON] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2435), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_PERCENT] = ACTIONS(2435), - [anon_sym_EQ_EQ] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_PIPE_PIPE] = ACTIONS(2435), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_EQ_GT] = ACTIONS(3515), - [anon_sym_in] = ACTIONS(3644), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(3517), - [anon_sym_assert] = ACTIONS(3145), - [anon_sym_assert_equal] = ACTIONS(3145), - [anon_sym_download] = ACTIONS(3145), - [anon_sym_help] = ACTIONS(3145), - [anon_sym_length] = ACTIONS(3145), - [anon_sym_output] = ACTIONS(3145), - [anon_sym_output_error] = ACTIONS(3145), - [anon_sym_type] = ACTIONS(3145), - [anon_sym_append] = ACTIONS(3145), - [anon_sym_metadata] = ACTIONS(3145), - [anon_sym_move] = ACTIONS(3145), - [anon_sym_read] = ACTIONS(3145), - [anon_sym_workdir] = ACTIONS(3145), - [anon_sym_write] = ACTIONS(3145), - [anon_sym_from_json] = ACTIONS(3145), - [anon_sym_to_json] = ACTIONS(3145), - [anon_sym_to_string] = ACTIONS(3145), - [anon_sym_to_float] = ACTIONS(3145), - [anon_sym_bash] = ACTIONS(3145), - [anon_sym_fish] = ACTIONS(3145), - [anon_sym_raw] = ACTIONS(3145), - [anon_sym_sh] = ACTIONS(3145), - [anon_sym_zsh] = ACTIONS(3145), - [anon_sym_random] = ACTIONS(3145), - [anon_sym_random_boolean] = ACTIONS(3145), - [anon_sym_random_float] = ACTIONS(3145), - [anon_sym_random_integer] = ACTIONS(3145), - [anon_sym_columns] = ACTIONS(3145), - [anon_sym_rows] = ACTIONS(3145), - [anon_sym_reverse] = ACTIONS(3145), - }, - [927] = { - [sym_expression] = STATE(1030), - [sym__expression_kind] = STATE(1002), - [aux_sym__expression_list] = STATE(884), - [sym_value] = STATE(1002), - [sym_boolean] = STATE(996), - [sym_list] = STATE(996), - [sym_map] = STATE(996), - [sym_index] = STATE(1002), - [sym_math] = STATE(1002), - [sym_logic] = STATE(1002), - [sym_identifier_list] = STATE(1762), - [sym_table] = STATE(996), - [sym_function] = STATE(996), - [sym_function_call] = STATE(1002), - [sym__context_defined_function] = STATE(1009), - [sym_built_in_function] = STATE(1009), - [sym__built_in_function_name] = STATE(726), - [sym_identifier] = ACTIONS(3576), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3503), - [anon_sym_LPAREN] = ACTIONS(3505), - [sym_integer] = ACTIONS(3507), - [sym_float] = ACTIONS(3509), - [sym_string] = ACTIONS(3509), - [anon_sym_true] = ACTIONS(3511), - [anon_sym_false] = ACTIONS(3511), - [anon_sym_LBRACK] = ACTIONS(3513), - [anon_sym_COLON] = ACTIONS(2435), - [anon_sym_DOT_DOT] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2435), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_PERCENT] = ACTIONS(2435), - [anon_sym_EQ_EQ] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_PIPE_PIPE] = ACTIONS(2435), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_EQ_GT] = ACTIONS(2435), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(3580), - [anon_sym_assert] = ACTIONS(3582), - [anon_sym_assert_equal] = ACTIONS(3582), - [anon_sym_download] = ACTIONS(3582), - [anon_sym_help] = ACTIONS(3582), - [anon_sym_length] = ACTIONS(3582), - [anon_sym_output] = ACTIONS(3582), - [anon_sym_output_error] = ACTIONS(3582), - [anon_sym_type] = ACTIONS(3582), - [anon_sym_append] = ACTIONS(3582), - [anon_sym_metadata] = ACTIONS(3582), - [anon_sym_move] = ACTIONS(3582), - [anon_sym_read] = ACTIONS(3582), - [anon_sym_workdir] = ACTIONS(3582), - [anon_sym_write] = ACTIONS(3582), - [anon_sym_from_json] = ACTIONS(3582), - [anon_sym_to_json] = ACTIONS(3582), - [anon_sym_to_string] = ACTIONS(3582), - [anon_sym_to_float] = ACTIONS(3582), - [anon_sym_bash] = ACTIONS(3582), - [anon_sym_fish] = ACTIONS(3582), - [anon_sym_raw] = ACTIONS(3582), - [anon_sym_sh] = ACTIONS(3582), - [anon_sym_zsh] = ACTIONS(3582), - [anon_sym_random] = ACTIONS(3582), - [anon_sym_random_boolean] = ACTIONS(3582), - [anon_sym_random_float] = ACTIONS(3582), - [anon_sym_random_integer] = ACTIONS(3582), - [anon_sym_columns] = ACTIONS(3582), - [anon_sym_rows] = ACTIONS(3582), - [anon_sym_reverse] = ACTIONS(3582), - }, - [928] = { - [sym_expression] = STATE(1042), - [sym__expression_kind] = STATE(1002), - [aux_sym__expression_list] = STATE(937), - [sym_value] = STATE(1002), - [sym_boolean] = STATE(996), - [sym_list] = STATE(996), - [sym_map] = STATE(996), - [sym_index] = STATE(1002), - [sym_math] = STATE(1002), - [sym_logic] = STATE(1002), - [sym_identifier_list] = STATE(1980), - [sym_table] = STATE(996), - [sym_function] = STATE(996), - [sym_function_call] = STATE(1002), - [sym__context_defined_function] = STATE(1009), - [sym_built_in_function] = STATE(1009), - [sym__built_in_function_name] = STATE(780), - [sym_identifier] = ACTIONS(3576), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3503), - [anon_sym_LPAREN] = ACTIONS(3505), - [anon_sym_RPAREN] = ACTIONS(2473), - [sym_integer] = ACTIONS(3507), - [sym_float] = ACTIONS(3509), - [sym_string] = ACTIONS(3509), - [anon_sym_true] = ACTIONS(3511), - [anon_sym_false] = ACTIONS(3511), - [anon_sym_LBRACK] = ACTIONS(3513), - [anon_sym_COLON] = ACTIONS(2473), - [anon_sym_PLUS] = ACTIONS(2473), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2473), - [anon_sym_SLASH] = ACTIONS(2473), - [anon_sym_PERCENT] = ACTIONS(2473), - [anon_sym_EQ_EQ] = ACTIONS(2473), - [anon_sym_BANG_EQ] = ACTIONS(2473), - [anon_sym_AMP_AMP] = ACTIONS(2473), - [anon_sym_PIPE_PIPE] = ACTIONS(2473), - [anon_sym_GT] = ACTIONS(2475), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_GT_EQ] = ACTIONS(2473), - [anon_sym_LT_EQ] = ACTIONS(2473), - [anon_sym_EQ_GT] = ACTIONS(3515), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(3517), - [anon_sym_assert] = ACTIONS(3145), - [anon_sym_assert_equal] = ACTIONS(3145), - [anon_sym_download] = ACTIONS(3145), - [anon_sym_help] = ACTIONS(3145), - [anon_sym_length] = ACTIONS(3145), - [anon_sym_output] = ACTIONS(3145), - [anon_sym_output_error] = ACTIONS(3145), - [anon_sym_type] = ACTIONS(3145), - [anon_sym_append] = ACTIONS(3145), - [anon_sym_metadata] = ACTIONS(3145), - [anon_sym_move] = ACTIONS(3145), - [anon_sym_read] = ACTIONS(3145), - [anon_sym_workdir] = ACTIONS(3145), - [anon_sym_write] = ACTIONS(3145), - [anon_sym_from_json] = ACTIONS(3145), - [anon_sym_to_json] = ACTIONS(3145), - [anon_sym_to_string] = ACTIONS(3145), - [anon_sym_to_float] = ACTIONS(3145), - [anon_sym_bash] = ACTIONS(3145), - [anon_sym_fish] = ACTIONS(3145), - [anon_sym_raw] = ACTIONS(3145), - [anon_sym_sh] = ACTIONS(3145), - [anon_sym_zsh] = ACTIONS(3145), - [anon_sym_random] = ACTIONS(3145), - [anon_sym_random_boolean] = ACTIONS(3145), - [anon_sym_random_float] = ACTIONS(3145), - [anon_sym_random_integer] = ACTIONS(3145), - [anon_sym_columns] = ACTIONS(3145), - [anon_sym_rows] = ACTIONS(3145), - [anon_sym_reverse] = ACTIONS(3145), - }, - [929] = { - [sym_expression] = STATE(1042), - [sym__expression_kind] = STATE(1002), - [aux_sym__expression_list] = STATE(941), - [sym_value] = STATE(1002), - [sym_boolean] = STATE(996), - [sym_list] = STATE(996), - [sym_map] = STATE(996), - [sym_index] = STATE(1002), - [sym_math] = STATE(1002), - [sym_logic] = STATE(1002), - [sym_identifier_list] = STATE(1980), - [sym_table] = STATE(996), - [sym_function] = STATE(996), - [sym_function_call] = STATE(1002), - [sym__context_defined_function] = STATE(1009), - [sym_built_in_function] = STATE(1009), - [sym__built_in_function_name] = STATE(780), - [sym_identifier] = ACTIONS(2437), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3503), - [anon_sym_LPAREN] = ACTIONS(3505), - [sym_integer] = ACTIONS(3507), - [sym_float] = ACTIONS(3509), - [sym_string] = ACTIONS(3509), - [anon_sym_true] = ACTIONS(3511), - [anon_sym_false] = ACTIONS(3511), - [anon_sym_LBRACK] = ACTIONS(3513), - [anon_sym_COLON] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2435), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_PERCENT] = ACTIONS(2435), - [anon_sym_EQ_EQ] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_PIPE_PIPE] = ACTIONS(2435), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_EQ_GT] = ACTIONS(3515), - [anon_sym_in] = ACTIONS(3646), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(3517), - [anon_sym_assert] = ACTIONS(3145), - [anon_sym_assert_equal] = ACTIONS(3145), - [anon_sym_download] = ACTIONS(3145), - [anon_sym_help] = ACTIONS(3145), - [anon_sym_length] = ACTIONS(3145), - [anon_sym_output] = ACTIONS(3145), - [anon_sym_output_error] = ACTIONS(3145), - [anon_sym_type] = ACTIONS(3145), - [anon_sym_append] = ACTIONS(3145), - [anon_sym_metadata] = ACTIONS(3145), - [anon_sym_move] = ACTIONS(3145), - [anon_sym_read] = ACTIONS(3145), - [anon_sym_workdir] = ACTIONS(3145), - [anon_sym_write] = ACTIONS(3145), - [anon_sym_from_json] = ACTIONS(3145), - [anon_sym_to_json] = ACTIONS(3145), - [anon_sym_to_string] = ACTIONS(3145), - [anon_sym_to_float] = ACTIONS(3145), - [anon_sym_bash] = ACTIONS(3145), - [anon_sym_fish] = ACTIONS(3145), - [anon_sym_raw] = ACTIONS(3145), - [anon_sym_sh] = ACTIONS(3145), - [anon_sym_zsh] = ACTIONS(3145), - [anon_sym_random] = ACTIONS(3145), - [anon_sym_random_boolean] = ACTIONS(3145), - [anon_sym_random_float] = ACTIONS(3145), - [anon_sym_random_integer] = ACTIONS(3145), - [anon_sym_columns] = ACTIONS(3145), - [anon_sym_rows] = ACTIONS(3145), - [anon_sym_reverse] = ACTIONS(3145), - }, - [930] = { - [sym_expression] = STATE(1042), - [sym__expression_kind] = STATE(1002), - [aux_sym__expression_list] = STATE(941), - [sym_value] = STATE(1002), - [sym_boolean] = STATE(996), - [sym_list] = STATE(996), - [sym_map] = STATE(996), - [sym_index] = STATE(1002), - [sym_math] = STATE(1002), - [sym_logic] = STATE(1002), - [sym_identifier_list] = STATE(1980), - [sym_table] = STATE(996), - [sym_function] = STATE(996), - [sym_function_call] = STATE(1002), - [sym__context_defined_function] = STATE(1009), - [sym_built_in_function] = STATE(1009), - [sym__built_in_function_name] = STATE(780), - [sym_identifier] = ACTIONS(2437), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3503), - [anon_sym_LPAREN] = ACTIONS(3505), - [sym_integer] = ACTIONS(3507), - [sym_float] = ACTIONS(3509), - [sym_string] = ACTIONS(3509), - [anon_sym_true] = ACTIONS(3511), - [anon_sym_false] = ACTIONS(3511), - [anon_sym_LBRACK] = ACTIONS(3513), - [anon_sym_COLON] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2435), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_PERCENT] = ACTIONS(2435), - [anon_sym_EQ_EQ] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_PIPE_PIPE] = ACTIONS(2435), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_EQ_GT] = ACTIONS(3515), - [anon_sym_in] = ACTIONS(3648), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(3517), - [anon_sym_assert] = ACTIONS(3145), - [anon_sym_assert_equal] = ACTIONS(3145), - [anon_sym_download] = ACTIONS(3145), - [anon_sym_help] = ACTIONS(3145), - [anon_sym_length] = ACTIONS(3145), - [anon_sym_output] = ACTIONS(3145), - [anon_sym_output_error] = ACTIONS(3145), - [anon_sym_type] = ACTIONS(3145), - [anon_sym_append] = ACTIONS(3145), - [anon_sym_metadata] = ACTIONS(3145), - [anon_sym_move] = ACTIONS(3145), - [anon_sym_read] = ACTIONS(3145), - [anon_sym_workdir] = ACTIONS(3145), - [anon_sym_write] = ACTIONS(3145), - [anon_sym_from_json] = ACTIONS(3145), - [anon_sym_to_json] = ACTIONS(3145), - [anon_sym_to_string] = ACTIONS(3145), - [anon_sym_to_float] = ACTIONS(3145), - [anon_sym_bash] = ACTIONS(3145), - [anon_sym_fish] = ACTIONS(3145), - [anon_sym_raw] = ACTIONS(3145), - [anon_sym_sh] = ACTIONS(3145), - [anon_sym_zsh] = ACTIONS(3145), - [anon_sym_random] = ACTIONS(3145), - [anon_sym_random_boolean] = ACTIONS(3145), - [anon_sym_random_float] = ACTIONS(3145), - [anon_sym_random_integer] = ACTIONS(3145), - [anon_sym_columns] = ACTIONS(3145), - [anon_sym_rows] = ACTIONS(3145), - [anon_sym_reverse] = ACTIONS(3145), - }, - [931] = { - [sym_expression] = STATE(1042), - [sym__expression_kind] = STATE(1002), - [aux_sym__expression_list] = STATE(941), - [sym_value] = STATE(1002), - [sym_boolean] = STATE(996), - [sym_list] = STATE(996), - [sym_map] = STATE(996), - [sym_index] = STATE(1002), - [sym_math] = STATE(1002), - [sym_logic] = STATE(1002), - [sym_identifier_list] = STATE(1980), - [sym_table] = STATE(996), - [sym_function] = STATE(996), - [sym_function_call] = STATE(1002), - [sym__context_defined_function] = STATE(1009), - [sym_built_in_function] = STATE(1009), - [sym__built_in_function_name] = STATE(780), - [sym_identifier] = ACTIONS(2437), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3503), - [anon_sym_LPAREN] = ACTIONS(3505), - [sym_integer] = ACTIONS(3507), - [sym_float] = ACTIONS(3509), - [sym_string] = ACTIONS(3509), - [anon_sym_true] = ACTIONS(3511), - [anon_sym_false] = ACTIONS(3511), - [anon_sym_LBRACK] = ACTIONS(3513), - [anon_sym_COLON] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2435), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_PERCENT] = ACTIONS(2435), - [anon_sym_EQ_EQ] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_PIPE_PIPE] = ACTIONS(2435), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_EQ_GT] = ACTIONS(3515), - [anon_sym_in] = ACTIONS(3650), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(3517), - [anon_sym_assert] = ACTIONS(3145), - [anon_sym_assert_equal] = ACTIONS(3145), - [anon_sym_download] = ACTIONS(3145), - [anon_sym_help] = ACTIONS(3145), - [anon_sym_length] = ACTIONS(3145), - [anon_sym_output] = ACTIONS(3145), - [anon_sym_output_error] = ACTIONS(3145), - [anon_sym_type] = ACTIONS(3145), - [anon_sym_append] = ACTIONS(3145), - [anon_sym_metadata] = ACTIONS(3145), - [anon_sym_move] = ACTIONS(3145), - [anon_sym_read] = ACTIONS(3145), - [anon_sym_workdir] = ACTIONS(3145), - [anon_sym_write] = ACTIONS(3145), - [anon_sym_from_json] = ACTIONS(3145), - [anon_sym_to_json] = ACTIONS(3145), - [anon_sym_to_string] = ACTIONS(3145), - [anon_sym_to_float] = ACTIONS(3145), - [anon_sym_bash] = ACTIONS(3145), - [anon_sym_fish] = ACTIONS(3145), - [anon_sym_raw] = ACTIONS(3145), - [anon_sym_sh] = ACTIONS(3145), - [anon_sym_zsh] = ACTIONS(3145), - [anon_sym_random] = ACTIONS(3145), - [anon_sym_random_boolean] = ACTIONS(3145), - [anon_sym_random_float] = ACTIONS(3145), - [anon_sym_random_integer] = ACTIONS(3145), - [anon_sym_columns] = ACTIONS(3145), - [anon_sym_rows] = ACTIONS(3145), - [anon_sym_reverse] = ACTIONS(3145), - }, - [932] = { - [sym_expression] = STATE(1042), - [sym__expression_kind] = STATE(1002), - [aux_sym__expression_list] = STATE(941), - [sym_value] = STATE(1002), - [sym_boolean] = STATE(996), - [sym_list] = STATE(996), - [sym_map] = STATE(996), - [sym_index] = STATE(1002), - [sym_math] = STATE(1002), - [sym_logic] = STATE(1002), - [sym_identifier_list] = STATE(1980), - [sym_table] = STATE(996), - [sym_function] = STATE(996), - [sym_function_call] = STATE(1002), - [sym__context_defined_function] = STATE(1009), - [sym_built_in_function] = STATE(1009), - [sym__built_in_function_name] = STATE(780), - [sym_identifier] = ACTIONS(2437), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3503), - [anon_sym_LPAREN] = ACTIONS(3505), - [sym_integer] = ACTIONS(3507), - [sym_float] = ACTIONS(3509), - [sym_string] = ACTIONS(3509), - [anon_sym_true] = ACTIONS(3511), - [anon_sym_false] = ACTIONS(3511), - [anon_sym_LBRACK] = ACTIONS(3513), - [anon_sym_COLON] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2435), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_PERCENT] = ACTIONS(2435), - [anon_sym_EQ_EQ] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_PIPE_PIPE] = ACTIONS(2435), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_EQ_GT] = ACTIONS(3515), - [anon_sym_in] = ACTIONS(3652), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(3517), - [anon_sym_assert] = ACTIONS(3145), - [anon_sym_assert_equal] = ACTIONS(3145), - [anon_sym_download] = ACTIONS(3145), - [anon_sym_help] = ACTIONS(3145), - [anon_sym_length] = ACTIONS(3145), - [anon_sym_output] = ACTIONS(3145), - [anon_sym_output_error] = ACTIONS(3145), - [anon_sym_type] = ACTIONS(3145), - [anon_sym_append] = ACTIONS(3145), - [anon_sym_metadata] = ACTIONS(3145), - [anon_sym_move] = ACTIONS(3145), - [anon_sym_read] = ACTIONS(3145), - [anon_sym_workdir] = ACTIONS(3145), - [anon_sym_write] = ACTIONS(3145), - [anon_sym_from_json] = ACTIONS(3145), - [anon_sym_to_json] = ACTIONS(3145), - [anon_sym_to_string] = ACTIONS(3145), - [anon_sym_to_float] = ACTIONS(3145), - [anon_sym_bash] = ACTIONS(3145), - [anon_sym_fish] = ACTIONS(3145), - [anon_sym_raw] = ACTIONS(3145), - [anon_sym_sh] = ACTIONS(3145), - [anon_sym_zsh] = ACTIONS(3145), - [anon_sym_random] = ACTIONS(3145), - [anon_sym_random_boolean] = ACTIONS(3145), - [anon_sym_random_float] = ACTIONS(3145), - [anon_sym_random_integer] = ACTIONS(3145), - [anon_sym_columns] = ACTIONS(3145), - [anon_sym_rows] = ACTIONS(3145), - [anon_sym_reverse] = ACTIONS(3145), - }, - [933] = { - [sym_expression] = STATE(1042), - [sym__expression_kind] = STATE(1002), - [aux_sym__expression_list] = STATE(941), - [sym_value] = STATE(1002), - [sym_boolean] = STATE(996), - [sym_list] = STATE(996), - [sym_map] = STATE(996), - [sym_index] = STATE(1002), - [sym_math] = STATE(1002), - [sym_logic] = STATE(1002), - [sym_identifier_list] = STATE(1980), - [sym_table] = STATE(996), - [sym_function] = STATE(996), - [sym_function_call] = STATE(1002), - [sym__context_defined_function] = STATE(1009), - [sym_built_in_function] = STATE(1009), - [sym__built_in_function_name] = STATE(780), - [sym_identifier] = ACTIONS(2437), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3503), - [anon_sym_LPAREN] = ACTIONS(3505), - [sym_integer] = ACTIONS(3507), - [sym_float] = ACTIONS(3509), - [sym_string] = ACTIONS(3509), - [anon_sym_true] = ACTIONS(3511), - [anon_sym_false] = ACTIONS(3511), - [anon_sym_LBRACK] = ACTIONS(3513), - [anon_sym_COLON] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2435), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_PERCENT] = ACTIONS(2435), - [anon_sym_EQ_EQ] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_PIPE_PIPE] = ACTIONS(2435), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_EQ_GT] = ACTIONS(3515), - [anon_sym_in] = ACTIONS(3654), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(3517), - [anon_sym_assert] = ACTIONS(3145), - [anon_sym_assert_equal] = ACTIONS(3145), - [anon_sym_download] = ACTIONS(3145), - [anon_sym_help] = ACTIONS(3145), - [anon_sym_length] = ACTIONS(3145), - [anon_sym_output] = ACTIONS(3145), - [anon_sym_output_error] = ACTIONS(3145), - [anon_sym_type] = ACTIONS(3145), - [anon_sym_append] = ACTIONS(3145), - [anon_sym_metadata] = ACTIONS(3145), - [anon_sym_move] = ACTIONS(3145), - [anon_sym_read] = ACTIONS(3145), - [anon_sym_workdir] = ACTIONS(3145), - [anon_sym_write] = ACTIONS(3145), - [anon_sym_from_json] = ACTIONS(3145), - [anon_sym_to_json] = ACTIONS(3145), - [anon_sym_to_string] = ACTIONS(3145), - [anon_sym_to_float] = ACTIONS(3145), - [anon_sym_bash] = ACTIONS(3145), - [anon_sym_fish] = ACTIONS(3145), - [anon_sym_raw] = ACTIONS(3145), - [anon_sym_sh] = ACTIONS(3145), - [anon_sym_zsh] = ACTIONS(3145), - [anon_sym_random] = ACTIONS(3145), - [anon_sym_random_boolean] = ACTIONS(3145), - [anon_sym_random_float] = ACTIONS(3145), - [anon_sym_random_integer] = ACTIONS(3145), - [anon_sym_columns] = ACTIONS(3145), - [anon_sym_rows] = ACTIONS(3145), - [anon_sym_reverse] = ACTIONS(3145), - }, - [934] = { - [sym_math_operator] = STATE(1381), - [sym_logic_operator] = STATE(1380), - [sym_identifier] = ACTIONS(3277), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3275), - [anon_sym_RBRACE] = ACTIONS(3275), - [anon_sym_SEMI] = ACTIONS(3642), - [anon_sym_LPAREN] = ACTIONS(3275), - [anon_sym_COMMA] = ACTIONS(3275), - [sym_integer] = ACTIONS(3277), - [sym_float] = ACTIONS(3275), - [sym_string] = ACTIONS(3275), - [anon_sym_true] = ACTIONS(3277), - [anon_sym_false] = ACTIONS(3277), - [anon_sym_LBRACK] = ACTIONS(3275), - [anon_sym_COLON] = ACTIONS(277), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_if] = ACTIONS(3277), - [anon_sym_match] = ACTIONS(3277), - [anon_sym_EQ_GT] = ACTIONS(3275), - [anon_sym_while] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3277), - [anon_sym_asyncfor] = ACTIONS(3275), - [anon_sym_transform] = ACTIONS(3277), - [anon_sym_filter] = ACTIONS(3277), - [anon_sym_find] = ACTIONS(3277), - [anon_sym_remove] = ACTIONS(3277), - [anon_sym_reduce] = ACTIONS(3277), - [anon_sym_select] = ACTIONS(3277), - [anon_sym_insert] = ACTIONS(3277), - [anon_sym_async] = ACTIONS(3277), - [anon_sym_PIPE] = ACTIONS(3277), - [anon_sym_table] = ACTIONS(3277), - [anon_sym_assert] = ACTIONS(3277), - [anon_sym_assert_equal] = ACTIONS(3277), - [anon_sym_download] = ACTIONS(3277), - [anon_sym_help] = ACTIONS(3277), - [anon_sym_length] = ACTIONS(3277), - [anon_sym_output] = ACTIONS(3277), - [anon_sym_output_error] = ACTIONS(3277), - [anon_sym_type] = ACTIONS(3277), - [anon_sym_append] = ACTIONS(3277), - [anon_sym_metadata] = ACTIONS(3277), - [anon_sym_move] = ACTIONS(3277), - [anon_sym_read] = ACTIONS(3277), - [anon_sym_workdir] = ACTIONS(3277), - [anon_sym_write] = ACTIONS(3277), - [anon_sym_from_json] = ACTIONS(3277), - [anon_sym_to_json] = ACTIONS(3277), - [anon_sym_to_string] = ACTIONS(3277), - [anon_sym_to_float] = ACTIONS(3277), - [anon_sym_bash] = ACTIONS(3277), - [anon_sym_fish] = ACTIONS(3277), - [anon_sym_raw] = ACTIONS(3277), - [anon_sym_sh] = ACTIONS(3277), - [anon_sym_zsh] = ACTIONS(3277), - [anon_sym_random] = ACTIONS(3277), - [anon_sym_random_boolean] = ACTIONS(3277), - [anon_sym_random_float] = ACTIONS(3277), - [anon_sym_random_integer] = ACTIONS(3277), - [anon_sym_columns] = ACTIONS(3277), - [anon_sym_rows] = ACTIONS(3277), - [anon_sym_reverse] = ACTIONS(3277), - }, - [935] = { - [sym_expression] = STATE(1030), - [sym__expression_kind] = STATE(1002), - [aux_sym__expression_list] = STATE(884), - [sym_value] = STATE(1002), - [sym_boolean] = STATE(996), - [sym_list] = STATE(996), - [sym_map] = STATE(996), - [sym_index] = STATE(1002), - [sym_math] = STATE(1002), - [sym_logic] = STATE(1002), - [sym_identifier_list] = STATE(1762), - [sym_table] = STATE(996), - [sym_function] = STATE(996), - [sym_function_call] = STATE(1002), - [sym__context_defined_function] = STATE(1009), - [sym_built_in_function] = STATE(1009), - [sym__built_in_function_name] = STATE(726), - [sym_identifier] = ACTIONS(2437), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3503), - [anon_sym_LPAREN] = ACTIONS(3505), - [sym_integer] = ACTIONS(3507), - [sym_float] = ACTIONS(3509), - [sym_string] = ACTIONS(3509), - [anon_sym_true] = ACTIONS(3511), - [anon_sym_false] = ACTIONS(3511), - [anon_sym_LBRACK] = ACTIONS(3513), - [anon_sym_COLON] = ACTIONS(2435), - [anon_sym_DOT_DOT] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2435), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_PERCENT] = ACTIONS(2435), - [anon_sym_EQ_EQ] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_PIPE_PIPE] = ACTIONS(2435), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_EQ_GT] = ACTIONS(3578), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(3580), - [anon_sym_assert] = ACTIONS(3582), - [anon_sym_assert_equal] = ACTIONS(3582), - [anon_sym_download] = ACTIONS(3582), - [anon_sym_help] = ACTIONS(3582), - [anon_sym_length] = ACTIONS(3582), - [anon_sym_output] = ACTIONS(3582), - [anon_sym_output_error] = ACTIONS(3582), - [anon_sym_type] = ACTIONS(3582), - [anon_sym_append] = ACTIONS(3582), - [anon_sym_metadata] = ACTIONS(3582), - [anon_sym_move] = ACTIONS(3582), - [anon_sym_read] = ACTIONS(3582), - [anon_sym_workdir] = ACTIONS(3582), - [anon_sym_write] = ACTIONS(3582), - [anon_sym_from_json] = ACTIONS(3582), - [anon_sym_to_json] = ACTIONS(3582), - [anon_sym_to_string] = ACTIONS(3582), - [anon_sym_to_float] = ACTIONS(3582), - [anon_sym_bash] = ACTIONS(3582), - [anon_sym_fish] = ACTIONS(3582), - [anon_sym_raw] = ACTIONS(3582), - [anon_sym_sh] = ACTIONS(3582), - [anon_sym_zsh] = ACTIONS(3582), - [anon_sym_random] = ACTIONS(3582), - [anon_sym_random_boolean] = ACTIONS(3582), - [anon_sym_random_float] = ACTIONS(3582), - [anon_sym_random_integer] = ACTIONS(3582), - [anon_sym_columns] = ACTIONS(3582), - [anon_sym_rows] = ACTIONS(3582), - [anon_sym_reverse] = ACTIONS(3582), - }, - [936] = { - [sym_expression] = STATE(1042), - [sym__expression_kind] = STATE(1002), - [aux_sym__expression_list] = STATE(941), - [sym_value] = STATE(1002), - [sym_boolean] = STATE(996), - [sym_list] = STATE(996), - [sym_map] = STATE(996), - [sym_index] = STATE(1002), - [sym_math] = STATE(1002), - [sym_logic] = STATE(1002), - [sym_identifier_list] = STATE(1980), - [sym_table] = STATE(996), - [sym_function] = STATE(996), - [sym_function_call] = STATE(1002), - [sym__context_defined_function] = STATE(1009), - [sym_built_in_function] = STATE(1009), - [sym__built_in_function_name] = STATE(780), - [sym_identifier] = ACTIONS(2437), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3503), - [anon_sym_LPAREN] = ACTIONS(3505), - [sym_integer] = ACTIONS(3507), - [sym_float] = ACTIONS(3509), - [sym_string] = ACTIONS(3509), - [anon_sym_true] = ACTIONS(3511), - [anon_sym_false] = ACTIONS(3511), - [anon_sym_LBRACK] = ACTIONS(3513), - [anon_sym_COLON] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2435), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_PERCENT] = ACTIONS(2435), - [anon_sym_EQ_EQ] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_PIPE_PIPE] = ACTIONS(2435), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_EQ_GT] = ACTIONS(3515), - [anon_sym_in] = ACTIONS(3656), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(3517), - [anon_sym_assert] = ACTIONS(3145), - [anon_sym_assert_equal] = ACTIONS(3145), - [anon_sym_download] = ACTIONS(3145), - [anon_sym_help] = ACTIONS(3145), - [anon_sym_length] = ACTIONS(3145), - [anon_sym_output] = ACTIONS(3145), - [anon_sym_output_error] = ACTIONS(3145), - [anon_sym_type] = ACTIONS(3145), - [anon_sym_append] = ACTIONS(3145), - [anon_sym_metadata] = ACTIONS(3145), - [anon_sym_move] = ACTIONS(3145), - [anon_sym_read] = ACTIONS(3145), - [anon_sym_workdir] = ACTIONS(3145), - [anon_sym_write] = ACTIONS(3145), - [anon_sym_from_json] = ACTIONS(3145), - [anon_sym_to_json] = ACTIONS(3145), - [anon_sym_to_string] = ACTIONS(3145), - [anon_sym_to_float] = ACTIONS(3145), - [anon_sym_bash] = ACTIONS(3145), - [anon_sym_fish] = ACTIONS(3145), - [anon_sym_raw] = ACTIONS(3145), - [anon_sym_sh] = ACTIONS(3145), - [anon_sym_zsh] = ACTIONS(3145), - [anon_sym_random] = ACTIONS(3145), - [anon_sym_random_boolean] = ACTIONS(3145), - [anon_sym_random_float] = ACTIONS(3145), - [anon_sym_random_integer] = ACTIONS(3145), - [anon_sym_columns] = ACTIONS(3145), - [anon_sym_rows] = ACTIONS(3145), - [anon_sym_reverse] = ACTIONS(3145), - }, - [937] = { - [sym_expression] = STATE(1042), - [sym__expression_kind] = STATE(1002), - [aux_sym__expression_list] = STATE(920), - [sym_value] = STATE(1002), - [sym_boolean] = STATE(996), - [sym_list] = STATE(996), - [sym_map] = STATE(996), - [sym_index] = STATE(1002), - [sym_math] = STATE(1002), - [sym_logic] = STATE(1002), - [sym_identifier_list] = STATE(1980), - [sym_table] = STATE(996), - [sym_function] = STATE(996), - [sym_function_call] = STATE(1002), - [sym__context_defined_function] = STATE(1009), - [sym_built_in_function] = STATE(1009), - [sym__built_in_function_name] = STATE(780), - [sym_identifier] = ACTIONS(3576), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3503), - [anon_sym_LPAREN] = ACTIONS(3505), - [anon_sym_RPAREN] = ACTIONS(2443), - [sym_integer] = ACTIONS(3507), - [sym_float] = ACTIONS(3509), - [sym_string] = ACTIONS(3509), - [anon_sym_true] = ACTIONS(3511), - [anon_sym_false] = ACTIONS(3511), - [anon_sym_LBRACK] = ACTIONS(3513), - [anon_sym_COLON] = ACTIONS(2443), - [anon_sym_PLUS] = ACTIONS(2443), - [anon_sym_DASH] = ACTIONS(2447), - [anon_sym_STAR] = ACTIONS(2443), - [anon_sym_SLASH] = ACTIONS(2443), - [anon_sym_PERCENT] = ACTIONS(2443), - [anon_sym_EQ_EQ] = ACTIONS(2443), - [anon_sym_BANG_EQ] = ACTIONS(2443), - [anon_sym_AMP_AMP] = ACTIONS(2443), - [anon_sym_PIPE_PIPE] = ACTIONS(2443), - [anon_sym_GT] = ACTIONS(2447), - [anon_sym_LT] = ACTIONS(2447), - [anon_sym_GT_EQ] = ACTIONS(2443), - [anon_sym_LT_EQ] = ACTIONS(2443), - [anon_sym_EQ_GT] = ACTIONS(3515), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(3517), - [anon_sym_assert] = ACTIONS(3145), - [anon_sym_assert_equal] = ACTIONS(3145), - [anon_sym_download] = ACTIONS(3145), - [anon_sym_help] = ACTIONS(3145), - [anon_sym_length] = ACTIONS(3145), - [anon_sym_output] = ACTIONS(3145), - [anon_sym_output_error] = ACTIONS(3145), - [anon_sym_type] = ACTIONS(3145), - [anon_sym_append] = ACTIONS(3145), - [anon_sym_metadata] = ACTIONS(3145), - [anon_sym_move] = ACTIONS(3145), - [anon_sym_read] = ACTIONS(3145), - [anon_sym_workdir] = ACTIONS(3145), - [anon_sym_write] = ACTIONS(3145), - [anon_sym_from_json] = ACTIONS(3145), - [anon_sym_to_json] = ACTIONS(3145), - [anon_sym_to_string] = ACTIONS(3145), - [anon_sym_to_float] = ACTIONS(3145), - [anon_sym_bash] = ACTIONS(3145), - [anon_sym_fish] = ACTIONS(3145), - [anon_sym_raw] = ACTIONS(3145), - [anon_sym_sh] = ACTIONS(3145), - [anon_sym_zsh] = ACTIONS(3145), - [anon_sym_random] = ACTIONS(3145), - [anon_sym_random_boolean] = ACTIONS(3145), - [anon_sym_random_float] = ACTIONS(3145), - [anon_sym_random_integer] = ACTIONS(3145), - [anon_sym_columns] = ACTIONS(3145), - [anon_sym_rows] = ACTIONS(3145), - [anon_sym_reverse] = ACTIONS(3145), - }, - [938] = { - [sym_expression] = STATE(1042), - [sym__expression_kind] = STATE(1002), - [aux_sym__expression_list] = STATE(941), - [sym_value] = STATE(1002), - [sym_boolean] = STATE(996), - [sym_list] = STATE(996), - [sym_map] = STATE(996), - [sym_index] = STATE(1002), - [sym_math] = STATE(1002), - [sym_logic] = STATE(1002), - [sym_identifier_list] = STATE(1980), - [sym_table] = STATE(996), - [sym_function] = STATE(996), - [sym_function_call] = STATE(1002), - [sym__context_defined_function] = STATE(1009), - [sym_built_in_function] = STATE(1009), - [sym__built_in_function_name] = STATE(780), - [sym_identifier] = ACTIONS(2437), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3503), - [anon_sym_LPAREN] = ACTIONS(3505), - [sym_integer] = ACTIONS(3507), - [sym_float] = ACTIONS(3509), - [sym_string] = ACTIONS(3509), - [anon_sym_true] = ACTIONS(3511), - [anon_sym_false] = ACTIONS(3511), - [anon_sym_LBRACK] = ACTIONS(3513), - [anon_sym_COLON] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2435), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_PERCENT] = ACTIONS(2435), - [anon_sym_EQ_EQ] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_PIPE_PIPE] = ACTIONS(2435), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_EQ_GT] = ACTIONS(3515), - [anon_sym_in] = ACTIONS(3658), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(3517), - [anon_sym_assert] = ACTIONS(3145), - [anon_sym_assert_equal] = ACTIONS(3145), - [anon_sym_download] = ACTIONS(3145), - [anon_sym_help] = ACTIONS(3145), - [anon_sym_length] = ACTIONS(3145), - [anon_sym_output] = ACTIONS(3145), - [anon_sym_output_error] = ACTIONS(3145), - [anon_sym_type] = ACTIONS(3145), - [anon_sym_append] = ACTIONS(3145), - [anon_sym_metadata] = ACTIONS(3145), - [anon_sym_move] = ACTIONS(3145), - [anon_sym_read] = ACTIONS(3145), - [anon_sym_workdir] = ACTIONS(3145), - [anon_sym_write] = ACTIONS(3145), - [anon_sym_from_json] = ACTIONS(3145), - [anon_sym_to_json] = ACTIONS(3145), - [anon_sym_to_string] = ACTIONS(3145), - [anon_sym_to_float] = ACTIONS(3145), - [anon_sym_bash] = ACTIONS(3145), - [anon_sym_fish] = ACTIONS(3145), - [anon_sym_raw] = ACTIONS(3145), - [anon_sym_sh] = ACTIONS(3145), - [anon_sym_zsh] = ACTIONS(3145), - [anon_sym_random] = ACTIONS(3145), - [anon_sym_random_boolean] = ACTIONS(3145), - [anon_sym_random_float] = ACTIONS(3145), - [anon_sym_random_integer] = ACTIONS(3145), - [anon_sym_columns] = ACTIONS(3145), - [anon_sym_rows] = ACTIONS(3145), - [anon_sym_reverse] = ACTIONS(3145), - }, - [939] = { - [sym_expression] = STATE(1042), - [sym__expression_kind] = STATE(1002), - [aux_sym__expression_list] = STATE(941), - [sym_value] = STATE(1002), - [sym_boolean] = STATE(996), - [sym_list] = STATE(996), - [sym_map] = STATE(996), - [sym_index] = STATE(1002), - [sym_math] = STATE(1002), - [sym_logic] = STATE(1002), - [sym_identifier_list] = STATE(1980), - [sym_table] = STATE(996), - [sym_function] = STATE(996), - [sym_function_call] = STATE(1002), - [sym__context_defined_function] = STATE(1009), - [sym_built_in_function] = STATE(1009), - [sym__built_in_function_name] = STATE(780), - [sym_identifier] = ACTIONS(2437), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3503), - [anon_sym_LPAREN] = ACTIONS(3505), - [sym_integer] = ACTIONS(3507), - [sym_float] = ACTIONS(3509), - [sym_string] = ACTIONS(3509), - [anon_sym_true] = ACTIONS(3511), - [anon_sym_false] = ACTIONS(3511), - [anon_sym_LBRACK] = ACTIONS(3513), - [anon_sym_COLON] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2435), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_PERCENT] = ACTIONS(2435), - [anon_sym_EQ_EQ] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_PIPE_PIPE] = ACTIONS(2435), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_EQ_GT] = ACTIONS(3515), - [anon_sym_in] = ACTIONS(3660), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(3517), - [anon_sym_assert] = ACTIONS(3145), - [anon_sym_assert_equal] = ACTIONS(3145), - [anon_sym_download] = ACTIONS(3145), - [anon_sym_help] = ACTIONS(3145), - [anon_sym_length] = ACTIONS(3145), - [anon_sym_output] = ACTIONS(3145), - [anon_sym_output_error] = ACTIONS(3145), - [anon_sym_type] = ACTIONS(3145), - [anon_sym_append] = ACTIONS(3145), - [anon_sym_metadata] = ACTIONS(3145), - [anon_sym_move] = ACTIONS(3145), - [anon_sym_read] = ACTIONS(3145), - [anon_sym_workdir] = ACTIONS(3145), - [anon_sym_write] = ACTIONS(3145), - [anon_sym_from_json] = ACTIONS(3145), - [anon_sym_to_json] = ACTIONS(3145), - [anon_sym_to_string] = ACTIONS(3145), - [anon_sym_to_float] = ACTIONS(3145), - [anon_sym_bash] = ACTIONS(3145), - [anon_sym_fish] = ACTIONS(3145), - [anon_sym_raw] = ACTIONS(3145), - [anon_sym_sh] = ACTIONS(3145), - [anon_sym_zsh] = ACTIONS(3145), - [anon_sym_random] = ACTIONS(3145), - [anon_sym_random_boolean] = ACTIONS(3145), - [anon_sym_random_float] = ACTIONS(3145), - [anon_sym_random_integer] = ACTIONS(3145), - [anon_sym_columns] = ACTIONS(3145), - [anon_sym_rows] = ACTIONS(3145), - [anon_sym_reverse] = ACTIONS(3145), - }, - [940] = { - [sym_expression] = STATE(1042), - [sym__expression_kind] = STATE(1002), - [aux_sym__expression_list] = STATE(941), - [sym_value] = STATE(1002), - [sym_boolean] = STATE(996), - [sym_list] = STATE(996), - [sym_map] = STATE(996), - [sym_index] = STATE(1002), - [sym_math] = STATE(1002), - [sym_logic] = STATE(1002), - [sym_identifier_list] = STATE(1980), - [sym_table] = STATE(996), - [sym_function] = STATE(996), - [sym_function_call] = STATE(1002), - [sym__context_defined_function] = STATE(1009), - [sym_built_in_function] = STATE(1009), - [sym__built_in_function_name] = STATE(780), - [sym_identifier] = ACTIONS(2437), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3503), - [anon_sym_LPAREN] = ACTIONS(3505), - [sym_integer] = ACTIONS(3507), - [sym_float] = ACTIONS(3509), - [sym_string] = ACTIONS(3509), - [anon_sym_true] = ACTIONS(3511), - [anon_sym_false] = ACTIONS(3511), - [anon_sym_LBRACK] = ACTIONS(3513), - [anon_sym_COLON] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2435), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_PERCENT] = ACTIONS(2435), - [anon_sym_EQ_EQ] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_PIPE_PIPE] = ACTIONS(2435), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_EQ_GT] = ACTIONS(3515), - [anon_sym_in] = ACTIONS(3662), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(3517), - [anon_sym_assert] = ACTIONS(3145), - [anon_sym_assert_equal] = ACTIONS(3145), - [anon_sym_download] = ACTIONS(3145), - [anon_sym_help] = ACTIONS(3145), - [anon_sym_length] = ACTIONS(3145), - [anon_sym_output] = ACTIONS(3145), - [anon_sym_output_error] = ACTIONS(3145), - [anon_sym_type] = ACTIONS(3145), - [anon_sym_append] = ACTIONS(3145), - [anon_sym_metadata] = ACTIONS(3145), - [anon_sym_move] = ACTIONS(3145), - [anon_sym_read] = ACTIONS(3145), - [anon_sym_workdir] = ACTIONS(3145), - [anon_sym_write] = ACTIONS(3145), - [anon_sym_from_json] = ACTIONS(3145), - [anon_sym_to_json] = ACTIONS(3145), - [anon_sym_to_string] = ACTIONS(3145), - [anon_sym_to_float] = ACTIONS(3145), - [anon_sym_bash] = ACTIONS(3145), - [anon_sym_fish] = ACTIONS(3145), - [anon_sym_raw] = ACTIONS(3145), - [anon_sym_sh] = ACTIONS(3145), - [anon_sym_zsh] = ACTIONS(3145), - [anon_sym_random] = ACTIONS(3145), - [anon_sym_random_boolean] = ACTIONS(3145), - [anon_sym_random_float] = ACTIONS(3145), - [anon_sym_random_integer] = ACTIONS(3145), - [anon_sym_columns] = ACTIONS(3145), - [anon_sym_rows] = ACTIONS(3145), - [anon_sym_reverse] = ACTIONS(3145), - }, - [941] = { - [sym_expression] = STATE(1042), - [sym__expression_kind] = STATE(1002), - [aux_sym__expression_list] = STATE(920), - [sym_value] = STATE(1002), - [sym_boolean] = STATE(996), - [sym_list] = STATE(996), - [sym_map] = STATE(996), - [sym_index] = STATE(1002), - [sym_math] = STATE(1002), - [sym_logic] = STATE(1002), - [sym_identifier_list] = STATE(1980), - [sym_table] = STATE(996), - [sym_function] = STATE(996), - [sym_function_call] = STATE(1002), - [sym__context_defined_function] = STATE(1009), - [sym_built_in_function] = STATE(1009), - [sym__built_in_function_name] = STATE(780), - [sym_identifier] = ACTIONS(3576), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3503), - [anon_sym_LPAREN] = ACTIONS(3505), - [anon_sym_RPAREN] = ACTIONS(2477), - [sym_integer] = ACTIONS(3507), - [sym_float] = ACTIONS(3509), - [sym_string] = ACTIONS(3509), - [anon_sym_true] = ACTIONS(3511), - [anon_sym_false] = ACTIONS(3511), - [anon_sym_LBRACK] = ACTIONS(3513), - [anon_sym_COLON] = ACTIONS(2477), - [anon_sym_PLUS] = ACTIONS(2477), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2477), - [anon_sym_SLASH] = ACTIONS(2477), - [anon_sym_PERCENT] = ACTIONS(2477), - [anon_sym_EQ_EQ] = ACTIONS(2477), - [anon_sym_BANG_EQ] = ACTIONS(2477), - [anon_sym_AMP_AMP] = ACTIONS(2477), - [anon_sym_PIPE_PIPE] = ACTIONS(2477), - [anon_sym_GT] = ACTIONS(2479), - [anon_sym_LT] = ACTIONS(2479), - [anon_sym_GT_EQ] = ACTIONS(2477), - [anon_sym_LT_EQ] = ACTIONS(2477), - [anon_sym_EQ_GT] = ACTIONS(3515), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(3517), - [anon_sym_assert] = ACTIONS(3145), - [anon_sym_assert_equal] = ACTIONS(3145), - [anon_sym_download] = ACTIONS(3145), - [anon_sym_help] = ACTIONS(3145), - [anon_sym_length] = ACTIONS(3145), - [anon_sym_output] = ACTIONS(3145), - [anon_sym_output_error] = ACTIONS(3145), - [anon_sym_type] = ACTIONS(3145), - [anon_sym_append] = ACTIONS(3145), - [anon_sym_metadata] = ACTIONS(3145), - [anon_sym_move] = ACTIONS(3145), - [anon_sym_read] = ACTIONS(3145), - [anon_sym_workdir] = ACTIONS(3145), - [anon_sym_write] = ACTIONS(3145), - [anon_sym_from_json] = ACTIONS(3145), - [anon_sym_to_json] = ACTIONS(3145), - [anon_sym_to_string] = ACTIONS(3145), - [anon_sym_to_float] = ACTIONS(3145), - [anon_sym_bash] = ACTIONS(3145), - [anon_sym_fish] = ACTIONS(3145), - [anon_sym_raw] = ACTIONS(3145), - [anon_sym_sh] = ACTIONS(3145), - [anon_sym_zsh] = ACTIONS(3145), - [anon_sym_random] = ACTIONS(3145), - [anon_sym_random_boolean] = ACTIONS(3145), - [anon_sym_random_float] = ACTIONS(3145), - [anon_sym_random_integer] = ACTIONS(3145), - [anon_sym_columns] = ACTIONS(3145), - [anon_sym_rows] = ACTIONS(3145), - [anon_sym_reverse] = ACTIONS(3145), - }, - [942] = { - [sym_expression] = STATE(1042), - [sym__expression_kind] = STATE(1002), - [aux_sym__expression_list] = STATE(941), - [sym_value] = STATE(1002), - [sym_boolean] = STATE(996), - [sym_list] = STATE(996), - [sym_map] = STATE(996), - [sym_index] = STATE(1002), - [sym_math] = STATE(1002), - [sym_logic] = STATE(1002), - [sym_identifier_list] = STATE(1980), - [sym_table] = STATE(996), - [sym_function] = STATE(996), - [sym_function_call] = STATE(1002), - [sym__context_defined_function] = STATE(1009), - [sym_built_in_function] = STATE(1009), - [sym__built_in_function_name] = STATE(780), - [sym_identifier] = ACTIONS(2437), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3503), - [anon_sym_LPAREN] = ACTIONS(3505), - [sym_integer] = ACTIONS(3507), - [sym_float] = ACTIONS(3509), - [sym_string] = ACTIONS(3509), - [anon_sym_true] = ACTIONS(3511), - [anon_sym_false] = ACTIONS(3511), - [anon_sym_LBRACK] = ACTIONS(3513), - [anon_sym_COLON] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2435), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_PERCENT] = ACTIONS(2435), - [anon_sym_EQ_EQ] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_PIPE_PIPE] = ACTIONS(2435), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_EQ_GT] = ACTIONS(3515), - [anon_sym_in] = ACTIONS(3664), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(3517), - [anon_sym_assert] = ACTIONS(3145), - [anon_sym_assert_equal] = ACTIONS(3145), - [anon_sym_download] = ACTIONS(3145), - [anon_sym_help] = ACTIONS(3145), - [anon_sym_length] = ACTIONS(3145), - [anon_sym_output] = ACTIONS(3145), - [anon_sym_output_error] = ACTIONS(3145), - [anon_sym_type] = ACTIONS(3145), - [anon_sym_append] = ACTIONS(3145), - [anon_sym_metadata] = ACTIONS(3145), - [anon_sym_move] = ACTIONS(3145), - [anon_sym_read] = ACTIONS(3145), - [anon_sym_workdir] = ACTIONS(3145), - [anon_sym_write] = ACTIONS(3145), - [anon_sym_from_json] = ACTIONS(3145), - [anon_sym_to_json] = ACTIONS(3145), - [anon_sym_to_string] = ACTIONS(3145), - [anon_sym_to_float] = ACTIONS(3145), - [anon_sym_bash] = ACTIONS(3145), - [anon_sym_fish] = ACTIONS(3145), - [anon_sym_raw] = ACTIONS(3145), - [anon_sym_sh] = ACTIONS(3145), - [anon_sym_zsh] = ACTIONS(3145), - [anon_sym_random] = ACTIONS(3145), - [anon_sym_random_boolean] = ACTIONS(3145), - [anon_sym_random_float] = ACTIONS(3145), - [anon_sym_random_integer] = ACTIONS(3145), - [anon_sym_columns] = ACTIONS(3145), - [anon_sym_rows] = ACTIONS(3145), - [anon_sym_reverse] = ACTIONS(3145), - }, - [943] = { - [sym_expression] = STATE(1042), - [sym__expression_kind] = STATE(1002), - [aux_sym__expression_list] = STATE(941), - [sym_value] = STATE(1002), - [sym_boolean] = STATE(996), - [sym_list] = STATE(996), - [sym_map] = STATE(996), - [sym_index] = STATE(1002), - [sym_math] = STATE(1002), - [sym_logic] = STATE(1002), - [sym_identifier_list] = STATE(1980), - [sym_table] = STATE(996), - [sym_function] = STATE(996), - [sym_function_call] = STATE(1002), - [sym__context_defined_function] = STATE(1009), - [sym_built_in_function] = STATE(1009), - [sym__built_in_function_name] = STATE(780), - [sym_identifier] = ACTIONS(2437), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3503), - [anon_sym_LPAREN] = ACTIONS(3505), - [sym_integer] = ACTIONS(3507), - [sym_float] = ACTIONS(3509), - [sym_string] = ACTIONS(3509), - [anon_sym_true] = ACTIONS(3511), - [anon_sym_false] = ACTIONS(3511), - [anon_sym_LBRACK] = ACTIONS(3513), - [anon_sym_COLON] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2435), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_PERCENT] = ACTIONS(2435), - [anon_sym_EQ_EQ] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_PIPE_PIPE] = ACTIONS(2435), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_EQ_GT] = ACTIONS(3515), - [anon_sym_in] = ACTIONS(3666), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(3517), - [anon_sym_assert] = ACTIONS(3145), - [anon_sym_assert_equal] = ACTIONS(3145), - [anon_sym_download] = ACTIONS(3145), - [anon_sym_help] = ACTIONS(3145), - [anon_sym_length] = ACTIONS(3145), - [anon_sym_output] = ACTIONS(3145), - [anon_sym_output_error] = ACTIONS(3145), - [anon_sym_type] = ACTIONS(3145), - [anon_sym_append] = ACTIONS(3145), - [anon_sym_metadata] = ACTIONS(3145), - [anon_sym_move] = ACTIONS(3145), - [anon_sym_read] = ACTIONS(3145), - [anon_sym_workdir] = ACTIONS(3145), - [anon_sym_write] = ACTIONS(3145), - [anon_sym_from_json] = ACTIONS(3145), - [anon_sym_to_json] = ACTIONS(3145), - [anon_sym_to_string] = ACTIONS(3145), - [anon_sym_to_float] = ACTIONS(3145), - [anon_sym_bash] = ACTIONS(3145), - [anon_sym_fish] = ACTIONS(3145), - [anon_sym_raw] = ACTIONS(3145), - [anon_sym_sh] = ACTIONS(3145), - [anon_sym_zsh] = ACTIONS(3145), - [anon_sym_random] = ACTIONS(3145), - [anon_sym_random_boolean] = ACTIONS(3145), - [anon_sym_random_float] = ACTIONS(3145), - [anon_sym_random_integer] = ACTIONS(3145), - [anon_sym_columns] = ACTIONS(3145), - [anon_sym_rows] = ACTIONS(3145), - [anon_sym_reverse] = ACTIONS(3145), - }, - [944] = { - [sym_expression] = STATE(1042), - [sym__expression_kind] = STATE(1002), - [aux_sym__expression_list] = STATE(941), - [sym_value] = STATE(1002), - [sym_boolean] = STATE(996), - [sym_list] = STATE(996), - [sym_map] = STATE(996), - [sym_index] = STATE(1002), - [sym_math] = STATE(1002), - [sym_logic] = STATE(1002), - [sym_identifier_list] = STATE(1980), - [sym_table] = STATE(996), - [sym_function] = STATE(996), - [sym_function_call] = STATE(1002), - [sym__context_defined_function] = STATE(1009), - [sym_built_in_function] = STATE(1009), - [sym__built_in_function_name] = STATE(780), - [sym_identifier] = ACTIONS(2437), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3503), - [anon_sym_LPAREN] = ACTIONS(3505), - [sym_integer] = ACTIONS(3507), - [sym_float] = ACTIONS(3509), - [sym_string] = ACTIONS(3509), - [anon_sym_true] = ACTIONS(3511), - [anon_sym_false] = ACTIONS(3511), - [anon_sym_LBRACK] = ACTIONS(3513), - [anon_sym_COLON] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2435), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_PERCENT] = ACTIONS(2435), - [anon_sym_EQ_EQ] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_PIPE_PIPE] = ACTIONS(2435), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_EQ_GT] = ACTIONS(3515), - [anon_sym_in] = ACTIONS(3668), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(3517), - [anon_sym_assert] = ACTIONS(3145), - [anon_sym_assert_equal] = ACTIONS(3145), - [anon_sym_download] = ACTIONS(3145), - [anon_sym_help] = ACTIONS(3145), - [anon_sym_length] = ACTIONS(3145), - [anon_sym_output] = ACTIONS(3145), - [anon_sym_output_error] = ACTIONS(3145), - [anon_sym_type] = ACTIONS(3145), - [anon_sym_append] = ACTIONS(3145), - [anon_sym_metadata] = ACTIONS(3145), - [anon_sym_move] = ACTIONS(3145), - [anon_sym_read] = ACTIONS(3145), - [anon_sym_workdir] = ACTIONS(3145), - [anon_sym_write] = ACTIONS(3145), - [anon_sym_from_json] = ACTIONS(3145), - [anon_sym_to_json] = ACTIONS(3145), - [anon_sym_to_string] = ACTIONS(3145), - [anon_sym_to_float] = ACTIONS(3145), - [anon_sym_bash] = ACTIONS(3145), - [anon_sym_fish] = ACTIONS(3145), - [anon_sym_raw] = ACTIONS(3145), - [anon_sym_sh] = ACTIONS(3145), - [anon_sym_zsh] = ACTIONS(3145), - [anon_sym_random] = ACTIONS(3145), - [anon_sym_random_boolean] = ACTIONS(3145), - [anon_sym_random_float] = ACTIONS(3145), - [anon_sym_random_integer] = ACTIONS(3145), - [anon_sym_columns] = ACTIONS(3145), - [anon_sym_rows] = ACTIONS(3145), - [anon_sym_reverse] = ACTIONS(3145), - }, - [945] = { - [sym_expression] = STATE(1042), - [sym__expression_kind] = STATE(1002), - [aux_sym__expression_list] = STATE(941), - [sym_value] = STATE(1002), - [sym_boolean] = STATE(996), - [sym_list] = STATE(996), - [sym_map] = STATE(996), - [sym_index] = STATE(1002), - [sym_math] = STATE(1002), - [sym_logic] = STATE(1002), - [sym_identifier_list] = STATE(1980), - [sym_table] = STATE(996), - [sym_function] = STATE(996), - [sym_function_call] = STATE(1002), - [sym__context_defined_function] = STATE(1009), - [sym_built_in_function] = STATE(1009), - [sym__built_in_function_name] = STATE(780), - [sym_identifier] = ACTIONS(2437), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3503), - [anon_sym_LPAREN] = ACTIONS(3505), - [sym_integer] = ACTIONS(3507), - [sym_float] = ACTIONS(3509), - [sym_string] = ACTIONS(3509), - [anon_sym_true] = ACTIONS(3511), - [anon_sym_false] = ACTIONS(3511), - [anon_sym_LBRACK] = ACTIONS(3513), - [anon_sym_COLON] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2435), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_PERCENT] = ACTIONS(2435), - [anon_sym_EQ_EQ] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_PIPE_PIPE] = ACTIONS(2435), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_EQ_GT] = ACTIONS(3515), - [anon_sym_in] = ACTIONS(3670), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(3517), - [anon_sym_assert] = ACTIONS(3145), - [anon_sym_assert_equal] = ACTIONS(3145), - [anon_sym_download] = ACTIONS(3145), - [anon_sym_help] = ACTIONS(3145), - [anon_sym_length] = ACTIONS(3145), - [anon_sym_output] = ACTIONS(3145), - [anon_sym_output_error] = ACTIONS(3145), - [anon_sym_type] = ACTIONS(3145), - [anon_sym_append] = ACTIONS(3145), - [anon_sym_metadata] = ACTIONS(3145), - [anon_sym_move] = ACTIONS(3145), - [anon_sym_read] = ACTIONS(3145), - [anon_sym_workdir] = ACTIONS(3145), - [anon_sym_write] = ACTIONS(3145), - [anon_sym_from_json] = ACTIONS(3145), - [anon_sym_to_json] = ACTIONS(3145), - [anon_sym_to_string] = ACTIONS(3145), - [anon_sym_to_float] = ACTIONS(3145), - [anon_sym_bash] = ACTIONS(3145), - [anon_sym_fish] = ACTIONS(3145), - [anon_sym_raw] = ACTIONS(3145), - [anon_sym_sh] = ACTIONS(3145), - [anon_sym_zsh] = ACTIONS(3145), - [anon_sym_random] = ACTIONS(3145), - [anon_sym_random_boolean] = ACTIONS(3145), - [anon_sym_random_float] = ACTIONS(3145), - [anon_sym_random_integer] = ACTIONS(3145), - [anon_sym_columns] = ACTIONS(3145), - [anon_sym_rows] = ACTIONS(3145), - [anon_sym_reverse] = ACTIONS(3145), - }, - [946] = { - [sym_expression] = STATE(1042), - [sym__expression_kind] = STATE(1002), - [aux_sym__expression_list] = STATE(941), - [sym_value] = STATE(1002), - [sym_boolean] = STATE(996), - [sym_list] = STATE(996), - [sym_map] = STATE(996), - [sym_index] = STATE(1002), - [sym_math] = STATE(1002), - [sym_logic] = STATE(1002), - [sym_identifier_list] = STATE(1980), - [sym_table] = STATE(996), - [sym_function] = STATE(996), - [sym_function_call] = STATE(1002), - [sym__context_defined_function] = STATE(1009), - [sym_built_in_function] = STATE(1009), - [sym__built_in_function_name] = STATE(780), - [sym_identifier] = ACTIONS(3576), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3503), - [anon_sym_LPAREN] = ACTIONS(3505), - [anon_sym_RPAREN] = ACTIONS(2435), - [sym_integer] = ACTIONS(3507), - [sym_float] = ACTIONS(3509), - [sym_string] = ACTIONS(3509), - [anon_sym_true] = ACTIONS(3511), - [anon_sym_false] = ACTIONS(3511), - [anon_sym_LBRACK] = ACTIONS(3513), - [anon_sym_COLON] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2435), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_PERCENT] = ACTIONS(2435), - [anon_sym_EQ_EQ] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_PIPE_PIPE] = ACTIONS(2435), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_EQ_GT] = ACTIONS(3515), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(3517), - [anon_sym_assert] = ACTIONS(3145), - [anon_sym_assert_equal] = ACTIONS(3145), - [anon_sym_download] = ACTIONS(3145), - [anon_sym_help] = ACTIONS(3145), - [anon_sym_length] = ACTIONS(3145), - [anon_sym_output] = ACTIONS(3145), - [anon_sym_output_error] = ACTIONS(3145), - [anon_sym_type] = ACTIONS(3145), - [anon_sym_append] = ACTIONS(3145), - [anon_sym_metadata] = ACTIONS(3145), - [anon_sym_move] = ACTIONS(3145), - [anon_sym_read] = ACTIONS(3145), - [anon_sym_workdir] = ACTIONS(3145), - [anon_sym_write] = ACTIONS(3145), - [anon_sym_from_json] = ACTIONS(3145), - [anon_sym_to_json] = ACTIONS(3145), - [anon_sym_to_string] = ACTIONS(3145), - [anon_sym_to_float] = ACTIONS(3145), - [anon_sym_bash] = ACTIONS(3145), - [anon_sym_fish] = ACTIONS(3145), - [anon_sym_raw] = ACTIONS(3145), - [anon_sym_sh] = ACTIONS(3145), - [anon_sym_zsh] = ACTIONS(3145), - [anon_sym_random] = ACTIONS(3145), - [anon_sym_random_boolean] = ACTIONS(3145), - [anon_sym_random_float] = ACTIONS(3145), - [anon_sym_random_integer] = ACTIONS(3145), - [anon_sym_columns] = ACTIONS(3145), - [anon_sym_rows] = ACTIONS(3145), - [anon_sym_reverse] = ACTIONS(3145), - }, - [947] = { - [sym_expression] = STATE(1042), - [sym__expression_kind] = STATE(1002), - [aux_sym__expression_list] = STATE(941), - [sym_value] = STATE(1002), - [sym_boolean] = STATE(996), - [sym_list] = STATE(996), - [sym_map] = STATE(996), - [sym_index] = STATE(1002), - [sym_math] = STATE(1002), - [sym_logic] = STATE(1002), - [sym_identifier_list] = STATE(1980), - [sym_table] = STATE(996), - [sym_function] = STATE(996), - [sym_function_call] = STATE(1002), - [sym__context_defined_function] = STATE(1009), - [sym_built_in_function] = STATE(1009), - [sym__built_in_function_name] = STATE(780), - [sym_identifier] = ACTIONS(2437), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3503), - [anon_sym_LPAREN] = ACTIONS(3505), - [sym_integer] = ACTIONS(3507), - [sym_float] = ACTIONS(3509), - [sym_string] = ACTIONS(3509), - [anon_sym_true] = ACTIONS(3511), - [anon_sym_false] = ACTIONS(3511), - [anon_sym_LBRACK] = ACTIONS(3513), - [anon_sym_COLON] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2435), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_PERCENT] = ACTIONS(2435), - [anon_sym_EQ_EQ] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_PIPE_PIPE] = ACTIONS(2435), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_EQ_GT] = ACTIONS(3515), - [anon_sym_in] = ACTIONS(3672), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(3517), - [anon_sym_assert] = ACTIONS(3145), - [anon_sym_assert_equal] = ACTIONS(3145), - [anon_sym_download] = ACTIONS(3145), - [anon_sym_help] = ACTIONS(3145), - [anon_sym_length] = ACTIONS(3145), - [anon_sym_output] = ACTIONS(3145), - [anon_sym_output_error] = ACTIONS(3145), - [anon_sym_type] = ACTIONS(3145), - [anon_sym_append] = ACTIONS(3145), - [anon_sym_metadata] = ACTIONS(3145), - [anon_sym_move] = ACTIONS(3145), - [anon_sym_read] = ACTIONS(3145), - [anon_sym_workdir] = ACTIONS(3145), - [anon_sym_write] = ACTIONS(3145), - [anon_sym_from_json] = ACTIONS(3145), - [anon_sym_to_json] = ACTIONS(3145), - [anon_sym_to_string] = ACTIONS(3145), - [anon_sym_to_float] = ACTIONS(3145), - [anon_sym_bash] = ACTIONS(3145), - [anon_sym_fish] = ACTIONS(3145), - [anon_sym_raw] = ACTIONS(3145), - [anon_sym_sh] = ACTIONS(3145), - [anon_sym_zsh] = ACTIONS(3145), - [anon_sym_random] = ACTIONS(3145), - [anon_sym_random_boolean] = ACTIONS(3145), - [anon_sym_random_float] = ACTIONS(3145), - [anon_sym_random_integer] = ACTIONS(3145), - [anon_sym_columns] = ACTIONS(3145), - [anon_sym_rows] = ACTIONS(3145), - [anon_sym_reverse] = ACTIONS(3145), - }, - [948] = { - [sym_expression] = STATE(1042), - [sym__expression_kind] = STATE(1002), - [aux_sym__expression_list] = STATE(941), - [sym_value] = STATE(1002), - [sym_boolean] = STATE(996), - [sym_list] = STATE(996), - [sym_map] = STATE(996), - [sym_index] = STATE(1002), - [sym_math] = STATE(1002), - [sym_logic] = STATE(1002), - [sym_identifier_list] = STATE(1980), - [sym_table] = STATE(996), - [sym_function] = STATE(996), - [sym_function_call] = STATE(1002), - [sym__context_defined_function] = STATE(1009), - [sym_built_in_function] = STATE(1009), - [sym__built_in_function_name] = STATE(780), - [sym_identifier] = ACTIONS(2437), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3503), - [anon_sym_LPAREN] = ACTIONS(3505), - [sym_integer] = ACTIONS(3507), - [sym_float] = ACTIONS(3509), - [sym_string] = ACTIONS(3509), - [anon_sym_true] = ACTIONS(3511), - [anon_sym_false] = ACTIONS(3511), - [anon_sym_LBRACK] = ACTIONS(3513), - [anon_sym_COLON] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2435), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_PERCENT] = ACTIONS(2435), - [anon_sym_EQ_EQ] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_PIPE_PIPE] = ACTIONS(2435), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_EQ_GT] = ACTIONS(3515), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(3517), - [anon_sym_assert] = ACTIONS(3145), - [anon_sym_assert_equal] = ACTIONS(3145), - [anon_sym_download] = ACTIONS(3145), - [anon_sym_help] = ACTIONS(3145), - [anon_sym_length] = ACTIONS(3145), - [anon_sym_output] = ACTIONS(3145), - [anon_sym_output_error] = ACTIONS(3145), - [anon_sym_type] = ACTIONS(3145), - [anon_sym_append] = ACTIONS(3145), - [anon_sym_metadata] = ACTIONS(3145), - [anon_sym_move] = ACTIONS(3145), - [anon_sym_read] = ACTIONS(3145), - [anon_sym_workdir] = ACTIONS(3145), - [anon_sym_write] = ACTIONS(3145), - [anon_sym_from_json] = ACTIONS(3145), - [anon_sym_to_json] = ACTIONS(3145), - [anon_sym_to_string] = ACTIONS(3145), - [anon_sym_to_float] = ACTIONS(3145), - [anon_sym_bash] = ACTIONS(3145), - [anon_sym_fish] = ACTIONS(3145), - [anon_sym_raw] = ACTIONS(3145), - [anon_sym_sh] = ACTIONS(3145), - [anon_sym_zsh] = ACTIONS(3145), - [anon_sym_random] = ACTIONS(3145), - [anon_sym_random_boolean] = ACTIONS(3145), - [anon_sym_random_float] = ACTIONS(3145), - [anon_sym_random_integer] = ACTIONS(3145), - [anon_sym_columns] = ACTIONS(3145), - [anon_sym_rows] = ACTIONS(3145), - [anon_sym_reverse] = ACTIONS(3145), - }, - [949] = { - [sym_expression] = STATE(1042), - [sym__expression_kind] = STATE(1002), - [aux_sym__expression_list] = STATE(941), - [sym_value] = STATE(1002), - [sym_boolean] = STATE(996), - [sym_list] = STATE(996), - [sym_map] = STATE(996), - [sym_index] = STATE(1002), - [sym_math] = STATE(1002), - [sym_logic] = STATE(1002), - [sym_identifier_list] = STATE(1980), - [sym_table] = STATE(996), - [sym_function] = STATE(996), - [sym_function_call] = STATE(1002), - [sym__context_defined_function] = STATE(1009), - [sym_built_in_function] = STATE(1009), - [sym__built_in_function_name] = STATE(780), - [sym_identifier] = ACTIONS(3576), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3503), - [anon_sym_LPAREN] = ACTIONS(3505), - [sym_integer] = ACTIONS(3507), - [sym_float] = ACTIONS(3509), - [sym_string] = ACTIONS(3509), - [anon_sym_true] = ACTIONS(3511), - [anon_sym_false] = ACTIONS(3511), - [anon_sym_LBRACK] = ACTIONS(3513), - [anon_sym_COLON] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2435), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_SLASH] = ACTIONS(2435), - [anon_sym_PERCENT] = ACTIONS(2435), - [anon_sym_EQ_EQ] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_PIPE_PIPE] = ACTIONS(2435), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_EQ_GT] = ACTIONS(2435), - [anon_sym_PIPE] = ACTIONS(109), - [anon_sym_table] = ACTIONS(3517), - [anon_sym_assert] = ACTIONS(3145), - [anon_sym_assert_equal] = ACTIONS(3145), - [anon_sym_download] = ACTIONS(3145), - [anon_sym_help] = ACTIONS(3145), - [anon_sym_length] = ACTIONS(3145), - [anon_sym_output] = ACTIONS(3145), - [anon_sym_output_error] = ACTIONS(3145), - [anon_sym_type] = ACTIONS(3145), - [anon_sym_append] = ACTIONS(3145), - [anon_sym_metadata] = ACTIONS(3145), - [anon_sym_move] = ACTIONS(3145), - [anon_sym_read] = ACTIONS(3145), - [anon_sym_workdir] = ACTIONS(3145), - [anon_sym_write] = ACTIONS(3145), - [anon_sym_from_json] = ACTIONS(3145), - [anon_sym_to_json] = ACTIONS(3145), - [anon_sym_to_string] = ACTIONS(3145), - [anon_sym_to_float] = ACTIONS(3145), - [anon_sym_bash] = ACTIONS(3145), - [anon_sym_fish] = ACTIONS(3145), - [anon_sym_raw] = ACTIONS(3145), - [anon_sym_sh] = ACTIONS(3145), - [anon_sym_zsh] = ACTIONS(3145), - [anon_sym_random] = ACTIONS(3145), - [anon_sym_random_boolean] = ACTIONS(3145), - [anon_sym_random_float] = ACTIONS(3145), - [anon_sym_random_integer] = ACTIONS(3145), - [anon_sym_columns] = ACTIONS(3145), - [anon_sym_rows] = ACTIONS(3145), - [anon_sym_reverse] = ACTIONS(3145), - }, - [950] = { - [sym_math_operator] = STATE(1403), - [sym_logic_operator] = STATE(1402), - [sym_identifier] = ACTIONS(3242), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3240), - [anon_sym_SEMI] = ACTIONS(3240), - [anon_sym_LPAREN] = ACTIONS(3240), - [anon_sym_COMMA] = ACTIONS(3240), - [sym_integer] = ACTIONS(3242), - [sym_float] = ACTIONS(3240), - [sym_string] = ACTIONS(3240), - [anon_sym_true] = ACTIONS(3242), - [anon_sym_false] = ACTIONS(3242), - [anon_sym_LBRACK] = ACTIONS(3240), - [anon_sym_EQ] = ACTIONS(3242), - [anon_sym_COLON] = ACTIONS(3674), - [anon_sym_DOT_DOT] = ACTIONS(3240), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_PLUS_EQ] = ACTIONS(3240), - [anon_sym_DASH_EQ] = ACTIONS(3240), - [anon_sym_EQ_GT] = ACTIONS(3240), - [anon_sym_PIPE] = ACTIONS(3242), - [anon_sym_table] = ACTIONS(3242), - [anon_sym_assert] = ACTIONS(3242), - [anon_sym_assert_equal] = ACTIONS(3242), - [anon_sym_download] = ACTIONS(3242), - [anon_sym_help] = ACTIONS(3242), - [anon_sym_length] = ACTIONS(3242), - [anon_sym_output] = ACTIONS(3242), - [anon_sym_output_error] = ACTIONS(3242), - [anon_sym_type] = ACTIONS(3242), - [anon_sym_append] = ACTIONS(3242), - [anon_sym_metadata] = ACTIONS(3242), - [anon_sym_move] = ACTIONS(3242), - [anon_sym_read] = ACTIONS(3242), - [anon_sym_workdir] = ACTIONS(3242), - [anon_sym_write] = ACTIONS(3242), - [anon_sym_from_json] = ACTIONS(3242), - [anon_sym_to_json] = ACTIONS(3242), - [anon_sym_to_string] = ACTIONS(3242), - [anon_sym_to_float] = ACTIONS(3242), - [anon_sym_bash] = ACTIONS(3242), - [anon_sym_fish] = ACTIONS(3242), - [anon_sym_raw] = ACTIONS(3242), - [anon_sym_sh] = ACTIONS(3242), - [anon_sym_zsh] = ACTIONS(3242), - [anon_sym_random] = ACTIONS(3242), - [anon_sym_random_boolean] = ACTIONS(3242), - [anon_sym_random_float] = ACTIONS(3242), - [anon_sym_random_integer] = ACTIONS(3242), - [anon_sym_columns] = ACTIONS(3242), - [anon_sym_rows] = ACTIONS(3242), - [anon_sym_reverse] = ACTIONS(3242), - }, - [951] = { - [sym_math_operator] = STATE(1403), - [sym_logic_operator] = STATE(1402), - [sym_identifier] = ACTIONS(3250), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3248), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(3248), - [anon_sym_COMMA] = ACTIONS(3248), - [sym_integer] = ACTIONS(3250), - [sym_float] = ACTIONS(3248), - [sym_string] = ACTIONS(3248), - [anon_sym_true] = ACTIONS(3250), - [anon_sym_false] = ACTIONS(3250), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_EQ] = ACTIONS(3250), - [anon_sym_COLON] = ACTIONS(3248), - [anon_sym_DOT_DOT] = ACTIONS(3676), - [anon_sym_PLUS] = ACTIONS(3250), - [anon_sym_DASH] = ACTIONS(3250), - [anon_sym_STAR] = ACTIONS(3248), - [anon_sym_SLASH] = ACTIONS(3248), - [anon_sym_PERCENT] = ACTIONS(3248), - [anon_sym_EQ_EQ] = ACTIONS(3248), - [anon_sym_BANG_EQ] = ACTIONS(3248), - [anon_sym_AMP_AMP] = ACTIONS(3248), - [anon_sym_PIPE_PIPE] = ACTIONS(3248), - [anon_sym_GT] = ACTIONS(3250), - [anon_sym_LT] = ACTIONS(3250), - [anon_sym_GT_EQ] = ACTIONS(3248), - [anon_sym_LT_EQ] = ACTIONS(3248), - [anon_sym_PLUS_EQ] = ACTIONS(3248), - [anon_sym_DASH_EQ] = ACTIONS(3248), - [anon_sym_EQ_GT] = ACTIONS(3248), - [anon_sym_PIPE] = ACTIONS(3250), - [anon_sym_table] = ACTIONS(3250), - [anon_sym_assert] = ACTIONS(3250), - [anon_sym_assert_equal] = ACTIONS(3250), - [anon_sym_download] = ACTIONS(3250), - [anon_sym_help] = ACTIONS(3250), - [anon_sym_length] = ACTIONS(3250), - [anon_sym_output] = ACTIONS(3250), - [anon_sym_output_error] = ACTIONS(3250), - [anon_sym_type] = ACTIONS(3250), - [anon_sym_append] = ACTIONS(3250), - [anon_sym_metadata] = ACTIONS(3250), - [anon_sym_move] = ACTIONS(3250), - [anon_sym_read] = ACTIONS(3250), - [anon_sym_workdir] = ACTIONS(3250), - [anon_sym_write] = ACTIONS(3250), - [anon_sym_from_json] = ACTIONS(3250), - [anon_sym_to_json] = ACTIONS(3250), - [anon_sym_to_string] = ACTIONS(3250), - [anon_sym_to_float] = ACTIONS(3250), - [anon_sym_bash] = ACTIONS(3250), - [anon_sym_fish] = ACTIONS(3250), - [anon_sym_raw] = ACTIONS(3250), - [anon_sym_sh] = ACTIONS(3250), - [anon_sym_zsh] = ACTIONS(3250), - [anon_sym_random] = ACTIONS(3250), - [anon_sym_random_boolean] = ACTIONS(3250), - [anon_sym_random_float] = ACTIONS(3250), - [anon_sym_random_integer] = ACTIONS(3250), - [anon_sym_columns] = ACTIONS(3250), - [anon_sym_rows] = ACTIONS(3250), - [anon_sym_reverse] = ACTIONS(3250), - }, - [952] = { - [sym_math_operator] = STATE(1403), - [sym_logic_operator] = STATE(1402), - [sym_identifier] = ACTIONS(3254), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3252), - [anon_sym_RBRACE] = ACTIONS(3252), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_LPAREN] = ACTIONS(3252), - [anon_sym_COMMA] = ACTIONS(3252), - [sym_integer] = ACTIONS(3254), - [sym_float] = ACTIONS(3252), - [sym_string] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_EQ] = ACTIONS(3254), - [anon_sym_COLON] = ACTIONS(3252), - [anon_sym_DOT_DOT] = ACTIONS(3252), - [anon_sym_PLUS] = ACTIONS(3254), - [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_STAR] = ACTIONS(3252), - [anon_sym_SLASH] = ACTIONS(3252), - [anon_sym_PERCENT] = ACTIONS(3252), - [anon_sym_EQ_EQ] = ACTIONS(3252), - [anon_sym_BANG_EQ] = ACTIONS(3252), - [anon_sym_AMP_AMP] = ACTIONS(3252), - [anon_sym_PIPE_PIPE] = ACTIONS(3252), - [anon_sym_GT] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(3254), - [anon_sym_GT_EQ] = ACTIONS(3252), - [anon_sym_LT_EQ] = ACTIONS(3252), - [anon_sym_PLUS_EQ] = ACTIONS(3252), - [anon_sym_DASH_EQ] = ACTIONS(3252), - [anon_sym_EQ_GT] = ACTIONS(3252), - [anon_sym_PIPE] = ACTIONS(3254), - [anon_sym_table] = ACTIONS(3254), - [anon_sym_assert] = ACTIONS(3254), - [anon_sym_assert_equal] = ACTIONS(3254), - [anon_sym_download] = ACTIONS(3254), - [anon_sym_help] = ACTIONS(3254), - [anon_sym_length] = ACTIONS(3254), - [anon_sym_output] = ACTIONS(3254), - [anon_sym_output_error] = ACTIONS(3254), - [anon_sym_type] = ACTIONS(3254), - [anon_sym_append] = ACTIONS(3254), - [anon_sym_metadata] = ACTIONS(3254), - [anon_sym_move] = ACTIONS(3254), - [anon_sym_read] = ACTIONS(3254), - [anon_sym_workdir] = ACTIONS(3254), - [anon_sym_write] = ACTIONS(3254), - [anon_sym_from_json] = ACTIONS(3254), - [anon_sym_to_json] = ACTIONS(3254), - [anon_sym_to_string] = ACTIONS(3254), - [anon_sym_to_float] = ACTIONS(3254), - [anon_sym_bash] = ACTIONS(3254), - [anon_sym_fish] = ACTIONS(3254), - [anon_sym_raw] = ACTIONS(3254), - [anon_sym_sh] = ACTIONS(3254), - [anon_sym_zsh] = ACTIONS(3254), - [anon_sym_random] = ACTIONS(3254), - [anon_sym_random_boolean] = ACTIONS(3254), - [anon_sym_random_float] = ACTIONS(3254), - [anon_sym_random_integer] = ACTIONS(3254), - [anon_sym_columns] = ACTIONS(3254), - [anon_sym_rows] = ACTIONS(3254), - [anon_sym_reverse] = ACTIONS(3254), - }, - [953] = { - [sym_math_operator] = STATE(1403), - [sym_logic_operator] = STATE(1402), - [sym_identifier] = ACTIONS(3264), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3262), - [anon_sym_SEMI] = ACTIONS(3262), - [anon_sym_LPAREN] = ACTIONS(3262), - [anon_sym_COMMA] = ACTIONS(3262), - [sym_integer] = ACTIONS(3264), - [sym_float] = ACTIONS(3262), - [sym_string] = ACTIONS(3262), - [anon_sym_true] = ACTIONS(3264), - [anon_sym_false] = ACTIONS(3264), - [anon_sym_LBRACK] = ACTIONS(3262), - [anon_sym_EQ] = ACTIONS(3264), - [anon_sym_COLON] = ACTIONS(3262), - [anon_sym_DOT_DOT] = ACTIONS(3262), - [anon_sym_PLUS] = ACTIONS(3264), - [anon_sym_DASH] = ACTIONS(3264), - [anon_sym_STAR] = ACTIONS(3262), - [anon_sym_SLASH] = ACTIONS(3262), - [anon_sym_PERCENT] = ACTIONS(3262), - [anon_sym_EQ_EQ] = ACTIONS(3262), - [anon_sym_BANG_EQ] = ACTIONS(3262), - [anon_sym_AMP_AMP] = ACTIONS(3262), - [anon_sym_PIPE_PIPE] = ACTIONS(3262), - [anon_sym_GT] = ACTIONS(3264), - [anon_sym_LT] = ACTIONS(3264), - [anon_sym_GT_EQ] = ACTIONS(3262), - [anon_sym_LT_EQ] = ACTIONS(3262), - [anon_sym_PLUS_EQ] = ACTIONS(3262), - [anon_sym_DASH_EQ] = ACTIONS(3262), - [anon_sym_EQ_GT] = ACTIONS(3262), - [anon_sym_PIPE] = ACTIONS(3264), - [anon_sym_table] = ACTIONS(3264), - [anon_sym_assert] = ACTIONS(3264), - [anon_sym_assert_equal] = ACTIONS(3264), - [anon_sym_download] = ACTIONS(3264), - [anon_sym_help] = ACTIONS(3264), - [anon_sym_length] = ACTIONS(3264), - [anon_sym_output] = ACTIONS(3264), - [anon_sym_output_error] = ACTIONS(3264), - [anon_sym_type] = ACTIONS(3264), - [anon_sym_append] = ACTIONS(3264), - [anon_sym_metadata] = ACTIONS(3264), - [anon_sym_move] = ACTIONS(3264), - [anon_sym_read] = ACTIONS(3264), - [anon_sym_workdir] = ACTIONS(3264), - [anon_sym_write] = ACTIONS(3264), - [anon_sym_from_json] = ACTIONS(3264), - [anon_sym_to_json] = ACTIONS(3264), - [anon_sym_to_string] = ACTIONS(3264), - [anon_sym_to_float] = ACTIONS(3264), - [anon_sym_bash] = ACTIONS(3264), - [anon_sym_fish] = ACTIONS(3264), - [anon_sym_raw] = ACTIONS(3264), - [anon_sym_sh] = ACTIONS(3264), - [anon_sym_zsh] = ACTIONS(3264), - [anon_sym_random] = ACTIONS(3264), - [anon_sym_random_boolean] = ACTIONS(3264), - [anon_sym_random_float] = ACTIONS(3264), - [anon_sym_random_integer] = ACTIONS(3264), - [anon_sym_columns] = ACTIONS(3264), - [anon_sym_rows] = ACTIONS(3264), - [anon_sym_reverse] = ACTIONS(3264), - }, - [954] = { - [sym_math_operator] = STATE(1403), - [sym_logic_operator] = STATE(1402), - [sym_identifier] = ACTIONS(3246), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_RBRACE] = ACTIONS(3244), - [anon_sym_SEMI] = ACTIONS(3244), - [anon_sym_LPAREN] = ACTIONS(3244), - [anon_sym_COMMA] = ACTIONS(3244), - [sym_integer] = ACTIONS(3246), - [sym_float] = ACTIONS(3244), - [sym_string] = ACTIONS(3244), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_LBRACK] = ACTIONS(3244), - [anon_sym_EQ] = ACTIONS(3246), - [anon_sym_COLON] = ACTIONS(3674), - [anon_sym_DOT_DOT] = ACTIONS(3244), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_PLUS_EQ] = ACTIONS(3244), - [anon_sym_DASH_EQ] = ACTIONS(3244), - [anon_sym_EQ_GT] = ACTIONS(3244), - [anon_sym_PIPE] = ACTIONS(3246), - [anon_sym_table] = ACTIONS(3246), - [anon_sym_assert] = ACTIONS(3246), - [anon_sym_assert_equal] = ACTIONS(3246), - [anon_sym_download] = ACTIONS(3246), - [anon_sym_help] = ACTIONS(3246), - [anon_sym_length] = ACTIONS(3246), - [anon_sym_output] = ACTIONS(3246), - [anon_sym_output_error] = ACTIONS(3246), - [anon_sym_type] = ACTIONS(3246), - [anon_sym_append] = ACTIONS(3246), - [anon_sym_metadata] = ACTIONS(3246), - [anon_sym_move] = ACTIONS(3246), - [anon_sym_read] = ACTIONS(3246), - [anon_sym_workdir] = ACTIONS(3246), - [anon_sym_write] = ACTIONS(3246), - [anon_sym_from_json] = ACTIONS(3246), - [anon_sym_to_json] = ACTIONS(3246), - [anon_sym_to_string] = ACTIONS(3246), - [anon_sym_to_float] = ACTIONS(3246), - [anon_sym_bash] = ACTIONS(3246), - [anon_sym_fish] = ACTIONS(3246), - [anon_sym_raw] = ACTIONS(3246), - [anon_sym_sh] = ACTIONS(3246), - [anon_sym_zsh] = ACTIONS(3246), - [anon_sym_random] = ACTIONS(3246), - [anon_sym_random_boolean] = ACTIONS(3246), - [anon_sym_random_float] = ACTIONS(3246), - [anon_sym_random_integer] = ACTIONS(3246), - [anon_sym_columns] = ACTIONS(3246), - [anon_sym_rows] = ACTIONS(3246), - [anon_sym_reverse] = ACTIONS(3246), - }, - [955] = { - [sym_math_operator] = STATE(1403), - [sym_logic_operator] = STATE(1402), - [sym_identifier] = ACTIONS(3235), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3233), - [anon_sym_RBRACE] = ACTIONS(3233), - [anon_sym_SEMI] = ACTIONS(3233), - [anon_sym_LPAREN] = ACTIONS(3233), - [anon_sym_COMMA] = ACTIONS(3678), - [sym_integer] = ACTIONS(3235), - [sym_float] = ACTIONS(3233), - [sym_string] = ACTIONS(3233), - [anon_sym_true] = ACTIONS(3235), - [anon_sym_false] = ACTIONS(3235), - [anon_sym_LBRACK] = ACTIONS(3233), - [anon_sym_EQ] = ACTIONS(3235), - [anon_sym_COLON] = ACTIONS(3674), - [anon_sym_DOT_DOT] = ACTIONS(3233), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_PLUS_EQ] = ACTIONS(3233), - [anon_sym_DASH_EQ] = ACTIONS(3233), - [anon_sym_EQ_GT] = ACTIONS(3233), - [anon_sym_PIPE] = ACTIONS(3235), - [anon_sym_table] = ACTIONS(3235), - [anon_sym_assert] = ACTIONS(3235), - [anon_sym_assert_equal] = ACTIONS(3235), - [anon_sym_download] = ACTIONS(3235), - [anon_sym_help] = ACTIONS(3235), - [anon_sym_length] = ACTIONS(3235), - [anon_sym_output] = ACTIONS(3235), - [anon_sym_output_error] = ACTIONS(3235), - [anon_sym_type] = ACTIONS(3235), - [anon_sym_append] = ACTIONS(3235), - [anon_sym_metadata] = ACTIONS(3235), - [anon_sym_move] = ACTIONS(3235), - [anon_sym_read] = ACTIONS(3235), - [anon_sym_workdir] = ACTIONS(3235), - [anon_sym_write] = ACTIONS(3235), - [anon_sym_from_json] = ACTIONS(3235), - [anon_sym_to_json] = ACTIONS(3235), - [anon_sym_to_string] = ACTIONS(3235), - [anon_sym_to_float] = ACTIONS(3235), - [anon_sym_bash] = ACTIONS(3235), - [anon_sym_fish] = ACTIONS(3235), - [anon_sym_raw] = ACTIONS(3235), - [anon_sym_sh] = ACTIONS(3235), - [anon_sym_zsh] = ACTIONS(3235), - [anon_sym_random] = ACTIONS(3235), - [anon_sym_random_boolean] = ACTIONS(3235), - [anon_sym_random_float] = ACTIONS(3235), - [anon_sym_random_integer] = ACTIONS(3235), - [anon_sym_columns] = ACTIONS(3235), - [anon_sym_rows] = ACTIONS(3235), - [anon_sym_reverse] = ACTIONS(3235), - }, - [956] = { - [sym_math_operator] = STATE(1403), - [sym_logic_operator] = STATE(1402), - [sym_identifier] = ACTIONS(3250), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3248), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(3248), - [anon_sym_COMMA] = ACTIONS(3248), - [sym_integer] = ACTIONS(3250), - [sym_float] = ACTIONS(3248), - [sym_string] = ACTIONS(3248), - [anon_sym_true] = ACTIONS(3250), - [anon_sym_false] = ACTIONS(3250), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_EQ] = ACTIONS(3250), - [anon_sym_COLON] = ACTIONS(3248), - [anon_sym_DOT_DOT] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3250), - [anon_sym_DASH] = ACTIONS(3250), - [anon_sym_STAR] = ACTIONS(3248), - [anon_sym_SLASH] = ACTIONS(3248), - [anon_sym_PERCENT] = ACTIONS(3248), - [anon_sym_EQ_EQ] = ACTIONS(3248), - [anon_sym_BANG_EQ] = ACTIONS(3248), - [anon_sym_AMP_AMP] = ACTIONS(3248), - [anon_sym_PIPE_PIPE] = ACTIONS(3248), - [anon_sym_GT] = ACTIONS(3250), - [anon_sym_LT] = ACTIONS(3250), - [anon_sym_GT_EQ] = ACTIONS(3248), - [anon_sym_LT_EQ] = ACTIONS(3248), - [anon_sym_PLUS_EQ] = ACTIONS(3248), - [anon_sym_DASH_EQ] = ACTIONS(3248), - [anon_sym_EQ_GT] = ACTIONS(3248), - [anon_sym_PIPE] = ACTIONS(3250), - [anon_sym_table] = ACTIONS(3250), - [anon_sym_assert] = ACTIONS(3250), - [anon_sym_assert_equal] = ACTIONS(3250), - [anon_sym_download] = ACTIONS(3250), - [anon_sym_help] = ACTIONS(3250), - [anon_sym_length] = ACTIONS(3250), - [anon_sym_output] = ACTIONS(3250), - [anon_sym_output_error] = ACTIONS(3250), - [anon_sym_type] = ACTIONS(3250), - [anon_sym_append] = ACTIONS(3250), - [anon_sym_metadata] = ACTIONS(3250), - [anon_sym_move] = ACTIONS(3250), - [anon_sym_read] = ACTIONS(3250), - [anon_sym_workdir] = ACTIONS(3250), - [anon_sym_write] = ACTIONS(3250), - [anon_sym_from_json] = ACTIONS(3250), - [anon_sym_to_json] = ACTIONS(3250), - [anon_sym_to_string] = ACTIONS(3250), - [anon_sym_to_float] = ACTIONS(3250), - [anon_sym_bash] = ACTIONS(3250), - [anon_sym_fish] = ACTIONS(3250), - [anon_sym_raw] = ACTIONS(3250), - [anon_sym_sh] = ACTIONS(3250), - [anon_sym_zsh] = ACTIONS(3250), - [anon_sym_random] = ACTIONS(3250), - [anon_sym_random_boolean] = ACTIONS(3250), - [anon_sym_random_float] = ACTIONS(3250), - [anon_sym_random_integer] = ACTIONS(3250), - [anon_sym_columns] = ACTIONS(3250), - [anon_sym_rows] = ACTIONS(3250), - [anon_sym_reverse] = ACTIONS(3250), - }, - [957] = { - [sym_math_operator] = STATE(1198), - [sym_logic_operator] = STATE(1199), - [sym_identifier] = ACTIONS(3246), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_RBRACE] = ACTIONS(3244), - [anon_sym_SEMI] = ACTIONS(3244), - [anon_sym_LPAREN] = ACTIONS(3244), - [anon_sym_RPAREN] = ACTIONS(3244), - [anon_sym_COMMA] = ACTIONS(3244), - [sym_integer] = ACTIONS(3246), - [sym_float] = ACTIONS(3244), - [sym_string] = ACTIONS(3244), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_LBRACK] = ACTIONS(3244), - [anon_sym_RBRACK] = ACTIONS(3244), - [anon_sym_COLON] = ACTIONS(3681), - [anon_sym_DOT_DOT] = ACTIONS(3244), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_EQ_GT] = ACTIONS(3244), - [anon_sym_PIPE] = ACTIONS(3246), - [anon_sym_table] = ACTIONS(3246), - [anon_sym_assert] = ACTIONS(3246), - [anon_sym_assert_equal] = ACTIONS(3246), - [anon_sym_download] = ACTIONS(3246), - [anon_sym_help] = ACTIONS(3246), - [anon_sym_length] = ACTIONS(3246), - [anon_sym_output] = ACTIONS(3246), - [anon_sym_output_error] = ACTIONS(3246), - [anon_sym_type] = ACTIONS(3246), - [anon_sym_append] = ACTIONS(3246), - [anon_sym_metadata] = ACTIONS(3246), - [anon_sym_move] = ACTIONS(3246), - [anon_sym_read] = ACTIONS(3246), - [anon_sym_workdir] = ACTIONS(3246), - [anon_sym_write] = ACTIONS(3246), - [anon_sym_from_json] = ACTIONS(3246), - [anon_sym_to_json] = ACTIONS(3246), - [anon_sym_to_string] = ACTIONS(3246), - [anon_sym_to_float] = ACTIONS(3246), - [anon_sym_bash] = ACTIONS(3246), - [anon_sym_fish] = ACTIONS(3246), - [anon_sym_raw] = ACTIONS(3246), - [anon_sym_sh] = ACTIONS(3246), - [anon_sym_zsh] = ACTIONS(3246), - [anon_sym_random] = ACTIONS(3246), - [anon_sym_random_boolean] = ACTIONS(3246), - [anon_sym_random_float] = ACTIONS(3246), - [anon_sym_random_integer] = ACTIONS(3246), - [anon_sym_columns] = ACTIONS(3246), - [anon_sym_rows] = ACTIONS(3246), - [anon_sym_reverse] = ACTIONS(3246), - }, - [958] = { - [sym_math_operator] = STATE(1198), - [sym_logic_operator] = STATE(1199), - [sym_identifier] = ACTIONS(3254), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3252), - [anon_sym_RBRACE] = ACTIONS(3252), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_LPAREN] = ACTIONS(3252), - [anon_sym_RPAREN] = ACTIONS(3252), - [anon_sym_COMMA] = ACTIONS(3252), - [sym_integer] = ACTIONS(3254), - [sym_float] = ACTIONS(3252), - [sym_string] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_RBRACK] = ACTIONS(3252), - [anon_sym_COLON] = ACTIONS(3252), - [anon_sym_DOT_DOT] = ACTIONS(3252), - [anon_sym_PLUS] = ACTIONS(3252), - [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_STAR] = ACTIONS(3252), - [anon_sym_SLASH] = ACTIONS(3252), - [anon_sym_PERCENT] = ACTIONS(3252), - [anon_sym_EQ_EQ] = ACTIONS(3252), - [anon_sym_BANG_EQ] = ACTIONS(3252), - [anon_sym_AMP_AMP] = ACTIONS(3252), - [anon_sym_PIPE_PIPE] = ACTIONS(3252), - [anon_sym_GT] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(3254), - [anon_sym_GT_EQ] = ACTIONS(3252), - [anon_sym_LT_EQ] = ACTIONS(3252), - [anon_sym_EQ_GT] = ACTIONS(3252), - [anon_sym_PIPE] = ACTIONS(3254), - [anon_sym_table] = ACTIONS(3254), - [anon_sym_assert] = ACTIONS(3254), - [anon_sym_assert_equal] = ACTIONS(3254), - [anon_sym_download] = ACTIONS(3254), - [anon_sym_help] = ACTIONS(3254), - [anon_sym_length] = ACTIONS(3254), - [anon_sym_output] = ACTIONS(3254), - [anon_sym_output_error] = ACTIONS(3254), - [anon_sym_type] = ACTIONS(3254), - [anon_sym_append] = ACTIONS(3254), - [anon_sym_metadata] = ACTIONS(3254), - [anon_sym_move] = ACTIONS(3254), - [anon_sym_read] = ACTIONS(3254), - [anon_sym_workdir] = ACTIONS(3254), - [anon_sym_write] = ACTIONS(3254), - [anon_sym_from_json] = ACTIONS(3254), - [anon_sym_to_json] = ACTIONS(3254), - [anon_sym_to_string] = ACTIONS(3254), - [anon_sym_to_float] = ACTIONS(3254), - [anon_sym_bash] = ACTIONS(3254), - [anon_sym_fish] = ACTIONS(3254), - [anon_sym_raw] = ACTIONS(3254), - [anon_sym_sh] = ACTIONS(3254), - [anon_sym_zsh] = ACTIONS(3254), - [anon_sym_random] = ACTIONS(3254), - [anon_sym_random_boolean] = ACTIONS(3254), - [anon_sym_random_float] = ACTIONS(3254), - [anon_sym_random_integer] = ACTIONS(3254), - [anon_sym_columns] = ACTIONS(3254), - [anon_sym_rows] = ACTIONS(3254), - [anon_sym_reverse] = ACTIONS(3254), - }, - [959] = { - [sym_math_operator] = STATE(1198), - [sym_logic_operator] = STATE(1199), - [sym_identifier] = ACTIONS(3242), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3240), - [anon_sym_SEMI] = ACTIONS(3240), - [anon_sym_LPAREN] = ACTIONS(3240), - [anon_sym_RPAREN] = ACTIONS(3240), - [anon_sym_COMMA] = ACTIONS(3240), - [sym_integer] = ACTIONS(3242), - [sym_float] = ACTIONS(3240), - [sym_string] = ACTIONS(3240), - [anon_sym_true] = ACTIONS(3242), - [anon_sym_false] = ACTIONS(3242), - [anon_sym_LBRACK] = ACTIONS(3240), - [anon_sym_RBRACK] = ACTIONS(3240), - [anon_sym_COLON] = ACTIONS(3681), - [anon_sym_DOT_DOT] = ACTIONS(3240), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_EQ_GT] = ACTIONS(3240), - [anon_sym_PIPE] = ACTIONS(3242), - [anon_sym_table] = ACTIONS(3242), - [anon_sym_assert] = ACTIONS(3242), - [anon_sym_assert_equal] = ACTIONS(3242), - [anon_sym_download] = ACTIONS(3242), - [anon_sym_help] = ACTIONS(3242), - [anon_sym_length] = ACTIONS(3242), - [anon_sym_output] = ACTIONS(3242), - [anon_sym_output_error] = ACTIONS(3242), - [anon_sym_type] = ACTIONS(3242), - [anon_sym_append] = ACTIONS(3242), - [anon_sym_metadata] = ACTIONS(3242), - [anon_sym_move] = ACTIONS(3242), - [anon_sym_read] = ACTIONS(3242), - [anon_sym_workdir] = ACTIONS(3242), - [anon_sym_write] = ACTIONS(3242), - [anon_sym_from_json] = ACTIONS(3242), - [anon_sym_to_json] = ACTIONS(3242), - [anon_sym_to_string] = ACTIONS(3242), - [anon_sym_to_float] = ACTIONS(3242), - [anon_sym_bash] = ACTIONS(3242), - [anon_sym_fish] = ACTIONS(3242), - [anon_sym_raw] = ACTIONS(3242), - [anon_sym_sh] = ACTIONS(3242), - [anon_sym_zsh] = ACTIONS(3242), - [anon_sym_random] = ACTIONS(3242), - [anon_sym_random_boolean] = ACTIONS(3242), - [anon_sym_random_float] = ACTIONS(3242), - [anon_sym_random_integer] = ACTIONS(3242), - [anon_sym_columns] = ACTIONS(3242), - [anon_sym_rows] = ACTIONS(3242), - [anon_sym_reverse] = ACTIONS(3242), - }, - [960] = { - [sym_math_operator] = STATE(1198), - [sym_logic_operator] = STATE(1199), - [sym_identifier] = ACTIONS(3250), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3248), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(3248), - [anon_sym_RPAREN] = ACTIONS(3248), - [anon_sym_COMMA] = ACTIONS(3248), - [sym_integer] = ACTIONS(3250), - [sym_float] = ACTIONS(3248), - [sym_string] = ACTIONS(3248), - [anon_sym_true] = ACTIONS(3250), - [anon_sym_false] = ACTIONS(3250), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_RBRACK] = ACTIONS(3248), - [anon_sym_COLON] = ACTIONS(3248), - [anon_sym_DOT_DOT] = ACTIONS(3683), - [anon_sym_PLUS] = ACTIONS(3248), - [anon_sym_DASH] = ACTIONS(3250), - [anon_sym_STAR] = ACTIONS(3248), - [anon_sym_SLASH] = ACTIONS(3248), - [anon_sym_PERCENT] = ACTIONS(3248), - [anon_sym_EQ_EQ] = ACTIONS(3248), - [anon_sym_BANG_EQ] = ACTIONS(3248), - [anon_sym_AMP_AMP] = ACTIONS(3248), - [anon_sym_PIPE_PIPE] = ACTIONS(3248), - [anon_sym_GT] = ACTIONS(3250), - [anon_sym_LT] = ACTIONS(3250), - [anon_sym_GT_EQ] = ACTIONS(3248), - [anon_sym_LT_EQ] = ACTIONS(3248), - [anon_sym_EQ_GT] = ACTIONS(3248), - [anon_sym_PIPE] = ACTIONS(3250), - [anon_sym_table] = ACTIONS(3250), - [anon_sym_assert] = ACTIONS(3250), - [anon_sym_assert_equal] = ACTIONS(3250), - [anon_sym_download] = ACTIONS(3250), - [anon_sym_help] = ACTIONS(3250), - [anon_sym_length] = ACTIONS(3250), - [anon_sym_output] = ACTIONS(3250), - [anon_sym_output_error] = ACTIONS(3250), - [anon_sym_type] = ACTIONS(3250), - [anon_sym_append] = ACTIONS(3250), - [anon_sym_metadata] = ACTIONS(3250), - [anon_sym_move] = ACTIONS(3250), - [anon_sym_read] = ACTIONS(3250), - [anon_sym_workdir] = ACTIONS(3250), - [anon_sym_write] = ACTIONS(3250), - [anon_sym_from_json] = ACTIONS(3250), - [anon_sym_to_json] = ACTIONS(3250), - [anon_sym_to_string] = ACTIONS(3250), - [anon_sym_to_float] = ACTIONS(3250), - [anon_sym_bash] = ACTIONS(3250), - [anon_sym_fish] = ACTIONS(3250), - [anon_sym_raw] = ACTIONS(3250), - [anon_sym_sh] = ACTIONS(3250), - [anon_sym_zsh] = ACTIONS(3250), - [anon_sym_random] = ACTIONS(3250), - [anon_sym_random_boolean] = ACTIONS(3250), - [anon_sym_random_float] = ACTIONS(3250), - [anon_sym_random_integer] = ACTIONS(3250), - [anon_sym_columns] = ACTIONS(3250), - [anon_sym_rows] = ACTIONS(3250), - [anon_sym_reverse] = ACTIONS(3250), - }, - [961] = { - [sym_math_operator] = STATE(1289), - [sym_logic_operator] = STATE(1290), - [sym_identifier] = ACTIONS(3264), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3262), - [anon_sym_SEMI] = ACTIONS(3262), - [anon_sym_LPAREN] = ACTIONS(3262), - [anon_sym_COMMA] = ACTIONS(3262), - [sym_integer] = ACTIONS(3264), - [sym_float] = ACTIONS(3262), - [sym_string] = ACTIONS(3262), - [anon_sym_true] = ACTIONS(3264), - [anon_sym_false] = ACTIONS(3264), - [anon_sym_LBRACK] = ACTIONS(3262), - [anon_sym_EQ] = ACTIONS(3264), - [anon_sym_COLON] = ACTIONS(3262), - [anon_sym_PLUS] = ACTIONS(3264), - [anon_sym_DASH] = ACTIONS(3264), - [anon_sym_STAR] = ACTIONS(3262), - [anon_sym_SLASH] = ACTIONS(3262), - [anon_sym_PERCENT] = ACTIONS(3262), - [anon_sym_EQ_EQ] = ACTIONS(3262), - [anon_sym_BANG_EQ] = ACTIONS(3262), - [anon_sym_AMP_AMP] = ACTIONS(3262), - [anon_sym_PIPE_PIPE] = ACTIONS(3262), - [anon_sym_GT] = ACTIONS(3264), - [anon_sym_LT] = ACTIONS(3264), - [anon_sym_GT_EQ] = ACTIONS(3262), - [anon_sym_LT_EQ] = ACTIONS(3262), - [anon_sym_PLUS_EQ] = ACTIONS(3262), - [anon_sym_DASH_EQ] = ACTIONS(3262), - [anon_sym_EQ_GT] = ACTIONS(3262), - [anon_sym_PIPE] = ACTIONS(3264), - [anon_sym_table] = ACTIONS(3264), - [anon_sym_assert] = ACTIONS(3264), - [anon_sym_assert_equal] = ACTIONS(3264), - [anon_sym_download] = ACTIONS(3264), - [anon_sym_help] = ACTIONS(3264), - [anon_sym_length] = ACTIONS(3264), - [anon_sym_output] = ACTIONS(3264), - [anon_sym_output_error] = ACTIONS(3264), - [anon_sym_type] = ACTIONS(3264), - [anon_sym_append] = ACTIONS(3264), - [anon_sym_metadata] = ACTIONS(3264), - [anon_sym_move] = ACTIONS(3264), - [anon_sym_read] = ACTIONS(3264), - [anon_sym_workdir] = ACTIONS(3264), - [anon_sym_write] = ACTIONS(3264), - [anon_sym_from_json] = ACTIONS(3264), - [anon_sym_to_json] = ACTIONS(3264), - [anon_sym_to_string] = ACTIONS(3264), - [anon_sym_to_float] = ACTIONS(3264), - [anon_sym_bash] = ACTIONS(3264), - [anon_sym_fish] = ACTIONS(3264), - [anon_sym_raw] = ACTIONS(3264), - [anon_sym_sh] = ACTIONS(3264), - [anon_sym_zsh] = ACTIONS(3264), - [anon_sym_random] = ACTIONS(3264), - [anon_sym_random_boolean] = ACTIONS(3264), - [anon_sym_random_float] = ACTIONS(3264), - [anon_sym_random_integer] = ACTIONS(3264), - [anon_sym_columns] = ACTIONS(3264), - [anon_sym_rows] = ACTIONS(3264), - [anon_sym_reverse] = ACTIONS(3264), - }, - [962] = { - [sym_math_operator] = STATE(1289), - [sym_logic_operator] = STATE(1290), - [sym_identifier] = ACTIONS(3254), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3252), - [anon_sym_RBRACE] = ACTIONS(3252), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_LPAREN] = ACTIONS(3252), - [anon_sym_COMMA] = ACTIONS(3252), - [sym_integer] = ACTIONS(3254), - [sym_float] = ACTIONS(3252), - [sym_string] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_EQ] = ACTIONS(3254), - [anon_sym_COLON] = ACTIONS(3252), - [anon_sym_PLUS] = ACTIONS(3254), - [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_STAR] = ACTIONS(3252), - [anon_sym_SLASH] = ACTIONS(3252), - [anon_sym_PERCENT] = ACTIONS(3252), - [anon_sym_EQ_EQ] = ACTIONS(3252), - [anon_sym_BANG_EQ] = ACTIONS(3252), - [anon_sym_AMP_AMP] = ACTIONS(3252), - [anon_sym_PIPE_PIPE] = ACTIONS(3252), - [anon_sym_GT] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(3254), - [anon_sym_GT_EQ] = ACTIONS(3252), - [anon_sym_LT_EQ] = ACTIONS(3252), - [anon_sym_PLUS_EQ] = ACTIONS(3252), - [anon_sym_DASH_EQ] = ACTIONS(3252), - [anon_sym_EQ_GT] = ACTIONS(3252), - [anon_sym_PIPE] = ACTIONS(3254), - [anon_sym_table] = ACTIONS(3254), - [anon_sym_assert] = ACTIONS(3254), - [anon_sym_assert_equal] = ACTIONS(3254), - [anon_sym_download] = ACTIONS(3254), - [anon_sym_help] = ACTIONS(3254), - [anon_sym_length] = ACTIONS(3254), - [anon_sym_output] = ACTIONS(3254), - [anon_sym_output_error] = ACTIONS(3254), - [anon_sym_type] = ACTIONS(3254), - [anon_sym_append] = ACTIONS(3254), - [anon_sym_metadata] = ACTIONS(3254), - [anon_sym_move] = ACTIONS(3254), - [anon_sym_read] = ACTIONS(3254), - [anon_sym_workdir] = ACTIONS(3254), - [anon_sym_write] = ACTIONS(3254), - [anon_sym_from_json] = ACTIONS(3254), - [anon_sym_to_json] = ACTIONS(3254), - [anon_sym_to_string] = ACTIONS(3254), - [anon_sym_to_float] = ACTIONS(3254), - [anon_sym_bash] = ACTIONS(3254), - [anon_sym_fish] = ACTIONS(3254), - [anon_sym_raw] = ACTIONS(3254), - [anon_sym_sh] = ACTIONS(3254), - [anon_sym_zsh] = ACTIONS(3254), - [anon_sym_random] = ACTIONS(3254), - [anon_sym_random_boolean] = ACTIONS(3254), - [anon_sym_random_float] = ACTIONS(3254), - [anon_sym_random_integer] = ACTIONS(3254), - [anon_sym_columns] = ACTIONS(3254), - [anon_sym_rows] = ACTIONS(3254), - [anon_sym_reverse] = ACTIONS(3254), - }, - [963] = { - [sym_math_operator] = STATE(1198), - [sym_logic_operator] = STATE(1199), - [sym_identifier] = ACTIONS(3264), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3262), - [anon_sym_SEMI] = ACTIONS(3262), - [anon_sym_LPAREN] = ACTIONS(3262), - [anon_sym_RPAREN] = ACTIONS(3262), - [anon_sym_COMMA] = ACTIONS(3262), - [sym_integer] = ACTIONS(3264), - [sym_float] = ACTIONS(3262), - [sym_string] = ACTIONS(3262), - [anon_sym_true] = ACTIONS(3264), - [anon_sym_false] = ACTIONS(3264), - [anon_sym_LBRACK] = ACTIONS(3262), - [anon_sym_RBRACK] = ACTIONS(3262), - [anon_sym_COLON] = ACTIONS(3262), - [anon_sym_DOT_DOT] = ACTIONS(3262), - [anon_sym_PLUS] = ACTIONS(3262), - [anon_sym_DASH] = ACTIONS(3264), - [anon_sym_STAR] = ACTIONS(3262), - [anon_sym_SLASH] = ACTIONS(3262), - [anon_sym_PERCENT] = ACTIONS(3262), - [anon_sym_EQ_EQ] = ACTIONS(3262), - [anon_sym_BANG_EQ] = ACTIONS(3262), - [anon_sym_AMP_AMP] = ACTIONS(3262), - [anon_sym_PIPE_PIPE] = ACTIONS(3262), - [anon_sym_GT] = ACTIONS(3264), - [anon_sym_LT] = ACTIONS(3264), - [anon_sym_GT_EQ] = ACTIONS(3262), - [anon_sym_LT_EQ] = ACTIONS(3262), - [anon_sym_EQ_GT] = ACTIONS(3262), - [anon_sym_PIPE] = ACTIONS(3264), - [anon_sym_table] = ACTIONS(3264), - [anon_sym_assert] = ACTIONS(3264), - [anon_sym_assert_equal] = ACTIONS(3264), - [anon_sym_download] = ACTIONS(3264), - [anon_sym_help] = ACTIONS(3264), - [anon_sym_length] = ACTIONS(3264), - [anon_sym_output] = ACTIONS(3264), - [anon_sym_output_error] = ACTIONS(3264), - [anon_sym_type] = ACTIONS(3264), - [anon_sym_append] = ACTIONS(3264), - [anon_sym_metadata] = ACTIONS(3264), - [anon_sym_move] = ACTIONS(3264), - [anon_sym_read] = ACTIONS(3264), - [anon_sym_workdir] = ACTIONS(3264), - [anon_sym_write] = ACTIONS(3264), - [anon_sym_from_json] = ACTIONS(3264), - [anon_sym_to_json] = ACTIONS(3264), - [anon_sym_to_string] = ACTIONS(3264), - [anon_sym_to_float] = ACTIONS(3264), - [anon_sym_bash] = ACTIONS(3264), - [anon_sym_fish] = ACTIONS(3264), - [anon_sym_raw] = ACTIONS(3264), - [anon_sym_sh] = ACTIONS(3264), - [anon_sym_zsh] = ACTIONS(3264), - [anon_sym_random] = ACTIONS(3264), - [anon_sym_random_boolean] = ACTIONS(3264), - [anon_sym_random_float] = ACTIONS(3264), - [anon_sym_random_integer] = ACTIONS(3264), - [anon_sym_columns] = ACTIONS(3264), - [anon_sym_rows] = ACTIONS(3264), - [anon_sym_reverse] = ACTIONS(3264), - }, - [964] = { - [sym_math_operator] = STATE(1289), - [sym_logic_operator] = STATE(1290), - [sym_identifier] = ACTIONS(3246), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_RBRACE] = ACTIONS(3244), - [anon_sym_SEMI] = ACTIONS(3244), - [anon_sym_LPAREN] = ACTIONS(3244), - [anon_sym_COMMA] = ACTIONS(3244), - [sym_integer] = ACTIONS(3246), - [sym_float] = ACTIONS(3244), - [sym_string] = ACTIONS(3244), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_LBRACK] = ACTIONS(3244), - [anon_sym_EQ] = ACTIONS(3246), - [anon_sym_COLON] = ACTIONS(3685), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_PLUS_EQ] = ACTIONS(3244), - [anon_sym_DASH_EQ] = ACTIONS(3244), - [anon_sym_EQ_GT] = ACTIONS(3244), - [anon_sym_PIPE] = ACTIONS(3246), - [anon_sym_table] = ACTIONS(3246), - [anon_sym_assert] = ACTIONS(3246), - [anon_sym_assert_equal] = ACTIONS(3246), - [anon_sym_download] = ACTIONS(3246), - [anon_sym_help] = ACTIONS(3246), - [anon_sym_length] = ACTIONS(3246), - [anon_sym_output] = ACTIONS(3246), - [anon_sym_output_error] = ACTIONS(3246), - [anon_sym_type] = ACTIONS(3246), - [anon_sym_append] = ACTIONS(3246), - [anon_sym_metadata] = ACTIONS(3246), - [anon_sym_move] = ACTIONS(3246), - [anon_sym_read] = ACTIONS(3246), - [anon_sym_workdir] = ACTIONS(3246), - [anon_sym_write] = ACTIONS(3246), - [anon_sym_from_json] = ACTIONS(3246), - [anon_sym_to_json] = ACTIONS(3246), - [anon_sym_to_string] = ACTIONS(3246), - [anon_sym_to_float] = ACTIONS(3246), - [anon_sym_bash] = ACTIONS(3246), - [anon_sym_fish] = ACTIONS(3246), - [anon_sym_raw] = ACTIONS(3246), - [anon_sym_sh] = ACTIONS(3246), - [anon_sym_zsh] = ACTIONS(3246), - [anon_sym_random] = ACTIONS(3246), - [anon_sym_random_boolean] = ACTIONS(3246), - [anon_sym_random_float] = ACTIONS(3246), - [anon_sym_random_integer] = ACTIONS(3246), - [anon_sym_columns] = ACTIONS(3246), - [anon_sym_rows] = ACTIONS(3246), - [anon_sym_reverse] = ACTIONS(3246), - }, - [965] = { - [sym_math_operator] = STATE(1289), - [sym_logic_operator] = STATE(1290), - [sym_identifier] = ACTIONS(3242), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3240), - [anon_sym_SEMI] = ACTIONS(3240), - [anon_sym_LPAREN] = ACTIONS(3240), - [anon_sym_COMMA] = ACTIONS(3240), - [sym_integer] = ACTIONS(3242), - [sym_float] = ACTIONS(3240), - [sym_string] = ACTIONS(3240), - [anon_sym_true] = ACTIONS(3242), - [anon_sym_false] = ACTIONS(3242), - [anon_sym_LBRACK] = ACTIONS(3240), - [anon_sym_EQ] = ACTIONS(3242), - [anon_sym_COLON] = ACTIONS(3685), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_PLUS_EQ] = ACTIONS(3240), - [anon_sym_DASH_EQ] = ACTIONS(3240), - [anon_sym_EQ_GT] = ACTIONS(3240), - [anon_sym_PIPE] = ACTIONS(3242), - [anon_sym_table] = ACTIONS(3242), - [anon_sym_assert] = ACTIONS(3242), - [anon_sym_assert_equal] = ACTIONS(3242), - [anon_sym_download] = ACTIONS(3242), - [anon_sym_help] = ACTIONS(3242), - [anon_sym_length] = ACTIONS(3242), - [anon_sym_output] = ACTIONS(3242), - [anon_sym_output_error] = ACTIONS(3242), - [anon_sym_type] = ACTIONS(3242), - [anon_sym_append] = ACTIONS(3242), - [anon_sym_metadata] = ACTIONS(3242), - [anon_sym_move] = ACTIONS(3242), - [anon_sym_read] = ACTIONS(3242), - [anon_sym_workdir] = ACTIONS(3242), - [anon_sym_write] = ACTIONS(3242), - [anon_sym_from_json] = ACTIONS(3242), - [anon_sym_to_json] = ACTIONS(3242), - [anon_sym_to_string] = ACTIONS(3242), - [anon_sym_to_float] = ACTIONS(3242), - [anon_sym_bash] = ACTIONS(3242), - [anon_sym_fish] = ACTIONS(3242), - [anon_sym_raw] = ACTIONS(3242), - [anon_sym_sh] = ACTIONS(3242), - [anon_sym_zsh] = ACTIONS(3242), - [anon_sym_random] = ACTIONS(3242), - [anon_sym_random_boolean] = ACTIONS(3242), - [anon_sym_random_float] = ACTIONS(3242), - [anon_sym_random_integer] = ACTIONS(3242), - [anon_sym_columns] = ACTIONS(3242), - [anon_sym_rows] = ACTIONS(3242), - [anon_sym_reverse] = ACTIONS(3242), - }, - [966] = { - [sym_math_operator] = STATE(1289), - [sym_logic_operator] = STATE(1290), - [sym_identifier] = ACTIONS(3235), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3233), - [anon_sym_RBRACE] = ACTIONS(3233), - [anon_sym_SEMI] = ACTIONS(3233), - [anon_sym_LPAREN] = ACTIONS(3233), - [anon_sym_COMMA] = ACTIONS(3678), - [sym_integer] = ACTIONS(3235), - [sym_float] = ACTIONS(3233), - [sym_string] = ACTIONS(3233), - [anon_sym_true] = ACTIONS(3235), - [anon_sym_false] = ACTIONS(3235), - [anon_sym_LBRACK] = ACTIONS(3233), - [anon_sym_EQ] = ACTIONS(3235), - [anon_sym_COLON] = ACTIONS(3685), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_PLUS_EQ] = ACTIONS(3233), - [anon_sym_DASH_EQ] = ACTIONS(3233), - [anon_sym_EQ_GT] = ACTIONS(3233), - [anon_sym_PIPE] = ACTIONS(3235), - [anon_sym_table] = ACTIONS(3235), - [anon_sym_assert] = ACTIONS(3235), - [anon_sym_assert_equal] = ACTIONS(3235), - [anon_sym_download] = ACTIONS(3235), - [anon_sym_help] = ACTIONS(3235), - [anon_sym_length] = ACTIONS(3235), - [anon_sym_output] = ACTIONS(3235), - [anon_sym_output_error] = ACTIONS(3235), - [anon_sym_type] = ACTIONS(3235), - [anon_sym_append] = ACTIONS(3235), - [anon_sym_metadata] = ACTIONS(3235), - [anon_sym_move] = ACTIONS(3235), - [anon_sym_read] = ACTIONS(3235), - [anon_sym_workdir] = ACTIONS(3235), - [anon_sym_write] = ACTIONS(3235), - [anon_sym_from_json] = ACTIONS(3235), - [anon_sym_to_json] = ACTIONS(3235), - [anon_sym_to_string] = ACTIONS(3235), - [anon_sym_to_float] = ACTIONS(3235), - [anon_sym_bash] = ACTIONS(3235), - [anon_sym_fish] = ACTIONS(3235), - [anon_sym_raw] = ACTIONS(3235), - [anon_sym_sh] = ACTIONS(3235), - [anon_sym_zsh] = ACTIONS(3235), - [anon_sym_random] = ACTIONS(3235), - [anon_sym_random_boolean] = ACTIONS(3235), - [anon_sym_random_float] = ACTIONS(3235), - [anon_sym_random_integer] = ACTIONS(3235), - [anon_sym_columns] = ACTIONS(3235), - [anon_sym_rows] = ACTIONS(3235), - [anon_sym_reverse] = ACTIONS(3235), - }, - [967] = { - [sym_math_operator] = STATE(1198), - [sym_logic_operator] = STATE(1199), - [sym_identifier] = ACTIONS(3250), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3248), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(3248), - [anon_sym_RPAREN] = ACTIONS(3248), - [anon_sym_COMMA] = ACTIONS(3248), - [sym_integer] = ACTIONS(3250), - [sym_float] = ACTIONS(3248), - [sym_string] = ACTIONS(3248), - [anon_sym_true] = ACTIONS(3250), - [anon_sym_false] = ACTIONS(3250), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_RBRACK] = ACTIONS(3248), - [anon_sym_COLON] = ACTIONS(3248), - [anon_sym_DOT_DOT] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3248), - [anon_sym_DASH] = ACTIONS(3250), - [anon_sym_STAR] = ACTIONS(3248), - [anon_sym_SLASH] = ACTIONS(3248), - [anon_sym_PERCENT] = ACTIONS(3248), - [anon_sym_EQ_EQ] = ACTIONS(3248), - [anon_sym_BANG_EQ] = ACTIONS(3248), - [anon_sym_AMP_AMP] = ACTIONS(3248), - [anon_sym_PIPE_PIPE] = ACTIONS(3248), - [anon_sym_GT] = ACTIONS(3250), - [anon_sym_LT] = ACTIONS(3250), - [anon_sym_GT_EQ] = ACTIONS(3248), - [anon_sym_LT_EQ] = ACTIONS(3248), - [anon_sym_EQ_GT] = ACTIONS(3248), - [anon_sym_PIPE] = ACTIONS(3250), - [anon_sym_table] = ACTIONS(3250), - [anon_sym_assert] = ACTIONS(3250), - [anon_sym_assert_equal] = ACTIONS(3250), - [anon_sym_download] = ACTIONS(3250), - [anon_sym_help] = ACTIONS(3250), - [anon_sym_length] = ACTIONS(3250), - [anon_sym_output] = ACTIONS(3250), - [anon_sym_output_error] = ACTIONS(3250), - [anon_sym_type] = ACTIONS(3250), - [anon_sym_append] = ACTIONS(3250), - [anon_sym_metadata] = ACTIONS(3250), - [anon_sym_move] = ACTIONS(3250), - [anon_sym_read] = ACTIONS(3250), - [anon_sym_workdir] = ACTIONS(3250), - [anon_sym_write] = ACTIONS(3250), - [anon_sym_from_json] = ACTIONS(3250), - [anon_sym_to_json] = ACTIONS(3250), - [anon_sym_to_string] = ACTIONS(3250), - [anon_sym_to_float] = ACTIONS(3250), - [anon_sym_bash] = ACTIONS(3250), - [anon_sym_fish] = ACTIONS(3250), - [anon_sym_raw] = ACTIONS(3250), - [anon_sym_sh] = ACTIONS(3250), - [anon_sym_zsh] = ACTIONS(3250), - [anon_sym_random] = ACTIONS(3250), - [anon_sym_random_boolean] = ACTIONS(3250), - [anon_sym_random_float] = ACTIONS(3250), - [anon_sym_random_integer] = ACTIONS(3250), - [anon_sym_columns] = ACTIONS(3250), - [anon_sym_rows] = ACTIONS(3250), - [anon_sym_reverse] = ACTIONS(3250), - }, - [968] = { - [sym_math_operator] = STATE(1198), - [sym_logic_operator] = STATE(1199), - [sym_identifier] = ACTIONS(3235), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3233), - [anon_sym_RBRACE] = ACTIONS(3233), - [anon_sym_SEMI] = ACTIONS(3233), - [anon_sym_LPAREN] = ACTIONS(3233), - [anon_sym_RPAREN] = ACTIONS(3233), - [anon_sym_COMMA] = ACTIONS(3687), - [sym_integer] = ACTIONS(3235), - [sym_float] = ACTIONS(3233), - [sym_string] = ACTIONS(3233), - [anon_sym_true] = ACTIONS(3235), - [anon_sym_false] = ACTIONS(3235), - [anon_sym_LBRACK] = ACTIONS(3233), - [anon_sym_RBRACK] = ACTIONS(3233), - [anon_sym_COLON] = ACTIONS(3681), - [anon_sym_DOT_DOT] = ACTIONS(3233), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_STAR] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(75), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_EQ_GT] = ACTIONS(3233), - [anon_sym_PIPE] = ACTIONS(3235), - [anon_sym_table] = ACTIONS(3235), - [anon_sym_assert] = ACTIONS(3235), - [anon_sym_assert_equal] = ACTIONS(3235), - [anon_sym_download] = ACTIONS(3235), - [anon_sym_help] = ACTIONS(3235), - [anon_sym_length] = ACTIONS(3235), - [anon_sym_output] = ACTIONS(3235), - [anon_sym_output_error] = ACTIONS(3235), - [anon_sym_type] = ACTIONS(3235), - [anon_sym_append] = ACTIONS(3235), - [anon_sym_metadata] = ACTIONS(3235), - [anon_sym_move] = ACTIONS(3235), - [anon_sym_read] = ACTIONS(3235), - [anon_sym_workdir] = ACTIONS(3235), - [anon_sym_write] = ACTIONS(3235), - [anon_sym_from_json] = ACTIONS(3235), - [anon_sym_to_json] = ACTIONS(3235), - [anon_sym_to_string] = ACTIONS(3235), - [anon_sym_to_float] = ACTIONS(3235), - [anon_sym_bash] = ACTIONS(3235), - [anon_sym_fish] = ACTIONS(3235), - [anon_sym_raw] = ACTIONS(3235), - [anon_sym_sh] = ACTIONS(3235), - [anon_sym_zsh] = ACTIONS(3235), - [anon_sym_random] = ACTIONS(3235), - [anon_sym_random_boolean] = ACTIONS(3235), - [anon_sym_random_float] = ACTIONS(3235), - [anon_sym_random_integer] = ACTIONS(3235), - [anon_sym_columns] = ACTIONS(3235), - [anon_sym_rows] = ACTIONS(3235), - [anon_sym_reverse] = ACTIONS(3235), + [sym_math_operator] = STATE(868), + [sym_logic_operator] = STATE(869), + [sym_identifier] = ACTIONS(2028), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2026), + [anon_sym_RBRACE] = ACTIONS(2026), + [anon_sym_SEMI] = ACTIONS(2026), + [anon_sym_LPAREN] = ACTIONS(2026), + [anon_sym_RPAREN] = ACTIONS(2026), + [anon_sym_COMMA] = ACTIONS(2026), + [sym_integer] = ACTIONS(2028), + [sym_float] = ACTIONS(2026), + [sym_string] = ACTIONS(2026), + [anon_sym_true] = ACTIONS(2028), + [anon_sym_false] = ACTIONS(2028), + [anon_sym_LBRACK] = ACTIONS(2026), + [anon_sym_RBRACK] = ACTIONS(2026), + [anon_sym_COLON] = ACTIONS(2026), + [anon_sym_DOT_DOT] = ACTIONS(2322), + [anon_sym_PLUS] = ACTIONS(2026), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(2026), + [anon_sym_SLASH] = ACTIONS(2026), + [anon_sym_PERCENT] = ACTIONS(2026), + [anon_sym_EQ_EQ] = ACTIONS(2026), + [anon_sym_BANG_EQ] = ACTIONS(2026), + [anon_sym_AMP_AMP] = ACTIONS(2026), + [anon_sym_PIPE_PIPE] = ACTIONS(2026), + [anon_sym_GT] = ACTIONS(2028), + [anon_sym_LT] = ACTIONS(2028), + [anon_sym_GT_EQ] = ACTIONS(2026), + [anon_sym_LT_EQ] = ACTIONS(2026), + [anon_sym_EQ_GT] = ACTIONS(2026), + [anon_sym_PIPE] = ACTIONS(2028), + [anon_sym_table] = ACTIONS(2028), + [anon_sym_assert] = ACTIONS(2028), + [anon_sym_assert_equal] = ACTIONS(2028), + [anon_sym_download] = ACTIONS(2028), + [anon_sym_help] = ACTIONS(2028), + [anon_sym_length] = ACTIONS(2028), + [anon_sym_output] = ACTIONS(2028), + [anon_sym_output_error] = ACTIONS(2028), + [anon_sym_type] = ACTIONS(2028), + [anon_sym_append] = ACTIONS(2028), + [anon_sym_metadata] = ACTIONS(2028), + [anon_sym_move] = ACTIONS(2028), + [anon_sym_read] = ACTIONS(2028), + [anon_sym_workdir] = ACTIONS(2028), + [anon_sym_write] = ACTIONS(2028), + [anon_sym_from_json] = ACTIONS(2028), + [anon_sym_to_json] = ACTIONS(2028), + [anon_sym_to_string] = ACTIONS(2028), + [anon_sym_to_float] = ACTIONS(2028), + [anon_sym_bash] = ACTIONS(2028), + [anon_sym_fish] = ACTIONS(2028), + [anon_sym_raw] = ACTIONS(2028), + [anon_sym_sh] = ACTIONS(2028), + [anon_sym_zsh] = ACTIONS(2028), + [anon_sym_random] = ACTIONS(2028), + [anon_sym_random_boolean] = ACTIONS(2028), + [anon_sym_random_float] = ACTIONS(2028), + [anon_sym_random_integer] = ACTIONS(2028), + [anon_sym_columns] = ACTIONS(2028), + [anon_sym_rows] = ACTIONS(2028), + [anon_sym_reverse] = ACTIONS(2028), }, }; @@ -95637,16 +56502,16 @@ static const uint16_t ts_small_parse_table[] = { [0] = 7, ACTIONS(3), 1, sym__comment, - ACTIONS(3690), 1, + ACTIONS(2324), 1, anon_sym_elseif, - ACTIONS(3692), 1, + ACTIONS(2326), 1, anon_sym_else, - STATE(1020), 1, + STATE(633), 1, sym_else, - STATE(999), 2, + STATE(572), 2, sym_else_if, aux_sym_if_else_repeat1, - ACTIONS(3229), 11, + ACTIONS(2009), 11, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -95658,7 +56523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_asyncfor, anon_sym_PIPE, - ACTIONS(3231), 47, + ACTIONS(2011), 47, sym_identifier, sym_integer, anon_sym_true, @@ -95706,20 +56571,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [79] = 3, + [79] = 7, ACTIONS(3), 1, sym__comment, - ACTIONS(3432), 22, + ACTIONS(2324), 1, + anon_sym_elseif, + ACTIONS(2328), 1, + anon_sym_else, + STATE(600), 1, + sym_else, + STATE(579), 2, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(2001), 11, + 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_asyncfor, + anon_sym_PIPE, + ACTIONS(2003), 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, + [158] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(892), 1, + sym_logic_operator, + STATE(893), 1, + sym_math_operator, + ACTIONS(2063), 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_DOT_DOT, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -95729,16 +56672,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, anon_sym_EQ_GT, - ACTIONS(3434), 41, + ACTIONS(2065), 39, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, - anon_sym_EQ, - anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_LT, @@ -95774,45 +56713,262 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [150] = 10, + [233] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2330), 1, + anon_sym_elseif, + ACTIONS(2332), 1, + anon_sym_else, + STATE(599), 1, + sym_else, + STATE(566), 2, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(2009), 11, + 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_asyncfor, + anon_sym_PIPE, + ACTIONS(2011), 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, + [312] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2324), 1, + anon_sym_elseif, + ACTIONS(2328), 1, + anon_sym_else, + STATE(599), 1, + sym_else, + STATE(562), 2, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(2009), 11, + 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_asyncfor, + anon_sym_PIPE, + ACTIONS(2011), 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, + [391] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2330), 1, + anon_sym_elseif, + ACTIONS(2332), 1, + anon_sym_else, + STATE(600), 1, + sym_else, + STATE(583), 2, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(2001), 11, + 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_asyncfor, + anon_sym_PIPE, + ACTIONS(2003), 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, + [470] = 11, ACTIONS(3), 1, sym__comment, ACTIONS(73), 1, anon_sym_DASH, - ACTIONS(3694), 1, + ACTIONS(2317), 1, + anon_sym_COMMA, + ACTIONS(2334), 1, anon_sym_COLON, - STATE(1399), 1, - sym_math_operator, - STATE(1400), 1, + STATE(892), 1, sym_logic_operator, - ACTIONS(79), 2, + STATE(893), 1, + sym_math_operator, + ACTIONS(77), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(75), 4, + ACTIONS(71), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(77), 6, + 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(3240), 11, + ACTIONS(2034), 10, 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(3242), 36, + ACTIONS(2036), 36, sym_identifier, sym_integer, anon_sym_true, @@ -95849,103 +57005,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [235] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(1399), 1, - sym_math_operator, - STATE(1400), 1, - sym_logic_operator, - ACTIONS(3252), 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(3254), 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, - [310] = 10, + [557] = 10, ACTIONS(3), 1, sym__comment, ACTIONS(73), 1, anon_sym_DASH, - ACTIONS(3694), 1, + ACTIONS(2334), 1, anon_sym_COLON, - STATE(1399), 1, - sym_math_operator, - STATE(1400), 1, + STATE(892), 1, sym_logic_operator, - ACTIONS(79), 2, + STATE(893), 1, + sym_math_operator, + ACTIONS(77), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(75), 4, + ACTIONS(71), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(77), 6, + 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(3244), 11, + ACTIONS(2075), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -95957,7 +57043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_EQ_GT, - ACTIONS(3246), 36, + ACTIONS(2077), 36, sym_identifier, sym_integer, anon_sym_true, @@ -95994,10 +57080,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [395] = 3, + [642] = 7, ACTIONS(3), 1, sym__comment, - ACTIONS(3359), 22, + ACTIONS(2330), 1, + anon_sym_elseif, + ACTIONS(2336), 1, + anon_sym_else, + STATE(640), 1, + sym_else, + STATE(583), 2, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(2001), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -96006,8 +57101,77 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_string, anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(2003), 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, + [721] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(892), 1, + sym_logic_operator, + STATE(893), 1, + sym_math_operator, + ACTIONS(2067), 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_DOT_DOT, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -96017,16 +57181,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, anon_sym_EQ_GT, - ACTIONS(3361), 41, + ACTIONS(2069), 39, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, - anon_sym_EQ, - anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_LT, @@ -96062,306 +57222,229 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [466] = 11, + [796] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2330), 1, + anon_sym_elseif, + ACTIONS(2336), 1, + anon_sym_else, + STATE(633), 1, + sym_else, + STATE(569), 2, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(2009), 11, + 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_asyncfor, + anon_sym_PIPE, + ACTIONS(2011), 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, + [875] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2324), 1, + anon_sym_elseif, + ACTIONS(2326), 1, + anon_sym_else, + STATE(640), 1, + sym_else, + STATE(579), 2, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(2001), 11, + 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_asyncfor, + anon_sym_PIPE, + ACTIONS(2003), 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, + [954] = 10, ACTIONS(3), 1, sym__comment, ACTIONS(73), 1, anon_sym_DASH, - ACTIONS(3687), 1, - anon_sym_COMMA, - ACTIONS(3694), 1, + ACTIONS(2334), 1, anon_sym_COLON, - STATE(1399), 1, - sym_math_operator, - STATE(1400), 1, + STATE(892), 1, sym_logic_operator, - ACTIONS(79), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(75), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(77), 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(3233), 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(3235), 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, - [553] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3696), 1, - anon_sym_elseif, - ACTIONS(3698), 1, - anon_sym_else, - STATE(1058), 1, - sym_else, - STATE(998), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(3229), 11, - 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_asyncfor, - anon_sym_PIPE, - ACTIONS(3231), 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, - [632] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3690), 1, - anon_sym_elseif, - ACTIONS(3700), 1, - anon_sym_else, - STATE(1058), 1, - sym_else, - STATE(999), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(3229), 11, - 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_asyncfor, - anon_sym_PIPE, - ACTIONS(3231), 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, - [711] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3690), 1, - anon_sym_elseif, - ACTIONS(3692), 1, - anon_sym_else, - STATE(1013), 1, - sym_else, - STATE(969), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(3219), 11, - 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_asyncfor, - anon_sym_PIPE, - ACTIONS(3221), 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, - [790] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(1399), 1, + STATE(893), 1, sym_math_operator, - STATE(1400), 1, - sym_logic_operator, - ACTIONS(3262), 22, + 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(2079), 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(2081), 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, + [1039] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2191), 23, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -96373,6 +57456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -96384,7 +57468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, - ACTIONS(3264), 39, + ACTIONS(2193), 39, sym_identifier, sym_integer, anon_sym_true, @@ -96424,19 +57508,283 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [865] = 7, + [1109] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(3690), 1, + ACTIONS(1361), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_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(1384), 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, + [1179] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2152), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_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(2154), 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, + [1249] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2203), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_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(2205), 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, + [1319] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2148), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_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(2150), 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, + [1389] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2338), 1, anon_sym_elseif, - ACTIONS(3700), 1, - anon_sym_else, - STATE(1067), 1, - sym_else, - STATE(977), 2, + STATE(579), 2, sym_else_if, aux_sym_if_else_repeat1, - ACTIONS(3219), 11, + ACTIONS(2019), 11, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -96448,1240 +57796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_asyncfor, anon_sym_PIPE, - ACTIONS(3221), 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, - [944] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3409), 22, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - ACTIONS(3411), 41, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_PLUS, - 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, - [1015] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3383), 22, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - ACTIONS(3385), 41, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_PLUS, - 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, - [1086] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3696), 1, - anon_sym_elseif, - ACTIONS(3698), 1, - anon_sym_else, - STATE(1067), 1, - sym_else, - STATE(976), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(3219), 11, - 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_asyncfor, - anon_sym_PIPE, - ACTIONS(3221), 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, - [1165] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3405), 22, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - ACTIONS(3407), 41, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_PLUS, - 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, - [1236] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3696), 1, - anon_sym_elseif, - ACTIONS(3702), 1, - anon_sym_else, - STATE(1013), 1, - sym_else, - STATE(988), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(3219), 11, - 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_asyncfor, - anon_sym_PIPE, - ACTIONS(3221), 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, - [1315] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3401), 22, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - ACTIONS(3403), 41, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_PLUS, - 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, - [1386] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3333), 22, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - ACTIONS(3335), 41, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_PLUS, - 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, - [1457] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3696), 1, - anon_sym_elseif, - ACTIONS(3702), 1, - anon_sym_else, - STATE(1020), 1, - sym_else, - STATE(998), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(3229), 11, - 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_asyncfor, - anon_sym_PIPE, - ACTIONS(3231), 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, - [1536] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3351), 22, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - ACTIONS(3353), 41, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_PLUS, - 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, - [1607] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3389), 22, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - ACTIONS(3391), 41, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_PLUS, - 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, - [1678] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3355), 22, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - ACTIONS(3357), 41, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_PLUS, - 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, - [1749] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(2518), 22, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - ACTIONS(2541), 41, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_PLUS, - 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, - [1820] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3371), 22, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - ACTIONS(3373), 41, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_PLUS, - 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, - [1891] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3375), 22, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - ACTIONS(3377), 41, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_PLUS, - 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, - [1962] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3359), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_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(3361), 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, - [2032] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3409), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_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(3411), 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, - [2102] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(2518), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_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(2541), 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, - [2172] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3704), 1, - anon_sym_elseif, - STATE(998), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(3268), 11, - 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_asyncfor, - anon_sym_PIPE, - ACTIONS(3270), 48, + ACTIONS(2021), 48, sym_identifier, sym_integer, anon_sym_true, @@ -97730,330 +57845,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [2246] = 5, + [1463] = 20, ACTIONS(3), 1, sym__comment, - ACTIONS(3707), 1, - anon_sym_elseif, - STATE(999), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(3268), 11, - 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_asyncfor, + ACTIONS(47), 1, anon_sym_PIPE, - ACTIONS(3270), 48, + ACTIONS(1339), 1, 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, - [2320] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3355), 23, + ACTIONS(1341), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(1343), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_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(3357), 39, - sym_identifier, + ACTIONS(1345), 1, 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, - [2390] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3351), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_float, - sym_string, + ACTIONS(1351), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - 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, + ACTIONS(1355), 1, anon_sym_EQ_GT, - ACTIONS(3353), 39, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE, + ACTIONS(1357), 1, 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, - [2460] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3401), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_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(3403), 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, - [2530] = 20, - ACTIONS(3), 1, - sym__comment, - ACTIONS(2483), 1, - sym_identifier, - ACTIONS(2486), 1, - anon_sym_LBRACE, - ACTIONS(2489), 1, - anon_sym_LPAREN, - ACTIONS(2492), 1, - sym_integer, - ACTIONS(2501), 1, - anon_sym_LBRACK, - ACTIONS(2506), 1, - anon_sym_EQ_GT, - ACTIONS(2512), 1, - anon_sym_table, - ACTIONS(3616), 1, - anon_sym_PIPE, - STATE(928), 1, + STATE(550), 1, sym__built_in_function_name, - STATE(1003), 1, + STATE(582), 1, aux_sym_match_repeat1, - STATE(1605), 1, + STATE(994), 1, sym_expression, - STATE(1837), 1, + STATE(1086), 1, sym_identifier_list, - ACTIONS(2495), 2, + ACTIONS(1347), 2, sym_float, sym_string, - ACTIONS(2498), 2, + ACTIONS(1349), 2, anon_sym_true, anon_sym_false, - STATE(1533), 2, + STATE(934), 2, sym__context_defined_function, sym_built_in_function, - ACTIONS(2481), 3, + ACTIONS(1337), 3, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, - STATE(1550), 5, + STATE(936), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(1539), 6, + STATE(919), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, - ACTIONS(2515), 30, + ACTIONS(1359), 30, anon_sym_assert, anon_sym_assert_equal, anon_sym_download, @@ -98084,10 +57929,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [2634] = 3, + [1567] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(3371), 23, + ACTIONS(2219), 23, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -98111,7 +57956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, - ACTIONS(3373), 39, + ACTIONS(2221), 39, sym_identifier, sym_integer, anon_sym_true, @@ -98151,60 +57996,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [2704] = 20, + [1637] = 20, ACTIONS(3), 1, sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2451), 1, + ACTIONS(1400), 1, sym_identifier, - ACTIONS(2453), 1, + ACTIONS(1403), 1, anon_sym_LBRACE, - ACTIONS(2455), 1, + ACTIONS(1406), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(1409), 1, sym_integer, - ACTIONS(2463), 1, + ACTIONS(1418), 1, anon_sym_LBRACK, - ACTIONS(2467), 1, + ACTIONS(1423), 1, anon_sym_EQ_GT, - ACTIONS(2469), 1, + ACTIONS(1429), 1, anon_sym_table, - STATE(928), 1, + ACTIONS(2275), 1, + anon_sym_PIPE, + STATE(550), 1, sym__built_in_function_name, - STATE(1003), 1, + STATE(582), 1, aux_sym_match_repeat1, - STATE(1605), 1, + STATE(994), 1, sym_expression, - STATE(1837), 1, + STATE(1086), 1, sym_identifier_list, - ACTIONS(2459), 2, + ACTIONS(1412), 2, sym_float, sym_string, - ACTIONS(2461), 2, + ACTIONS(1415), 2, anon_sym_true, anon_sym_false, - STATE(1533), 2, + STATE(934), 2, sym__context_defined_function, sym_built_in_function, - ACTIONS(2449), 3, + ACTIONS(1398), 3, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, - STATE(1550), 5, + STATE(936), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(1539), 6, + STATE(919), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, - ACTIONS(2471), 30, + ACTIONS(1432), 30, anon_sym_assert, anon_sym_assert_equal, anon_sym_download, @@ -98235,10 +58080,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [2808] = 3, + [1741] = 5, ACTIONS(3), 1, sym__comment, - ACTIONS(3432), 23, + ACTIONS(2341), 1, + anon_sym_elseif, + STATE(583), 2, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(2019), 11, + 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_asyncfor, + anon_sym_PIPE, + ACTIONS(2021), 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, + [1815] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2199), 23, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -98262,7 +58176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, - ACTIONS(3434), 39, + ACTIONS(2201), 39, sym_identifier, sym_integer, anon_sym_true, @@ -98302,10 +58216,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [2878] = 3, + [1885] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(3375), 23, + ACTIONS(2215), 23, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -98329,7 +58243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, - ACTIONS(3377), 39, + ACTIONS(2217), 39, sym_identifier, sym_integer, anon_sym_true, @@ -98369,10 +58283,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [2948] = 3, + [1955] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(3383), 23, + ACTIONS(2227), 23, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -98396,7 +58310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, - ACTIONS(3385), 39, + ACTIONS(2229), 39, sym_identifier, sym_integer, anon_sym_true, @@ -98436,10 +58350,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [3018] = 3, + [2025] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(3389), 23, + ACTIONS(2207), 23, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -98463,7 +58377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, - ACTIONS(3391), 39, + ACTIONS(2209), 39, sym_identifier, sym_integer, anon_sym_true, @@ -98503,10 +58417,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [3088] = 3, + [2095] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(3405), 23, + ACTIONS(2267), 23, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -98530,7 +58444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, - ACTIONS(3407), 39, + ACTIONS(2269), 39, sym_identifier, sym_integer, anon_sym_true, @@ -98570,10 +58484,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [3158] = 3, + [2165] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(3333), 23, + ACTIONS(2177), 23, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -98597,7 +58511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, - ACTIONS(3335), 39, + ACTIONS(2179), 39, sym_identifier, sym_integer, anon_sym_true, @@ -98637,10 +58551,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [3228] = 3, + [2235] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(3367), 13, + ACTIONS(2271), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_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(2273), 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, + [2305] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2195), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -98654,7 +58635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_asyncfor, anon_sym_PIPE, - ACTIONS(3369), 48, + ACTIONS(2197), 48, sym_identifier, sym_integer, anon_sym_true, @@ -98703,10 +58684,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [3297] = 3, + [2374] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(3229), 13, + ACTIONS(2223), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -98720,7 +58701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_asyncfor, anon_sym_PIPE, - ACTIONS(3231), 48, + ACTIONS(2225), 48, sym_identifier, sym_integer, anon_sym_true, @@ -98769,10 +58750,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [3366] = 3, + [2443] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(3296), 13, + ACTIONS(2235), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -98786,7 +58767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_asyncfor, anon_sym_PIPE, - ACTIONS(3298), 48, + ACTIONS(2237), 48, sym_identifier, sym_integer, anon_sym_true, @@ -98835,1026 +58816,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [3435] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3341), 13, - 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_asyncfor, - anon_sym_PIPE, - ACTIONS(3343), 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, - [3504] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3337), 13, - 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_asyncfor, - anon_sym_PIPE, - ACTIONS(3339), 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, - [3573] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3329), 13, - 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_asyncfor, - anon_sym_PIPE, - ACTIONS(3331), 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, - [3642] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3423), 13, - 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_asyncfor, - anon_sym_PIPE, - ACTIONS(3425), 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, - [3711] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3379), 13, - 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_asyncfor, - anon_sym_PIPE, - ACTIONS(3381), 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, - [3780] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3325), 13, - 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_asyncfor, - anon_sym_PIPE, - ACTIONS(3327), 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, - [3849] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3317), 13, - 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_asyncfor, - anon_sym_PIPE, - ACTIONS(3319), 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, - [3918] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3393), 13, - 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_asyncfor, - anon_sym_PIPE, - ACTIONS(3395), 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, - [3987] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3626), 1, - anon_sym_SEMI, - ACTIONS(3275), 12, - 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_asyncfor, - anon_sym_PIPE, - ACTIONS(3277), 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, - [4058] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3415), 13, - 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_asyncfor, - anon_sym_PIPE, - ACTIONS(3417), 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, - [4127] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3321), 13, - 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_asyncfor, - anon_sym_PIPE, - ACTIONS(3323), 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, - [4196] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3419), 13, - 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_asyncfor, - anon_sym_PIPE, - ACTIONS(3421), 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, - [4265] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3303), 13, - 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_asyncfor, - anon_sym_PIPE, - ACTIONS(3305), 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, - [4334] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3432), 13, - 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_asyncfor, - anon_sym_PIPE, - ACTIONS(3434), 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, - [4403] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3307), 13, - 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_asyncfor, - anon_sym_PIPE, - ACTIONS(3309), 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, - [4472] = 11, + [2512] = 11, ACTIONS(3), 1, sym__comment, ACTIONS(73), 1, anon_sym_DASH, - ACTIONS(3681), 1, + ACTIONS(2320), 1, anon_sym_COLON, - ACTIONS(3710), 1, + ACTIONS(2344), 1, anon_sym_COMMA, - STATE(1198), 1, + STATE(868), 1, sym_math_operator, - STATE(1199), 1, + STATE(869), 1, sym_logic_operator, - ACTIONS(79), 2, + ACTIONS(77), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(75), 4, + ACTIONS(71), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(77), 6, + 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(3233), 8, + ACTIONS(2034), 8, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99863,7 +58853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT_DOT, anon_sym_EQ_GT, - ACTIONS(3235), 36, + ACTIONS(2036), 36, sym_identifier, sym_integer, anon_sym_true, @@ -99900,10 +58890,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [4557] = 3, + [2597] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(3397), 13, + ACTIONS(2187), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -99917,7 +58907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_asyncfor, anon_sym_PIPE, - ACTIONS(3399), 48, + ACTIONS(2189), 48, sym_identifier, sym_integer, anon_sym_true, @@ -99966,10 +58956,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [4626] = 3, + [2666] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(3363), 13, + ACTIONS(2259), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -99983,7 +58973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_asyncfor, anon_sym_PIPE, - ACTIONS(3365), 48, + ACTIONS(2261), 48, sym_identifier, sym_integer, anon_sym_true, @@ -100032,58 +59022,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [4695] = 20, + [2735] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3503), 1, + ACTIONS(2263), 13, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(3505), 1, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3507), 1, - sym_integer, - ACTIONS(3513), 1, - anon_sym_LBRACK, - ACTIONS(3515), 1, - anon_sym_EQ_GT, - ACTIONS(3517), 1, - anon_sym_table, - ACTIONS(3576), 1, - sym_identifier, - ACTIONS(3712), 1, - anon_sym_RBRACK, - STATE(780), 1, - sym__built_in_function_name, - STATE(1039), 1, - sym_expression, - STATE(1048), 1, - aux_sym_list_repeat1, - STATE(1980), 1, - sym_identifier_list, - ACTIONS(3509), 2, + anon_sym_COMMA, sym_float, sym_string, - ACTIONS(3511), 2, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(2265), 48, + sym_identifier, + sym_integer, anon_sym_true, anon_sym_false, - STATE(1009), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(996), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1002), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3145), 30, + 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, @@ -100114,58 +59088,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [4797] = 20, + [2804] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3503), 1, + ACTIONS(2283), 1, + anon_sym_SEMI, + ACTIONS(2041), 12, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(3505), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3507), 1, - sym_integer, - ACTIONS(3513), 1, - anon_sym_LBRACK, - ACTIONS(3515), 1, - anon_sym_EQ_GT, - ACTIONS(3517), 1, - anon_sym_table, - ACTIONS(3576), 1, - sym_identifier, - ACTIONS(3714), 1, - anon_sym_RBRACK, - STATE(780), 1, - sym__built_in_function_name, - STATE(1039), 1, - sym_expression, - STATE(1047), 1, - aux_sym_list_repeat1, - STATE(1980), 1, - sym_identifier_list, - ACTIONS(3509), 2, + anon_sym_COMMA, sym_float, sym_string, - ACTIONS(3511), 2, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(2043), 48, + sym_identifier, + sym_integer, anon_sym_true, anon_sym_false, - STATE(1009), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(996), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1002), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3145), 30, + 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, @@ -100196,58 +59155,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [4899] = 20, + [2875] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3503), 1, + ACTIONS(2001), 13, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(3505), 1, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3507), 1, - sym_integer, - ACTIONS(3513), 1, - anon_sym_LBRACK, - ACTIONS(3515), 1, - anon_sym_EQ_GT, - ACTIONS(3517), 1, - anon_sym_table, - ACTIONS(3576), 1, - sym_identifier, - ACTIONS(3716), 1, - anon_sym_RBRACK, - STATE(780), 1, - sym__built_in_function_name, - STATE(1036), 1, - aux_sym_list_repeat1, - STATE(1039), 1, - sym_expression, - STATE(1980), 1, - sym_identifier_list, - ACTIONS(3509), 2, + anon_sym_COMMA, sym_float, sym_string, - ACTIONS(3511), 2, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(2003), 48, + sym_identifier, + sym_integer, anon_sym_true, anon_sym_false, - STATE(1009), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(996), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1002), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3145), 30, + 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, @@ -100278,58 +59221,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [5001] = 20, + [2944] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3503), 1, + ACTIONS(2249), 13, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(3505), 1, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3507), 1, - sym_integer, - ACTIONS(3513), 1, - anon_sym_LBRACK, - ACTIONS(3515), 1, - anon_sym_EQ_GT, - ACTIONS(3517), 1, - anon_sym_table, - ACTIONS(3576), 1, - sym_identifier, - ACTIONS(3718), 1, - anon_sym_RBRACK, - STATE(780), 1, - sym__built_in_function_name, - STATE(1039), 1, - sym_expression, - STATE(1047), 1, - aux_sym_list_repeat1, - STATE(1980), 1, - sym_identifier_list, - ACTIONS(3509), 2, + anon_sym_COMMA, sym_float, sym_string, - ACTIONS(3511), 2, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(2251), 48, + sym_identifier, + sym_integer, anon_sym_true, anon_sym_false, - STATE(1009), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(996), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1002), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3145), 30, + 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, @@ -100360,58 +59287,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [5103] = 20, + [3013] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3503), 1, + ACTIONS(2253), 13, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(3505), 1, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3507), 1, - sym_integer, - ACTIONS(3513), 1, - anon_sym_LBRACK, - ACTIONS(3515), 1, - anon_sym_EQ_GT, - ACTIONS(3517), 1, - anon_sym_table, - ACTIONS(3576), 1, - sym_identifier, - ACTIONS(3720), 1, - anon_sym_RBRACK, - STATE(780), 1, - sym__built_in_function_name, - STATE(1039), 1, - sym_expression, - STATE(1044), 1, - aux_sym_list_repeat1, - STATE(1980), 1, - sym_identifier_list, - ACTIONS(3509), 2, + anon_sym_COMMA, sym_float, sym_string, - ACTIONS(3511), 2, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(2255), 48, + sym_identifier, + sym_integer, anon_sym_true, anon_sym_false, - STATE(1009), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(996), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1002), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3145), 30, + 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, @@ -100442,58 +59353,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [5205] = 20, + [3082] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3503), 1, + ACTIONS(2132), 13, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(3505), 1, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3507), 1, - sym_integer, - ACTIONS(3513), 1, - anon_sym_LBRACK, - ACTIONS(3515), 1, - anon_sym_EQ_GT, - ACTIONS(3517), 1, - anon_sym_table, - ACTIONS(3576), 1, - sym_identifier, - ACTIONS(3722), 1, - anon_sym_RBRACK, - STATE(780), 1, - sym__built_in_function_name, - STATE(1039), 1, - sym_expression, - STATE(1043), 1, - aux_sym_list_repeat1, - STATE(1980), 1, - sym_identifier_list, - ACTIONS(3509), 2, + anon_sym_COMMA, sym_float, sym_string, - ACTIONS(3511), 2, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(2134), 48, + sym_identifier, + sym_integer, anon_sym_true, anon_sym_false, - STATE(1009), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(996), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1002), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3145), 30, + 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, @@ -100524,35 +59419,793 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [5307] = 11, + [3151] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2144), 13, + 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_asyncfor, + anon_sym_PIPE, + ACTIONS(2146), 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, + [3220] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2140), 13, + 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_asyncfor, + anon_sym_PIPE, + ACTIONS(2142), 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, + [3289] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2239), 13, + 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_asyncfor, + anon_sym_PIPE, + ACTIONS(2241), 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, + [3358] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2245), 13, + 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_asyncfor, + anon_sym_PIPE, + ACTIONS(2247), 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, + [3427] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2136), 13, + 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_asyncfor, + anon_sym_PIPE, + ACTIONS(2138), 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, + [3496] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2152), 13, + 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_asyncfor, + anon_sym_PIPE, + ACTIONS(2154), 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, + [3565] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2183), 13, + 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_asyncfor, + anon_sym_PIPE, + ACTIONS(2185), 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, + [3634] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2173), 13, + 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_asyncfor, + anon_sym_PIPE, + ACTIONS(2175), 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, + [3703] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2231), 13, + 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_asyncfor, + anon_sym_PIPE, + ACTIONS(2233), 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, + [3772] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2047), 1, + anon_sym_LBRACE, + ACTIONS(2049), 1, + anon_sym_LPAREN, + ACTIONS(2051), 1, + sym_integer, + ACTIONS(2057), 1, + anon_sym_LBRACK, + ACTIONS(2059), 1, + anon_sym_EQ_GT, + ACTIONS(2061), 1, + anon_sym_table, + ACTIONS(2089), 1, + sym_identifier, + ACTIONS(2346), 1, + anon_sym_RBRACK, + STATE(429), 1, + sym__built_in_function_name, + STATE(614), 1, + sym_expression, + STATE(621), 1, + aux_sym_list_repeat1, + STATE(1193), 1, + sym_identifier_list, + ACTIONS(2053), 2, + sym_float, + sym_string, + ACTIONS(2055), 2, + anon_sym_true, + anon_sym_false, + STATE(587), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(586), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(585), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1927), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [3874] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2047), 1, + anon_sym_LBRACE, + ACTIONS(2049), 1, + anon_sym_LPAREN, + ACTIONS(2051), 1, + sym_integer, + ACTIONS(2057), 1, + anon_sym_LBRACK, + ACTIONS(2059), 1, + anon_sym_EQ_GT, + ACTIONS(2061), 1, + anon_sym_table, + ACTIONS(2089), 1, + sym_identifier, + ACTIONS(2348), 1, + anon_sym_RBRACK, + STATE(429), 1, + sym__built_in_function_name, + STATE(614), 1, + sym_expression, + STATE(621), 1, + aux_sym_list_repeat1, + STATE(1193), 1, + sym_identifier_list, + ACTIONS(2053), 2, + sym_float, + sym_string, + ACTIONS(2055), 2, + anon_sym_true, + anon_sym_false, + STATE(587), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(586), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(585), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1927), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [3976] = 11, ACTIONS(3), 1, sym__comment, ACTIONS(73), 1, anon_sym_DASH, - ACTIONS(3694), 1, + ACTIONS(2334), 1, anon_sym_COLON, - ACTIONS(3728), 1, + ACTIONS(2354), 1, anon_sym_COMMA, - STATE(1399), 1, - sym_math_operator, - STATE(1400), 1, + STATE(892), 1, sym_logic_operator, - ACTIONS(79), 2, + STATE(893), 1, + sym_math_operator, + ACTIONS(77), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(75), 4, + ACTIONS(71), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(77), 6, + 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(3726), 7, + ACTIONS(2352), 7, anon_sym_LBRACE, anon_sym_LPAREN, sym_float, @@ -100560,7 +60213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_EQ_GT, - ACTIONS(3724), 36, + ACTIONS(2350), 36, sym_identifier, sym_integer, anon_sym_true, @@ -100597,58 +60250,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [5391] = 20, + [4060] = 20, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, - ACTIONS(3503), 1, + ACTIONS(2047), 1, anon_sym_LBRACE, - ACTIONS(3505), 1, + ACTIONS(2049), 1, anon_sym_LPAREN, - ACTIONS(3507), 1, + ACTIONS(2051), 1, sym_integer, - ACTIONS(3513), 1, + ACTIONS(2057), 1, anon_sym_LBRACK, - ACTIONS(3515), 1, + ACTIONS(2059), 1, anon_sym_EQ_GT, - ACTIONS(3517), 1, + ACTIONS(2061), 1, anon_sym_table, - ACTIONS(3576), 1, + ACTIONS(2089), 1, sym_identifier, - ACTIONS(3730), 1, + ACTIONS(2356), 1, anon_sym_RBRACK, - STATE(780), 1, + STATE(429), 1, sym__built_in_function_name, - STATE(1039), 1, + STATE(614), 1, sym_expression, - STATE(1047), 1, + STATE(621), 1, aux_sym_list_repeat1, - STATE(1980), 1, + STATE(1193), 1, sym_identifier_list, - ACTIONS(3509), 2, + ACTIONS(2053), 2, sym_float, sym_string, - ACTIONS(3511), 2, + ACTIONS(2055), 2, anon_sym_true, anon_sym_false, - STATE(1009), 2, + STATE(587), 2, sym__context_defined_function, sym_built_in_function, - STATE(996), 5, + STATE(586), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(1002), 6, + STATE(585), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, - ACTIONS(3145), 30, + ACTIONS(1927), 30, anon_sym_assert, anon_sym_assert_equal, anon_sym_download, @@ -100679,58 +60332,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [5493] = 20, + [4162] = 20, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, - ACTIONS(3503), 1, + ACTIONS(2047), 1, anon_sym_LBRACE, - ACTIONS(3505), 1, + ACTIONS(2049), 1, anon_sym_LPAREN, - ACTIONS(3507), 1, + ACTIONS(2051), 1, sym_integer, - ACTIONS(3513), 1, + ACTIONS(2057), 1, anon_sym_LBRACK, - ACTIONS(3515), 1, + ACTIONS(2059), 1, anon_sym_EQ_GT, - ACTIONS(3517), 1, + ACTIONS(2061), 1, anon_sym_table, - ACTIONS(3576), 1, + ACTIONS(2089), 1, sym_identifier, - ACTIONS(3732), 1, + ACTIONS(2358), 1, anon_sym_RBRACK, - STATE(780), 1, + STATE(429), 1, sym__built_in_function_name, - STATE(1034), 1, - aux_sym_list_repeat1, - STATE(1039), 1, + STATE(614), 1, sym_expression, - STATE(1980), 1, + STATE(617), 1, + aux_sym_list_repeat1, + STATE(1193), 1, sym_identifier_list, - ACTIONS(3509), 2, + ACTIONS(2053), 2, sym_float, sym_string, - ACTIONS(3511), 2, + ACTIONS(2055), 2, anon_sym_true, anon_sym_false, - STATE(1009), 2, + STATE(587), 2, sym__context_defined_function, sym_built_in_function, - STATE(996), 5, + STATE(586), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(1002), 6, + STATE(585), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, - ACTIONS(3145), 30, + ACTIONS(1927), 30, anon_sym_assert, anon_sym_assert_equal, anon_sym_download, @@ -100761,35 +60414,445 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [5595] = 11, + [4264] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2047), 1, + anon_sym_LBRACE, + ACTIONS(2049), 1, + anon_sym_LPAREN, + ACTIONS(2051), 1, + sym_integer, + ACTIONS(2057), 1, + anon_sym_LBRACK, + ACTIONS(2059), 1, + anon_sym_EQ_GT, + ACTIONS(2061), 1, + anon_sym_table, + ACTIONS(2089), 1, + sym_identifier, + ACTIONS(2360), 1, + anon_sym_RBRACK, + STATE(429), 1, + sym__built_in_function_name, + STATE(614), 1, + sym_expression, + STATE(621), 1, + aux_sym_list_repeat1, + STATE(1193), 1, + sym_identifier_list, + ACTIONS(2053), 2, + sym_float, + sym_string, + ACTIONS(2055), 2, + anon_sym_true, + anon_sym_false, + STATE(587), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(586), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(585), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1927), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [4366] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2047), 1, + anon_sym_LBRACE, + ACTIONS(2049), 1, + anon_sym_LPAREN, + ACTIONS(2051), 1, + sym_integer, + ACTIONS(2057), 1, + anon_sym_LBRACK, + ACTIONS(2059), 1, + anon_sym_EQ_GT, + ACTIONS(2061), 1, + anon_sym_table, + ACTIONS(2089), 1, + sym_identifier, + ACTIONS(2362), 1, + anon_sym_RBRACK, + STATE(429), 1, + sym__built_in_function_name, + STATE(613), 1, + aux_sym_list_repeat1, + STATE(614), 1, + sym_expression, + STATE(1193), 1, + sym_identifier_list, + ACTIONS(2053), 2, + sym_float, + sym_string, + ACTIONS(2055), 2, + anon_sym_true, + anon_sym_false, + STATE(587), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(586), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(585), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1927), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [4468] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2047), 1, + anon_sym_LBRACE, + ACTIONS(2049), 1, + anon_sym_LPAREN, + ACTIONS(2051), 1, + sym_integer, + ACTIONS(2057), 1, + anon_sym_LBRACK, + ACTIONS(2059), 1, + anon_sym_EQ_GT, + ACTIONS(2061), 1, + anon_sym_table, + ACTIONS(2089), 1, + sym_identifier, + ACTIONS(2364), 1, + anon_sym_RBRACK, + STATE(429), 1, + sym__built_in_function_name, + STATE(612), 1, + aux_sym_list_repeat1, + STATE(614), 1, + sym_expression, + STATE(1193), 1, + sym_identifier_list, + ACTIONS(2053), 2, + sym_float, + sym_string, + ACTIONS(2055), 2, + anon_sym_true, + anon_sym_false, + STATE(587), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(586), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(585), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1927), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [4570] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2047), 1, + anon_sym_LBRACE, + ACTIONS(2049), 1, + anon_sym_LPAREN, + ACTIONS(2051), 1, + sym_integer, + ACTIONS(2057), 1, + anon_sym_LBRACK, + ACTIONS(2059), 1, + anon_sym_EQ_GT, + ACTIONS(2061), 1, + anon_sym_table, + ACTIONS(2089), 1, + sym_identifier, + ACTIONS(2366), 1, + anon_sym_RBRACK, + STATE(429), 1, + sym__built_in_function_name, + STATE(614), 1, + sym_expression, + STATE(615), 1, + aux_sym_list_repeat1, + STATE(1193), 1, + sym_identifier_list, + ACTIONS(2053), 2, + sym_float, + sym_string, + ACTIONS(2055), 2, + anon_sym_true, + anon_sym_false, + STATE(587), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(586), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(585), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1927), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [4672] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2368), 1, + sym_identifier, + ACTIONS(2371), 1, + anon_sym_LBRACE, + ACTIONS(2374), 1, + anon_sym_LPAREN, + ACTIONS(2377), 1, + sym_integer, + ACTIONS(2386), 1, + anon_sym_LBRACK, + ACTIONS(2389), 1, + anon_sym_RBRACK, + ACTIONS(2391), 1, + anon_sym_EQ_GT, + ACTIONS(2394), 1, + anon_sym_PIPE, + ACTIONS(2397), 1, + anon_sym_table, + STATE(429), 1, + sym__built_in_function_name, + STATE(614), 1, + sym_expression, + STATE(621), 1, + aux_sym_list_repeat1, + STATE(1193), 1, + sym_identifier_list, + ACTIONS(2380), 2, + sym_float, + sym_string, + ACTIONS(2383), 2, + anon_sym_true, + anon_sym_false, + STATE(587), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(586), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(585), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2400), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [4774] = 11, ACTIONS(3), 1, sym__comment, ACTIONS(73), 1, anon_sym_DASH, - ACTIONS(3694), 1, + ACTIONS(2334), 1, anon_sym_COLON, - ACTIONS(3710), 1, + ACTIONS(2344), 1, anon_sym_COMMA, - STATE(1399), 1, - sym_math_operator, - STATE(1400), 1, + STATE(892), 1, sym_logic_operator, - ACTIONS(79), 2, + STATE(893), 1, + sym_math_operator, + ACTIONS(77), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(75), 4, + ACTIONS(71), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(77), 6, + 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(3233), 7, + ACTIONS(2034), 7, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100797,7 +60860,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string, anon_sym_LBRACK, anon_sym_EQ_GT, - ACTIONS(3235), 36, + ACTIONS(2036), 36, sym_identifier, sym_integer, anon_sym_true, @@ -100834,58 +60897,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [5679] = 20, + [4858] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3503), 1, + ACTIONS(2239), 12, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(3505), 1, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3507), 1, - sym_integer, - ACTIONS(3513), 1, - anon_sym_LBRACK, - ACTIONS(3515), 1, - anon_sym_EQ_GT, - ACTIONS(3517), 1, - anon_sym_table, - ACTIONS(3576), 1, - sym_identifier, - ACTIONS(3734), 1, - anon_sym_RBRACK, - STATE(780), 1, - sym__built_in_function_name, - STATE(1039), 1, - sym_expression, - STATE(1047), 1, - aux_sym_list_repeat1, - STATE(1980), 1, - sym_identifier_list, - ACTIONS(3509), 2, + anon_sym_COMMA, sym_float, sym_string, - ACTIONS(3511), 2, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(2241), 47, + sym_identifier, + sym_integer, anon_sym_true, anon_sym_false, - STATE(1009), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(996), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1002), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3145), 30, + 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, @@ -100916,689 +60961,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [5781] = 20, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3503), 1, - anon_sym_LBRACE, - ACTIONS(3505), 1, - anon_sym_LPAREN, - ACTIONS(3507), 1, - sym_integer, - ACTIONS(3513), 1, - anon_sym_LBRACK, - ACTIONS(3515), 1, - anon_sym_EQ_GT, - ACTIONS(3517), 1, - anon_sym_table, - ACTIONS(3576), 1, - sym_identifier, - ACTIONS(3736), 1, - anon_sym_RBRACK, - STATE(780), 1, - sym__built_in_function_name, - STATE(1039), 1, - sym_expression, - STATE(1047), 1, - aux_sym_list_repeat1, - STATE(1980), 1, - sym_identifier_list, - ACTIONS(3509), 2, - sym_float, - sym_string, - ACTIONS(3511), 2, - anon_sym_true, - anon_sym_false, - STATE(1009), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(996), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1002), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3145), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [5883] = 20, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3503), 1, - anon_sym_LBRACE, - ACTIONS(3505), 1, - anon_sym_LPAREN, - ACTIONS(3507), 1, - sym_integer, - ACTIONS(3513), 1, - anon_sym_LBRACK, - ACTIONS(3515), 1, - anon_sym_EQ_GT, - ACTIONS(3517), 1, - anon_sym_table, - ACTIONS(3576), 1, - sym_identifier, - ACTIONS(3738), 1, - anon_sym_RBRACK, - STATE(780), 1, - sym__built_in_function_name, - STATE(1039), 1, - sym_expression, - STATE(1051), 1, - aux_sym_list_repeat1, - STATE(1980), 1, - sym_identifier_list, - ACTIONS(3509), 2, - sym_float, - sym_string, - ACTIONS(3511), 2, - anon_sym_true, - anon_sym_false, - STATE(1009), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(996), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1002), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3145), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [5985] = 20, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3503), 1, - anon_sym_LBRACE, - ACTIONS(3505), 1, - anon_sym_LPAREN, - ACTIONS(3507), 1, - sym_integer, - ACTIONS(3513), 1, - anon_sym_LBRACK, - ACTIONS(3515), 1, - anon_sym_EQ_GT, - ACTIONS(3517), 1, - anon_sym_table, - ACTIONS(3576), 1, - sym_identifier, - ACTIONS(3740), 1, - anon_sym_RBRACK, - STATE(780), 1, - sym__built_in_function_name, - STATE(1039), 1, - sym_expression, - STATE(1047), 1, - aux_sym_list_repeat1, - STATE(1980), 1, - sym_identifier_list, - ACTIONS(3509), 2, - sym_float, - sym_string, - ACTIONS(3511), 2, - anon_sym_true, - anon_sym_false, - STATE(1009), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(996), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1002), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3145), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [6087] = 20, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3742), 1, - sym_identifier, - ACTIONS(3745), 1, - anon_sym_LBRACE, - ACTIONS(3748), 1, - anon_sym_LPAREN, - ACTIONS(3751), 1, - sym_integer, - ACTIONS(3760), 1, - anon_sym_LBRACK, - ACTIONS(3763), 1, - anon_sym_RBRACK, - ACTIONS(3765), 1, - anon_sym_EQ_GT, - ACTIONS(3768), 1, - anon_sym_PIPE, - ACTIONS(3771), 1, - anon_sym_table, - STATE(780), 1, - sym__built_in_function_name, - STATE(1039), 1, - sym_expression, - STATE(1047), 1, - aux_sym_list_repeat1, - STATE(1980), 1, - sym_identifier_list, - ACTIONS(3754), 2, - sym_float, - sym_string, - ACTIONS(3757), 2, - anon_sym_true, - anon_sym_false, - STATE(1009), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(996), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1002), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3774), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [6189] = 20, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3503), 1, - anon_sym_LBRACE, - ACTIONS(3505), 1, - anon_sym_LPAREN, - ACTIONS(3507), 1, - sym_integer, - ACTIONS(3513), 1, - anon_sym_LBRACK, - ACTIONS(3515), 1, - anon_sym_EQ_GT, - ACTIONS(3517), 1, - anon_sym_table, - ACTIONS(3576), 1, - sym_identifier, - ACTIONS(3777), 1, - anon_sym_RBRACK, - STATE(780), 1, - sym__built_in_function_name, - STATE(1039), 1, - sym_expression, - STATE(1047), 1, - aux_sym_list_repeat1, - STATE(1980), 1, - sym_identifier_list, - ACTIONS(3509), 2, - sym_float, - sym_string, - ACTIONS(3511), 2, - anon_sym_true, - anon_sym_false, - STATE(1009), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(996), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1002), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3145), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [6291] = 20, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3503), 1, - anon_sym_LBRACE, - ACTIONS(3505), 1, - anon_sym_LPAREN, - ACTIONS(3507), 1, - sym_integer, - ACTIONS(3513), 1, - anon_sym_LBRACK, - ACTIONS(3515), 1, - anon_sym_EQ_GT, - ACTIONS(3517), 1, - anon_sym_table, - ACTIONS(3576), 1, - sym_identifier, - ACTIONS(3779), 1, - anon_sym_RBRACK, - STATE(780), 1, - sym__built_in_function_name, - STATE(1039), 1, - sym_expression, - STATE(1046), 1, - aux_sym_list_repeat1, - STATE(1980), 1, - sym_identifier_list, - ACTIONS(3509), 2, - sym_float, - sym_string, - ACTIONS(3511), 2, - anon_sym_true, - anon_sym_false, - STATE(1009), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(996), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1002), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3145), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [6393] = 20, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3503), 1, - anon_sym_LBRACE, - ACTIONS(3505), 1, - anon_sym_LPAREN, - ACTIONS(3507), 1, - sym_integer, - ACTIONS(3513), 1, - anon_sym_LBRACK, - ACTIONS(3515), 1, - anon_sym_EQ_GT, - ACTIONS(3517), 1, - anon_sym_table, - ACTIONS(3576), 1, - sym_identifier, - ACTIONS(3781), 1, - anon_sym_RBRACK, - STATE(780), 1, - sym__built_in_function_name, - STATE(1039), 1, - sym_expression, - STATE(1040), 1, - aux_sym_list_repeat1, - STATE(1980), 1, - sym_identifier_list, - ACTIONS(3509), 2, - sym_float, - sym_string, - ACTIONS(3511), 2, - anon_sym_true, - anon_sym_false, - STATE(1009), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(996), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1002), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3145), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [6495] = 20, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3503), 1, - anon_sym_LBRACE, - ACTIONS(3505), 1, - anon_sym_LPAREN, - ACTIONS(3507), 1, - sym_integer, - ACTIONS(3513), 1, - anon_sym_LBRACK, - ACTIONS(3515), 1, - anon_sym_EQ_GT, - ACTIONS(3517), 1, - anon_sym_table, - ACTIONS(3576), 1, - sym_identifier, - ACTIONS(3783), 1, - anon_sym_RBRACK, - STATE(780), 1, - sym__built_in_function_name, - STATE(1039), 1, - sym_expression, - STATE(1047), 1, - aux_sym_list_repeat1, - STATE(1980), 1, - sym_identifier_list, - ACTIONS(3509), 2, - sym_float, - sym_string, - ACTIONS(3511), 2, - anon_sym_true, - anon_sym_false, - STATE(1009), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(996), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1002), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3145), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [6597] = 10, + [4925] = 10, ACTIONS(3), 1, sym__comment, ACTIONS(73), 1, anon_sym_DASH, - ACTIONS(3785), 1, + ACTIONS(2403), 1, anon_sym_COLON, - STATE(1333), 1, - sym_math_operator, - STATE(1334), 1, + STATE(689), 1, sym_logic_operator, - ACTIONS(79), 2, + STATE(691), 1, + sym_math_operator, + ACTIONS(77), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(75), 4, + ACTIONS(71), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(77), 6, + 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(3244), 7, + ACTIONS(2079), 7, anon_sym_LBRACE, anon_sym_LPAREN, sym_float, @@ -101606,7 +60995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT_DOT, anon_sym_EQ_GT, - ACTIONS(3246), 36, + ACTIONS(2081), 36, sym_identifier, sym_integer, anon_sym_true, @@ -101643,1320 +61032,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [6678] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3367), 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_EQ_GT, - anon_sym_asyncfor, - anon_sym_PIPE, - ACTIONS(3369), 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, - [6745] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3296), 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_EQ_GT, - anon_sym_asyncfor, - anon_sym_PIPE, - ACTIONS(3298), 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, - [6812] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3329), 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_EQ_GT, - anon_sym_asyncfor, - anon_sym_PIPE, - ACTIONS(3331), 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, - [6879] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3341), 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_EQ_GT, - anon_sym_asyncfor, - anon_sym_PIPE, - ACTIONS(3343), 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, - [6946] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(1333), 1, - sym_math_operator, - STATE(1334), 1, - sym_logic_operator, - ACTIONS(3248), 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(3250), 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, - [7017] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3325), 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_EQ_GT, - anon_sym_asyncfor, - anon_sym_PIPE, - ACTIONS(3327), 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, - [7084] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3317), 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_EQ_GT, - anon_sym_asyncfor, - anon_sym_PIPE, - ACTIONS(3319), 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, - [7151] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3337), 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_EQ_GT, - anon_sym_asyncfor, - anon_sym_PIPE, - ACTIONS(3339), 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, - [7218] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3307), 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_EQ_GT, - anon_sym_asyncfor, - anon_sym_PIPE, - ACTIONS(3309), 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, - [7285] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3379), 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_EQ_GT, - anon_sym_asyncfor, - anon_sym_PIPE, - ACTIONS(3381), 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, - [7352] = 6, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3787), 1, - anon_sym_DOT_DOT, - STATE(1333), 1, - sym_math_operator, - STATE(1334), 1, - sym_logic_operator, - ACTIONS(3248), 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(3250), 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, - [7425] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3303), 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_EQ_GT, - anon_sym_asyncfor, - anon_sym_PIPE, - ACTIONS(3305), 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, - [7492] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3432), 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_EQ_GT, - anon_sym_asyncfor, - anon_sym_PIPE, - ACTIONS(3434), 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, - [7559] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3393), 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_EQ_GT, - anon_sym_asyncfor, - anon_sym_PIPE, - ACTIONS(3395), 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, - [7626] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3229), 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_EQ_GT, - anon_sym_asyncfor, - anon_sym_PIPE, - ACTIONS(3231), 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, - [7693] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3363), 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_EQ_GT, - anon_sym_asyncfor, - anon_sym_PIPE, - ACTIONS(3365), 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, - [7760] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3321), 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_EQ_GT, - anon_sym_asyncfor, - anon_sym_PIPE, - ACTIONS(3323), 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, - [7827] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3415), 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_EQ_GT, - anon_sym_asyncfor, - anon_sym_PIPE, - ACTIONS(3417), 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, - [7894] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3419), 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_EQ_GT, - anon_sym_asyncfor, - anon_sym_PIPE, - ACTIONS(3421), 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, - [7961] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(1333), 1, - sym_math_operator, - STATE(1334), 1, - sym_logic_operator, - ACTIONS(3252), 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(3254), 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, - [8032] = 10, + [5006] = 10, ACTIONS(3), 1, sym__comment, ACTIONS(73), 1, anon_sym_DASH, - ACTIONS(3785), 1, + ACTIONS(2403), 1, anon_sym_COLON, - STATE(1333), 1, - sym_math_operator, - STATE(1334), 1, + STATE(689), 1, sym_logic_operator, - ACTIONS(79), 2, + STATE(691), 1, + sym_math_operator, + ACTIONS(77), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(75), 4, + ACTIONS(71), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(77), 6, + 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(3240), 7, + ACTIONS(2075), 7, anon_sym_LBRACE, anon_sym_LPAREN, sym_float, @@ -102964,7 +61066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT_DOT, anon_sym_EQ_GT, - ACTIONS(3242), 36, + ACTIONS(2077), 36, sym_identifier, sym_integer, anon_sym_true, @@ -103001,78 +61103,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [8113] = 5, + [5087] = 4, ACTIONS(3), 1, sym__comment, - STATE(1333), 1, - sym_math_operator, - STATE(1334), 1, - sym_logic_operator, - ACTIONS(3262), 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(3264), 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, - [8184] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3642), 1, + ACTIONS(2297), 1, anon_sym_SEMI, - ACTIONS(3275), 11, + ACTIONS(2041), 11, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -103084,7 +61120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_asyncfor, anon_sym_PIPE, - ACTIONS(3277), 47, + ACTIONS(2043), 47, sym_identifier, sym_integer, anon_sym_true, @@ -103132,54 +61168,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [8253] = 18, + [5156] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, + ACTIONS(2136), 12, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(2455), 1, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3789), 1, - sym_identifier, - ACTIONS(3791), 1, - anon_sym_EQ_GT, - ACTIONS(3793), 1, - anon_sym_table, - STATE(928), 1, - sym__built_in_function_name, - STATE(1629), 1, - sym_expression, - STATE(1917), 1, - sym_identifier_list, - ACTIONS(2459), 2, + anon_sym_COMMA, sym_float, sym_string, - ACTIONS(2461), 2, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(2138), 47, + sym_identifier, + sym_integer, anon_sym_true, anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1637), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, + 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, @@ -103210,7 +61232,1232 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [8349] = 18, + [5223] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2223), 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_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(2225), 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, + [5290] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(689), 1, + sym_logic_operator, + STATE(691), 1, + sym_math_operator, + ACTIONS(2063), 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(2065), 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, + [5361] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(689), 1, + sym_logic_operator, + STATE(691), 1, + sym_math_operator, + ACTIONS(2067), 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(2069), 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, + [5432] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2132), 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_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(2134), 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, + [5499] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2405), 1, + anon_sym_DOT_DOT, + STATE(689), 1, + sym_logic_operator, + STATE(691), 1, + sym_math_operator, + ACTIONS(2026), 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(2028), 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, + [5572] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2001), 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_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(2003), 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, + [5639] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2152), 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_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(2154), 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, + [5706] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2235), 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_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(2237), 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, + [5773] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2144), 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_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(2146), 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, + [5840] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(689), 1, + sym_logic_operator, + STATE(691), 1, + sym_math_operator, + ACTIONS(2026), 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(2028), 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, + [5911] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2245), 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_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(2247), 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, + [5978] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2140), 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_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(2142), 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, + [6045] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2249), 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_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(2251), 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, + [6112] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2259), 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_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(2261), 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, + [6179] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2263), 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_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(2265), 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, + [6246] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2231), 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_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(2233), 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, + [6313] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2173), 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_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(2175), 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, + [6380] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2183), 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_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(2185), 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, + [6447] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2195), 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_EQ_GT, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(2197), 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, + [6514] = 18, ACTIONS(3), 1, sym__comment, ACTIONS(9), 1, @@ -103225,951 +62472,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(49), 1, anon_sym_table, - ACTIONS(2383), 1, + ACTIONS(1309), 1, anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(380), 1, - sym__built_in_function_name, - STATE(882), 1, - sym_expression, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [8445] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(78), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [8541] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(77), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [8637] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(76), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [8733] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(75), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [8829] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(74), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [8925] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(73), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [9021] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(72), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [9117] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(102), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [9213] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3795), 1, - sym_identifier, - ACTIONS(3797), 1, - anon_sym_EQ_GT, - ACTIONS(3799), 1, - anon_sym_table, - STATE(928), 1, - sym__built_in_function_name, - STATE(1616), 1, - sym_expression, - STATE(1851), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1539), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [9309] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3797), 1, - anon_sym_EQ_GT, - ACTIONS(3799), 1, - anon_sym_table, - ACTIONS(3801), 1, - sym_identifier, - STATE(928), 1, - sym__built_in_function_name, - STATE(1580), 1, - sym_expression, - STATE(1851), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1539), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [9405] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(103), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [9501] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, + ACTIONS(1444), 1, sym_identifier, STATE(105), 1, sym_expression, - STATE(380), 1, + STATE(222), 1, sym__built_in_function_name, - STATE(1890), 1, + STATE(1143), 1, sym_identifier_list, ACTIONS(13), 2, sym_float, @@ -104177,16 +62488,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(15), 2, anon_sym_true, anon_sym_false, - STATE(874), 2, + STATE(470), 2, sym__context_defined_function, sym_built_in_function, - STATE(844), 5, + STATE(462), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(866), 6, + STATE(468), 6, sym__expression_kind, sym_value, sym_index, @@ -104224,163 +62535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [9597] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3803), 1, - sym_identifier, - ACTIONS(3805), 1, - anon_sym_LBRACE, - ACTIONS(3807), 1, - anon_sym_LPAREN, - ACTIONS(3809), 1, - sym_integer, - ACTIONS(3815), 1, - anon_sym_LBRACK, - ACTIONS(3817), 1, - anon_sym_EQ_GT, - ACTIONS(3819), 1, - anon_sym_table, - STATE(673), 1, - sym__built_in_function_name, - STATE(1511), 1, - sym_expression, - STATE(1770), 1, - sym_identifier_list, - ACTIONS(3811), 2, - sym_float, - sym_string, - ACTIONS(3813), 2, - anon_sym_true, - anon_sym_false, - STATE(1525), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1526), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1527), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3454), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [9693] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3436), 1, - sym_identifier, - ACTIONS(3438), 1, - anon_sym_LBRACE, - ACTIONS(3440), 1, - anon_sym_LPAREN, - ACTIONS(3442), 1, - sym_integer, - ACTIONS(3448), 1, - anon_sym_LBRACK, - ACTIONS(3523), 1, - anon_sym_EQ_GT, - ACTIONS(3525), 1, - anon_sym_table, - STATE(692), 1, - sym__built_in_function_name, - STATE(961), 1, - sym_expression, - STATE(2055), 1, - sym_identifier_list, - ACTIONS(3444), 2, - sym_float, - sym_string, - ACTIONS(3446), 2, - anon_sym_true, - anon_sym_false, - STATE(990), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(981), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(986), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3527), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [9789] = 18, + [6610] = 18, ACTIONS(3), 1, sym__comment, ACTIONS(9), 1, @@ -104395,3057 +62550,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(49), 1, anon_sym_table, - ACTIONS(2383), 1, + ACTIONS(1309), 1, anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(109), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [9885] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3797), 1, - anon_sym_EQ_GT, - ACTIONS(3799), 1, - anon_sym_table, - ACTIONS(3821), 1, - sym_identifier, - STATE(928), 1, - sym__built_in_function_name, - STATE(1582), 1, - sym_expression, - STATE(1851), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1539), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [9981] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3797), 1, - anon_sym_EQ_GT, - ACTIONS(3799), 1, - anon_sym_table, - ACTIONS(3823), 1, - sym_identifier, - STATE(928), 1, - sym__built_in_function_name, - STATE(1584), 1, - sym_expression, - STATE(1851), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1539), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [10077] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(79), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [10173] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(233), 1, - anon_sym_LPAREN, - ACTIONS(235), 1, - sym_integer, - ACTIONS(241), 1, - anon_sym_LBRACK, - ACTIONS(249), 1, - anon_sym_EQ_GT, - ACTIONS(273), 1, - anon_sym_table, - ACTIONS(2624), 1, - sym_identifier, - ACTIONS(2626), 1, - anon_sym_LBRACE, - STATE(302), 1, - sym__built_in_function_name, - STATE(670), 1, - sym_expression, - STATE(1984), 1, - sym_identifier_list, - ACTIONS(237), 2, - sym_float, - sym_string, - ACTIONS(239), 2, - anon_sym_true, - anon_sym_false, - STATE(761), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(757), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(759), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(275), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [10269] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3797), 1, - anon_sym_EQ_GT, - ACTIONS(3799), 1, - anon_sym_table, - ACTIONS(3825), 1, - sym_identifier, - STATE(928), 1, - sym__built_in_function_name, - STATE(1589), 1, - sym_expression, - STATE(1851), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1539), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [10365] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3797), 1, - anon_sym_EQ_GT, - ACTIONS(3799), 1, - anon_sym_table, - ACTIONS(3827), 1, - sym_identifier, - STATE(928), 1, - sym__built_in_function_name, - STATE(1628), 1, - sym_expression, - STATE(1851), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1539), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [10461] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3503), 1, - anon_sym_LBRACE, - ACTIONS(3505), 1, - anon_sym_LPAREN, - ACTIONS(3507), 1, - sym_integer, - ACTIONS(3513), 1, - anon_sym_LBRACK, - ACTIONS(3576), 1, - sym_identifier, - ACTIONS(3829), 1, - anon_sym_EQ_GT, - ACTIONS(3831), 1, - anon_sym_table, - STATE(906), 1, - sym_expression, - STATE(928), 1, - sym__built_in_function_name, - STATE(1741), 1, - sym_identifier_list, - ACTIONS(3509), 2, - sym_float, - sym_string, - ACTIONS(3511), 2, - anon_sym_true, - anon_sym_false, - STATE(1009), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(996), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1002), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [10557] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(97), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [10653] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(55), 1, - sym_identifier, - ACTIONS(59), 1, - anon_sym_LPAREN, - ACTIONS(61), 1, - sym_integer, - ACTIONS(67), 1, - anon_sym_LBRACK, - ACTIONS(85), 1, - anon_sym_EQ_GT, - ACTIONS(111), 1, - anon_sym_table, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(265), 1, - sym__built_in_function_name, - STATE(564), 1, - sym_expression, - STATE(1817), 1, - sym_identifier_list, - ACTIONS(63), 2, - sym_float, - sym_string, - ACTIONS(65), 2, - anon_sym_true, - anon_sym_false, - STATE(628), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(633), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(631), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(113), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [10749] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(98), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [10845] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3797), 1, - anon_sym_EQ_GT, - ACTIONS(3799), 1, - anon_sym_table, - ACTIONS(3833), 1, - sym_identifier, - STATE(928), 1, - sym__built_in_function_name, - STATE(1581), 1, - sym_expression, - STATE(1851), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1539), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [10941] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3797), 1, - anon_sym_EQ_GT, - ACTIONS(3799), 1, - anon_sym_table, - ACTIONS(3835), 1, - sym_identifier, - STATE(928), 1, - sym__built_in_function_name, - STATE(1583), 1, - sym_expression, - STATE(1851), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1539), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [11037] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3436), 1, - sym_identifier, - ACTIONS(3438), 1, - anon_sym_LBRACE, - ACTIONS(3440), 1, - anon_sym_LPAREN, - ACTIONS(3442), 1, - sym_integer, - ACTIONS(3448), 1, - anon_sym_LBRACK, - ACTIONS(3450), 1, - anon_sym_EQ_GT, - ACTIONS(3452), 1, - anon_sym_table, - STATE(673), 1, - sym__built_in_function_name, - STATE(956), 1, - sym_expression, - STATE(1920), 1, - sym_identifier_list, - ACTIONS(3444), 2, - sym_float, - sym_string, - ACTIONS(3446), 2, - anon_sym_true, - anon_sym_false, - STATE(990), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(981), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(986), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3454), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [11133] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(55), 1, - sym_identifier, - ACTIONS(59), 1, - anon_sym_LPAREN, - ACTIONS(61), 1, - sym_integer, - ACTIONS(67), 1, - anon_sym_LBRACK, - ACTIONS(201), 1, - anon_sym_EQ_GT, - ACTIONS(225), 1, - anon_sym_table, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(286), 1, - sym__built_in_function_name, - STATE(634), 1, - sym_expression, - STATE(1776), 1, - sym_identifier_list, - ACTIONS(63), 2, - sym_float, - sym_string, - ACTIONS(65), 2, - anon_sym_true, - anon_sym_false, - STATE(628), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(633), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(631), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(227), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [11229] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3797), 1, - anon_sym_EQ_GT, - ACTIONS(3799), 1, - anon_sym_table, - ACTIONS(3837), 1, - sym_identifier, - STATE(928), 1, - sym__built_in_function_name, - STATE(1585), 1, - sym_expression, - STATE(1851), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1539), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [11325] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(233), 1, - anon_sym_LPAREN, - ACTIONS(235), 1, - sym_integer, - ACTIONS(241), 1, - anon_sym_LBRACK, - ACTIONS(847), 1, - anon_sym_EQ_GT, - ACTIONS(871), 1, - anon_sym_table, - ACTIONS(2624), 1, - sym_identifier, - ACTIONS(2626), 1, - anon_sym_LBRACE, - STATE(341), 1, - sym__built_in_function_name, - STATE(752), 1, - sym_expression, - STATE(1860), 1, - sym_identifier_list, - ACTIONS(237), 2, - sym_float, - sym_string, - ACTIONS(239), 2, - anon_sym_true, - anon_sym_false, - STATE(761), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(757), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(759), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(873), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [11421] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(99), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [11517] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3797), 1, - anon_sym_EQ_GT, - ACTIONS(3799), 1, - anon_sym_table, - ACTIONS(3839), 1, - sym_identifier, - STATE(928), 1, - sym__built_in_function_name, - STATE(1588), 1, - sym_expression, - STATE(1851), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1539), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [11613] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3436), 1, - sym_identifier, - ACTIONS(3438), 1, - anon_sym_LBRACE, - ACTIONS(3440), 1, - anon_sym_LPAREN, - ACTIONS(3442), 1, - sym_integer, - ACTIONS(3448), 1, - anon_sym_LBRACK, - ACTIONS(3450), 1, - anon_sym_EQ_GT, - ACTIONS(3452), 1, - anon_sym_table, - STATE(673), 1, - sym__built_in_function_name, - STATE(951), 1, - sym_expression, - STATE(1920), 1, - sym_identifier_list, - ACTIONS(3444), 2, - sym_float, - sym_string, - ACTIONS(3446), 2, - anon_sym_true, - anon_sym_false, - STATE(990), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(981), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(986), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3454), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [11709] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(119), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [11805] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3797), 1, - anon_sym_EQ_GT, - ACTIONS(3799), 1, - anon_sym_table, - ACTIONS(3841), 1, - sym_identifier, - STATE(928), 1, - sym__built_in_function_name, - STATE(1594), 1, - sym_expression, - STATE(1851), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1539), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [11901] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3797), 1, - anon_sym_EQ_GT, - ACTIONS(3799), 1, - anon_sym_table, - ACTIONS(3843), 1, - sym_identifier, - STATE(928), 1, - sym__built_in_function_name, - STATE(1597), 1, - sym_expression, - STATE(1851), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1539), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [11997] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(233), 1, - anon_sym_LPAREN, - ACTIONS(235), 1, - sym_integer, - ACTIONS(241), 1, - anon_sym_LBRACK, - ACTIONS(847), 1, - anon_sym_EQ_GT, - ACTIONS(871), 1, - anon_sym_table, - ACTIONS(2624), 1, - sym_identifier, - ACTIONS(2626), 1, - anon_sym_LBRACE, - STATE(341), 1, - sym__built_in_function_name, - STATE(785), 1, - sym_expression, - STATE(1860), 1, - sym_identifier_list, - ACTIONS(237), 2, - sym_float, - sym_string, - ACTIONS(239), 2, - anon_sym_true, - anon_sym_false, - STATE(761), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(757), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(759), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(873), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [12093] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3789), 1, - sym_identifier, - ACTIONS(3791), 1, - anon_sym_EQ_GT, - ACTIONS(3793), 1, - anon_sym_table, - STATE(928), 1, - sym__built_in_function_name, - STATE(1629), 1, - sym_expression, - STATE(1917), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1634), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [12189] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3797), 1, - anon_sym_EQ_GT, - ACTIONS(3799), 1, - anon_sym_table, - ACTIONS(3845), 1, - sym_identifier, - STATE(928), 1, - sym__built_in_function_name, - STATE(1599), 1, - sym_expression, - STATE(1851), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1539), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [12285] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(167), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [12381] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3503), 1, - anon_sym_LBRACE, - ACTIONS(3505), 1, - anon_sym_LPAREN, - ACTIONS(3507), 1, - sym_integer, - ACTIONS(3513), 1, - anon_sym_LBRACK, - ACTIONS(3576), 1, - sym_identifier, - ACTIONS(3829), 1, - anon_sym_EQ_GT, - ACTIONS(3831), 1, - anon_sym_table, - STATE(898), 1, - sym_expression, - STATE(928), 1, - sym__built_in_function_name, - STATE(1741), 1, - sym_identifier_list, - ACTIONS(3509), 2, - sym_float, - sym_string, - ACTIONS(3511), 2, - anon_sym_true, - anon_sym_false, - STATE(1009), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(996), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1002), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [12477] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3797), 1, - anon_sym_EQ_GT, - ACTIONS(3799), 1, - anon_sym_table, - ACTIONS(3847), 1, - sym_identifier, - STATE(928), 1, - sym__built_in_function_name, - STATE(1600), 1, - sym_expression, - STATE(1851), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1539), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [12573] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(165), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [12669] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(69), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [12765] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3797), 1, - anon_sym_EQ_GT, - ACTIONS(3799), 1, - anon_sym_table, - ACTIONS(3849), 1, - sym_identifier, - STATE(928), 1, - sym__built_in_function_name, - STATE(1603), 1, - sym_expression, - STATE(1851), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1539), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [12861] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3503), 1, - anon_sym_LBRACE, - ACTIONS(3505), 1, - anon_sym_LPAREN, - ACTIONS(3507), 1, - sym_integer, - ACTIONS(3513), 1, - anon_sym_LBRACK, - ACTIONS(3576), 1, - sym_identifier, - ACTIONS(3829), 1, - anon_sym_EQ_GT, - ACTIONS(3831), 1, - anon_sym_table, - STATE(896), 1, - sym_expression, - STATE(928), 1, - sym__built_in_function_name, - STATE(1741), 1, - sym_identifier_list, - ACTIONS(3509), 2, - sym_float, - sym_string, - ACTIONS(3511), 2, - anon_sym_true, - anon_sym_false, - STATE(1009), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(996), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1002), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [12957] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3797), 1, - anon_sym_EQ_GT, - ACTIONS(3799), 1, - anon_sym_table, - ACTIONS(3851), 1, - sym_identifier, - STATE(928), 1, - sym__built_in_function_name, - STATE(1606), 1, - sym_expression, - STATE(1851), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1539), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [13053] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(70), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [13149] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3797), 1, - anon_sym_EQ_GT, - ACTIONS(3799), 1, - anon_sym_table, - ACTIONS(3853), 1, - sym_identifier, - STATE(928), 1, - sym__built_in_function_name, - STATE(1626), 1, - sym_expression, - STATE(1851), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1539), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [13245] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3503), 1, - anon_sym_LBRACE, - ACTIONS(3505), 1, - anon_sym_LPAREN, - ACTIONS(3507), 1, - sym_integer, - ACTIONS(3513), 1, - anon_sym_LBRACK, - ACTIONS(3576), 1, - sym_identifier, - ACTIONS(3829), 1, - anon_sym_EQ_GT, - ACTIONS(3831), 1, - anon_sym_table, - STATE(902), 1, - sym_expression, - STATE(928), 1, - sym__built_in_function_name, - STATE(1741), 1, - sym_identifier_list, - ACTIONS(3509), 2, - sym_float, - sym_string, - ACTIONS(3511), 2, - anon_sym_true, - anon_sym_false, - STATE(1009), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(996), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1002), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [13341] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3797), 1, - anon_sym_EQ_GT, - ACTIONS(3799), 1, - anon_sym_table, - ACTIONS(3855), 1, - sym_identifier, - STATE(928), 1, - sym__built_in_function_name, - STATE(1610), 1, - sym_expression, - STATE(1851), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1539), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [13437] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(144), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [13533] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, + ACTIONS(1444), 1, sym_identifier, STATE(112), 1, sym_expression, - STATE(380), 1, + STATE(222), 1, sym__built_in_function_name, - STATE(1890), 1, + STATE(1143), 1, sym_identifier_list, ACTIONS(13), 2, sym_float, @@ -107453,16 +62566,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(15), 2, anon_sym_true, anon_sym_false, - STATE(874), 2, + STATE(470), 2, sym__context_defined_function, sym_built_in_function, - STATE(844), 5, + STATE(462), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(866), 6, + STATE(468), 6, sym__expression_kind, sym_value, sym_index, @@ -107500,12222 +62613,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [13629] = 18, + [6706] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(113), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [13725] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3797), 1, - anon_sym_EQ_GT, - ACTIONS(3799), 1, - anon_sym_table, - ACTIONS(3857), 1, - sym_identifier, - STATE(928), 1, - sym__built_in_function_name, - STATE(1625), 1, - sym_expression, - STATE(1851), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1539), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [13821] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3503), 1, - anon_sym_LBRACE, - ACTIONS(3505), 1, - anon_sym_LPAREN, - ACTIONS(3507), 1, - sym_integer, - ACTIONS(3513), 1, - anon_sym_LBRACK, - ACTIONS(3576), 1, - sym_identifier, - ACTIONS(3829), 1, - anon_sym_EQ_GT, - ACTIONS(3831), 1, - anon_sym_table, - STATE(912), 1, - sym_expression, - STATE(928), 1, - sym__built_in_function_name, - STATE(1741), 1, - sym_identifier_list, - ACTIONS(3509), 2, - sym_float, - sym_string, - ACTIONS(3511), 2, - anon_sym_true, - anon_sym_false, - STATE(1009), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(996), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1002), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [13917] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(115), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [14013] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3797), 1, - anon_sym_EQ_GT, - ACTIONS(3799), 1, - anon_sym_table, - ACTIONS(3859), 1, - sym_identifier, - STATE(928), 1, - sym__built_in_function_name, - STATE(1613), 1, - sym_expression, - STATE(1851), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1539), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [14109] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3503), 1, - anon_sym_LBRACE, - ACTIONS(3505), 1, - anon_sym_LPAREN, - ACTIONS(3507), 1, - sym_integer, - ACTIONS(3513), 1, - anon_sym_LBRACK, - ACTIONS(3576), 1, - sym_identifier, - ACTIONS(3829), 1, - anon_sym_EQ_GT, - ACTIONS(3831), 1, - anon_sym_table, - STATE(915), 1, - sym_expression, - STATE(928), 1, - sym__built_in_function_name, - STATE(1741), 1, - sym_identifier_list, - ACTIONS(3509), 2, - sym_float, - sym_string, - ACTIONS(3511), 2, - anon_sym_true, - anon_sym_false, - STATE(1009), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(996), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1002), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [14205] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(55), 1, - sym_identifier, - ACTIONS(59), 1, - anon_sym_LPAREN, - ACTIONS(61), 1, - sym_integer, - ACTIONS(67), 1, - anon_sym_LBRACK, - ACTIONS(315), 1, - anon_sym_EQ_GT, - ACTIONS(339), 1, - anon_sym_table, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(296), 1, - sym__built_in_function_name, - STATE(672), 1, - sym_expression, - STATE(1998), 1, - sym_identifier_list, - ACTIONS(63), 2, - sym_float, - sym_string, - ACTIONS(65), 2, - anon_sym_true, - anon_sym_false, - STATE(628), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(633), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(631), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(341), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [14301] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(55), 1, - sym_identifier, - ACTIONS(59), 1, - anon_sym_LPAREN, - ACTIONS(61), 1, - sym_integer, - ACTIONS(67), 1, - anon_sym_LBRACK, - ACTIONS(315), 1, - anon_sym_EQ_GT, - ACTIONS(339), 1, - anon_sym_table, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(296), 1, - sym__built_in_function_name, - STATE(661), 1, - sym_expression, - STATE(1998), 1, - sym_identifier_list, - ACTIONS(63), 2, - sym_float, - sym_string, - ACTIONS(65), 2, - anon_sym_true, - anon_sym_false, - STATE(628), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(633), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(631), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(341), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [14397] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(1442), 1, - anon_sym_EQ_GT, - ACTIONS(1466), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(366), 1, - sym__built_in_function_name, - STATE(843), 1, - sym_expression, - STATE(1823), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1468), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [14493] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(149), 1, - sym_identifier, - ACTIONS(153), 1, - anon_sym_LPAREN, - ACTIONS(155), 1, - sym_integer, - ACTIONS(161), 1, - anon_sym_LBRACK, - ACTIONS(167), 1, - anon_sym_EQ_GT, - ACTIONS(191), 1, - anon_sym_table, - ACTIONS(1923), 1, - anon_sym_LBRACE, - STATE(284), 1, - sym__built_in_function_name, - STATE(635), 1, - sym_expression, - STATE(1910), 1, - sym_identifier_list, - ACTIONS(157), 2, - sym_float, - sym_string, - ACTIONS(159), 2, - anon_sym_true, - anon_sym_false, - STATE(703), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(713), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(706), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(193), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [14589] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(1442), 1, - anon_sym_EQ_GT, - ACTIONS(1466), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(366), 1, - sym__built_in_function_name, - STATE(849), 1, - sym_expression, - STATE(1823), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1468), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [14685] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(1442), 1, - anon_sym_EQ_GT, - ACTIONS(1466), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(366), 1, - sym__built_in_function_name, - STATE(850), 1, - sym_expression, - STATE(1823), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1468), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [14781] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(157), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [14877] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(116), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [14973] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(117), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [15069] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(118), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [15165] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(380), 1, - sym__built_in_function_name, - STATE(890), 1, - sym_expression, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [15261] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(149), 1, - sym_identifier, - ACTIONS(153), 1, - anon_sym_LPAREN, - ACTIONS(155), 1, - sym_integer, - ACTIONS(161), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - anon_sym_EQ_GT, - ACTIONS(523), 1, - anon_sym_table, - ACTIONS(1923), 1, - anon_sym_LBRACE, - STATE(320), 1, - sym__built_in_function_name, - STATE(693), 1, - sym_expression, - STATE(1866), 1, - sym_identifier_list, - ACTIONS(157), 2, - sym_float, - sym_string, - ACTIONS(159), 2, - anon_sym_true, - anon_sym_false, - STATE(703), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(713), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(706), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(525), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [15357] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(156), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [15453] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(155), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [15549] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(154), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [15645] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(380), 1, - sym__built_in_function_name, - STATE(911), 1, - sym_expression, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [15741] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(152), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [15837] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(151), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [15933] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(40), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [16029] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(1442), 1, - anon_sym_EQ_GT, - ACTIONS(1466), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(366), 1, - sym__built_in_function_name, - STATE(854), 1, - sym_expression, - STATE(1823), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1468), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [16125] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(114), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [16221] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(55), 1, - sym_identifier, - ACTIONS(59), 1, - anon_sym_LPAREN, - ACTIONS(61), 1, - sym_integer, - ACTIONS(67), 1, - anon_sym_LBRACK, - ACTIONS(85), 1, - anon_sym_EQ_GT, - ACTIONS(111), 1, - anon_sym_table, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(265), 1, - sym__built_in_function_name, - STATE(569), 1, - sym_expression, - STATE(1817), 1, - sym_identifier_list, - ACTIONS(63), 2, - sym_float, - sym_string, - ACTIONS(65), 2, - anon_sym_true, - anon_sym_false, - STATE(628), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(633), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(631), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(113), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [16317] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(123), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [16413] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(124), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [16509] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(236), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [16605] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3789), 1, - sym_identifier, - ACTIONS(3791), 1, - anon_sym_EQ_GT, - ACTIONS(3793), 1, - anon_sym_table, - STATE(928), 1, - sym__built_in_function_name, - STATE(1629), 1, - sym_expression, - STATE(1917), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1636), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [16701] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(149), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [16797] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(127), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [16893] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3797), 1, - anon_sym_EQ_GT, - ACTIONS(3799), 1, - anon_sym_table, - ACTIONS(3861), 1, - sym_identifier, - STATE(928), 1, - sym__built_in_function_name, - STATE(1595), 1, - sym_expression, - STATE(1851), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1539), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [16989] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(149), 1, - sym_identifier, - ACTIONS(153), 1, - anon_sym_LPAREN, - ACTIONS(155), 1, - sym_integer, - ACTIONS(161), 1, - anon_sym_LBRACK, - ACTIONS(281), 1, - anon_sym_EQ_GT, - ACTIONS(305), 1, - anon_sym_table, - ACTIONS(1923), 1, - anon_sym_LBRACE, - STATE(311), 1, - sym__built_in_function_name, - STATE(651), 1, - sym_expression, - STATE(1813), 1, - sym_identifier_list, - ACTIONS(157), 2, - sym_float, - sym_string, - ACTIONS(159), 2, - anon_sym_true, - anon_sym_false, - STATE(703), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(713), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(706), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(307), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [17085] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(148), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [17181] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(246), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [17277] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(132), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [17373] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(179), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [17469] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(233), 1, - anon_sym_LPAREN, - ACTIONS(235), 1, - sym_integer, - ACTIONS(241), 1, - anon_sym_LBRACK, - ACTIONS(1288), 1, - anon_sym_EQ_GT, - ACTIONS(1312), 1, - anon_sym_table, - ACTIONS(2624), 1, - sym_identifier, - ACTIONS(2626), 1, - anon_sym_LBRACE, - STATE(351), 1, - sym__built_in_function_name, - STATE(836), 1, - sym_expression, - STATE(1926), 1, - sym_identifier_list, - ACTIONS(237), 2, - sym_float, - sym_string, - ACTIONS(239), 2, - anon_sym_true, - anon_sym_false, - STATE(761), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(757), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(759), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1314), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [17565] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(177), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [17661] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(175), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [17757] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(173), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [17853] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(172), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [17949] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(162), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [18045] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(63), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [18141] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3863), 1, - sym_identifier, - ACTIONS(3865), 1, - anon_sym_EQ_GT, - ACTIONS(3867), 1, - anon_sym_table, - STATE(914), 1, - sym__built_in_function_name, - STATE(1558), 1, - sym_expression, - STATE(1922), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1539), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3869), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [18237] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3863), 1, - sym_identifier, - ACTIONS(3865), 1, - anon_sym_EQ_GT, - ACTIONS(3867), 1, - anon_sym_table, - STATE(914), 1, - sym__built_in_function_name, - STATE(1569), 1, - sym_expression, - STATE(1922), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1539), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3869), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [18333] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3863), 1, - sym_identifier, - ACTIONS(3865), 1, - anon_sym_EQ_GT, - ACTIONS(3867), 1, - anon_sym_table, - STATE(914), 1, - sym__built_in_function_name, - STATE(1557), 1, - sym_expression, - STATE(1922), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1539), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3869), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [18429] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3503), 1, - anon_sym_LBRACE, - ACTIONS(3505), 1, - anon_sym_LPAREN, - ACTIONS(3507), 1, - sym_integer, - ACTIONS(3513), 1, - anon_sym_LBRACK, - ACTIONS(3576), 1, - sym_identifier, - ACTIONS(3829), 1, - anon_sym_EQ_GT, - ACTIONS(3831), 1, - anon_sym_table, - STATE(892), 1, - sym_expression, - STATE(928), 1, - sym__built_in_function_name, - STATE(1741), 1, - sym_identifier_list, - ACTIONS(3509), 2, - sym_float, - sym_string, - ACTIONS(3511), 2, - anon_sym_true, - anon_sym_false, - STATE(1009), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(996), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1002), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [18525] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(149), 1, - sym_identifier, - ACTIONS(153), 1, - anon_sym_LPAREN, - ACTIONS(155), 1, - sym_integer, - ACTIONS(161), 1, - anon_sym_LBRACK, - ACTIONS(167), 1, - anon_sym_EQ_GT, - ACTIONS(191), 1, - anon_sym_table, - ACTIONS(1923), 1, - anon_sym_LBRACE, - STATE(284), 1, - sym__built_in_function_name, - STATE(643), 1, - sym_expression, - STATE(1910), 1, - sym_identifier_list, - ACTIONS(157), 2, - sym_float, - sym_string, - ACTIONS(159), 2, - anon_sym_true, - anon_sym_false, - STATE(703), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(713), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(706), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(193), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [18621] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3503), 1, - anon_sym_LBRACE, - ACTIONS(3505), 1, - anon_sym_LPAREN, - ACTIONS(3507), 1, - sym_integer, - ACTIONS(3513), 1, - anon_sym_LBRACK, - ACTIONS(3576), 1, - sym_identifier, - ACTIONS(3829), 1, - anon_sym_EQ_GT, - ACTIONS(3831), 1, - anon_sym_table, - STATE(886), 1, - sym_expression, - STATE(928), 1, - sym__built_in_function_name, - STATE(1741), 1, - sym_identifier_list, - ACTIONS(3509), 2, - sym_float, - sym_string, - ACTIONS(3511), 2, - anon_sym_true, - anon_sym_false, - STATE(1009), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(996), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1002), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [18717] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(128), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [18813] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3503), 1, - anon_sym_LBRACE, - ACTIONS(3505), 1, - anon_sym_LPAREN, - ACTIONS(3507), 1, - sym_integer, - ACTIONS(3513), 1, - anon_sym_LBRACK, - ACTIONS(3576), 1, - sym_identifier, - ACTIONS(3829), 1, - anon_sym_EQ_GT, - ACTIONS(3831), 1, - anon_sym_table, - STATE(901), 1, - sym_expression, - STATE(928), 1, - sym__built_in_function_name, - STATE(1741), 1, - sym_identifier_list, - ACTIONS(3509), 2, - sym_float, - sym_string, - ACTIONS(3511), 2, - anon_sym_true, - anon_sym_false, - STATE(1009), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(996), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1002), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [18909] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(233), 1, - anon_sym_LPAREN, - ACTIONS(235), 1, - sym_integer, - ACTIONS(241), 1, - anon_sym_LBRACK, - ACTIONS(1288), 1, - anon_sym_EQ_GT, - ACTIONS(1312), 1, - anon_sym_table, - ACTIONS(2624), 1, - sym_identifier, - ACTIONS(2626), 1, - anon_sym_LBRACE, - STATE(28), 1, - sym_expression, - STATE(351), 1, - sym__built_in_function_name, - STATE(1926), 1, - sym_identifier_list, - ACTIONS(237), 2, - sym_float, - sym_string, - ACTIONS(239), 2, - anon_sym_true, - anon_sym_false, - STATE(761), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(757), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(759), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1314), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [19005] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(233), 1, - anon_sym_LPAREN, - ACTIONS(235), 1, - sym_integer, - ACTIONS(241), 1, - anon_sym_LBRACK, - ACTIONS(847), 1, - anon_sym_EQ_GT, - ACTIONS(871), 1, - anon_sym_table, - ACTIONS(2624), 1, - sym_identifier, - ACTIONS(2626), 1, - anon_sym_LBRACE, - STATE(341), 1, - sym__built_in_function_name, - STATE(815), 1, - sym_expression, - STATE(1860), 1, - sym_identifier_list, - ACTIONS(237), 2, - sym_float, - sym_string, - ACTIONS(239), 2, - anon_sym_true, - anon_sym_false, - STATE(761), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(757), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(759), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(873), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [19101] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3503), 1, - anon_sym_LBRACE, - ACTIONS(3505), 1, - anon_sym_LPAREN, - ACTIONS(3507), 1, - sym_integer, - ACTIONS(3513), 1, - anon_sym_LBRACK, - ACTIONS(3576), 1, - sym_identifier, - ACTIONS(3829), 1, - anon_sym_EQ_GT, - ACTIONS(3831), 1, - anon_sym_table, - STATE(885), 1, - sym_expression, - STATE(928), 1, - sym__built_in_function_name, - STATE(1741), 1, - sym_identifier_list, - ACTIONS(3509), 2, - sym_float, - sym_string, - ACTIONS(3511), 2, - anon_sym_true, - anon_sym_false, - STATE(1009), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(996), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1002), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [19197] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(47), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [19293] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3503), 1, - anon_sym_LBRACE, - ACTIONS(3505), 1, - anon_sym_LPAREN, - ACTIONS(3507), 1, - sym_integer, - ACTIONS(3513), 1, - anon_sym_LBRACK, - ACTIONS(3576), 1, - sym_identifier, - ACTIONS(3829), 1, - anon_sym_EQ_GT, - ACTIONS(3831), 1, - anon_sym_table, - STATE(910), 1, - sym_expression, - STATE(928), 1, - sym__built_in_function_name, - STATE(1741), 1, - sym_identifier_list, - ACTIONS(3509), 2, - sym_float, - sym_string, - ACTIONS(3511), 2, - anon_sym_true, - anon_sym_false, - STATE(1009), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(996), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1002), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [19389] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(380), 1, - sym__built_in_function_name, - STATE(916), 1, - sym_expression, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [19485] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3503), 1, - anon_sym_LBRACE, - ACTIONS(3505), 1, - anon_sym_LPAREN, - ACTIONS(3507), 1, - sym_integer, - ACTIONS(3513), 1, - anon_sym_LBRACK, - ACTIONS(3576), 1, - sym_identifier, - ACTIONS(3829), 1, - anon_sym_EQ_GT, - ACTIONS(3831), 1, - anon_sym_table, - STATE(900), 1, - sym_expression, - STATE(928), 1, - sym__built_in_function_name, - STATE(1741), 1, - sym_identifier_list, - ACTIONS(3509), 2, - sym_float, - sym_string, - ACTIONS(3511), 2, - anon_sym_true, - anon_sym_false, - STATE(1009), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(996), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1002), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [19581] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3503), 1, - anon_sym_LBRACE, - ACTIONS(3505), 1, - anon_sym_LPAREN, - ACTIONS(3507), 1, - sym_integer, - ACTIONS(3513), 1, - anon_sym_LBRACK, - ACTIONS(3576), 1, - sym_identifier, - ACTIONS(3829), 1, - anon_sym_EQ_GT, - ACTIONS(3831), 1, - anon_sym_table, - STATE(904), 1, - sym_expression, - STATE(928), 1, - sym__built_in_function_name, - STATE(1741), 1, - sym_identifier_list, - ACTIONS(3509), 2, - sym_float, - sym_string, - ACTIONS(3511), 2, - anon_sym_true, - anon_sym_false, - STATE(1009), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(996), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1002), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [19677] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(160), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [19773] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(80), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [19869] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3503), 1, - anon_sym_LBRACE, - ACTIONS(3505), 1, - anon_sym_LPAREN, - ACTIONS(3507), 1, - sym_integer, - ACTIONS(3513), 1, - anon_sym_LBRACK, - ACTIONS(3576), 1, - sym_identifier, - ACTIONS(3578), 1, - anon_sym_EQ_GT, - ACTIONS(3580), 1, - anon_sym_table, - STATE(726), 1, - sym__built_in_function_name, - STATE(957), 1, - sym_expression, - STATE(1762), 1, - sym_identifier_list, - ACTIONS(3509), 2, - sym_float, - sym_string, - ACTIONS(3511), 2, - anon_sym_true, - anon_sym_false, - STATE(1009), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(996), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1002), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3582), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [19965] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3503), 1, - anon_sym_LBRACE, - ACTIONS(3505), 1, - anon_sym_LPAREN, - ACTIONS(3507), 1, - sym_integer, - ACTIONS(3513), 1, - anon_sym_LBRACK, - ACTIONS(3576), 1, - sym_identifier, - ACTIONS(3578), 1, - anon_sym_EQ_GT, - ACTIONS(3580), 1, - anon_sym_table, - STATE(726), 1, - sym__built_in_function_name, - STATE(958), 1, - sym_expression, - STATE(1762), 1, - sym_identifier_list, - ACTIONS(3509), 2, - sym_float, - sym_string, - ACTIONS(3511), 2, - anon_sym_true, - anon_sym_false, - STATE(1009), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(996), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1002), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3582), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [20061] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3503), 1, - anon_sym_LBRACE, - ACTIONS(3505), 1, - anon_sym_LPAREN, - ACTIONS(3507), 1, - sym_integer, - ACTIONS(3513), 1, - anon_sym_LBRACK, - ACTIONS(3576), 1, - sym_identifier, - ACTIONS(3578), 1, - anon_sym_EQ_GT, - ACTIONS(3580), 1, - anon_sym_table, - STATE(726), 1, - sym__built_in_function_name, - STATE(959), 1, - sym_expression, - STATE(1762), 1, - sym_identifier_list, - ACTIONS(3509), 2, - sym_float, - sym_string, - ACTIONS(3511), 2, - anon_sym_true, - anon_sym_false, - STATE(1009), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(996), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1002), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3582), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [20157] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(55), 1, - sym_identifier, - ACTIONS(59), 1, - anon_sym_LPAREN, - ACTIONS(61), 1, - sym_integer, - ACTIONS(67), 1, - anon_sym_LBRACK, - ACTIONS(121), 1, - anon_sym_EQ_GT, - ACTIONS(145), 1, - anon_sym_table, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(271), 1, - sym__built_in_function_name, - STATE(575), 1, - sym_expression, - STATE(2030), 1, - sym_identifier_list, - ACTIONS(63), 2, - sym_float, - sym_string, - ACTIONS(65), 2, - anon_sym_true, - anon_sym_false, - STATE(628), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(633), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(631), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(147), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [20253] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(81), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [20349] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(82), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [20445] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(149), 1, - sym_identifier, - ACTIONS(153), 1, - anon_sym_LPAREN, - ACTIONS(155), 1, - sym_integer, - ACTIONS(161), 1, - anon_sym_LBRACK, - ACTIONS(167), 1, - anon_sym_EQ_GT, - ACTIONS(191), 1, - anon_sym_table, - ACTIONS(1923), 1, - anon_sym_LBRACE, - STATE(4), 1, - sym_expression, - STATE(284), 1, - sym__built_in_function_name, - STATE(1910), 1, - sym_identifier_list, - ACTIONS(157), 2, - sym_float, - sym_string, - ACTIONS(159), 2, - anon_sym_true, - anon_sym_false, - STATE(703), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(713), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(706), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(193), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [20541] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(83), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [20637] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(84), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [20733] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(85), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [20829] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(86), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [20925] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(217), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [21021] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(233), 1, - anon_sym_LPAREN, - ACTIONS(235), 1, - sym_integer, - ACTIONS(241), 1, - anon_sym_LBRACK, - ACTIONS(249), 1, - anon_sym_EQ_GT, - ACTIONS(273), 1, - anon_sym_table, - ACTIONS(2624), 1, - sym_identifier, - ACTIONS(2626), 1, - anon_sym_LBRACE, - STATE(302), 1, - sym__built_in_function_name, - STATE(666), 1, - sym_expression, - STATE(1984), 1, - sym_identifier_list, - ACTIONS(237), 2, - sym_float, - sym_string, - ACTIONS(239), 2, - anon_sym_true, - anon_sym_false, - STATE(761), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(757), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(759), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(275), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [21117] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3503), 1, - anon_sym_LBRACE, - ACTIONS(3505), 1, - anon_sym_LPAREN, - ACTIONS(3507), 1, - sym_integer, - ACTIONS(3513), 1, - anon_sym_LBRACK, - ACTIONS(3576), 1, - sym_identifier, - ACTIONS(3829), 1, - anon_sym_EQ_GT, - ACTIONS(3831), 1, - anon_sym_table, - STATE(903), 1, - sym_expression, - STATE(928), 1, - sym__built_in_function_name, - STATE(1741), 1, - sym_identifier_list, - ACTIONS(3509), 2, - sym_float, - sym_string, - ACTIONS(3511), 2, - anon_sym_true, - anon_sym_false, - STATE(1009), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(996), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1002), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [21213] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(215), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [21309] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(214), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [21405] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3503), 1, - anon_sym_LBRACE, - ACTIONS(3505), 1, - anon_sym_LPAREN, - ACTIONS(3507), 1, - sym_integer, - ACTIONS(3513), 1, - anon_sym_LBRACK, - ACTIONS(3576), 1, - sym_identifier, - ACTIONS(3829), 1, - anon_sym_EQ_GT, - ACTIONS(3831), 1, - anon_sym_table, - STATE(913), 1, - sym_expression, - STATE(928), 1, - sym__built_in_function_name, - STATE(1741), 1, - sym_identifier_list, - ACTIONS(3509), 2, - sym_float, - sym_string, - ACTIONS(3511), 2, - anon_sym_true, - anon_sym_false, - STATE(1009), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(996), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1002), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [21501] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(213), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [21597] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(210), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [21693] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3503), 1, - anon_sym_LBRACE, - ACTIONS(3505), 1, - anon_sym_LPAREN, - ACTIONS(3507), 1, - sym_integer, - ACTIONS(3513), 1, - anon_sym_LBRACK, - ACTIONS(3576), 1, - sym_identifier, - ACTIONS(3829), 1, - anon_sym_EQ_GT, - ACTIONS(3831), 1, - anon_sym_table, - STATE(895), 1, - sym_expression, - STATE(928), 1, - sym__built_in_function_name, - STATE(1741), 1, - sym_identifier_list, - ACTIONS(3509), 2, - sym_float, - sym_string, - ACTIONS(3511), 2, - anon_sym_true, - anon_sym_false, - STATE(1009), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(996), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1002), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [21789] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(87), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [21885] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(178), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [21981] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(149), 1, - sym_identifier, - ACTIONS(153), 1, - anon_sym_LPAREN, - ACTIONS(155), 1, - sym_integer, - ACTIONS(161), 1, - anon_sym_LBRACK, - ACTIONS(281), 1, - anon_sym_EQ_GT, - ACTIONS(305), 1, - anon_sym_table, - ACTIONS(1923), 1, - anon_sym_LBRACE, - STATE(311), 1, - sym__built_in_function_name, - STATE(681), 1, - sym_expression, - STATE(1813), 1, - sym_identifier_list, - ACTIONS(157), 2, - sym_float, - sym_string, - ACTIONS(159), 2, - anon_sym_true, - anon_sym_false, - STATE(703), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(713), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(706), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(307), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [22077] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(149), 1, - sym_identifier, - ACTIONS(153), 1, - anon_sym_LPAREN, - ACTIONS(155), 1, - sym_integer, - ACTIONS(161), 1, - anon_sym_LBRACK, - ACTIONS(281), 1, - anon_sym_EQ_GT, - ACTIONS(305), 1, - anon_sym_table, - ACTIONS(1923), 1, - anon_sym_LBRACE, - STATE(311), 1, - sym__built_in_function_name, - STATE(682), 1, - sym_expression, - STATE(1813), 1, - sym_identifier_list, - ACTIONS(157), 2, - sym_float, - sym_string, - ACTIONS(159), 2, - anon_sym_true, - anon_sym_false, - STATE(703), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(713), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(706), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(307), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [22173] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3871), 1, - sym_identifier, - ACTIONS(3873), 1, - anon_sym_EQ_GT, - ACTIONS(3875), 1, - anon_sym_table, - STATE(726), 1, - sym__built_in_function_name, - STATE(1538), 1, - sym_expression, - STATE(1804), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1539), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3582), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [22269] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3789), 1, - sym_identifier, - ACTIONS(3791), 1, - anon_sym_EQ_GT, - ACTIONS(3793), 1, - anon_sym_table, - STATE(928), 1, - sym__built_in_function_name, - STATE(1629), 1, - sym_expression, - STATE(1917), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1630), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [22365] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(153), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [22461] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3877), 1, - sym_identifier, - ACTIONS(3879), 1, - anon_sym_EQ_GT, - ACTIONS(3881), 1, - anon_sym_table, - STATE(914), 1, - sym__built_in_function_name, - STATE(1564), 1, - sym_expression, - STATE(1784), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1539), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3869), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [22557] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3877), 1, - sym_identifier, - ACTIONS(3879), 1, - anon_sym_EQ_GT, - ACTIONS(3881), 1, - anon_sym_table, - STATE(914), 1, - sym__built_in_function_name, - STATE(1572), 1, - sym_expression, - STATE(1784), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1539), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3869), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [22653] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3877), 1, - sym_identifier, - ACTIONS(3879), 1, - anon_sym_EQ_GT, - ACTIONS(3881), 1, - anon_sym_table, - STATE(914), 1, - sym__built_in_function_name, - STATE(1562), 1, - sym_expression, - STATE(1784), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1539), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3869), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [22749] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3503), 1, - anon_sym_LBRACE, - ACTIONS(3505), 1, - anon_sym_LPAREN, - ACTIONS(3507), 1, - sym_integer, - ACTIONS(3513), 1, - anon_sym_LBRACK, - ACTIONS(3576), 1, - sym_identifier, - ACTIONS(3883), 1, - anon_sym_EQ_GT, - ACTIONS(3885), 1, - anon_sym_table, - STATE(914), 1, - sym__built_in_function_name, - STATE(1057), 1, - sym_expression, - STATE(1773), 1, - sym_identifier_list, - ACTIONS(3509), 2, - sym_float, - sym_string, - ACTIONS(3511), 2, - anon_sym_true, - anon_sym_false, - STATE(1009), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(996), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1002), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3869), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [22845] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(1442), 1, - anon_sym_EQ_GT, - ACTIONS(1466), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(366), 1, - sym__built_in_function_name, - STATE(869), 1, - sym_expression, - STATE(1823), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1468), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [22941] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(137), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [23037] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(149), 1, - sym_identifier, - ACTIONS(153), 1, - anon_sym_LPAREN, - ACTIONS(155), 1, - sym_integer, - ACTIONS(161), 1, - anon_sym_LBRACK, - ACTIONS(915), 1, - anon_sym_EQ_GT, - ACTIONS(939), 1, - anon_sym_table, - ACTIONS(1923), 1, - anon_sym_LBRACE, - STATE(325), 1, - sym__built_in_function_name, - STATE(814), 1, - sym_expression, - STATE(2015), 1, - sym_identifier_list, - ACTIONS(157), 2, - sym_float, - sym_string, - ACTIONS(159), 2, - anon_sym_true, - anon_sym_false, - STATE(703), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(713), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(706), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(941), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [23133] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(183), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [23229] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(226), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [23325] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(232), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [23421] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(237), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [23517] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(251), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [23613] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(233), 1, - anon_sym_LPAREN, - ACTIONS(235), 1, - sym_integer, - ACTIONS(241), 1, - anon_sym_LBRACK, - ACTIONS(631), 1, - anon_sym_EQ_GT, - ACTIONS(655), 1, - anon_sym_table, - ACTIONS(2624), 1, - sym_identifier, - ACTIONS(2626), 1, - anon_sym_LBRACE, - STATE(315), 1, - sym__built_in_function_name, - STATE(740), 1, - sym_expression, - STATE(1841), 1, - sym_identifier_list, - ACTIONS(237), 2, - sym_float, - sym_string, - ACTIONS(239), 2, - anon_sym_true, - anon_sym_false, - STATE(761), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(757), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(759), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(657), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [23709] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(252), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [23805] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(209), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [23901] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(122), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [23997] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(130), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [24093] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(233), 1, - anon_sym_LPAREN, - ACTIONS(235), 1, - sym_integer, - ACTIONS(241), 1, - anon_sym_LBRACK, - ACTIONS(847), 1, - anon_sym_EQ_GT, - ACTIONS(871), 1, - anon_sym_table, - ACTIONS(2624), 1, - sym_identifier, - ACTIONS(2626), 1, - anon_sym_LBRACE, - STATE(341), 1, - sym__built_in_function_name, - STATE(791), 1, - sym_expression, - STATE(1860), 1, - sym_identifier_list, - ACTIONS(237), 2, - sym_float, - sym_string, - ACTIONS(239), 2, - anon_sym_true, - anon_sym_false, - STATE(761), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(757), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(759), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(873), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [24189] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(233), 1, - anon_sym_LPAREN, - ACTIONS(235), 1, - sym_integer, - ACTIONS(241), 1, - anon_sym_LBRACK, - ACTIONS(847), 1, - anon_sym_EQ_GT, - ACTIONS(871), 1, - anon_sym_table, - ACTIONS(2624), 1, - sym_identifier, - ACTIONS(2626), 1, - anon_sym_LBRACE, - STATE(341), 1, - sym__built_in_function_name, - STATE(800), 1, - sym_expression, - STATE(1860), 1, - sym_identifier_list, - ACTIONS(237), 2, - sym_float, - sym_string, - ACTIONS(239), 2, - anon_sym_true, - anon_sym_false, - STATE(761), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(757), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(759), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(873), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [24285] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(233), 1, - anon_sym_LPAREN, - ACTIONS(235), 1, - sym_integer, - ACTIONS(241), 1, - anon_sym_LBRACK, - ACTIONS(847), 1, - anon_sym_EQ_GT, - ACTIONS(871), 1, - anon_sym_table, - ACTIONS(2624), 1, - sym_identifier, - ACTIONS(2626), 1, - anon_sym_LBRACE, - STATE(341), 1, - sym__built_in_function_name, - STATE(794), 1, - sym_expression, - STATE(1860), 1, - sym_identifier_list, - ACTIONS(237), 2, - sym_float, - sym_string, - ACTIONS(239), 2, - anon_sym_true, - anon_sym_false, - STATE(761), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(757), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(759), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(873), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [24381] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(68), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [24477] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(71), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [24573] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(241), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [24669] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3803), 1, - sym_identifier, - ACTIONS(3805), 1, - anon_sym_LBRACE, - ACTIONS(3807), 1, - anon_sym_LPAREN, - ACTIONS(3809), 1, - sym_integer, - ACTIONS(3815), 1, - anon_sym_LBRACK, - ACTIONS(3817), 1, - anon_sym_EQ_GT, - ACTIONS(3819), 1, - anon_sym_table, - STATE(673), 1, - sym__built_in_function_name, - STATE(1515), 1, - sym_expression, - STATE(1770), 1, - sym_identifier_list, - ACTIONS(3811), 2, - sym_float, - sym_string, - ACTIONS(3813), 2, - anon_sym_true, - anon_sym_false, - STATE(1525), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1526), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1527), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3454), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [24765] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(242), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [24861] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(164), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [24957] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(125), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [25053] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(92), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [25149] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3503), 1, - anon_sym_LBRACE, - ACTIONS(3505), 1, - anon_sym_LPAREN, - ACTIONS(3507), 1, - sym_integer, - ACTIONS(3513), 1, - anon_sym_LBRACK, - ACTIONS(3576), 1, - sym_identifier, - ACTIONS(3829), 1, - anon_sym_EQ_GT, - ACTIONS(3831), 1, - anon_sym_table, - STATE(893), 1, - sym_expression, - STATE(928), 1, - sym__built_in_function_name, - STATE(1741), 1, - sym_identifier_list, - ACTIONS(3509), 2, - sym_float, - sym_string, - ACTIONS(3511), 2, - anon_sym_true, - anon_sym_false, - STATE(1009), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(996), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1002), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [25245] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(163), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [25341] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3789), 1, - sym_identifier, - ACTIONS(3791), 1, - anon_sym_EQ_GT, - ACTIONS(3793), 1, - anon_sym_table, - STATE(928), 1, - sym__built_in_function_name, - STATE(1629), 1, - sym_expression, - STATE(1917), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1633), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [25437] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(243), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [25533] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3887), 1, - sym_identifier, - ACTIONS(3889), 1, - anon_sym_EQ_GT, - ACTIONS(3891), 1, - anon_sym_table, - STATE(914), 1, - sym__built_in_function_name, - STATE(1566), 1, - sym_expression, - STATE(1794), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1539), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3869), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [25629] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3887), 1, - sym_identifier, - ACTIONS(3889), 1, - anon_sym_EQ_GT, - ACTIONS(3891), 1, - anon_sym_table, - STATE(914), 1, - sym__built_in_function_name, - STATE(1574), 1, - sym_expression, - STATE(1794), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1539), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3869), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [25725] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3887), 1, - sym_identifier, - ACTIONS(3889), 1, - anon_sym_EQ_GT, - ACTIONS(3891), 1, - anon_sym_table, - STATE(914), 1, - sym__built_in_function_name, - STATE(1567), 1, - sym_expression, - STATE(1794), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1539), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3869), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [25821] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(250), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [25917] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(149), 1, - sym_identifier, - ACTIONS(153), 1, - anon_sym_LPAREN, - ACTIONS(155), 1, - sym_integer, - ACTIONS(161), 1, - anon_sym_LBRACK, - ACTIONS(915), 1, - anon_sym_EQ_GT, - ACTIONS(939), 1, - anon_sym_table, - ACTIONS(1923), 1, - anon_sym_LBRACE, - STATE(325), 1, - sym__built_in_function_name, - STATE(797), 1, - sym_expression, - STATE(2015), 1, - sym_identifier_list, - ACTIONS(157), 2, - sym_float, - sym_string, - ACTIONS(159), 2, - anon_sym_true, - anon_sym_false, - STATE(703), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(713), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(706), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(941), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [26013] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(149), 1, - sym_identifier, - ACTIONS(153), 1, - anon_sym_LPAREN, - ACTIONS(155), 1, - sym_integer, - ACTIONS(161), 1, - anon_sym_LBRACK, - ACTIONS(281), 1, - anon_sym_EQ_GT, - ACTIONS(305), 1, - anon_sym_table, - ACTIONS(1923), 1, - anon_sym_LBRACE, - STATE(311), 1, - sym__built_in_function_name, - STATE(671), 1, - sym_expression, - STATE(1813), 1, - sym_identifier_list, - ACTIONS(157), 2, - sym_float, - sym_string, - ACTIONS(159), 2, - anon_sym_true, - anon_sym_false, - STATE(703), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(713), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(706), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(307), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [26109] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(149), 1, - sym_identifier, - ACTIONS(153), 1, - anon_sym_LPAREN, - ACTIONS(155), 1, - sym_integer, - ACTIONS(161), 1, - anon_sym_LBRACK, - ACTIONS(915), 1, - anon_sym_EQ_GT, - ACTIONS(939), 1, - anon_sym_table, - ACTIONS(1923), 1, - anon_sym_LBRACE, - STATE(325), 1, - sym__built_in_function_name, - STATE(798), 1, - sym_expression, - STATE(2015), 1, - sym_identifier_list, - ACTIONS(157), 2, - sym_float, - sym_string, - ACTIONS(159), 2, - anon_sym_true, - anon_sym_false, - STATE(703), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(713), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(706), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(941), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [26205] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3871), 1, - sym_identifier, - ACTIONS(3873), 1, - anon_sym_EQ_GT, - ACTIONS(3875), 1, - anon_sym_table, - STATE(726), 1, - sym__built_in_function_name, - STATE(1542), 1, - sym_expression, - STATE(1804), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1539), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3582), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [26301] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(247), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [26397] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(244), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [26493] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(149), 1, - sym_identifier, - ACTIONS(153), 1, - anon_sym_LPAREN, - ACTIONS(155), 1, - sym_integer, - ACTIONS(161), 1, - anon_sym_LBRACK, - ACTIONS(281), 1, - anon_sym_EQ_GT, - ACTIONS(305), 1, - anon_sym_table, - ACTIONS(1923), 1, - anon_sym_LBRACE, - STATE(311), 1, - sym__built_in_function_name, - STATE(684), 1, - sym_expression, - STATE(1813), 1, - sym_identifier_list, - ACTIONS(157), 2, - sym_float, - sym_string, - ACTIONS(159), 2, - anon_sym_true, - anon_sym_false, - STATE(703), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(713), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(706), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(307), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [26589] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3503), 1, - anon_sym_LBRACE, - ACTIONS(3505), 1, - anon_sym_LPAREN, - ACTIONS(3507), 1, - sym_integer, - ACTIONS(3513), 1, - anon_sym_LBRACK, - ACTIONS(3576), 1, - sym_identifier, - ACTIONS(3578), 1, - anon_sym_EQ_GT, - ACTIONS(3580), 1, - anon_sym_table, - STATE(726), 1, - sym__built_in_function_name, - STATE(967), 1, - sym_expression, - STATE(1762), 1, - sym_identifier_list, - ACTIONS(3509), 2, - sym_float, - sym_string, - ACTIONS(3511), 2, - anon_sym_true, - anon_sym_false, - STATE(1009), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(996), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1002), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3582), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [26685] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(55), 1, - sym_identifier, - ACTIONS(59), 1, - anon_sym_LPAREN, - ACTIONS(61), 1, - sym_integer, - ACTIONS(67), 1, - anon_sym_LBRACK, - ACTIONS(85), 1, - anon_sym_EQ_GT, - ACTIONS(111), 1, - anon_sym_table, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(2), 1, - sym_expression, - STATE(265), 1, - sym__built_in_function_name, - STATE(1817), 1, - sym_identifier_list, - ACTIONS(63), 2, - sym_float, - sym_string, - ACTIONS(65), 2, - anon_sym_true, - anon_sym_false, - STATE(628), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(633), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(631), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(113), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [26781] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(883), 1, - anon_sym_EQ_GT, - ACTIONS(907), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(338), 1, - sym__built_in_function_name, - STATE(786), 1, - sym_expression, - STATE(1752), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(909), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [26877] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(149), 1, - sym_identifier, - ACTIONS(153), 1, - anon_sym_LPAREN, - ACTIONS(155), 1, - sym_integer, - ACTIONS(161), 1, - anon_sym_LBRACK, - ACTIONS(915), 1, - anon_sym_EQ_GT, - ACTIONS(939), 1, - anon_sym_table, - ACTIONS(1923), 1, - anon_sym_LBRACE, - STATE(325), 1, - sym__built_in_function_name, - STATE(771), 1, - sym_expression, - STATE(2015), 1, - sym_identifier_list, - ACTIONS(157), 2, - sym_float, - sym_string, - ACTIONS(159), 2, - anon_sym_true, - anon_sym_false, - STATE(703), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(713), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(706), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(941), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [26973] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(229), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [27069] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(219), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [27165] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(212), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [27261] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(133), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [27357] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3805), 1, - anon_sym_LBRACE, - ACTIONS(3807), 1, - anon_sym_LPAREN, - ACTIONS(3809), 1, - sym_integer, - ACTIONS(3815), 1, - anon_sym_LBRACK, - ACTIONS(3893), 1, - sym_identifier, - ACTIONS(3895), 1, - anon_sym_EQ_GT, - ACTIONS(3897), 1, - anon_sym_table, - STATE(692), 1, - sym__built_in_function_name, - STATE(1519), 1, - sym_expression, - STATE(2020), 1, - sym_identifier_list, - ACTIONS(3811), 2, - sym_float, - sym_string, - ACTIONS(3813), 2, - anon_sym_true, - anon_sym_false, - STATE(1525), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1526), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1527), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3527), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [27453] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(55), 1, - sym_identifier, - ACTIONS(59), 1, - anon_sym_LPAREN, - ACTIONS(61), 1, - sym_integer, - ACTIONS(67), 1, - anon_sym_LBRACK, - ACTIONS(315), 1, - anon_sym_EQ_GT, - ACTIONS(339), 1, - anon_sym_table, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(296), 1, - sym__built_in_function_name, - STATE(659), 1, - sym_expression, - STATE(1998), 1, - sym_identifier_list, - ACTIONS(63), 2, - sym_float, - sym_string, - ACTIONS(65), 2, - anon_sym_true, - anon_sym_false, - STATE(628), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(633), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(631), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(341), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [27549] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(55), 1, - sym_identifier, - ACTIONS(59), 1, - anon_sym_LPAREN, - ACTIONS(61), 1, - sym_integer, - ACTIONS(67), 1, - anon_sym_LBRACK, - ACTIONS(315), 1, - anon_sym_EQ_GT, - ACTIONS(339), 1, - anon_sym_table, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(296), 1, - sym__built_in_function_name, - STATE(658), 1, - sym_expression, - STATE(1998), 1, - sym_identifier_list, - ACTIONS(63), 2, - sym_float, - sym_string, - ACTIONS(65), 2, - anon_sym_true, - anon_sym_false, - STATE(628), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(633), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(631), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(341), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [27645] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(211), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [27741] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(106), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [27837] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(134), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [27933] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(136), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [28029] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3805), 1, - anon_sym_LBRACE, - ACTIONS(3807), 1, - anon_sym_LPAREN, - ACTIONS(3809), 1, - sym_integer, - ACTIONS(3815), 1, - anon_sym_LBRACK, - ACTIONS(3893), 1, - sym_identifier, - ACTIONS(3895), 1, - anon_sym_EQ_GT, - ACTIONS(3897), 1, - anon_sym_table, - STATE(692), 1, - sym__built_in_function_name, - STATE(1518), 1, - sym_expression, - STATE(2020), 1, - sym_identifier_list, - ACTIONS(3811), 2, - sym_float, - sym_string, - ACTIONS(3813), 2, - anon_sym_true, - anon_sym_false, - STATE(1525), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1526), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1527), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3527), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [28125] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3805), 1, - anon_sym_LBRACE, - ACTIONS(3807), 1, - anon_sym_LPAREN, - ACTIONS(3809), 1, - sym_integer, - ACTIONS(3815), 1, - anon_sym_LBRACK, - ACTIONS(3893), 1, - sym_identifier, - ACTIONS(3895), 1, - anon_sym_EQ_GT, - ACTIONS(3897), 1, - anon_sym_table, - STATE(692), 1, - sym__built_in_function_name, - STATE(1516), 1, - sym_expression, - STATE(2020), 1, - sym_identifier_list, - ACTIONS(3811), 2, - sym_float, - sym_string, - ACTIONS(3813), 2, - anon_sym_true, - anon_sym_false, - STATE(1525), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1526), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1527), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3527), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [28221] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3805), 1, - anon_sym_LBRACE, - ACTIONS(3807), 1, - anon_sym_LPAREN, - ACTIONS(3809), 1, - sym_integer, - ACTIONS(3815), 1, - anon_sym_LBRACK, - ACTIONS(3893), 1, - sym_identifier, - ACTIONS(3895), 1, - anon_sym_EQ_GT, - ACTIONS(3897), 1, - anon_sym_table, - STATE(692), 1, - sym__built_in_function_name, - STATE(1517), 1, - sym_expression, - STATE(2020), 1, - sym_identifier_list, - ACTIONS(3811), 2, - sym_float, - sym_string, - ACTIONS(3813), 2, - anon_sym_true, - anon_sym_false, - STATE(1525), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1526), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1527), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3527), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [28317] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(149), 1, - sym_identifier, - ACTIONS(153), 1, - anon_sym_LPAREN, - ACTIONS(155), 1, - sym_integer, - ACTIONS(161), 1, - anon_sym_LBRACK, - ACTIONS(167), 1, - anon_sym_EQ_GT, - ACTIONS(191), 1, - anon_sym_table, - ACTIONS(1923), 1, - anon_sym_LBRACE, - STATE(284), 1, - sym__built_in_function_name, - STATE(640), 1, - sym_expression, - STATE(1910), 1, - sym_identifier_list, - ACTIONS(157), 2, - sym_float, - sym_string, - ACTIONS(159), 2, - anon_sym_true, - anon_sym_false, - STATE(703), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(713), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(706), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(193), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [28413] = 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(47), 1, anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, + ACTIONS(1341), 1, anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(139), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [28509] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(9), 1, + ACTIONS(1343), 1, anon_sym_LPAREN, - ACTIONS(11), 1, + ACTIONS(1345), 1, sym_integer, - ACTIONS(17), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(140), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [28605] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3436), 1, + ACTIONS(2407), 1, sym_identifier, - ACTIONS(3438), 1, - anon_sym_LBRACE, - ACTIONS(3440), 1, - anon_sym_LPAREN, - ACTIONS(3442), 1, - sym_integer, - ACTIONS(3448), 1, - anon_sym_LBRACK, - ACTIONS(3523), 1, + ACTIONS(2409), 1, anon_sym_EQ_GT, - ACTIONS(3525), 1, + ACTIONS(2411), 1, anon_sym_table, - STATE(692), 1, + STATE(550), 1, sym__built_in_function_name, STATE(964), 1, sym_expression, - STATE(2055), 1, + STATE(1102), 1, sym_identifier_list, - ACTIONS(3444), 2, + ACTIONS(1347), 2, sym_float, sym_string, - ACTIONS(3446), 2, + ACTIONS(1349), 2, anon_sym_true, anon_sym_false, - STATE(990), 2, + STATE(934), 2, sym__context_defined_function, sym_built_in_function, - STATE(981), 5, + STATE(936), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(986), 6, + STATE(919), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, - ACTIONS(3527), 30, + ACTIONS(1359), 30, anon_sym_assert, anon_sym_assert_equal, anon_sym_download, @@ -119746,163 +62691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [28701] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3436), 1, - sym_identifier, - ACTIONS(3438), 1, - anon_sym_LBRACE, - ACTIONS(3440), 1, - anon_sym_LPAREN, - ACTIONS(3442), 1, - sym_integer, - ACTIONS(3448), 1, - anon_sym_LBRACK, - ACTIONS(3523), 1, - anon_sym_EQ_GT, - ACTIONS(3525), 1, - anon_sym_table, - STATE(692), 1, - sym__built_in_function_name, - STATE(962), 1, - sym_expression, - STATE(2055), 1, - sym_identifier_list, - ACTIONS(3444), 2, - sym_float, - sym_string, - ACTIONS(3446), 2, - anon_sym_true, - anon_sym_false, - STATE(990), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(981), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(986), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3527), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [28797] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3436), 1, - sym_identifier, - ACTIONS(3438), 1, - anon_sym_LBRACE, - ACTIONS(3440), 1, - anon_sym_LPAREN, - ACTIONS(3442), 1, - sym_integer, - ACTIONS(3448), 1, - anon_sym_LBRACK, - ACTIONS(3523), 1, - anon_sym_EQ_GT, - ACTIONS(3525), 1, - anon_sym_table, - STATE(692), 1, - sym__built_in_function_name, - STATE(965), 1, - sym_expression, - STATE(2055), 1, - sym_identifier_list, - ACTIONS(3444), 2, - sym_float, - sym_string, - ACTIONS(3446), 2, - anon_sym_true, - anon_sym_false, - STATE(990), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(981), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(986), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3527), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [28893] = 18, + [6802] = 18, ACTIONS(3), 1, sym__comment, ACTIONS(9), 1, @@ -119917,5745 +62706,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(49), 1, anon_sym_table, - ACTIONS(2383), 1, + ACTIONS(1309), 1, anon_sym_LBRACE, - ACTIONS(2676), 1, + ACTIONS(1444), 1, sym_identifier, - STATE(141), 1, + STATE(75), 1, sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [28989] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(138), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [29085] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(149), 1, - sym_identifier, - ACTIONS(153), 1, - anon_sym_LPAREN, - ACTIONS(155), 1, - sym_integer, - ACTIONS(161), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - anon_sym_EQ_GT, - ACTIONS(523), 1, - anon_sym_table, - ACTIONS(1923), 1, - anon_sym_LBRACE, - STATE(320), 1, - sym__built_in_function_name, - STATE(721), 1, - sym_expression, - STATE(1866), 1, - sym_identifier_list, - ACTIONS(157), 2, - sym_float, - sym_string, - ACTIONS(159), 2, - anon_sym_true, - anon_sym_false, - STATE(703), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(713), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(706), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(525), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [29181] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(184), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [29277] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3503), 1, - anon_sym_LBRACE, - ACTIONS(3505), 1, - anon_sym_LPAREN, - ACTIONS(3507), 1, - sym_integer, - ACTIONS(3513), 1, - anon_sym_LBRACK, - ACTIONS(3576), 1, - sym_identifier, - ACTIONS(3829), 1, - anon_sym_EQ_GT, - ACTIONS(3831), 1, - anon_sym_table, - STATE(909), 1, - sym_expression, - STATE(928), 1, - sym__built_in_function_name, - STATE(1741), 1, - sym_identifier_list, - ACTIONS(3509), 2, - sym_float, - sym_string, - ACTIONS(3511), 2, - anon_sym_true, - anon_sym_false, - STATE(1009), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(996), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1002), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [29373] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(104), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [29469] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3789), 1, - sym_identifier, - ACTIONS(3791), 1, - anon_sym_EQ_GT, - ACTIONS(3793), 1, - anon_sym_table, - STATE(928), 1, - sym__built_in_function_name, - STATE(1629), 1, - sym_expression, - STATE(1917), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1631), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [29565] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(145), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [29661] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(180), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [29757] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(240), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [29853] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(108), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [29949] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(135), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [30045] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(111), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [30141] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(883), 1, - anon_sym_EQ_GT, - ACTIONS(907), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(338), 1, - sym__built_in_function_name, - STATE(774), 1, - sym_expression, - STATE(1752), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(909), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [30237] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(883), 1, - anon_sym_EQ_GT, - ACTIONS(907), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(338), 1, - sym__built_in_function_name, - STATE(790), 1, - sym_expression, - STATE(1752), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(909), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [30333] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(883), 1, - anon_sym_EQ_GT, - ACTIONS(907), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(338), 1, - sym__built_in_function_name, - STATE(775), 1, - sym_expression, - STATE(1752), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(909), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [30429] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(221), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [30525] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(146), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [30621] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(1204), 1, - anon_sym_EQ_GT, - ACTIONS(1228), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(52), 1, - sym_expression, - STATE(360), 1, - sym__built_in_function_name, - STATE(2042), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1230), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [30717] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(883), 1, - anon_sym_EQ_GT, - ACTIONS(907), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(338), 1, - sym__built_in_function_name, - STATE(784), 1, - sym_expression, - STATE(1752), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(909), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [30813] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(249), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [30909] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(55), 1, - sym_identifier, - ACTIONS(59), 1, - anon_sym_LPAREN, - ACTIONS(61), 1, - sym_integer, - ACTIONS(67), 1, - anon_sym_LBRACK, - ACTIONS(85), 1, - anon_sym_EQ_GT, - ACTIONS(111), 1, - anon_sym_table, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(265), 1, - sym__built_in_function_name, - STATE(562), 1, - sym_expression, - STATE(1817), 1, - sym_identifier_list, - ACTIONS(63), 2, - sym_float, - sym_string, - ACTIONS(65), 2, - anon_sym_true, - anon_sym_false, - STATE(628), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(633), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(631), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(113), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [31005] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(55), 1, - sym_identifier, - ACTIONS(59), 1, - anon_sym_LPAREN, - ACTIONS(61), 1, - sym_integer, - ACTIONS(67), 1, - anon_sym_LBRACK, - ACTIONS(85), 1, - anon_sym_EQ_GT, - ACTIONS(111), 1, - anon_sym_table, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(265), 1, - sym__built_in_function_name, - STATE(565), 1, - sym_expression, - STATE(1817), 1, - sym_identifier_list, - ACTIONS(63), 2, - sym_float, - sym_string, - ACTIONS(65), 2, - anon_sym_true, - anon_sym_false, - STATE(628), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(633), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(631), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(113), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [31101] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(55), 1, - sym_identifier, - ACTIONS(59), 1, - anon_sym_LPAREN, - ACTIONS(61), 1, - sym_integer, - ACTIONS(67), 1, - anon_sym_LBRACK, - ACTIONS(85), 1, - anon_sym_EQ_GT, - ACTIONS(111), 1, - anon_sym_table, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(265), 1, - sym__built_in_function_name, - STATE(563), 1, - sym_expression, - STATE(1817), 1, - sym_identifier_list, - ACTIONS(63), 2, - sym_float, - sym_string, - ACTIONS(65), 2, - anon_sym_true, - anon_sym_false, - STATE(628), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(633), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(631), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(113), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [31197] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(248), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [31293] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(149), 1, - sym_identifier, - ACTIONS(153), 1, - anon_sym_LPAREN, - ACTIONS(155), 1, - sym_integer, - ACTIONS(161), 1, - anon_sym_LBRACK, - ACTIONS(167), 1, - anon_sym_EQ_GT, - ACTIONS(191), 1, - anon_sym_table, - ACTIONS(1923), 1, - anon_sym_LBRACE, - STATE(284), 1, - sym__built_in_function_name, - STATE(590), 1, - sym_expression, - STATE(1910), 1, - sym_identifier_list, - ACTIONS(157), 2, - sym_float, - sym_string, - ACTIONS(159), 2, - anon_sym_true, - anon_sym_false, - STATE(703), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(713), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(706), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(193), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [31389] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(149), 1, - sym_identifier, - ACTIONS(153), 1, - anon_sym_LPAREN, - ACTIONS(155), 1, - sym_integer, - ACTIONS(161), 1, - anon_sym_LBRACK, - ACTIONS(167), 1, - anon_sym_EQ_GT, - ACTIONS(191), 1, - anon_sym_table, - ACTIONS(1923), 1, - anon_sym_LBRACE, - STATE(284), 1, - sym__built_in_function_name, - STATE(644), 1, - sym_expression, - STATE(1910), 1, - sym_identifier_list, - ACTIONS(157), 2, - sym_float, - sym_string, - ACTIONS(159), 2, - anon_sym_true, - anon_sym_false, - STATE(703), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(713), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(706), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(193), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [31485] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3887), 1, - sym_identifier, - ACTIONS(3889), 1, - anon_sym_EQ_GT, - ACTIONS(3891), 1, - anon_sym_table, - STATE(914), 1, - sym__built_in_function_name, - STATE(1559), 1, - sym_expression, - STATE(1794), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1539), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3869), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [31581] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3119), 1, - anon_sym_EQ_GT, - ACTIONS(3143), 1, - anon_sym_table, - ACTIONS(3899), 1, - sym_identifier, - STATE(780), 1, - sym__built_in_function_name, - STATE(1555), 1, - sym_expression, - STATE(1793), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1539), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3145), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [31677] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(55), 1, - sym_identifier, - ACTIONS(59), 1, - anon_sym_LPAREN, - ACTIONS(61), 1, - sym_integer, - ACTIONS(67), 1, - anon_sym_LBRACK, - ACTIONS(85), 1, - anon_sym_EQ_GT, - ACTIONS(111), 1, - anon_sym_table, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(265), 1, - sym__built_in_function_name, - STATE(572), 1, - sym_expression, - STATE(1817), 1, - sym_identifier_list, - ACTIONS(63), 2, - sym_float, - sym_string, - ACTIONS(65), 2, - anon_sym_true, - anon_sym_false, - STATE(628), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(633), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(631), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(113), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [31773] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(233), 1, - anon_sym_LPAREN, - ACTIONS(235), 1, - sym_integer, - ACTIONS(241), 1, - anon_sym_LBRACK, - ACTIONS(631), 1, - anon_sym_EQ_GT, - ACTIONS(655), 1, - anon_sym_table, - ACTIONS(2624), 1, - sym_identifier, - ACTIONS(2626), 1, - anon_sym_LBRACE, - STATE(315), 1, - sym__built_in_function_name, - STATE(715), 1, - sym_expression, - STATE(1841), 1, - sym_identifier_list, - ACTIONS(237), 2, - sym_float, - sym_string, - ACTIONS(239), 2, - anon_sym_true, - anon_sym_false, - STATE(761), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(757), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(759), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(657), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [31869] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(233), 1, - anon_sym_LPAREN, - ACTIONS(235), 1, - sym_integer, - ACTIONS(241), 1, - anon_sym_LBRACK, - ACTIONS(631), 1, - anon_sym_EQ_GT, - ACTIONS(655), 1, - anon_sym_table, - ACTIONS(2624), 1, - sym_identifier, - ACTIONS(2626), 1, - anon_sym_LBRACE, - STATE(315), 1, - sym__built_in_function_name, - STATE(743), 1, - sym_expression, - STATE(1841), 1, - sym_identifier_list, - ACTIONS(237), 2, - sym_float, - sym_string, - ACTIONS(239), 2, - anon_sym_true, - anon_sym_false, - STATE(761), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(757), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(759), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(657), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [31965] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(233), 1, - anon_sym_LPAREN, - ACTIONS(235), 1, - sym_integer, - ACTIONS(241), 1, - anon_sym_LBRACK, - ACTIONS(631), 1, - anon_sym_EQ_GT, - ACTIONS(655), 1, - anon_sym_table, - ACTIONS(2624), 1, - sym_identifier, - ACTIONS(2626), 1, - anon_sym_LBRACE, - STATE(34), 1, - sym_expression, - STATE(315), 1, - sym__built_in_function_name, - STATE(1841), 1, - sym_identifier_list, - ACTIONS(237), 2, - sym_float, - sym_string, - ACTIONS(239), 2, - anon_sym_true, - anon_sym_false, - STATE(761), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(757), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(759), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(657), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [32061] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(233), 1, - anon_sym_LPAREN, - ACTIONS(235), 1, - sym_integer, - ACTIONS(241), 1, - anon_sym_LBRACK, - ACTIONS(249), 1, - anon_sym_EQ_GT, - ACTIONS(273), 1, - anon_sym_table, - ACTIONS(2624), 1, - sym_identifier, - ACTIONS(2626), 1, - anon_sym_LBRACE, - STATE(302), 1, - sym__built_in_function_name, - STATE(665), 1, - sym_expression, - STATE(1984), 1, - sym_identifier_list, - ACTIONS(237), 2, - sym_float, - sym_string, - ACTIONS(239), 2, - anon_sym_true, - anon_sym_false, - STATE(761), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(757), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(759), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(275), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [32157] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(223), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [32253] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3503), 1, - anon_sym_LBRACE, - ACTIONS(3505), 1, - anon_sym_LPAREN, - ACTIONS(3507), 1, - sym_integer, - ACTIONS(3513), 1, - anon_sym_LBRACK, - ACTIONS(3576), 1, - sym_identifier, - ACTIONS(3829), 1, - anon_sym_EQ_GT, - ACTIONS(3831), 1, - anon_sym_table, - STATE(905), 1, - sym_expression, - STATE(928), 1, - sym__built_in_function_name, - STATE(1741), 1, - sym_identifier_list, - ACTIONS(3509), 2, - sym_float, - sym_string, - ACTIONS(3511), 2, - anon_sym_true, - anon_sym_false, - STATE(1009), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(996), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1002), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [32349] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3877), 1, - sym_identifier, - ACTIONS(3879), 1, - anon_sym_EQ_GT, - ACTIONS(3881), 1, - anon_sym_table, - STATE(914), 1, - sym__built_in_function_name, - STATE(1565), 1, - sym_expression, - STATE(1784), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1539), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3869), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [32445] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(233), 1, - anon_sym_LPAREN, - ACTIONS(235), 1, - sym_integer, - ACTIONS(241), 1, - anon_sym_LBRACK, - ACTIONS(631), 1, - anon_sym_EQ_GT, - ACTIONS(655), 1, - anon_sym_table, - ACTIONS(2624), 1, - sym_identifier, - ACTIONS(2626), 1, - anon_sym_LBRACE, - STATE(315), 1, - sym__built_in_function_name, - STATE(714), 1, - sym_expression, - STATE(1841), 1, - sym_identifier_list, - ACTIONS(237), 2, - sym_float, - sym_string, - ACTIONS(239), 2, - anon_sym_true, - anon_sym_false, - STATE(761), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(757), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(759), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(657), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [32541] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(1347), 1, - sym_logic_operator, - STATE(1348), 1, - sym_math_operator, - ACTIONS(3262), 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(3264), 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, - [32611] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3503), 1, - anon_sym_LBRACE, - ACTIONS(3505), 1, - anon_sym_LPAREN, - ACTIONS(3507), 1, - sym_integer, - ACTIONS(3513), 1, - anon_sym_LBRACK, - ACTIONS(3576), 1, - sym_identifier, - ACTIONS(3829), 1, - anon_sym_EQ_GT, - ACTIONS(3831), 1, - anon_sym_table, - STATE(928), 1, - sym__built_in_function_name, - STATE(1329), 1, - sym_expression, - STATE(1741), 1, - sym_identifier_list, - ACTIONS(3509), 2, - sym_float, - sym_string, - ACTIONS(3511), 2, - anon_sym_true, - anon_sym_false, - STATE(1009), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(996), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1002), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [32707] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(220), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [32803] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3503), 1, - anon_sym_LBRACE, - ACTIONS(3505), 1, - anon_sym_LPAREN, - ACTIONS(3507), 1, - sym_integer, - ACTIONS(3513), 1, - anon_sym_LBRACK, - ACTIONS(3576), 1, - sym_identifier, - ACTIONS(3883), 1, - anon_sym_EQ_GT, - ACTIONS(3885), 1, - anon_sym_table, - STATE(914), 1, - sym__built_in_function_name, - STATE(1052), 1, - sym_expression, - STATE(1773), 1, - sym_identifier_list, - ACTIONS(3509), 2, - sym_float, - sym_string, - ACTIONS(3511), 2, - anon_sym_true, - anon_sym_false, - STATE(1009), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(996), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1002), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3869), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [32899] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3503), 1, - anon_sym_LBRACE, - ACTIONS(3505), 1, - anon_sym_LPAREN, - ACTIONS(3507), 1, - sym_integer, - ACTIONS(3513), 1, - anon_sym_LBRACK, - ACTIONS(3576), 1, - sym_identifier, - ACTIONS(3883), 1, - anon_sym_EQ_GT, - ACTIONS(3885), 1, - anon_sym_table, - STATE(914), 1, - sym__built_in_function_name, - STATE(1072), 1, - sym_expression, - STATE(1773), 1, - sym_identifier_list, - ACTIONS(3509), 2, - sym_float, - sym_string, - ACTIONS(3511), 2, - anon_sym_true, - anon_sym_false, - STATE(1009), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(996), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1002), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3869), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [32995] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3503), 1, - anon_sym_LBRACE, - ACTIONS(3505), 1, - anon_sym_LPAREN, - ACTIONS(3507), 1, - sym_integer, - ACTIONS(3513), 1, - anon_sym_LBRACK, - ACTIONS(3576), 1, - sym_identifier, - ACTIONS(3883), 1, - anon_sym_EQ_GT, - ACTIONS(3885), 1, - anon_sym_table, - STATE(914), 1, - sym__built_in_function_name, - STATE(1073), 1, - sym_expression, - STATE(1773), 1, - sym_identifier_list, - ACTIONS(3509), 2, - sym_float, - sym_string, - ACTIONS(3511), 2, - anon_sym_true, - anon_sym_false, - STATE(1009), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(996), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1002), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3869), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [33091] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3789), 1, - sym_identifier, - ACTIONS(3791), 1, - anon_sym_EQ_GT, - ACTIONS(3793), 1, - anon_sym_table, - STATE(928), 1, - sym__built_in_function_name, - STATE(1629), 1, - sym_expression, - STATE(1917), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1632), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [33187] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(149), 1, - sym_identifier, - ACTIONS(153), 1, - anon_sym_LPAREN, - ACTIONS(155), 1, - sym_integer, - ACTIONS(161), 1, - anon_sym_LBRACK, - ACTIONS(167), 1, - anon_sym_EQ_GT, - ACTIONS(191), 1, - anon_sym_table, - ACTIONS(1923), 1, - anon_sym_LBRACE, - STATE(284), 1, - sym__built_in_function_name, - STATE(597), 1, - sym_expression, - STATE(1910), 1, - sym_identifier_list, - ACTIONS(157), 2, - sym_float, - sym_string, - ACTIONS(159), 2, - anon_sym_true, - anon_sym_false, - STATE(703), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(713), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(706), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(193), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [33283] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3119), 1, - anon_sym_EQ_GT, - ACTIONS(3143), 1, - anon_sym_table, - ACTIONS(3899), 1, - sym_identifier, - STATE(780), 1, - sym__built_in_function_name, - STATE(1552), 1, - sym_expression, - STATE(1793), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1539), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3145), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [33379] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3119), 1, - anon_sym_EQ_GT, - ACTIONS(3143), 1, - anon_sym_table, - ACTIONS(3899), 1, - sym_identifier, - STATE(780), 1, - sym__built_in_function_name, - STATE(1551), 1, - sym_expression, - STATE(1793), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1539), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3145), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [33475] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(55), 1, - sym_identifier, - ACTIONS(59), 1, - anon_sym_LPAREN, - ACTIONS(61), 1, - sym_integer, - ACTIONS(67), 1, - anon_sym_LBRACK, - ACTIONS(315), 1, - anon_sym_EQ_GT, - ACTIONS(339), 1, - anon_sym_table, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(8), 1, - sym_expression, - STATE(296), 1, - sym__built_in_function_name, - STATE(1998), 1, - sym_identifier_list, - ACTIONS(63), 2, - sym_float, - sym_string, - ACTIONS(65), 2, - anon_sym_true, - anon_sym_false, - STATE(628), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(633), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(631), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(341), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [33571] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3503), 1, - anon_sym_LBRACE, - ACTIONS(3505), 1, - anon_sym_LPAREN, - ACTIONS(3507), 1, - sym_integer, - ACTIONS(3513), 1, - anon_sym_LBRACK, - ACTIONS(3576), 1, - sym_identifier, - ACTIONS(3883), 1, - anon_sym_EQ_GT, - ACTIONS(3885), 1, - anon_sym_table, - STATE(914), 1, - sym__built_in_function_name, - STATE(1063), 1, - sym_expression, - STATE(1773), 1, - sym_identifier_list, - ACTIONS(3509), 2, - sym_float, - sym_string, - ACTIONS(3511), 2, - anon_sym_true, - anon_sym_false, - STATE(1009), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(996), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1002), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3869), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [33667] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3119), 1, - anon_sym_EQ_GT, - ACTIONS(3143), 1, - anon_sym_table, - ACTIONS(3899), 1, - sym_identifier, - STATE(780), 1, - sym__built_in_function_name, - STATE(1556), 1, - sym_expression, - STATE(1793), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1539), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3145), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [33763] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(380), 1, - sym__built_in_function_name, - STATE(889), 1, - sym_expression, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [33859] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(73), 1, - anon_sym_DASH, - ACTIONS(3628), 1, - anon_sym_COLON, - STATE(1347), 1, - sym_logic_operator, - STATE(1348), 1, - sym_math_operator, - ACTIONS(79), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(75), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(77), 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(3240), 6, - anon_sym_LBRACE, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - ACTIONS(3242), 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, - [33939] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(1347), 1, - sym_logic_operator, - STATE(1348), 1, - sym_math_operator, - ACTIONS(3252), 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(3254), 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, - [34009] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(73), 1, - anon_sym_DASH, - ACTIONS(3628), 1, - anon_sym_COLON, - STATE(1347), 1, - sym_logic_operator, - STATE(1348), 1, - sym_math_operator, - ACTIONS(79), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(75), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(77), 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(3244), 6, - anon_sym_LBRACE, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - ACTIONS(3246), 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, - [34089] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(55), 1, - sym_identifier, - ACTIONS(59), 1, - anon_sym_LPAREN, - ACTIONS(61), 1, - sym_integer, - ACTIONS(67), 1, - anon_sym_LBRACK, - ACTIONS(201), 1, - anon_sym_EQ_GT, - ACTIONS(225), 1, - anon_sym_table, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(5), 1, - sym_expression, - STATE(286), 1, - sym__built_in_function_name, - STATE(1776), 1, - sym_identifier_list, - ACTIONS(63), 2, - sym_float, - sym_string, - ACTIONS(65), 2, - anon_sym_true, - anon_sym_false, - STATE(628), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(633), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(631), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(227), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [34185] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3503), 1, - anon_sym_LBRACE, - ACTIONS(3505), 1, - anon_sym_LPAREN, - ACTIONS(3507), 1, - sym_integer, - ACTIONS(3513), 1, - anon_sym_LBRACK, - ACTIONS(3576), 1, - sym_identifier, - ACTIONS(3829), 1, - anon_sym_EQ_GT, - ACTIONS(3831), 1, - anon_sym_table, - STATE(928), 1, - sym__built_in_function_name, - STATE(1343), 1, - sym_expression, - STATE(1741), 1, - sym_identifier_list, - ACTIONS(3509), 2, - sym_float, - sym_string, - ACTIONS(3511), 2, - anon_sym_true, - anon_sym_false, - STATE(1009), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(996), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1002), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [34281] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3503), 1, - anon_sym_LBRACE, - ACTIONS(3505), 1, - anon_sym_LPAREN, - ACTIONS(3507), 1, - sym_integer, - ACTIONS(3513), 1, - anon_sym_LBRACK, - ACTIONS(3576), 1, - sym_identifier, - ACTIONS(3829), 1, - anon_sym_EQ_GT, - ACTIONS(3831), 1, - anon_sym_table, - STATE(928), 1, - sym__built_in_function_name, - STATE(1344), 1, - sym_expression, - STATE(1741), 1, - sym_identifier_list, - ACTIONS(3509), 2, - sym_float, - sym_string, - ACTIONS(3511), 2, - anon_sym_true, - anon_sym_false, - STATE(1009), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(996), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1002), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [34377] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(1442), 1, - anon_sym_EQ_GT, - ACTIONS(1466), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(366), 1, - sym__built_in_function_name, - STATE(847), 1, - sym_expression, - STATE(1823), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1468), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [34473] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3503), 1, - anon_sym_LBRACE, - ACTIONS(3505), 1, - anon_sym_LPAREN, - ACTIONS(3507), 1, - sym_integer, - ACTIONS(3513), 1, - anon_sym_LBRACK, - ACTIONS(3576), 1, - sym_identifier, - ACTIONS(3829), 1, - anon_sym_EQ_GT, - ACTIONS(3831), 1, - anon_sym_table, - STATE(928), 1, - sym__built_in_function_name, - STATE(1345), 1, - sym_expression, - STATE(1741), 1, - sym_identifier_list, - ACTIONS(3509), 2, - sym_float, - sym_string, - ACTIONS(3511), 2, - anon_sym_true, - anon_sym_false, - STATE(1009), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(996), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1002), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [34569] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(55), 1, - sym_identifier, - ACTIONS(59), 1, - anon_sym_LPAREN, - ACTIONS(61), 1, - sym_integer, - ACTIONS(67), 1, - anon_sym_LBRACK, - ACTIONS(201), 1, - anon_sym_EQ_GT, - ACTIONS(225), 1, - anon_sym_table, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(286), 1, - sym__built_in_function_name, - STATE(599), 1, - sym_expression, - STATE(1776), 1, - sym_identifier_list, - ACTIONS(63), 2, - sym_float, - sym_string, - ACTIONS(65), 2, - anon_sym_true, - anon_sym_false, - STATE(628), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(633), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(631), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(227), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [34665] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3871), 1, - sym_identifier, - ACTIONS(3873), 1, - anon_sym_EQ_GT, - ACTIONS(3875), 1, - anon_sym_table, - STATE(726), 1, - sym__built_in_function_name, - STATE(1546), 1, - sym_expression, - STATE(1804), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1539), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3582), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [34761] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3871), 1, - sym_identifier, - ACTIONS(3873), 1, - anon_sym_EQ_GT, - ACTIONS(3875), 1, - anon_sym_table, - STATE(726), 1, - sym__built_in_function_name, - STATE(1536), 1, - sym_expression, - STATE(1804), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1539), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3582), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [34857] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3871), 1, - sym_identifier, - ACTIONS(3873), 1, - anon_sym_EQ_GT, - ACTIONS(3875), 1, - anon_sym_table, - STATE(726), 1, - sym__built_in_function_name, - STATE(1534), 1, - sym_expression, - STATE(1804), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1539), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3582), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [34953] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(191), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [35049] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(192), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [35145] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(193), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [35241] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(194), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [35337] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(233), 1, - anon_sym_LPAREN, - ACTIONS(235), 1, - sym_integer, - ACTIONS(241), 1, - anon_sym_LBRACK, - ACTIONS(631), 1, - anon_sym_EQ_GT, - ACTIONS(655), 1, - anon_sym_table, - ACTIONS(2624), 1, - sym_identifier, - ACTIONS(2626), 1, - anon_sym_LBRACE, - STATE(315), 1, - sym__built_in_function_name, - STATE(700), 1, - sym_expression, - STATE(1841), 1, - sym_identifier_list, - ACTIONS(237), 2, - sym_float, - sym_string, - ACTIONS(239), 2, - anon_sym_true, - anon_sym_false, - STATE(761), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(757), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(759), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(657), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [35433] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(233), 1, - anon_sym_LPAREN, - ACTIONS(235), 1, - sym_integer, - ACTIONS(241), 1, - anon_sym_LBRACK, - ACTIONS(631), 1, - anon_sym_EQ_GT, - ACTIONS(655), 1, - anon_sym_table, - ACTIONS(2624), 1, - sym_identifier, - ACTIONS(2626), 1, - anon_sym_LBRACE, - STATE(14), 1, - sym_expression, - STATE(315), 1, - sym__built_in_function_name, - STATE(1841), 1, - sym_identifier_list, - ACTIONS(237), 2, - sym_float, - sym_string, - ACTIONS(239), 2, - anon_sym_true, - anon_sym_false, - STATE(761), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(757), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(759), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(657), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [35529] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(233), 1, - anon_sym_LPAREN, - ACTIONS(235), 1, - sym_integer, - ACTIONS(241), 1, - anon_sym_LBRACK, - ACTIONS(249), 1, - anon_sym_EQ_GT, - ACTIONS(273), 1, - anon_sym_table, - ACTIONS(2624), 1, - sym_identifier, - ACTIONS(2626), 1, - anon_sym_LBRACE, - STATE(302), 1, - sym__built_in_function_name, - STATE(675), 1, - sym_expression, - STATE(1984), 1, - sym_identifier_list, - ACTIONS(237), 2, - sym_float, - sym_string, - ACTIONS(239), 2, - anon_sym_true, - anon_sym_false, - STATE(761), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(757), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(759), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(275), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [35625] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(233), 1, - anon_sym_LPAREN, - ACTIONS(235), 1, - sym_integer, - ACTIONS(241), 1, - anon_sym_LBRACK, - ACTIONS(249), 1, - anon_sym_EQ_GT, - ACTIONS(273), 1, - anon_sym_table, - ACTIONS(2624), 1, - sym_identifier, - ACTIONS(2626), 1, - anon_sym_LBRACE, - STATE(302), 1, - sym__built_in_function_name, - STATE(667), 1, - sym_expression, - STATE(1984), 1, - sym_identifier_list, - ACTIONS(237), 2, - sym_float, - sym_string, - ACTIONS(239), 2, - anon_sym_true, - anon_sym_false, - STATE(761), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(757), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(759), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(275), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [35721] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(233), 1, - anon_sym_LPAREN, - ACTIONS(235), 1, - sym_integer, - ACTIONS(241), 1, - anon_sym_LBRACK, - ACTIONS(249), 1, - anon_sym_EQ_GT, - ACTIONS(273), 1, - anon_sym_table, - ACTIONS(2624), 1, - sym_identifier, - ACTIONS(2626), 1, - anon_sym_LBRACE, - STATE(302), 1, - sym__built_in_function_name, - STATE(678), 1, - sym_expression, - STATE(1984), 1, - sym_identifier_list, - ACTIONS(237), 2, - sym_float, - sym_string, - ACTIONS(239), 2, - anon_sym_true, - anon_sym_false, - STATE(761), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(757), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(759), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(275), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [35817] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3863), 1, - sym_identifier, - ACTIONS(3865), 1, - anon_sym_EQ_GT, - ACTIONS(3867), 1, - anon_sym_table, - STATE(914), 1, - sym__built_in_function_name, - STATE(1560), 1, - sym_expression, - STATE(1922), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1539), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3869), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [35913] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, STATE(222), 1, - sym_expression, - STATE(380), 1, sym__built_in_function_name, - STATE(1890), 1, + STATE(1143), 1, sym_identifier_list, ACTIONS(13), 2, sym_float, @@ -125663,16 +62722,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(15), 2, anon_sym_true, anon_sym_false, - STATE(874), 2, + STATE(470), 2, sym__context_defined_function, sym_built_in_function, - STATE(844), 5, + STATE(462), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(866), 6, + STATE(468), 6, sym__expression_kind, sym_value, sym_index, @@ -125710,163 +62769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [36009] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(55), 1, - sym_identifier, - ACTIONS(59), 1, - anon_sym_LPAREN, - ACTIONS(61), 1, - sym_integer, - ACTIONS(67), 1, - anon_sym_LBRACK, - ACTIONS(121), 1, - anon_sym_EQ_GT, - ACTIONS(145), 1, - anon_sym_table, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(271), 1, - sym__built_in_function_name, - STATE(579), 1, - sym_expression, - STATE(2030), 1, - sym_identifier_list, - ACTIONS(63), 2, - sym_float, - sym_string, - ACTIONS(65), 2, - anon_sym_true, - anon_sym_false, - STATE(628), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(633), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(631), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(147), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [36105] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(55), 1, - sym_identifier, - ACTIONS(59), 1, - anon_sym_LPAREN, - ACTIONS(61), 1, - sym_integer, - ACTIONS(67), 1, - anon_sym_LBRACK, - ACTIONS(315), 1, - anon_sym_EQ_GT, - ACTIONS(339), 1, - anon_sym_table, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(296), 1, - sym__built_in_function_name, - STATE(676), 1, - sym_expression, - STATE(1998), 1, - sym_identifier_list, - ACTIONS(63), 2, - sym_float, - sym_string, - ACTIONS(65), 2, - anon_sym_true, - anon_sym_false, - STATE(628), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(633), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(631), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(341), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [36201] = 18, + [6898] = 18, ACTIONS(3), 1, sym__comment, ACTIONS(9), 1, @@ -125881,15 +62784,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(49), 1, anon_sym_table, - ACTIONS(2383), 1, + ACTIONS(1309), 1, anon_sym_LBRACE, - ACTIONS(2676), 1, + ACTIONS(1444), 1, sym_identifier, - STATE(216), 1, + STATE(76), 1, sym_expression, - STATE(380), 1, + STATE(222), 1, sym__built_in_function_name, - STATE(1890), 1, + STATE(1143), 1, sym_identifier_list, ACTIONS(13), 2, sym_float, @@ -125897,16 +62800,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(15), 2, anon_sym_true, anon_sym_false, - STATE(874), 2, + STATE(470), 2, sym__context_defined_function, sym_built_in_function, - STATE(844), 5, + STATE(462), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(866), 6, + STATE(468), 6, sym__expression_kind, sym_value, sym_index, @@ -125944,163 +62847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [36297] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(1204), 1, - anon_sym_EQ_GT, - ACTIONS(1228), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(360), 1, - sym__built_in_function_name, - STATE(829), 1, - sym_expression, - STATE(2042), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1230), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [36393] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(1204), 1, - anon_sym_EQ_GT, - ACTIONS(1228), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(26), 1, - sym_expression, - STATE(360), 1, - sym__built_in_function_name, - STATE(2042), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1230), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [36489] = 18, + [6994] = 18, ACTIONS(3), 1, sym__comment, ACTIONS(9), 1, @@ -126115,15 +62862,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(49), 1, anon_sym_table, - ACTIONS(2383), 1, + ACTIONS(1309), 1, anon_sym_LBRACE, - ACTIONS(2676), 1, + ACTIONS(1444), 1, sym_identifier, - STATE(207), 1, + STATE(78), 1, sym_expression, - STATE(380), 1, + STATE(222), 1, sym__built_in_function_name, - STATE(1890), 1, + STATE(1143), 1, sym_identifier_list, ACTIONS(13), 2, sym_float, @@ -126131,16 +62878,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(15), 2, anon_sym_true, anon_sym_false, - STATE(874), 2, + STATE(470), 2, sym__context_defined_function, sym_built_in_function, - STATE(844), 5, + STATE(462), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(866), 6, + STATE(468), 6, sym__expression_kind, sym_value, sym_index, @@ -126178,7 +62925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [36585] = 18, + [7090] = 18, ACTIONS(3), 1, sym__comment, ACTIONS(9), 1, @@ -126193,15 +62940,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(49), 1, anon_sym_table, - ACTIONS(2383), 1, + ACTIONS(1309), 1, anon_sym_LBRACE, - ACTIONS(2676), 1, + ACTIONS(1444), 1, sym_identifier, - STATE(206), 1, + STATE(79), 1, sym_expression, - STATE(380), 1, + STATE(222), 1, sym__built_in_function_name, - STATE(1890), 1, + STATE(1143), 1, sym_identifier_list, ACTIONS(13), 2, sym_float, @@ -126209,16 +62956,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(15), 2, anon_sym_true, anon_sym_false, - STATE(874), 2, + STATE(470), 2, sym__context_defined_function, sym_built_in_function, - STATE(844), 5, + STATE(462), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(866), 6, + STATE(468), 6, sym__expression_kind, sym_value, sym_index, @@ -126256,7 +63003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [36681] = 18, + [7186] = 18, ACTIONS(3), 1, sym__comment, ACTIONS(9), 1, @@ -126271,15 +63018,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(49), 1, anon_sym_table, - ACTIONS(2383), 1, + ACTIONS(1309), 1, anon_sym_LBRACE, - ACTIONS(2676), 1, + ACTIONS(1444), 1, sym_identifier, - STATE(205), 1, + STATE(125), 1, sym_expression, - STATE(380), 1, + STATE(222), 1, sym__built_in_function_name, - STATE(1890), 1, + STATE(1143), 1, sym_identifier_list, ACTIONS(13), 2, sym_float, @@ -126287,16 +63034,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(15), 2, anon_sym_true, anon_sym_false, - STATE(874), 2, + STATE(470), 2, sym__context_defined_function, sym_built_in_function, - STATE(844), 5, + STATE(462), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(866), 6, + STATE(468), 6, sym__expression_kind, sym_value, sym_index, @@ -126334,7 +63081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [36777] = 18, + [7282] = 18, ACTIONS(3), 1, sym__comment, ACTIONS(9), 1, @@ -126349,15 +63096,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(49), 1, anon_sym_table, - ACTIONS(2383), 1, + ACTIONS(1309), 1, anon_sym_LBRACE, - ACTIONS(2676), 1, + ACTIONS(1444), 1, sym_identifier, - STATE(204), 1, + STATE(85), 1, sym_expression, - STATE(380), 1, + STATE(222), 1, sym__built_in_function_name, - STATE(1890), 1, + STATE(1143), 1, sym_identifier_list, ACTIONS(13), 2, sym_float, @@ -126365,16 +63112,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(15), 2, anon_sym_true, anon_sym_false, - STATE(874), 2, + STATE(470), 2, sym__context_defined_function, sym_built_in_function, - STATE(844), 5, + STATE(462), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(866), 6, + STATE(468), 6, sym__expression_kind, sym_value, sym_index, @@ -126412,241 +63159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [36873] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(55), 1, - sym_identifier, - ACTIONS(59), 1, - anon_sym_LPAREN, - ACTIONS(61), 1, - sym_integer, - ACTIONS(67), 1, - anon_sym_LBRACK, - ACTIONS(121), 1, - anon_sym_EQ_GT, - ACTIONS(145), 1, - anon_sym_table, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(271), 1, - sym__built_in_function_name, - STATE(585), 1, - sym_expression, - STATE(2030), 1, - sym_identifier_list, - ACTIONS(63), 2, - sym_float, - sym_string, - ACTIONS(65), 2, - anon_sym_true, - anon_sym_false, - STATE(628), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(633), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(631), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(147), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [36969] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(55), 1, - sym_identifier, - ACTIONS(59), 1, - anon_sym_LPAREN, - ACTIONS(61), 1, - sym_integer, - ACTIONS(67), 1, - anon_sym_LBRACK, - ACTIONS(121), 1, - anon_sym_EQ_GT, - ACTIONS(145), 1, - anon_sym_table, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(271), 1, - sym__built_in_function_name, - STATE(586), 1, - sym_expression, - STATE(2030), 1, - sym_identifier_list, - ACTIONS(63), 2, - sym_float, - sym_string, - ACTIONS(65), 2, - anon_sym_true, - anon_sym_false, - STATE(628), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(633), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(631), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(147), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [37065] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(55), 1, - sym_identifier, - ACTIONS(59), 1, - anon_sym_LPAREN, - ACTIONS(61), 1, - sym_integer, - ACTIONS(67), 1, - anon_sym_LBRACK, - ACTIONS(121), 1, - anon_sym_EQ_GT, - ACTIONS(145), 1, - anon_sym_table, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(271), 1, - sym__built_in_function_name, - STATE(578), 1, - sym_expression, - STATE(2030), 1, - sym_identifier_list, - ACTIONS(63), 2, - sym_float, - sym_string, - ACTIONS(65), 2, - anon_sym_true, - anon_sym_false, - STATE(628), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(633), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(631), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(147), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [37161] = 18, + [7378] = 18, ACTIONS(3), 1, sym__comment, ACTIONS(9), 1, @@ -126661,15 +63174,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(49), 1, anon_sym_table, - ACTIONS(2383), 1, + ACTIONS(1309), 1, anon_sym_LBRACE, - ACTIONS(2676), 1, + ACTIONS(1444), 1, sym_identifier, - STATE(203), 1, + STATE(86), 1, sym_expression, - STATE(380), 1, + STATE(222), 1, sym__built_in_function_name, - STATE(1890), 1, + STATE(1143), 1, sym_identifier_list, ACTIONS(13), 2, sym_float, @@ -126677,16 +63190,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(15), 2, anon_sym_true, anon_sym_false, - STATE(874), 2, + STATE(470), 2, sym__context_defined_function, sym_built_in_function, - STATE(844), 5, + STATE(462), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(866), 6, + STATE(468), 6, sym__expression_kind, sym_value, sym_index, @@ -126724,7 +63237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [37257] = 18, + [7474] = 18, ACTIONS(3), 1, sym__comment, ACTIONS(9), 1, @@ -126739,15 +63252,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(49), 1, anon_sym_table, - ACTIONS(2383), 1, + ACTIONS(1309), 1, anon_sym_LBRACE, - ACTIONS(2676), 1, + ACTIONS(1444), 1, sym_identifier, - STATE(195), 1, + STATE(127), 1, sym_expression, - STATE(380), 1, + STATE(222), 1, sym__built_in_function_name, - STATE(1890), 1, + STATE(1143), 1, sym_identifier_list, ACTIONS(13), 2, sym_float, @@ -126755,16 +63268,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(15), 2, anon_sym_true, anon_sym_false, - STATE(874), 2, + STATE(470), 2, sym__context_defined_function, sym_built_in_function, - STATE(844), 5, + STATE(462), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(866), 6, + STATE(468), 6, sym__expression_kind, sym_value, sym_index, @@ -126802,163 +63315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [37353] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(1204), 1, - anon_sym_EQ_GT, - ACTIONS(1228), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(360), 1, - sym__built_in_function_name, - STATE(835), 1, - sym_expression, - STATE(2042), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1230), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [37449] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(1204), 1, - anon_sym_EQ_GT, - ACTIONS(1228), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(360), 1, - sym__built_in_function_name, - STATE(831), 1, - sym_expression, - STATE(2042), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1230), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [37545] = 18, + [7570] = 18, ACTIONS(3), 1, sym__comment, ACTIONS(9), 1, @@ -126973,15 +63330,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(49), 1, anon_sym_table, - ACTIONS(2383), 1, + ACTIONS(1309), 1, anon_sym_LBRACE, - ACTIONS(2676), 1, + ACTIONS(1444), 1, sym_identifier, - STATE(196), 1, + STATE(87), 1, sym_expression, - STATE(380), 1, + STATE(222), 1, sym__built_in_function_name, - STATE(1890), 1, + STATE(1143), 1, sym_identifier_list, ACTIONS(13), 2, sym_float, @@ -126989,16 +63346,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(15), 2, anon_sym_true, anon_sym_false, - STATE(874), 2, + STATE(470), 2, sym__context_defined_function, sym_built_in_function, - STATE(844), 5, + STATE(462), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(866), 6, + STATE(468), 6, sym__expression_kind, sym_value, sym_index, @@ -127036,54 +63393,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [37641] = 18, + [7666] = 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(47), 1, anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, + ACTIONS(2047), 1, anon_sym_LBRACE, - ACTIONS(2676), 1, + ACTIONS(2049), 1, + anon_sym_LPAREN, + ACTIONS(2051), 1, + sym_integer, + ACTIONS(2057), 1, + anon_sym_LBRACK, + ACTIONS(2089), 1, sym_identifier, - STATE(200), 1, - sym_expression, - STATE(380), 1, + ACTIONS(2413), 1, + anon_sym_EQ_GT, + ACTIONS(2415), 1, + anon_sym_table, + STATE(502), 1, sym__built_in_function_name, - STATE(1890), 1, + STATE(637), 1, + sym_expression, + STATE(1106), 1, sym_identifier_list, - ACTIONS(13), 2, + ACTIONS(2053), 2, sym_float, sym_string, - ACTIONS(15), 2, + ACTIONS(2055), 2, anon_sym_true, anon_sym_false, - STATE(874), 2, + STATE(587), 2, sym__context_defined_function, sym_built_in_function, - STATE(844), 5, + STATE(586), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(866), 6, + STATE(585), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, - ACTIONS(51), 30, + ACTIONS(2417), 30, anon_sym_assert, anon_sym_assert_equal, anon_sym_download, @@ -127114,54 +63471,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [37737] = 18, + [7762] = 18, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, - ACTIONS(55), 1, - sym_identifier, - ACTIONS(59), 1, - anon_sym_LPAREN, - ACTIONS(61), 1, - sym_integer, - ACTIONS(67), 1, - anon_sym_LBRACK, - ACTIONS(201), 1, - anon_sym_EQ_GT, - ACTIONS(225), 1, - anon_sym_table, - ACTIONS(2445), 1, + ACTIONS(1341), 1, anon_sym_LBRACE, - STATE(286), 1, + ACTIONS(1343), 1, + anon_sym_LPAREN, + ACTIONS(1345), 1, + sym_integer, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(2409), 1, + anon_sym_EQ_GT, + ACTIONS(2411), 1, + anon_sym_table, + ACTIONS(2419), 1, + sym_identifier, + STATE(550), 1, sym__built_in_function_name, - STATE(641), 1, + STATE(966), 1, sym_expression, - STATE(1776), 1, + STATE(1102), 1, sym_identifier_list, - ACTIONS(63), 2, + ACTIONS(1347), 2, sym_float, sym_string, - ACTIONS(65), 2, + ACTIONS(1349), 2, anon_sym_true, anon_sym_false, - STATE(628), 2, + STATE(934), 2, sym__context_defined_function, sym_built_in_function, - STATE(633), 5, + STATE(936), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(631), 6, + STATE(919), 6, sym__expression_kind, sym_value, sym_index, sym_math, sym_logic, sym_function_call, - ACTIONS(227), 30, + ACTIONS(1359), 30, anon_sym_assert, anon_sym_assert_equal, anon_sym_download, @@ -127192,85 +63549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [37833] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(230), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [37929] = 18, + [7858] = 18, ACTIONS(3), 1, sym__comment, ACTIONS(9), 1, @@ -127281,6883 +63560,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(47), 1, anon_sym_PIPE, - ACTIONS(1204), 1, + ACTIONS(195), 1, anon_sym_EQ_GT, - ACTIONS(1228), 1, + ACTIONS(219), 1, anon_sym_table, - ACTIONS(2383), 1, + ACTIONS(1309), 1, anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(360), 1, - sym__built_in_function_name, - STATE(834), 1, - sym_expression, - STATE(2042), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1230), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [38025] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(883), 1, - anon_sym_EQ_GT, - ACTIONS(907), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(19), 1, - sym_expression, - STATE(338), 1, - sym__built_in_function_name, - STATE(1752), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(909), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [38121] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3789), 1, - sym_identifier, - ACTIONS(3791), 1, - anon_sym_EQ_GT, - ACTIONS(3793), 1, - anon_sym_table, - STATE(928), 1, - sym__built_in_function_name, - STATE(1617), 1, - sym_expression, - STATE(1917), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1539), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [38217] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3863), 1, - sym_identifier, - ACTIONS(3865), 1, - anon_sym_EQ_GT, - ACTIONS(3867), 1, - anon_sym_table, - STATE(914), 1, - sym__built_in_function_name, - STATE(1570), 1, - sym_expression, - STATE(1922), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1539), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3869), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [38313] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3789), 1, - sym_identifier, - ACTIONS(3791), 1, - anon_sym_EQ_GT, - ACTIONS(3793), 1, - anon_sym_table, - STATE(928), 1, - sym__built_in_function_name, - STATE(1615), 1, - sym_expression, - STATE(1917), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1539), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [38409] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3789), 1, - sym_identifier, - ACTIONS(3791), 1, - anon_sym_EQ_GT, - ACTIONS(3793), 1, - anon_sym_table, - STATE(928), 1, - sym__built_in_function_name, - STATE(1614), 1, - sym_expression, - STATE(1917), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1539), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [38505] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(233), 1, - anon_sym_LPAREN, - ACTIONS(235), 1, - sym_integer, - ACTIONS(241), 1, - anon_sym_LBRACK, - ACTIONS(1288), 1, - anon_sym_EQ_GT, - ACTIONS(1312), 1, - anon_sym_table, - ACTIONS(2624), 1, - sym_identifier, - ACTIONS(2626), 1, - anon_sym_LBRACE, - STATE(36), 1, - sym_expression, - STATE(351), 1, - sym__built_in_function_name, - STATE(1926), 1, - sym_identifier_list, - ACTIONS(237), 2, - sym_float, - sym_string, - ACTIONS(239), 2, - anon_sym_true, - anon_sym_false, - STATE(761), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(757), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(759), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1314), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [38601] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(233), 1, - anon_sym_LPAREN, - ACTIONS(235), 1, - sym_integer, - ACTIONS(241), 1, - anon_sym_LBRACK, - ACTIONS(1288), 1, - anon_sym_EQ_GT, - ACTIONS(1312), 1, - anon_sym_table, - ACTIONS(2624), 1, - sym_identifier, - ACTIONS(2626), 1, - anon_sym_LBRACE, - STATE(351), 1, - sym__built_in_function_name, - STATE(826), 1, - sym_expression, - STATE(1926), 1, - sym_identifier_list, - ACTIONS(237), 2, - sym_float, - sym_string, - ACTIONS(239), 2, - anon_sym_true, - anon_sym_false, - STATE(761), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(757), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(759), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1314), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [38697] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3789), 1, - sym_identifier, - ACTIONS(3791), 1, - anon_sym_EQ_GT, - ACTIONS(3793), 1, - anon_sym_table, - STATE(928), 1, - sym__built_in_function_name, - STATE(1612), 1, - sym_expression, - STATE(1917), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1539), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [38793] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(149), 1, - sym_identifier, - ACTIONS(153), 1, - anon_sym_LPAREN, - ACTIONS(155), 1, - sym_integer, - ACTIONS(161), 1, - anon_sym_LBRACK, - ACTIONS(281), 1, - anon_sym_EQ_GT, - ACTIONS(305), 1, - anon_sym_table, - ACTIONS(1923), 1, - anon_sym_LBRACE, - STATE(7), 1, - sym_expression, - STATE(311), 1, - sym__built_in_function_name, - STATE(1813), 1, - sym_identifier_list, - ACTIONS(157), 2, - sym_float, - sym_string, - ACTIONS(159), 2, - anon_sym_true, - anon_sym_false, - STATE(703), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(713), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(706), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(307), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [38889] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3503), 1, - anon_sym_LBRACE, - ACTIONS(3505), 1, - anon_sym_LPAREN, - ACTIONS(3507), 1, - sym_integer, - ACTIONS(3513), 1, - anon_sym_LBRACK, - ACTIONS(3515), 1, - anon_sym_EQ_GT, - ACTIONS(3517), 1, - anon_sym_table, - ACTIONS(3576), 1, - sym_identifier, - STATE(780), 1, - sym__built_in_function_name, - STATE(973), 1, - sym_expression, - STATE(1980), 1, - sym_identifier_list, - ACTIONS(3509), 2, - sym_float, - sym_string, - ACTIONS(3511), 2, - anon_sym_true, - anon_sym_false, - STATE(1009), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(996), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1002), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3145), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [38985] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(166), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [39081] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(883), 1, - anon_sym_EQ_GT, - ACTIONS(907), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(338), 1, - sym__built_in_function_name, - STATE(751), 1, - sym_expression, - STATE(1752), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(909), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [39177] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3503), 1, - anon_sym_LBRACE, - ACTIONS(3505), 1, - anon_sym_LPAREN, - ACTIONS(3507), 1, - sym_integer, - ACTIONS(3513), 1, - anon_sym_LBRACK, - ACTIONS(3515), 1, - anon_sym_EQ_GT, - ACTIONS(3517), 1, - anon_sym_table, - ACTIONS(3576), 1, - sym_identifier, - STATE(780), 1, - sym__built_in_function_name, - STATE(972), 1, - sym_expression, - STATE(1980), 1, - sym_identifier_list, - ACTIONS(3509), 2, - sym_float, - sym_string, - ACTIONS(3511), 2, - anon_sym_true, - anon_sym_false, - STATE(1009), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(996), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1002), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3145), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [39273] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3503), 1, - anon_sym_LBRACE, - ACTIONS(3505), 1, - anon_sym_LPAREN, - ACTIONS(3507), 1, - sym_integer, - ACTIONS(3513), 1, - anon_sym_LBRACK, - ACTIONS(3515), 1, - anon_sym_EQ_GT, - ACTIONS(3517), 1, - anon_sym_table, - ACTIONS(3576), 1, - sym_identifier, - STATE(780), 1, - sym__built_in_function_name, - STATE(971), 1, - sym_expression, - STATE(1980), 1, - sym_identifier_list, - ACTIONS(3509), 2, - sym_float, - sym_string, - ACTIONS(3511), 2, - anon_sym_true, - anon_sym_false, - STATE(1009), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(996), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1002), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3145), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [39369] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(149), 1, - sym_identifier, - ACTIONS(153), 1, - anon_sym_LPAREN, - ACTIONS(155), 1, - sym_integer, - ACTIONS(161), 1, - anon_sym_LBRACK, - ACTIONS(915), 1, - anon_sym_EQ_GT, - ACTIONS(939), 1, - anon_sym_table, - ACTIONS(1923), 1, - anon_sym_LBRACE, - STATE(325), 1, - sym__built_in_function_name, - STATE(768), 1, - sym_expression, - STATE(2015), 1, - sym_identifier_list, - ACTIONS(157), 2, - sym_float, - sym_string, - ACTIONS(159), 2, - anon_sym_true, - anon_sym_false, - STATE(703), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(713), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(706), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(941), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [39465] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3436), 1, - sym_identifier, - ACTIONS(3438), 1, - anon_sym_LBRACE, - ACTIONS(3440), 1, - anon_sym_LPAREN, - ACTIONS(3442), 1, - sym_integer, - ACTIONS(3448), 1, - anon_sym_LBRACK, - ACTIONS(3450), 1, - anon_sym_EQ_GT, - ACTIONS(3452), 1, - anon_sym_table, - STATE(673), 1, - sym__built_in_function_name, - STATE(950), 1, - sym_expression, - STATE(1920), 1, - sym_identifier_list, - ACTIONS(3444), 2, - sym_float, - sym_string, - ACTIONS(3446), 2, - anon_sym_true, - anon_sym_false, - STATE(990), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(981), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(986), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3454), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [39561] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3436), 1, - sym_identifier, - ACTIONS(3438), 1, - anon_sym_LBRACE, - ACTIONS(3440), 1, - anon_sym_LPAREN, - ACTIONS(3442), 1, - sym_integer, - ACTIONS(3448), 1, - anon_sym_LBRACK, - ACTIONS(3450), 1, - anon_sym_EQ_GT, - ACTIONS(3452), 1, - anon_sym_table, - STATE(673), 1, - sym__built_in_function_name, - STATE(952), 1, - sym_expression, - STATE(1920), 1, - sym_identifier_list, - ACTIONS(3444), 2, - sym_float, - sym_string, - ACTIONS(3446), 2, - anon_sym_true, - anon_sym_false, - STATE(990), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(981), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(986), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3454), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [39657] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3436), 1, - sym_identifier, - ACTIONS(3438), 1, - anon_sym_LBRACE, - ACTIONS(3440), 1, - anon_sym_LPAREN, - ACTIONS(3442), 1, - sym_integer, - ACTIONS(3448), 1, - anon_sym_LBRACK, - ACTIONS(3450), 1, - anon_sym_EQ_GT, - ACTIONS(3452), 1, - anon_sym_table, - STATE(673), 1, - sym__built_in_function_name, - STATE(954), 1, - sym_expression, - STATE(1920), 1, - sym_identifier_list, - ACTIONS(3444), 2, - sym_float, - sym_string, - ACTIONS(3446), 2, - anon_sym_true, - anon_sym_false, - STATE(990), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(981), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(986), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3454), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [39753] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(159), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [39849] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(55), 1, - sym_identifier, - ACTIONS(59), 1, - anon_sym_LPAREN, - ACTIONS(61), 1, - sym_integer, - ACTIONS(67), 1, - anon_sym_LBRACK, - ACTIONS(121), 1, - anon_sym_EQ_GT, - ACTIONS(145), 1, - anon_sym_table, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(3), 1, - sym_expression, - STATE(271), 1, - sym__built_in_function_name, - STATE(2030), 1, - sym_identifier_list, - ACTIONS(63), 2, - sym_float, - sym_string, - ACTIONS(65), 2, - anon_sym_true, - anon_sym_false, - STATE(628), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(633), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(631), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(147), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [39945] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3803), 1, - sym_identifier, - ACTIONS(3805), 1, - anon_sym_LBRACE, - ACTIONS(3807), 1, - anon_sym_LPAREN, - ACTIONS(3809), 1, - sym_integer, - ACTIONS(3815), 1, - anon_sym_LBRACK, - ACTIONS(3817), 1, - anon_sym_EQ_GT, - ACTIONS(3819), 1, - anon_sym_table, - STATE(673), 1, - sym__built_in_function_name, - STATE(1513), 1, - sym_expression, - STATE(1770), 1, - sym_identifier_list, - ACTIONS(3811), 2, - sym_float, - sym_string, - ACTIONS(3813), 2, - anon_sym_true, - anon_sym_false, - STATE(1525), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1526), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1527), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3454), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [40041] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3803), 1, - sym_identifier, - ACTIONS(3805), 1, - anon_sym_LBRACE, - ACTIONS(3807), 1, - anon_sym_LPAREN, - ACTIONS(3809), 1, - sym_integer, - ACTIONS(3815), 1, - anon_sym_LBRACK, - ACTIONS(3817), 1, - anon_sym_EQ_GT, - ACTIONS(3819), 1, - anon_sym_table, - STATE(673), 1, - sym__built_in_function_name, - STATE(1510), 1, - sym_expression, - STATE(1770), 1, - sym_identifier_list, - ACTIONS(3811), 2, - sym_float, - sym_string, - ACTIONS(3813), 2, - anon_sym_true, - anon_sym_false, - STATE(1525), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1526), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1527), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3454), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [40137] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3803), 1, - sym_identifier, - ACTIONS(3805), 1, - anon_sym_LBRACE, - ACTIONS(3807), 1, - anon_sym_LPAREN, - ACTIONS(3809), 1, - sym_integer, - ACTIONS(3815), 1, - anon_sym_LBRACK, - ACTIONS(3817), 1, - anon_sym_EQ_GT, - ACTIONS(3819), 1, - anon_sym_table, - STATE(673), 1, - sym__built_in_function_name, - STATE(1514), 1, - sym_expression, - STATE(1770), 1, - sym_identifier_list, - ACTIONS(3811), 2, - sym_float, - sym_string, - ACTIONS(3813), 2, - anon_sym_true, - anon_sym_false, - STATE(1525), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1526), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1527), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3454), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [40233] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(158), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [40329] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(150), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [40425] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(147), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [40521] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(55), 1, - sym_identifier, - ACTIONS(59), 1, - anon_sym_LPAREN, - ACTIONS(61), 1, - sym_integer, - ACTIONS(67), 1, - anon_sym_LBRACK, - ACTIONS(201), 1, - anon_sym_EQ_GT, - ACTIONS(225), 1, - anon_sym_table, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(286), 1, - sym__built_in_function_name, - STATE(602), 1, - sym_expression, - STATE(1776), 1, - sym_identifier_list, - ACTIONS(63), 2, - sym_float, - sym_string, - ACTIONS(65), 2, - anon_sym_true, - anon_sym_false, - STATE(628), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(633), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(631), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(227), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [40617] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(55), 1, - sym_identifier, - ACTIONS(59), 1, - anon_sym_LPAREN, - ACTIONS(61), 1, - sym_integer, - ACTIONS(67), 1, - anon_sym_LBRACK, - ACTIONS(201), 1, - anon_sym_EQ_GT, - ACTIONS(225), 1, - anon_sym_table, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(286), 1, - sym__built_in_function_name, - STATE(609), 1, - sym_expression, - STATE(1776), 1, - sym_identifier_list, - ACTIONS(63), 2, - sym_float, - sym_string, - ACTIONS(65), 2, - anon_sym_true, - anon_sym_false, - STATE(628), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(633), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(631), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(227), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [40713] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(143), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [40809] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(161), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [40905] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(64), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [41001] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(65), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [41097] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(245), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [41193] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(149), 1, - sym_identifier, - ACTIONS(153), 1, - anon_sym_LPAREN, - ACTIONS(155), 1, - sym_integer, - ACTIONS(161), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - anon_sym_EQ_GT, - ACTIONS(523), 1, - anon_sym_table, - ACTIONS(1923), 1, - anon_sym_LBRACE, - STATE(11), 1, - sym_expression, - STATE(320), 1, - sym__built_in_function_name, - STATE(1866), 1, - sym_identifier_list, - ACTIONS(157), 2, - sym_float, - sym_string, - ACTIONS(159), 2, - anon_sym_true, - anon_sym_false, - STATE(703), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(713), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(706), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(525), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [41289] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3119), 1, - anon_sym_EQ_GT, - ACTIONS(3143), 1, - anon_sym_table, - ACTIONS(3899), 1, - sym_identifier, - STATE(780), 1, - sym__built_in_function_name, - STATE(1553), 1, - sym_expression, - STATE(1793), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1539), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3145), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [41385] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(66), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [41481] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3503), 1, - anon_sym_LBRACE, - ACTIONS(3505), 1, - anon_sym_LPAREN, - ACTIONS(3507), 1, - sym_integer, - ACTIONS(3513), 1, - anon_sym_LBRACK, - ACTIONS(3576), 1, - sym_identifier, - ACTIONS(3829), 1, - anon_sym_EQ_GT, - ACTIONS(3831), 1, - anon_sym_table, - STATE(883), 1, - sym_expression, - STATE(928), 1, - sym__built_in_function_name, - STATE(1741), 1, - sym_identifier_list, - ACTIONS(3509), 2, - sym_float, - sym_string, - ACTIONS(3511), 2, - anon_sym_true, - anon_sym_false, - STATE(1009), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(996), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1002), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [41577] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(67), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [41673] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(239), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [41769] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(225), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [41865] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(218), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [41961] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(208), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [42057] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(198), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [42153] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(188), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [42249] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(186), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [42345] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(238), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [42441] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(235), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [42537] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(234), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [42633] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(233), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [42729] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(168), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [42825] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(231), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [42921] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(228), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [43017] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(227), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [43113] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(224), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [43209] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(233), 1, - anon_sym_LPAREN, - ACTIONS(235), 1, - sym_integer, - ACTIONS(241), 1, - anon_sym_LBRACK, - ACTIONS(249), 1, - anon_sym_EQ_GT, - ACTIONS(273), 1, - anon_sym_table, - ACTIONS(2624), 1, - sym_identifier, - ACTIONS(2626), 1, - anon_sym_LBRACE, - STATE(6), 1, - sym_expression, - STATE(302), 1, - sym__built_in_function_name, - STATE(1984), 1, - sym_identifier_list, - ACTIONS(237), 2, - sym_float, - sym_string, - ACTIONS(239), 2, - anon_sym_true, - anon_sym_false, - STATE(761), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(757), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(759), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(275), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [43305] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(1204), 1, - anon_sym_EQ_GT, - ACTIONS(1228), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(53), 1, - sym_expression, - STATE(360), 1, - sym__built_in_function_name, - STATE(2042), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1230), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [43401] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(169), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [43497] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(170), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [43593] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(171), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [43689] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(174), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [43785] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(176), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [43881] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(55), 1, - sym_identifier, - ACTIONS(59), 1, - anon_sym_LPAREN, - ACTIONS(61), 1, - sym_integer, - ACTIONS(67), 1, - anon_sym_LBRACK, - ACTIONS(201), 1, - anon_sym_EQ_GT, - ACTIONS(225), 1, - anon_sym_table, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(286), 1, - sym__built_in_function_name, - STATE(646), 1, - sym_expression, - STATE(1776), 1, - sym_identifier_list, - ACTIONS(63), 2, - sym_float, - sym_string, - ACTIONS(65), 2, - anon_sym_true, - anon_sym_false, - STATE(628), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(633), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(631), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(227), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [43977] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(181), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [44073] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(182), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [44169] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3797), 1, - anon_sym_EQ_GT, - ACTIONS(3799), 1, - anon_sym_table, - ACTIONS(3901), 1, - sym_identifier, - STATE(928), 1, - sym__built_in_function_name, - STATE(1623), 1, - sym_expression, - STATE(1851), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1539), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [44265] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3503), 1, - anon_sym_LBRACE, - ACTIONS(3505), 1, - anon_sym_LPAREN, - ACTIONS(3507), 1, - sym_integer, - ACTIONS(3513), 1, - anon_sym_LBRACK, - ACTIONS(3576), 1, - sym_identifier, - ACTIONS(3578), 1, - anon_sym_EQ_GT, - ACTIONS(3580), 1, - anon_sym_table, - STATE(726), 1, - sym__built_in_function_name, - STATE(960), 1, - sym_expression, - STATE(1762), 1, - sym_identifier_list, - ACTIONS(3509), 2, - sym_float, - sym_string, - ACTIONS(3511), 2, - anon_sym_true, - anon_sym_false, - STATE(1009), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(996), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1002), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3582), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [44361] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(149), 1, - sym_identifier, - ACTIONS(153), 1, - anon_sym_LPAREN, - ACTIONS(155), 1, - sym_integer, - ACTIONS(161), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - anon_sym_EQ_GT, - ACTIONS(523), 1, - anon_sym_table, - ACTIONS(1923), 1, - anon_sym_LBRACE, - STATE(320), 1, - sym__built_in_function_name, - STATE(722), 1, - sym_expression, - STATE(1866), 1, - sym_identifier_list, - ACTIONS(157), 2, - sym_float, - sym_string, - ACTIONS(159), 2, - anon_sym_true, - anon_sym_false, - STATE(703), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(713), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(706), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(525), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [44457] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3797), 1, - anon_sym_EQ_GT, - ACTIONS(3799), 1, - anon_sym_table, - ACTIONS(3901), 1, - sym_identifier, - STATE(928), 1, - sym__built_in_function_name, - STATE(1621), 1, - sym_expression, - STATE(1851), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1539), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [44553] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(149), 1, - sym_identifier, - ACTIONS(153), 1, - anon_sym_LPAREN, - ACTIONS(155), 1, - sym_integer, - ACTIONS(161), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - anon_sym_EQ_GT, - ACTIONS(523), 1, - anon_sym_table, - ACTIONS(1923), 1, - anon_sym_LBRACE, - STATE(320), 1, - sym__built_in_function_name, - STATE(694), 1, - sym_expression, - STATE(1866), 1, - sym_identifier_list, - ACTIONS(157), 2, - sym_float, - sym_string, - ACTIONS(159), 2, - anon_sym_true, - anon_sym_false, - STATE(703), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(713), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(706), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(525), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [44649] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(110), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [44745] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3797), 1, - anon_sym_EQ_GT, - ACTIONS(3799), 1, - anon_sym_table, - ACTIONS(3901), 1, - sym_identifier, - STATE(928), 1, - sym__built_in_function_name, - STATE(1622), 1, - sym_expression, - STATE(1851), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1539), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [44841] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(149), 1, - sym_identifier, - ACTIONS(153), 1, - anon_sym_LPAREN, - ACTIONS(155), 1, - sym_integer, - ACTIONS(161), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - anon_sym_EQ_GT, - ACTIONS(523), 1, - anon_sym_table, - ACTIONS(1923), 1, - anon_sym_LBRACE, - STATE(320), 1, - sym__built_in_function_name, - STATE(730), 1, - sym_expression, - STATE(1866), 1, - sym_identifier_list, - ACTIONS(157), 2, - sym_float, - sym_string, - ACTIONS(159), 2, - anon_sym_true, - anon_sym_false, - STATE(703), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(713), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(706), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(525), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [44937] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(149), 1, - sym_identifier, - ACTIONS(153), 1, - anon_sym_LPAREN, - ACTIONS(155), 1, - sym_integer, - ACTIONS(161), 1, - anon_sym_LBRACK, - ACTIONS(499), 1, - anon_sym_EQ_GT, - ACTIONS(523), 1, - anon_sym_table, - ACTIONS(1923), 1, - anon_sym_LBRACE, - STATE(320), 1, - sym__built_in_function_name, - STATE(720), 1, - sym_expression, - STATE(1866), 1, - sym_identifier_list, - ACTIONS(157), 2, - sym_float, - sym_string, - ACTIONS(159), 2, - anon_sym_true, - anon_sym_false, - STATE(703), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(713), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(706), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(525), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [45033] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3503), 1, - anon_sym_LBRACE, - ACTIONS(3505), 1, - anon_sym_LPAREN, - ACTIONS(3507), 1, - sym_integer, - ACTIONS(3513), 1, - anon_sym_LBRACK, - ACTIONS(3515), 1, - anon_sym_EQ_GT, - ACTIONS(3517), 1, - anon_sym_table, - ACTIONS(3576), 1, - sym_identifier, - STATE(780), 1, - sym__built_in_function_name, - STATE(979), 1, - sym_expression, - STATE(1980), 1, - sym_identifier_list, - ACTIONS(3509), 2, - sym_float, - sym_string, - ACTIONS(3511), 2, - anon_sym_true, - anon_sym_false, - STATE(1009), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(996), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1002), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3145), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [45129] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(120), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [45225] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(121), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [45321] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(126), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [45417] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(129), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [45513] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(62), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [45609] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(131), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [45705] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(142), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [45801] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(233), 1, - anon_sym_LPAREN, - ACTIONS(235), 1, - sym_integer, - ACTIONS(241), 1, - anon_sym_LBRACK, - ACTIONS(1288), 1, - anon_sym_EQ_GT, - ACTIONS(1312), 1, - anon_sym_table, - ACTIONS(2624), 1, - sym_identifier, - ACTIONS(2626), 1, - anon_sym_LBRACE, - STATE(351), 1, - sym__built_in_function_name, - STATE(832), 1, - sym_expression, - STATE(1926), 1, - sym_identifier_list, - ACTIONS(237), 2, - sym_float, - sym_string, - ACTIONS(239), 2, - anon_sym_true, - anon_sym_false, - STATE(761), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(757), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(759), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1314), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [45897] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(185), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [45993] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3877), 1, - sym_identifier, - ACTIONS(3879), 1, - anon_sym_EQ_GT, - ACTIONS(3881), 1, - anon_sym_table, - STATE(914), 1, - sym__built_in_function_name, - STATE(1561), 1, - sym_expression, - STATE(1784), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1539), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3869), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [46089] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(149), 1, - sym_identifier, - ACTIONS(153), 1, - anon_sym_LPAREN, - ACTIONS(155), 1, - sym_integer, - ACTIONS(161), 1, - anon_sym_LBRACK, - ACTIONS(915), 1, - anon_sym_EQ_GT, - ACTIONS(939), 1, - anon_sym_table, - ACTIONS(1923), 1, - anon_sym_LBRACE, - STATE(20), 1, - sym_expression, - STATE(325), 1, - sym__built_in_function_name, - STATE(2015), 1, - sym_identifier_list, - ACTIONS(157), 2, - sym_float, - sym_string, - ACTIONS(159), 2, - anon_sym_true, - anon_sym_false, - STATE(703), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(713), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(706), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(941), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [46185] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(233), 1, - anon_sym_LPAREN, - ACTIONS(235), 1, - sym_integer, - ACTIONS(241), 1, - anon_sym_LBRACK, - ACTIONS(1288), 1, - anon_sym_EQ_GT, - ACTIONS(1312), 1, - anon_sym_table, - ACTIONS(2624), 1, - sym_identifier, - ACTIONS(2626), 1, - anon_sym_LBRACE, - STATE(351), 1, - sym__built_in_function_name, - STATE(827), 1, - sym_expression, - STATE(1926), 1, - sym_identifier_list, - ACTIONS(237), 2, - sym_float, - sym_string, - ACTIONS(239), 2, - anon_sym_true, - anon_sym_false, - STATE(761), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(757), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(759), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1314), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [46281] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(187), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [46377] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, + ACTIONS(1444), 1, sym_identifier, STATE(189), 1, - sym_expression, - STATE(380), 1, sym__built_in_function_name, - STATE(1890), 1, + STATE(437), 1, + sym_expression, + STATE(1104), 1, sym_identifier_list, ACTIONS(13), 2, sym_float, @@ -134165,16 +63580,172 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(15), 2, anon_sym_true, anon_sym_false, - STATE(874), 2, + STATE(470), 2, sym__context_defined_function, sym_built_in_function, - STATE(844), 5, + STATE(462), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(866), 6, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(221), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [7954] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1341), 1, + anon_sym_LBRACE, + ACTIONS(1343), 1, + anon_sym_LPAREN, + ACTIONS(1345), 1, + sym_integer, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(2421), 1, + sym_identifier, + ACTIONS(2423), 1, + anon_sym_EQ_GT, + ACTIONS(2425), 1, + anon_sym_table, + STATE(372), 1, + sym__built_in_function_name, + STATE(932), 1, + sym_expression, + STATE(1109), 1, + sym_identifier_list, + ACTIONS(1347), 2, + sym_float, + sym_string, + ACTIONS(1349), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(936), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(919), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2095), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [8050] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(128), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, sym__expression_kind, sym_value, sym_index, @@ -134212,7 +63783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [46473] = 18, + [8146] = 18, ACTIONS(3), 1, sym__comment, ACTIONS(9), 1, @@ -134227,15 +63798,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(49), 1, anon_sym_table, - ACTIONS(2383), 1, + ACTIONS(1309), 1, anon_sym_LBRACE, - ACTIONS(2676), 1, + ACTIONS(1444), 1, sym_identifier, - STATE(190), 1, + STATE(27), 1, sym_expression, - STATE(380), 1, + STATE(222), 1, sym__built_in_function_name, - STATE(1890), 1, + STATE(1143), 1, sym_identifier_list, ACTIONS(13), 2, sym_float, @@ -134243,16 +63814,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(15), 2, anon_sym_true, anon_sym_false, - STATE(874), 2, + STATE(470), 2, sym__context_defined_function, sym_built_in_function, - STATE(844), 5, + STATE(462), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(866), 6, + STATE(468), 6, sym__expression_kind, sym_value, sym_index, @@ -134290,7 +63861,397 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [46569] = 18, + [8242] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(59), 1, + anon_sym_LPAREN, + ACTIONS(61), 1, + sym_integer, + ACTIONS(67), 1, + anon_sym_LBRACK, + ACTIONS(85), 1, + anon_sym_EQ_GT, + ACTIONS(111), 1, + anon_sym_table, + ACTIONS(1323), 1, + sym_identifier, + ACTIONS(1325), 1, + anon_sym_LBRACE, + STATE(170), 1, + sym__built_in_function_name, + STATE(363), 1, + sym_expression, + STATE(1225), 1, + sym_identifier_list, + ACTIONS(63), 2, + sym_float, + sym_string, + ACTIONS(65), 2, + anon_sym_true, + anon_sym_false, + STATE(413), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(419), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(415), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(113), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [8338] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1341), 1, + anon_sym_LBRACE, + ACTIONS(1343), 1, + anon_sym_LPAREN, + ACTIONS(1345), 1, + sym_integer, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(2409), 1, + anon_sym_EQ_GT, + ACTIONS(2411), 1, + anon_sym_table, + ACTIONS(2427), 1, + sym_identifier, + STATE(550), 1, + sym__built_in_function_name, + STATE(968), 1, + sym_expression, + STATE(1102), 1, + sym_identifier_list, + ACTIONS(1347), 2, + sym_float, + sym_string, + ACTIONS(1349), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(936), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(919), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1359), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [8434] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1341), 1, + anon_sym_LBRACE, + ACTIONS(1343), 1, + anon_sym_LPAREN, + ACTIONS(1345), 1, + sym_integer, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(2409), 1, + anon_sym_EQ_GT, + ACTIONS(2411), 1, + anon_sym_table, + ACTIONS(2429), 1, + sym_identifier, + STATE(550), 1, + sym__built_in_function_name, + STATE(970), 1, + sym_expression, + STATE(1102), 1, + sym_identifier_list, + ACTIONS(1347), 2, + sym_float, + sym_string, + ACTIONS(1349), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(936), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(919), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1359), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [8530] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(59), 1, + anon_sym_LPAREN, + ACTIONS(61), 1, + sym_integer, + ACTIONS(67), 1, + anon_sym_LBRACK, + ACTIONS(159), 1, + anon_sym_EQ_GT, + ACTIONS(183), 1, + anon_sym_table, + ACTIONS(1323), 1, + sym_identifier, + ACTIONS(1325), 1, + anon_sym_LBRACE, + STATE(4), 1, + sym_expression, + STATE(186), 1, + sym__built_in_function_name, + STATE(1210), 1, + sym_identifier_list, + ACTIONS(63), 2, + sym_float, + sym_string, + ACTIONS(65), 2, + anon_sym_true, + anon_sym_false, + STATE(413), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(419), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(415), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(185), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [8626] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1341), 1, + anon_sym_LBRACE, + ACTIONS(1343), 1, + anon_sym_LPAREN, + ACTIONS(1345), 1, + sym_integer, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(2409), 1, + anon_sym_EQ_GT, + ACTIONS(2411), 1, + anon_sym_table, + ACTIONS(2431), 1, + sym_identifier, + STATE(550), 1, + sym__built_in_function_name, + STATE(975), 1, + sym_expression, + STATE(1102), 1, + sym_identifier_list, + ACTIONS(1347), 2, + sym_float, + sym_string, + ACTIONS(1349), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(936), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(919), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1359), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [8722] = 18, ACTIONS(3), 1, sym__comment, ACTIONS(9), 1, @@ -134305,15 +64266,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(49), 1, anon_sym_table, - ACTIONS(2383), 1, + ACTIONS(1309), 1, anon_sym_LBRACE, - ACTIONS(2676), 1, + ACTIONS(1444), 1, sym_identifier, - STATE(197), 1, + STATE(48), 1, sym_expression, - STATE(380), 1, + STATE(222), 1, sym__built_in_function_name, - STATE(1890), 1, + STATE(1143), 1, sym_identifier_list, ACTIONS(13), 2, sym_float, @@ -134321,16 +64282,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(15), 2, anon_sym_true, anon_sym_false, - STATE(874), 2, + STATE(470), 2, sym__context_defined_function, sym_built_in_function, - STATE(844), 5, + STATE(462), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(866), 6, + STATE(468), 6, sym__expression_kind, sym_value, sym_index, @@ -134368,7 +64329,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [46665] = 18, + [8818] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1341), 1, + anon_sym_LBRACE, + ACTIONS(1343), 1, + anon_sym_LPAREN, + ACTIONS(1345), 1, + sym_integer, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(2409), 1, + anon_sym_EQ_GT, + ACTIONS(2411), 1, + anon_sym_table, + ACTIONS(2433), 1, + sym_identifier, + STATE(550), 1, + sym__built_in_function_name, + STATE(978), 1, + sym_expression, + STATE(1102), 1, + sym_identifier_list, + ACTIONS(1347), 2, + sym_float, + sym_string, + ACTIONS(1349), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(936), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(919), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1359), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [8914] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2047), 1, + anon_sym_LBRACE, + ACTIONS(2049), 1, + anon_sym_LPAREN, + ACTIONS(2051), 1, + sym_integer, + ACTIONS(2057), 1, + anon_sym_LBRACK, + ACTIONS(2089), 1, + sym_identifier, + ACTIONS(2435), 1, + anon_sym_EQ_GT, + ACTIONS(2437), 1, + anon_sym_table, + STATE(504), 1, + sym_expression, + STATE(550), 1, + sym__built_in_function_name, + STATE(1095), 1, + sym_identifier_list, + ACTIONS(2053), 2, + sym_float, + sym_string, + ACTIONS(2055), 2, + anon_sym_true, + anon_sym_false, + STATE(587), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(586), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(585), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1359), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [9010] = 18, ACTIONS(3), 1, sym__comment, ACTIONS(9), 1, @@ -134383,15 +64500,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(49), 1, anon_sym_table, - ACTIONS(2383), 1, + ACTIONS(1309), 1, anon_sym_LBRACE, - ACTIONS(2676), 1, + ACTIONS(1444), 1, sym_identifier, - STATE(199), 1, + STATE(54), 1, sym_expression, - STATE(380), 1, + STATE(222), 1, sym__built_in_function_name, - STATE(1890), 1, + STATE(1143), 1, sym_identifier_list, ACTIONS(13), 2, sym_float, @@ -134399,16 +64516,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(15), 2, anon_sym_true, anon_sym_false, - STATE(874), 2, + STATE(470), 2, sym__context_defined_function, sym_built_in_function, - STATE(844), 5, + STATE(462), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(866), 6, + STATE(468), 6, sym__expression_kind, sym_value, sym_index, @@ -134446,7 +64563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [46761] = 18, + [9106] = 18, ACTIONS(3), 1, sym__comment, ACTIONS(9), 1, @@ -134461,1731 +64578,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(49), 1, anon_sym_table, - ACTIONS(2383), 1, + ACTIONS(1309), 1, anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(201), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [46857] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(202), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [46953] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(233), 1, - anon_sym_LPAREN, - ACTIONS(235), 1, - sym_integer, - ACTIONS(241), 1, - anon_sym_LBRACK, - ACTIONS(1288), 1, - anon_sym_EQ_GT, - ACTIONS(1312), 1, - anon_sym_table, - ACTIONS(2624), 1, - sym_identifier, - ACTIONS(2626), 1, - anon_sym_LBRACE, - STATE(351), 1, - sym__built_in_function_name, - STATE(818), 1, - sym_expression, - STATE(1926), 1, - sym_identifier_list, - ACTIONS(237), 2, - sym_float, - sym_string, - ACTIONS(239), 2, - anon_sym_true, - anon_sym_false, - STATE(761), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(757), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(759), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1314), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [47049] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(1204), 1, - anon_sym_EQ_GT, - ACTIONS(1228), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(360), 1, - sym__built_in_function_name, - STATE(823), 1, - sym_expression, - STATE(2042), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1230), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [47145] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3797), 1, - anon_sym_EQ_GT, - ACTIONS(3799), 1, - anon_sym_table, - ACTIONS(3901), 1, - sym_identifier, - STATE(928), 1, - sym__built_in_function_name, - STATE(1576), 1, - sym_expression, - STATE(1851), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1539), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [47241] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2451), 1, - sym_identifier, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(2467), 1, - anon_sym_EQ_GT, - ACTIONS(2469), 1, - anon_sym_table, - STATE(928), 1, - sym__built_in_function_name, - STATE(1619), 1, - sym_expression, - STATE(1837), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1539), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [47337] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3887), 1, - sym_identifier, - ACTIONS(3889), 1, - anon_sym_EQ_GT, - ACTIONS(3891), 1, - anon_sym_table, - STATE(914), 1, - sym__built_in_function_name, - STATE(1573), 1, - sym_expression, - STATE(1794), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1539), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(3869), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [47433] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(233), 1, - anon_sym_LPAREN, - ACTIONS(235), 1, - sym_integer, - ACTIONS(241), 1, - anon_sym_LBRACK, - ACTIONS(847), 1, - anon_sym_EQ_GT, - ACTIONS(871), 1, - anon_sym_table, - ACTIONS(2624), 1, - sym_identifier, - ACTIONS(2626), 1, - anon_sym_LBRACE, - STATE(18), 1, - sym_expression, - STATE(341), 1, - sym__built_in_function_name, - STATE(1860), 1, - sym_identifier_list, - ACTIONS(237), 2, - sym_float, - sym_string, - ACTIONS(239), 2, - anon_sym_true, - anon_sym_false, - STATE(761), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(757), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(759), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(873), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [47529] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2451), 1, - sym_identifier, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(2467), 1, - anon_sym_EQ_GT, - ACTIONS(2469), 1, - anon_sym_table, - STATE(928), 1, - sym__built_in_function_name, - STATE(1602), 1, - sym_expression, - STATE(1837), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1539), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [47625] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(3789), 1, - sym_identifier, - ACTIONS(3791), 1, - anon_sym_EQ_GT, - ACTIONS(3793), 1, - anon_sym_table, - STATE(928), 1, - sym__built_in_function_name, - STATE(1629), 1, - sym_expression, - STATE(1917), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1635), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [47721] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2451), 1, - sym_identifier, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(2467), 1, - anon_sym_EQ_GT, - ACTIONS(2469), 1, - anon_sym_table, - STATE(928), 1, - sym__built_in_function_name, - STATE(1618), 1, - sym_expression, - STATE(1837), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1539), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [47817] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(101), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [47913] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(3503), 1, - anon_sym_LBRACE, - ACTIONS(3505), 1, - anon_sym_LPAREN, - ACTIONS(3507), 1, - sym_integer, - ACTIONS(3513), 1, - anon_sym_LBRACK, - ACTIONS(3576), 1, - sym_identifier, - ACTIONS(3829), 1, - anon_sym_EQ_GT, - ACTIONS(3831), 1, - anon_sym_table, - STATE(907), 1, - sym_expression, - STATE(928), 1, - sym__built_in_function_name, - STATE(1741), 1, - sym_identifier_list, - ACTIONS(3509), 2, - sym_float, - sym_string, - ACTIONS(3511), 2, - anon_sym_true, - anon_sym_false, - STATE(1009), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(996), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1002), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [48009] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(100), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [48105] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(2451), 1, - sym_identifier, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - sym_integer, - ACTIONS(2463), 1, - anon_sym_LBRACK, - ACTIONS(2467), 1, - anon_sym_EQ_GT, - ACTIONS(2469), 1, - anon_sym_table, - STATE(928), 1, - sym__built_in_function_name, - STATE(1598), 1, - sym_expression, - STATE(1837), 1, - sym_identifier_list, - ACTIONS(2459), 2, - sym_float, - sym_string, - ACTIONS(2461), 2, - anon_sym_true, - anon_sym_false, - STATE(1533), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(1550), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(1539), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2471), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [48201] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(88), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [48297] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(89), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [48393] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(47), 1, - anon_sym_PIPE, - ACTIONS(1442), 1, - anon_sym_EQ_GT, - ACTIONS(1466), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(31), 1, - sym_expression, - STATE(366), 1, - sym__built_in_function_name, - STATE(1823), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1468), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [48489] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(90), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [48585] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(91), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [48681] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(93), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [48777] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, - sym_identifier, - STATE(94), 1, - sym_expression, - STATE(380), 1, - sym__built_in_function_name, - STATE(1890), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(874), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(844), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(866), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(51), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [48873] = 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(47), 1, - anon_sym_PIPE, - ACTIONS(49), 1, - anon_sym_table, - ACTIONS(2383), 1, - anon_sym_LBRACE, - ACTIONS(2676), 1, + ACTIONS(1444), 1, sym_identifier, STATE(95), 1, sym_expression, - STATE(380), 1, + STATE(222), 1, sym__built_in_function_name, - STATE(1890), 1, + STATE(1143), 1, sym_identifier_list, ACTIONS(13), 2, sym_float, @@ -136193,16 +64594,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(15), 2, anon_sym_true, anon_sym_false, - STATE(874), 2, + STATE(470), 2, sym__context_defined_function, sym_built_in_function, - STATE(844), 5, + STATE(462), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(866), 6, + STATE(468), 6, sym__expression_kind, sym_value, sym_index, @@ -136240,7 +64641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [48969] = 18, + [9202] = 18, ACTIONS(3), 1, sym__comment, ACTIONS(9), 1, @@ -136255,15 +64656,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(49), 1, anon_sym_table, - ACTIONS(2383), 1, + ACTIONS(1309), 1, anon_sym_LBRACE, - ACTIONS(2676), 1, + ACTIONS(1444), 1, sym_identifier, - STATE(96), 1, - sym_expression, - STATE(380), 1, + STATE(222), 1, sym__built_in_function_name, - STATE(1890), 1, + STATE(524), 1, + sym_expression, + STATE(1143), 1, sym_identifier_list, ACTIONS(13), 2, sym_float, @@ -136271,16 +64672,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(15), 2, anon_sym_true, anon_sym_false, - STATE(874), 2, + STATE(470), 2, sym__context_defined_function, sym_built_in_function, - STATE(844), 5, + STATE(462), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(866), 6, + STATE(468), 6, sym__expression_kind, sym_value, sym_index, @@ -136318,10 +64719,18298 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [49065] = 3, + [9298] = 18, ACTIONS(3), 1, sym__comment, - ACTIONS(3905), 8, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(59), 1, + anon_sym_LPAREN, + ACTIONS(61), 1, + sym_integer, + ACTIONS(67), 1, + anon_sym_LBRACK, + ACTIONS(159), 1, + anon_sym_EQ_GT, + ACTIONS(183), 1, + anon_sym_table, + ACTIONS(1323), 1, + sym_identifier, + ACTIONS(1325), 1, + anon_sym_LBRACE, + STATE(186), 1, + sym__built_in_function_name, + STATE(394), 1, + sym_expression, + STATE(1210), 1, + sym_identifier_list, + ACTIONS(63), 2, + sym_float, + sym_string, + ACTIONS(65), 2, + anon_sym_true, + anon_sym_false, + STATE(413), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(419), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(415), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(185), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [9394] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(98), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [9490] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(99), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [9586] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1341), 1, + anon_sym_LBRACE, + ACTIONS(1343), 1, + anon_sym_LPAREN, + ACTIONS(1345), 1, + sym_integer, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(2421), 1, + sym_identifier, + ACTIONS(2423), 1, + anon_sym_EQ_GT, + ACTIONS(2425), 1, + anon_sym_table, + STATE(372), 1, + sym__built_in_function_name, + STATE(925), 1, + sym_expression, + STATE(1109), 1, + sym_identifier_list, + ACTIONS(1347), 2, + sym_float, + sym_string, + ACTIONS(1349), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(936), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(919), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2095), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [9682] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1341), 1, + anon_sym_LBRACE, + ACTIONS(1343), 1, + anon_sym_LPAREN, + ACTIONS(1345), 1, + sym_integer, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(2409), 1, + anon_sym_EQ_GT, + ACTIONS(2411), 1, + anon_sym_table, + ACTIONS(2439), 1, + sym_identifier, + STATE(550), 1, + sym__built_in_function_name, + STATE(989), 1, + sym_expression, + STATE(1102), 1, + sym_identifier_list, + ACTIONS(1347), 2, + sym_float, + sym_string, + ACTIONS(1349), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(936), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(919), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1359), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [9778] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(58), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [9874] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(150), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [9970] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(120), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [10066] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(141), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [10162] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(148), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [10258] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1341), 1, + anon_sym_LBRACE, + ACTIONS(1343), 1, + anon_sym_LPAREN, + ACTIONS(1345), 1, + sym_integer, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(2421), 1, + sym_identifier, + ACTIONS(2423), 1, + anon_sym_EQ_GT, + ACTIONS(2425), 1, + anon_sym_table, + STATE(372), 1, + sym__built_in_function_name, + STATE(923), 1, + sym_expression, + STATE(1109), 1, + sym_identifier_list, + ACTIONS(1347), 2, + sym_float, + sym_string, + ACTIONS(1349), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(936), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(919), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2095), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [10354] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1341), 1, + anon_sym_LBRACE, + ACTIONS(1343), 1, + anon_sym_LPAREN, + ACTIONS(1345), 1, + sym_integer, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(2441), 1, + sym_identifier, + ACTIONS(2443), 1, + anon_sym_EQ_GT, + ACTIONS(2445), 1, + anon_sym_table, + STATE(502), 1, + sym__built_in_function_name, + STATE(946), 1, + sym_expression, + STATE(1107), 1, + sym_identifier_list, + ACTIONS(1347), 2, + sym_float, + sym_string, + ACTIONS(1349), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(936), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(919), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2417), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [10450] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1341), 1, + anon_sym_LBRACE, + ACTIONS(1343), 1, + anon_sym_LPAREN, + ACTIONS(1345), 1, + sym_integer, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(2421), 1, + sym_identifier, + ACTIONS(2423), 1, + anon_sym_EQ_GT, + ACTIONS(2425), 1, + anon_sym_table, + STATE(372), 1, + sym__built_in_function_name, + STATE(924), 1, + sym_expression, + STATE(1109), 1, + sym_identifier_list, + ACTIONS(1347), 2, + sym_float, + sym_string, + ACTIONS(1349), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(936), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(919), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2095), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [10546] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2047), 1, + anon_sym_LBRACE, + ACTIONS(2049), 1, + anon_sym_LPAREN, + ACTIONS(2051), 1, + sym_integer, + ACTIONS(2057), 1, + anon_sym_LBRACK, + ACTIONS(2089), 1, + sym_identifier, + ACTIONS(2413), 1, + anon_sym_EQ_GT, + ACTIONS(2415), 1, + anon_sym_table, + STATE(502), 1, + sym__built_in_function_name, + STATE(625), 1, + sym_expression, + STATE(1106), 1, + sym_identifier_list, + ACTIONS(2053), 2, + sym_float, + sym_string, + ACTIONS(2055), 2, + anon_sym_true, + anon_sym_false, + STATE(587), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(586), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(585), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2417), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [10642] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(49), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [10738] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2047), 1, + anon_sym_LBRACE, + ACTIONS(2049), 1, + anon_sym_LPAREN, + ACTIONS(2051), 1, + sym_integer, + ACTIONS(2057), 1, + anon_sym_LBRACK, + ACTIONS(2089), 1, + sym_identifier, + ACTIONS(2413), 1, + anon_sym_EQ_GT, + ACTIONS(2415), 1, + anon_sym_table, + STATE(502), 1, + sym__built_in_function_name, + STATE(630), 1, + sym_expression, + STATE(1106), 1, + sym_identifier_list, + ACTIONS(2053), 2, + sym_float, + sym_string, + ACTIONS(2055), 2, + anon_sym_true, + anon_sym_false, + STATE(587), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(586), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(585), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2417), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [10834] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2047), 1, + anon_sym_LBRACE, + ACTIONS(2049), 1, + anon_sym_LPAREN, + ACTIONS(2051), 1, + sym_integer, + ACTIONS(2057), 1, + anon_sym_LBRACK, + ACTIONS(2089), 1, + sym_identifier, + ACTIONS(2091), 1, + anon_sym_EQ_GT, + ACTIONS(2093), 1, + anon_sym_table, + STATE(372), 1, + sym__built_in_function_name, + STATE(559), 1, + sym_expression, + STATE(1105), 1, + sym_identifier_list, + ACTIONS(2053), 2, + sym_float, + sym_string, + ACTIONS(2055), 2, + anon_sym_true, + anon_sym_false, + STATE(587), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(586), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(585), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2095), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [10930] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2047), 1, + anon_sym_LBRACE, + ACTIONS(2049), 1, + anon_sym_LPAREN, + ACTIONS(2051), 1, + sym_integer, + ACTIONS(2057), 1, + anon_sym_LBRACK, + ACTIONS(2089), 1, + sym_identifier, + ACTIONS(2413), 1, + anon_sym_EQ_GT, + ACTIONS(2415), 1, + anon_sym_table, + STATE(502), 1, + sym__built_in_function_name, + STATE(624), 1, + sym_expression, + STATE(1106), 1, + sym_identifier_list, + ACTIONS(2053), 2, + sym_float, + sym_string, + ACTIONS(2055), 2, + anon_sym_true, + anon_sym_false, + STATE(587), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(586), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(585), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2417), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [11026] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2047), 1, + anon_sym_LBRACE, + ACTIONS(2049), 1, + anon_sym_LPAREN, + ACTIONS(2051), 1, + sym_integer, + ACTIONS(2057), 1, + anon_sym_LBRACK, + ACTIONS(2089), 1, + sym_identifier, + ACTIONS(2435), 1, + anon_sym_EQ_GT, + ACTIONS(2437), 1, + anon_sym_table, + STATE(510), 1, + sym_expression, + STATE(550), 1, + sym__built_in_function_name, + STATE(1095), 1, + sym_identifier_list, + ACTIONS(2053), 2, + sym_float, + sym_string, + ACTIONS(2055), 2, + anon_sym_true, + anon_sym_false, + STATE(587), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(586), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(585), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1359), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [11122] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(40), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [11218] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1341), 1, + anon_sym_LBRACE, + ACTIONS(1343), 1, + anon_sym_LPAREN, + ACTIONS(1345), 1, + sym_integer, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(2409), 1, + anon_sym_EQ_GT, + ACTIONS(2411), 1, + anon_sym_table, + ACTIONS(2447), 1, + sym_identifier, + STATE(550), 1, + sym__built_in_function_name, + STATE(993), 1, + sym_expression, + STATE(1102), 1, + sym_identifier_list, + ACTIONS(1347), 2, + sym_float, + sym_string, + ACTIONS(1349), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(936), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(919), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1359), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [11314] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(530), 1, + anon_sym_EQ_GT, + ACTIONS(554), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(12), 1, + sym_expression, + STATE(218), 1, + sym__built_in_function_name, + STATE(1119), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(556), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [11410] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(147), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [11506] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(151), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [11602] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(149), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [11698] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(102), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [11794] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(142), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [11890] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(140), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [11986] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(138), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [12082] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(136), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [12178] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(57), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [12274] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(530), 1, + anon_sym_EQ_GT, + ACTIONS(554), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(218), 1, + sym__built_in_function_name, + STATE(475), 1, + sym_expression, + STATE(1119), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(556), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [12370] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1341), 1, + anon_sym_LBRACE, + ACTIONS(1343), 1, + anon_sym_LPAREN, + ACTIONS(1345), 1, + sym_integer, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(2409), 1, + anon_sym_EQ_GT, + ACTIONS(2411), 1, + anon_sym_table, + ACTIONS(2449), 1, + sym_identifier, + STATE(550), 1, + sym__built_in_function_name, + STATE(995), 1, + sym_expression, + STATE(1102), 1, + sym_identifier_list, + ACTIONS(1347), 2, + sym_float, + sym_string, + ACTIONS(1349), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(936), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(919), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1359), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [12466] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2047), 1, + anon_sym_LBRACE, + ACTIONS(2049), 1, + anon_sym_LPAREN, + ACTIONS(2051), 1, + sym_integer, + ACTIONS(2057), 1, + anon_sym_LBRACK, + ACTIONS(2089), 1, + sym_identifier, + ACTIONS(2435), 1, + anon_sym_EQ_GT, + ACTIONS(2437), 1, + anon_sym_table, + STATE(526), 1, + sym_expression, + STATE(550), 1, + sym__built_in_function_name, + STATE(1095), 1, + sym_identifier_list, + ACTIONS(2053), 2, + sym_float, + sym_string, + ACTIONS(2055), 2, + anon_sym_true, + anon_sym_false, + STATE(587), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(586), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(585), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1359), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + 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] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(103), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [12658] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1341), 1, + anon_sym_LBRACE, + ACTIONS(1343), 1, + anon_sym_LPAREN, + ACTIONS(1345), 1, + sym_integer, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(2409), 1, + anon_sym_EQ_GT, + ACTIONS(2411), 1, + anon_sym_table, + ACTIONS(2451), 1, + sym_identifier, + STATE(550), 1, + sym__built_in_function_name, + STATE(962), 1, + sym_expression, + STATE(1102), 1, + sym_identifier_list, + ACTIONS(1347), 2, + sym_float, + sym_string, + ACTIONS(1349), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(936), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(919), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1359), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [12754] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1341), 1, + anon_sym_LBRACE, + ACTIONS(1343), 1, + anon_sym_LPAREN, + ACTIONS(1345), 1, + sym_integer, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(2409), 1, + anon_sym_EQ_GT, + ACTIONS(2411), 1, + anon_sym_table, + ACTIONS(2453), 1, + sym_identifier, + STATE(550), 1, + sym__built_in_function_name, + STATE(985), 1, + sym_expression, + STATE(1102), 1, + sym_identifier_list, + ACTIONS(1347), 2, + sym_float, + sym_string, + ACTIONS(1349), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(936), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(919), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1359), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [12850] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(110), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [12946] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2047), 1, + anon_sym_LBRACE, + ACTIONS(2049), 1, + anon_sym_LPAREN, + ACTIONS(2051), 1, + sym_integer, + ACTIONS(2057), 1, + anon_sym_LBRACK, + ACTIONS(2089), 1, + sym_identifier, + ACTIONS(2435), 1, + anon_sym_EQ_GT, + ACTIONS(2437), 1, + anon_sym_table, + STATE(523), 1, + sym_expression, + STATE(550), 1, + sym__built_in_function_name, + STATE(1095), 1, + sym_identifier_list, + ACTIONS(2053), 2, + sym_float, + sym_string, + ACTIONS(2055), 2, + anon_sym_true, + anon_sym_false, + STATE(587), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(586), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(585), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1359), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [13042] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(107), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [13138] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1341), 1, + anon_sym_LBRACE, + ACTIONS(1343), 1, + anon_sym_LPAREN, + ACTIONS(1345), 1, + sym_integer, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(2409), 1, + anon_sym_EQ_GT, + ACTIONS(2411), 1, + anon_sym_table, + ACTIONS(2455), 1, + sym_identifier, + STATE(550), 1, + sym__built_in_function_name, + STATE(988), 1, + sym_expression, + STATE(1102), 1, + sym_identifier_list, + ACTIONS(1347), 2, + sym_float, + sym_string, + ACTIONS(1349), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(936), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(919), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1359), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [13234] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2047), 1, + anon_sym_LBRACE, + ACTIONS(2049), 1, + anon_sym_LPAREN, + ACTIONS(2051), 1, + sym_integer, + ACTIONS(2057), 1, + anon_sym_LBRACK, + ACTIONS(2089), 1, + sym_identifier, + ACTIONS(2435), 1, + anon_sym_EQ_GT, + ACTIONS(2437), 1, + anon_sym_table, + STATE(522), 1, + sym_expression, + STATE(550), 1, + sym__built_in_function_name, + STATE(1095), 1, + sym_identifier_list, + ACTIONS(2053), 2, + sym_float, + sym_string, + ACTIONS(2055), 2, + anon_sym_true, + anon_sym_false, + STATE(587), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(586), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(585), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1359), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [13330] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(104), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [13426] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(106), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [13522] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(109), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [13618] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(47), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [13714] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(113), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [13810] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(35), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [13906] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(116), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [14002] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(119), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [14098] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(122), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [14194] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(131), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [14290] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1341), 1, + anon_sym_LBRACE, + ACTIONS(1343), 1, + anon_sym_LPAREN, + ACTIONS(1345), 1, + sym_integer, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(2457), 1, + sym_identifier, + ACTIONS(2459), 1, + anon_sym_EQ_GT, + ACTIONS(2461), 1, + anon_sym_table, + STATE(502), 1, + sym__built_in_function_name, + STATE(955), 1, + sym_expression, + STATE(1108), 1, + sym_identifier_list, + ACTIONS(1347), 2, + sym_float, + sym_string, + ACTIONS(1349), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(936), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(919), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2417), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [14386] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(59), 1, + anon_sym_LPAREN, + ACTIONS(61), 1, + sym_integer, + ACTIONS(67), 1, + anon_sym_LBRACK, + ACTIONS(123), 1, + anon_sym_EQ_GT, + ACTIONS(147), 1, + anon_sym_table, + ACTIONS(1323), 1, + sym_identifier, + ACTIONS(1325), 1, + anon_sym_LBRACE, + STATE(181), 1, + sym__built_in_function_name, + STATE(374), 1, + sym_expression, + STATE(1100), 1, + sym_identifier_list, + ACTIONS(63), 2, + sym_float, + sym_string, + ACTIONS(65), 2, + anon_sym_true, + anon_sym_false, + STATE(413), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(419), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(415), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(149), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [14482] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(59), 1, + anon_sym_LPAREN, + ACTIONS(61), 1, + sym_integer, + ACTIONS(67), 1, + anon_sym_LBRACK, + ACTIONS(123), 1, + anon_sym_EQ_GT, + ACTIONS(147), 1, + anon_sym_table, + ACTIONS(1323), 1, + sym_identifier, + ACTIONS(1325), 1, + anon_sym_LBRACE, + STATE(181), 1, + sym__built_in_function_name, + STATE(367), 1, + sym_expression, + STATE(1100), 1, + sym_identifier_list, + ACTIONS(63), 2, + sym_float, + sym_string, + ACTIONS(65), 2, + anon_sym_true, + anon_sym_false, + STATE(413), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(419), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(415), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(149), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [14578] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(134), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [14674] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(59), 1, + anon_sym_LPAREN, + ACTIONS(61), 1, + sym_integer, + ACTIONS(67), 1, + anon_sym_LBRACK, + ACTIONS(123), 1, + anon_sym_EQ_GT, + ACTIONS(147), 1, + anon_sym_table, + ACTIONS(1323), 1, + sym_identifier, + ACTIONS(1325), 1, + anon_sym_LBRACE, + STATE(181), 1, + sym__built_in_function_name, + STATE(373), 1, + sym_expression, + STATE(1100), 1, + sym_identifier_list, + ACTIONS(63), 2, + sym_float, + sym_string, + ACTIONS(65), 2, + anon_sym_true, + anon_sym_false, + STATE(413), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(419), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(415), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(149), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [14770] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(59), 1, + anon_sym_LPAREN, + ACTIONS(61), 1, + sym_integer, + ACTIONS(67), 1, + anon_sym_LBRACK, + ACTIONS(85), 1, + anon_sym_EQ_GT, + ACTIONS(111), 1, + anon_sym_table, + ACTIONS(1323), 1, + sym_identifier, + ACTIONS(1325), 1, + anon_sym_LBRACE, + STATE(170), 1, + sym__built_in_function_name, + STATE(352), 1, + sym_expression, + STATE(1225), 1, + sym_identifier_list, + ACTIONS(63), 2, + sym_float, + sym_string, + ACTIONS(65), 2, + anon_sym_true, + anon_sym_false, + STATE(413), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(419), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(415), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(113), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [14866] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(59), 1, + anon_sym_LPAREN, + ACTIONS(61), 1, + sym_integer, + ACTIONS(67), 1, + anon_sym_LBRACK, + ACTIONS(123), 1, + anon_sym_EQ_GT, + ACTIONS(147), 1, + anon_sym_table, + ACTIONS(1323), 1, + sym_identifier, + ACTIONS(1325), 1, + anon_sym_LBRACE, + STATE(181), 1, + sym__built_in_function_name, + STATE(368), 1, + sym_expression, + STATE(1100), 1, + sym_identifier_list, + ACTIONS(63), 2, + sym_float, + sym_string, + ACTIONS(65), 2, + anon_sym_true, + anon_sym_false, + STATE(413), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(419), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(415), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(149), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [14962] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1341), 1, + anon_sym_LBRACE, + ACTIONS(1343), 1, + anon_sym_LPAREN, + ACTIONS(1345), 1, + sym_integer, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(1901), 1, + anon_sym_EQ_GT, + ACTIONS(1925), 1, + anon_sym_table, + ACTIONS(2463), 1, + sym_identifier, + STATE(429), 1, + sym__built_in_function_name, + STATE(938), 1, + sym_expression, + STATE(1101), 1, + sym_identifier_list, + ACTIONS(1347), 2, + sym_float, + sym_string, + ACTIONS(1349), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(936), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(919), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1927), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [15058] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(135), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [15154] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2047), 1, + anon_sym_LBRACE, + ACTIONS(2049), 1, + anon_sym_LPAREN, + ACTIONS(2051), 1, + sym_integer, + ACTIONS(2057), 1, + anon_sym_LBRACK, + ACTIONS(2089), 1, + sym_identifier, + ACTIONS(2435), 1, + anon_sym_EQ_GT, + ACTIONS(2437), 1, + anon_sym_table, + STATE(519), 1, + sym_expression, + STATE(550), 1, + sym__built_in_function_name, + STATE(1095), 1, + sym_identifier_list, + ACTIONS(2053), 2, + sym_float, + sym_string, + ACTIONS(2055), 2, + anon_sym_true, + anon_sym_false, + STATE(587), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(586), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(585), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1359), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [15250] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(133), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [15346] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1341), 1, + anon_sym_LBRACE, + ACTIONS(1343), 1, + anon_sym_LPAREN, + ACTIONS(1345), 1, + sym_integer, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(1901), 1, + anon_sym_EQ_GT, + ACTIONS(1925), 1, + anon_sym_table, + ACTIONS(2463), 1, + sym_identifier, + STATE(429), 1, + sym__built_in_function_name, + STATE(942), 1, + sym_expression, + STATE(1101), 1, + sym_identifier_list, + ACTIONS(1347), 2, + sym_float, + sym_string, + ACTIONS(1349), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(936), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(919), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1927), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [15442] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1341), 1, + anon_sym_LBRACE, + ACTIONS(1343), 1, + anon_sym_LPAREN, + ACTIONS(1345), 1, + sym_integer, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(1901), 1, + anon_sym_EQ_GT, + ACTIONS(1925), 1, + anon_sym_table, + ACTIONS(2463), 1, + sym_identifier, + STATE(429), 1, + sym__built_in_function_name, + STATE(937), 1, + sym_expression, + STATE(1101), 1, + sym_identifier_list, + ACTIONS(1347), 2, + sym_float, + sym_string, + ACTIONS(1349), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(936), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(919), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1927), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [15538] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1341), 1, + anon_sym_LBRACE, + ACTIONS(1343), 1, + anon_sym_LPAREN, + ACTIONS(1345), 1, + sym_integer, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(2421), 1, + sym_identifier, + ACTIONS(2423), 1, + anon_sym_EQ_GT, + ACTIONS(2425), 1, + anon_sym_table, + STATE(372), 1, + sym__built_in_function_name, + STATE(922), 1, + sym_expression, + STATE(1109), 1, + sym_identifier_list, + ACTIONS(1347), 2, + sym_float, + sym_string, + ACTIONS(1349), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(936), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(919), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2095), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [15634] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1341), 1, + anon_sym_LBRACE, + ACTIONS(1343), 1, + anon_sym_LPAREN, + ACTIONS(1345), 1, + sym_integer, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(1901), 1, + anon_sym_EQ_GT, + ACTIONS(1925), 1, + anon_sym_table, + ACTIONS(2463), 1, + sym_identifier, + STATE(429), 1, + sym__built_in_function_name, + STATE(941), 1, + sym_expression, + STATE(1101), 1, + sym_identifier_list, + ACTIONS(1347), 2, + sym_float, + sym_string, + ACTIONS(1349), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(936), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(919), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1927), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [15730] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(748), 1, + sym_logic_operator, + STATE(749), 1, + sym_math_operator, + ACTIONS(2063), 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(2065), 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, + [15800] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2047), 1, + anon_sym_LBRACE, + ACTIONS(2049), 1, + anon_sym_LPAREN, + ACTIONS(2051), 1, + sym_integer, + ACTIONS(2057), 1, + anon_sym_LBRACK, + ACTIONS(2089), 1, + sym_identifier, + ACTIONS(2435), 1, + anon_sym_EQ_GT, + ACTIONS(2437), 1, + anon_sym_table, + STATE(550), 1, + sym__built_in_function_name, + STATE(743), 1, + sym_expression, + STATE(1095), 1, + sym_identifier_list, + ACTIONS(2053), 2, + sym_float, + sym_string, + ACTIONS(2055), 2, + anon_sym_true, + anon_sym_false, + STATE(587), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(586), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(585), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1359), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [15896] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(73), 1, + anon_sym_DASH, + ACTIONS(2287), 1, + anon_sym_COLON, + STATE(748), 1, + sym_logic_operator, + STATE(749), 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(2075), 6, + anon_sym_LBRACE, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_EQ_GT, + ACTIONS(2077), 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, + [15976] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(748), 1, + sym_logic_operator, + STATE(749), 1, + sym_math_operator, + ACTIONS(2067), 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(2069), 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, + [16046] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(73), 1, + anon_sym_DASH, + ACTIONS(2287), 1, + anon_sym_COLON, + STATE(748), 1, + sym_logic_operator, + STATE(749), 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(2079), 6, + anon_sym_LBRACE, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_EQ_GT, + ACTIONS(2081), 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, + [16126] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2047), 1, + anon_sym_LBRACE, + ACTIONS(2049), 1, + anon_sym_LPAREN, + ACTIONS(2051), 1, + sym_integer, + ACTIONS(2057), 1, + anon_sym_LBRACK, + ACTIONS(2089), 1, + sym_identifier, + ACTIONS(2435), 1, + anon_sym_EQ_GT, + ACTIONS(2437), 1, + anon_sym_table, + STATE(550), 1, + sym__built_in_function_name, + STATE(745), 1, + sym_expression, + STATE(1095), 1, + sym_identifier_list, + ACTIONS(2053), 2, + sym_float, + sym_string, + ACTIONS(2055), 2, + anon_sym_true, + anon_sym_false, + STATE(587), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(586), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(585), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1359), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [16222] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2047), 1, + anon_sym_LBRACE, + ACTIONS(2049), 1, + anon_sym_LPAREN, + ACTIONS(2051), 1, + sym_integer, + ACTIONS(2057), 1, + anon_sym_LBRACK, + ACTIONS(2089), 1, + sym_identifier, + ACTIONS(2435), 1, + anon_sym_EQ_GT, + ACTIONS(2437), 1, + anon_sym_table, + STATE(550), 1, + sym__built_in_function_name, + STATE(746), 1, + sym_expression, + STATE(1095), 1, + sym_identifier_list, + ACTIONS(2053), 2, + sym_float, + sym_string, + ACTIONS(2055), 2, + anon_sym_true, + anon_sym_false, + STATE(587), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(586), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(585), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1359), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [16318] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2047), 1, + anon_sym_LBRACE, + ACTIONS(2049), 1, + anon_sym_LPAREN, + ACTIONS(2051), 1, + sym_integer, + ACTIONS(2057), 1, + anon_sym_LBRACK, + ACTIONS(2089), 1, + sym_identifier, + ACTIONS(2413), 1, + anon_sym_EQ_GT, + ACTIONS(2415), 1, + anon_sym_table, + STATE(502), 1, + sym__built_in_function_name, + STATE(632), 1, + sym_expression, + STATE(1106), 1, + sym_identifier_list, + ACTIONS(2053), 2, + sym_float, + sym_string, + ACTIONS(2055), 2, + anon_sym_true, + anon_sym_false, + STATE(587), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(586), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(585), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2417), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [16414] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(80), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [16510] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1341), 1, + anon_sym_LBRACE, + ACTIONS(1343), 1, + anon_sym_LPAREN, + ACTIONS(1345), 1, + sym_integer, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(2465), 1, + sym_identifier, + ACTIONS(2467), 1, + anon_sym_EQ_GT, + ACTIONS(2469), 1, + anon_sym_table, + STATE(550), 1, + sym__built_in_function_name, + STATE(999), 1, + sym_expression, + STATE(1081), 1, + sym_identifier_list, + ACTIONS(1347), 2, + sym_float, + sym_string, + ACTIONS(1349), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(936), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1000), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1359), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [16606] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2047), 1, + anon_sym_LBRACE, + ACTIONS(2049), 1, + anon_sym_LPAREN, + ACTIONS(2051), 1, + sym_integer, + ACTIONS(2057), 1, + anon_sym_LBRACK, + ACTIONS(2089), 1, + sym_identifier, + ACTIONS(2435), 1, + anon_sym_EQ_GT, + ACTIONS(2437), 1, + anon_sym_table, + STATE(550), 1, + sym__built_in_function_name, + STATE(747), 1, + sym_expression, + STATE(1095), 1, + sym_identifier_list, + ACTIONS(2053), 2, + sym_float, + sym_string, + ACTIONS(2055), 2, + anon_sym_true, + anon_sym_false, + STATE(587), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(586), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(585), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1359), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [16702] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1341), 1, + anon_sym_LBRACE, + ACTIONS(1343), 1, + anon_sym_LPAREN, + ACTIONS(1345), 1, + sym_integer, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(2409), 1, + anon_sym_EQ_GT, + ACTIONS(2411), 1, + anon_sym_table, + ACTIONS(2471), 1, + sym_identifier, + STATE(550), 1, + sym__built_in_function_name, + STATE(979), 1, + sym_expression, + STATE(1102), 1, + sym_identifier_list, + ACTIONS(1347), 2, + sym_float, + sym_string, + ACTIONS(1349), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(936), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(919), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1359), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [16798] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(137), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [16894] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(37), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [16990] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1341), 1, + anon_sym_LBRACE, + ACTIONS(1343), 1, + anon_sym_LPAREN, + ACTIONS(1345), 1, + sym_integer, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(2465), 1, + sym_identifier, + ACTIONS(2467), 1, + anon_sym_EQ_GT, + ACTIONS(2469), 1, + anon_sym_table, + STATE(550), 1, + sym__built_in_function_name, + STATE(999), 1, + sym_expression, + STATE(1081), 1, + sym_identifier_list, + ACTIONS(1347), 2, + sym_float, + sym_string, + ACTIONS(1349), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(936), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1001), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1359), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [17086] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2047), 1, + anon_sym_LBRACE, + ACTIONS(2049), 1, + anon_sym_LPAREN, + ACTIONS(2051), 1, + sym_integer, + ACTIONS(2057), 1, + anon_sym_LBRACK, + ACTIONS(2089), 1, + sym_identifier, + ACTIONS(2435), 1, + anon_sym_EQ_GT, + ACTIONS(2437), 1, + anon_sym_table, + STATE(508), 1, + sym_expression, + STATE(550), 1, + sym__built_in_function_name, + STATE(1095), 1, + sym_identifier_list, + ACTIONS(2053), 2, + sym_float, + sym_string, + ACTIONS(2055), 2, + anon_sym_true, + anon_sym_false, + STATE(587), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(586), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(585), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1359), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [17182] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(43), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [17278] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(41), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [17374] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(38), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [17470] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(36), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [17566] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(115), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [17662] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(222), 1, + sym__built_in_function_name, + STATE(521), 1, + sym_expression, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [17758] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(59), 1, + anon_sym_LPAREN, + ACTIONS(61), 1, + sym_integer, + ACTIONS(67), 1, + anon_sym_LBRACK, + ACTIONS(123), 1, + anon_sym_EQ_GT, + ACTIONS(147), 1, + anon_sym_table, + ACTIONS(1323), 1, + sym_identifier, + ACTIONS(1325), 1, + anon_sym_LBRACE, + STATE(181), 1, + sym__built_in_function_name, + STATE(370), 1, + sym_expression, + STATE(1100), 1, + sym_identifier_list, + ACTIONS(63), 2, + sym_float, + sym_string, + ACTIONS(65), 2, + anon_sym_true, + anon_sym_false, + STATE(413), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(419), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(415), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(149), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [17854] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(59), 1, + anon_sym_LPAREN, + ACTIONS(61), 1, + sym_integer, + ACTIONS(67), 1, + anon_sym_LBRACK, + ACTIONS(123), 1, + anon_sym_EQ_GT, + ACTIONS(147), 1, + anon_sym_table, + ACTIONS(1323), 1, + sym_identifier, + ACTIONS(1325), 1, + anon_sym_LBRACE, + STATE(3), 1, + sym_expression, + STATE(181), 1, + sym__built_in_function_name, + STATE(1100), 1, + sym_identifier_list, + ACTIONS(63), 2, + sym_float, + sym_string, + ACTIONS(65), 2, + anon_sym_true, + anon_sym_false, + STATE(413), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(419), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(415), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(149), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [17950] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1341), 1, + anon_sym_LBRACE, + ACTIONS(1343), 1, + anon_sym_LPAREN, + ACTIONS(1345), 1, + sym_integer, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(2473), 1, + sym_identifier, + ACTIONS(2475), 1, + anon_sym_EQ_GT, + ACTIONS(2477), 1, + anon_sym_table, + STATE(502), 1, + sym__built_in_function_name, + STATE(957), 1, + sym_expression, + STATE(1103), 1, + sym_identifier_list, + ACTIONS(1347), 2, + sym_float, + sym_string, + ACTIONS(1349), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(936), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(919), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2417), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [18046] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(93), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [18142] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(152), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [18238] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(265), 1, + anon_sym_EQ_GT, + ACTIONS(289), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(208), 1, + sym__built_in_function_name, + STATE(444), 1, + sym_expression, + STATE(1155), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(291), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [18334] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(100), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [18430] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(265), 1, + anon_sym_EQ_GT, + ACTIONS(289), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(208), 1, + sym__built_in_function_name, + STATE(440), 1, + sym_expression, + STATE(1155), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(291), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [18526] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(96), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [18622] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(265), 1, + anon_sym_EQ_GT, + ACTIONS(289), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(7), 1, + sym_expression, + STATE(208), 1, + sym__built_in_function_name, + STATE(1155), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(291), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [18718] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(71), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [18814] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2047), 1, + anon_sym_LBRACE, + ACTIONS(2049), 1, + anon_sym_LPAREN, + ACTIONS(2051), 1, + sym_integer, + ACTIONS(2057), 1, + anon_sym_LBRACK, + ACTIONS(2089), 1, + sym_identifier, + ACTIONS(2435), 1, + anon_sym_EQ_GT, + ACTIONS(2437), 1, + anon_sym_table, + STATE(529), 1, + sym_expression, + STATE(550), 1, + sym__built_in_function_name, + STATE(1095), 1, + sym_identifier_list, + ACTIONS(2053), 2, + sym_float, + sym_string, + ACTIONS(2055), 2, + anon_sym_true, + anon_sym_false, + STATE(587), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(586), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(585), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1359), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [18910] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(67), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [19006] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(46), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [19102] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(45), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [19198] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(44), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [19294] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(60), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [19390] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(62), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [19486] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(265), 1, + anon_sym_EQ_GT, + ACTIONS(289), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(208), 1, + sym__built_in_function_name, + STATE(442), 1, + sym_expression, + STATE(1155), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(291), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [19582] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(265), 1, + anon_sym_EQ_GT, + ACTIONS(289), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(208), 1, + sym__built_in_function_name, + STATE(445), 1, + sym_expression, + STATE(1155), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(291), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [19678] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(52), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [19774] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(195), 1, + anon_sym_EQ_GT, + ACTIONS(219), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(189), 1, + sym__built_in_function_name, + STATE(432), 1, + sym_expression, + STATE(1104), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(221), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [19870] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(265), 1, + anon_sym_EQ_GT, + ACTIONS(289), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(208), 1, + sym__built_in_function_name, + STATE(447), 1, + sym_expression, + STATE(1155), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(291), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [19966] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(83), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [20062] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(89), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [20158] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(111), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [20254] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(121), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [20350] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(129), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [20446] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2047), 1, + anon_sym_LBRACE, + ACTIONS(2049), 1, + anon_sym_LPAREN, + ACTIONS(2051), 1, + sym_integer, + ACTIONS(2057), 1, + anon_sym_LBRACK, + ACTIONS(2089), 1, + sym_identifier, + ACTIONS(2435), 1, + anon_sym_EQ_GT, + ACTIONS(2437), 1, + anon_sym_table, + STATE(507), 1, + sym_expression, + STATE(550), 1, + sym__built_in_function_name, + STATE(1095), 1, + sym_identifier_list, + ACTIONS(2053), 2, + sym_float, + sym_string, + ACTIONS(2055), 2, + anon_sym_true, + anon_sym_false, + STATE(587), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(586), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(585), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1359), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [20542] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(70), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [20638] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(82), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [20734] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(59), 1, + anon_sym_LPAREN, + ACTIONS(61), 1, + sym_integer, + ACTIONS(67), 1, + anon_sym_LBRACK, + ACTIONS(231), 1, + anon_sym_EQ_GT, + ACTIONS(255), 1, + anon_sym_table, + ACTIONS(1323), 1, + sym_identifier, + ACTIONS(1325), 1, + anon_sym_LBRACE, + STATE(203), 1, + sym__built_in_function_name, + STATE(451), 1, + sym_expression, + STATE(1085), 1, + sym_identifier_list, + ACTIONS(63), 2, + sym_float, + sym_string, + ACTIONS(65), 2, + anon_sym_true, + anon_sym_false, + STATE(413), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(419), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(415), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(257), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [20830] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1341), 1, + anon_sym_LBRACE, + ACTIONS(1343), 1, + anon_sym_LPAREN, + ACTIONS(1345), 1, + sym_integer, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(2465), 1, + sym_identifier, + ACTIONS(2467), 1, + anon_sym_EQ_GT, + ACTIONS(2469), 1, + anon_sym_table, + STATE(550), 1, + sym__built_in_function_name, + STATE(999), 1, + sym_expression, + STATE(1081), 1, + sym_identifier_list, + ACTIONS(1347), 2, + sym_float, + sym_string, + ACTIONS(1349), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(936), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1002), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1359), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [20926] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(101), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + 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(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(55), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + 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(47), 1, + anon_sym_PIPE, + ACTIONS(2047), 1, + anon_sym_LBRACE, + ACTIONS(2049), 1, + anon_sym_LPAREN, + ACTIONS(2051), 1, + sym_integer, + ACTIONS(2057), 1, + anon_sym_LBRACK, + ACTIONS(2089), 1, + sym_identifier, + ACTIONS(2435), 1, + anon_sym_EQ_GT, + ACTIONS(2437), 1, + anon_sym_table, + STATE(506), 1, + sym_expression, + STATE(550), 1, + sym__built_in_function_name, + STATE(1095), 1, + sym_identifier_list, + ACTIONS(2053), 2, + sym_float, + sym_string, + ACTIONS(2055), 2, + anon_sym_true, + anon_sym_false, + STATE(587), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(586), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(585), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1359), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + 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(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(23), 1, + anon_sym_EQ_GT, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(108), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + 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] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(56), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [21406] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(34), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [21502] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(124), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [21598] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(117), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [21694] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(139), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [21790] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(144), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [21886] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(130), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [21982] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1339), 1, + sym_identifier, + ACTIONS(1341), 1, + anon_sym_LBRACE, + ACTIONS(1343), 1, + anon_sym_LPAREN, + ACTIONS(1345), 1, + sym_integer, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(1355), 1, + anon_sym_EQ_GT, + ACTIONS(1357), 1, + anon_sym_table, + STATE(550), 1, + sym__built_in_function_name, + STATE(992), 1, + sym_expression, + STATE(1086), 1, + sym_identifier_list, + ACTIONS(1347), 2, + sym_float, + sym_string, + ACTIONS(1349), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(936), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(919), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1359), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [22078] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(145), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [22174] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(59), 1, + anon_sym_LPAREN, + ACTIONS(61), 1, + sym_integer, + ACTIONS(67), 1, + anon_sym_LBRACK, + ACTIONS(85), 1, + anon_sym_EQ_GT, + ACTIONS(111), 1, + anon_sym_table, + ACTIONS(1323), 1, + sym_identifier, + ACTIONS(1325), 1, + anon_sym_LBRACE, + STATE(170), 1, + sym__built_in_function_name, + STATE(361), 1, + sym_expression, + STATE(1225), 1, + sym_identifier_list, + ACTIONS(63), 2, + sym_float, + sym_string, + ACTIONS(65), 2, + anon_sym_true, + anon_sym_false, + STATE(413), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(419), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(415), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(113), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [22270] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2047), 1, + anon_sym_LBRACE, + ACTIONS(2049), 1, + anon_sym_LPAREN, + ACTIONS(2051), 1, + sym_integer, + ACTIONS(2057), 1, + anon_sym_LBRACK, + ACTIONS(2089), 1, + sym_identifier, + ACTIONS(2435), 1, + anon_sym_EQ_GT, + ACTIONS(2437), 1, + anon_sym_table, + STATE(520), 1, + sym_expression, + STATE(550), 1, + sym__built_in_function_name, + STATE(1095), 1, + sym_identifier_list, + ACTIONS(2053), 2, + sym_float, + sym_string, + ACTIONS(2055), 2, + anon_sym_true, + anon_sym_false, + STATE(587), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(586), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(585), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1359), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [22366] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(132), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [22462] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(92), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [22558] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1339), 1, + sym_identifier, + ACTIONS(1341), 1, + anon_sym_LBRACE, + ACTIONS(1343), 1, + anon_sym_LPAREN, + ACTIONS(1345), 1, + sym_integer, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(1355), 1, + anon_sym_EQ_GT, + ACTIONS(1357), 1, + anon_sym_table, + STATE(550), 1, + sym__built_in_function_name, + STATE(967), 1, + sym_expression, + STATE(1086), 1, + sym_identifier_list, + ACTIONS(1347), 2, + sym_float, + sym_string, + ACTIONS(1349), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(936), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(919), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1359), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [22654] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(90), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [22750] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(74), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [22846] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(73), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [22942] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(72), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [23038] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(530), 1, + anon_sym_EQ_GT, + ACTIONS(554), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(218), 1, + sym__built_in_function_name, + STATE(466), 1, + sym_expression, + STATE(1119), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(556), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [23134] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(530), 1, + anon_sym_EQ_GT, + ACTIONS(554), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(218), 1, + sym__built_in_function_name, + STATE(477), 1, + sym_expression, + STATE(1119), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(556), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [23230] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(530), 1, + anon_sym_EQ_GT, + ACTIONS(554), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(218), 1, + sym__built_in_function_name, + STATE(465), 1, + sym_expression, + STATE(1119), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(556), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [23326] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(63), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [23422] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1339), 1, + sym_identifier, + ACTIONS(1341), 1, + anon_sym_LBRACE, + ACTIONS(1343), 1, + anon_sym_LPAREN, + ACTIONS(1345), 1, + sym_integer, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(1355), 1, + anon_sym_EQ_GT, + ACTIONS(1357), 1, + anon_sym_table, + STATE(550), 1, + sym__built_in_function_name, + STATE(997), 1, + sym_expression, + STATE(1086), 1, + sym_identifier_list, + ACTIONS(1347), 2, + sym_float, + sym_string, + ACTIONS(1349), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(936), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(919), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1359), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [23518] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1341), 1, + anon_sym_LBRACE, + ACTIONS(1343), 1, + anon_sym_LPAREN, + ACTIONS(1345), 1, + sym_integer, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(2457), 1, + sym_identifier, + ACTIONS(2459), 1, + anon_sym_EQ_GT, + ACTIONS(2461), 1, + anon_sym_table, + STATE(502), 1, + sym__built_in_function_name, + STATE(952), 1, + sym_expression, + STATE(1108), 1, + sym_identifier_list, + ACTIONS(1347), 2, + sym_float, + sym_string, + ACTIONS(1349), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(936), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(919), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2417), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + 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] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1339), 1, + sym_identifier, + ACTIONS(1341), 1, + anon_sym_LBRACE, + ACTIONS(1343), 1, + anon_sym_LPAREN, + ACTIONS(1345), 1, + sym_integer, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(1355), 1, + anon_sym_EQ_GT, + ACTIONS(1357), 1, + anon_sym_table, + STATE(550), 1, + sym__built_in_function_name, + STATE(971), 1, + sym_expression, + STATE(1086), 1, + sym_identifier_list, + ACTIONS(1347), 2, + sym_float, + sym_string, + ACTIONS(1349), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(936), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(919), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1359), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [23710] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(68), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [23806] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(59), 1, + anon_sym_LPAREN, + ACTIONS(61), 1, + sym_integer, + ACTIONS(67), 1, + anon_sym_LBRACK, + ACTIONS(231), 1, + anon_sym_EQ_GT, + ACTIONS(255), 1, + anon_sym_table, + ACTIONS(1323), 1, + sym_identifier, + ACTIONS(1325), 1, + anon_sym_LBRACE, + STATE(203), 1, + sym__built_in_function_name, + STATE(452), 1, + sym_expression, + STATE(1085), 1, + sym_identifier_list, + ACTIONS(63), 2, + sym_float, + sym_string, + ACTIONS(65), 2, + anon_sym_true, + anon_sym_false, + STATE(413), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(419), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(415), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(257), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [23902] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(64), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [23998] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(65), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [24094] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(69), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [24190] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(66), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [24286] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(77), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [24382] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(81), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [24478] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(19), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [24574] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(530), 1, + anon_sym_EQ_GT, + ACTIONS(554), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(218), 1, + sym__built_in_function_name, + STATE(469), 1, + sym_expression, + STATE(1119), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(556), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [24670] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(59), 1, + anon_sym_LPAREN, + ACTIONS(61), 1, + sym_integer, + ACTIONS(67), 1, + anon_sym_LBRACK, + ACTIONS(231), 1, + anon_sym_EQ_GT, + ACTIONS(255), 1, + anon_sym_table, + ACTIONS(1323), 1, + sym_identifier, + ACTIONS(1325), 1, + anon_sym_LBRACE, + STATE(203), 1, + sym__built_in_function_name, + STATE(450), 1, + sym_expression, + STATE(1085), 1, + sym_identifier_list, + ACTIONS(63), 2, + sym_float, + sym_string, + ACTIONS(65), 2, + anon_sym_true, + anon_sym_false, + STATE(413), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(419), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(415), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(257), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [24766] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(59), 1, + anon_sym_LPAREN, + ACTIONS(61), 1, + sym_integer, + ACTIONS(67), 1, + anon_sym_LBRACK, + ACTIONS(231), 1, + anon_sym_EQ_GT, + ACTIONS(255), 1, + anon_sym_table, + ACTIONS(1323), 1, + sym_identifier, + ACTIONS(1325), 1, + anon_sym_LBRACE, + STATE(203), 1, + sym__built_in_function_name, + STATE(457), 1, + sym_expression, + STATE(1085), 1, + sym_identifier_list, + ACTIONS(63), 2, + sym_float, + sym_string, + ACTIONS(65), 2, + anon_sym_true, + anon_sym_false, + STATE(413), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(419), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(415), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(257), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [24862] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(59), 1, + anon_sym_LPAREN, + ACTIONS(61), 1, + sym_integer, + ACTIONS(67), 1, + anon_sym_LBRACK, + ACTIONS(159), 1, + anon_sym_EQ_GT, + ACTIONS(183), 1, + anon_sym_table, + ACTIONS(1323), 1, + sym_identifier, + ACTIONS(1325), 1, + anon_sym_LBRACE, + STATE(186), 1, + sym__built_in_function_name, + STATE(398), 1, + sym_expression, + STATE(1210), 1, + sym_identifier_list, + ACTIONS(63), 2, + sym_float, + sym_string, + ACTIONS(65), 2, + anon_sym_true, + anon_sym_false, + STATE(413), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(419), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(415), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(185), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [24958] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(84), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [25054] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(42), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [25150] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(91), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [25246] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(61), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [25342] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2047), 1, + anon_sym_LBRACE, + ACTIONS(2049), 1, + anon_sym_LPAREN, + ACTIONS(2051), 1, + sym_integer, + ACTIONS(2057), 1, + anon_sym_LBRACK, + ACTIONS(2089), 1, + sym_identifier, + ACTIONS(2435), 1, + anon_sym_EQ_GT, + ACTIONS(2437), 1, + anon_sym_table, + STATE(505), 1, + sym_expression, + STATE(550), 1, + sym__built_in_function_name, + STATE(1095), 1, + sym_identifier_list, + ACTIONS(2053), 2, + sym_float, + sym_string, + ACTIONS(2055), 2, + anon_sym_true, + anon_sym_false, + STATE(587), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(586), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(585), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1359), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [25438] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(39), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [25534] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(195), 1, + anon_sym_EQ_GT, + ACTIONS(219), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(5), 1, + sym_expression, + STATE(189), 1, + sym__built_in_function_name, + STATE(1104), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(221), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [25630] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(222), 1, + sym__built_in_function_name, + STATE(528), 1, + sym_expression, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [25726] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(530), 1, + anon_sym_EQ_GT, + ACTIONS(554), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(218), 1, + sym__built_in_function_name, + STATE(467), 1, + sym_expression, + STATE(1119), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(556), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [25822] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(59), 1, + anon_sym_LPAREN, + ACTIONS(61), 1, + sym_integer, + ACTIONS(67), 1, + anon_sym_LBRACK, + ACTIONS(85), 1, + anon_sym_EQ_GT, + ACTIONS(111), 1, + anon_sym_table, + ACTIONS(1323), 1, + sym_identifier, + ACTIONS(1325), 1, + anon_sym_LBRACE, + STATE(170), 1, + sym__built_in_function_name, + STATE(358), 1, + sym_expression, + STATE(1225), 1, + sym_identifier_list, + ACTIONS(63), 2, + sym_float, + sym_string, + ACTIONS(65), 2, + anon_sym_true, + anon_sym_false, + STATE(413), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(419), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(415), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(113), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [25918] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(59), 1, + anon_sym_LPAREN, + ACTIONS(61), 1, + sym_integer, + ACTIONS(67), 1, + anon_sym_LBRACK, + ACTIONS(85), 1, + anon_sym_EQ_GT, + ACTIONS(111), 1, + anon_sym_table, + ACTIONS(1323), 1, + sym_identifier, + ACTIONS(1325), 1, + anon_sym_LBRACE, + STATE(170), 1, + sym__built_in_function_name, + STATE(362), 1, + sym_expression, + STATE(1225), 1, + sym_identifier_list, + ACTIONS(63), 2, + sym_float, + sym_string, + ACTIONS(65), 2, + anon_sym_true, + anon_sym_false, + STATE(413), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(419), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(415), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(113), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [26014] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(222), 1, + sym__built_in_function_name, + STATE(518), 1, + sym_expression, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [26110] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1341), 1, + anon_sym_LBRACE, + ACTIONS(1343), 1, + anon_sym_LPAREN, + ACTIONS(1345), 1, + sym_integer, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(2473), 1, + sym_identifier, + ACTIONS(2475), 1, + anon_sym_EQ_GT, + ACTIONS(2477), 1, + anon_sym_table, + STATE(502), 1, + sym__built_in_function_name, + STATE(956), 1, + sym_expression, + STATE(1103), 1, + sym_identifier_list, + ACTIONS(1347), 2, + sym_float, + sym_string, + ACTIONS(1349), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(936), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(919), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2417), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [26206] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1341), 1, + anon_sym_LBRACE, + ACTIONS(1343), 1, + anon_sym_LPAREN, + ACTIONS(1345), 1, + sym_integer, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(2473), 1, + sym_identifier, + ACTIONS(2475), 1, + anon_sym_EQ_GT, + ACTIONS(2477), 1, + anon_sym_table, + STATE(502), 1, + sym__built_in_function_name, + STATE(958), 1, + sym_expression, + STATE(1103), 1, + sym_identifier_list, + ACTIONS(1347), 2, + sym_float, + sym_string, + ACTIONS(1349), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(936), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(919), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2417), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [26302] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1341), 1, + anon_sym_LBRACE, + ACTIONS(1343), 1, + anon_sym_LPAREN, + ACTIONS(1345), 1, + sym_integer, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(2473), 1, + sym_identifier, + ACTIONS(2475), 1, + anon_sym_EQ_GT, + ACTIONS(2477), 1, + anon_sym_table, + STATE(502), 1, + sym__built_in_function_name, + STATE(944), 1, + sym_expression, + STATE(1103), 1, + sym_identifier_list, + ACTIONS(1347), 2, + sym_float, + sym_string, + ACTIONS(1349), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(936), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(919), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2417), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [26398] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1341), 1, + anon_sym_LBRACE, + ACTIONS(1343), 1, + anon_sym_LPAREN, + ACTIONS(1345), 1, + sym_integer, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(2465), 1, + sym_identifier, + ACTIONS(2467), 1, + anon_sym_EQ_GT, + ACTIONS(2469), 1, + anon_sym_table, + STATE(550), 1, + sym__built_in_function_name, + STATE(991), 1, + sym_expression, + STATE(1081), 1, + sym_identifier_list, + ACTIONS(1347), 2, + sym_float, + sym_string, + ACTIONS(1349), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(936), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(919), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1359), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [26494] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1341), 1, + anon_sym_LBRACE, + ACTIONS(1343), 1, + anon_sym_LPAREN, + ACTIONS(1345), 1, + sym_integer, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(2409), 1, + anon_sym_EQ_GT, + ACTIONS(2411), 1, + anon_sym_table, + ACTIONS(2479), 1, + sym_identifier, + STATE(550), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_expression, + STATE(1102), 1, + sym_identifier_list, + ACTIONS(1347), 2, + sym_float, + sym_string, + ACTIONS(1349), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(936), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(919), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1359), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [26590] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(222), 1, + sym__built_in_function_name, + STATE(517), 1, + sym_expression, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [26686] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(114), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [26782] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(53), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [26878] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(59), 1, + anon_sym_LPAREN, + ACTIONS(61), 1, + sym_integer, + ACTIONS(67), 1, + anon_sym_LBRACK, + ACTIONS(231), 1, + anon_sym_EQ_GT, + ACTIONS(255), 1, + anon_sym_table, + ACTIONS(1323), 1, + sym_identifier, + ACTIONS(1325), 1, + anon_sym_LBRACE, + STATE(6), 1, + sym_expression, + STATE(203), 1, + sym__built_in_function_name, + STATE(1085), 1, + sym_identifier_list, + ACTIONS(63), 2, + sym_float, + sym_string, + ACTIONS(65), 2, + anon_sym_true, + anon_sym_false, + STATE(413), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(419), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(415), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(257), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [26974] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(59), 1, + anon_sym_LPAREN, + ACTIONS(61), 1, + sym_integer, + ACTIONS(67), 1, + anon_sym_LBRACK, + ACTIONS(159), 1, + anon_sym_EQ_GT, + ACTIONS(183), 1, + anon_sym_table, + ACTIONS(1323), 1, + sym_identifier, + ACTIONS(1325), 1, + anon_sym_LBRACE, + STATE(186), 1, + sym__built_in_function_name, + STATE(425), 1, + sym_expression, + STATE(1210), 1, + sym_identifier_list, + ACTIONS(63), 2, + sym_float, + sym_string, + ACTIONS(65), 2, + anon_sym_true, + anon_sym_false, + STATE(413), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(419), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(415), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(185), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [27070] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1341), 1, + anon_sym_LBRACE, + ACTIONS(1343), 1, + anon_sym_LPAREN, + ACTIONS(1345), 1, + sym_integer, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(2473), 1, + sym_identifier, + ACTIONS(2475), 1, + anon_sym_EQ_GT, + ACTIONS(2477), 1, + anon_sym_table, + STATE(502), 1, + sym__built_in_function_name, + STATE(960), 1, + sym_expression, + STATE(1103), 1, + sym_identifier_list, + ACTIONS(1347), 2, + sym_float, + sym_string, + ACTIONS(1349), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(936), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(919), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2417), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [27166] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(59), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [27262] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(59), 1, + anon_sym_LPAREN, + ACTIONS(61), 1, + sym_integer, + ACTIONS(67), 1, + anon_sym_LBRACK, + ACTIONS(85), 1, + anon_sym_EQ_GT, + ACTIONS(111), 1, + anon_sym_table, + ACTIONS(1323), 1, + sym_identifier, + ACTIONS(1325), 1, + anon_sym_LBRACE, + STATE(170), 1, + sym__built_in_function_name, + STATE(359), 1, + sym_expression, + STATE(1225), 1, + sym_identifier_list, + ACTIONS(63), 2, + sym_float, + sym_string, + ACTIONS(65), 2, + anon_sym_true, + anon_sym_false, + STATE(413), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(419), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(415), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(113), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [27358] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(97), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [27454] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(126), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [27550] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2047), 1, + anon_sym_LBRACE, + ACTIONS(2049), 1, + anon_sym_LPAREN, + ACTIONS(2051), 1, + sym_integer, + ACTIONS(2057), 1, + anon_sym_LBRACK, + ACTIONS(2089), 1, + sym_identifier, + ACTIONS(2091), 1, + anon_sym_EQ_GT, + ACTIONS(2093), 1, + anon_sym_table, + STATE(372), 1, + sym__built_in_function_name, + STATE(558), 1, + sym_expression, + STATE(1105), 1, + sym_identifier_list, + ACTIONS(2053), 2, + sym_float, + sym_string, + ACTIONS(2055), 2, + anon_sym_true, + anon_sym_false, + STATE(587), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(586), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(585), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2095), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [27646] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2047), 1, + anon_sym_LBRACE, + ACTIONS(2049), 1, + anon_sym_LPAREN, + ACTIONS(2051), 1, + sym_integer, + ACTIONS(2057), 1, + anon_sym_LBRACK, + ACTIONS(2089), 1, + sym_identifier, + ACTIONS(2091), 1, + anon_sym_EQ_GT, + ACTIONS(2093), 1, + anon_sym_table, + STATE(372), 1, + sym__built_in_function_name, + STATE(557), 1, + sym_expression, + STATE(1105), 1, + sym_identifier_list, + ACTIONS(2053), 2, + sym_float, + sym_string, + ACTIONS(2055), 2, + anon_sym_true, + anon_sym_false, + STATE(587), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(586), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(585), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2095), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [27742] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2047), 1, + anon_sym_LBRACE, + ACTIONS(2049), 1, + anon_sym_LPAREN, + ACTIONS(2051), 1, + sym_integer, + ACTIONS(2057), 1, + anon_sym_LBRACK, + ACTIONS(2089), 1, + sym_identifier, + ACTIONS(2091), 1, + anon_sym_EQ_GT, + ACTIONS(2093), 1, + anon_sym_table, + STATE(372), 1, + sym__built_in_function_name, + STATE(556), 1, + sym_expression, + STATE(1105), 1, + sym_identifier_list, + ACTIONS(2053), 2, + sym_float, + sym_string, + ACTIONS(2055), 2, + anon_sym_true, + anon_sym_false, + STATE(587), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(586), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(585), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2095), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [27838] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(143), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [27934] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(88), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [28030] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1341), 1, + anon_sym_LBRACE, + ACTIONS(1343), 1, + anon_sym_LPAREN, + ACTIONS(1345), 1, + sym_integer, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(2409), 1, + anon_sym_EQ_GT, + ACTIONS(2411), 1, + anon_sym_table, + ACTIONS(2479), 1, + sym_identifier, + STATE(550), 1, + sym__built_in_function_name, + STATE(986), 1, + sym_expression, + STATE(1102), 1, + sym_identifier_list, + ACTIONS(1347), 2, + sym_float, + sym_string, + ACTIONS(1349), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(936), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(919), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1359), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [28126] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1341), 1, + anon_sym_LBRACE, + ACTIONS(1343), 1, + anon_sym_LPAREN, + ACTIONS(1345), 1, + sym_integer, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(2409), 1, + anon_sym_EQ_GT, + ACTIONS(2411), 1, + anon_sym_table, + ACTIONS(2479), 1, + sym_identifier, + STATE(550), 1, + sym__built_in_function_name, + STATE(976), 1, + sym_expression, + STATE(1102), 1, + sym_identifier_list, + ACTIONS(1347), 2, + sym_float, + sym_string, + ACTIONS(1349), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(936), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(919), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1359), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [28222] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1341), 1, + anon_sym_LBRACE, + ACTIONS(1343), 1, + anon_sym_LPAREN, + ACTIONS(1345), 1, + sym_integer, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(2441), 1, + sym_identifier, + ACTIONS(2443), 1, + anon_sym_EQ_GT, + ACTIONS(2445), 1, + anon_sym_table, + STATE(502), 1, + sym__built_in_function_name, + STATE(947), 1, + sym_expression, + STATE(1107), 1, + sym_identifier_list, + ACTIONS(1347), 2, + sym_float, + sym_string, + ACTIONS(1349), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(936), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(919), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2417), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [28318] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(94), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [28414] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1341), 1, + anon_sym_LBRACE, + ACTIONS(1343), 1, + anon_sym_LPAREN, + ACTIONS(1345), 1, + sym_integer, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(2409), 1, + anon_sym_EQ_GT, + ACTIONS(2411), 1, + anon_sym_table, + ACTIONS(2479), 1, + sym_identifier, + STATE(550), 1, + sym__built_in_function_name, + STATE(987), 1, + sym_expression, + STATE(1102), 1, + sym_identifier_list, + ACTIONS(1347), 2, + sym_float, + sym_string, + ACTIONS(1349), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(936), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(919), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1359), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [28510] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1341), 1, + anon_sym_LBRACE, + ACTIONS(1343), 1, + anon_sym_LPAREN, + ACTIONS(1345), 1, + sym_integer, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(2441), 1, + sym_identifier, + ACTIONS(2443), 1, + anon_sym_EQ_GT, + ACTIONS(2445), 1, + anon_sym_table, + STATE(502), 1, + sym__built_in_function_name, + STATE(953), 1, + sym_expression, + STATE(1107), 1, + sym_identifier_list, + ACTIONS(1347), 2, + sym_float, + sym_string, + ACTIONS(1349), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(936), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(919), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2417), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [28606] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1341), 1, + anon_sym_LBRACE, + ACTIONS(1343), 1, + anon_sym_LPAREN, + ACTIONS(1345), 1, + sym_integer, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(2441), 1, + sym_identifier, + ACTIONS(2443), 1, + anon_sym_EQ_GT, + ACTIONS(2445), 1, + anon_sym_table, + STATE(502), 1, + sym__built_in_function_name, + STATE(943), 1, + sym_expression, + STATE(1107), 1, + sym_identifier_list, + ACTIONS(1347), 2, + sym_float, + sym_string, + ACTIONS(1349), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(936), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(919), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2417), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [28702] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1341), 1, + anon_sym_LBRACE, + ACTIONS(1343), 1, + anon_sym_LPAREN, + ACTIONS(1345), 1, + sym_integer, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(2441), 1, + sym_identifier, + ACTIONS(2443), 1, + anon_sym_EQ_GT, + ACTIONS(2445), 1, + anon_sym_table, + STATE(502), 1, + sym__built_in_function_name, + STATE(954), 1, + sym_expression, + STATE(1107), 1, + sym_identifier_list, + ACTIONS(1347), 2, + sym_float, + sym_string, + ACTIONS(1349), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(936), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(919), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2417), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [28798] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(118), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [28894] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(50), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [28990] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2047), 1, + anon_sym_LBRACE, + ACTIONS(2049), 1, + anon_sym_LPAREN, + ACTIONS(2051), 1, + sym_integer, + ACTIONS(2057), 1, + anon_sym_LBRACK, + ACTIONS(2089), 1, + sym_identifier, + ACTIONS(2435), 1, + anon_sym_EQ_GT, + ACTIONS(2437), 1, + anon_sym_table, + STATE(512), 1, + sym_expression, + STATE(550), 1, + sym__built_in_function_name, + STATE(1095), 1, + sym_identifier_list, + ACTIONS(2053), 2, + sym_float, + sym_string, + ACTIONS(2055), 2, + anon_sym_true, + anon_sym_false, + STATE(587), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(586), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(585), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1359), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [29086] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2047), 1, + anon_sym_LBRACE, + ACTIONS(2049), 1, + anon_sym_LPAREN, + ACTIONS(2051), 1, + sym_integer, + ACTIONS(2057), 1, + anon_sym_LBRACK, + ACTIONS(2059), 1, + anon_sym_EQ_GT, + ACTIONS(2061), 1, + anon_sym_table, + ACTIONS(2089), 1, + sym_identifier, + STATE(429), 1, + sym__built_in_function_name, + STATE(563), 1, + sym_expression, + STATE(1193), 1, + sym_identifier_list, + ACTIONS(2053), 2, + sym_float, + sym_string, + ACTIONS(2055), 2, + anon_sym_true, + anon_sym_false, + STATE(587), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(586), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(585), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1927), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [29182] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(59), 1, + anon_sym_LPAREN, + ACTIONS(61), 1, + sym_integer, + ACTIONS(67), 1, + anon_sym_LBRACK, + ACTIONS(123), 1, + anon_sym_EQ_GT, + ACTIONS(147), 1, + anon_sym_table, + ACTIONS(1323), 1, + sym_identifier, + ACTIONS(1325), 1, + anon_sym_LBRACE, + STATE(10), 1, + sym_expression, + STATE(181), 1, + sym__built_in_function_name, + STATE(1100), 1, + sym_identifier_list, + ACTIONS(63), 2, + sym_float, + sym_string, + ACTIONS(65), 2, + anon_sym_true, + anon_sym_false, + STATE(413), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(419), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(415), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(149), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [29278] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(59), 1, + anon_sym_LPAREN, + ACTIONS(61), 1, + sym_integer, + ACTIONS(67), 1, + anon_sym_LBRACK, + ACTIONS(159), 1, + anon_sym_EQ_GT, + ACTIONS(183), 1, + anon_sym_table, + ACTIONS(1323), 1, + sym_identifier, + ACTIONS(1325), 1, + anon_sym_LBRACE, + STATE(186), 1, + sym__built_in_function_name, + STATE(406), 1, + sym_expression, + STATE(1210), 1, + sym_identifier_list, + ACTIONS(63), 2, + sym_float, + sym_string, + ACTIONS(65), 2, + anon_sym_true, + anon_sym_false, + STATE(413), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(419), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(415), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(185), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [29374] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(59), 1, + anon_sym_LPAREN, + ACTIONS(61), 1, + sym_integer, + ACTIONS(67), 1, + anon_sym_LBRACK, + ACTIONS(159), 1, + anon_sym_EQ_GT, + ACTIONS(183), 1, + anon_sym_table, + ACTIONS(1323), 1, + sym_identifier, + ACTIONS(1325), 1, + anon_sym_LBRACE, + STATE(186), 1, + sym__built_in_function_name, + STATE(397), 1, + sym_expression, + STATE(1210), 1, + sym_identifier_list, + ACTIONS(63), 2, + sym_float, + sym_string, + ACTIONS(65), 2, + anon_sym_true, + anon_sym_false, + STATE(413), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(419), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(415), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(185), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [29470] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(59), 1, + anon_sym_LPAREN, + ACTIONS(61), 1, + sym_integer, + ACTIONS(67), 1, + anon_sym_LBRACK, + ACTIONS(159), 1, + anon_sym_EQ_GT, + ACTIONS(183), 1, + anon_sym_table, + ACTIONS(1323), 1, + sym_identifier, + ACTIONS(1325), 1, + anon_sym_LBRACE, + STATE(186), 1, + sym__built_in_function_name, + STATE(405), 1, + sym_expression, + STATE(1210), 1, + sym_identifier_list, + ACTIONS(63), 2, + sym_float, + sym_string, + ACTIONS(65), 2, + anon_sym_true, + anon_sym_false, + STATE(413), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(419), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(415), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(185), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [29566] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(51), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [29662] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1341), 1, + anon_sym_LBRACE, + ACTIONS(1343), 1, + anon_sym_LPAREN, + ACTIONS(1345), 1, + sym_integer, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(1901), 1, + anon_sym_EQ_GT, + ACTIONS(1925), 1, + anon_sym_table, + ACTIONS(2463), 1, + sym_identifier, + STATE(429), 1, + sym__built_in_function_name, + STATE(939), 1, + sym_expression, + STATE(1101), 1, + sym_identifier_list, + ACTIONS(1347), 2, + sym_float, + sym_string, + ACTIONS(1349), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(936), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(919), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1927), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [29758] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1341), 1, + anon_sym_LBRACE, + ACTIONS(1343), 1, + anon_sym_LPAREN, + ACTIONS(1345), 1, + sym_integer, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(2465), 1, + sym_identifier, + ACTIONS(2467), 1, + anon_sym_EQ_GT, + ACTIONS(2469), 1, + anon_sym_table, + STATE(550), 1, + sym__built_in_function_name, + STATE(999), 1, + sym_expression, + STATE(1081), 1, + sym_identifier_list, + ACTIONS(1347), 2, + sym_float, + sym_string, + ACTIONS(1349), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(936), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(1003), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1359), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [29854] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1341), 1, + anon_sym_LBRACE, + ACTIONS(1343), 1, + anon_sym_LPAREN, + ACTIONS(1345), 1, + sym_integer, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(2465), 1, + sym_identifier, + ACTIONS(2467), 1, + anon_sym_EQ_GT, + ACTIONS(2469), 1, + anon_sym_table, + STATE(550), 1, + sym__built_in_function_name, + STATE(973), 1, + sym_expression, + STATE(1081), 1, + sym_identifier_list, + ACTIONS(1347), 2, + sym_float, + sym_string, + ACTIONS(1349), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(936), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(919), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1359), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [29950] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2047), 1, + anon_sym_LBRACE, + ACTIONS(2049), 1, + anon_sym_LPAREN, + ACTIONS(2051), 1, + sym_integer, + ACTIONS(2057), 1, + anon_sym_LBRACK, + ACTIONS(2059), 1, + anon_sym_EQ_GT, + ACTIONS(2061), 1, + anon_sym_table, + ACTIONS(2089), 1, + sym_identifier, + STATE(429), 1, + sym__built_in_function_name, + STATE(568), 1, + sym_expression, + STATE(1193), 1, + sym_identifier_list, + ACTIONS(2053), 2, + sym_float, + sym_string, + ACTIONS(2055), 2, + anon_sym_true, + anon_sym_false, + STATE(587), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(586), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(585), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1927), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [30046] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2047), 1, + anon_sym_LBRACE, + ACTIONS(2049), 1, + anon_sym_LPAREN, + ACTIONS(2051), 1, + sym_integer, + ACTIONS(2057), 1, + anon_sym_LBRACK, + ACTIONS(2059), 1, + anon_sym_EQ_GT, + ACTIONS(2061), 1, + anon_sym_table, + ACTIONS(2089), 1, + sym_identifier, + STATE(429), 1, + sym__built_in_function_name, + STATE(570), 1, + sym_expression, + STATE(1193), 1, + sym_identifier_list, + ACTIONS(2053), 2, + sym_float, + sym_string, + ACTIONS(2055), 2, + anon_sym_true, + anon_sym_false, + STATE(587), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(586), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(585), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1927), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [30142] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1341), 1, + anon_sym_LBRACE, + ACTIONS(1343), 1, + anon_sym_LPAREN, + ACTIONS(1345), 1, + sym_integer, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(2457), 1, + sym_identifier, + ACTIONS(2459), 1, + anon_sym_EQ_GT, + ACTIONS(2461), 1, + anon_sym_table, + STATE(502), 1, + sym__built_in_function_name, + STATE(945), 1, + sym_expression, + STATE(1108), 1, + sym_identifier_list, + ACTIONS(1347), 2, + sym_float, + sym_string, + ACTIONS(1349), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(936), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(919), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2417), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [30238] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1341), 1, + anon_sym_LBRACE, + ACTIONS(1343), 1, + anon_sym_LPAREN, + ACTIONS(1345), 1, + sym_integer, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(2457), 1, + sym_identifier, + ACTIONS(2459), 1, + anon_sym_EQ_GT, + ACTIONS(2461), 1, + anon_sym_table, + STATE(502), 1, + sym__built_in_function_name, + STATE(951), 1, + sym_expression, + STATE(1108), 1, + sym_identifier_list, + ACTIONS(1347), 2, + sym_float, + sym_string, + ACTIONS(1349), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(936), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(919), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2417), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [30334] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1341), 1, + anon_sym_LBRACE, + ACTIONS(1343), 1, + anon_sym_LPAREN, + ACTIONS(1345), 1, + sym_integer, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(2457), 1, + sym_identifier, + ACTIONS(2459), 1, + anon_sym_EQ_GT, + ACTIONS(2461), 1, + anon_sym_table, + STATE(502), 1, + sym__built_in_function_name, + STATE(948), 1, + sym_expression, + STATE(1108), 1, + sym_identifier_list, + ACTIONS(1347), 2, + sym_float, + sym_string, + ACTIONS(1349), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(936), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(919), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2417), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [30430] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2047), 1, + anon_sym_LBRACE, + ACTIONS(2049), 1, + anon_sym_LPAREN, + ACTIONS(2051), 1, + sym_integer, + ACTIONS(2057), 1, + anon_sym_LBRACK, + ACTIONS(2089), 1, + sym_identifier, + ACTIONS(2091), 1, + anon_sym_EQ_GT, + ACTIONS(2093), 1, + anon_sym_table, + STATE(372), 1, + sym__built_in_function_name, + STATE(560), 1, + sym_expression, + STATE(1105), 1, + sym_identifier_list, + ACTIONS(2053), 2, + sym_float, + sym_string, + ACTIONS(2055), 2, + anon_sym_true, + anon_sym_false, + STATE(587), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(586), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(585), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(2095), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [30526] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(2047), 1, + anon_sym_LBRACE, + ACTIONS(2049), 1, + anon_sym_LPAREN, + ACTIONS(2051), 1, + sym_integer, + ACTIONS(2057), 1, + anon_sym_LBRACK, + ACTIONS(2059), 1, + anon_sym_EQ_GT, + ACTIONS(2061), 1, + anon_sym_table, + ACTIONS(2089), 1, + sym_identifier, + STATE(429), 1, + sym__built_in_function_name, + STATE(573), 1, + sym_expression, + STATE(1193), 1, + sym_identifier_list, + ACTIONS(2053), 2, + sym_float, + sym_string, + ACTIONS(2055), 2, + anon_sym_true, + anon_sym_false, + STATE(587), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(586), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(585), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1927), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [30622] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(59), 1, + anon_sym_LPAREN, + ACTIONS(61), 1, + sym_integer, + ACTIONS(67), 1, + anon_sym_LBRACK, + ACTIONS(85), 1, + anon_sym_EQ_GT, + ACTIONS(111), 1, + anon_sym_table, + ACTIONS(1323), 1, + sym_identifier, + ACTIONS(1325), 1, + anon_sym_LBRACE, + STATE(2), 1, + sym_expression, + STATE(170), 1, + sym__built_in_function_name, + STATE(1225), 1, + sym_identifier_list, + ACTIONS(63), 2, + sym_float, + sym_string, + ACTIONS(65), 2, + anon_sym_true, + anon_sym_false, + STATE(413), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(419), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(415), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(113), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [30718] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1341), 1, + anon_sym_LBRACE, + ACTIONS(1343), 1, + anon_sym_LPAREN, + ACTIONS(1345), 1, + sym_integer, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(2465), 1, + sym_identifier, + ACTIONS(2467), 1, + anon_sym_EQ_GT, + ACTIONS(2469), 1, + anon_sym_table, + STATE(550), 1, + sym__built_in_function_name, + STATE(974), 1, + sym_expression, + STATE(1081), 1, + sym_identifier_list, + ACTIONS(1347), 2, + sym_float, + sym_string, + ACTIONS(1349), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(936), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(919), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1359), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [30814] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(59), 1, + anon_sym_LPAREN, + ACTIONS(61), 1, + sym_integer, + ACTIONS(67), 1, + anon_sym_LBRACK, + ACTIONS(231), 1, + anon_sym_EQ_GT, + ACTIONS(255), 1, + anon_sym_table, + ACTIONS(1323), 1, + sym_identifier, + ACTIONS(1325), 1, + anon_sym_LBRACE, + STATE(14), 1, + sym_expression, + STATE(203), 1, + sym__built_in_function_name, + STATE(1085), 1, + sym_identifier_list, + ACTIONS(63), 2, + sym_float, + sym_string, + ACTIONS(65), 2, + anon_sym_true, + anon_sym_false, + STATE(413), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(419), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(415), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(257), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [30910] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(59), 1, + anon_sym_LPAREN, + ACTIONS(61), 1, + sym_integer, + ACTIONS(67), 1, + anon_sym_LBRACK, + ACTIONS(231), 1, + anon_sym_EQ_GT, + ACTIONS(255), 1, + anon_sym_table, + ACTIONS(1323), 1, + sym_identifier, + ACTIONS(1325), 1, + anon_sym_LBRACE, + STATE(203), 1, + sym__built_in_function_name, + STATE(454), 1, + sym_expression, + STATE(1085), 1, + sym_identifier_list, + ACTIONS(63), 2, + sym_float, + sym_string, + ACTIONS(65), 2, + anon_sym_true, + anon_sym_false, + STATE(413), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(419), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(415), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(257), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [31006] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(265), 1, + anon_sym_EQ_GT, + ACTIONS(289), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(21), 1, + sym_expression, + STATE(208), 1, + sym__built_in_function_name, + STATE(1155), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(291), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [31102] = 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(47), 1, + anon_sym_PIPE, + ACTIONS(49), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(123), 1, + sym_expression, + STATE(222), 1, + sym__built_in_function_name, + STATE(1143), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(51), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [31198] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(1341), 1, + anon_sym_LBRACE, + ACTIONS(1343), 1, + anon_sym_LPAREN, + ACTIONS(1345), 1, + sym_integer, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(2465), 1, + sym_identifier, + ACTIONS(2467), 1, + anon_sym_EQ_GT, + ACTIONS(2469), 1, + anon_sym_table, + STATE(550), 1, + sym__built_in_function_name, + STATE(980), 1, + sym_expression, + STATE(1081), 1, + sym_identifier_list, + ACTIONS(1347), 2, + sym_float, + sym_string, + ACTIONS(1349), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(936), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(919), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1359), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [31294] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(195), 1, + anon_sym_EQ_GT, + ACTIONS(219), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(189), 1, + sym__built_in_function_name, + STATE(390), 1, + sym_expression, + STATE(1104), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(221), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [31390] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(195), 1, + anon_sym_EQ_GT, + ACTIONS(219), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(189), 1, + sym__built_in_function_name, + STATE(395), 1, + sym_expression, + STATE(1104), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(221), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [31486] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(195), 1, + anon_sym_EQ_GT, + ACTIONS(219), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(189), 1, + sym__built_in_function_name, + STATE(438), 1, + sym_expression, + STATE(1104), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(221), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [31582] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(195), 1, + anon_sym_EQ_GT, + ACTIONS(219), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(189), 1, + sym__built_in_function_name, + STATE(393), 1, + sym_expression, + STATE(1104), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(221), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [31678] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(47), 1, + anon_sym_PIPE, + ACTIONS(265), 1, + anon_sym_EQ_GT, + ACTIONS(289), 1, + anon_sym_table, + ACTIONS(1309), 1, + anon_sym_LBRACE, + ACTIONS(1444), 1, + sym_identifier, + STATE(23), 1, + sym_expression, + STATE(208), 1, + sym__built_in_function_name, + STATE(1155), 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(462), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(468), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(291), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [31774] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2483), 8, anon_sym_LBRACE, anon_sym_LPAREN, sym_float, @@ -136330,7 +83019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_asyncfor, anon_sym_PIPE, - ACTIONS(3903), 47, + ACTIONS(2481), 47, sym_identifier, sym_integer, anon_sym_true, @@ -136378,10 +83067,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [49128] = 3, + [31837] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(3329), 10, + ACTIONS(2259), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -136392,7 +83081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_PIPE, - ACTIONS(3331), 35, + ACTIONS(2261), 35, sym_identifier, sym_integer, anon_sym_true, @@ -136428,10 +83117,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [49181] = 3, + [31890] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(3432), 10, + ACTIONS(2152), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -136442,7 +83131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_PIPE, - ACTIONS(3434), 35, + ACTIONS(2154), 35, sym_identifier, sym_integer, anon_sym_true, @@ -136478,10 +83167,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [49234] = 3, + [31943] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(3763), 8, + ACTIONS(2389), 8, anon_sym_LBRACE, anon_sym_LPAREN, sym_float, @@ -136490,7 +83179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_GT, anon_sym_PIPE, - ACTIONS(3907), 35, + ACTIONS(2485), 35, sym_identifier, sym_integer, anon_sym_true, @@ -136526,10 +83215,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [49285] = 3, + [31994] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(3911), 7, + ACTIONS(2489), 7, anon_sym_LBRACE, anon_sym_LPAREN, sym_float, @@ -136537,7 +83226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_PIPE, - ACTIONS(3909), 35, + ACTIONS(2487), 35, sym_identifier, sym_integer, anon_sym_true, @@ -136573,10 +83262,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [49335] = 3, + [32044] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(3915), 7, + ACTIONS(2493), 7, anon_sym_LBRACE, anon_sym_LPAREN, sym_float, @@ -136584,7 +83273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_PIPE, - ACTIONS(3913), 35, + ACTIONS(2491), 35, sym_identifier, sym_integer, anon_sym_true, @@ -136620,10 +83309,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [49385] = 3, + [32094] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(3919), 7, + ACTIONS(2497), 7, anon_sym_LBRACE, anon_sym_LPAREN, sym_float, @@ -136631,7 +83320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_PIPE, - ACTIONS(3917), 35, + ACTIONS(2495), 35, sym_identifier, sym_integer, anon_sym_true, @@ -136667,10 +83356,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [49435] = 3, + [32144] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(3923), 7, + ACTIONS(2501), 7, anon_sym_LBRACE, anon_sym_LPAREN, sym_float, @@ -136678,7 +83367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_PIPE, - ACTIONS(3921), 35, + ACTIONS(2499), 35, sym_identifier, sym_integer, anon_sym_true, @@ -136714,694 +83403,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [49485] = 5, + [32194] = 3, ACTIONS(3), 1, sym__comment, - STATE(1407), 1, - sym_logic_operator, - STATE(1408), 1, - sym_math_operator, - ACTIONS(3254), 5, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(2217), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3252), 17, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [49521] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(1407), 1, - sym_logic_operator, - STATE(1408), 1, - sym_math_operator, - ACTIONS(3250), 5, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3248), 17, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [49557] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(1407), 1, - sym_logic_operator, - STATE(1408), 1, - sym_math_operator, - ACTIONS(3264), 5, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3262), 17, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [49593] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3242), 1, - anon_sym_EQ, - ACTIONS(3925), 1, - anon_sym_COLON, - STATE(1407), 1, - sym_logic_operator, - STATE(1408), 1, - sym_math_operator, - ACTIONS(73), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(79), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(75), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(77), 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(3240), 7, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_identifier, - anon_sym_DOT_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [49639] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3246), 1, - anon_sym_EQ, - ACTIONS(3925), 1, - anon_sym_COLON, - STATE(1407), 1, - sym_logic_operator, - STATE(1408), 1, - sym_math_operator, - ACTIONS(73), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(79), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(75), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(77), 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(3244), 7, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_identifier, - anon_sym_DOT_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [49685] = 6, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3927), 1, - anon_sym_DOT_DOT, - STATE(1407), 1, - sym_logic_operator, - STATE(1408), 1, - sym_math_operator, - ACTIONS(3250), 5, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3248), 16, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_identifier, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [49723] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(1283), 1, - sym_math_operator, - STATE(1284), 1, - sym_logic_operator, - ACTIONS(3254), 5, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3252), 16, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_identifier, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [49758] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3242), 1, - anon_sym_EQ, - ACTIONS(3929), 1, - anon_sym_COLON, - STATE(1283), 1, - sym_math_operator, - STATE(1284), 1, - sym_logic_operator, - ACTIONS(73), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(79), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(75), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(77), 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(3240), 6, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_identifier, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [49803] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3246), 1, - anon_sym_EQ, - ACTIONS(3929), 1, - anon_sym_COLON, - STATE(1283), 1, - sym_math_operator, - STATE(1284), 1, - sym_logic_operator, - ACTIONS(73), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(79), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(75), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(77), 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(3244), 6, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_identifier, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [49848] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(1283), 1, - sym_math_operator, - STATE(1284), 1, - sym_logic_operator, - ACTIONS(3264), 5, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3262), 16, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_identifier, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [49883] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3357), 5, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3355), 17, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [49913] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3377), 5, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3375), 17, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [49943] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3385), 5, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3383), 17, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [49973] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3361), 5, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3359), 17, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [50003] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3335), 5, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3333), 17, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [50033] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3391), 5, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3389), 17, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [50063] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3411), 5, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3409), 17, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [50093] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3403), 5, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3401), 17, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [50123] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3373), 5, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3371), 17, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [50153] = 6, - ACTIONS(3), 1, - sym__comment, - ACTIONS(2439), 1, - anon_sym_EQ, - STATE(541), 1, - sym_assignment_operator, - ACTIONS(2441), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(2437), 4, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2435), 14, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_identifier, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [50189] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3434), 5, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3432), 17, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [50219] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3353), 5, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3351), 17, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [50249] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3407), 5, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3405), 17, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [50279] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3391), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3389), 19, + ACTIONS(2215), 19, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, @@ -137421,44 +83429,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, - [50308] = 8, + [32223] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(3931), 1, - anon_sym_COLON, - STATE(1353), 1, - sym_math_operator, - STATE(1354), 1, - sym_logic_operator, - ACTIONS(79), 2, + ACTIONS(2273), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(75), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3240), 5, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_identifier, - anon_sym_DOT_DOT, - ACTIONS(77), 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, - [50347] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3407), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3405), 19, + ACTIONS(2271), 19, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, @@ -137478,17 +83455,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, - [50376] = 5, + [32252] = 5, ACTIONS(3), 1, sym__comment, - STATE(1353), 1, - sym_math_operator, - STATE(1354), 1, + STATE(679), 1, sym_logic_operator, - ACTIONS(3254), 2, + STATE(686), 1, + sym_math_operator, + ACTIONS(2065), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3252), 17, + ACTIONS(2063), 17, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, @@ -137506,17 +83483,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [50409] = 5, + [32285] = 6, ACTIONS(3), 1, sym__comment, - STATE(1353), 1, - sym_math_operator, - STATE(1354), 1, + ACTIONS(2503), 1, + anon_sym_DOT_DOT, + STATE(679), 1, sym_logic_operator, - ACTIONS(3264), 2, + STATE(686), 1, + sym_math_operator, + ACTIONS(2028), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3262), 17, + ACTIONS(2026), 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, + [32320] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(679), 1, + sym_logic_operator, + STATE(686), 1, + sym_math_operator, + ACTIONS(2069), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2067), 17, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, @@ -137534,41 +83540,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [50442] = 5, + [32353] = 8, ACTIONS(3), 1, sym__comment, - STATE(1353), 1, - sym_math_operator, - STATE(1354), 1, + ACTIONS(2505), 1, + anon_sym_COLON, + STATE(679), 1, sym_logic_operator, - ACTIONS(3250), 2, + STATE(686), 1, + sym_math_operator, + ACTIONS(77), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3248), 17, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, + ACTIONS(71), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2079), 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, - [50475] = 3, + [32392] = 8, ACTIONS(3), 1, sym__comment, - ACTIONS(3403), 2, + ACTIONS(2505), 1, + anon_sym_COLON, + STATE(679), 1, + sym_logic_operator, + STATE(686), 1, + sym_math_operator, + ACTIONS(77), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3401), 19, + ACTIONS(71), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2075), 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, + [32431] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2179), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2177), 19, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, @@ -137588,13 +83628,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, - [50504] = 3, + [32460] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(3385), 2, + ACTIONS(2150), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3383), 19, + ACTIONS(2148), 19, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, @@ -137614,13 +83654,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, - [50533] = 3, + [32489] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(3434), 2, + ACTIONS(2193), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3432), 19, + ACTIONS(2191), 19, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, @@ -137640,42 +83680,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, - [50562] = 6, + [32518] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(3933), 1, - anon_sym_DOT_DOT, - STATE(1353), 1, - sym_math_operator, - STATE(1354), 1, - sym_logic_operator, - ACTIONS(3250), 2, + ACTIONS(2201), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3248), 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, - [50597] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3335), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3333), 19, + ACTIONS(2199), 19, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, @@ -137695,13 +83706,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, - [50626] = 3, + [32547] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(3377), 2, + ACTIONS(2154), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3375), 19, + ACTIONS(2152), 19, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, @@ -137721,13 +83732,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, - [50655] = 3, + [32576] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(3373), 2, + ACTIONS(2269), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3371), 19, + ACTIONS(2267), 19, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, @@ -137747,44 +83758,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, - [50684] = 8, + [32605] = 5, ACTIONS(3), 1, sym__comment, - ACTIONS(3931), 1, - anon_sym_COLON, - STATE(1353), 1, - sym_math_operator, - STATE(1354), 1, + STATE(679), 1, sym_logic_operator, - ACTIONS(79), 2, + STATE(686), 1, + sym_math_operator, + ACTIONS(2028), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(75), 5, + ACTIONS(2026), 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, - ACTIONS(3244), 5, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_identifier, - anon_sym_DOT_DOT, - ACTIONS(77), 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, - [50723] = 3, + [32638] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(3361), 2, + ACTIONS(2205), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3359), 19, + ACTIONS(2203), 19, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, @@ -137804,13 +83812,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, - [50752] = 3, + [32667] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(3357), 2, + ACTIONS(2209), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3355), 19, + ACTIONS(2207), 19, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, @@ -137830,13 +83838,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, - [50781] = 3, + [32696] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(3353), 2, + ACTIONS(2221), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3351), 19, + ACTIONS(2219), 19, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, @@ -137856,13 +83864,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, - [50810] = 3, + [32725] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(3411), 2, + ACTIONS(2229), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3409), 19, + ACTIONS(2227), 19, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, @@ -137882,17 +83890,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, - [50839] = 5, + [32754] = 5, ACTIONS(3), 1, sym__comment, - STATE(1337), 1, + STATE(739), 1, sym_logic_operator, - STATE(1338), 1, + STATE(740), 1, sym_math_operator, - ACTIONS(3254), 2, + ACTIONS(2069), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3252), 16, + ACTIONS(2067), 16, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, @@ -137909,108 +83917,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [50871] = 8, + [32786] = 5, ACTIONS(3), 1, sym__comment, - ACTIONS(3935), 1, - anon_sym_COLON, - STATE(1337), 1, + STATE(739), 1, sym_logic_operator, - STATE(1338), 1, + STATE(740), 1, sym_math_operator, - ACTIONS(79), 2, + ACTIONS(2065), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3240), 4, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_identifier, - ACTIONS(75), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(77), 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, - [50909] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3935), 1, - anon_sym_COLON, - STATE(1337), 1, - sym_logic_operator, - STATE(1338), 1, - sym_math_operator, - ACTIONS(79), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3281), 4, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_identifier, - ACTIONS(75), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(77), 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, - [50947] = 9, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3929), 1, - anon_sym_COLON, - ACTIONS(3937), 1, - anon_sym_SEMI, - STATE(1337), 1, - sym_logic_operator, - STATE(1338), 1, - sym_math_operator, - ACTIONS(79), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3275), 3, - anon_sym_RBRACE, - anon_sym_COMMA, - sym_identifier, - ACTIONS(75), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(77), 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, - [50987] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(1337), 1, - sym_logic_operator, - STATE(1338), 1, - sym_math_operator, - ACTIONS(3264), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3262), 16, + ACTIONS(2063), 16, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, @@ -138027,260 +83944,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [51019] = 8, + [32818] = 8, ACTIONS(3), 1, sym__comment, - ACTIONS(3935), 1, + ACTIONS(2507), 1, anon_sym_COLON, - STATE(1337), 1, + STATE(739), 1, sym_logic_operator, - STATE(1338), 1, + STATE(740), 1, sym_math_operator, - ACTIONS(79), 2, + ACTIONS(77), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3244), 4, + ACTIONS(2071), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, sym_identifier, - ACTIONS(75), 5, + ACTIONS(71), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(77), 6, + 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, - [51057] = 8, + [32856] = 9, ACTIONS(3), 1, sym__comment, - ACTIONS(3939), 1, + ACTIONS(2507), 1, anon_sym_COLON, - STATE(1180), 1, - sym_math_operator, - STATE(1181), 1, + ACTIONS(2509), 1, + anon_sym_SEMI, + STATE(739), 1, sym_logic_operator, - ACTIONS(79), 2, + STATE(740), 1, + sym_math_operator, + ACTIONS(77), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3240), 2, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - ACTIONS(75), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(77), 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, - [51093] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3939), 1, - anon_sym_COLON, - STATE(1180), 1, - sym_math_operator, - STATE(1181), 1, - sym_logic_operator, - ACTIONS(79), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3244), 2, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - ACTIONS(75), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(77), 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, - [51129] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(1257), 1, - sym_math_operator, - STATE(1258), 1, - sym_logic_operator, - ACTIONS(3250), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3248), 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, - [51159] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(1180), 1, - sym_math_operator, - STATE(1181), 1, - sym_logic_operator, - ACTIONS(3250), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3248), 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, - [51189] = 6, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3941), 1, - anon_sym_DOT_DOT, - STATE(1225), 1, - sym_math_operator, - STATE(1226), 1, - sym_logic_operator, - ACTIONS(3250), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3248), 13, + ACTIONS(2041), 3, + anon_sym_RBRACE, + anon_sym_COMMA, sym_identifier, - anon_sym_COLON, + 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, - [51221] = 8, + [32896] = 8, ACTIONS(3), 1, sym__comment, - ACTIONS(3943), 1, + ACTIONS(2507), 1, anon_sym_COLON, - STATE(1225), 1, - sym_math_operator, - STATE(1226), 1, + STATE(739), 1, sym_logic_operator, - ACTIONS(79), 2, + STATE(740), 1, + sym_math_operator, + ACTIONS(77), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3240), 2, + ACTIONS(2079), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, sym_identifier, - anon_sym_DOT_DOT, - ACTIONS(75), 5, + ACTIONS(71), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(77), 6, + 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, - [51257] = 5, + [32934] = 8, ACTIONS(3), 1, sym__comment, - STATE(1257), 1, - sym_math_operator, - STATE(1258), 1, + ACTIONS(2507), 1, + anon_sym_COLON, + STATE(739), 1, sym_logic_operator, - ACTIONS(3264), 2, + STATE(740), 1, + sym_math_operator, + ACTIONS(77), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3262), 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, - [51287] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3943), 1, - anon_sym_COLON, - STATE(1225), 1, - sym_math_operator, - STATE(1226), 1, - sym_logic_operator, - ACTIONS(79), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3244), 2, + ACTIONS(2075), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, sym_identifier, - anon_sym_DOT_DOT, - ACTIONS(75), 5, + ACTIONS(71), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(77), 6, + 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, - [51323] = 5, + [32972] = 5, ACTIONS(3), 1, sym__comment, - STATE(1225), 1, + STATE(878), 1, sym_math_operator, - STATE(1226), 1, + STATE(879), 1, sym_logic_operator, - ACTIONS(3250), 2, + ACTIONS(2069), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3248), 14, + ACTIONS(2067), 14, sym_identifier, anon_sym_COLON, anon_sym_DOT_DOT, @@ -138295,149 +84090,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [51353] = 8, + [33002] = 8, ACTIONS(3), 1, sym__comment, - ACTIONS(3945), 1, + ACTIONS(2511), 1, anon_sym_COLON, - STATE(1257), 1, + STATE(853), 1, sym_math_operator, - STATE(1258), 1, + STATE(854), 1, sym_logic_operator, - ACTIONS(79), 2, + ACTIONS(77), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3244), 2, + ACTIONS(2075), 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, + [33038] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2513), 1, + anon_sym_COLON, + STATE(895), 1, + sym_math_operator, + STATE(896), 1, + sym_logic_operator, + ACTIONS(77), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2079), 2, anon_sym_DOT_DOT, anon_sym_EQ_GT, - ACTIONS(75), 5, + ACTIONS(71), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(77), 6, + 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, - [51389] = 8, + [33074] = 5, ACTIONS(3), 1, sym__comment, - ACTIONS(3945), 1, - anon_sym_COLON, - STATE(1257), 1, + STATE(878), 1, sym_math_operator, - STATE(1258), 1, + STATE(879), 1, sym_logic_operator, - ACTIONS(79), 2, + ACTIONS(2028), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3240), 2, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - ACTIONS(75), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(77), 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, - [51425] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(1180), 1, - sym_math_operator, - STATE(1181), 1, - sym_logic_operator, - ACTIONS(3264), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3262), 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, - [51455] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(1180), 1, - sym_math_operator, - STATE(1181), 1, - sym_logic_operator, - ACTIONS(3254), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3252), 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, - [51485] = 6, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3947), 1, - anon_sym_DOT_DOT, - STATE(1180), 1, - sym_math_operator, - STATE(1181), 1, - sym_logic_operator, - ACTIONS(3250), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3248), 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, - [51517] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(1225), 1, - sym_math_operator, - STATE(1226), 1, - sym_logic_operator, - ACTIONS(3264), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3262), 14, + ACTIONS(2026), 14, sym_identifier, anon_sym_COLON, anon_sym_DOT_DOT, @@ -138452,20 +84171,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [51547] = 5, + [33104] = 6, ACTIONS(3), 1, sym__comment, - STATE(1225), 1, + ACTIONS(2515), 1, + anon_sym_DOT_DOT, + STATE(878), 1, sym_math_operator, - STATE(1226), 1, + STATE(879), 1, sym_logic_operator, - ACTIONS(3254), 2, + ACTIONS(2028), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3252), 14, + ACTIONS(2026), 13, sym_identifier, anon_sym_COLON, - anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -138477,20 +84197,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [51577] = 6, + [33136] = 8, ACTIONS(3), 1, sym__comment, - ACTIONS(3949), 1, - anon_sym_DOT_DOT, - STATE(1257), 1, - sym_math_operator, - STATE(1258), 1, - sym_logic_operator, - ACTIONS(3250), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3248), 13, + ACTIONS(2513), 1, anon_sym_COLON, + STATE(895), 1, + sym_math_operator, + STATE(896), 1, + sym_logic_operator, + ACTIONS(77), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2075), 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, + [33172] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(853), 1, + sym_math_operator, + STATE(854), 1, + sym_logic_operator, + ACTIONS(2065), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2063), 14, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -138502,18 +84250,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_EQ_GT, - [51609] = 5, + [33202] = 5, ACTIONS(3), 1, sym__comment, - STATE(1257), 1, + STATE(895), 1, sym_math_operator, - STATE(1258), 1, + STATE(896), 1, sym_logic_operator, - ACTIONS(3254), 2, + ACTIONS(2065), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3252), 14, + ACTIONS(2063), 14, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -138528,46 +84275,230 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, - [51639] = 8, + [33232] = 5, ACTIONS(3), 1, sym__comment, - ACTIONS(3951), 1, - anon_sym_COLON, - ACTIONS(3953), 1, - anon_sym_EQ_GT, - STATE(1486), 1, + STATE(895), 1, sym_math_operator, - STATE(1488), 1, + STATE(896), 1, sym_logic_operator, - ACTIONS(79), 2, + ACTIONS(2069), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(75), 5, + ACTIONS(2067), 14, + anon_sym_COLON, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(77), 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, - [51674] = 5, + anon_sym_EQ_GT, + [33262] = 6, ACTIONS(3), 1, sym__comment, - STATE(1454), 1, + ACTIONS(2517), 1, + anon_sym_DOT_DOT, + STATE(895), 1, sym_math_operator, - STATE(1457), 1, + STATE(896), 1, sym_logic_operator, - ACTIONS(3264), 2, + ACTIONS(2028), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3262), 13, + ACTIONS(2026), 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, + [33294] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2519), 1, + anon_sym_COLON, + STATE(878), 1, + sym_math_operator, + STATE(879), 1, + sym_logic_operator, + ACTIONS(77), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2079), 2, + sym_identifier, + 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, + [33330] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2519), 1, + anon_sym_COLON, + STATE(878), 1, + sym_math_operator, + STATE(879), 1, + sym_logic_operator, + ACTIONS(77), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2075), 2, + sym_identifier, + 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, + [33366] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(895), 1, + sym_math_operator, + STATE(896), 1, + sym_logic_operator, + ACTIONS(2028), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2026), 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, + [33396] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2511), 1, + anon_sym_COLON, + STATE(853), 1, + sym_math_operator, + STATE(854), 1, + sym_logic_operator, + ACTIONS(77), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2079), 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, + [33432] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(853), 1, + sym_math_operator, + STATE(854), 1, + sym_logic_operator, + ACTIONS(2028), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2026), 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, + [33462] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(853), 1, + sym_math_operator, + STATE(854), 1, + sym_logic_operator, + ACTIONS(2069), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2067), 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, + [33492] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(878), 1, + sym_math_operator, + STATE(879), 1, + sym_logic_operator, + ACTIONS(2065), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2063), 14, sym_identifier, anon_sym_COLON, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -138579,956 +84510,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [51703] = 8, + [33522] = 6, ACTIONS(3), 1, sym__comment, - ACTIONS(3951), 1, - anon_sym_COLON, - ACTIONS(3955), 1, - anon_sym_EQ_GT, - STATE(1486), 1, + ACTIONS(2521), 1, + anon_sym_DOT_DOT, + STATE(853), 1, sym_math_operator, - STATE(1488), 1, + STATE(854), 1, sym_logic_operator, - ACTIONS(79), 2, + ACTIONS(2028), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(75), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(77), 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, - [51738] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3951), 1, - anon_sym_COLON, - ACTIONS(3957), 1, - anon_sym_EQ_GT, - STATE(1486), 1, - sym_math_operator, - STATE(1488), 1, - sym_logic_operator, - ACTIONS(79), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(75), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(77), 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, - [51773] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3951), 1, - anon_sym_COLON, - ACTIONS(3959), 1, - anon_sym_EQ_GT, - STATE(1486), 1, - sym_math_operator, - STATE(1488), 1, - sym_logic_operator, - ACTIONS(79), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(75), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(77), 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, - [51808] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3961), 1, - sym_identifier, - ACTIONS(3963), 1, - anon_sym_COLON, - STATE(1454), 1, - sym_math_operator, - STATE(1457), 1, - sym_logic_operator, - ACTIONS(79), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(75), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(77), 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, - [51843] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3963), 1, - anon_sym_COLON, - ACTIONS(3965), 1, - sym_identifier, - STATE(1454), 1, - sym_math_operator, - STATE(1457), 1, - sym_logic_operator, - ACTIONS(79), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(75), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(77), 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, - [51878] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3963), 1, - anon_sym_COLON, - ACTIONS(3967), 1, - sym_identifier, - STATE(1454), 1, - sym_math_operator, - STATE(1457), 1, - sym_logic_operator, - ACTIONS(79), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(75), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(77), 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, - [51913] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3963), 1, - anon_sym_COLON, - ACTIONS(3969), 1, - sym_identifier, - STATE(1454), 1, - sym_math_operator, - STATE(1457), 1, - sym_logic_operator, - ACTIONS(79), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(75), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(77), 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, - [51948] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3963), 1, - anon_sym_COLON, - ACTIONS(3971), 1, - sym_identifier, - STATE(1454), 1, - sym_math_operator, - STATE(1457), 1, - sym_logic_operator, - ACTIONS(79), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(75), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(77), 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, - [51983] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3963), 1, - anon_sym_COLON, - ACTIONS(3973), 1, - sym_identifier, - STATE(1454), 1, - sym_math_operator, - STATE(1457), 1, - sym_logic_operator, - ACTIONS(79), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(75), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(77), 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, - [52018] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3951), 1, - anon_sym_COLON, - ACTIONS(3975), 1, - anon_sym_EQ_GT, - STATE(1486), 1, - sym_math_operator, - STATE(1488), 1, - sym_logic_operator, - ACTIONS(79), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(75), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(77), 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, - [52053] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3951), 1, - anon_sym_COLON, - ACTIONS(3977), 1, - anon_sym_EQ_GT, - STATE(1486), 1, - sym_math_operator, - STATE(1488), 1, - sym_logic_operator, - ACTIONS(79), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(75), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(77), 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, - [52088] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3963), 1, - anon_sym_COLON, - ACTIONS(3979), 1, - sym_identifier, - STATE(1454), 1, - sym_math_operator, - STATE(1457), 1, - sym_logic_operator, - ACTIONS(79), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(75), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(77), 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, - [52123] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3963), 1, - anon_sym_COLON, - ACTIONS(3981), 1, - sym_identifier, - STATE(1454), 1, - sym_math_operator, - STATE(1457), 1, - sym_logic_operator, - ACTIONS(79), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(75), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(77), 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, - [52158] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3951), 1, - anon_sym_COLON, - ACTIONS(3983), 1, - anon_sym_EQ_GT, - STATE(1486), 1, - sym_math_operator, - STATE(1488), 1, - sym_logic_operator, - ACTIONS(79), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(75), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(77), 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, - [52193] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3951), 1, - anon_sym_COLON, - ACTIONS(3985), 1, - anon_sym_EQ_GT, - STATE(1486), 1, - sym_math_operator, - STATE(1488), 1, - sym_logic_operator, - ACTIONS(79), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(75), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(77), 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, - [52228] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3951), 1, - anon_sym_COLON, - ACTIONS(3987), 1, - anon_sym_EQ_GT, - STATE(1486), 1, - sym_math_operator, - STATE(1488), 1, - sym_logic_operator, - ACTIONS(79), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(75), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(77), 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, - [52263] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3951), 1, - anon_sym_COLON, - ACTIONS(3989), 1, - anon_sym_EQ_GT, - STATE(1486), 1, - sym_math_operator, - STATE(1488), 1, - sym_logic_operator, - ACTIONS(79), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(75), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(77), 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, - [52298] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3963), 1, - anon_sym_COLON, - ACTIONS(3991), 1, - sym_identifier, - STATE(1454), 1, - sym_math_operator, - STATE(1457), 1, - sym_logic_operator, - ACTIONS(79), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(75), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(77), 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, - [52333] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3963), 1, - anon_sym_COLON, - ACTIONS(3993), 1, - sym_identifier, - STATE(1454), 1, - sym_math_operator, - STATE(1457), 1, - sym_logic_operator, - ACTIONS(79), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(75), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(77), 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, - [52368] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3951), 1, - anon_sym_COLON, - ACTIONS(3995), 1, - anon_sym_EQ_GT, - STATE(1486), 1, - sym_math_operator, - STATE(1488), 1, - sym_logic_operator, - ACTIONS(79), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(75), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(77), 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, - [52403] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3963), 1, - anon_sym_COLON, - ACTIONS(3997), 1, - sym_identifier, - STATE(1454), 1, - sym_math_operator, - STATE(1457), 1, - sym_logic_operator, - ACTIONS(79), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(75), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(77), 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, - [52438] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(1486), 1, - sym_math_operator, - STATE(1488), 1, - sym_logic_operator, - ACTIONS(3264), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3262), 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, - [52467] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3963), 1, - anon_sym_COLON, - ACTIONS(3999), 1, - sym_identifier, - STATE(1454), 1, - sym_math_operator, - STATE(1457), 1, - sym_logic_operator, - ACTIONS(79), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(75), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(77), 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, - [52502] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3963), 1, - anon_sym_COLON, - ACTIONS(4001), 1, - sym_identifier, - STATE(1454), 1, - sym_math_operator, - STATE(1457), 1, - sym_logic_operator, - ACTIONS(79), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(75), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(77), 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, - [52537] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3951), 1, - anon_sym_COLON, - ACTIONS(4003), 1, - anon_sym_EQ_GT, - STATE(1486), 1, - sym_math_operator, - STATE(1488), 1, - sym_logic_operator, - ACTIONS(79), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(75), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(77), 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, - [52572] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(1486), 1, - sym_math_operator, - STATE(1488), 1, - sym_logic_operator, - ACTIONS(3254), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3252), 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, - [52601] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3963), 1, - anon_sym_COLON, - ACTIONS(4005), 1, - sym_identifier, - STATE(1454), 1, - sym_math_operator, - STATE(1457), 1, - sym_logic_operator, - ACTIONS(79), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(75), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(77), 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, - [52636] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3951), 1, - anon_sym_COLON, - ACTIONS(4007), 1, - anon_sym_EQ_GT, - STATE(1486), 1, - sym_math_operator, - STATE(1488), 1, - sym_logic_operator, - ACTIONS(79), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(75), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(77), 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, - [52671] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3951), 1, - anon_sym_COLON, - ACTIONS(4009), 1, - anon_sym_EQ_GT, - STATE(1486), 1, - sym_math_operator, - STATE(1488), 1, - sym_logic_operator, - ACTIONS(79), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(75), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(77), 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, - [52706] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3963), 1, - anon_sym_COLON, - ACTIONS(4011), 1, - sym_identifier, - STATE(1454), 1, - sym_math_operator, - STATE(1457), 1, - sym_logic_operator, - ACTIONS(79), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(75), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(77), 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, - [52741] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3951), 1, - anon_sym_COLON, - ACTIONS(4013), 1, - anon_sym_EQ_GT, - STATE(1486), 1, - sym_math_operator, - STATE(1488), 1, - sym_logic_operator, - ACTIONS(79), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(75), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(77), 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, - [52776] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3951), 1, - anon_sym_COLON, - ACTIONS(4015), 1, - anon_sym_EQ_GT, - STATE(1486), 1, - sym_math_operator, - STATE(1488), 1, - sym_logic_operator, - ACTIONS(79), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(75), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(77), 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, - [52811] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3951), 1, - anon_sym_COLON, - ACTIONS(4017), 1, - anon_sym_EQ_GT, - STATE(1486), 1, - sym_math_operator, - STATE(1488), 1, - sym_logic_operator, - ACTIONS(79), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(75), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(77), 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, - [52846] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3963), 1, - anon_sym_COLON, - ACTIONS(4019), 1, - sym_identifier, - STATE(1454), 1, - sym_math_operator, - STATE(1457), 1, - sym_logic_operator, - ACTIONS(79), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(75), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(77), 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, - [52881] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3951), 1, - anon_sym_COLON, - ACTIONS(4021), 1, - anon_sym_EQ_GT, - STATE(1486), 1, - sym_math_operator, - STATE(1488), 1, - sym_logic_operator, - ACTIONS(79), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(75), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(77), 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, - [52916] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(1390), 1, - sym_math_operator, - STATE(1391), 1, - sym_logic_operator, - ACTIONS(3264), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3262), 13, + ACTIONS(2026), 13, anon_sym_RPAREN, anon_sym_COLON, anon_sym_PLUS, @@ -139542,466 +84536,342 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [52945] = 8, + [33554] = 8, ACTIONS(3), 1, sym__comment, - ACTIONS(3963), 1, + ACTIONS(2523), 1, anon_sym_COLON, - ACTIONS(4023), 1, - sym_identifier, - STATE(1454), 1, - sym_math_operator, - STATE(1457), 1, - sym_logic_operator, - ACTIONS(79), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(75), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(77), 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, - [52980] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3240), 1, - anon_sym_RPAREN, - ACTIONS(4025), 1, - anon_sym_COLON, - STATE(1390), 1, - sym_math_operator, - STATE(1391), 1, - sym_logic_operator, - ACTIONS(79), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(75), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(77), 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, - [53015] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(1390), 1, - sym_math_operator, - STATE(1391), 1, - sym_logic_operator, - ACTIONS(3254), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3252), 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, - [53044] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3963), 1, - anon_sym_COLON, - ACTIONS(4027), 1, - sym_identifier, - STATE(1454), 1, - sym_math_operator, - STATE(1457), 1, - sym_logic_operator, - ACTIONS(79), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(75), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(77), 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, - [53079] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3244), 1, - anon_sym_RPAREN, - ACTIONS(4025), 1, - anon_sym_COLON, - STATE(1390), 1, - sym_math_operator, - STATE(1391), 1, - sym_logic_operator, - ACTIONS(79), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(75), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(77), 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, - [53114] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3240), 1, + ACTIONS(2525), 1, anon_sym_EQ_GT, - ACTIONS(3951), 1, - anon_sym_COLON, - STATE(1486), 1, - sym_math_operator, - STATE(1488), 1, + STATE(815), 1, sym_logic_operator, - ACTIONS(79), 2, + STATE(824), 1, + sym_math_operator, + ACTIONS(77), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(75), 5, + ACTIONS(71), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(77), 6, + 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, - [53149] = 8, + [33589] = 8, ACTIONS(3), 1, sym__comment, - ACTIONS(3244), 1, + ACTIONS(2527), 1, + sym_identifier, + ACTIONS(2529), 1, + anon_sym_COLON, + STATE(872), 1, + sym_logic_operator, + STATE(873), 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, + [33624] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2523), 1, + anon_sym_COLON, + ACTIONS(2531), 1, anon_sym_EQ_GT, - ACTIONS(3951), 1, - anon_sym_COLON, - STATE(1486), 1, - sym_math_operator, - STATE(1488), 1, + STATE(815), 1, sym_logic_operator, - ACTIONS(79), 2, + STATE(824), 1, + sym_math_operator, + ACTIONS(77), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(75), 5, + ACTIONS(71), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(77), 6, + 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, - [53184] = 8, + [33659] = 8, ACTIONS(3), 1, sym__comment, - ACTIONS(3951), 1, + ACTIONS(2529), 1, anon_sym_COLON, - ACTIONS(4029), 1, + ACTIONS(2533), 1, + sym_identifier, + STATE(872), 1, + sym_logic_operator, + STATE(873), 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, + [33694] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2523), 1, + anon_sym_COLON, + ACTIONS(2535), 1, anon_sym_EQ_GT, - STATE(1486), 1, - sym_math_operator, - STATE(1488), 1, + STATE(815), 1, sym_logic_operator, - ACTIONS(79), 2, + STATE(824), 1, + sym_math_operator, + ACTIONS(77), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(75), 5, + ACTIONS(71), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(77), 6, + 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, - [53219] = 5, + [33729] = 8, ACTIONS(3), 1, sym__comment, - STATE(1454), 1, - sym_math_operator, - STATE(1457), 1, - sym_logic_operator, - ACTIONS(3254), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3252), 13, + ACTIONS(2529), 1, + anon_sym_COLON, + ACTIONS(2537), 1, 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, - [53248] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3240), 1, - sym_identifier, - ACTIONS(3963), 1, - anon_sym_COLON, - STATE(1454), 1, - sym_math_operator, - STATE(1457), 1, + STATE(872), 1, sym_logic_operator, - ACTIONS(79), 2, + STATE(873), 1, + sym_math_operator, + ACTIONS(77), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(75), 5, + ACTIONS(71), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(77), 6, + 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, - [53283] = 8, + [33764] = 8, ACTIONS(3), 1, sym__comment, - ACTIONS(3244), 1, - sym_identifier, - ACTIONS(3963), 1, - anon_sym_COLON, - STATE(1454), 1, - sym_math_operator, - STATE(1457), 1, - sym_logic_operator, - ACTIONS(79), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(75), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(77), 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, - [53318] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3951), 1, - anon_sym_COLON, - ACTIONS(4031), 1, + ACTIONS(2075), 1, anon_sym_EQ_GT, - STATE(1486), 1, - sym_math_operator, - STATE(1488), 1, + ACTIONS(2523), 1, + anon_sym_COLON, + STATE(815), 1, sym_logic_operator, - ACTIONS(79), 2, + STATE(824), 1, + sym_math_operator, + ACTIONS(77), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(75), 5, + ACTIONS(71), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(77), 6, + 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, - [53353] = 8, + [33799] = 8, ACTIONS(3), 1, sym__comment, - ACTIONS(3963), 1, + ACTIONS(2529), 1, anon_sym_COLON, - ACTIONS(4033), 1, + ACTIONS(2539), 1, sym_identifier, - STATE(1454), 1, - sym_math_operator, - STATE(1457), 1, + STATE(872), 1, sym_logic_operator, - ACTIONS(79), 2, + STATE(873), 1, + sym_math_operator, + ACTIONS(77), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(75), 5, + ACTIONS(71), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(77), 6, + 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, - [53388] = 8, + [33834] = 8, ACTIONS(3), 1, sym__comment, - ACTIONS(3963), 1, + ACTIONS(2523), 1, anon_sym_COLON, - ACTIONS(4035), 1, - sym_identifier, - STATE(1454), 1, - sym_math_operator, - STATE(1457), 1, - sym_logic_operator, - ACTIONS(79), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(75), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(77), 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, - [53423] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3951), 1, - anon_sym_COLON, - ACTIONS(4037), 1, + ACTIONS(2541), 1, anon_sym_EQ_GT, - STATE(1486), 1, - sym_math_operator, - STATE(1488), 1, + STATE(815), 1, sym_logic_operator, - ACTIONS(79), 2, + STATE(824), 1, + sym_math_operator, + ACTIONS(77), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(75), 5, + ACTIONS(71), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(77), 6, + 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, - [53458] = 8, + [33869] = 8, ACTIONS(3), 1, sym__comment, - ACTIONS(3963), 1, + ACTIONS(2529), 1, anon_sym_COLON, - ACTIONS(4039), 1, + ACTIONS(2543), 1, sym_identifier, - STATE(1454), 1, - sym_math_operator, - STATE(1457), 1, + STATE(872), 1, sym_logic_operator, - ACTIONS(79), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(75), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(77), 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, - [53493] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4025), 1, - anon_sym_COLON, - STATE(1390), 1, + STATE(873), 1, sym_math_operator, - STATE(1391), 1, + 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, + [33904] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2079), 1, + anon_sym_EQ_GT, + ACTIONS(2523), 1, + anon_sym_COLON, + STATE(815), 1, sym_logic_operator, - ACTIONS(79), 2, + STATE(824), 1, + sym_math_operator, + ACTIONS(77), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(75), 5, + ACTIONS(71), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(77), 6, + 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, - [53525] = 4, + [33939] = 8, ACTIONS(3), 1, sym__comment, - ACTIONS(4041), 1, - anon_sym_RPAREN, - ACTIONS(3403), 2, + ACTIONS(2523), 1, + anon_sym_COLON, + ACTIONS(2545), 1, + anon_sym_EQ_GT, + STATE(815), 1, + sym_logic_operator, + STATE(824), 1, + sym_math_operator, + ACTIONS(77), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3401), 12, + 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, + [33974] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(891), 1, + sym_math_operator, + STATE(900), 1, + sym_logic_operator, + ACTIONS(2069), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2067), 13, + anon_sym_RPAREN, anon_sym_COLON, anon_sym_PLUS, anon_sym_DASH, @@ -140014,5930 +84884,4527 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [53550] = 4, + [34003] = 8, ACTIONS(3), 1, sym__comment, - ACTIONS(4043), 1, + ACTIONS(2075), 1, anon_sym_RPAREN, - ACTIONS(3403), 2, + ACTIONS(2547), 1, + anon_sym_COLON, + STATE(891), 1, + sym_math_operator, + STATE(900), 1, + sym_logic_operator, + ACTIONS(77), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3401), 12, - anon_sym_COLON, + 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, - [53575] = 4, + [34038] = 8, ACTIONS(3), 1, sym__comment, - ACTIONS(4045), 1, - anon_sym_RPAREN, - ACTIONS(3403), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3401), 12, + ACTIONS(2529), 1, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [53600] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4047), 1, - anon_sym_RPAREN, - ACTIONS(3403), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3401), 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, - [53625] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4049), 1, - anon_sym_RPAREN, - ACTIONS(3403), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3401), 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, - [53650] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4051), 1, - anon_sym_RPAREN, - ACTIONS(3403), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3401), 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, - [53675] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4053), 1, - anon_sym_RPAREN, - ACTIONS(3403), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3401), 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, - [53700] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4055), 1, - anon_sym_RPAREN, - ACTIONS(3403), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3401), 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, - [53725] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3221), 1, + ACTIONS(2549), 1, sym_identifier, - ACTIONS(4057), 1, + STATE(872), 1, + sym_logic_operator, + STATE(873), 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, + [34073] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(872), 1, + sym_logic_operator, + STATE(873), 1, + sym_math_operator, + ACTIONS(2069), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2067), 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, + [34102] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(872), 1, + sym_logic_operator, + STATE(873), 1, + sym_math_operator, + ACTIONS(2065), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2063), 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, + [34131] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2529), 1, + anon_sym_COLON, + ACTIONS(2551), 1, + sym_identifier, + STATE(872), 1, + sym_logic_operator, + STATE(873), 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, + [34166] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2529), 1, + anon_sym_COLON, + ACTIONS(2553), 1, + sym_identifier, + STATE(872), 1, + sym_logic_operator, + STATE(873), 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, + [34201] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(891), 1, + sym_math_operator, + STATE(900), 1, + sym_logic_operator, + ACTIONS(2065), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2063), 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, + [34230] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2523), 1, + anon_sym_COLON, + ACTIONS(2555), 1, + anon_sym_EQ_GT, + STATE(815), 1, + sym_logic_operator, + STATE(824), 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, + [34265] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2523), 1, + anon_sym_COLON, + ACTIONS(2557), 1, + anon_sym_EQ_GT, + STATE(815), 1, + sym_logic_operator, + STATE(824), 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, + [34300] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2523), 1, + anon_sym_COLON, + ACTIONS(2559), 1, + anon_sym_EQ_GT, + STATE(815), 1, + sym_logic_operator, + STATE(824), 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, + [34335] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2523), 1, + anon_sym_COLON, + ACTIONS(2561), 1, + anon_sym_EQ_GT, + STATE(815), 1, + sym_logic_operator, + STATE(824), 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, + [34370] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2529), 1, + anon_sym_COLON, + ACTIONS(2563), 1, + sym_identifier, + STATE(872), 1, + sym_logic_operator, + STATE(873), 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, + [34405] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2075), 1, + sym_identifier, + ACTIONS(2529), 1, + anon_sym_COLON, + STATE(872), 1, + sym_logic_operator, + STATE(873), 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, + [34440] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2079), 1, + sym_identifier, + ACTIONS(2529), 1, + anon_sym_COLON, + STATE(872), 1, + sym_logic_operator, + STATE(873), 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, + [34475] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2529), 1, + anon_sym_COLON, + ACTIONS(2565), 1, + sym_identifier, + STATE(872), 1, + sym_logic_operator, + STATE(873), 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, + [34510] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2529), 1, + anon_sym_COLON, + ACTIONS(2567), 1, + sym_identifier, + STATE(872), 1, + sym_logic_operator, + STATE(873), 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, + [34545] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2523), 1, + anon_sym_COLON, + ACTIONS(2569), 1, + anon_sym_EQ_GT, + STATE(815), 1, + sym_logic_operator, + STATE(824), 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, + [34580] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2079), 1, + anon_sym_RPAREN, + ACTIONS(2547), 1, + anon_sym_COLON, + STATE(891), 1, + sym_math_operator, + STATE(900), 1, + sym_logic_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, + [34615] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(815), 1, + sym_logic_operator, + STATE(824), 1, + sym_math_operator, + ACTIONS(2065), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2063), 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, + [34644] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2529), 1, + anon_sym_COLON, + ACTIONS(2571), 1, + sym_identifier, + STATE(872), 1, + sym_logic_operator, + STATE(873), 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, + [34679] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2523), 1, + anon_sym_COLON, + ACTIONS(2573), 1, + anon_sym_EQ_GT, + STATE(815), 1, + sym_logic_operator, + STATE(824), 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, + [34714] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2529), 1, + anon_sym_COLON, + ACTIONS(2575), 1, + sym_identifier, + STATE(872), 1, + sym_logic_operator, + STATE(873), 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, + [34749] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2523), 1, + anon_sym_COLON, + ACTIONS(2577), 1, + anon_sym_EQ_GT, + STATE(815), 1, + sym_logic_operator, + STATE(824), 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, + [34784] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(815), 1, + sym_logic_operator, + STATE(824), 1, + sym_math_operator, + ACTIONS(2069), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2067), 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, + [34813] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2523), 1, + anon_sym_COLON, + ACTIONS(2579), 1, + anon_sym_EQ_GT, + STATE(815), 1, + sym_logic_operator, + STATE(824), 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, + [34848] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2547), 1, + anon_sym_COLON, + STATE(891), 1, + sym_math_operator, + STATE(900), 1, + sym_logic_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, + [34880] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2581), 1, + anon_sym_RPAREN, + ACTIONS(2217), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2215), 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, + [34905] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2583), 1, + anon_sym_RPAREN, + ACTIONS(2217), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2215), 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, + [34930] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2585), 1, + anon_sym_RPAREN, + ACTIONS(2217), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2215), 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, + [34955] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2587), 1, + anon_sym_RPAREN, + ACTIONS(2217), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2215), 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, + [34980] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2003), 1, + sym_identifier, + ACTIONS(2589), 1, anon_sym_elseif, - ACTIONS(4059), 1, + ACTIONS(2591), 1, anon_sym_else, - STATE(1657), 1, + STATE(1024), 1, sym_else, - STATE(1639), 2, + STATE(1006), 2, sym_else_if, aux_sym_if_else_repeat1, - ACTIONS(3219), 3, + ACTIONS(2001), 3, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, - [53750] = 7, + [35005] = 7, ACTIONS(3), 1, sym__comment, - ACTIONS(3231), 1, + ACTIONS(2011), 1, sym_identifier, - ACTIONS(4057), 1, + ACTIONS(2589), 1, anon_sym_elseif, - ACTIONS(4059), 1, + ACTIONS(2591), 1, anon_sym_else, - STATE(1644), 1, + STATE(1020), 1, sym_else, - STATE(1640), 2, + STATE(1004), 2, sym_else_if, aux_sym_if_else_repeat1, - ACTIONS(3229), 3, + ACTIONS(2009), 3, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, - [53775] = 5, + [35030] = 5, ACTIONS(3), 1, sym__comment, - ACTIONS(4061), 1, + ACTIONS(2593), 1, anon_sym_elseif, - ACTIONS(3270), 2, + ACTIONS(2021), 2, sym_identifier, anon_sym_else, - STATE(1640), 2, + STATE(1006), 2, sym_else_if, aux_sym_if_else_repeat1, - ACTIONS(3268), 3, + ACTIONS(2019), 3, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, - [53795] = 3, + [35050] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(3425), 2, + ACTIONS(2189), 2, sym_identifier, anon_sym_else, - ACTIONS(3423), 4, + ACTIONS(2187), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, anon_sym_elseif, - [53809] = 3, + [35064] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(3434), 2, + ACTIONS(2154), 2, sym_identifier, anon_sym_else, - ACTIONS(3432), 4, + ACTIONS(2152), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, anon_sym_elseif, - [53823] = 3, + [35078] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(3399), 2, + ACTIONS(2255), 2, sym_identifier, anon_sym_else, - ACTIONS(3397), 4, + ACTIONS(2253), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, anon_sym_elseif, - [53837] = 2, + [35092] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(3325), 4, + ACTIONS(2136), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, sym_identifier, - [53847] = 2, + [35102] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(3393), 4, + ACTIONS(2144), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, sym_identifier, - [53857] = 2, + [35112] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(3363), 4, + ACTIONS(2231), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, sym_identifier, - [53867] = 2, + [35122] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(3337), 4, + ACTIONS(2195), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, sym_identifier, - [53877] = 2, + [35132] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(3341), 4, + ACTIONS(2140), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, sym_identifier, - [53887] = 2, + [35142] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(3303), 4, + ACTIONS(2183), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, sym_identifier, - [53897] = 3, + [35152] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(3937), 1, + ACTIONS(2509), 1, anon_sym_SEMI, - ACTIONS(3275), 3, + ACTIONS(2041), 3, anon_sym_RBRACE, anon_sym_COMMA, sym_identifier, - [53909] = 2, + [35164] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(3296), 4, + ACTIONS(2173), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, sym_identifier, - [53919] = 2, + [35174] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(3379), 4, + ACTIONS(2223), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, sym_identifier, - [53929] = 2, + [35184] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(3317), 4, + ACTIONS(2132), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, sym_identifier, - [53939] = 2, + [35194] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(3307), 4, + ACTIONS(2001), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, sym_identifier, - [53949] = 2, + [35204] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(3367), 4, + ACTIONS(2235), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, sym_identifier, - [53959] = 2, + [35214] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(3415), 4, + ACTIONS(2239), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, sym_identifier, - [53969] = 2, + [35224] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(3229), 4, + ACTIONS(2245), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, sym_identifier, - [53979] = 2, + [35234] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(3419), 4, + ACTIONS(2249), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, sym_identifier, - [53989] = 2, + [35244] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(3321), 4, + ACTIONS(2263), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, sym_identifier, - [53999] = 4, + [35254] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(3077), 1, - anon_sym_RBRACE, - ACTIONS(4064), 1, + ACTIONS(2596), 1, sym_identifier, - STATE(1663), 1, + ACTIONS(2598), 1, + anon_sym_RBRACE, + STATE(1039), 1, aux_sym_map_repeat1, - [54012] = 4, + [35267] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(4064), 1, - sym_identifier, - ACTIONS(4066), 1, + ACTIONS(1873), 1, anon_sym_RBRACE, - STATE(1680), 1, + ACTIONS(2596), 1, + sym_identifier, + STATE(1030), 1, aux_sym_map_repeat1, - [54025] = 4, + [35280] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(4068), 1, + ACTIONS(2600), 1, sym_identifier, - ACTIONS(4070), 1, + ACTIONS(2602), 1, anon_sym_PIPE, - STATE(1683), 1, + STATE(1035), 1, aux_sym_identifier_list_repeat1, - [54038] = 4, + [35293] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(4064), 1, - sym_identifier, - ACTIONS(4072), 1, - anon_sym_RBRACE, - STATE(1680), 1, - aux_sym_map_repeat1, - [54051] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4068), 1, - sym_identifier, - ACTIONS(4074), 1, - anon_sym_PIPE, - STATE(1676), 1, - aux_sym_identifier_list_repeat1, - [54064] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4078), 1, + ACTIONS(2606), 1, anon_sym_COMMA, - ACTIONS(4076), 2, - anon_sym_RBRACE, + ACTIONS(2604), 2, sym_identifier, - [54075] = 4, + anon_sym_PIPE, + [35304] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(4064), 1, + ACTIONS(2596), 1, sym_identifier, - ACTIONS(4080), 1, + ACTIONS(2608), 1, anon_sym_RBRACE, - STATE(1672), 1, + STATE(1039), 1, aux_sym_map_repeat1, - [54088] = 4, + [35317] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(4064), 1, + ACTIONS(2610), 1, sym_identifier, - ACTIONS(4082), 1, - anon_sym_RBRACE, - STATE(1669), 1, - aux_sym_map_repeat1, - [54101] = 4, + ACTIONS(2613), 1, + anon_sym_PIPE, + STATE(1031), 1, + aux_sym_identifier_list_repeat1, + [35330] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(3079), 1, - anon_sym_RBRACE, - ACTIONS(4064), 1, + ACTIONS(2600), 1, sym_identifier, - STATE(1679), 1, - aux_sym_map_repeat1, - [54114] = 4, + ACTIONS(2615), 1, + anon_sym_PIPE, + STATE(1033), 1, + aux_sym_identifier_list_repeat1, + [35343] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(4064), 1, + ACTIONS(2600), 1, sym_identifier, - ACTIONS(4084), 1, - anon_sym_RBRACE, - STATE(1680), 1, - aux_sym_map_repeat1, - [54127] = 4, + ACTIONS(2617), 1, + anon_sym_PIPE, + STATE(1031), 1, + aux_sym_identifier_list_repeat1, + [35356] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(3073), 1, - anon_sym_RBRACE, - ACTIONS(4064), 1, + ACTIONS(2596), 1, sym_identifier, - STATE(1677), 1, - aux_sym_map_repeat1, - [54140] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4064), 1, - sym_identifier, - ACTIONS(4086), 1, + ACTIONS(2619), 1, anon_sym_RBRACE, - STATE(1674), 1, + STATE(1026), 1, aux_sym_map_repeat1, - [54153] = 4, + [35369] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(4064), 1, + ACTIONS(2600), 1, sym_identifier, - ACTIONS(4088), 1, - anon_sym_RBRACE, - STATE(1680), 1, - aux_sym_map_repeat1, - [54166] = 3, + ACTIONS(2621), 1, + anon_sym_PIPE, + STATE(1031), 1, + aux_sym_identifier_list_repeat1, + [35382] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(4092), 1, + ACTIONS(2625), 1, anon_sym_COMMA, - ACTIONS(4090), 2, + ACTIONS(2623), 2, + anon_sym_RBRACE, sym_identifier, - anon_sym_PIPE, - [54177] = 4, + [35393] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(4064), 1, + ACTIONS(2596), 1, sym_identifier, - ACTIONS(4094), 1, + ACTIONS(2627), 1, anon_sym_RBRACE, - STATE(1680), 1, + STATE(1038), 1, aux_sym_map_repeat1, - [54190] = 4, + [35406] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(4064), 1, + ACTIONS(2596), 1, sym_identifier, - ACTIONS(4096), 1, + ACTIONS(2629), 1, anon_sym_RBRACE, - STATE(1680), 1, + STATE(1039), 1, aux_sym_map_repeat1, - [54203] = 4, + [35419] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(4068), 1, + ACTIONS(2631), 1, sym_identifier, - ACTIONS(4098), 1, - anon_sym_PIPE, - STATE(1683), 1, - aux_sym_identifier_list_repeat1, - [54216] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4064), 1, - sym_identifier, - ACTIONS(4100), 1, + ACTIONS(2634), 1, anon_sym_RBRACE, - STATE(1680), 1, + STATE(1039), 1, aux_sym_map_repeat1, - [54229] = 4, + [35432] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(3075), 1, + ACTIONS(1871), 1, anon_sym_RBRACE, - ACTIONS(4064), 1, + ACTIONS(2596), 1, sym_identifier, - STATE(1675), 1, + STATE(1041), 1, aux_sym_map_repeat1, - [54242] = 4, + [35445] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(4064), 1, + ACTIONS(2596), 1, sym_identifier, - ACTIONS(4102), 1, + ACTIONS(2636), 1, anon_sym_RBRACE, - STATE(1680), 1, + STATE(1039), 1, aux_sym_map_repeat1, - [54255] = 4, + [35458] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(4104), 1, + ACTIONS(47), 1, + anon_sym_PIPE, + STATE(1219), 1, + sym_identifier_list, + [35468] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2638), 1, + anon_sym_PIPE, + STATE(855), 1, + sym_identifier_list, + [35478] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2501), 2, + anon_sym_EQ_GT, + anon_sym_from, + [35486] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2638), 1, + anon_sym_PIPE, + STATE(847), 1, + sym_identifier_list, + [35496] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + STATE(1261), 1, + sym_identifier_list, + [35506] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2638), 1, + anon_sym_PIPE, + STATE(876), 1, + sym_identifier_list, + [35516] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2638), 1, + anon_sym_PIPE, + STATE(898), 1, + sym_identifier_list, + [35526] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2613), 2, sym_identifier, - ACTIONS(4107), 1, - anon_sym_RBRACE, - STATE(1680), 1, - aux_sym_map_repeat1, - [54268] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4068), 1, - sym_identifier, - ACTIONS(4109), 1, anon_sym_PIPE, - STATE(1662), 1, - aux_sym_identifier_list_repeat1, - [54281] = 4, + [35534] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4064), 1, - sym_identifier, - ACTIONS(4111), 1, - anon_sym_RBRACE, - STATE(1661), 1, - aux_sym_map_repeat1, - [54294] = 4, + ACTIONS(2489), 2, + anon_sym_EQ_GT, + anon_sym_from, + [35542] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(4113), 1, - sym_identifier, - ACTIONS(4116), 1, + ACTIONS(2638), 1, anon_sym_PIPE, - STATE(1683), 1, - aux_sym_identifier_list_repeat1, - [54307] = 3, + STATE(850), 1, + sym_identifier_list, + [35552] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, - STATE(1935), 1, + STATE(1128), 1, sym_identifier_list, - [54317] = 3, + [35562] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2638), 1, + anon_sym_PIPE, + STATE(894), 1, + sym_identifier_list, + [35572] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2638), 1, + anon_sym_PIPE, + STATE(826), 1, + sym_identifier_list, + [35582] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2638), 1, + anon_sym_PIPE, + STATE(885), 1, + sym_identifier_list, + [35592] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2638), 1, + anon_sym_PIPE, + STATE(877), 1, + sym_identifier_list, + [35602] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2638), 1, + anon_sym_PIPE, + STATE(820), 1, + sym_identifier_list, + [35612] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, - STATE(2025), 1, + STATE(1130), 1, sym_identifier_list, - [54327] = 3, + [35622] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(4118), 1, + ACTIONS(2638), 1, anon_sym_PIPE, - STATE(1361), 1, + STATE(852), 1, sym_identifier_list, - [54337] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4118), 1, - anon_sym_PIPE, - STATE(1276), 1, - sym_identifier_list, - [54347] = 3, + [35632] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, - STATE(1887), 1, + STATE(1159), 1, sym_identifier_list, - [54357] = 3, + [35642] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(4118), 1, + ACTIONS(2638), 1, anon_sym_PIPE, - STATE(1332), 1, + STATE(753), 1, sym_identifier_list, - [54367] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4118), 1, - anon_sym_PIPE, - STATE(1404), 1, - sym_identifier_list, - [54377] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4118), 1, - anon_sym_PIPE, - STATE(1282), 1, - sym_identifier_list, - [54387] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4118), 1, - anon_sym_PIPE, - STATE(1375), 1, - sym_identifier_list, - [54397] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4118), 1, - anon_sym_PIPE, - STATE(1352), 1, - sym_identifier_list, - [54407] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4118), 1, - anon_sym_PIPE, - STATE(1288), 1, - sym_identifier_list, - [54417] = 3, + [35652] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, - STATE(1875), 1, + STATE(1211), 1, sym_identifier_list, - [54427] = 3, + [35662] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(4118), 1, + ACTIONS(2638), 1, anon_sym_PIPE, - STATE(1350), 1, + STATE(742), 1, sym_identifier_list, - [54437] = 3, + [35672] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(4118), 1, + ACTIONS(2638), 1, anon_sym_PIPE, - STATE(1220), 1, + STATE(867), 1, sym_identifier_list, - [54447] = 3, + [35682] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(4118), 1, + ACTIONS(2638), 1, anon_sym_PIPE, - STATE(1341), 1, + STATE(693), 1, sym_identifier_list, - [54457] = 3, + [35692] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2638), 1, + anon_sym_PIPE, + STATE(688), 1, + sym_identifier_list, + [35702] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, - STATE(2023), 1, + STATE(1248), 1, sym_identifier_list, - [54467] = 3, + [35712] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2638), 1, + anon_sym_PIPE, + STATE(734), 1, + sym_identifier_list, + [35722] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2638), 1, + anon_sym_PIPE, + STATE(907), 1, + sym_identifier_list, + [35732] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(47), 1, anon_sym_PIPE, - STATE(1991), 1, + STATE(1253), 1, sym_identifier_list, - [54477] = 2, + [35742] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(4120), 2, + ACTIONS(2638), 1, + anon_sym_PIPE, + STATE(796), 1, + sym_identifier_list, + [35752] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + STATE(1167), 1, + sym_identifier_list, + [35762] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + STATE(1141), 1, + sym_identifier_list, + [35772] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2638), 1, + anon_sym_PIPE, + STATE(787), 1, + sym_identifier_list, + [35782] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + STATE(1080), 1, + sym_identifier_list, + [35792] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + STATE(1205), 1, + sym_identifier_list, + [35802] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(47), 1, + anon_sym_PIPE, + STATE(1092), 1, + sym_identifier_list, + [35812] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2640), 2, anon_sym_RBRACE, sym_identifier, - [54485] = 3, + [35820] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - STATE(1914), 1, - sym_identifier_list, - [54495] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - STATE(1858), 1, - sym_identifier_list, - [54505] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3911), 2, - anon_sym_EQ_GT, - anon_sym_from, - [54513] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4118), 1, - anon_sym_PIPE, - STATE(1179), 1, - sym_identifier_list, - [54523] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4118), 1, - anon_sym_PIPE, - STATE(1140), 1, - sym_identifier_list, - [54533] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - STATE(1863), 1, - sym_identifier_list, - [54543] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4118), 1, - anon_sym_PIPE, - STATE(1483), 1, - sym_identifier_list, - [54553] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4118), 1, - anon_sym_PIPE, - STATE(1314), 1, - sym_identifier_list, - [54563] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - STATE(1900), 1, - sym_identifier_list, - [54573] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4118), 1, - anon_sym_PIPE, - STATE(1396), 1, - sym_identifier_list, - [54583] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - STATE(1883), 1, - sym_identifier_list, - [54593] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4118), 1, - anon_sym_PIPE, - STATE(1386), 1, - sym_identifier_list, - [54603] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4118), 1, - anon_sym_PIPE, - STATE(1224), 1, - sym_identifier_list, - [54613] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4118), 1, - anon_sym_PIPE, - STATE(1304), 1, - sym_identifier_list, - [54623] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4118), 1, - anon_sym_PIPE, - STATE(1409), 1, - sym_identifier_list, - [54633] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4118), 1, - anon_sym_PIPE, - STATE(1388), 1, - sym_identifier_list, - [54643] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4118), 1, - anon_sym_PIPE, - STATE(1262), 1, - sym_identifier_list, - [54653] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4118), 1, - anon_sym_PIPE, - STATE(1317), 1, - sym_identifier_list, - [54663] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4118), 1, - anon_sym_PIPE, - STATE(1241), 1, - sym_identifier_list, - [54673] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4118), 1, - anon_sym_PIPE, - STATE(1451), 1, - sym_identifier_list, - [54683] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - STATE(1749), 1, - sym_identifier_list, - [54693] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - STATE(2005), 1, - sym_identifier_list, - [54703] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4118), 1, - anon_sym_PIPE, - STATE(1148), 1, - sym_identifier_list, - [54713] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4118), 1, - anon_sym_PIPE, - STATE(1351), 1, - sym_identifier_list, - [54723] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - STATE(1923), 1, - sym_identifier_list, - [54733] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - STATE(1955), 1, - sym_identifier_list, - [54743] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4118), 1, - anon_sym_PIPE, - STATE(1328), 1, - sym_identifier_list, - [54753] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - STATE(1820), 1, - sym_identifier_list, - [54763] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - STATE(1807), 1, - sym_identifier_list, - [54773] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4116), 2, + ACTIONS(2642), 1, sym_identifier, - anon_sym_PIPE, - [54781] = 3, + [35827] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - STATE(2001), 1, - sym_identifier_list, - [54791] = 3, + ACTIONS(2644), 1, + anon_sym_from, + [35834] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - STATE(1832), 1, - sym_identifier_list, - [54801] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4118), 1, - anon_sym_PIPE, - STATE(1256), 1, - sym_identifier_list, - [54811] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - STATE(2008), 1, - sym_identifier_list, - [54821] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4118), 1, - anon_sym_PIPE, - STATE(1468), 1, - sym_identifier_list, - [54831] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(3923), 2, + ACTIONS(2646), 1, anon_sym_EQ_GT, - anon_sym_from, - [54839] = 3, + [35841] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4118), 1, - anon_sym_PIPE, - STATE(1197), 1, - sym_identifier_list, - [54849] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_PIPE, - STATE(1856), 1, - sym_identifier_list, - [54859] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4118), 1, - anon_sym_PIPE, - STATE(1459), 1, - sym_identifier_list, - [54869] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4122), 1, - anon_sym_EQ_GT, - [54876] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4124), 1, - sym_identifier, - [54883] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4126), 1, + ACTIONS(2648), 1, anon_sym_in, - [54890] = 2, + [35848] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4128), 1, - anon_sym_in, - [54897] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4130), 1, - anon_sym_in, - [54904] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4132), 1, - anon_sym_from, - [54911] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4134), 1, - anon_sym_in, - [54918] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4136), 1, - anon_sym_in, - [54925] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4138), 1, - anon_sym_from, - [54932] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4140), 1, - sym_identifier, - [54939] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4142), 1, + ACTIONS(2650), 1, anon_sym_into, - [54946] = 2, + [35855] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4144), 1, + ACTIONS(2652), 1, + anon_sym_in, + [35862] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2654), 1, anon_sym_EQ_GT, - [54953] = 2, + [35869] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4146), 1, + ACTIONS(2656), 1, + anon_sym_EQ_GT, + [35876] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2658), 1, anon_sym_in, - [54960] = 2, + [35883] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4148), 1, + ACTIONS(2660), 1, anon_sym_in, - [54967] = 2, + [35890] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4150), 1, + ACTIONS(2662), 1, + sym_identifier, + [35897] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2664), 1, anon_sym_in, - [54974] = 2, + [35904] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4152), 1, + ACTIONS(2666), 1, anon_sym_from, - [54981] = 2, + [35911] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4154), 1, + ACTIONS(2668), 1, + anon_sym_from, + [35918] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2670), 1, + sym_identifier, + [35925] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2672), 1, anon_sym_in, - [54988] = 2, + [35932] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4156), 1, + ACTIONS(2674), 1, + anon_sym_EQ_GT, + [35939] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2676), 1, anon_sym_in, - [54995] = 2, + [35946] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4158), 1, + ACTIONS(2678), 1, anon_sym_in, - [55002] = 2, + [35953] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4160), 1, + ACTIONS(2680), 1, + anon_sym_in, + [35960] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2682), 1, + anon_sym_in, + [35967] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2684), 1, + anon_sym_EQ_GT, + [35974] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2686), 1, + anon_sym_EQ_GT, + [35981] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2688), 1, + anon_sym_EQ_GT, + [35988] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2690), 1, + anon_sym_EQ_GT, + [35995] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2692), 1, + anon_sym_EQ_GT, + [36002] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2694), 1, + anon_sym_EQ_GT, + [36009] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2696), 1, + anon_sym_EQ_GT, + [36016] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2698), 1, + anon_sym_EQ_GT, + [36023] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2700), 1, + anon_sym_EQ_GT, + [36030] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2702), 1, + anon_sym_EQ_GT, + [36037] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2704), 1, anon_sym_into, - [55009] = 2, + [36044] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4162), 1, + ACTIONS(2706), 1, + sym_identifier, + [36051] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2708), 1, + sym_identifier, + [36058] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2710), 1, + anon_sym_in, + [36065] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2712), 1, + sym_identifier, + [36072] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2714), 1, + sym_identifier, + [36079] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2716), 1, + anon_sym_in, + [36086] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2718), 1, anon_sym_into, - [55016] = 2, + [36093] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4164), 1, + ACTIONS(2720), 1, + anon_sym_in, + [36100] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2722), 1, anon_sym_EQ_GT, - [55023] = 2, + [36107] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4166), 1, + ACTIONS(2724), 1, anon_sym_in, - [55030] = 2, + [36114] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4168), 1, - anon_sym_in, - [55037] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4170), 1, - anon_sym_in, - [55044] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4172), 1, - anon_sym_in, - [55051] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4174), 1, - anon_sym_from, - [55058] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4176), 1, - anon_sym_in, - [55065] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4178), 1, - anon_sym_in, - [55072] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4180), 1, - anon_sym_EQ_GT, - [55079] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4182), 1, - anon_sym_in, - [55086] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4184), 1, - anon_sym_into, - [55093] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4186), 1, - anon_sym_EQ_GT, - [55100] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4188), 1, - anon_sym_in, - [55107] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4190), 1, - anon_sym_in, - [55114] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4192), 1, - anon_sym_EQ_GT, - [55121] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4194), 1, - anon_sym_in, - [55128] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4196), 1, - anon_sym_from, - [55135] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4198), 1, - anon_sym_in, - [55142] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4200), 1, - anon_sym_in, - [55149] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4202), 1, - anon_sym_from, - [55156] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4204), 1, - anon_sym_in, - [55163] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4206), 1, - anon_sym_into, - [55170] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4208), 1, - anon_sym_EQ_GT, - [55177] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4210), 1, - anon_sym_in, - [55184] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4212), 1, - anon_sym_in, - [55191] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4214), 1, - anon_sym_in, - [55198] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4216), 1, - anon_sym_in, - [55205] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4218), 1, - anon_sym_from, - [55212] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4220), 1, - anon_sym_in, - [55219] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4222), 1, - anon_sym_in, - [55226] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4224), 1, - anon_sym_in, - [55233] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4226), 1, - anon_sym_EQ_GT, - [55240] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4228), 1, - anon_sym_EQ_GT, - [55247] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4230), 1, - anon_sym_in, - [55254] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4232), 1, - anon_sym_in, - [55261] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4234), 1, - sym_identifier, - [55268] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4236), 1, - anon_sym_in, - [55275] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4238), 1, - anon_sym_from, - [55282] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4240), 1, - anon_sym_in, - [55289] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4242), 1, - anon_sym_in, - [55296] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4244), 1, - anon_sym_into, - [55303] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4246), 1, - anon_sym_in, - [55310] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4248), 1, - anon_sym_EQ_GT, - [55317] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4250), 1, - anon_sym_in, - [55324] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4252), 1, - anon_sym_in, - [55331] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4254), 1, - anon_sym_from, - [55338] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4256), 1, - anon_sym_in, - [55345] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4258), 1, - anon_sym_from, - [55352] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4260), 1, - anon_sym_in, - [55359] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4262), 1, - anon_sym_in, - [55366] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4264), 1, - sym_identifier, - [55373] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4266), 1, - anon_sym_EQ_GT, - [55380] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4268), 1, - sym_identifier, - [55387] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4270), 1, - sym_identifier, - [55394] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4272), 1, - sym_identifier, - [55401] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4274), 1, - anon_sym_EQ_GT, - [55408] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4276), 1, - sym_identifier, - [55415] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4278), 1, - sym_identifier, - [55422] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4280), 1, - anon_sym_from, - [55429] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4282), 1, - anon_sym_into, - [55436] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4284), 1, - anon_sym_from, - [55443] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4286), 1, - anon_sym_EQ_GT, - [55450] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4288), 1, - anon_sym_in, - [55457] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4290), 1, - anon_sym_in, - [55464] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4292), 1, - anon_sym_in, - [55471] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4294), 1, - anon_sym_in, - [55478] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4296), 1, - anon_sym_in, - [55485] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4298), 1, - anon_sym_in, - [55492] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4300), 1, - anon_sym_in, - [55499] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4302), 1, - anon_sym_from, - [55506] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4304), 1, - anon_sym_from, - [55513] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4306), 1, - sym_identifier, - [55520] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4308), 1, - anon_sym_in, - [55527] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4310), 1, - anon_sym_in, - [55534] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4312), 1, - sym_identifier, - [55541] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4314), 1, - anon_sym_EQ_GT, - [55548] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4316), 1, - anon_sym_in, - [55555] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4318), 1, - sym_identifier, - [55562] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4320), 1, - anon_sym_into, - [55569] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4322), 1, - anon_sym_EQ_GT, - [55576] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4324), 1, - anon_sym_in, - [55583] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4326), 1, - anon_sym_EQ, - [55590] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4328), 1, - anon_sym_in, - [55597] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4330), 1, - anon_sym_in, - [55604] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4332), 1, - anon_sym_in, - [55611] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4334), 1, - anon_sym_from, - [55618] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4336), 1, - anon_sym_in, - [55625] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4338), 1, - anon_sym_in, - [55632] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4340), 1, - anon_sym_in, - [55639] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4342), 1, - anon_sym_EQ_GT, - [55646] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4344), 1, - anon_sym_into, - [55653] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4346), 1, - sym_identifier, - [55660] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4348), 1, - sym_identifier, - [55667] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4350), 1, - sym_identifier, - [55674] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4352), 1, - anon_sym_from, - [55681] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4354), 1, + ACTIONS(2726), 1, anon_sym_to, - [55688] = 2, + [36121] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4356), 1, - anon_sym_from, - [55695] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4358), 1, - anon_sym_from, - [55702] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4360), 1, - anon_sym_EQ_GT, - [55709] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4362), 1, + ACTIONS(2728), 1, anon_sym_in, - [55716] = 2, + [36128] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4364), 1, + ACTIONS(2730), 1, anon_sym_in, - [55723] = 2, + [36135] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4366), 1, + ACTIONS(2732), 1, anon_sym_from, - [55730] = 2, + [36142] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4368), 1, - anon_sym_in, - [55737] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4370), 1, - anon_sym_in, - [55744] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4372), 1, - anon_sym_EQ_GT, - [55751] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4374), 1, - sym_identifier, - [55758] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4376), 1, + ACTIONS(2734), 1, anon_sym_from, - [55765] = 2, + [36149] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4378), 1, + ACTIONS(2736), 1, + anon_sym_in, + [36156] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2738), 1, + anon_sym_from, + [36163] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2740), 1, + anon_sym_from, + [36170] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2742), 1, anon_sym_into, - [55772] = 2, + [36177] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4380), 1, - sym_identifier, - [55779] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4382), 1, - sym_identifier, - [55786] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4384), 1, - anon_sym_in, - [55793] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4386), 1, - sym_identifier, - [55800] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4388), 1, - sym_identifier, - [55807] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4390), 1, + ACTIONS(2744), 1, anon_sym_from, - [55814] = 2, + [36184] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4392), 1, - anon_sym_into, - [55821] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4394), 1, + ACTIONS(2746), 1, anon_sym_in, - [55828] = 2, + [36191] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4396), 1, - anon_sym_in, - [55835] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4398), 1, - anon_sym_in, - [55842] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4400), 1, + ACTIONS(2748), 1, sym_identifier, - [55849] = 2, + [36198] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4402), 1, + ACTIONS(2750), 1, anon_sym_in, - [55856] = 2, + [36205] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4404), 1, - anon_sym_from, - [55863] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4406), 1, - anon_sym_from, - [55870] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4408), 1, + ACTIONS(2752), 1, anon_sym_in, - [55877] = 2, + [36212] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4410), 1, + ACTIONS(2754), 1, sym_identifier, - [55884] = 2, + [36219] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4412), 1, + ACTIONS(2756), 1, anon_sym_in, - [55891] = 2, + [36226] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4414), 1, - anon_sym_from, - [55898] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4416), 1, - anon_sym_from, - [55905] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4418), 1, + ACTIONS(2758), 1, anon_sym_in, - [55912] = 2, + [36233] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4420), 1, + ACTIONS(2760), 1, + anon_sym_in, + [36240] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2762), 1, + anon_sym_in, + [36247] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2764), 1, + anon_sym_in, + [36254] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2766), 1, + anon_sym_from, + [36261] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2768), 1, + anon_sym_from, + [36268] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2770), 1, anon_sym_EQ_GT, - [55919] = 2, + [36275] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4422), 1, + ACTIONS(2772), 1, ts_builtin_sym_end, - [55926] = 2, + [36282] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4424), 1, + ACTIONS(2774), 1, anon_sym_in, - [55933] = 2, + [36289] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4426), 1, - anon_sym_in, - [55940] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4428), 1, - anon_sym_in, - [55947] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4430), 1, + ACTIONS(2776), 1, sym_identifier, - [55954] = 2, + [36296] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4432), 1, + ACTIONS(2778), 1, sym_identifier, - [55961] = 2, + [36303] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4434), 1, + ACTIONS(2780), 1, anon_sym_in, - [55968] = 2, + [36310] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4436), 1, + ACTIONS(2782), 1, sym_identifier, - [55975] = 2, + [36317] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4438), 1, + ACTIONS(2784), 1, sym_identifier, - [55982] = 2, + [36324] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4440), 1, - anon_sym_from, - [55989] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4442), 1, + ACTIONS(2786), 1, anon_sym_in, - [55996] = 2, + [36331] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4444), 1, - anon_sym_in, - [56003] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4446), 1, + ACTIONS(2788), 1, anon_sym_into, - [56010] = 2, + [36338] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4448), 1, + ACTIONS(2790), 1, + anon_sym_in, + [36345] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2792), 1, + anon_sym_in, + [36352] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2794), 1, + anon_sym_EQ_GT, + [36359] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2796), 1, anon_sym_into, - [56017] = 2, + [36366] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4450), 1, + ACTIONS(2798), 1, anon_sym_in, - [56024] = 2, + [36373] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4452), 1, + ACTIONS(2800), 1, anon_sym_from, - [56031] = 2, + [36380] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4454), 1, - anon_sym_in, - [56038] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4456), 1, - sym_identifier, - [56045] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4458), 1, - anon_sym_in, - [56052] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4460), 1, - anon_sym_EQ_GT, - [56059] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4462), 1, - sym_identifier, - [56066] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4464), 1, - sym_identifier, - [56073] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4466), 1, - sym_identifier, - [56080] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4468), 1, + ACTIONS(2802), 1, anon_sym_from, - [56087] = 2, + [36387] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4470), 1, - sym_identifier, - [56094] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4472), 1, - sym_identifier, - [56101] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4474), 1, - anon_sym_EQ_GT, - [56108] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4476), 1, - sym_identifier, - [56115] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4478), 1, - sym_identifier, - [56122] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4480), 1, - anon_sym_EQ_GT, - [56129] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4482), 1, - sym_identifier, - [56136] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4484), 1, - anon_sym_EQ_GT, - [56143] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4486), 1, - anon_sym_from, - [56150] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4488), 1, + ACTIONS(2804), 1, anon_sym_in, - [56157] = 2, + [36394] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4490), 1, - anon_sym_in, - [56164] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4492), 1, - anon_sym_EQ_GT, - [56171] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4494), 1, + ACTIONS(2806), 1, sym_identifier, - [56178] = 2, + [36401] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4496), 1, + ACTIONS(2808), 1, anon_sym_in, - [56185] = 2, + [36408] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4498), 1, - anon_sym_from, - [56192] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4500), 1, + ACTIONS(2810), 1, anon_sym_in, - [56199] = 2, + [36415] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4502), 1, - sym_identifier, - [56206] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4504), 1, - anon_sym_in, - [56213] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4506), 1, - sym_identifier, - [56220] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4508), 1, - sym_identifier, - [56227] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4510), 1, - anon_sym_from, - [56234] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4512), 1, - sym_identifier, - [56241] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4514), 1, - sym_identifier, - [56248] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4516), 1, - anon_sym_in, - [56255] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4518), 1, - anon_sym_in, - [56262] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4520), 1, - sym_identifier, - [56269] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4522), 1, - anon_sym_in, - [56276] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4524), 1, - anon_sym_in, - [56283] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4526), 1, - anon_sym_from, - [56290] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4528), 1, - anon_sym_in, - [56297] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4530), 1, - sym_identifier, - [56304] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4532), 1, - anon_sym_in, - [56311] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4534), 1, - sym_identifier, - [56318] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4536), 1, - sym_identifier, - [56325] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4538), 1, + ACTIONS(2812), 1, anon_sym_into, - [56332] = 2, + [36422] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4540), 1, + ACTIONS(2814), 1, + anon_sym_in, + [36429] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2816), 1, sym_identifier, - [56339] = 2, + [36436] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4542), 1, - sym_identifier, - [56346] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4544), 1, - anon_sym_in, - [56353] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4546), 1, - anon_sym_in, - [56360] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4548), 1, - anon_sym_in, - [56367] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4550), 1, + ACTIONS(2818), 1, anon_sym_from, - [56374] = 2, + [36443] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4552), 1, - anon_sym_in, - [56381] = 2, + ACTIONS(2820), 1, + sym_identifier, + [36450] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4554), 1, + ACTIONS(2822), 1, + sym_identifier, + [36457] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2824), 1, anon_sym_from, - [56388] = 2, + [36464] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4556), 1, + ACTIONS(2826), 1, + sym_identifier, + [36471] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2828), 1, + sym_identifier, + [36478] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2830), 1, anon_sym_in, - [56395] = 2, + [36485] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4558), 1, - sym_identifier, - [56402] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4560), 1, + ACTIONS(2832), 1, anon_sym_in, - [56409] = 2, + [36492] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4562), 1, + ACTIONS(2834), 1, + anon_sym_in, + [36499] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2836), 1, sym_identifier, - [56416] = 2, + [36506] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4564), 1, - sym_identifier, - [56423] = 2, + ACTIONS(2838), 1, + anon_sym_EQ, + [36513] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4566), 1, + ACTIONS(2840), 1, + anon_sym_in, + [36520] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2842), 1, anon_sym_from, - [56430] = 2, + [36527] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4568), 1, - sym_identifier, - [56437] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4570), 1, - sym_identifier, - [56444] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4572), 1, + ACTIONS(2844), 1, anon_sym_in, - [56451] = 2, + [36534] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4574), 1, + ACTIONS(2846), 1, sym_identifier, - [56458] = 2, + [36541] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4576), 1, - sym_identifier, - [56465] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4578), 1, - sym_identifier, - [56472] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4580), 1, - sym_identifier, - [56479] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4582), 1, - sym_identifier, - [56486] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4584), 1, - sym_identifier, - [56493] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4586), 1, + ACTIONS(2848), 1, anon_sym_in, - [56500] = 2, + [36548] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4588), 1, + ACTIONS(2850), 1, sym_identifier, - [56507] = 2, + [36555] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4590), 1, - sym_identifier, - [56514] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4592), 1, - sym_identifier, - [56521] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4594), 1, + ACTIONS(2852), 1, anon_sym_in, - [56528] = 2, + [36562] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4596), 1, + ACTIONS(2854), 1, sym_identifier, - [56535] = 2, + [36569] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4598), 1, + ACTIONS(2856), 1, sym_identifier, - [56542] = 2, + [36576] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4600), 1, + ACTIONS(2858), 1, + anon_sym_in, + [36583] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2860), 1, + sym_identifier, + [36590] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2862), 1, + sym_identifier, + [36597] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2864), 1, + anon_sym_from, + [36604] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2866), 1, + sym_identifier, + [36611] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2868), 1, + sym_identifier, + [36618] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2870), 1, anon_sym_EQ_GT, - [56549] = 2, + [36625] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4602), 1, + ACTIONS(2872), 1, + anon_sym_in, + [36632] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2874), 1, + anon_sym_in, + [36639] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2876), 1, sym_identifier, - [56556] = 2, + [36646] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4604), 1, - sym_identifier, - [56563] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4606), 1, - sym_identifier, - [56570] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4608), 1, - anon_sym_EQ_GT, - [56577] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4610), 1, - sym_identifier, - [56584] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4612), 1, - sym_identifier, - [56591] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4614), 1, + ACTIONS(2878), 1, anon_sym_into, - [56598] = 2, + [36653] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4616), 1, - sym_identifier, - [56605] = 2, + ACTIONS(2880), 1, + anon_sym_in, + [36660] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4618), 1, - sym_identifier, - [56612] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4620), 1, - sym_identifier, - [56619] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4622), 1, + ACTIONS(2882), 1, anon_sym_from, - [56626] = 2, + [36667] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4624), 1, + ACTIONS(2884), 1, + anon_sym_in, + [36674] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2886), 1, sym_identifier, - [56633] = 2, + [36681] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4626), 1, + ACTIONS(2888), 1, + anon_sym_in, + [36688] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2890), 1, sym_identifier, - [56640] = 2, + [36695] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4628), 1, + ACTIONS(2892), 1, sym_identifier, - [56647] = 2, + [36702] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4630), 1, + ACTIONS(2894), 1, + anon_sym_from, + [36709] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2896), 1, sym_identifier, - [56654] = 2, + [36716] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4632), 1, + ACTIONS(2898), 1, sym_identifier, - [56661] = 2, + [36723] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4634), 1, - sym_identifier, - [56668] = 2, + ACTIONS(2900), 1, + anon_sym_in, + [36730] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4636), 1, + ACTIONS(2902), 1, + anon_sym_in, + [36737] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2904), 1, anon_sym_EQ_GT, - [56675] = 2, + [36744] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4638), 1, - sym_identifier, - [56682] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4640), 1, - sym_identifier, - [56689] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4642), 1, + ACTIONS(2906), 1, anon_sym_from, - [56696] = 2, + [36751] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4644), 1, - sym_identifier, - [56703] = 2, + ACTIONS(2908), 1, + anon_sym_in, + [36758] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4646), 1, - sym_identifier, - [56710] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4648), 1, - sym_identifier, - [56717] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4650), 1, + ACTIONS(2910), 1, anon_sym_from, - [56724] = 2, + [36765] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4652), 1, + ACTIONS(2912), 1, + anon_sym_in, + [36772] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2914), 1, sym_identifier, - [56731] = 2, + [36779] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4654), 1, + ACTIONS(2916), 1, + anon_sym_in, + [36786] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2918), 1, sym_identifier, - [56738] = 2, + [36793] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4656), 1, + ACTIONS(2920), 1, + sym_identifier, + [36800] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2922), 1, anon_sym_from, - [56745] = 2, + [36807] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4658), 1, + ACTIONS(2924), 1, sym_identifier, - [56752] = 2, + [36814] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4660), 1, + ACTIONS(2926), 1, sym_identifier, - [56759] = 2, + [36821] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4662), 1, - sym_identifier, - [56766] = 2, + ACTIONS(2928), 1, + anon_sym_in, + [36828] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4664), 1, - sym_identifier, - [56773] = 2, + ACTIONS(2930), 1, + anon_sym_in, + [36835] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4666), 1, - sym_identifier, - [56780] = 2, + ACTIONS(2932), 1, + anon_sym_in, + [36842] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4668), 1, - sym_identifier, - [56787] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4670), 1, + ACTIONS(2934), 1, anon_sym_EQ_GT, - [56794] = 2, + [36849] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4672), 1, - sym_identifier, - [56801] = 2, + ACTIONS(2936), 1, + anon_sym_in, + [36856] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4674), 1, - sym_identifier, - [56808] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4676), 1, - sym_identifier, - [56815] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4678), 1, - sym_identifier, - [56822] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4680), 1, - anon_sym_EQ_GT, - [56829] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4682), 1, - sym_identifier, - [56836] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4684), 1, - sym_identifier, - [56843] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4686), 1, + ACTIONS(2938), 1, anon_sym_from, - [56850] = 2, + [36863] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4688), 1, + ACTIONS(2940), 1, + anon_sym_in, + [36870] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2942), 1, + sym_identifier, + [36877] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2944), 1, + anon_sym_in, + [36884] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2946), 1, + sym_identifier, + [36891] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2948), 1, + sym_identifier, + [36898] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2950), 1, + sym_identifier, + [36905] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2952), 1, + sym_identifier, + [36912] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2954), 1, + sym_identifier, + [36919] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2956), 1, + sym_identifier, + [36926] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2958), 1, + anon_sym_in, + [36933] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2960), 1, anon_sym_into, - [56857] = 2, + [36940] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4690), 1, + ACTIONS(2962), 1, + anon_sym_in, + [36947] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2964), 1, + anon_sym_to, + [36954] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2966), 1, + sym_identifier, + [36961] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2968), 1, + sym_identifier, + [36968] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2970), 1, + sym_identifier, + [36975] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2972), 1, + sym_identifier, + [36982] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2974), 1, + sym_identifier, + [36989] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2976), 1, + sym_identifier, + [36996] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2978), 1, + anon_sym_in, + [37003] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2980), 1, anon_sym_from, - [56864] = 2, + [37010] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4692), 1, + ACTIONS(2982), 1, anon_sym_to, - [56871] = 2, + [37017] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4694), 1, + ACTIONS(2984), 1, sym_identifier, - [56878] = 2, + [37024] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4696), 1, + ACTIONS(2986), 1, sym_identifier, - [56885] = 2, + [37031] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4698), 1, + ACTIONS(2988), 1, sym_identifier, - [56892] = 2, + [37038] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4700), 1, - anon_sym_EQ_GT, - [56899] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4702), 1, - sym_identifier, - [56906] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4704), 1, - sym_identifier, - [56913] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4706), 1, - sym_identifier, - [56920] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4708), 1, - anon_sym_into, - [56927] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4710), 1, - anon_sym_to, - [56934] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4712), 1, - sym_identifier, - [56941] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4714), 1, - sym_identifier, - [56948] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4716), 1, - sym_identifier, - [56955] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4718), 1, - anon_sym_in, - [56962] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4720), 1, - sym_identifier, - [56969] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4722), 1, - sym_identifier, - [56976] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4724), 1, - anon_sym_EQ_GT, - [56983] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4726), 1, - anon_sym_to, - [56990] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4728), 1, - sym_identifier, - [56997] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4730), 1, - sym_identifier, - [57004] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4732), 1, - sym_identifier, - [57011] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4734), 1, - anon_sym_in, - [57018] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4736), 1, - sym_identifier, - [57025] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4738), 1, - sym_identifier, - [57032] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4740), 1, - anon_sym_in, - [57039] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4742), 1, - anon_sym_to, - [57046] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4744), 1, - sym_identifier, - [57053] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4746), 1, - sym_identifier, - [57060] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4748), 1, - sym_identifier, - [57067] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4750), 1, - anon_sym_EQ_GT, - [57074] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4752), 1, - sym_identifier, - [57081] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4754), 1, - sym_identifier, - [57088] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4756), 1, - anon_sym_in, - [57095] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4758), 1, - anon_sym_to, - [57102] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4760), 1, - sym_identifier, - [57109] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4762), 1, - sym_identifier, - [57116] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4764), 1, - sym_identifier, - [57123] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4766), 1, - anon_sym_in, - [57130] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4768), 1, - sym_identifier, - [57137] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4770), 1, - sym_identifier, - [57144] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4772), 1, + ACTIONS(2990), 1, anon_sym_from, - [57151] = 2, + [37045] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4774), 1, + ACTIONS(2992), 1, + sym_identifier, + [37052] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2994), 1, + sym_identifier, + [37059] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2996), 1, + sym_identifier, + [37066] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(2998), 1, anon_sym_to, - [57158] = 2, + [37073] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4776), 1, + ACTIONS(3000), 1, sym_identifier, - [57165] = 2, + [37080] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4778), 1, + ACTIONS(3002), 1, + sym_identifier, + [37087] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3004), 1, + sym_identifier, + [37094] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3006), 1, + anon_sym_from, + [37101] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3008), 1, + sym_identifier, + [37108] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3010), 1, + sym_identifier, + [37115] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3012), 1, + anon_sym_from, + [37122] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3014), 1, anon_sym_to, - [57172] = 2, + [37129] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4780), 1, + ACTIONS(3016), 1, + sym_identifier, + [37136] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3018), 1, + sym_identifier, + [37143] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3020), 1, + sym_identifier, + [37150] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3022), 1, + sym_identifier, + [37157] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3024), 1, + sym_identifier, + [37164] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3026), 1, + sym_identifier, + [37171] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3028), 1, + anon_sym_in, + [37178] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3030), 1, anon_sym_to, - [57179] = 2, + [37185] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4782), 1, + ACTIONS(3032), 1, + sym_identifier, + [37192] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3034), 1, + sym_identifier, + [37199] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3036), 1, + sym_identifier, + [37206] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3038), 1, + anon_sym_in, + [37213] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3040), 1, + sym_identifier, + [37220] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3042), 1, + sym_identifier, + [37227] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3044), 1, + anon_sym_in, + [37234] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3046), 1, anon_sym_to, - [57186] = 2, + [37241] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4784), 1, + ACTIONS(3048), 1, + sym_identifier, + [37248] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3050), 1, + sym_identifier, + [37255] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3052), 1, anon_sym_to, - [57193] = 2, + [37262] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4786), 1, + ACTIONS(3054), 1, + sym_identifier, + [37269] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3056), 1, anon_sym_to, - [57200] = 2, + [37276] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4788), 1, + ACTIONS(3058), 1, + sym_identifier, + [37283] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3060), 1, anon_sym_to, - [57207] = 2, + [37290] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4790), 1, + ACTIONS(3062), 1, + sym_identifier, + [37297] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3064), 1, anon_sym_to, - [57214] = 2, + [37304] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4792), 1, + ACTIONS(3066), 1, + sym_identifier, + [37311] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(3068), 1, anon_sym_to, - [57221] = 2, + [37318] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4794), 1, + ACTIONS(3070), 1, sym_identifier, - [57228] = 2, + [37325] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4796), 1, + ACTIONS(3072), 1, anon_sym_to, - [57235] = 2, + [37332] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4798), 1, + ACTIONS(3074), 1, sym_identifier, - [57242] = 2, + [37339] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4800), 1, - anon_sym_to, - [57249] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4802), 1, + ACTIONS(3076), 1, sym_identifier, - [57256] = 2, + [37346] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4804), 1, - anon_sym_to, - [57263] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4806), 1, + ACTIONS(3078), 1, sym_identifier, - [57270] = 2, + [37353] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4808), 1, - anon_sym_to, - [57277] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4810), 1, + ACTIONS(3080), 1, sym_identifier, - [57284] = 2, + [37360] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4812), 1, - anon_sym_to, - [57291] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4814), 1, + ACTIONS(3082), 1, sym_identifier, - [57298] = 2, + [37367] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(4816), 1, - anon_sym_to, - [57305] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4818), 1, - sym_identifier, - [57312] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4820), 1, - sym_identifier, - [57319] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4822), 1, - sym_identifier, - [57326] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4824), 1, - sym_identifier, - [57333] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4826), 1, - sym_identifier, - [57340] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4828), 1, - sym_identifier, - [57347] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4830), 1, - sym_identifier, - [57354] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4832), 1, - sym_identifier, - [57361] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4834), 1, - sym_identifier, - [57368] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4836), 1, - sym_identifier, - [57375] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4838), 1, - sym_identifier, - [57382] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4840), 1, - sym_identifier, - [57389] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4842), 1, - sym_identifier, - [57396] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(4844), 1, + ACTIONS(3084), 1, sym_identifier, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(969)] = 0, - [SMALL_STATE(970)] = 79, - [SMALL_STATE(971)] = 150, - [SMALL_STATE(972)] = 235, - [SMALL_STATE(973)] = 310, - [SMALL_STATE(974)] = 395, - [SMALL_STATE(975)] = 466, - [SMALL_STATE(976)] = 553, - [SMALL_STATE(977)] = 632, - [SMALL_STATE(978)] = 711, - [SMALL_STATE(979)] = 790, - [SMALL_STATE(980)] = 865, - [SMALL_STATE(981)] = 944, - [SMALL_STATE(982)] = 1015, - [SMALL_STATE(983)] = 1086, - [SMALL_STATE(984)] = 1165, - [SMALL_STATE(985)] = 1236, - [SMALL_STATE(986)] = 1315, - [SMALL_STATE(987)] = 1386, - [SMALL_STATE(988)] = 1457, - [SMALL_STATE(989)] = 1536, - [SMALL_STATE(990)] = 1607, - [SMALL_STATE(991)] = 1678, - [SMALL_STATE(992)] = 1749, - [SMALL_STATE(993)] = 1820, - [SMALL_STATE(994)] = 1891, - [SMALL_STATE(995)] = 1962, - [SMALL_STATE(996)] = 2032, - [SMALL_STATE(997)] = 2102, - [SMALL_STATE(998)] = 2172, - [SMALL_STATE(999)] = 2246, - [SMALL_STATE(1000)] = 2320, - [SMALL_STATE(1001)] = 2390, - [SMALL_STATE(1002)] = 2460, - [SMALL_STATE(1003)] = 2530, - [SMALL_STATE(1004)] = 2634, - [SMALL_STATE(1005)] = 2704, - [SMALL_STATE(1006)] = 2808, - [SMALL_STATE(1007)] = 2878, - [SMALL_STATE(1008)] = 2948, - [SMALL_STATE(1009)] = 3018, - [SMALL_STATE(1010)] = 3088, - [SMALL_STATE(1011)] = 3158, - [SMALL_STATE(1012)] = 3228, - [SMALL_STATE(1013)] = 3297, - [SMALL_STATE(1014)] = 3366, - [SMALL_STATE(1015)] = 3435, - [SMALL_STATE(1016)] = 3504, - [SMALL_STATE(1017)] = 3573, - [SMALL_STATE(1018)] = 3642, - [SMALL_STATE(1019)] = 3711, - [SMALL_STATE(1020)] = 3780, - [SMALL_STATE(1021)] = 3849, - [SMALL_STATE(1022)] = 3918, - [SMALL_STATE(1023)] = 3987, - [SMALL_STATE(1024)] = 4058, - [SMALL_STATE(1025)] = 4127, - [SMALL_STATE(1026)] = 4196, - [SMALL_STATE(1027)] = 4265, - [SMALL_STATE(1028)] = 4334, - [SMALL_STATE(1029)] = 4403, - [SMALL_STATE(1030)] = 4472, - [SMALL_STATE(1031)] = 4557, - [SMALL_STATE(1032)] = 4626, - [SMALL_STATE(1033)] = 4695, - [SMALL_STATE(1034)] = 4797, - [SMALL_STATE(1035)] = 4899, - [SMALL_STATE(1036)] = 5001, - [SMALL_STATE(1037)] = 5103, - [SMALL_STATE(1038)] = 5205, - [SMALL_STATE(1039)] = 5307, - [SMALL_STATE(1040)] = 5391, - [SMALL_STATE(1041)] = 5493, - [SMALL_STATE(1042)] = 5595, - [SMALL_STATE(1043)] = 5679, - [SMALL_STATE(1044)] = 5781, - [SMALL_STATE(1045)] = 5883, - [SMALL_STATE(1046)] = 5985, - [SMALL_STATE(1047)] = 6087, - [SMALL_STATE(1048)] = 6189, - [SMALL_STATE(1049)] = 6291, - [SMALL_STATE(1050)] = 6393, - [SMALL_STATE(1051)] = 6495, - [SMALL_STATE(1052)] = 6597, - [SMALL_STATE(1053)] = 6678, - [SMALL_STATE(1054)] = 6745, - [SMALL_STATE(1055)] = 6812, - [SMALL_STATE(1056)] = 6879, - [SMALL_STATE(1057)] = 6946, - [SMALL_STATE(1058)] = 7017, - [SMALL_STATE(1059)] = 7084, - [SMALL_STATE(1060)] = 7151, - [SMALL_STATE(1061)] = 7218, - [SMALL_STATE(1062)] = 7285, - [SMALL_STATE(1063)] = 7352, - [SMALL_STATE(1064)] = 7425, - [SMALL_STATE(1065)] = 7492, - [SMALL_STATE(1066)] = 7559, - [SMALL_STATE(1067)] = 7626, - [SMALL_STATE(1068)] = 7693, - [SMALL_STATE(1069)] = 7760, - [SMALL_STATE(1070)] = 7827, - [SMALL_STATE(1071)] = 7894, - [SMALL_STATE(1072)] = 7961, - [SMALL_STATE(1073)] = 8032, - [SMALL_STATE(1074)] = 8113, - [SMALL_STATE(1075)] = 8184, - [SMALL_STATE(1076)] = 8253, - [SMALL_STATE(1077)] = 8349, - [SMALL_STATE(1078)] = 8445, - [SMALL_STATE(1079)] = 8541, - [SMALL_STATE(1080)] = 8637, - [SMALL_STATE(1081)] = 8733, - [SMALL_STATE(1082)] = 8829, - [SMALL_STATE(1083)] = 8925, - [SMALL_STATE(1084)] = 9021, - [SMALL_STATE(1085)] = 9117, - [SMALL_STATE(1086)] = 9213, - [SMALL_STATE(1087)] = 9309, - [SMALL_STATE(1088)] = 9405, - [SMALL_STATE(1089)] = 9501, - [SMALL_STATE(1090)] = 9597, - [SMALL_STATE(1091)] = 9693, - [SMALL_STATE(1092)] = 9789, - [SMALL_STATE(1093)] = 9885, - [SMALL_STATE(1094)] = 9981, - [SMALL_STATE(1095)] = 10077, - [SMALL_STATE(1096)] = 10173, - [SMALL_STATE(1097)] = 10269, - [SMALL_STATE(1098)] = 10365, - [SMALL_STATE(1099)] = 10461, - [SMALL_STATE(1100)] = 10557, - [SMALL_STATE(1101)] = 10653, - [SMALL_STATE(1102)] = 10749, - [SMALL_STATE(1103)] = 10845, - [SMALL_STATE(1104)] = 10941, - [SMALL_STATE(1105)] = 11037, - [SMALL_STATE(1106)] = 11133, - [SMALL_STATE(1107)] = 11229, - [SMALL_STATE(1108)] = 11325, - [SMALL_STATE(1109)] = 11421, - [SMALL_STATE(1110)] = 11517, - [SMALL_STATE(1111)] = 11613, - [SMALL_STATE(1112)] = 11709, - [SMALL_STATE(1113)] = 11805, - [SMALL_STATE(1114)] = 11901, - [SMALL_STATE(1115)] = 11997, - [SMALL_STATE(1116)] = 12093, - [SMALL_STATE(1117)] = 12189, - [SMALL_STATE(1118)] = 12285, - [SMALL_STATE(1119)] = 12381, - [SMALL_STATE(1120)] = 12477, - [SMALL_STATE(1121)] = 12573, - [SMALL_STATE(1122)] = 12669, - [SMALL_STATE(1123)] = 12765, - [SMALL_STATE(1124)] = 12861, - [SMALL_STATE(1125)] = 12957, - [SMALL_STATE(1126)] = 13053, - [SMALL_STATE(1127)] = 13149, - [SMALL_STATE(1128)] = 13245, - [SMALL_STATE(1129)] = 13341, - [SMALL_STATE(1130)] = 13437, - [SMALL_STATE(1131)] = 13533, - [SMALL_STATE(1132)] = 13629, - [SMALL_STATE(1133)] = 13725, - [SMALL_STATE(1134)] = 13821, - [SMALL_STATE(1135)] = 13917, - [SMALL_STATE(1136)] = 14013, - [SMALL_STATE(1137)] = 14109, - [SMALL_STATE(1138)] = 14205, - [SMALL_STATE(1139)] = 14301, - [SMALL_STATE(1140)] = 14397, - [SMALL_STATE(1141)] = 14493, - [SMALL_STATE(1142)] = 14589, - [SMALL_STATE(1143)] = 14685, - [SMALL_STATE(1144)] = 14781, - [SMALL_STATE(1145)] = 14877, - [SMALL_STATE(1146)] = 14973, - [SMALL_STATE(1147)] = 15069, - [SMALL_STATE(1148)] = 15165, - [SMALL_STATE(1149)] = 15261, - [SMALL_STATE(1150)] = 15357, - [SMALL_STATE(1151)] = 15453, - [SMALL_STATE(1152)] = 15549, - [SMALL_STATE(1153)] = 15645, - [SMALL_STATE(1154)] = 15741, - [SMALL_STATE(1155)] = 15837, - [SMALL_STATE(1156)] = 15933, - [SMALL_STATE(1157)] = 16029, - [SMALL_STATE(1158)] = 16125, - [SMALL_STATE(1159)] = 16221, - [SMALL_STATE(1160)] = 16317, - [SMALL_STATE(1161)] = 16413, - [SMALL_STATE(1162)] = 16509, - [SMALL_STATE(1163)] = 16605, - [SMALL_STATE(1164)] = 16701, - [SMALL_STATE(1165)] = 16797, - [SMALL_STATE(1166)] = 16893, - [SMALL_STATE(1167)] = 16989, - [SMALL_STATE(1168)] = 17085, - [SMALL_STATE(1169)] = 17181, - [SMALL_STATE(1170)] = 17277, - [SMALL_STATE(1171)] = 17373, - [SMALL_STATE(1172)] = 17469, - [SMALL_STATE(1173)] = 17565, - [SMALL_STATE(1174)] = 17661, - [SMALL_STATE(1175)] = 17757, - [SMALL_STATE(1176)] = 17853, - [SMALL_STATE(1177)] = 17949, - [SMALL_STATE(1178)] = 18045, - [SMALL_STATE(1179)] = 18141, - [SMALL_STATE(1180)] = 18237, - [SMALL_STATE(1181)] = 18333, - [SMALL_STATE(1182)] = 18429, - [SMALL_STATE(1183)] = 18525, - [SMALL_STATE(1184)] = 18621, - [SMALL_STATE(1185)] = 18717, - [SMALL_STATE(1186)] = 18813, - [SMALL_STATE(1187)] = 18909, - [SMALL_STATE(1188)] = 19005, - [SMALL_STATE(1189)] = 19101, - [SMALL_STATE(1190)] = 19197, - [SMALL_STATE(1191)] = 19293, - [SMALL_STATE(1192)] = 19389, - [SMALL_STATE(1193)] = 19485, - [SMALL_STATE(1194)] = 19581, - [SMALL_STATE(1195)] = 19677, - [SMALL_STATE(1196)] = 19773, - [SMALL_STATE(1197)] = 19869, - [SMALL_STATE(1198)] = 19965, - [SMALL_STATE(1199)] = 20061, - [SMALL_STATE(1200)] = 20157, - [SMALL_STATE(1201)] = 20253, - [SMALL_STATE(1202)] = 20349, - [SMALL_STATE(1203)] = 20445, - [SMALL_STATE(1204)] = 20541, - [SMALL_STATE(1205)] = 20637, - [SMALL_STATE(1206)] = 20733, - [SMALL_STATE(1207)] = 20829, - [SMALL_STATE(1208)] = 20925, - [SMALL_STATE(1209)] = 21021, - [SMALL_STATE(1210)] = 21117, - [SMALL_STATE(1211)] = 21213, - [SMALL_STATE(1212)] = 21309, - [SMALL_STATE(1213)] = 21405, - [SMALL_STATE(1214)] = 21501, - [SMALL_STATE(1215)] = 21597, - [SMALL_STATE(1216)] = 21693, - [SMALL_STATE(1217)] = 21789, - [SMALL_STATE(1218)] = 21885, - [SMALL_STATE(1219)] = 21981, - [SMALL_STATE(1220)] = 22077, - [SMALL_STATE(1221)] = 22173, - [SMALL_STATE(1222)] = 22269, - [SMALL_STATE(1223)] = 22365, - [SMALL_STATE(1224)] = 22461, - [SMALL_STATE(1225)] = 22557, - [SMALL_STATE(1226)] = 22653, - [SMALL_STATE(1227)] = 22749, - [SMALL_STATE(1228)] = 22845, - [SMALL_STATE(1229)] = 22941, - [SMALL_STATE(1230)] = 23037, - [SMALL_STATE(1231)] = 23133, - [SMALL_STATE(1232)] = 23229, - [SMALL_STATE(1233)] = 23325, - [SMALL_STATE(1234)] = 23421, - [SMALL_STATE(1235)] = 23517, - [SMALL_STATE(1236)] = 23613, - [SMALL_STATE(1237)] = 23709, - [SMALL_STATE(1238)] = 23805, - [SMALL_STATE(1239)] = 23901, - [SMALL_STATE(1240)] = 23997, - [SMALL_STATE(1241)] = 24093, - [SMALL_STATE(1242)] = 24189, - [SMALL_STATE(1243)] = 24285, - [SMALL_STATE(1244)] = 24381, - [SMALL_STATE(1245)] = 24477, - [SMALL_STATE(1246)] = 24573, - [SMALL_STATE(1247)] = 24669, - [SMALL_STATE(1248)] = 24765, - [SMALL_STATE(1249)] = 24861, - [SMALL_STATE(1250)] = 24957, - [SMALL_STATE(1251)] = 25053, - [SMALL_STATE(1252)] = 25149, - [SMALL_STATE(1253)] = 25245, - [SMALL_STATE(1254)] = 25341, - [SMALL_STATE(1255)] = 25437, - [SMALL_STATE(1256)] = 25533, - [SMALL_STATE(1257)] = 25629, - [SMALL_STATE(1258)] = 25725, - [SMALL_STATE(1259)] = 25821, - [SMALL_STATE(1260)] = 25917, - [SMALL_STATE(1261)] = 26013, - [SMALL_STATE(1262)] = 26109, - [SMALL_STATE(1263)] = 26205, - [SMALL_STATE(1264)] = 26301, - [SMALL_STATE(1265)] = 26397, - [SMALL_STATE(1266)] = 26493, - [SMALL_STATE(1267)] = 26589, - [SMALL_STATE(1268)] = 26685, - [SMALL_STATE(1269)] = 26781, - [SMALL_STATE(1270)] = 26877, - [SMALL_STATE(1271)] = 26973, - [SMALL_STATE(1272)] = 27069, - [SMALL_STATE(1273)] = 27165, - [SMALL_STATE(1274)] = 27261, - [SMALL_STATE(1275)] = 27357, - [SMALL_STATE(1276)] = 27453, - [SMALL_STATE(1277)] = 27549, - [SMALL_STATE(1278)] = 27645, - [SMALL_STATE(1279)] = 27741, - [SMALL_STATE(1280)] = 27837, - [SMALL_STATE(1281)] = 27933, - [SMALL_STATE(1282)] = 28029, - [SMALL_STATE(1283)] = 28125, - [SMALL_STATE(1284)] = 28221, - [SMALL_STATE(1285)] = 28317, - [SMALL_STATE(1286)] = 28413, - [SMALL_STATE(1287)] = 28509, - [SMALL_STATE(1288)] = 28605, - [SMALL_STATE(1289)] = 28701, - [SMALL_STATE(1290)] = 28797, - [SMALL_STATE(1291)] = 28893, - [SMALL_STATE(1292)] = 28989, - [SMALL_STATE(1293)] = 29085, - [SMALL_STATE(1294)] = 29181, - [SMALL_STATE(1295)] = 29277, - [SMALL_STATE(1296)] = 29373, - [SMALL_STATE(1297)] = 29469, - [SMALL_STATE(1298)] = 29565, - [SMALL_STATE(1299)] = 29661, - [SMALL_STATE(1300)] = 29757, - [SMALL_STATE(1301)] = 29853, - [SMALL_STATE(1302)] = 29949, - [SMALL_STATE(1303)] = 30045, - [SMALL_STATE(1304)] = 30141, - [SMALL_STATE(1305)] = 30237, - [SMALL_STATE(1306)] = 30333, - [SMALL_STATE(1307)] = 30429, - [SMALL_STATE(1308)] = 30525, - [SMALL_STATE(1309)] = 30621, - [SMALL_STATE(1310)] = 30717, - [SMALL_STATE(1311)] = 30813, - [SMALL_STATE(1312)] = 30909, - [SMALL_STATE(1313)] = 31005, - [SMALL_STATE(1314)] = 31101, - [SMALL_STATE(1315)] = 31197, - [SMALL_STATE(1316)] = 31293, - [SMALL_STATE(1317)] = 31389, - [SMALL_STATE(1318)] = 31485, - [SMALL_STATE(1319)] = 31581, - [SMALL_STATE(1320)] = 31677, - [SMALL_STATE(1321)] = 31773, - [SMALL_STATE(1322)] = 31869, - [SMALL_STATE(1323)] = 31965, - [SMALL_STATE(1324)] = 32061, - [SMALL_STATE(1325)] = 32157, - [SMALL_STATE(1326)] = 32253, - [SMALL_STATE(1327)] = 32349, - [SMALL_STATE(1328)] = 32445, - [SMALL_STATE(1329)] = 32541, - [SMALL_STATE(1330)] = 32611, - [SMALL_STATE(1331)] = 32707, - [SMALL_STATE(1332)] = 32803, - [SMALL_STATE(1333)] = 32899, - [SMALL_STATE(1334)] = 32995, - [SMALL_STATE(1335)] = 33091, - [SMALL_STATE(1336)] = 33187, - [SMALL_STATE(1337)] = 33283, - [SMALL_STATE(1338)] = 33379, - [SMALL_STATE(1339)] = 33475, - [SMALL_STATE(1340)] = 33571, - [SMALL_STATE(1341)] = 33667, - [SMALL_STATE(1342)] = 33763, - [SMALL_STATE(1343)] = 33859, - [SMALL_STATE(1344)] = 33939, - [SMALL_STATE(1345)] = 34009, - [SMALL_STATE(1346)] = 34089, - [SMALL_STATE(1347)] = 34185, - [SMALL_STATE(1348)] = 34281, - [SMALL_STATE(1349)] = 34377, - [SMALL_STATE(1350)] = 34473, - [SMALL_STATE(1351)] = 34569, - [SMALL_STATE(1352)] = 34665, - [SMALL_STATE(1353)] = 34761, - [SMALL_STATE(1354)] = 34857, - [SMALL_STATE(1355)] = 34953, - [SMALL_STATE(1356)] = 35049, - [SMALL_STATE(1357)] = 35145, - [SMALL_STATE(1358)] = 35241, - [SMALL_STATE(1359)] = 35337, - [SMALL_STATE(1360)] = 35433, - [SMALL_STATE(1361)] = 35529, - [SMALL_STATE(1362)] = 35625, - [SMALL_STATE(1363)] = 35721, - [SMALL_STATE(1364)] = 35817, - [SMALL_STATE(1365)] = 35913, - [SMALL_STATE(1366)] = 36009, - [SMALL_STATE(1367)] = 36105, - [SMALL_STATE(1368)] = 36201, - [SMALL_STATE(1369)] = 36297, - [SMALL_STATE(1370)] = 36393, - [SMALL_STATE(1371)] = 36489, - [SMALL_STATE(1372)] = 36585, - [SMALL_STATE(1373)] = 36681, - [SMALL_STATE(1374)] = 36777, - [SMALL_STATE(1375)] = 36873, - [SMALL_STATE(1376)] = 36969, - [SMALL_STATE(1377)] = 37065, - [SMALL_STATE(1378)] = 37161, - [SMALL_STATE(1379)] = 37257, - [SMALL_STATE(1380)] = 37353, - [SMALL_STATE(1381)] = 37449, - [SMALL_STATE(1382)] = 37545, - [SMALL_STATE(1383)] = 37641, - [SMALL_STATE(1384)] = 37737, - [SMALL_STATE(1385)] = 37833, - [SMALL_STATE(1386)] = 37929, - [SMALL_STATE(1387)] = 38025, - [SMALL_STATE(1388)] = 38121, - [SMALL_STATE(1389)] = 38217, - [SMALL_STATE(1390)] = 38313, - [SMALL_STATE(1391)] = 38409, - [SMALL_STATE(1392)] = 38505, - [SMALL_STATE(1393)] = 38601, - [SMALL_STATE(1394)] = 38697, - [SMALL_STATE(1395)] = 38793, - [SMALL_STATE(1396)] = 38889, - [SMALL_STATE(1397)] = 38985, - [SMALL_STATE(1398)] = 39081, - [SMALL_STATE(1399)] = 39177, - [SMALL_STATE(1400)] = 39273, - [SMALL_STATE(1401)] = 39369, - [SMALL_STATE(1402)] = 39465, - [SMALL_STATE(1403)] = 39561, - [SMALL_STATE(1404)] = 39657, - [SMALL_STATE(1405)] = 39753, - [SMALL_STATE(1406)] = 39849, - [SMALL_STATE(1407)] = 39945, - [SMALL_STATE(1408)] = 40041, - [SMALL_STATE(1409)] = 40137, - [SMALL_STATE(1410)] = 40233, - [SMALL_STATE(1411)] = 40329, - [SMALL_STATE(1412)] = 40425, - [SMALL_STATE(1413)] = 40521, - [SMALL_STATE(1414)] = 40617, - [SMALL_STATE(1415)] = 40713, - [SMALL_STATE(1416)] = 40809, - [SMALL_STATE(1417)] = 40905, - [SMALL_STATE(1418)] = 41001, - [SMALL_STATE(1419)] = 41097, - [SMALL_STATE(1420)] = 41193, - [SMALL_STATE(1421)] = 41289, - [SMALL_STATE(1422)] = 41385, - [SMALL_STATE(1423)] = 41481, - [SMALL_STATE(1424)] = 41577, - [SMALL_STATE(1425)] = 41673, - [SMALL_STATE(1426)] = 41769, - [SMALL_STATE(1427)] = 41865, - [SMALL_STATE(1428)] = 41961, - [SMALL_STATE(1429)] = 42057, - [SMALL_STATE(1430)] = 42153, - [SMALL_STATE(1431)] = 42249, - [SMALL_STATE(1432)] = 42345, - [SMALL_STATE(1433)] = 42441, - [SMALL_STATE(1434)] = 42537, - [SMALL_STATE(1435)] = 42633, - [SMALL_STATE(1436)] = 42729, - [SMALL_STATE(1437)] = 42825, - [SMALL_STATE(1438)] = 42921, - [SMALL_STATE(1439)] = 43017, - [SMALL_STATE(1440)] = 43113, - [SMALL_STATE(1441)] = 43209, - [SMALL_STATE(1442)] = 43305, - [SMALL_STATE(1443)] = 43401, - [SMALL_STATE(1444)] = 43497, - [SMALL_STATE(1445)] = 43593, - [SMALL_STATE(1446)] = 43689, - [SMALL_STATE(1447)] = 43785, - [SMALL_STATE(1448)] = 43881, - [SMALL_STATE(1449)] = 43977, - [SMALL_STATE(1450)] = 44073, - [SMALL_STATE(1451)] = 44169, - [SMALL_STATE(1452)] = 44265, - [SMALL_STATE(1453)] = 44361, - [SMALL_STATE(1454)] = 44457, - [SMALL_STATE(1455)] = 44553, - [SMALL_STATE(1456)] = 44649, - [SMALL_STATE(1457)] = 44745, - [SMALL_STATE(1458)] = 44841, - [SMALL_STATE(1459)] = 44937, - [SMALL_STATE(1460)] = 45033, - [SMALL_STATE(1461)] = 45129, - [SMALL_STATE(1462)] = 45225, - [SMALL_STATE(1463)] = 45321, - [SMALL_STATE(1464)] = 45417, - [SMALL_STATE(1465)] = 45513, - [SMALL_STATE(1466)] = 45609, - [SMALL_STATE(1467)] = 45705, - [SMALL_STATE(1468)] = 45801, - [SMALL_STATE(1469)] = 45897, - [SMALL_STATE(1470)] = 45993, - [SMALL_STATE(1471)] = 46089, - [SMALL_STATE(1472)] = 46185, - [SMALL_STATE(1473)] = 46281, - [SMALL_STATE(1474)] = 46377, - [SMALL_STATE(1475)] = 46473, - [SMALL_STATE(1476)] = 46569, - [SMALL_STATE(1477)] = 46665, - [SMALL_STATE(1478)] = 46761, - [SMALL_STATE(1479)] = 46857, - [SMALL_STATE(1480)] = 46953, - [SMALL_STATE(1481)] = 47049, - [SMALL_STATE(1482)] = 47145, - [SMALL_STATE(1483)] = 47241, - [SMALL_STATE(1484)] = 47337, - [SMALL_STATE(1485)] = 47433, - [SMALL_STATE(1486)] = 47529, - [SMALL_STATE(1487)] = 47625, - [SMALL_STATE(1488)] = 47721, - [SMALL_STATE(1489)] = 47817, - [SMALL_STATE(1490)] = 47913, - [SMALL_STATE(1491)] = 48009, - [SMALL_STATE(1492)] = 48105, - [SMALL_STATE(1493)] = 48201, - [SMALL_STATE(1494)] = 48297, - [SMALL_STATE(1495)] = 48393, - [SMALL_STATE(1496)] = 48489, - [SMALL_STATE(1497)] = 48585, - [SMALL_STATE(1498)] = 48681, - [SMALL_STATE(1499)] = 48777, - [SMALL_STATE(1500)] = 48873, - [SMALL_STATE(1501)] = 48969, - [SMALL_STATE(1502)] = 49065, - [SMALL_STATE(1503)] = 49128, - [SMALL_STATE(1504)] = 49181, - [SMALL_STATE(1505)] = 49234, - [SMALL_STATE(1506)] = 49285, - [SMALL_STATE(1507)] = 49335, - [SMALL_STATE(1508)] = 49385, - [SMALL_STATE(1509)] = 49435, - [SMALL_STATE(1510)] = 49485, - [SMALL_STATE(1511)] = 49521, - [SMALL_STATE(1512)] = 49557, - [SMALL_STATE(1513)] = 49593, - [SMALL_STATE(1514)] = 49639, - [SMALL_STATE(1515)] = 49685, - [SMALL_STATE(1516)] = 49723, - [SMALL_STATE(1517)] = 49758, - [SMALL_STATE(1518)] = 49803, - [SMALL_STATE(1519)] = 49848, - [SMALL_STATE(1520)] = 49883, - [SMALL_STATE(1521)] = 49913, - [SMALL_STATE(1522)] = 49943, - [SMALL_STATE(1523)] = 49973, - [SMALL_STATE(1524)] = 50003, - [SMALL_STATE(1525)] = 50033, - [SMALL_STATE(1526)] = 50063, - [SMALL_STATE(1527)] = 50093, - [SMALL_STATE(1528)] = 50123, - [SMALL_STATE(1529)] = 50153, - [SMALL_STATE(1530)] = 50189, - [SMALL_STATE(1531)] = 50219, - [SMALL_STATE(1532)] = 50249, - [SMALL_STATE(1533)] = 50279, - [SMALL_STATE(1534)] = 50308, - [SMALL_STATE(1535)] = 50347, - [SMALL_STATE(1536)] = 50376, - [SMALL_STATE(1537)] = 50409, - [SMALL_STATE(1538)] = 50442, - [SMALL_STATE(1539)] = 50475, - [SMALL_STATE(1540)] = 50504, - [SMALL_STATE(1541)] = 50533, - [SMALL_STATE(1542)] = 50562, - [SMALL_STATE(1543)] = 50597, - [SMALL_STATE(1544)] = 50626, - [SMALL_STATE(1545)] = 50655, - [SMALL_STATE(1546)] = 50684, - [SMALL_STATE(1547)] = 50723, - [SMALL_STATE(1548)] = 50752, - [SMALL_STATE(1549)] = 50781, - [SMALL_STATE(1550)] = 50810, - [SMALL_STATE(1551)] = 50839, - [SMALL_STATE(1552)] = 50871, - [SMALL_STATE(1553)] = 50909, - [SMALL_STATE(1554)] = 50947, - [SMALL_STATE(1555)] = 50987, - [SMALL_STATE(1556)] = 51019, - [SMALL_STATE(1557)] = 51057, - [SMALL_STATE(1558)] = 51093, - [SMALL_STATE(1559)] = 51129, - [SMALL_STATE(1560)] = 51159, - [SMALL_STATE(1561)] = 51189, - [SMALL_STATE(1562)] = 51221, - [SMALL_STATE(1563)] = 51257, - [SMALL_STATE(1564)] = 51287, - [SMALL_STATE(1565)] = 51323, - [SMALL_STATE(1566)] = 51353, - [SMALL_STATE(1567)] = 51389, - [SMALL_STATE(1568)] = 51425, - [SMALL_STATE(1569)] = 51455, - [SMALL_STATE(1570)] = 51485, - [SMALL_STATE(1571)] = 51517, - [SMALL_STATE(1572)] = 51547, - [SMALL_STATE(1573)] = 51577, - [SMALL_STATE(1574)] = 51609, - [SMALL_STATE(1575)] = 51639, - [SMALL_STATE(1576)] = 51674, - [SMALL_STATE(1577)] = 51703, - [SMALL_STATE(1578)] = 51738, - [SMALL_STATE(1579)] = 51773, - [SMALL_STATE(1580)] = 51808, - [SMALL_STATE(1581)] = 51843, - [SMALL_STATE(1582)] = 51878, - [SMALL_STATE(1583)] = 51913, - [SMALL_STATE(1584)] = 51948, - [SMALL_STATE(1585)] = 51983, - [SMALL_STATE(1586)] = 52018, - [SMALL_STATE(1587)] = 52053, - [SMALL_STATE(1588)] = 52088, - [SMALL_STATE(1589)] = 52123, - [SMALL_STATE(1590)] = 52158, - [SMALL_STATE(1591)] = 52193, - [SMALL_STATE(1592)] = 52228, - [SMALL_STATE(1593)] = 52263, - [SMALL_STATE(1594)] = 52298, - [SMALL_STATE(1595)] = 52333, - [SMALL_STATE(1596)] = 52368, - [SMALL_STATE(1597)] = 52403, - [SMALL_STATE(1598)] = 52438, - [SMALL_STATE(1599)] = 52467, - [SMALL_STATE(1600)] = 52502, - [SMALL_STATE(1601)] = 52537, - [SMALL_STATE(1602)] = 52572, - [SMALL_STATE(1603)] = 52601, - [SMALL_STATE(1604)] = 52636, - [SMALL_STATE(1605)] = 52671, - [SMALL_STATE(1606)] = 52706, - [SMALL_STATE(1607)] = 52741, - [SMALL_STATE(1608)] = 52776, - [SMALL_STATE(1609)] = 52811, - [SMALL_STATE(1610)] = 52846, - [SMALL_STATE(1611)] = 52881, - [SMALL_STATE(1612)] = 52916, - [SMALL_STATE(1613)] = 52945, - [SMALL_STATE(1614)] = 52980, - [SMALL_STATE(1615)] = 53015, - [SMALL_STATE(1616)] = 53044, - [SMALL_STATE(1617)] = 53079, - [SMALL_STATE(1618)] = 53114, - [SMALL_STATE(1619)] = 53149, - [SMALL_STATE(1620)] = 53184, - [SMALL_STATE(1621)] = 53219, - [SMALL_STATE(1622)] = 53248, - [SMALL_STATE(1623)] = 53283, - [SMALL_STATE(1624)] = 53318, - [SMALL_STATE(1625)] = 53353, - [SMALL_STATE(1626)] = 53388, - [SMALL_STATE(1627)] = 53423, - [SMALL_STATE(1628)] = 53458, - [SMALL_STATE(1629)] = 53493, - [SMALL_STATE(1630)] = 53525, - [SMALL_STATE(1631)] = 53550, - [SMALL_STATE(1632)] = 53575, - [SMALL_STATE(1633)] = 53600, - [SMALL_STATE(1634)] = 53625, - [SMALL_STATE(1635)] = 53650, - [SMALL_STATE(1636)] = 53675, - [SMALL_STATE(1637)] = 53700, - [SMALL_STATE(1638)] = 53725, - [SMALL_STATE(1639)] = 53750, - [SMALL_STATE(1640)] = 53775, - [SMALL_STATE(1641)] = 53795, - [SMALL_STATE(1642)] = 53809, - [SMALL_STATE(1643)] = 53823, - [SMALL_STATE(1644)] = 53837, - [SMALL_STATE(1645)] = 53847, - [SMALL_STATE(1646)] = 53857, - [SMALL_STATE(1647)] = 53867, - [SMALL_STATE(1648)] = 53877, - [SMALL_STATE(1649)] = 53887, - [SMALL_STATE(1650)] = 53897, - [SMALL_STATE(1651)] = 53909, - [SMALL_STATE(1652)] = 53919, - [SMALL_STATE(1653)] = 53929, - [SMALL_STATE(1654)] = 53939, - [SMALL_STATE(1655)] = 53949, - [SMALL_STATE(1656)] = 53959, - [SMALL_STATE(1657)] = 53969, - [SMALL_STATE(1658)] = 53979, - [SMALL_STATE(1659)] = 53989, - [SMALL_STATE(1660)] = 53999, - [SMALL_STATE(1661)] = 54012, - [SMALL_STATE(1662)] = 54025, - [SMALL_STATE(1663)] = 54038, - [SMALL_STATE(1664)] = 54051, - [SMALL_STATE(1665)] = 54064, - [SMALL_STATE(1666)] = 54075, - [SMALL_STATE(1667)] = 54088, - [SMALL_STATE(1668)] = 54101, - [SMALL_STATE(1669)] = 54114, - [SMALL_STATE(1670)] = 54127, - [SMALL_STATE(1671)] = 54140, - [SMALL_STATE(1672)] = 54153, - [SMALL_STATE(1673)] = 54166, - [SMALL_STATE(1674)] = 54177, - [SMALL_STATE(1675)] = 54190, - [SMALL_STATE(1676)] = 54203, - [SMALL_STATE(1677)] = 54216, - [SMALL_STATE(1678)] = 54229, - [SMALL_STATE(1679)] = 54242, - [SMALL_STATE(1680)] = 54255, - [SMALL_STATE(1681)] = 54268, - [SMALL_STATE(1682)] = 54281, - [SMALL_STATE(1683)] = 54294, - [SMALL_STATE(1684)] = 54307, - [SMALL_STATE(1685)] = 54317, - [SMALL_STATE(1686)] = 54327, - [SMALL_STATE(1687)] = 54337, - [SMALL_STATE(1688)] = 54347, - [SMALL_STATE(1689)] = 54357, - [SMALL_STATE(1690)] = 54367, - [SMALL_STATE(1691)] = 54377, - [SMALL_STATE(1692)] = 54387, - [SMALL_STATE(1693)] = 54397, - [SMALL_STATE(1694)] = 54407, - [SMALL_STATE(1695)] = 54417, - [SMALL_STATE(1696)] = 54427, - [SMALL_STATE(1697)] = 54437, - [SMALL_STATE(1698)] = 54447, - [SMALL_STATE(1699)] = 54457, - [SMALL_STATE(1700)] = 54467, - [SMALL_STATE(1701)] = 54477, - [SMALL_STATE(1702)] = 54485, - [SMALL_STATE(1703)] = 54495, - [SMALL_STATE(1704)] = 54505, - [SMALL_STATE(1705)] = 54513, - [SMALL_STATE(1706)] = 54523, - [SMALL_STATE(1707)] = 54533, - [SMALL_STATE(1708)] = 54543, - [SMALL_STATE(1709)] = 54553, - [SMALL_STATE(1710)] = 54563, - [SMALL_STATE(1711)] = 54573, - [SMALL_STATE(1712)] = 54583, - [SMALL_STATE(1713)] = 54593, - [SMALL_STATE(1714)] = 54603, - [SMALL_STATE(1715)] = 54613, - [SMALL_STATE(1716)] = 54623, - [SMALL_STATE(1717)] = 54633, - [SMALL_STATE(1718)] = 54643, - [SMALL_STATE(1719)] = 54653, - [SMALL_STATE(1720)] = 54663, - [SMALL_STATE(1721)] = 54673, - [SMALL_STATE(1722)] = 54683, - [SMALL_STATE(1723)] = 54693, - [SMALL_STATE(1724)] = 54703, - [SMALL_STATE(1725)] = 54713, - [SMALL_STATE(1726)] = 54723, - [SMALL_STATE(1727)] = 54733, - [SMALL_STATE(1728)] = 54743, - [SMALL_STATE(1729)] = 54753, - [SMALL_STATE(1730)] = 54763, - [SMALL_STATE(1731)] = 54773, - [SMALL_STATE(1732)] = 54781, - [SMALL_STATE(1733)] = 54791, - [SMALL_STATE(1734)] = 54801, - [SMALL_STATE(1735)] = 54811, - [SMALL_STATE(1736)] = 54821, - [SMALL_STATE(1737)] = 54831, - [SMALL_STATE(1738)] = 54839, - [SMALL_STATE(1739)] = 54849, - [SMALL_STATE(1740)] = 54859, - [SMALL_STATE(1741)] = 54869, - [SMALL_STATE(1742)] = 54876, - [SMALL_STATE(1743)] = 54883, - [SMALL_STATE(1744)] = 54890, - [SMALL_STATE(1745)] = 54897, - [SMALL_STATE(1746)] = 54904, - [SMALL_STATE(1747)] = 54911, - [SMALL_STATE(1748)] = 54918, - [SMALL_STATE(1749)] = 54925, - [SMALL_STATE(1750)] = 54932, - [SMALL_STATE(1751)] = 54939, - [SMALL_STATE(1752)] = 54946, - [SMALL_STATE(1753)] = 54953, - [SMALL_STATE(1754)] = 54960, - [SMALL_STATE(1755)] = 54967, - [SMALL_STATE(1756)] = 54974, - [SMALL_STATE(1757)] = 54981, - [SMALL_STATE(1758)] = 54988, - [SMALL_STATE(1759)] = 54995, - [SMALL_STATE(1760)] = 55002, - [SMALL_STATE(1761)] = 55009, - [SMALL_STATE(1762)] = 55016, - [SMALL_STATE(1763)] = 55023, - [SMALL_STATE(1764)] = 55030, - [SMALL_STATE(1765)] = 55037, - [SMALL_STATE(1766)] = 55044, - [SMALL_STATE(1767)] = 55051, - [SMALL_STATE(1768)] = 55058, - [SMALL_STATE(1769)] = 55065, - [SMALL_STATE(1770)] = 55072, - [SMALL_STATE(1771)] = 55079, - [SMALL_STATE(1772)] = 55086, - [SMALL_STATE(1773)] = 55093, - [SMALL_STATE(1774)] = 55100, - [SMALL_STATE(1775)] = 55107, - [SMALL_STATE(1776)] = 55114, - [SMALL_STATE(1777)] = 55121, - [SMALL_STATE(1778)] = 55128, - [SMALL_STATE(1779)] = 55135, - [SMALL_STATE(1780)] = 55142, - [SMALL_STATE(1781)] = 55149, - [SMALL_STATE(1782)] = 55156, - [SMALL_STATE(1783)] = 55163, - [SMALL_STATE(1784)] = 55170, - [SMALL_STATE(1785)] = 55177, - [SMALL_STATE(1786)] = 55184, - [SMALL_STATE(1787)] = 55191, - [SMALL_STATE(1788)] = 55198, - [SMALL_STATE(1789)] = 55205, - [SMALL_STATE(1790)] = 55212, - [SMALL_STATE(1791)] = 55219, - [SMALL_STATE(1792)] = 55226, - [SMALL_STATE(1793)] = 55233, - [SMALL_STATE(1794)] = 55240, - [SMALL_STATE(1795)] = 55247, - [SMALL_STATE(1796)] = 55254, - [SMALL_STATE(1797)] = 55261, - [SMALL_STATE(1798)] = 55268, - [SMALL_STATE(1799)] = 55275, - [SMALL_STATE(1800)] = 55282, - [SMALL_STATE(1801)] = 55289, - [SMALL_STATE(1802)] = 55296, - [SMALL_STATE(1803)] = 55303, - [SMALL_STATE(1804)] = 55310, - [SMALL_STATE(1805)] = 55317, - [SMALL_STATE(1806)] = 55324, - [SMALL_STATE(1807)] = 55331, - [SMALL_STATE(1808)] = 55338, - [SMALL_STATE(1809)] = 55345, - [SMALL_STATE(1810)] = 55352, - [SMALL_STATE(1811)] = 55359, - [SMALL_STATE(1812)] = 55366, - [SMALL_STATE(1813)] = 55373, - [SMALL_STATE(1814)] = 55380, - [SMALL_STATE(1815)] = 55387, - [SMALL_STATE(1816)] = 55394, - [SMALL_STATE(1817)] = 55401, - [SMALL_STATE(1818)] = 55408, - [SMALL_STATE(1819)] = 55415, - [SMALL_STATE(1820)] = 55422, - [SMALL_STATE(1821)] = 55429, - [SMALL_STATE(1822)] = 55436, - [SMALL_STATE(1823)] = 55443, - [SMALL_STATE(1824)] = 55450, - [SMALL_STATE(1825)] = 55457, - [SMALL_STATE(1826)] = 55464, - [SMALL_STATE(1827)] = 55471, - [SMALL_STATE(1828)] = 55478, - [SMALL_STATE(1829)] = 55485, - [SMALL_STATE(1830)] = 55492, - [SMALL_STATE(1831)] = 55499, - [SMALL_STATE(1832)] = 55506, - [SMALL_STATE(1833)] = 55513, - [SMALL_STATE(1834)] = 55520, - [SMALL_STATE(1835)] = 55527, - [SMALL_STATE(1836)] = 55534, - [SMALL_STATE(1837)] = 55541, - [SMALL_STATE(1838)] = 55548, - [SMALL_STATE(1839)] = 55555, - [SMALL_STATE(1840)] = 55562, - [SMALL_STATE(1841)] = 55569, - [SMALL_STATE(1842)] = 55576, - [SMALL_STATE(1843)] = 55583, - [SMALL_STATE(1844)] = 55590, - [SMALL_STATE(1845)] = 55597, - [SMALL_STATE(1846)] = 55604, - [SMALL_STATE(1847)] = 55611, - [SMALL_STATE(1848)] = 55618, - [SMALL_STATE(1849)] = 55625, - [SMALL_STATE(1850)] = 55632, - [SMALL_STATE(1851)] = 55639, - [SMALL_STATE(1852)] = 55646, - [SMALL_STATE(1853)] = 55653, - [SMALL_STATE(1854)] = 55660, - [SMALL_STATE(1855)] = 55667, - [SMALL_STATE(1856)] = 55674, - [SMALL_STATE(1857)] = 55681, - [SMALL_STATE(1858)] = 55688, - [SMALL_STATE(1859)] = 55695, - [SMALL_STATE(1860)] = 55702, - [SMALL_STATE(1861)] = 55709, - [SMALL_STATE(1862)] = 55716, - [SMALL_STATE(1863)] = 55723, - [SMALL_STATE(1864)] = 55730, - [SMALL_STATE(1865)] = 55737, - [SMALL_STATE(1866)] = 55744, - [SMALL_STATE(1867)] = 55751, - [SMALL_STATE(1868)] = 55758, - [SMALL_STATE(1869)] = 55765, - [SMALL_STATE(1870)] = 55772, - [SMALL_STATE(1871)] = 55779, - [SMALL_STATE(1872)] = 55786, - [SMALL_STATE(1873)] = 55793, - [SMALL_STATE(1874)] = 55800, - [SMALL_STATE(1875)] = 55807, - [SMALL_STATE(1876)] = 55814, - [SMALL_STATE(1877)] = 55821, - [SMALL_STATE(1878)] = 55828, - [SMALL_STATE(1879)] = 55835, - [SMALL_STATE(1880)] = 55842, - [SMALL_STATE(1881)] = 55849, - [SMALL_STATE(1882)] = 55856, - [SMALL_STATE(1883)] = 55863, - [SMALL_STATE(1884)] = 55870, - [SMALL_STATE(1885)] = 55877, - [SMALL_STATE(1886)] = 55884, - [SMALL_STATE(1887)] = 55891, - [SMALL_STATE(1888)] = 55898, - [SMALL_STATE(1889)] = 55905, - [SMALL_STATE(1890)] = 55912, - [SMALL_STATE(1891)] = 55919, - [SMALL_STATE(1892)] = 55926, - [SMALL_STATE(1893)] = 55933, - [SMALL_STATE(1894)] = 55940, - [SMALL_STATE(1895)] = 55947, - [SMALL_STATE(1896)] = 55954, - [SMALL_STATE(1897)] = 55961, - [SMALL_STATE(1898)] = 55968, - [SMALL_STATE(1899)] = 55975, - [SMALL_STATE(1900)] = 55982, - [SMALL_STATE(1901)] = 55989, - [SMALL_STATE(1902)] = 55996, - [SMALL_STATE(1903)] = 56003, - [SMALL_STATE(1904)] = 56010, - [SMALL_STATE(1905)] = 56017, - [SMALL_STATE(1906)] = 56024, - [SMALL_STATE(1907)] = 56031, - [SMALL_STATE(1908)] = 56038, - [SMALL_STATE(1909)] = 56045, - [SMALL_STATE(1910)] = 56052, - [SMALL_STATE(1911)] = 56059, - [SMALL_STATE(1912)] = 56066, - [SMALL_STATE(1913)] = 56073, - [SMALL_STATE(1914)] = 56080, - [SMALL_STATE(1915)] = 56087, - [SMALL_STATE(1916)] = 56094, - [SMALL_STATE(1917)] = 56101, - [SMALL_STATE(1918)] = 56108, - [SMALL_STATE(1919)] = 56115, - [SMALL_STATE(1920)] = 56122, - [SMALL_STATE(1921)] = 56129, - [SMALL_STATE(1922)] = 56136, - [SMALL_STATE(1923)] = 56143, - [SMALL_STATE(1924)] = 56150, - [SMALL_STATE(1925)] = 56157, - [SMALL_STATE(1926)] = 56164, - [SMALL_STATE(1927)] = 56171, - [SMALL_STATE(1928)] = 56178, - [SMALL_STATE(1929)] = 56185, - [SMALL_STATE(1930)] = 56192, - [SMALL_STATE(1931)] = 56199, - [SMALL_STATE(1932)] = 56206, - [SMALL_STATE(1933)] = 56213, - [SMALL_STATE(1934)] = 56220, - [SMALL_STATE(1935)] = 56227, - [SMALL_STATE(1936)] = 56234, - [SMALL_STATE(1937)] = 56241, - [SMALL_STATE(1938)] = 56248, - [SMALL_STATE(1939)] = 56255, - [SMALL_STATE(1940)] = 56262, - [SMALL_STATE(1941)] = 56269, - [SMALL_STATE(1942)] = 56276, - [SMALL_STATE(1943)] = 56283, - [SMALL_STATE(1944)] = 56290, - [SMALL_STATE(1945)] = 56297, - [SMALL_STATE(1946)] = 56304, - [SMALL_STATE(1947)] = 56311, - [SMALL_STATE(1948)] = 56318, - [SMALL_STATE(1949)] = 56325, - [SMALL_STATE(1950)] = 56332, - [SMALL_STATE(1951)] = 56339, - [SMALL_STATE(1952)] = 56346, - [SMALL_STATE(1953)] = 56353, - [SMALL_STATE(1954)] = 56360, - [SMALL_STATE(1955)] = 56367, - [SMALL_STATE(1956)] = 56374, - [SMALL_STATE(1957)] = 56381, - [SMALL_STATE(1958)] = 56388, - [SMALL_STATE(1959)] = 56395, - [SMALL_STATE(1960)] = 56402, - [SMALL_STATE(1961)] = 56409, - [SMALL_STATE(1962)] = 56416, - [SMALL_STATE(1963)] = 56423, - [SMALL_STATE(1964)] = 56430, - [SMALL_STATE(1965)] = 56437, - [SMALL_STATE(1966)] = 56444, - [SMALL_STATE(1967)] = 56451, - [SMALL_STATE(1968)] = 56458, - [SMALL_STATE(1969)] = 56465, - [SMALL_STATE(1970)] = 56472, - [SMALL_STATE(1971)] = 56479, - [SMALL_STATE(1972)] = 56486, - [SMALL_STATE(1973)] = 56493, - [SMALL_STATE(1974)] = 56500, - [SMALL_STATE(1975)] = 56507, - [SMALL_STATE(1976)] = 56514, - [SMALL_STATE(1977)] = 56521, - [SMALL_STATE(1978)] = 56528, - [SMALL_STATE(1979)] = 56535, - [SMALL_STATE(1980)] = 56542, - [SMALL_STATE(1981)] = 56549, - [SMALL_STATE(1982)] = 56556, - [SMALL_STATE(1983)] = 56563, - [SMALL_STATE(1984)] = 56570, - [SMALL_STATE(1985)] = 56577, - [SMALL_STATE(1986)] = 56584, - [SMALL_STATE(1987)] = 56591, - [SMALL_STATE(1988)] = 56598, - [SMALL_STATE(1989)] = 56605, - [SMALL_STATE(1990)] = 56612, - [SMALL_STATE(1991)] = 56619, - [SMALL_STATE(1992)] = 56626, - [SMALL_STATE(1993)] = 56633, - [SMALL_STATE(1994)] = 56640, - [SMALL_STATE(1995)] = 56647, - [SMALL_STATE(1996)] = 56654, - [SMALL_STATE(1997)] = 56661, - [SMALL_STATE(1998)] = 56668, - [SMALL_STATE(1999)] = 56675, - [SMALL_STATE(2000)] = 56682, - [SMALL_STATE(2001)] = 56689, - [SMALL_STATE(2002)] = 56696, - [SMALL_STATE(2003)] = 56703, - [SMALL_STATE(2004)] = 56710, - [SMALL_STATE(2005)] = 56717, - [SMALL_STATE(2006)] = 56724, - [SMALL_STATE(2007)] = 56731, - [SMALL_STATE(2008)] = 56738, - [SMALL_STATE(2009)] = 56745, - [SMALL_STATE(2010)] = 56752, - [SMALL_STATE(2011)] = 56759, - [SMALL_STATE(2012)] = 56766, - [SMALL_STATE(2013)] = 56773, - [SMALL_STATE(2014)] = 56780, - [SMALL_STATE(2015)] = 56787, - [SMALL_STATE(2016)] = 56794, - [SMALL_STATE(2017)] = 56801, - [SMALL_STATE(2018)] = 56808, - [SMALL_STATE(2019)] = 56815, - [SMALL_STATE(2020)] = 56822, - [SMALL_STATE(2021)] = 56829, - [SMALL_STATE(2022)] = 56836, - [SMALL_STATE(2023)] = 56843, - [SMALL_STATE(2024)] = 56850, - [SMALL_STATE(2025)] = 56857, - [SMALL_STATE(2026)] = 56864, - [SMALL_STATE(2027)] = 56871, - [SMALL_STATE(2028)] = 56878, - [SMALL_STATE(2029)] = 56885, - [SMALL_STATE(2030)] = 56892, - [SMALL_STATE(2031)] = 56899, - [SMALL_STATE(2032)] = 56906, - [SMALL_STATE(2033)] = 56913, - [SMALL_STATE(2034)] = 56920, - [SMALL_STATE(2035)] = 56927, - [SMALL_STATE(2036)] = 56934, - [SMALL_STATE(2037)] = 56941, - [SMALL_STATE(2038)] = 56948, - [SMALL_STATE(2039)] = 56955, - [SMALL_STATE(2040)] = 56962, - [SMALL_STATE(2041)] = 56969, - [SMALL_STATE(2042)] = 56976, - [SMALL_STATE(2043)] = 56983, - [SMALL_STATE(2044)] = 56990, - [SMALL_STATE(2045)] = 56997, - [SMALL_STATE(2046)] = 57004, - [SMALL_STATE(2047)] = 57011, - [SMALL_STATE(2048)] = 57018, - [SMALL_STATE(2049)] = 57025, - [SMALL_STATE(2050)] = 57032, - [SMALL_STATE(2051)] = 57039, - [SMALL_STATE(2052)] = 57046, - [SMALL_STATE(2053)] = 57053, - [SMALL_STATE(2054)] = 57060, - [SMALL_STATE(2055)] = 57067, - [SMALL_STATE(2056)] = 57074, - [SMALL_STATE(2057)] = 57081, - [SMALL_STATE(2058)] = 57088, - [SMALL_STATE(2059)] = 57095, - [SMALL_STATE(2060)] = 57102, - [SMALL_STATE(2061)] = 57109, - [SMALL_STATE(2062)] = 57116, - [SMALL_STATE(2063)] = 57123, - [SMALL_STATE(2064)] = 57130, - [SMALL_STATE(2065)] = 57137, - [SMALL_STATE(2066)] = 57144, - [SMALL_STATE(2067)] = 57151, - [SMALL_STATE(2068)] = 57158, - [SMALL_STATE(2069)] = 57165, - [SMALL_STATE(2070)] = 57172, - [SMALL_STATE(2071)] = 57179, - [SMALL_STATE(2072)] = 57186, - [SMALL_STATE(2073)] = 57193, - [SMALL_STATE(2074)] = 57200, - [SMALL_STATE(2075)] = 57207, - [SMALL_STATE(2076)] = 57214, - [SMALL_STATE(2077)] = 57221, - [SMALL_STATE(2078)] = 57228, - [SMALL_STATE(2079)] = 57235, - [SMALL_STATE(2080)] = 57242, - [SMALL_STATE(2081)] = 57249, - [SMALL_STATE(2082)] = 57256, - [SMALL_STATE(2083)] = 57263, - [SMALL_STATE(2084)] = 57270, - [SMALL_STATE(2085)] = 57277, - [SMALL_STATE(2086)] = 57284, - [SMALL_STATE(2087)] = 57291, - [SMALL_STATE(2088)] = 57298, - [SMALL_STATE(2089)] = 57305, - [SMALL_STATE(2090)] = 57312, - [SMALL_STATE(2091)] = 57319, - [SMALL_STATE(2092)] = 57326, - [SMALL_STATE(2093)] = 57333, - [SMALL_STATE(2094)] = 57340, - [SMALL_STATE(2095)] = 57347, - [SMALL_STATE(2096)] = 57354, - [SMALL_STATE(2097)] = 57361, - [SMALL_STATE(2098)] = 57368, - [SMALL_STATE(2099)] = 57375, - [SMALL_STATE(2100)] = 57382, - [SMALL_STATE(2101)] = 57389, - [SMALL_STATE(2102)] = 57396, + [SMALL_STATE(561)] = 0, + [SMALL_STATE(562)] = 79, + [SMALL_STATE(563)] = 158, + [SMALL_STATE(564)] = 233, + [SMALL_STATE(565)] = 312, + [SMALL_STATE(566)] = 391, + [SMALL_STATE(567)] = 470, + [SMALL_STATE(568)] = 557, + [SMALL_STATE(569)] = 642, + [SMALL_STATE(570)] = 721, + [SMALL_STATE(571)] = 796, + [SMALL_STATE(572)] = 875, + [SMALL_STATE(573)] = 954, + [SMALL_STATE(574)] = 1039, + [SMALL_STATE(575)] = 1109, + [SMALL_STATE(576)] = 1179, + [SMALL_STATE(577)] = 1249, + [SMALL_STATE(578)] = 1319, + [SMALL_STATE(579)] = 1389, + [SMALL_STATE(580)] = 1463, + [SMALL_STATE(581)] = 1567, + [SMALL_STATE(582)] = 1637, + [SMALL_STATE(583)] = 1741, + [SMALL_STATE(584)] = 1815, + [SMALL_STATE(585)] = 1885, + [SMALL_STATE(586)] = 1955, + [SMALL_STATE(587)] = 2025, + [SMALL_STATE(588)] = 2095, + [SMALL_STATE(589)] = 2165, + [SMALL_STATE(590)] = 2235, + [SMALL_STATE(591)] = 2305, + [SMALL_STATE(592)] = 2374, + [SMALL_STATE(593)] = 2443, + [SMALL_STATE(594)] = 2512, + [SMALL_STATE(595)] = 2597, + [SMALL_STATE(596)] = 2666, + [SMALL_STATE(597)] = 2735, + [SMALL_STATE(598)] = 2804, + [SMALL_STATE(599)] = 2875, + [SMALL_STATE(600)] = 2944, + [SMALL_STATE(601)] = 3013, + [SMALL_STATE(602)] = 3082, + [SMALL_STATE(603)] = 3151, + [SMALL_STATE(604)] = 3220, + [SMALL_STATE(605)] = 3289, + [SMALL_STATE(606)] = 3358, + [SMALL_STATE(607)] = 3427, + [SMALL_STATE(608)] = 3496, + [SMALL_STATE(609)] = 3565, + [SMALL_STATE(610)] = 3634, + [SMALL_STATE(611)] = 3703, + [SMALL_STATE(612)] = 3772, + [SMALL_STATE(613)] = 3874, + [SMALL_STATE(614)] = 3976, + [SMALL_STATE(615)] = 4060, + [SMALL_STATE(616)] = 4162, + [SMALL_STATE(617)] = 4264, + [SMALL_STATE(618)] = 4366, + [SMALL_STATE(619)] = 4468, + [SMALL_STATE(620)] = 4570, + [SMALL_STATE(621)] = 4672, + [SMALL_STATE(622)] = 4774, + [SMALL_STATE(623)] = 4858, + [SMALL_STATE(624)] = 4925, + [SMALL_STATE(625)] = 5006, + [SMALL_STATE(626)] = 5087, + [SMALL_STATE(627)] = 5156, + [SMALL_STATE(628)] = 5223, + [SMALL_STATE(629)] = 5290, + [SMALL_STATE(630)] = 5361, + [SMALL_STATE(631)] = 5432, + [SMALL_STATE(632)] = 5499, + [SMALL_STATE(633)] = 5572, + [SMALL_STATE(634)] = 5639, + [SMALL_STATE(635)] = 5706, + [SMALL_STATE(636)] = 5773, + [SMALL_STATE(637)] = 5840, + [SMALL_STATE(638)] = 5911, + [SMALL_STATE(639)] = 5978, + [SMALL_STATE(640)] = 6045, + [SMALL_STATE(641)] = 6112, + [SMALL_STATE(642)] = 6179, + [SMALL_STATE(643)] = 6246, + [SMALL_STATE(644)] = 6313, + [SMALL_STATE(645)] = 6380, + [SMALL_STATE(646)] = 6447, + [SMALL_STATE(647)] = 6514, + [SMALL_STATE(648)] = 6610, + [SMALL_STATE(649)] = 6706, + [SMALL_STATE(650)] = 6802, + [SMALL_STATE(651)] = 6898, + [SMALL_STATE(652)] = 6994, + [SMALL_STATE(653)] = 7090, + [SMALL_STATE(654)] = 7186, + [SMALL_STATE(655)] = 7282, + [SMALL_STATE(656)] = 7378, + [SMALL_STATE(657)] = 7474, + [SMALL_STATE(658)] = 7570, + [SMALL_STATE(659)] = 7666, + [SMALL_STATE(660)] = 7762, + [SMALL_STATE(661)] = 7858, + [SMALL_STATE(662)] = 7954, + [SMALL_STATE(663)] = 8050, + [SMALL_STATE(664)] = 8146, + [SMALL_STATE(665)] = 8242, + [SMALL_STATE(666)] = 8338, + [SMALL_STATE(667)] = 8434, + [SMALL_STATE(668)] = 8530, + [SMALL_STATE(669)] = 8626, + [SMALL_STATE(670)] = 8722, + [SMALL_STATE(671)] = 8818, + [SMALL_STATE(672)] = 8914, + [SMALL_STATE(673)] = 9010, + [SMALL_STATE(674)] = 9106, + [SMALL_STATE(675)] = 9202, + [SMALL_STATE(676)] = 9298, + [SMALL_STATE(677)] = 9394, + [SMALL_STATE(678)] = 9490, + [SMALL_STATE(679)] = 9586, + [SMALL_STATE(680)] = 9682, + [SMALL_STATE(681)] = 9778, + [SMALL_STATE(682)] = 9874, + [SMALL_STATE(683)] = 9970, + [SMALL_STATE(684)] = 10066, + [SMALL_STATE(685)] = 10162, + [SMALL_STATE(686)] = 10258, + [SMALL_STATE(687)] = 10354, + [SMALL_STATE(688)] = 10450, + [SMALL_STATE(689)] = 10546, + [SMALL_STATE(690)] = 10642, + [SMALL_STATE(691)] = 10738, + [SMALL_STATE(692)] = 10834, + [SMALL_STATE(693)] = 10930, + [SMALL_STATE(694)] = 11026, + [SMALL_STATE(695)] = 11122, + [SMALL_STATE(696)] = 11218, + [SMALL_STATE(697)] = 11314, + [SMALL_STATE(698)] = 11410, + [SMALL_STATE(699)] = 11506, + [SMALL_STATE(700)] = 11602, + [SMALL_STATE(701)] = 11698, + [SMALL_STATE(702)] = 11794, + [SMALL_STATE(703)] = 11890, + [SMALL_STATE(704)] = 11986, + [SMALL_STATE(705)] = 12082, + [SMALL_STATE(706)] = 12178, + [SMALL_STATE(707)] = 12274, + [SMALL_STATE(708)] = 12370, + [SMALL_STATE(709)] = 12466, + [SMALL_STATE(710)] = 12562, + [SMALL_STATE(711)] = 12658, + [SMALL_STATE(712)] = 12754, + [SMALL_STATE(713)] = 12850, + [SMALL_STATE(714)] = 12946, + [SMALL_STATE(715)] = 13042, + [SMALL_STATE(716)] = 13138, + [SMALL_STATE(717)] = 13234, + [SMALL_STATE(718)] = 13330, + [SMALL_STATE(719)] = 13426, + [SMALL_STATE(720)] = 13522, + [SMALL_STATE(721)] = 13618, + [SMALL_STATE(722)] = 13714, + [SMALL_STATE(723)] = 13810, + [SMALL_STATE(724)] = 13906, + [SMALL_STATE(725)] = 14002, + [SMALL_STATE(726)] = 14098, + [SMALL_STATE(727)] = 14194, + [SMALL_STATE(728)] = 14290, + [SMALL_STATE(729)] = 14386, + [SMALL_STATE(730)] = 14482, + [SMALL_STATE(731)] = 14578, + [SMALL_STATE(732)] = 14674, + [SMALL_STATE(733)] = 14770, + [SMALL_STATE(734)] = 14866, + [SMALL_STATE(735)] = 14962, + [SMALL_STATE(736)] = 15058, + [SMALL_STATE(737)] = 15154, + [SMALL_STATE(738)] = 15250, + [SMALL_STATE(739)] = 15346, + [SMALL_STATE(740)] = 15442, + [SMALL_STATE(741)] = 15538, + [SMALL_STATE(742)] = 15634, + [SMALL_STATE(743)] = 15730, + [SMALL_STATE(744)] = 15800, + [SMALL_STATE(745)] = 15896, + [SMALL_STATE(746)] = 15976, + [SMALL_STATE(747)] = 16046, + [SMALL_STATE(748)] = 16126, + [SMALL_STATE(749)] = 16222, + [SMALL_STATE(750)] = 16318, + [SMALL_STATE(751)] = 16414, + [SMALL_STATE(752)] = 16510, + [SMALL_STATE(753)] = 16606, + [SMALL_STATE(754)] = 16702, + [SMALL_STATE(755)] = 16798, + [SMALL_STATE(756)] = 16894, + [SMALL_STATE(757)] = 16990, + [SMALL_STATE(758)] = 17086, + [SMALL_STATE(759)] = 17182, + [SMALL_STATE(760)] = 17278, + [SMALL_STATE(761)] = 17374, + [SMALL_STATE(762)] = 17470, + [SMALL_STATE(763)] = 17566, + [SMALL_STATE(764)] = 17662, + [SMALL_STATE(765)] = 17758, + [SMALL_STATE(766)] = 17854, + [SMALL_STATE(767)] = 17950, + [SMALL_STATE(768)] = 18046, + [SMALL_STATE(769)] = 18142, + [SMALL_STATE(770)] = 18238, + [SMALL_STATE(771)] = 18334, + [SMALL_STATE(772)] = 18430, + [SMALL_STATE(773)] = 18526, + [SMALL_STATE(774)] = 18622, + [SMALL_STATE(775)] = 18718, + [SMALL_STATE(776)] = 18814, + [SMALL_STATE(777)] = 18910, + [SMALL_STATE(778)] = 19006, + [SMALL_STATE(779)] = 19102, + [SMALL_STATE(780)] = 19198, + [SMALL_STATE(781)] = 19294, + [SMALL_STATE(782)] = 19390, + [SMALL_STATE(783)] = 19486, + [SMALL_STATE(784)] = 19582, + [SMALL_STATE(785)] = 19678, + [SMALL_STATE(786)] = 19774, + [SMALL_STATE(787)] = 19870, + [SMALL_STATE(788)] = 19966, + [SMALL_STATE(789)] = 20062, + [SMALL_STATE(790)] = 20158, + [SMALL_STATE(791)] = 20254, + [SMALL_STATE(792)] = 20350, + [SMALL_STATE(793)] = 20446, + [SMALL_STATE(794)] = 20542, + [SMALL_STATE(795)] = 20638, + [SMALL_STATE(796)] = 20734, + [SMALL_STATE(797)] = 20830, + [SMALL_STATE(798)] = 20926, + [SMALL_STATE(799)] = 21022, + [SMALL_STATE(800)] = 21118, + [SMALL_STATE(801)] = 21214, + [SMALL_STATE(802)] = 21310, + [SMALL_STATE(803)] = 21406, + [SMALL_STATE(804)] = 21502, + [SMALL_STATE(805)] = 21598, + [SMALL_STATE(806)] = 21694, + [SMALL_STATE(807)] = 21790, + [SMALL_STATE(808)] = 21886, + [SMALL_STATE(809)] = 21982, + [SMALL_STATE(810)] = 22078, + [SMALL_STATE(811)] = 22174, + [SMALL_STATE(812)] = 22270, + [SMALL_STATE(813)] = 22366, + [SMALL_STATE(814)] = 22462, + [SMALL_STATE(815)] = 22558, + [SMALL_STATE(816)] = 22654, + [SMALL_STATE(817)] = 22750, + [SMALL_STATE(818)] = 22846, + [SMALL_STATE(819)] = 22942, + [SMALL_STATE(820)] = 23038, + [SMALL_STATE(821)] = 23134, + [SMALL_STATE(822)] = 23230, + [SMALL_STATE(823)] = 23326, + [SMALL_STATE(824)] = 23422, + [SMALL_STATE(825)] = 23518, + [SMALL_STATE(826)] = 23614, + [SMALL_STATE(827)] = 23710, + [SMALL_STATE(828)] = 23806, + [SMALL_STATE(829)] = 23902, + [SMALL_STATE(830)] = 23998, + [SMALL_STATE(831)] = 24094, + [SMALL_STATE(832)] = 24190, + [SMALL_STATE(833)] = 24286, + [SMALL_STATE(834)] = 24382, + [SMALL_STATE(835)] = 24478, + [SMALL_STATE(836)] = 24574, + [SMALL_STATE(837)] = 24670, + [SMALL_STATE(838)] = 24766, + [SMALL_STATE(839)] = 24862, + [SMALL_STATE(840)] = 24958, + [SMALL_STATE(841)] = 25054, + [SMALL_STATE(842)] = 25150, + [SMALL_STATE(843)] = 25246, + [SMALL_STATE(844)] = 25342, + [SMALL_STATE(845)] = 25438, + [SMALL_STATE(846)] = 25534, + [SMALL_STATE(847)] = 25630, + [SMALL_STATE(848)] = 25726, + [SMALL_STATE(849)] = 25822, + [SMALL_STATE(850)] = 25918, + [SMALL_STATE(851)] = 26014, + [SMALL_STATE(852)] = 26110, + [SMALL_STATE(853)] = 26206, + [SMALL_STATE(854)] = 26302, + [SMALL_STATE(855)] = 26398, + [SMALL_STATE(856)] = 26494, + [SMALL_STATE(857)] = 26590, + [SMALL_STATE(858)] = 26686, + [SMALL_STATE(859)] = 26782, + [SMALL_STATE(860)] = 26878, + [SMALL_STATE(861)] = 26974, + [SMALL_STATE(862)] = 27070, + [SMALL_STATE(863)] = 27166, + [SMALL_STATE(864)] = 27262, + [SMALL_STATE(865)] = 27358, + [SMALL_STATE(866)] = 27454, + [SMALL_STATE(867)] = 27550, + [SMALL_STATE(868)] = 27646, + [SMALL_STATE(869)] = 27742, + [SMALL_STATE(870)] = 27838, + [SMALL_STATE(871)] = 27934, + [SMALL_STATE(872)] = 28030, + [SMALL_STATE(873)] = 28126, + [SMALL_STATE(874)] = 28222, + [SMALL_STATE(875)] = 28318, + [SMALL_STATE(876)] = 28414, + [SMALL_STATE(877)] = 28510, + [SMALL_STATE(878)] = 28606, + [SMALL_STATE(879)] = 28702, + [SMALL_STATE(880)] = 28798, + [SMALL_STATE(881)] = 28894, + [SMALL_STATE(882)] = 28990, + [SMALL_STATE(883)] = 29086, + [SMALL_STATE(884)] = 29182, + [SMALL_STATE(885)] = 29278, + [SMALL_STATE(886)] = 29374, + [SMALL_STATE(887)] = 29470, + [SMALL_STATE(888)] = 29566, + [SMALL_STATE(889)] = 29662, + [SMALL_STATE(890)] = 29758, + [SMALL_STATE(891)] = 29854, + [SMALL_STATE(892)] = 29950, + [SMALL_STATE(893)] = 30046, + [SMALL_STATE(894)] = 30142, + [SMALL_STATE(895)] = 30238, + [SMALL_STATE(896)] = 30334, + [SMALL_STATE(897)] = 30430, + [SMALL_STATE(898)] = 30526, + [SMALL_STATE(899)] = 30622, + [SMALL_STATE(900)] = 30718, + [SMALL_STATE(901)] = 30814, + [SMALL_STATE(902)] = 30910, + [SMALL_STATE(903)] = 31006, + [SMALL_STATE(904)] = 31102, + [SMALL_STATE(905)] = 31198, + [SMALL_STATE(906)] = 31294, + [SMALL_STATE(907)] = 31390, + [SMALL_STATE(908)] = 31486, + [SMALL_STATE(909)] = 31582, + [SMALL_STATE(910)] = 31678, + [SMALL_STATE(911)] = 31774, + [SMALL_STATE(912)] = 31837, + [SMALL_STATE(913)] = 31890, + [SMALL_STATE(914)] = 31943, + [SMALL_STATE(915)] = 31994, + [SMALL_STATE(916)] = 32044, + [SMALL_STATE(917)] = 32094, + [SMALL_STATE(918)] = 32144, + [SMALL_STATE(919)] = 32194, + [SMALL_STATE(920)] = 32223, + [SMALL_STATE(921)] = 32252, + [SMALL_STATE(922)] = 32285, + [SMALL_STATE(923)] = 32320, + [SMALL_STATE(924)] = 32353, + [SMALL_STATE(925)] = 32392, + [SMALL_STATE(926)] = 32431, + [SMALL_STATE(927)] = 32460, + [SMALL_STATE(928)] = 32489, + [SMALL_STATE(929)] = 32518, + [SMALL_STATE(930)] = 32547, + [SMALL_STATE(931)] = 32576, + [SMALL_STATE(932)] = 32605, + [SMALL_STATE(933)] = 32638, + [SMALL_STATE(934)] = 32667, + [SMALL_STATE(935)] = 32696, + [SMALL_STATE(936)] = 32725, + [SMALL_STATE(937)] = 32754, + [SMALL_STATE(938)] = 32786, + [SMALL_STATE(939)] = 32818, + [SMALL_STATE(940)] = 32856, + [SMALL_STATE(941)] = 32896, + [SMALL_STATE(942)] = 32934, + [SMALL_STATE(943)] = 32972, + [SMALL_STATE(944)] = 33002, + [SMALL_STATE(945)] = 33038, + [SMALL_STATE(946)] = 33074, + [SMALL_STATE(947)] = 33104, + [SMALL_STATE(948)] = 33136, + [SMALL_STATE(949)] = 33172, + [SMALL_STATE(950)] = 33202, + [SMALL_STATE(951)] = 33232, + [SMALL_STATE(952)] = 33262, + [SMALL_STATE(953)] = 33294, + [SMALL_STATE(954)] = 33330, + [SMALL_STATE(955)] = 33366, + [SMALL_STATE(956)] = 33396, + [SMALL_STATE(957)] = 33432, + [SMALL_STATE(958)] = 33462, + [SMALL_STATE(959)] = 33492, + [SMALL_STATE(960)] = 33522, + [SMALL_STATE(961)] = 33554, + [SMALL_STATE(962)] = 33589, + [SMALL_STATE(963)] = 33624, + [SMALL_STATE(964)] = 33659, + [SMALL_STATE(965)] = 33694, + [SMALL_STATE(966)] = 33729, + [SMALL_STATE(967)] = 33764, + [SMALL_STATE(968)] = 33799, + [SMALL_STATE(969)] = 33834, + [SMALL_STATE(970)] = 33869, + [SMALL_STATE(971)] = 33904, + [SMALL_STATE(972)] = 33939, + [SMALL_STATE(973)] = 33974, + [SMALL_STATE(974)] = 34003, + [SMALL_STATE(975)] = 34038, + [SMALL_STATE(976)] = 34073, + [SMALL_STATE(977)] = 34102, + [SMALL_STATE(978)] = 34131, + [SMALL_STATE(979)] = 34166, + [SMALL_STATE(980)] = 34201, + [SMALL_STATE(981)] = 34230, + [SMALL_STATE(982)] = 34265, + [SMALL_STATE(983)] = 34300, + [SMALL_STATE(984)] = 34335, + [SMALL_STATE(985)] = 34370, + [SMALL_STATE(986)] = 34405, + [SMALL_STATE(987)] = 34440, + [SMALL_STATE(988)] = 34475, + [SMALL_STATE(989)] = 34510, + [SMALL_STATE(990)] = 34545, + [SMALL_STATE(991)] = 34580, + [SMALL_STATE(992)] = 34615, + [SMALL_STATE(993)] = 34644, + [SMALL_STATE(994)] = 34679, + [SMALL_STATE(995)] = 34714, + [SMALL_STATE(996)] = 34749, + [SMALL_STATE(997)] = 34784, + [SMALL_STATE(998)] = 34813, + [SMALL_STATE(999)] = 34848, + [SMALL_STATE(1000)] = 34880, + [SMALL_STATE(1001)] = 34905, + [SMALL_STATE(1002)] = 34930, + [SMALL_STATE(1003)] = 34955, + [SMALL_STATE(1004)] = 34980, + [SMALL_STATE(1005)] = 35005, + [SMALL_STATE(1006)] = 35030, + [SMALL_STATE(1007)] = 35050, + [SMALL_STATE(1008)] = 35064, + [SMALL_STATE(1009)] = 35078, + [SMALL_STATE(1010)] = 35092, + [SMALL_STATE(1011)] = 35102, + [SMALL_STATE(1012)] = 35112, + [SMALL_STATE(1013)] = 35122, + [SMALL_STATE(1014)] = 35132, + [SMALL_STATE(1015)] = 35142, + [SMALL_STATE(1016)] = 35152, + [SMALL_STATE(1017)] = 35164, + [SMALL_STATE(1018)] = 35174, + [SMALL_STATE(1019)] = 35184, + [SMALL_STATE(1020)] = 35194, + [SMALL_STATE(1021)] = 35204, + [SMALL_STATE(1022)] = 35214, + [SMALL_STATE(1023)] = 35224, + [SMALL_STATE(1024)] = 35234, + [SMALL_STATE(1025)] = 35244, + [SMALL_STATE(1026)] = 35254, + [SMALL_STATE(1027)] = 35267, + [SMALL_STATE(1028)] = 35280, + [SMALL_STATE(1029)] = 35293, + [SMALL_STATE(1030)] = 35304, + [SMALL_STATE(1031)] = 35317, + [SMALL_STATE(1032)] = 35330, + [SMALL_STATE(1033)] = 35343, + [SMALL_STATE(1034)] = 35356, + [SMALL_STATE(1035)] = 35369, + [SMALL_STATE(1036)] = 35382, + [SMALL_STATE(1037)] = 35393, + [SMALL_STATE(1038)] = 35406, + [SMALL_STATE(1039)] = 35419, + [SMALL_STATE(1040)] = 35432, + [SMALL_STATE(1041)] = 35445, + [SMALL_STATE(1042)] = 35458, + [SMALL_STATE(1043)] = 35468, + [SMALL_STATE(1044)] = 35478, + [SMALL_STATE(1045)] = 35486, + [SMALL_STATE(1046)] = 35496, + [SMALL_STATE(1047)] = 35506, + [SMALL_STATE(1048)] = 35516, + [SMALL_STATE(1049)] = 35526, + [SMALL_STATE(1050)] = 35534, + [SMALL_STATE(1051)] = 35542, + [SMALL_STATE(1052)] = 35552, + [SMALL_STATE(1053)] = 35562, + [SMALL_STATE(1054)] = 35572, + [SMALL_STATE(1055)] = 35582, + [SMALL_STATE(1056)] = 35592, + [SMALL_STATE(1057)] = 35602, + [SMALL_STATE(1058)] = 35612, + [SMALL_STATE(1059)] = 35622, + [SMALL_STATE(1060)] = 35632, + [SMALL_STATE(1061)] = 35642, + [SMALL_STATE(1062)] = 35652, + [SMALL_STATE(1063)] = 35662, + [SMALL_STATE(1064)] = 35672, + [SMALL_STATE(1065)] = 35682, + [SMALL_STATE(1066)] = 35692, + [SMALL_STATE(1067)] = 35702, + [SMALL_STATE(1068)] = 35712, + [SMALL_STATE(1069)] = 35722, + [SMALL_STATE(1070)] = 35732, + [SMALL_STATE(1071)] = 35742, + [SMALL_STATE(1072)] = 35752, + [SMALL_STATE(1073)] = 35762, + [SMALL_STATE(1074)] = 35772, + [SMALL_STATE(1075)] = 35782, + [SMALL_STATE(1076)] = 35792, + [SMALL_STATE(1077)] = 35802, + [SMALL_STATE(1078)] = 35812, + [SMALL_STATE(1079)] = 35820, + [SMALL_STATE(1080)] = 35827, + [SMALL_STATE(1081)] = 35834, + [SMALL_STATE(1082)] = 35841, + [SMALL_STATE(1083)] = 35848, + [SMALL_STATE(1084)] = 35855, + [SMALL_STATE(1085)] = 35862, + [SMALL_STATE(1086)] = 35869, + [SMALL_STATE(1087)] = 35876, + [SMALL_STATE(1088)] = 35883, + [SMALL_STATE(1089)] = 35890, + [SMALL_STATE(1090)] = 35897, + [SMALL_STATE(1091)] = 35904, + [SMALL_STATE(1092)] = 35911, + [SMALL_STATE(1093)] = 35918, + [SMALL_STATE(1094)] = 35925, + [SMALL_STATE(1095)] = 35932, + [SMALL_STATE(1096)] = 35939, + [SMALL_STATE(1097)] = 35946, + [SMALL_STATE(1098)] = 35953, + [SMALL_STATE(1099)] = 35960, + [SMALL_STATE(1100)] = 35967, + [SMALL_STATE(1101)] = 35974, + [SMALL_STATE(1102)] = 35981, + [SMALL_STATE(1103)] = 35988, + [SMALL_STATE(1104)] = 35995, + [SMALL_STATE(1105)] = 36002, + [SMALL_STATE(1106)] = 36009, + [SMALL_STATE(1107)] = 36016, + [SMALL_STATE(1108)] = 36023, + [SMALL_STATE(1109)] = 36030, + [SMALL_STATE(1110)] = 36037, + [SMALL_STATE(1111)] = 36044, + [SMALL_STATE(1112)] = 36051, + [SMALL_STATE(1113)] = 36058, + [SMALL_STATE(1114)] = 36065, + [SMALL_STATE(1115)] = 36072, + [SMALL_STATE(1116)] = 36079, + [SMALL_STATE(1117)] = 36086, + [SMALL_STATE(1118)] = 36093, + [SMALL_STATE(1119)] = 36100, + [SMALL_STATE(1120)] = 36107, + [SMALL_STATE(1121)] = 36114, + [SMALL_STATE(1122)] = 36121, + [SMALL_STATE(1123)] = 36128, + [SMALL_STATE(1124)] = 36135, + [SMALL_STATE(1125)] = 36142, + [SMALL_STATE(1126)] = 36149, + [SMALL_STATE(1127)] = 36156, + [SMALL_STATE(1128)] = 36163, + [SMALL_STATE(1129)] = 36170, + [SMALL_STATE(1130)] = 36177, + [SMALL_STATE(1131)] = 36184, + [SMALL_STATE(1132)] = 36191, + [SMALL_STATE(1133)] = 36198, + [SMALL_STATE(1134)] = 36205, + [SMALL_STATE(1135)] = 36212, + [SMALL_STATE(1136)] = 36219, + [SMALL_STATE(1137)] = 36226, + [SMALL_STATE(1138)] = 36233, + [SMALL_STATE(1139)] = 36240, + [SMALL_STATE(1140)] = 36247, + [SMALL_STATE(1141)] = 36254, + [SMALL_STATE(1142)] = 36261, + [SMALL_STATE(1143)] = 36268, + [SMALL_STATE(1144)] = 36275, + [SMALL_STATE(1145)] = 36282, + [SMALL_STATE(1146)] = 36289, + [SMALL_STATE(1147)] = 36296, + [SMALL_STATE(1148)] = 36303, + [SMALL_STATE(1149)] = 36310, + [SMALL_STATE(1150)] = 36317, + [SMALL_STATE(1151)] = 36324, + [SMALL_STATE(1152)] = 36331, + [SMALL_STATE(1153)] = 36338, + [SMALL_STATE(1154)] = 36345, + [SMALL_STATE(1155)] = 36352, + [SMALL_STATE(1156)] = 36359, + [SMALL_STATE(1157)] = 36366, + [SMALL_STATE(1158)] = 36373, + [SMALL_STATE(1159)] = 36380, + [SMALL_STATE(1160)] = 36387, + [SMALL_STATE(1161)] = 36394, + [SMALL_STATE(1162)] = 36401, + [SMALL_STATE(1163)] = 36408, + [SMALL_STATE(1164)] = 36415, + [SMALL_STATE(1165)] = 36422, + [SMALL_STATE(1166)] = 36429, + [SMALL_STATE(1167)] = 36436, + [SMALL_STATE(1168)] = 36443, + [SMALL_STATE(1169)] = 36450, + [SMALL_STATE(1170)] = 36457, + [SMALL_STATE(1171)] = 36464, + [SMALL_STATE(1172)] = 36471, + [SMALL_STATE(1173)] = 36478, + [SMALL_STATE(1174)] = 36485, + [SMALL_STATE(1175)] = 36492, + [SMALL_STATE(1176)] = 36499, + [SMALL_STATE(1177)] = 36506, + [SMALL_STATE(1178)] = 36513, + [SMALL_STATE(1179)] = 36520, + [SMALL_STATE(1180)] = 36527, + [SMALL_STATE(1181)] = 36534, + [SMALL_STATE(1182)] = 36541, + [SMALL_STATE(1183)] = 36548, + [SMALL_STATE(1184)] = 36555, + [SMALL_STATE(1185)] = 36562, + [SMALL_STATE(1186)] = 36569, + [SMALL_STATE(1187)] = 36576, + [SMALL_STATE(1188)] = 36583, + [SMALL_STATE(1189)] = 36590, + [SMALL_STATE(1190)] = 36597, + [SMALL_STATE(1191)] = 36604, + [SMALL_STATE(1192)] = 36611, + [SMALL_STATE(1193)] = 36618, + [SMALL_STATE(1194)] = 36625, + [SMALL_STATE(1195)] = 36632, + [SMALL_STATE(1196)] = 36639, + [SMALL_STATE(1197)] = 36646, + [SMALL_STATE(1198)] = 36653, + [SMALL_STATE(1199)] = 36660, + [SMALL_STATE(1200)] = 36667, + [SMALL_STATE(1201)] = 36674, + [SMALL_STATE(1202)] = 36681, + [SMALL_STATE(1203)] = 36688, + [SMALL_STATE(1204)] = 36695, + [SMALL_STATE(1205)] = 36702, + [SMALL_STATE(1206)] = 36709, + [SMALL_STATE(1207)] = 36716, + [SMALL_STATE(1208)] = 36723, + [SMALL_STATE(1209)] = 36730, + [SMALL_STATE(1210)] = 36737, + [SMALL_STATE(1211)] = 36744, + [SMALL_STATE(1212)] = 36751, + [SMALL_STATE(1213)] = 36758, + [SMALL_STATE(1214)] = 36765, + [SMALL_STATE(1215)] = 36772, + [SMALL_STATE(1216)] = 36779, + [SMALL_STATE(1217)] = 36786, + [SMALL_STATE(1218)] = 36793, + [SMALL_STATE(1219)] = 36800, + [SMALL_STATE(1220)] = 36807, + [SMALL_STATE(1221)] = 36814, + [SMALL_STATE(1222)] = 36821, + [SMALL_STATE(1223)] = 36828, + [SMALL_STATE(1224)] = 36835, + [SMALL_STATE(1225)] = 36842, + [SMALL_STATE(1226)] = 36849, + [SMALL_STATE(1227)] = 36856, + [SMALL_STATE(1228)] = 36863, + [SMALL_STATE(1229)] = 36870, + [SMALL_STATE(1230)] = 36877, + [SMALL_STATE(1231)] = 36884, + [SMALL_STATE(1232)] = 36891, + [SMALL_STATE(1233)] = 36898, + [SMALL_STATE(1234)] = 36905, + [SMALL_STATE(1235)] = 36912, + [SMALL_STATE(1236)] = 36919, + [SMALL_STATE(1237)] = 36926, + [SMALL_STATE(1238)] = 36933, + [SMALL_STATE(1239)] = 36940, + [SMALL_STATE(1240)] = 36947, + [SMALL_STATE(1241)] = 36954, + [SMALL_STATE(1242)] = 36961, + [SMALL_STATE(1243)] = 36968, + [SMALL_STATE(1244)] = 36975, + [SMALL_STATE(1245)] = 36982, + [SMALL_STATE(1246)] = 36989, + [SMALL_STATE(1247)] = 36996, + [SMALL_STATE(1248)] = 37003, + [SMALL_STATE(1249)] = 37010, + [SMALL_STATE(1250)] = 37017, + [SMALL_STATE(1251)] = 37024, + [SMALL_STATE(1252)] = 37031, + [SMALL_STATE(1253)] = 37038, + [SMALL_STATE(1254)] = 37045, + [SMALL_STATE(1255)] = 37052, + [SMALL_STATE(1256)] = 37059, + [SMALL_STATE(1257)] = 37066, + [SMALL_STATE(1258)] = 37073, + [SMALL_STATE(1259)] = 37080, + [SMALL_STATE(1260)] = 37087, + [SMALL_STATE(1261)] = 37094, + [SMALL_STATE(1262)] = 37101, + [SMALL_STATE(1263)] = 37108, + [SMALL_STATE(1264)] = 37115, + [SMALL_STATE(1265)] = 37122, + [SMALL_STATE(1266)] = 37129, + [SMALL_STATE(1267)] = 37136, + [SMALL_STATE(1268)] = 37143, + [SMALL_STATE(1269)] = 37150, + [SMALL_STATE(1270)] = 37157, + [SMALL_STATE(1271)] = 37164, + [SMALL_STATE(1272)] = 37171, + [SMALL_STATE(1273)] = 37178, + [SMALL_STATE(1274)] = 37185, + [SMALL_STATE(1275)] = 37192, + [SMALL_STATE(1276)] = 37199, + [SMALL_STATE(1277)] = 37206, + [SMALL_STATE(1278)] = 37213, + [SMALL_STATE(1279)] = 37220, + [SMALL_STATE(1280)] = 37227, + [SMALL_STATE(1281)] = 37234, + [SMALL_STATE(1282)] = 37241, + [SMALL_STATE(1283)] = 37248, + [SMALL_STATE(1284)] = 37255, + [SMALL_STATE(1285)] = 37262, + [SMALL_STATE(1286)] = 37269, + [SMALL_STATE(1287)] = 37276, + [SMALL_STATE(1288)] = 37283, + [SMALL_STATE(1289)] = 37290, + [SMALL_STATE(1290)] = 37297, + [SMALL_STATE(1291)] = 37304, + [SMALL_STATE(1292)] = 37311, + [SMALL_STATE(1293)] = 37318, + [SMALL_STATE(1294)] = 37325, + [SMALL_STATE(1295)] = 37332, + [SMALL_STATE(1296)] = 37339, + [SMALL_STATE(1297)] = 37346, + [SMALL_STATE(1298)] = 37353, + [SMALL_STATE(1299)] = 37360, + [SMALL_STATE(1300)] = 37367, }; 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(330), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), [53] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 4), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [69] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 4), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), - [345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(631), - [348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1668), - [351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1297), - [354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(633), - [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(633), - [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(632), - [363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1041), - [366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), - [368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1218), - [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1189), - [374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(498), - [377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1095), - [380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1989), - [383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1989), - [386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1990), - [389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1110), - [392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1992), - [395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1993), - [398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2093), - [401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1730), - [404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1761), - [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(435), - [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1664), - [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1709), - [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(265), - [419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1), - [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(631), - [424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1668), - [427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1297), - [430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(633), - [433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(633), - [436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(632), - [439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1041), - [442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1), - [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1218), - [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1189), - [450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(498), - [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1095), - [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1989), - [459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1989), - [462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1990), - [465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1110), - [468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1992), - [471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1993), - [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2093), - [477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1730), - [480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1761), - [483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(435), - [486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1664), - [489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1709), - [492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(265), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1211), - [530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1182), - [533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(489), - [536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1469), - [539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2010), - [542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(2010), - [545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2011), - [548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1103), - [551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2013), - [554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2014), - [557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2096), - [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1685), - [563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1783), - [566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(518), - [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1692), - [572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(271), - [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1211), - [578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1182), - [581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(489), - [584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1469), - [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2010), - [590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2010), - [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2011), - [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1103), - [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2013), - [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2014), - [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2096), - [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1685), - [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1783), - [614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(518), - [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1692), - [620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(271), - [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), - [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), - [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), - [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), - [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), - [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(706), - [662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1678), - [665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1335), - [668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(713), - [671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(713), - [674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(712), - [677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1033), - [680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1216), - [683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(473), - [686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1419), - [689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1933), - [692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1933), - [695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1934), - [698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1125), - [701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1936), - [704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1937), - [707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2085), - [710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1702), - [713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1852), - [716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(412), - [719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1719), - [722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(284), - [725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1331), - [728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1210), - [731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(402), - [734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1170), - [737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1961), - [740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1961), - [743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1962), - [746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1120), - [749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1964), - [752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1965), - [755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2089), - [758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1722), - [761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1840), - [764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(404), - [767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1725), - [770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(286), - [773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(706), - [776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1678), - [779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1335), - [782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(713), - [785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(713), - [788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(712), - [791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1033), - [794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1216), - [797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(473), - [800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1419), - [803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1933), - [806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1933), - [809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1934), - [812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1125), - [815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1936), - [818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1937), - [821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2085), - [824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1702), - [827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1852), - [830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(412), - [833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1719), - [836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(284), - [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), - [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), - [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), - [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), - [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), - [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), - [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), - [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), - [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), - [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), - [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), - [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), - [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1331), - [946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1210), - [949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(402), - [952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1170), - [955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1961), - [958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1961), - [961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1962), - [964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1120), - [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1964), - [970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1965), - [973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2089), - [976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1722), - [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1840), - [982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(404), - [985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1725), - [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(286), - [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(261), - [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1670), - [997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1076), - [1000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(757), - [1003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(757), - [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(758), - [1009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1037), - [1012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1253), - [1015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1191), - [1018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(514), - [1021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1436), - [1024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1982), - [1027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1982), - [1030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1983), - [1033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1113), - [1036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1985), - [1039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1986), - [1042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2092), - [1045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1732), - [1048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1751), - [1051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(484), - [1054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1686), - [1057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(302), - [1060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1214), - [1063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1184), - [1066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(502), - [1069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1456), - [1072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2003), - [1075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2003), - [1078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2004), - [1081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1104), - [1084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2006), - [1087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2007), - [1090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2095), - [1093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1723), - [1096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1869), - [1099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(494), - [1102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1687), - [1105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(296), - [1108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1186), - [1111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(483), - [1114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1385), - [1117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1996), - [1120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1996), - [1123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1997), - [1126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1107), - [1129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1999), - [1132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2000), - [1135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2094), - [1138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1726), - [1141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1772), - [1144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(482), - [1147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1697), - [1150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(311), - [1153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1186), - [1156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(483), - [1159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1385), - [1162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1996), - [1165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1996), - [1168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1997), - [1171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1107), - [1174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1999), - [1177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2000), - [1180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2094), - [1183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1726), - [1186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1772), - [1189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(482), - [1192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1697), - [1195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(311), - [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), - [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), - [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), - [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), - [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), - [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), - [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), - [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [1232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1214), - [1235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1184), - [1238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(502), - [1241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1456), - [1244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2003), - [1247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(2003), - [1250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2004), - [1253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1104), - [1256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2006), - [1259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2007), - [1262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2095), - [1265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1723), - [1268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1869), - [1271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(494), - [1274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1687), - [1277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(296), - [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), - [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), - [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), - [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), - [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), - [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), - [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), - [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), - [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [1316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(261), - [1319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1670), - [1322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1076), - [1325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(757), - [1328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(757), - [1331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(758), - [1334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1037), - [1337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1253), - [1340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1191), - [1343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(514), - [1346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1436), - [1349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1982), - [1352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1982), - [1355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1983), - [1358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1113), - [1361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1985), - [1364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1986), - [1367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2092), - [1370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1732), - [1373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1751), - [1376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(484), - [1379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1686), - [1382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(302), - [1385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(263), - [1388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1489), - [1391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1252), - [1394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(426), - [1397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1217), - [1400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1918), - [1403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1918), - [1406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1919), - [1409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1127), - [1412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1921), - [1415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1742), - [1418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2083), - [1421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1729), - [1424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1904), - [1427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(457), - [1430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1728), - [1433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(315), - [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), - [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), - [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), - [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [1470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1295), - [1473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(439), - [1476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1255), - [1479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1895), - [1482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1895), - [1485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1896), - [1488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1133), - [1491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1898), - [1494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1899), - [1497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2081), - [1500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1703), - [1503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1987), - [1506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(469), - [1509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1740), - [1512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(320), - [1515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(263), - [1518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1489), - [1521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1252), - [1524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(426), - [1527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1217), - [1530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1918), - [1533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1918), - [1536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1919), - [1539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1127), - [1542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1921), - [1545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1742), - [1548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2083), - [1551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1729), - [1554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1904), - [1557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(457), - [1560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1728), - [1563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(315), - [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), - [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), - [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), - [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), - [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), - [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [1594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1295), - [1597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(439), - [1600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1255), - [1603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1895), - [1606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1895), - [1609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1896), - [1612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1133), - [1615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1898), - [1618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1899), - [1621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2081), - [1624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1703), - [1627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1987), - [1630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(469), - [1633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1740), - [1636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(320), - [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), - [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), - [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), - [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), - [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), - [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), - [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [1663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(273), - [1666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1660), - [1669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1163), - [1672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(844), - [1675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(844), - [1678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(845), - [1681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1050), - [1684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1128), - [1687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(478), - [1690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1251), - [1693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2061), - [1696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2061), - [1699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2062), - [1702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1086), - [1705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2064), - [1708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2065), - [1711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2102), - [1714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1688), - [1717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1876), - [1720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(480), - [1723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1715), - [1726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(338), - [1729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(274), - [1732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1296), - [1735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1193), - [1738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(525), - [1741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1130), - [1744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1975), - [1747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1975), - [1750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1976), - [1753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1114), - [1756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1978), - [1759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1979), - [1762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2091), - [1765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1699), - [1768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1760), - [1771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(512), - [1774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1720), - [1777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(341), - [1780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(273), - [1783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1660), - [1786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1163), - [1789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(844), - [1792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(844), - [1795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(845), - [1798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1050), - [1801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1128), - [1804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(478), - [1807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1251), - [1810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2061), - [1813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(2061), - [1816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2062), - [1819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1086), - [1822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2064), - [1825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2065), - [1828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2102), - [1831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1688), - [1834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1876), - [1837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(480), - [1840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1715), - [1843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(338), - [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [1850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), - [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), - [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [1862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), - [1864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [1866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [1872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(274), - [1875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1296), - [1878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1193), - [1881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(525), - [1884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1130), - [1887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1975), - [1890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1975), - [1893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1976), - [1896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1114), - [1899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1978), - [1902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1979), - [1905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2091), - [1908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1699), - [1911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1760), - [1914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(512), - [1917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1720), - [1920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(341), - [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [1925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1194), - [1928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(403), - [1931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1440), - [1934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1968), - [1937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1968), - [1940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1969), - [1943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1117), - [1946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1971), - [1949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1972), - [1952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2090), - [1955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1735), - [1958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1802), - [1961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(401), - [1964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1718), - [1967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(325), - [1970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1194), - [1973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(403), - [1976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1440), - [1979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1968), - [1982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1968), - [1985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1969), - [1988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1117), - [1991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1971), - [1994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1972), - [1997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2090), - [2000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1735), - [2003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1802), - [2006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(401), - [2009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1718), - [2012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(325), - [2015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(280), - [2018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1137), - [2021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(523), - [2024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1491), - [2027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2028), - [2030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(2028), - [2033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2029), - [2036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1097), - [2039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2031), - [2042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2032), - [2045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2098), - [2048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1707), - [2051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1821), - [2054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(520), - [2057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1713), - [2060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(360), - [2063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(280), - [2066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1137), - [2069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(523), - [2072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1491), - [2075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2028), - [2078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2028), - [2081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2029), - [2084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1097), - [2087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2031), - [2090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2032), - [2093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2098), - [2096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1707), - [2099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1821), - [2102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(520), - [2105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1713), - [2108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(360), - [2111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(290), - [2114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1118), - [2117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1326), - [2120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(437), - [2123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1308), - [2126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1870), - [2129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1870), - [2132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1871), - [2135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1136), - [2138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1873), - [2141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1874), - [2144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2079), - [2147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1695), - [2150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1949), - [2153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(425), - [2156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1736), - [2159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(351), - [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), - [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), - [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), - [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), - [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), - [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), - [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), - [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [2188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(290), - [2191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1118), - [2194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1326), - [2197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(437), - [2200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1308), - [2203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1870), - [2206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1870), - [2209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1871), - [2212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1136), - [2215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1873), - [2218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1874), - [2221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2079), - [2224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1695), - [2227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1949), - [2230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(425), - [2233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1736), - [2236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(351), - [2239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(294), - [2242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1134), - [2245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(399), - [2248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1294), - [2251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2053), - [2254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2053), - [2257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2054), - [2260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1087), - [2263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2056), - [2266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2057), - [2269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2101), - [2272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1712), - [2275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2024), - [2278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(511), - [2281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1706), - [2284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(366), - [2287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(294), - [2290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1134), - [2293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(399), - [2296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1294), - [2299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2053), - [2302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(2053), - [2305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2054), - [2308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1087), - [2311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2056), - [2314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2057), - [2317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2101), - [2320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1712), - [2323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2024), - [2326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(511), - [2329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1706), - [2332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(366), - [2335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(313), - [2338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1119), - [2341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(419), - [2344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1121), - [2347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2018), - [2350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2018), - [2353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2019), - [2356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1098), - [2359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2021), - [2362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2022), - [2365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2097), - [2368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1733), - [2371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1903), - [2374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(497), - [2377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1724), - [2380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(380), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [2385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(313), - [2388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1119), - [2391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(419), - [2394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1121), - [2397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2018), - [2400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(2018), - [2403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2019), - [2406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1098), - [2409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2021), - [2412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2022), - [2415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2097), - [2418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1733), - [2421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1903), - [2424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(497), - [2427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1724), - [2430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(380), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_kind, 1), - [2437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_kind, 1), - [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_function, 2), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [2447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_built_in_function, 2), - [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 3), - [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [2465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 3), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_function, 1), - [2475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_built_in_function, 1), - [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__context_defined_function, 2), - [2479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__context_defined_function, 2), - [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), - [2483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(949), - [2486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(1666), - [2489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(1116), - [2492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(1550), - [2495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(1550), - [2498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(1535), - [2501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(1035), - [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), - [2506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(463), - [2509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(1664), - [2512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(1708), - [2515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(928), - [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), - [2520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(631), - [2523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1668), - [2526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1297), - [2529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(633), - [2532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(633), - [2535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(632), - [2538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1041), - [2541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), - [2543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(498), - [2546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1664), - [2549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1709), - [2552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(265), - [2555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(489), - [2558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1692), - [2561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(271), - [2564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(706), - [2567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1678), - [2570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1335), - [2573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(713), - [2576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(713), - [2579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(712), - [2582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1033), - [2585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(473), - [2588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1719), - [2591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(284), - [2594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(759), - [2597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1670), - [2600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1076), - [2603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(757), - [2606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(757), - [2609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(758), - [2612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1037), - [2615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(514), - [2618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1686), - [2621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(302), - [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [2628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(483), - [2631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1697), - [2634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(311), - [2637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(426), - [2640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1728), - [2643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(315), - [2646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(866), - [2649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1660), - [2652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1163), - [2655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(844), - [2658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(844), - [2661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(845), - [2664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1050), - [2667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(478), - [2670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1715), - [2673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(338), - [2676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [2678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(298), - [2681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1169), - [2684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1213), - [2687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1195), - [2690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1947), - [2693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1947), - [2696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1948), - [2699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1123), - [2702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1950), - [2705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1951), - [2708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2087), - [2711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1700), - [2714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(516), - [2717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1664), - [2720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [2722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(310), - [2725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1122), - [2728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1490), - [2731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1397), - [2734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1815), - [2737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1815), - [2740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1816), - [2743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1166), - [2746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1818), - [2749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1819), - [2752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2077), - [2755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1684), - [2758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(442), - [2761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1664), - [2764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(523), - [2767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1713), - [2770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(360), - [2773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(298), - [2776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1169), - [2779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1213), - [2782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1195), - [2785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1947), - [2788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1947), - [2791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1948), - [2794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1123), - [2797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1950), - [2800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1951), - [2803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2087), - [2806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1700), - [2809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(516), - [2812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(310), - [2815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1122), - [2818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1490), - [2821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1397), - [2824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1815), - [2827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1815), - [2830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1816), - [2833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1166), - [2836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1818), - [2839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1819), - [2842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2077), - [2845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1684), - [2848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(442), - [2851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(340), - [2854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(340), - [2857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1099), - [2860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1325), - [2863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2045), - [2866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2045), - [2869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2046), - [2872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1093), - [2875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2048), - [2878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2049), - [2881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2100), - [2884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1727), - [2887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(477), - [2890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(330), - [2893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1124), - [2896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1126), - [2899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1916), - [2902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1916), - [2905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1915), - [2908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1129), - [2911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1913), - [2914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1912), - [2917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1911), - [2920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1739), - [2923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(486), - [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), - [2928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(330), - [2931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(389), - [2934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(1163), - [2937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(844), - [2940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(844), - [2943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(845), - [2946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(1050), - [2949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(1122), - [2952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(1124), - [2955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(419), - [2958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(1126), - [2961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(1916), - [2964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(1916), - [2967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(1915), - [2970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(1129), - [2973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(1913), - [2976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(1912), - [2979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(1911), - [2982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(1739), - [2985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(1903), - [2988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(486), - [2991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(1664), - [2994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(1724), - [2997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(380), - [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_root, 1), - [3002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(330), - [3005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1124), - [3008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1126), - [3011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1916), - [3014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1916), - [3017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1915), - [3020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1129), - [3023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1913), - [3026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1912), - [3029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1911), - [3032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1739), - [3035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(486), - [3038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1099), - [3041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1325), - [3044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2045), - [3047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(2045), - [3050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2046), - [3053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1093), - [3056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2048), - [3059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2049), - [3062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(2100), - [3065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1727), - [3068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(477), - [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), - [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), - [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), - [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), - [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), - [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [3147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(679), - [3150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_operator, 1), SHIFT(1666), - [3153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_operator, 1), SHIFT(1116), - [3156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(1550), - [3159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_operator, 1), SHIFT(1550), - [3162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(1535), - [3165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_operator, 1), SHIFT(1035), - [3168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(1424), - [3171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(1423), - [3174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_operator, 1), SHIFT(407), - [3177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(1422), - [3180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(2037), - [3183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_operator, 1), SHIFT(2037), - [3186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(2038), - [3189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(1094), - [3192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(2040), - [3195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(2041), - [3198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(2099), - [3201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(1710), - [3204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(2034), - [3207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(398), - [3210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_operator, 1), SHIFT(1664), - [3213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(1698), - [3216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(780), - [3219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 1), - [3221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 1), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 2), - [3231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 2), - [3233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 1), - [3235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 1), - [3237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 1), SHIFT_REPEAT(626), - [3240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 3), - [3242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 3), - [3244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 3), - [3246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 3), - [3248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 3), - [3250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 3), - [3252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 3), - [3254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 3), - [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [3262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 5), - [3264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 5), - [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [3268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), - [3270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_else_repeat1, 2), - [3272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(1215), - [3275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1), - [3277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4), - [3283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [3287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [3289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(1208), - [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [3296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter, 5, .production_id = 3), - [3298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter, 5, .production_id = 3), - [3300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(1315), - [3303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3), - [3305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3), - [3307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 3), - [3309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 3), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [3317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else, 2), - [3319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else, 2), - [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async, 2), - [3323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async, 2), - [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 3), - [3327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 3), - [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 3), - [3331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 3), - [3333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, .production_id = 2), - [3335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3, .production_id = 2), - [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for, 5), - [3339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for, 5), - [3341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transform, 5), - [3343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_transform, 5), - [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [3349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [3351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), - [3353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), - [3355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 3), - [3357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 3), - [3359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3), - [3361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3), - [3363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 2), - [3365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 2), - [3367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find, 5), - [3369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find, 5), - [3371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 2, .production_id = 1), - [3373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 2, .production_id = 1), - [3375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), - [3377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), - [3379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remove, 5), - [3381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remove, 5), - [3383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 2), - [3385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 2), - [3387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [3389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 1), - [3391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 1), - [3393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 5), - [3395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 5), - [3397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if, 3), - [3399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if, 3), - [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [3403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), - [3407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1), - [3409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), - [3411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [3415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter, 6, .production_id = 4), - [3417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter, 6, .production_id = 4), - [3419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reduce, 7), - [3421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reduce, 7), - [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 3), - [3425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 3), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [3429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 1), SHIFT_REPEAT(747), - [3432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [3434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [3436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [3442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), - [3454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [3456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(1249), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), - [3465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(1212), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [3470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 1), SHIFT_REPEAT(753), - [3473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(986), - [3476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1682), - [3479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1222), - [3482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(981), - [3485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(981), - [3488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(984), - [3491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1045), - [3494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(455), - [3497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1690), - [3500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(673), - [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [3507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [3511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [3517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [3525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), - [3527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [3531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(414), - [3534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1694), - [3537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(692), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [3542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1002), - [3545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1667), - [3548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1487), - [3551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(996), - [3554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(996), - [3557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1010), - [3560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1049), - [3563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(530), - [3566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1738), - [3569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(726), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [3576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), - [3582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [3584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [3586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(1501), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [3591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 1), SHIFT_REPEAT(868), - [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [3600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(522), - [3603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1711), - [3606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(780), - [3609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(1279), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [3616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(1664), - [3619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(1144), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), - [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), - [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), - [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), - [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), - [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), - [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [3678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 1), SHIFT_REPEAT(992), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [3687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 1), SHIFT_REPEAT(997), - [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [3704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(1162), - [3707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(1158), - [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [3724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 1), - [3726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 1), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [3742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(1002), - [3745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(1667), - [3748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(1487), - [3751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(996), - [3754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(996), - [3757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(1010), - [3760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(1049), - [3763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), - [3765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(522), - [3768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(1664), - [3771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(1711), - [3774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(780), - [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [3789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), - [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [3795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [3799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [3801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [3809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [3813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), - [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [3819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), - [3821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [3823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [3827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [3831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), - [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [3837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), - [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), - [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [3859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), - [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [3869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), - [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), - [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), - [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), - [3887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [3893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), - [3899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [3903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_operator, 1), - [3905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_operator, 1), - [3907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), - [3909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier_list, 2), - [3911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 2), - [3913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 1), - [3915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 1), - [3917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic_operator, 1), - [3919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic_operator, 1), - [3921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier_list, 3), - [3923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 3), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [4059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [4061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(1418), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [4076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 3), - [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [4090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 1), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [4104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(1843), - [4107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [4113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), SHIFT_REPEAT(1673), - [4116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [4120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 4), - [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [4422] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [81] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 4), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1), + [295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(161), + [298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1027), + [301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(890), + [304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(419), + [307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(419), + [310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(417), + [313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(618), + [316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1), + [318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(813), + [321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(758), + [324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(243), + [327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(751), + [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1217), + [333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1217), + [336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1218), + [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(680), + [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1220), + [345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1221), + [348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1293), + [351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1076), + [354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1110), + [357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(249), + [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1028), + [363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1051), + [366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(170), + [369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), + [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(161), + [374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1027), + [377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(890), + [380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(419), + [383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(419), + [386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(417), + [389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(618), + [392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), + [394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(813), + [397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(758), + [400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(243), + [403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(751), + [406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1217), + [409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1217), + [412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1218), + [415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(680), + [418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1220), + [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1221), + [424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1293), + [427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1076), + [430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1110), + [433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(249), + [436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1028), + [439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1051), + [442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(170), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(162), + [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(738), + [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(812), + [482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(260), + [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(674), + [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1168), + [491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1168), + [494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1169), + [497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(712), + [500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1171), + [503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1172), + [506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1287), + [509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1075), + [512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1197), + [515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(261), + [518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1068), + [521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(181), + [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(162), + [561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(738), + [564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(812), + [567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(260), + [570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(674), + [573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1168), + [576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1168), + [579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1169), + [582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(712), + [585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1171), + [588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1172), + [591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1287), + [594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1075), + [597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1197), + [600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(261), + [603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1068), + [606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(181), + [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(164), + [636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(845), + [639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(776), + [642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(324), + [645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(713), + [648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1203), + [651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1203), + [654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1204), + [657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(696), + [660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1206), + [663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1207), + [666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1291), + [669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1062), + [672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1156), + [675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(326), + [678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1055), + [681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(186), + [684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(164), + [687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(845), + [690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(776), + [693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(324), + [696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(713), + [699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1203), + [702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1203), + [705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1204), + [708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(696), + [711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1206), + [714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1207), + [717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1291), + [720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1062), + [723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1156), + [726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(326), + [729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1055), + [732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(186), + [735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(163), + [738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1040), + [741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(752), + [744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(462), + [747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(462), + [750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(463), + [753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(620), + [756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(709), + [759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(279), + [762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(792), + [765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1275), + [768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1275), + [771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1276), + [774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(649), + [777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1278), + [780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1279), + [783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1300), + [786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1073), + [789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1152), + [792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(269), + [795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1069), + [798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(189), + [801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(163), + [804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1040), + [807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(752), + [810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(462), + [813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(462), + [816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(463), + [819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(620), + [822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(709), + [825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(279), + [828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(792), + [831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1275), + [834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1275), + [837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1276), + [840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(649), + [843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1278), + [846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1279), + [849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1300), + [852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1073), + [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1152), + [858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(269), + [861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1069), + [864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(189), + [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(165), + [896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(717), + [899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(278), + [902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(727), + [905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1242), + [908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1242), + [911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1243), + [914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(669), + [917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1245), + [920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1246), + [923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1296), + [926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1058), + [929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1117), + [932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(277), + [935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1074), + [938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(208), + [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(165), + [968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(717), + [971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(278), + [974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(727), + [977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1242), + [980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1242), + [983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1243), + [986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(669), + [989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1245), + [992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1246), + [995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1296), + [998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1058), + [1001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1117), + [1004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(277), + [1007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1074), + [1010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(208), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [1015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(166), + [1018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(799), + [1021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(844), + [1024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(287), + [1027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(715), + [1030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1146), + [1033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1146), + [1036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1147), + [1039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(716), + [1042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1149), + [1045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1150), + [1048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1285), + [1051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1067), + [1054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1083), + [1057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(259), + [1060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1071), + [1063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(203), + [1066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(166), + [1069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(799), + [1072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(844), + [1075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(287), + [1078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(715), + [1081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1146), + [1084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1146), + [1087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1147), + [1090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(716), + [1093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1149), + [1096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1150), + [1099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1285), + [1102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1067), + [1105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1083), + [1108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(259), + [1111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1071), + [1114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(203), + [1117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(174), + [1120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(714), + [1123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(311), + [1126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(843), + [1129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1259), + [1132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1259), + [1135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1260), + [1138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(666), + [1141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1262), + [1144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1263), + [1147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1298), + [1150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1060), + [1153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1238), + [1156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(323), + [1159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1057), + [1162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(218), + [1165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(174), + [1168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(714), + [1171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(311), + [1174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(843), + [1177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1259), + [1180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1259), + [1183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1260), + [1186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(666), + [1189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1262), + [1192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1263), + [1195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1298), + [1198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1060), + [1201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1238), + [1204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(323), + [1207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1057), + [1210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(218), + [1213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(179), + [1216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(800), + [1219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(270), + [1222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(802), + [1225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1232), + [1228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1232), + [1231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1233), + [1234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(671), + [1237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1235), + [1240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1236), + [1243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1295), + [1246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1052), + [1249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1164), + [1252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(315), + [1255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1045), + [1258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(222), + [1261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(179), + [1264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(800), + [1267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(270), + [1270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(802), + [1273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1232), + [1276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1232), + [1279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1233), + [1282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(671), + [1285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1235), + [1288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1236), + [1291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1295), + [1294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1052), + [1297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1164), + [1300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(315), + [1303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1045), + [1306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(222), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [1313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_kind, 1), + [1315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_kind, 1), + [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [1321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_function, 2), + [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [1327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_built_in_function, 2), + [1329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__context_defined_function, 2), + [1331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__context_defined_function, 2), + [1333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_function, 1), + [1335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_built_in_function, 1), + [1337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 3), + [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [1353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 3), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [1361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), + [1363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(415), + [1366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1027), + [1369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(890), + [1372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(419), + [1375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(419), + [1378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(417), + [1381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(618), + [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), + [1386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(243), + [1389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1028), + [1392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1051), + [1395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(170), + [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), + [1400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(553), + [1403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(1037), + [1406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(797), + [1409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(936), + [1412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(936), + [1415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(935), + [1418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(619), + [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), + [1423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(317), + [1426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(1028), + [1429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(1054), + [1432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(550), + [1435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(260), + [1438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1068), + [1441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(181), + [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [1446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(468), + [1449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1040), + [1452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(752), + [1455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(462), + [1458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(462), + [1461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(463), + [1464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(620), + [1467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(279), + [1470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1069), + [1473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(189), + [1476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(171), + [1479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(673), + [1482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(737), + [1485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(801), + [1488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1111), + [1491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1111), + [1494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1112), + [1497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(754), + [1500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1114), + [1503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1115), + [1506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1283), + [1509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1077), + [1512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(292), + [1515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1028), + [1518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(171), + [1521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(673), + [1524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(737), + [1527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(801), + [1530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1111), + [1533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1111), + [1536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1112), + [1539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(754), + [1542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1114), + [1545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1115), + [1548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1283), + [1551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1077), + [1554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(292), + [1557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1028), + [1560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(278), + [1563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1074), + [1566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(208), + [1569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(168), + [1572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(756), + [1575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(793), + [1578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(670), + [1581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1188), + [1584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1188), + [1587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1189), + [1590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(708), + [1593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1191), + [1596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1192), + [1599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1289), + [1602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1042), + [1605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(301), + [1608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(168), + [1611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(756), + [1614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(793), + [1617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(670), + [1620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1188), + [1623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1188), + [1626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1189), + [1629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(708), + [1632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1191), + [1635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1192), + [1638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1289), + [1641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1042), + [1644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(301), + [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [1649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(185), + [1652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(672), + [1655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(810), + [1658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1267), + [1661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1267), + [1664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1268), + [1667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(660), + [1670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1270), + [1673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1271), + [1676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1299), + [1679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1072), + [1682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(294), + [1685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(192), + [1688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(694), + [1691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(706), + [1694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1186), + [1697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(1186), + [1700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1185), + [1703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(711), + [1706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1183), + [1709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1176), + [1712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1166), + [1715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1070), + [1718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(325), + [1721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(192), + [1724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(694), + [1727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(706), + [1730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1186), + [1733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1186), + [1736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1185), + [1739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(711), + [1742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1183), + [1745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1176), + [1748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1166), + [1751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1070), + [1754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(325), + [1757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(185), + [1760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(672), + [1763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(810), + [1766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1267), + [1769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1267), + [1772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1268), + [1775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(660), + [1778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1270), + [1781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1271), + [1784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1299), + [1787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1072), + [1790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(294), + [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), + [1795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(192), + [1798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(242), + [1801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(752), + [1804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(462), + [1807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(462), + [1810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(463), + [1813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(620), + [1816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(673), + [1819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(694), + [1822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(270), + [1825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(706), + [1828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(1186), + [1831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(1186), + [1834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(1185), + [1837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(711), + [1840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(1183), + [1843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(1176), + [1846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(1166), + [1849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(1070), + [1852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(1164), + [1855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(325), + [1858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(1028), + [1861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(1045), + [1864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(222), + [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_root, 1), + [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [1929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(356), + [1932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_operator, 1), SHIFT(1037), + [1935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_operator, 1), SHIFT(797), + [1938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(936), + [1941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_operator, 1), SHIFT(936), + [1944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(935), + [1947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_operator, 1), SHIFT(619), + [1950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(888), + [1953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(882), + [1956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_operator, 1), SHIFT(273), + [1959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(881), + [1962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(1251), + [1965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_operator, 1), SHIFT(1251), + [1968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(1252), + [1971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(667), + [1974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(1254), + [1977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(1255), + [1980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(1297), + [1983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(1046), + [1986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(1129), + [1989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(291), + [1992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_operator, 1), SHIFT(1028), + [1995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(1063), + [1998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(429), + [2001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 2), + [2003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 2), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [2009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 1), + [2011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 1), + [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), + [2021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_else_repeat1, 2), + [2023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(808), + [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 3), + [2028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 3), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 1), + [2036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 1), + [2038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 1), SHIFT_REPEAT(410), + [2041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1), + [2043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 5), + [2065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 5), + [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 3), + [2069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 3), + [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4), + [2073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4), + [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 3), + [2077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 3), + [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 3), + [2081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 3), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [2097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(585), + [2100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1034), + [2103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(757), + [2106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(586), + [2109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(586), + [2112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(581), + [2115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(616), + [2118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(276), + [2121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1064), + [2124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(372), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [2129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(720), + [2132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 2), + [2134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 2), + [2136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 5), + [2138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 5), + [2140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter, 6, .production_id = 4), + [2142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter, 6, .production_id = 4), + [2144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reduce, 7), + [2146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reduce, 7), + [2148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), + [2150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), + [2152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [2154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [2156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(290), + [2159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1048), + [2162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(429), + [2165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(841), + [2168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 1), SHIFT_REPEAT(492), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter, 5, .production_id = 3), + [2175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter, 5, .production_id = 3), + [2177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, .production_id = 2), + [2179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3, .production_id = 2), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find, 5), + [2185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find, 5), + [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if, 3), + [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if, 3), + [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 2, .production_id = 1), + [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 2, .production_id = 1), + [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remove, 5), + [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remove, 5), + [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), + [2201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), + [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 2), + [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 2), + [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 1), + [2209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 1), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), + [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), + [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), + [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1), + [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async, 2), + [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async, 2), + [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), + [2229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1), + [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transform, 5), + [2233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_transform, 5), + [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3), + [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3), + [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 3), + [2241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 3), + [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [2245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else, 2), + [2247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else, 2), + [2249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 3), + [2251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 3), + [2253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 3), + [2255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 3), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 3), + [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 3), + [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for, 5), + [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for, 5), + [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 3), + [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 3), + [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3), + [2273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3), + [2275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(1028), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [2280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(823), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [2317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 1), SHIFT_REPEAT(575), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [2326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [2328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [2332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [2336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [2338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(858), + [2341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(721), + [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [2350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 1), + [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 1), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [2368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(585), + [2371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(1034), + [2374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(757), + [2377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(586), + [2380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(586), + [2383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(581), + [2386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(616), + [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), + [2391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(290), + [2394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(1028), + [2397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(1048), + [2400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(429), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), + [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_operator, 1), + [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_operator, 1), + [2485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), + [2487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier_list, 3), + [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 3), + [2491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 1), + [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 1), + [2495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic_operator, 1), + [2497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic_operator, 1), + [2499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier_list, 2), + [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 2), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [2593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(880), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 1), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [2610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), SHIFT_REPEAT(1029), + [2613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [2623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 3), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [2631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(1177), + [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 4), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [2772] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), }; #ifdef __cplusplus