From 25852efcd68ad7a152fbdd35f7bd6a75c5bec57a Mon Sep 17 00:00:00 2001 From: Jeff Date: Mon, 27 Nov 2023 15:02:08 -0500 Subject: [PATCH] Continue type check implementation --- examples/clue_solver.ds | 24 +- examples/fibonacci.ds | 2 +- examples/yield.ds | 8 +- src/abstract_tree/assignment.rs | 22 +- src/abstract_tree/function_call.rs | 18 +- src/abstract_tree/index.rs | 2 +- src/abstract_tree/type.rs | 42 +- src/abstract_tree/value_node.rs | 38 +- src/evaluator.rs | 2 +- src/value/function.rs | 75 +- tree-sitter-dust/corpus/functions.txt | 8 +- tree-sitter-dust/grammar.js | 20 +- tree-sitter-dust/src/grammar.json | 93 +- tree-sitter-dust/src/node-types.json | 26 +- tree-sitter-dust/src/parser.c | 26724 ++++++++++-------------- 15 files changed, 11706 insertions(+), 15398 deletions(-) diff --git a/examples/clue_solver.ds b/examples/clue_solver.ds index 16d648a..de79e28 100644 --- a/examples/clue_solver.ds +++ b/examples/clue_solver.ds @@ -4,31 +4,25 @@ all_cards = { weapons = ['Rope' 'Lead_Pipe' 'Knife'] } -is_ready_to_solve = |cards| => { +is_ready_to_solve = |cards | { ((length cards:suspects) == 1) && ((length cards:rooms) == 1) && ((length cards:weapons) == 1) } -take_turn = |opponent_card, current_room, cards| => { +take_turn = |opponent_card , current_room , cards | { (remove_card opponent_card cards) (make_guess current_room cards) cards -} - -remove_card = |opponent_card cards| => { - remove card from cards:rooms { - card == opponent_card - } - remove card from cards:weapons { - card == opponent_card - } - remove card from cards:suspects { - card == opponent_card - } } -make_guess = |current_room cards| => { +remove_card = |opponent_card , cards | { + cards:rooms -= opponent_card + cards:suspects -= opponent_card + cards:weapons -= opponent_card +} + +make_guess = |current_room , cards | { if (is_ready_to_solve cards) { (output 'It was ' + cards:suspects:0 diff --git a/examples/fibonacci.ds b/examples/fibonacci.ds index ad5b0b5..62948fd 100644 --- a/examples/fibonacci.ds +++ b/examples/fibonacci.ds @@ -1,4 +1,4 @@ -fib = |i| => { +fib = |i | { if i <= 1 { 1 } else { diff --git a/examples/yield.ds b/examples/yield.ds index 1207769..5dd4406 100644 --- a/examples/yield.ds +++ b/examples/yield.ds @@ -1,13 +1,13 @@ 1 -> (output) -add_one = |list| => { - new_list = [] +add_one = |numbers | { + new_numbers = [] - for number in list { + for number in numbers { new_list += number + 1 } - new_list + new_numbers } foo = [1, 2, 3] -> (add_one) diff --git a/src/abstract_tree/assignment.rs b/src/abstract_tree/assignment.rs index 206c3db..fa58e20 100644 --- a/src/abstract_tree/assignment.rs +++ b/src/abstract_tree/assignment.rs @@ -86,26 +86,8 @@ impl AbstractTree for Assignment { AssignmentOperator::Equal => value, }; - let expected_type = self.r#type.as_ref().unwrap_or(&Type::Any); - - match (expected_type, new_value.r#type()) { - (Type::Any, _) - | (Type::Boolean, Type::Boolean) - | (Type::Float, Type::Float) - | (Type::Function, Type::Function) - | (Type::Integer, Type::Integer) - | (Type::List, Type::List) - | (Type::Map, Type::Map) - | (Type::String, Type::String) - | (Type::Table, Type::Table) => {} - (Type::Boolean, _) => return Err(Error::ExpectedBoolean { actual: new_value }), - (Type::Float, _) => return Err(Error::ExpectedFloat { actual: new_value }), - (Type::Function, _) => return Err(Error::ExpectedFunction { actual: new_value }), - (Type::Integer, _) => return Err(Error::ExpectedInteger { actual: new_value }), - (Type::List, _) => return Err(Error::ExpectedList { actual: new_value }), - (Type::Map, _) => return Err(Error::ExpectedMap { actual: new_value }), - (Type::String, _) => return Err(Error::ExpectedString { actual: new_value }), - (Type::Table, _) => return Err(Error::ExpectedTable { actual: new_value }), + if let Some(r#type) = &self.r#type { + r#type.check(&new_value)?; } context.variables_mut()?.insert(key, new_value); diff --git a/src/abstract_tree/function_call.rs b/src/abstract_tree/function_call.rs index 8a2cc4c..d8e0dc9 100644 --- a/src/abstract_tree/function_call.rs +++ b/src/abstract_tree/function_call.rs @@ -50,7 +50,7 @@ impl AbstractTree for FunctionCall { FunctionCall::ContextDefined { name, arguments } => (name, arguments), }; - let definition = if let Expression::Identifier(identifier) = name { + let function = if let Expression::Identifier(identifier) = name { if let Some(value) = context.variables()?.get(identifier.inner()) { value.as_function().cloned() } else { @@ -63,19 +63,17 @@ impl AbstractTree for FunctionCall { }?; let mut function_context = Map::clone_from(context)?; + let parameter_expression_pairs = function.parameters().iter().zip(arguments.iter()); - if let Some(parameters) = definition.identifiers() { - let parameter_expression_pairs = parameters.iter().zip(arguments.iter()); - let mut variables = function_context.variables_mut()?; + for ((identifier, r#type), expression) in parameter_expression_pairs { + let key = identifier.clone().take_inner(); + let value = expression.run(source, context)?; - for ((identifier, _type), expression) in parameter_expression_pairs { - let key = identifier.clone().take_inner(); - let value = expression.run(source, context)?; + r#type.check(&value)?; - variables.insert(key, value); - } + function_context.variables_mut()?.insert(key, value); } - definition.body().run(source, &mut function_context) + function.run(source, &mut function_context) } } diff --git a/src/abstract_tree/index.rs b/src/abstract_tree/index.rs index 193dfe7..9b19075 100644 --- a/src/abstract_tree/index.rs +++ b/src/abstract_tree/index.rs @@ -96,7 +96,7 @@ mod tests { #[test] fn evaluate_complex_index() { - let test = evaluate("x = [1 2 3]; y = || => {0}; x:((y));").unwrap(); + let test = evaluate("x = [1 2 3]; y = || { 0 } x:((y))").unwrap(); assert_eq!(Value::Integer(1), test); } diff --git a/src/abstract_tree/type.rs b/src/abstract_tree/type.rs index 34f0ef7..a5509f2 100644 --- a/src/abstract_tree/type.rs +++ b/src/abstract_tree/type.rs @@ -16,6 +16,46 @@ pub enum Type { Table, } +impl Type { + pub fn check(&self, value: &Value) -> Result<()> { + match (self, value.r#type()) { + (Type::Any, _) + | (Type::Boolean, Type::Boolean) + | (Type::Float, Type::Float) + | (Type::Function, Type::Function) + | (Type::Integer, Type::Integer) + | (Type::List, Type::List) + | (Type::Map, Type::Map) + | (Type::String, Type::String) + | (Type::Table, Type::Table) => Ok(()), + (Type::Boolean, _) => Err(Error::ExpectedBoolean { + actual: value.clone(), + }), + (Type::Float, _) => Err(Error::ExpectedFloat { + actual: value.clone(), + }), + (Type::Function, _) => Err(Error::ExpectedFunction { + actual: value.clone(), + }), + (Type::Integer, _) => Err(Error::ExpectedInteger { + actual: value.clone(), + }), + (Type::List, _) => Err(Error::ExpectedList { + actual: value.clone(), + }), + (Type::Map, _) => Err(Error::ExpectedMap { + actual: value.clone(), + }), + (Type::String, _) => Err(Error::ExpectedString { + actual: value.clone(), + }), + (Type::Table, _) => Err(Error::ExpectedTable { + actual: value.clone(), + }), + } + } +} + impl AbstractTree for Type { fn from_syntax_node(source: &str, node: Node) -> Result { Error::expect_syntax_node(source, "type", node)?; @@ -30,7 +70,7 @@ impl AbstractTree for Type { "int" => Type::Integer, "list" => Type::List, "map" => Type::Map, - "string" => Type::String, + "str" => Type::String, "table" => Type::Table, _ => { return Err(Error::UnexpectedSyntaxNode { diff --git a/src/abstract_tree/value_node.rs b/src/abstract_tree/value_node.rs index d0b3b66..40b2198 100644 --- a/src/abstract_tree/value_node.rs +++ b/src/abstract_tree/value_node.rs @@ -4,8 +4,8 @@ use serde::{Deserialize, Serialize}; use tree_sitter::Node; use crate::{ - AbstractTree, Block, Error, Expression, Function, Identifier, List, Map, Result, Statement, - Table, Type, Value, ValueType, + AbstractTree, Error, Expression, Function, Identifier, List, Map, Result, Statement, Table, + Value, ValueType, }; #[derive(Debug, Clone, Serialize, Deserialize, Eq, PartialEq, PartialOrd, Ord)] @@ -90,39 +90,7 @@ impl AbstractTree for ValueNode { ValueType::Map(child_nodes) } - "function" => { - let mut parameter_list = Vec::new(); - let mut index = 0; - - while index < node.child_count() { - let current_node = node.child(index).unwrap(); - let next_node = node.child(index + 1); - - if current_node.kind() == "identifier" { - let parameter = Identifier::from_syntax_node(source, current_node)?; - - if let Some(next_node) = next_node { - if next_node.kind() == "type_definition" { - let r#type = Type::from_syntax_node(source, next_node)?; - - parameter_list.push((parameter, r#type)); - } - } - } - - index += 2 - } - - let body_node = child.child_by_field_name("body").unwrap(); - let body = Block::from_syntax_node(source, body_node)?; - let parameters = if parameter_list.is_empty() { - None - } else { - Some(parameter_list) - }; - - ValueType::Function(Function::new(parameters, body)) - } + "function" => ValueType::Function(Function::from_syntax_node(source, child)?), _ => { return Err(Error::UnexpectedSyntaxNode { expected: diff --git a/src/evaluator.rs b/src/evaluator.rs index 6f4dea4..9335c56 100644 --- a/src/evaluator.rs +++ b/src/evaluator.rs @@ -257,7 +257,7 @@ mod tests { assert_eq!( evaluate( " - foobar = |message| => { message } + foobar = |message | { message } (foobar 'Hiya') ", ), diff --git a/src/value/function.rs b/src/value/function.rs index e51f4af..4b6a604 100644 --- a/src/value/function.rs +++ b/src/value/function.rs @@ -1,29 +1,74 @@ use std::fmt::{self, Display, Formatter}; use serde::{Deserialize, Serialize}; +use tree_sitter::Node; -use crate::{Block, Identifier, Type}; +use crate::{AbstractTree, Block, Error, Identifier, Map, Result, Type, Value}; #[derive(Debug, Clone, Serialize, Deserialize, Eq, PartialEq, PartialOrd, Ord)] pub struct Function { - parameters: Option>, - body: Box, + parameters: Vec<(Identifier, Type)>, + return_type: Option, + body: Block, } impl Function { - pub fn new(parameters: Option>, body: Block) -> Self { - Function { - parameters, - body: Box::new(body), - } - } - - pub fn identifiers(&self) -> &Option> { + pub fn parameters(&self) -> &Vec<(Identifier, Type)> { &self.parameters } +} - pub fn body(&self) -> &Block { - &self.body +impl AbstractTree for Function { + fn from_syntax_node(source: &str, node: Node) -> Result { + let mut parameters = Vec::new(); + let mut previous_identifier = None; + + for index in 1..node.child_count() - 2 { + let child = node.child(index).unwrap(); + + if child.kind() == "identifier" { + previous_identifier = Some(Identifier::from_syntax_node(source, child)?); + } + + if child.kind() == "type" { + let identifier = previous_identifier.take().unwrap(); + let r#type = Type::from_syntax_node(source, child)?; + + parameters.push((identifier, r#type)) + } + } + + let return_type_node = node.child_by_field_name("return_type"); + let return_type = if let Some(child) = return_type_node { + Some(Type::from_syntax_node(source, child)?) + } else { + None + }; + + let body_node = node.child_by_field_name("body").unwrap(); + let body = Block::from_syntax_node(source, body_node)?; + + Ok(Function { + parameters, + return_type, + body, + }) + } + + fn run(&self, source: &str, context: &mut Map) -> Result { + println!("{self}"); + + let return_value = self.body.run(source, context)?; + + if let Some(r#type) = &self.return_type { + r#type.check(&return_value)?; + } else if !return_value.is_empty() { + return Err(Error::ExpectedEmpty { + actual: return_value.clone(), + }); + } + + Ok(return_value) } } @@ -31,8 +76,8 @@ impl Display for Function { fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result { write!( f, - "function < {:?} > {{ {:?} }}", // TODO: Correct this output - self.parameters, self.body + "Function {{ parameters: {:?}, return_type: {:?}, body: {:?} }}", + self.parameters, self.return_type, self.body ) } } diff --git a/tree-sitter-dust/corpus/functions.txt b/tree-sitter-dust/corpus/functions.txt index 313b437..97dfaae 100644 --- a/tree-sitter-dust/corpus/functions.txt +++ b/tree-sitter-dust/corpus/functions.txt @@ -2,7 +2,7 @@ Simple Function ================================================================================ -=> { "Hiya" } +|| { "Hiya" } -------------------------------------------------------------------------------- @@ -11,6 +11,7 @@ Simple Function (expression (value (function + (type) (block (statement (expression @@ -21,7 +22,7 @@ Simple Function Function Assignment ================================================================================ -x = => { "Hiya" } +x = || { "Hiya" } -------------------------------------------------------------------------------- @@ -34,6 +35,7 @@ x = => { "Hiya" } (expression (value (function + (type) (block (statement (expression @@ -62,7 +64,7 @@ Function Call Complex Function ================================================================================ -|message number | => { +|message number | { (output message) (output number) } diff --git a/tree-sitter-dust/grammar.js b/tree-sitter-dust/grammar.js index f5a6699..5158492 100644 --- a/tree-sitter-dust/grammar.js +++ b/tree-sitter-dust/grammar.js @@ -275,19 +275,19 @@ module.exports = grammar({ ), function: $ => seq( - optional(seq( - '|', - field('parameter', repeat(seq( - $.identifier, - $.type, - optional(',') - ))), - '|', - )), - '=>', + '|', + repeat($._function_parameters), + '|', + optional(field('return_type', $.type)), field('body', $.block), ), + _function_parameters: $ => seq( + $.identifier, + $.type, + optional(','), + ), + function_call: $ => prec.right(1, seq( '(', choice( diff --git a/tree-sitter-dust/src/grammar.json b/tree-sitter-dust/src/grammar.json index 552c445..22fc6cd 100644 --- a/tree-sitter-dust/src/grammar.json +++ b/tree-sitter-dust/src/grammar.json @@ -1158,63 +1158,37 @@ "function": { "type": "SEQ", "members": [ + { + "type": "STRING", + "value": "|" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_function_parameters" + } + }, + { + "type": "STRING", + "value": "|" + }, { "type": "CHOICE", "members": [ { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "|" - }, - { - "type": "FIELD", - "name": "parameter", - "content": { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "type" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] - } - } - }, - { - "type": "STRING", - "value": "|" - } - ] + "type": "FIELD", + "name": "return_type", + "content": { + "type": "SYMBOL", + "name": "type" + } }, { "type": "BLANK" } ] }, - { - "type": "STRING", - "value": "=>" - }, { "type": "FIELD", "name": "body", @@ -1225,6 +1199,31 @@ } ] }, + "_function_parameters": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "type" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + } + ] + }, "function_call": { "type": "PREC_RIGHT", "value": 1, diff --git a/tree-sitter-dust/src/node-types.json b/tree-sitter-dust/src/node-types.json index 52cb4a9..614c139 100644 --- a/tree-sitter-dust/src/node-types.json +++ b/tree-sitter-dust/src/node-types.json @@ -195,24 +195,30 @@ } ] }, - "parameter": { - "multiple": true, + "return_type": { + "multiple": false, "required": false, "types": [ - { - "type": ",", - "named": false - }, - { - "type": "identifier", - "named": true - }, { "type": "type", "named": true } ] } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "type", + "named": true + } + ] } }, { diff --git a/tree-sitter-dust/src/parser.c b/tree-sitter-dust/src/parser.c index 1e7e355..2090697 100644 --- a/tree-sitter-dust/src/parser.c +++ b/tree-sitter-dust/src/parser.c @@ -6,15 +6,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 461 +#define STATE_COUNT 374 #define LARGE_STATE_COUNT 2 -#define SYMBOL_COUNT 136 +#define SYMBOL_COUNT 137 #define ALIAS_COUNT 0 #define TOKEN_COUNT 91 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 6 #define MAX_ALIAS_SEQUENCE_LENGTH 5 -#define PRODUCTION_ID_COUNT 6 +#define PRODUCTION_ID_COUNT 7 enum { sym_identifier = 1, @@ -140,18 +140,19 @@ enum { sym_use = 121, sym_type = 122, sym_function = 123, - sym_function_call = 124, - sym__context_defined_function = 125, - sym_built_in_function = 126, - sym_yield = 127, - sym__built_in_function_name = 128, - aux_sym_root_repeat1 = 129, - aux_sym_list_repeat1 = 130, - aux_sym_map_repeat1 = 131, - aux_sym_if_else_repeat1 = 132, - aux_sym_match_repeat1 = 133, - aux_sym_identifier_list_repeat1 = 134, - aux_sym_function_repeat1 = 135, + sym__function_parameters = 124, + sym_function_call = 125, + sym__context_defined_function = 126, + sym_built_in_function = 127, + sym_yield = 128, + sym__built_in_function_name = 129, + aux_sym_root_repeat1 = 130, + aux_sym_list_repeat1 = 131, + aux_sym_map_repeat1 = 132, + aux_sym_if_else_repeat1 = 133, + aux_sym_match_repeat1 = 134, + aux_sym_identifier_list_repeat1 = 135, + aux_sym_function_repeat1 = 136, }; static const char * const ts_symbol_names[] = { @@ -279,6 +280,7 @@ static const char * const ts_symbol_names[] = { [sym_use] = "use", [sym_type] = "type", [sym_function] = "function", + [sym__function_parameters] = "_function_parameters", [sym_function_call] = "function_call", [sym__context_defined_function] = "_context_defined_function", [sym_built_in_function] = "built_in_function", @@ -418,6 +420,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_use] = sym_use, [sym_type] = sym_type, [sym_function] = sym_function, + [sym__function_parameters] = sym__function_parameters, [sym_function_call] = sym_function_call, [sym__context_defined_function] = sym__context_defined_function, [sym_built_in_function] = sym_built_in_function, @@ -929,6 +932,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__function_parameters] = { + .visible = false, + .named = true, + }, [sym_function_call] = { .visible = true, .named = true, @@ -983,7 +990,7 @@ enum { field_assignment_operator = 1, field_body = 2, field_identifier = 3, - field_parameter = 4, + field_return_type = 4, field_statement = 5, field_type = 6, }; @@ -993,26 +1000,27 @@ static const char * const ts_field_names[] = { [field_assignment_operator] = "assignment_operator", [field_body] = "body", [field_identifier] = "identifier", - [field_parameter] = "parameter", + [field_return_type] = "return_type", [field_statement] = "statement", [field_type] = "type", }; static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { - [1] = {.index = 0, .length = 1}, - [2] = {.index = 1, .length = 3}, + [1] = {.index = 0, .length = 3}, + [2] = {.index = 3, .length = 1}, [3] = {.index = 4, .length = 4}, - [4] = {.index = 8, .length = 1}, - [5] = {.index = 9, .length = 2}, + [4] = {.index = 8, .length = 2}, + [5] = {.index = 10, .length = 1}, + [6] = {.index = 11, .length = 2}, }; static const TSFieldMapEntry ts_field_map_entries[] = { [0] = - {field_body, 1}, - [1] = {field_assignment_operator, 1}, {field_identifier, 0}, {field_statement, 2}, + [3] = + {field_body, 2}, [4] = {field_assignment_operator, 2}, {field_identifier, 0}, @@ -1020,9 +1028,12 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_type, 1}, [8] = {field_body, 3}, - [9] = + {field_return_type, 2}, + [10] = + {field_body, 3}, + [11] = {field_body, 4}, - {field_parameter, 1}, + {field_return_type, 3}, }; static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { @@ -1039,69 +1050,69 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2] = 2, [3] = 2, [4] = 2, - [5] = 2, - [6] = 2, - [7] = 7, - [8] = 7, - [9] = 7, - [10] = 7, - [11] = 7, + [5] = 5, + [6] = 5, + [7] = 5, + [8] = 8, + [9] = 9, + [10] = 9, + [11] = 9, [12] = 12, - [13] = 13, - [14] = 13, - [15] = 15, - [16] = 13, - [17] = 15, - [18] = 13, - [19] = 15, - [20] = 13, - [21] = 15, - [22] = 13, - [23] = 15, - [24] = 13, - [25] = 13, - [26] = 26, - [27] = 15, - [28] = 15, - [29] = 13, - [30] = 15, - [31] = 15, - [32] = 32, - [33] = 33, - [34] = 32, - [35] = 33, - [36] = 32, - [37] = 32, - [38] = 33, - [39] = 33, - [40] = 33, - [41] = 33, - [42] = 32, - [43] = 32, - [44] = 33, - [45] = 32, - [46] = 33, - [47] = 32, - [48] = 32, - [49] = 33, + [13] = 12, + [14] = 12, + [15] = 9, + [16] = 12, + [17] = 12, + [18] = 9, + [19] = 12, + [20] = 9, + [21] = 12, + [22] = 22, + [23] = 9, + [24] = 24, + [25] = 24, + [26] = 24, + [27] = 27, + [28] = 24, + [29] = 27, + [30] = 27, + [31] = 24, + [32] = 27, + [33] = 27, + [34] = 24, + [35] = 27, + [36] = 24, + [37] = 27, + [38] = 38, + [39] = 39, + [40] = 38, + [41] = 41, + [42] = 41, + [43] = 39, + [44] = 44, + [45] = 45, + [46] = 45, + [47] = 47, + [48] = 48, + [49] = 49, [50] = 50, - [51] = 51, - [52] = 50, - [53] = 51, - [54] = 54, + [51] = 47, + [52] = 48, + [53] = 50, + [54] = 49, [55] = 55, - [56] = 54, + [56] = 56, [57] = 57, [58] = 58, [59] = 59, - [60] = 58, + [60] = 60, [61] = 61, [62] = 62, - [63] = 57, - [64] = 61, + [63] = 63, + [64] = 64, [65] = 65, - [66] = 62, - [67] = 59, + [66] = 66, + [67] = 67, [68] = 68, [69] = 69, [70] = 70, @@ -1110,391 +1121,304 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [73] = 73, [74] = 74, [75] = 75, - [76] = 76, + [76] = 75, [77] = 77, [78] = 78, [79] = 79, - [80] = 80, + [80] = 78, [81] = 81, [82] = 82, - [83] = 83, - [84] = 84, - [85] = 61, - [86] = 62, - [87] = 57, - [88] = 88, - [89] = 59, - [90] = 58, - [91] = 58, - [92] = 92, - [93] = 61, - [94] = 94, - [95] = 59, - [96] = 96, + [83] = 45, + [84] = 45, + [85] = 50, + [86] = 48, + [87] = 47, + [88] = 49, + [89] = 58, + [90] = 49, + [91] = 59, + [92] = 47, + [93] = 48, + [94] = 50, + [95] = 70, + [96] = 63, [97] = 97, - [98] = 97, - [99] = 92, - [100] = 57, - [101] = 62, - [102] = 69, - [103] = 76, - [104] = 73, - [105] = 83, - [106] = 81, - [107] = 68, - [108] = 78, - [109] = 70, - [110] = 80, - [111] = 72, - [112] = 74, - [113] = 75, - [114] = 79, - [115] = 71, - [116] = 77, - [117] = 117, - [118] = 118, - [119] = 61, - [120] = 57, - [121] = 58, - [122] = 58, - [123] = 59, - [124] = 62, - [125] = 61, - [126] = 62, - [127] = 59, - [128] = 74, - [129] = 68, - [130] = 57, - [131] = 77, - [132] = 132, - [133] = 71, - [134] = 72, - [135] = 73, - [136] = 76, - [137] = 79, - [138] = 138, - [139] = 139, - [140] = 75, + [98] = 98, + [99] = 57, + [100] = 56, + [101] = 65, + [102] = 64, + [103] = 69, + [104] = 104, + [105] = 71, + [106] = 66, + [107] = 61, + [108] = 68, + [109] = 67, + [110] = 60, + [111] = 111, + [112] = 72, + [113] = 113, + [114] = 48, + [115] = 50, + [116] = 45, + [117] = 81, + [118] = 47, + [119] = 82, + [120] = 45, + [121] = 121, + [122] = 49, + [123] = 58, + [124] = 124, + [125] = 65, + [126] = 64, + [127] = 66, + [128] = 124, + [129] = 57, + [130] = 130, + [131] = 63, + [132] = 67, + [133] = 70, + [134] = 56, + [135] = 72, + [136] = 60, + [137] = 68, + [138] = 124, + [139] = 61, + [140] = 71, [141] = 69, - [142] = 78, - [143] = 70, - [144] = 83, - [145] = 145, - [146] = 81, - [147] = 80, + [142] = 47, + [143] = 48, + [144] = 50, + [145] = 49, + [146] = 146, + [147] = 59, [148] = 148, - [149] = 118, - [150] = 117, + [149] = 148, + [150] = 150, [151] = 151, - [152] = 152, - [153] = 153, - [154] = 152, - [155] = 68, - [156] = 156, - [157] = 74, - [158] = 152, - [159] = 152, - [160] = 152, - [161] = 161, - [162] = 162, + [152] = 150, + [153] = 58, + [154] = 154, + [155] = 155, + [156] = 59, + [157] = 148, + [158] = 59, + [159] = 159, + [160] = 160, + [161] = 58, + [162] = 150, [163] = 163, - [164] = 163, + [164] = 74, [165] = 165, - [166] = 161, - [167] = 163, - [168] = 161, - [169] = 163, - [170] = 163, - [171] = 161, - [172] = 161, + [166] = 166, + [167] = 167, + [168] = 168, + [169] = 169, + [170] = 170, + [171] = 55, + [172] = 169, [173] = 173, [174] = 174, [175] = 175, [176] = 176, - [177] = 58, + [177] = 177, [178] = 59, [179] = 179, [180] = 58, [181] = 181, - [182] = 58, - [183] = 68, - [184] = 57, - [185] = 59, - [186] = 61, - [187] = 62, + [182] = 182, + [183] = 183, + [184] = 184, + [185] = 185, + [186] = 62, + [187] = 187, [188] = 188, [189] = 189, - [190] = 74, - [191] = 191, - [192] = 192, - [193] = 193, - [194] = 194, - [195] = 195, + [190] = 185, + [191] = 187, + [192] = 189, + [193] = 185, + [194] = 189, + [195] = 187, [196] = 196, [197] = 197, - [198] = 198, - [199] = 61, - [200] = 196, - [201] = 58, - [202] = 57, - [203] = 62, - [204] = 57, - [205] = 205, - [206] = 61, - [207] = 207, - [208] = 208, - [209] = 205, - [210] = 62, - [211] = 205, - [212] = 208, - [213] = 207, - [214] = 62, - [215] = 61, - [216] = 57, - [217] = 217, - [218] = 59, - [219] = 219, - [220] = 205, - [221] = 208, - [222] = 207, - [223] = 223, - [224] = 224, - [225] = 225, - [226] = 226, - [227] = 205, - [228] = 207, - [229] = 208, - [230] = 205, - [231] = 223, - [232] = 207, - [233] = 224, - [234] = 224, - [235] = 207, - [236] = 236, - [237] = 65, - [238] = 208, - [239] = 236, - [240] = 224, - [241] = 207, - [242] = 208, - [243] = 208, - [244] = 244, - [245] = 205, - [246] = 224, - [247] = 219, - [248] = 224, - [249] = 205, - [250] = 225, - [251] = 207, - [252] = 208, - [253] = 205, - [254] = 244, - [255] = 207, - [256] = 224, - [257] = 208, - [258] = 217, - [259] = 205, - [260] = 244, - [261] = 244, + [198] = 189, + [199] = 183, + [200] = 185, + [201] = 201, + [202] = 181, + [203] = 187, + [204] = 204, + [205] = 185, + [206] = 189, + [207] = 204, + [208] = 185, + [209] = 189, + [210] = 187, + [211] = 211, + [212] = 204, + [213] = 187, + [214] = 188, + [215] = 184, + [216] = 187, + [217] = 204, + [218] = 185, + [219] = 189, + [220] = 188, + [221] = 197, + [222] = 196, + [223] = 204, + [224] = 204, + [225] = 201, + [226] = 182, + [227] = 188, + [228] = 211, + [229] = 189, + [230] = 185, + [231] = 204, + [232] = 187, + [233] = 204, + [234] = 45, + [235] = 47, + [236] = 75, + [237] = 48, + [238] = 238, + [239] = 50, + [240] = 45, + [241] = 49, + [242] = 75, + [243] = 77, + [244] = 79, + [245] = 47, + [246] = 49, + [247] = 247, + [248] = 248, + [249] = 249, + [250] = 249, + [251] = 247, + [252] = 48, + [253] = 253, + [254] = 50, + [255] = 248, + [256] = 253, + [257] = 257, + [258] = 257, + [259] = 59, + [260] = 58, + [261] = 177, [262] = 262, - [263] = 224, - [264] = 262, + [263] = 263, + [264] = 264, [265] = 265, - [266] = 59, - [267] = 224, - [268] = 88, - [269] = 265, - [270] = 224, - [271] = 226, - [272] = 244, - [273] = 207, - [274] = 208, - [275] = 83, - [276] = 77, - [277] = 69, - [278] = 74, - [279] = 71, - [280] = 68, - [281] = 76, - [282] = 81, - [283] = 80, - [284] = 68, - [285] = 82, - [286] = 74, - [287] = 80, - [288] = 78, - [289] = 72, - [290] = 81, - [291] = 77, - [292] = 75, - [293] = 79, - [294] = 70, - [295] = 75, - [296] = 83, - [297] = 73, - [298] = 72, - [299] = 71, - [300] = 76, - [301] = 79, - [302] = 73, - [303] = 78, - [304] = 70, - [305] = 69, - [306] = 306, - [307] = 97, - [308] = 97, - [309] = 96, - [310] = 94, + [266] = 266, + [267] = 267, + [268] = 104, + [269] = 98, + [270] = 270, + [271] = 113, + [272] = 272, + [273] = 130, + [274] = 146, + [275] = 275, + [276] = 275, + [277] = 277, + [278] = 277, + [279] = 275, + [280] = 277, + [281] = 277, + [282] = 275, + [283] = 283, + [284] = 167, + [285] = 283, + [286] = 283, + [287] = 173, + [288] = 170, + [289] = 289, + [290] = 168, + [291] = 283, + [292] = 292, + [293] = 292, + [294] = 294, + [295] = 289, + [296] = 174, + [297] = 169, + [298] = 292, + [299] = 166, + [300] = 163, + [301] = 169, + [302] = 165, + [303] = 179, + [304] = 175, + [305] = 176, + [306] = 292, + [307] = 307, + [308] = 308, + [309] = 309, + [310] = 310, [311] = 311, [312] = 311, [313] = 313, - [314] = 313, + [314] = 311, [315] = 315, - [316] = 316, - [317] = 316, - [318] = 315, - [319] = 319, - [320] = 319, - [321] = 74, - [322] = 68, - [323] = 193, + [316] = 310, + [317] = 311, + [318] = 310, + [319] = 310, + [320] = 320, + [321] = 321, + [322] = 308, + [323] = 321, [324] = 324, - [325] = 325, - [326] = 326, + [325] = 308, + [326] = 320, [327] = 327, [328] = 328, [329] = 329, - [330] = 145, - [331] = 132, - [332] = 332, - [333] = 148, - [334] = 156, - [335] = 74, - [336] = 153, - [337] = 68, - [338] = 338, - [339] = 196, - [340] = 197, - [341] = 198, - [342] = 176, - [343] = 179, - [344] = 196, - [345] = 194, - [346] = 195, - [347] = 347, - [348] = 188, - [349] = 189, - [350] = 181, - [351] = 191, - [352] = 192, - [353] = 347, - [354] = 354, - [355] = 355, + [330] = 330, + [331] = 331, + [332] = 331, + [333] = 330, + [334] = 330, + [335] = 330, + [336] = 336, + [337] = 330, + [338] = 330, + [339] = 330, + [340] = 340, + [341] = 330, + [342] = 342, + [343] = 343, + [344] = 344, + [345] = 345, + [346] = 346, + [347] = 345, + [348] = 346, + [349] = 346, + [350] = 346, + [351] = 346, + [352] = 352, + [353] = 353, + [354] = 343, + [355] = 346, [356] = 356, [357] = 357, - [358] = 357, - [359] = 359, - [360] = 357, - [361] = 361, - [362] = 362, - [363] = 359, - [364] = 356, - [365] = 357, - [366] = 359, + [358] = 344, + [359] = 346, + [360] = 360, + [361] = 357, + [362] = 344, + [363] = 363, + [364] = 364, + [365] = 352, + [366] = 356, [367] = 367, - [368] = 368, - [369] = 359, - [370] = 354, - [371] = 357, - [372] = 356, - [373] = 362, - [374] = 356, - [375] = 354, - [376] = 362, - [377] = 367, - [378] = 359, - [379] = 379, - [380] = 379, - [381] = 354, - [382] = 367, - [383] = 383, - [384] = 384, - [385] = 367, - [386] = 354, - [387] = 367, - [388] = 361, - [389] = 389, - [390] = 390, - [391] = 391, - [392] = 356, - [393] = 393, - [394] = 362, - [395] = 362, - [396] = 396, - [397] = 397, - [398] = 396, - [399] = 396, - [400] = 396, - [401] = 401, - [402] = 402, - [403] = 396, - [404] = 396, - [405] = 396, - [406] = 406, - [407] = 396, - [408] = 408, - [409] = 396, - [410] = 396, - [411] = 406, - [412] = 412, - [413] = 413, - [414] = 414, - [415] = 415, - [416] = 416, - [417] = 417, - [418] = 418, - [419] = 419, - [420] = 420, - [421] = 415, - [422] = 418, - [423] = 423, - [424] = 419, - [425] = 425, - [426] = 426, - [427] = 415, - [428] = 425, - [429] = 415, - [430] = 412, - [431] = 431, - [432] = 425, - [433] = 426, - [434] = 426, - [435] = 413, - [436] = 419, - [437] = 426, - [438] = 420, - [439] = 431, - [440] = 425, - [441] = 415, - [442] = 425, - [443] = 418, - [444] = 419, - [445] = 414, - [446] = 423, - [447] = 418, - [448] = 448, - [449] = 449, - [450] = 423, - [451] = 418, - [452] = 426, - [453] = 423, - [454] = 423, - [455] = 418, - [456] = 418, - [457] = 418, - [458] = 418, - [459] = 416, - [460] = 419, + [368] = 364, + [369] = 353, + [370] = 345, + [371] = 371, + [372] = 363, + [373] = 364, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -1502,91 +1426,92 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(29); - if (lookahead == '!') ADVANCE(10); - if (lookahead == '"') ADVANCE(5); + if (eof) ADVANCE(28); + if (lookahead == '!') ADVANCE(11); + if (lookahead == '"') ADVANCE(7); if (lookahead == '#') ADVANCE(20); - if (lookahead == '%') ADVANCE(67); - if (lookahead == '&') ADVANCE(7); - if (lookahead == '\'') ADVANCE(8); - if (lookahead == '(') ADVANCE(35); - if (lookahead == ')') ADVANCE(36); - if (lookahead == '*') ADVANCE(65); - if (lookahead == '+') ADVANCE(60); - if (lookahead == ',') ADVANCE(37); - if (lookahead == '-') ADVANCE(63); - if (lookahead == '.') ADVANCE(9); - if (lookahead == '/') ADVANCE(66); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49); - if (lookahead == ':') ADVANCE(57); - if (lookahead == ';') ADVANCE(34); - if (lookahead == '<') ADVANCE(75); + if (lookahead == '%') ADVANCE(66); + if (lookahead == '&') ADVANCE(8); + if (lookahead == '\'') ADVANCE(9); + if (lookahead == '(') ADVANCE(34); + if (lookahead == ')') ADVANCE(35); + if (lookahead == '*') ADVANCE(64); + if (lookahead == '+') ADVANCE(59); + if (lookahead == ',') ADVANCE(36); + if (lookahead == '-') ADVANCE(62); + if (lookahead == '.') ADVANCE(10); + if (lookahead == '/') ADVANCE(65); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48); + if (lookahead == ':') ADVANCE(56); + if (lookahead == ';') ADVANCE(33); + if (lookahead == '<') ADVANCE(74); if (lookahead == '=') ADVANCE(55); - if (lookahead == '>') ADVANCE(73); - if (lookahead == '[') ADVANCE(52); - if (lookahead == ']') ADVANCE(53); + if (lookahead == '>') ADVANCE(72); + if (lookahead == '[') ADVANCE(51); + 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(84); - if (lookahead == '}') ADVANCE(33); + if (lookahead == 'a') ADVANCE(44); + if (lookahead == 'e') ADVANCE(42); + if (lookahead == '{') ADVANCE(31); + if (lookahead == '|') ADVANCE(83); + 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(10); - if (lookahead == '"') ADVANCE(5); + if (lookahead == '!') ADVANCE(11); + if (lookahead == '"') ADVANCE(7); if (lookahead == '#') ADVANCE(20); - if (lookahead == '%') ADVANCE(67); - if (lookahead == '&') ADVANCE(7); - if (lookahead == '\'') ADVANCE(8); - if (lookahead == '(') ADVANCE(35); - if (lookahead == ')') ADVANCE(36); - if (lookahead == '*') ADVANCE(65); - if (lookahead == '+') ADVANCE(59); - if (lookahead == ',') ADVANCE(37); - if (lookahead == '-') ADVANCE(64); - if (lookahead == '.') ADVANCE(9); - if (lookahead == '/') ADVANCE(66); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49); - if (lookahead == ':') ADVANCE(57); - if (lookahead == ';') ADVANCE(34); - if (lookahead == '<') ADVANCE(75); - if (lookahead == '=') ADVANCE(55); - if (lookahead == '>') ADVANCE(73); - if (lookahead == '[') ADVANCE(52); - if (lookahead == ']') ADVANCE(53); + if (lookahead == '%') ADVANCE(66); + if (lookahead == '&') ADVANCE(8); + if (lookahead == '\'') ADVANCE(9); + if (lookahead == '(') ADVANCE(34); + if (lookahead == ')') ADVANCE(35); + if (lookahead == '*') ADVANCE(64); + if (lookahead == '+') ADVANCE(58); + if (lookahead == ',') ADVANCE(36); + if (lookahead == '-') ADVANCE(63); + if (lookahead == '.') ADVANCE(10); + if (lookahead == '/') ADVANCE(65); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48); + if (lookahead == ':') ADVANCE(56); + if (lookahead == ';') ADVANCE(33); + if (lookahead == '<') ADVANCE(74); + if (lookahead == '=') ADVANCE(54); + if (lookahead == '>') ADVANCE(72); + if (lookahead == '[') ADVANCE(51); + if (lookahead == ']') ADVANCE(52); if (lookahead == '`') ADVANCE(14); - if (lookahead == '|') ADVANCE(84); + if (lookahead == '|') ADVANCE(83); 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(10); + if (lookahead == '!') ADVANCE(11); if (lookahead == '#') ADVANCE(20); - if (lookahead == '%') ADVANCE(67); - if (lookahead == '&') ADVANCE(7); - if (lookahead == ')') ADVANCE(36); - if (lookahead == '*') ADVANCE(65); - if (lookahead == '+') ADVANCE(60); - if (lookahead == ',') ADVANCE(37); - if (lookahead == '-') ADVANCE(61); - if (lookahead == '.') ADVANCE(9); - if (lookahead == '/') ADVANCE(66); - if (lookahead == ':') ADVANCE(57); - if (lookahead == ';') ADVANCE(34); - if (lookahead == '<') ADVANCE(75); - if (lookahead == '=') ADVANCE(54); - if (lookahead == '>') ADVANCE(73); + if (lookahead == '%') ADVANCE(66); + if (lookahead == '&') ADVANCE(8); + if (lookahead == ')') ADVANCE(35); + if (lookahead == '*') ADVANCE(64); + if (lookahead == '+') ADVANCE(59); + if (lookahead == ',') ADVANCE(36); + if (lookahead == '-') ADVANCE(60); + if (lookahead == '.') ADVANCE(10); + if (lookahead == '/') ADVANCE(65); + if (lookahead == ':') ADVANCE(56); + if (lookahead == ';') ADVANCE(33); + if (lookahead == '<') ADVANCE(74); + if (lookahead == '=') ADVANCE(55); + if (lookahead == '>') ADVANCE(72); + if (lookahead == '{') ADVANCE(31); if (lookahead == '|') ADVANCE(21); if (lookahead == '\t' || lookahead == '\n' || @@ -1594,26 +1519,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(2) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(47); END_STATE(); case 3: - if (lookahead == '!') ADVANCE(10); + if (lookahead == '!') ADVANCE(11); if (lookahead == '#') ADVANCE(20); - if (lookahead == '%') ADVANCE(67); - if (lookahead == '&') ADVANCE(7); - if (lookahead == ')') ADVANCE(36); - if (lookahead == '*') ADVANCE(65); + if (lookahead == '%') ADVANCE(66); + if (lookahead == '&') ADVANCE(8); + if (lookahead == ')') ADVANCE(35); + if (lookahead == '*') ADVANCE(64); if (lookahead == '+') ADVANCE(59); - if (lookahead == ',') ADVANCE(37); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(9); - if (lookahead == '/') ADVANCE(66); - if (lookahead == ':') ADVANCE(57); - if (lookahead == ';') ADVANCE(34); - if (lookahead == '<') ADVANCE(75); - if (lookahead == '=') ADVANCE(12); - if (lookahead == '>') ADVANCE(73); - if (lookahead == '{') ADVANCE(32); + if (lookahead == ',') ADVANCE(36); + if (lookahead == '-') ADVANCE(60); + if (lookahead == '.') ADVANCE(10); + if (lookahead == '/') ADVANCE(65); + if (lookahead == ':') ADVANCE(56); + if (lookahead == ';') ADVANCE(33); + if (lookahead == '<') ADVANCE(74); + if (lookahead == '=') ADVANCE(54); + if (lookahead == '>') ADVANCE(72); + if (lookahead == '{') ADVANCE(31); if (lookahead == '|') ADVANCE(21); if (lookahead == '\t' || lookahead == '\n' || @@ -1621,82 +1546,118 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 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(5); + if (lookahead == '!') ADVANCE(11); if (lookahead == '#') ADVANCE(20); - if (lookahead == '\'') ADVANCE(8); - if (lookahead == '(') ADVANCE(35); - if (lookahead == ')') ADVANCE(36); - if (lookahead == '+') ADVANCE(11); - if (lookahead == ',') ADVANCE(37); - if (lookahead == '-') ADVANCE(23); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49); - if (lookahead == ';') ADVANCE(34); - if (lookahead == '=') ADVANCE(56); - if (lookahead == '[') ADVANCE(52); - if (lookahead == ']') ADVANCE(53); - if (lookahead == '`') ADVANCE(14); - if (lookahead == '{') ADVANCE(32); - if (lookahead == '|') ADVANCE(83); + if (lookahead == '%') ADVANCE(66); + if (lookahead == '&') ADVANCE(8); + if (lookahead == ')') ADVANCE(35); + if (lookahead == '*') ADVANCE(64); + if (lookahead == '+') ADVANCE(58); + if (lookahead == ',') ADVANCE(36); + if (lookahead == '-') ADVANCE(61); + if (lookahead == '.') ADVANCE(10); + if (lookahead == '/') ADVANCE(65); + if (lookahead == ':') ADVANCE(56); + if (lookahead == ';') ADVANCE(33); + if (lookahead == '<') ADVANCE(74); + if (lookahead == '=') ADVANCE(13); + if (lookahead == '>') ADVANCE(72); + if (lookahead == 'e') ADVANCE(42); + if (lookahead == '{') ADVANCE(31); + if (lookahead == '|') ADVANCE(21); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(4) if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(48); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(47); END_STATE(); case 5: - if (lookahead == '"') ADVANCE(51); - if (lookahead != 0) ADVANCE(5); + if (lookahead == '!') ADVANCE(11); + if (lookahead == '#') ADVANCE(20); + if (lookahead == '%') ADVANCE(66); + if (lookahead == '&') ADVANCE(8); + if (lookahead == '*') ADVANCE(64); + if (lookahead == '+') ADVANCE(58); + if (lookahead == '-') ADVANCE(61); + if (lookahead == '.') ADVANCE(10); + if (lookahead == '/') ADVANCE(65); + if (lookahead == ':') ADVANCE(56); + if (lookahead == '<') ADVANCE(74); + if (lookahead == '=') ADVANCE(13); + if (lookahead == '>') ADVANCE(72); + if (lookahead == '{') ADVANCE(31); + if (lookahead == '|') ADVANCE(21); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(5) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(47); END_STATE(); case 6: + if (lookahead == '"') ADVANCE(7); if (lookahead == '#') ADVANCE(20); - if (lookahead == ')') ADVANCE(36); - if (lookahead == ',') ADVANCE(37); - if (lookahead == ';') ADVANCE(34); - if (lookahead == 'e') ADVANCE(43); + if (lookahead == '\'') ADVANCE(9); + if (lookahead == '(') ADVANCE(34); + if (lookahead == ')') ADVANCE(35); + if (lookahead == '+') ADVANCE(12); + if (lookahead == ',') ADVANCE(36); + if (lookahead == '-') ADVANCE(23); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48); + if (lookahead == ';') ADVANCE(33); + if (lookahead == '<') ADVANCE(73); + if (lookahead == '=') ADVANCE(53); + if (lookahead == '[') ADVANCE(51); + if (lookahead == ']') ADVANCE(52); + if (lookahead == '`') ADVANCE(14); + if (lookahead == '{') ADVANCE(31); + if (lookahead == '|') ADVANCE(82); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(6) if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(47); END_STATE(); case 7: - if (lookahead == '&') ADVANCE(70); + if (lookahead == '"') ADVANCE(50); + if (lookahead != 0) ADVANCE(7); END_STATE(); case 8: - if (lookahead == '\'') ADVANCE(51); - if (lookahead != 0) ADVANCE(8); + if (lookahead == '&') ADVANCE(69); END_STATE(); case 9: - if (lookahead == '.') ADVANCE(58); + if (lookahead == '\'') ADVANCE(50); + if (lookahead != 0) ADVANCE(9); END_STATE(); case 10: - if (lookahead == '=') ADVANCE(69); + if (lookahead == '.') ADVANCE(57); END_STATE(); case 11: - if (lookahead == '=') ADVANCE(78); + if (lookahead == '=') ADVANCE(68); END_STATE(); case 12: - if (lookahead == '=') ADVANCE(68); - if (lookahead == '>') ADVANCE(81); + if (lookahead == '=') ADVANCE(77); END_STATE(); case 13: - if (lookahead == '>') ADVANCE(81); + if (lookahead == '=') ADVANCE(67); + if (lookahead == '>') ADVANCE(80); END_STATE(); case 14: - if (lookahead == '`') ADVANCE(51); + if (lookahead == '`') ADVANCE(50); if (lookahead != 0) ADVANCE(14); END_STATE(); case 15: if (lookahead == 'f') ADVANCE(18); END_STATE(); case 16: - if (lookahead == 'f') ADVANCE(80); + if (lookahead == 'f') ADVANCE(79); END_STATE(); case 17: if (lookahead == 'i') ADVANCE(16); @@ -1705,384 +1666,348 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'o') ADVANCE(19); END_STATE(); case 19: - if (lookahead == 'r') ADVANCE(82); + if (lookahead == 'r') ADVANCE(81); END_STATE(); case 20: - if (lookahead == '|') ADVANCE(31); + if (lookahead == '|') ADVANCE(30); if (lookahead == '\n' || - lookahead == '#') ADVANCE(30); + lookahead == '#') ADVANCE(29); if (lookahead != 0) ADVANCE(20); END_STATE(); case 21: - if (lookahead == '|') ADVANCE(71); + if (lookahead == '|') ADVANCE(70); END_STATE(); case 22: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48); END_STATE(); case 23: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49); - if (lookahead == '=') ADVANCE(79); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48); + if (lookahead == '=') ADVANCE(78); END_STATE(); case 24: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(50); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49); END_STATE(); case 25: - if (eof) ADVANCE(29); - if (lookahead == '!') ADVANCE(10); - if (lookahead == '"') ADVANCE(5); + if (eof) ADVANCE(28); + if (lookahead == '!') ADVANCE(11); + if (lookahead == '"') ADVANCE(7); if (lookahead == '#') ADVANCE(20); - if (lookahead == '%') ADVANCE(67); - if (lookahead == '&') ADVANCE(7); - if (lookahead == '\'') ADVANCE(8); - if (lookahead == '(') ADVANCE(35); - if (lookahead == '*') ADVANCE(65); - if (lookahead == '+') ADVANCE(60); - if (lookahead == '-') ADVANCE(63); - if (lookahead == '.') ADVANCE(9); - if (lookahead == '/') ADVANCE(66); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49); - if (lookahead == ':') ADVANCE(57); - if (lookahead == ';') ADVANCE(34); - if (lookahead == '<') ADVANCE(75); - if (lookahead == '=') ADVANCE(55); - if (lookahead == '>') ADVANCE(73); - if (lookahead == '[') ADVANCE(52); + if (lookahead == '%') ADVANCE(66); + if (lookahead == '&') ADVANCE(8); + if (lookahead == '\'') ADVANCE(9); + if (lookahead == '(') ADVANCE(34); + if (lookahead == '*') ADVANCE(64); + if (lookahead == '+') ADVANCE(59); + if (lookahead == '-') ADVANCE(62); + if (lookahead == '.') ADVANCE(10); + if (lookahead == '/') ADVANCE(65); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48); + if (lookahead == ':') ADVANCE(56); + if (lookahead == ';') ADVANCE(33); + if (lookahead == '<') ADVANCE(74); + if (lookahead == '=') ADVANCE(54); + if (lookahead == '>') ADVANCE(72); + if (lookahead == '[') ADVANCE(51); if (lookahead == '`') ADVANCE(14); - if (lookahead == 'a') ADVANCE(45); - if (lookahead == '{') ADVANCE(32); - if (lookahead == '|') ADVANCE(84); - if (lookahead == '}') ADVANCE(33); + if (lookahead == 'a') ADVANCE(44); + if (lookahead == '{') ADVANCE(31); + if (lookahead == '|') ADVANCE(83); + 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(10); - if (lookahead == '"') ADVANCE(5); + if (eof) ADVANCE(28); + if (lookahead == '"') ADVANCE(7); if (lookahead == '#') ADVANCE(20); - if (lookahead == '%') ADVANCE(67); - if (lookahead == '&') ADVANCE(7); - if (lookahead == '\'') ADVANCE(8); - if (lookahead == '(') ADVANCE(35); - if (lookahead == '*') ADVANCE(65); - if (lookahead == '+') ADVANCE(59); - if (lookahead == '-') ADVANCE(64); - if (lookahead == '.') ADVANCE(9); - if (lookahead == '/') ADVANCE(66); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49); - if (lookahead == ':') ADVANCE(57); - if (lookahead == ';') ADVANCE(34); - if (lookahead == '<') ADVANCE(75); - if (lookahead == '=') ADVANCE(12); - if (lookahead == '>') ADVANCE(73); - if (lookahead == '[') ADVANCE(52); + if (lookahead == '\'') ADVANCE(9); + if (lookahead == '(') ADVANCE(34); + if (lookahead == '+') ADVANCE(12); + if (lookahead == '-') ADVANCE(23); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48); + if (lookahead == ';') ADVANCE(33); + if (lookahead == '=') ADVANCE(53); + if (lookahead == '>') ADVANCE(71); + if (lookahead == '[') ADVANCE(51); if (lookahead == '`') ADVANCE(14); - if (lookahead == 'a') ADVANCE(45); - if (lookahead == '{') ADVANCE(32); - if (lookahead == '|') ADVANCE(84); - if (lookahead == '}') ADVANCE(33); + if (lookahead == 'a') ADVANCE(44); + if (lookahead == '{') ADVANCE(31); + if (lookahead == '|') ADVANCE(82); + 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(5); + if (eof) ADVANCE(28); + if (lookahead == '"') ADVANCE(7); if (lookahead == '#') ADVANCE(20); - if (lookahead == '\'') ADVANCE(8); - if (lookahead == '(') ADVANCE(35); - if (lookahead == '+') ADVANCE(11); - if (lookahead == '-') ADVANCE(23); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49); - if (lookahead == ';') ADVANCE(34); - if (lookahead == '<') ADVANCE(74); - if (lookahead == '=') ADVANCE(56); - if (lookahead == '>') ADVANCE(72); - if (lookahead == '[') ADVANCE(52); + if (lookahead == '\'') ADVANCE(9); + if (lookahead == '(') ADVANCE(34); + if (lookahead == '-') ADVANCE(22); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48); + if (lookahead == ';') ADVANCE(33); + if (lookahead == '[') ADVANCE(51); if (lookahead == '`') ADVANCE(14); - if (lookahead == 'a') ADVANCE(45); - if (lookahead == '{') ADVANCE(32); - if (lookahead == '|') ADVANCE(83); - if (lookahead == '}') ADVANCE(33); + if (lookahead == 'a') ADVANCE(44); + if (lookahead == 'e') ADVANCE(42); + if (lookahead == '{') ADVANCE(31); + if (lookahead == '|') ADVANCE(82); + 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(5); - if (lookahead == '#') ADVANCE(20); - if (lookahead == '\'') ADVANCE(8); - if (lookahead == '(') ADVANCE(35); - 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(83); - 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); - END_STATE(); - case 31: - ACCEPT_TOKEN(sym__comment); - if (lookahead == '|') ADVANCE(31); + if (lookahead == '|') ADVANCE(30); if (lookahead == '\n' || - lookahead == '#') ADVANCE(30); + lookahead == '#') ADVANCE(29); if (lookahead != 0) ADVANCE(20); END_STATE(); - case 32: + case 31: 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(17); + 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(15); + 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); - END_STATE(); - case 49: ACCEPT_TOKEN(sym_integer); if (lookahead == '.') ADVANCE(24); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48); + END_STATE(); + case 49: + 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); + END_STATE(); case 54: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(68); + if (lookahead == '=') ADVANCE(67); END_STATE(); case 55: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(68); - if (lookahead == '>') ADVANCE(81); + if (lookahead == '=') ADVANCE(67); + if (lookahead == '>') ADVANCE(80); END_STATE(); case 56: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '>') ADVANCE(81); - END_STATE(); - case 57: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 58: + case 57: ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); + case 58: + ACCEPT_TOKEN(anon_sym_PLUS); + END_STATE(); case 59: ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '=') ADVANCE(77); END_STATE(); case 60: - ACCEPT_TOKEN(anon_sym_PLUS); + ACCEPT_TOKEN(anon_sym_DASH); if (lookahead == '=') ADVANCE(78); + if (lookahead == '>') ADVANCE(84); END_STATE(); case 61: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(79); - if (lookahead == '>') ADVANCE(85); + if (lookahead == '>') ADVANCE(84); END_STATE(); case 62: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '>') ADVANCE(85); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48); + if (lookahead == '=') ADVANCE(78); + if (lookahead == '>') ADVANCE(84); END_STATE(); case 63: ACCEPT_TOKEN(anon_sym_DASH); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49); - if (lookahead == '=') ADVANCE(79); - if (lookahead == '>') ADVANCE(85); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48); + if (lookahead == '>') ADVANCE(84); END_STATE(); case 64: - ACCEPT_TOKEN(anon_sym_DASH); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49); - if (lookahead == '>') ADVANCE(85); - END_STATE(); - case 65: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 66: + case 65: ACCEPT_TOKEN(anon_sym_SLASH); END_STATE(); - case 67: + case 66: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 68: + case 67: ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); - case 69: + case 68: ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); - case 70: + case 69: ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); - case 71: + case 70: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); + case 71: + ACCEPT_TOKEN(anon_sym_GT); + END_STATE(); case 72: ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(75); END_STATE(); case 73: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(76); + ACCEPT_TOKEN(anon_sym_LT); END_STATE(); case 74: ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '=') ADVANCE(76); END_STATE(); case 75: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(77); - END_STATE(); - case 76: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 77: + case 76: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 78: + case 77: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 79: + case 78: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 80: + case 79: ACCEPT_TOKEN(anon_sym_elseif); END_STATE(); - case 81: + case 80: ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); - case 82: + case 81: ACCEPT_TOKEN(anon_sym_asyncfor); END_STATE(); + case 82: + ACCEPT_TOKEN(anon_sym_PIPE); + END_STATE(); case 83: ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '|') ADVANCE(70); END_STATE(); case 84: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(71); - END_STATE(); - case 85: ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); default: @@ -2827,62 +2752,62 @@ 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 = 4}, - [3] = {.lex_state = 4}, - [4] = {.lex_state = 4}, - [5] = {.lex_state = 4}, - [6] = {.lex_state = 4}, - [7] = {.lex_state = 4}, - [8] = {.lex_state = 4}, - [9] = {.lex_state = 4}, - [10] = {.lex_state = 4}, - [11] = {.lex_state = 4}, - [12] = {.lex_state = 27}, - [13] = {.lex_state = 27}, - [14] = {.lex_state = 27}, - [15] = {.lex_state = 27}, - [16] = {.lex_state = 27}, - [17] = {.lex_state = 27}, - [18] = {.lex_state = 27}, - [19] = {.lex_state = 27}, - [20] = {.lex_state = 27}, - [21] = {.lex_state = 27}, - [22] = {.lex_state = 27}, - [23] = {.lex_state = 27}, - [24] = {.lex_state = 27}, - [25] = {.lex_state = 27}, - [26] = {.lex_state = 27}, - [27] = {.lex_state = 27}, - [28] = {.lex_state = 27}, - [29] = {.lex_state = 27}, - [30] = {.lex_state = 27}, - [31] = {.lex_state = 27}, - [32] = {.lex_state = 27}, - [33] = {.lex_state = 27}, - [34] = {.lex_state = 27}, - [35] = {.lex_state = 27}, - [36] = {.lex_state = 27}, - [37] = {.lex_state = 27}, - [38] = {.lex_state = 27}, - [39] = {.lex_state = 27}, - [40] = {.lex_state = 27}, - [41] = {.lex_state = 27}, - [42] = {.lex_state = 27}, - [43] = {.lex_state = 27}, - [44] = {.lex_state = 27}, - [45] = {.lex_state = 27}, - [46] = {.lex_state = 27}, - [47] = {.lex_state = 27}, - [48] = {.lex_state = 27}, - [49] = {.lex_state = 27}, - [50] = {.lex_state = 27}, - [51] = {.lex_state = 27}, - [52] = {.lex_state = 27}, - [53] = {.lex_state = 27}, - [54] = {.lex_state = 27}, - [55] = {.lex_state = 27}, - [56] = {.lex_state = 27}, + [1] = {.lex_state = 26}, + [2] = {.lex_state = 6}, + [3] = {.lex_state = 6}, + [4] = {.lex_state = 6}, + [5] = {.lex_state = 6}, + [6] = {.lex_state = 6}, + [7] = {.lex_state = 6}, + [8] = {.lex_state = 26}, + [9] = {.lex_state = 26}, + [10] = {.lex_state = 26}, + [11] = {.lex_state = 26}, + [12] = {.lex_state = 26}, + [13] = {.lex_state = 26}, + [14] = {.lex_state = 26}, + [15] = {.lex_state = 26}, + [16] = {.lex_state = 26}, + [17] = {.lex_state = 26}, + [18] = {.lex_state = 26}, + [19] = {.lex_state = 26}, + [20] = {.lex_state = 26}, + [21] = {.lex_state = 26}, + [22] = {.lex_state = 26}, + [23] = {.lex_state = 26}, + [24] = {.lex_state = 26}, + [25] = {.lex_state = 26}, + [26] = {.lex_state = 26}, + [27] = {.lex_state = 26}, + [28] = {.lex_state = 26}, + [29] = {.lex_state = 26}, + [30] = {.lex_state = 26}, + [31] = {.lex_state = 26}, + [32] = {.lex_state = 26}, + [33] = {.lex_state = 26}, + [34] = {.lex_state = 26}, + [35] = {.lex_state = 26}, + [36] = {.lex_state = 26}, + [37] = {.lex_state = 26}, + [38] = {.lex_state = 26}, + [39] = {.lex_state = 26}, + [40] = {.lex_state = 26}, + [41] = {.lex_state = 26}, + [42] = {.lex_state = 26}, + [43] = {.lex_state = 26}, + [44] = {.lex_state = 26}, + [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 = 25}, + [53] = {.lex_state = 25}, + [54] = {.lex_state = 25}, + [55] = {.lex_state = 25}, + [56] = {.lex_state = 25}, [57] = {.lex_state = 25}, [58] = {.lex_state = 25}, [59] = {.lex_state = 25}, @@ -2899,394 +2824,307 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [70] = {.lex_state = 25}, [71] = {.lex_state = 25}, [72] = {.lex_state = 25}, - [73] = {.lex_state = 25}, + [73] = {.lex_state = 1}, [74] = {.lex_state = 25}, [75] = {.lex_state = 25}, [76] = {.lex_state = 25}, [77] = {.lex_state = 25}, - [78] = {.lex_state = 25}, + [78] = {.lex_state = 1}, [79] = {.lex_state = 25}, - [80] = {.lex_state = 25}, - [81] = {.lex_state = 25}, - [82] = {.lex_state = 25}, - [83] = {.lex_state = 25}, + [80] = {.lex_state = 1}, + [81] = {.lex_state = 26}, + [82] = {.lex_state = 26}, + [83] = {.lex_state = 1}, [84] = {.lex_state = 1}, - [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}, + [85] = {.lex_state = 1}, + [86] = {.lex_state = 1}, + [87] = {.lex_state = 1}, + [88] = {.lex_state = 1}, + [89] = {.lex_state = 1}, + [90] = {.lex_state = 1}, + [91] = {.lex_state = 1}, [92] = {.lex_state = 1}, - [93] = {.lex_state = 26}, - [94] = {.lex_state = 26}, - [95] = {.lex_state = 26}, - [96] = {.lex_state = 26}, - [97] = {.lex_state = 26}, - [98] = {.lex_state = 26}, + [93] = {.lex_state = 1}, + [94] = {.lex_state = 1}, + [95] = {.lex_state = 1}, + [96] = {.lex_state = 1}, + [97] = {.lex_state = 1}, + [98] = {.lex_state = 27}, [99] = {.lex_state = 1}, - [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 = 27}, - [118] = {.lex_state = 27}, - [119] = {.lex_state = 1}, - [120] = {.lex_state = 1}, + [100] = {.lex_state = 1}, + [101] = {.lex_state = 1}, + [102] = {.lex_state = 1}, + [103] = {.lex_state = 1}, + [104] = {.lex_state = 27}, + [105] = {.lex_state = 1}, + [106] = {.lex_state = 1}, + [107] = {.lex_state = 1}, + [108] = {.lex_state = 1}, + [109] = {.lex_state = 1}, + [110] = {.lex_state = 1}, + [111] = {.lex_state = 1}, + [112] = {.lex_state = 1}, + [113] = {.lex_state = 27}, + [114] = {.lex_state = 3}, + [115] = {.lex_state = 3}, + [116] = {.lex_state = 3}, + [117] = {.lex_state = 6}, + [118] = {.lex_state = 3}, + [119] = {.lex_state = 6}, + [120] = {.lex_state = 3}, [121] = {.lex_state = 1}, - [122] = {.lex_state = 1}, - [123] = {.lex_state = 1}, + [122] = {.lex_state = 3}, + [123] = {.lex_state = 27}, [124] = {.lex_state = 1}, - [125] = {.lex_state = 1}, - [126] = {.lex_state = 1}, - [127] = {.lex_state = 1}, + [125] = {.lex_state = 2}, + [126] = {.lex_state = 2}, + [127] = {.lex_state = 2}, [128] = {.lex_state = 1}, - [129] = {.lex_state = 1}, - [130] = {.lex_state = 1}, - [131] = {.lex_state = 1}, - [132] = {.lex_state = 28}, - [133] = {.lex_state = 1}, - [134] = {.lex_state = 1}, - [135] = {.lex_state = 1}, - [136] = {.lex_state = 1}, - [137] = {.lex_state = 1}, + [129] = {.lex_state = 2}, + [130] = {.lex_state = 27}, + [131] = {.lex_state = 2}, + [132] = {.lex_state = 2}, + [133] = {.lex_state = 2}, + [134] = {.lex_state = 2}, + [135] = {.lex_state = 2}, + [136] = {.lex_state = 2}, + [137] = {.lex_state = 2}, [138] = {.lex_state = 1}, - [139] = {.lex_state = 1}, - [140] = {.lex_state = 1}, - [141] = {.lex_state = 1}, - [142] = {.lex_state = 1}, - [143] = {.lex_state = 1}, - [144] = {.lex_state = 1}, - [145] = {.lex_state = 28}, - [146] = {.lex_state = 1}, - [147] = {.lex_state = 1}, - [148] = {.lex_state = 28}, - [149] = {.lex_state = 4}, - [150] = {.lex_state = 4}, - [151] = {.lex_state = 1}, - [152] = {.lex_state = 1}, - [153] = {.lex_state = 28}, - [154] = {.lex_state = 1}, - [155] = {.lex_state = 28}, - [156] = {.lex_state = 28}, - [157] = {.lex_state = 28}, - [158] = {.lex_state = 1}, - [159] = {.lex_state = 1}, - [160] = {.lex_state = 1}, - [161] = {.lex_state = 4}, - [162] = {.lex_state = 4}, - [163] = {.lex_state = 4}, - [164] = {.lex_state = 4}, - [165] = {.lex_state = 4}, - [166] = {.lex_state = 4}, - [167] = {.lex_state = 4}, - [168] = {.lex_state = 4}, - [169] = {.lex_state = 4}, - [170] = {.lex_state = 4}, - [171] = {.lex_state = 4}, - [172] = {.lex_state = 4}, - [173] = {.lex_state = 4}, - [174] = {.lex_state = 4}, - [175] = {.lex_state = 4}, - [176] = {.lex_state = 27}, - [177] = {.lex_state = 3}, - [178] = {.lex_state = 2}, - [179] = {.lex_state = 27}, - [180] = {.lex_state = 2}, - [181] = {.lex_state = 27}, - [182] = {.lex_state = 2}, - [183] = {.lex_state = 27}, - [184] = {.lex_state = 2}, - [185] = {.lex_state = 3}, - [186] = {.lex_state = 2}, - [187] = {.lex_state = 2}, - [188] = {.lex_state = 27}, - [189] = {.lex_state = 27}, - [190] = {.lex_state = 27}, - [191] = {.lex_state = 27}, - [192] = {.lex_state = 27}, - [193] = {.lex_state = 27}, - [194] = {.lex_state = 27}, - [195] = {.lex_state = 27}, - [196] = {.lex_state = 27}, - [197] = {.lex_state = 27}, - [198] = {.lex_state = 27}, - [199] = {.lex_state = 3}, - [200] = {.lex_state = 27}, - [201] = {.lex_state = 3}, - [202] = {.lex_state = 3}, - [203] = {.lex_state = 3}, - [204] = {.lex_state = 2}, - [205] = {.lex_state = 4}, - [206] = {.lex_state = 2}, - [207] = {.lex_state = 4}, - [208] = {.lex_state = 4}, - [209] = {.lex_state = 4}, - [210] = {.lex_state = 2}, - [211] = {.lex_state = 4}, - [212] = {.lex_state = 4}, - [213] = {.lex_state = 4}, - [214] = {.lex_state = 3}, - [215] = {.lex_state = 3}, - [216] = {.lex_state = 3}, - [217] = {.lex_state = 4}, - [218] = {.lex_state = 3}, - [219] = {.lex_state = 4}, - [220] = {.lex_state = 4}, - [221] = {.lex_state = 4}, - [222] = {.lex_state = 4}, - [223] = {.lex_state = 4}, - [224] = {.lex_state = 4}, - [225] = {.lex_state = 4}, - [226] = {.lex_state = 4}, - [227] = {.lex_state = 4}, - [228] = {.lex_state = 4}, - [229] = {.lex_state = 4}, - [230] = {.lex_state = 4}, - [231] = {.lex_state = 4}, - [232] = {.lex_state = 4}, - [233] = {.lex_state = 4}, - [234] = {.lex_state = 4}, - [235] = {.lex_state = 4}, - [236] = {.lex_state = 4}, - [237] = {.lex_state = 2}, - [238] = {.lex_state = 4}, - [239] = {.lex_state = 4}, - [240] = {.lex_state = 4}, - [241] = {.lex_state = 4}, - [242] = {.lex_state = 4}, - [243] = {.lex_state = 4}, - [244] = {.lex_state = 4}, - [245] = {.lex_state = 4}, - [246] = {.lex_state = 4}, - [247] = {.lex_state = 4}, - [248] = {.lex_state = 4}, - [249] = {.lex_state = 4}, - [250] = {.lex_state = 4}, - [251] = {.lex_state = 4}, - [252] = {.lex_state = 4}, - [253] = {.lex_state = 4}, - [254] = {.lex_state = 4}, - [255] = {.lex_state = 4}, - [256] = {.lex_state = 4}, + [139] = {.lex_state = 2}, + [140] = {.lex_state = 2}, + [141] = {.lex_state = 2}, + [142] = {.lex_state = 3}, + [143] = {.lex_state = 3}, + [144] = {.lex_state = 3}, + [145] = {.lex_state = 3}, + [146] = {.lex_state = 27}, + [147] = {.lex_state = 27}, + [148] = {.lex_state = 6}, + [149] = {.lex_state = 6}, + [150] = {.lex_state = 6}, + [151] = {.lex_state = 6}, + [152] = {.lex_state = 6}, + [153] = {.lex_state = 4}, + [154] = {.lex_state = 6}, + [155] = {.lex_state = 6}, + [156] = {.lex_state = 3}, + [157] = {.lex_state = 6}, + [158] = {.lex_state = 4}, + [159] = {.lex_state = 6}, + [160] = {.lex_state = 6}, + [161] = {.lex_state = 3}, + [162] = {.lex_state = 6}, + [163] = {.lex_state = 26}, + [164] = {.lex_state = 3}, + [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 = 3}, + [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 = 6}, + [182] = {.lex_state = 6}, + [183] = {.lex_state = 6}, + [184] = {.lex_state = 6}, + [185] = {.lex_state = 6}, + [186] = {.lex_state = 3}, + [187] = {.lex_state = 6}, + [188] = {.lex_state = 6}, + [189] = {.lex_state = 6}, + [190] = {.lex_state = 6}, + [191] = {.lex_state = 6}, + [192] = {.lex_state = 6}, + [193] = {.lex_state = 6}, + [194] = {.lex_state = 6}, + [195] = {.lex_state = 6}, + [196] = {.lex_state = 6}, + [197] = {.lex_state = 6}, + [198] = {.lex_state = 6}, + [199] = {.lex_state = 6}, + [200] = {.lex_state = 6}, + [201] = {.lex_state = 6}, + [202] = {.lex_state = 6}, + [203] = {.lex_state = 6}, + [204] = {.lex_state = 6}, + [205] = {.lex_state = 6}, + [206] = {.lex_state = 6}, + [207] = {.lex_state = 6}, + [208] = {.lex_state = 6}, + [209] = {.lex_state = 6}, + [210] = {.lex_state = 6}, + [211] = {.lex_state = 6}, + [212] = {.lex_state = 6}, + [213] = {.lex_state = 6}, + [214] = {.lex_state = 6}, + [215] = {.lex_state = 6}, + [216] = {.lex_state = 6}, + [217] = {.lex_state = 6}, + [218] = {.lex_state = 6}, + [219] = {.lex_state = 6}, + [220] = {.lex_state = 6}, + [221] = {.lex_state = 6}, + [222] = {.lex_state = 6}, + [223] = {.lex_state = 6}, + [224] = {.lex_state = 6}, + [225] = {.lex_state = 6}, + [226] = {.lex_state = 6}, + [227] = {.lex_state = 6}, + [228] = {.lex_state = 6}, + [229] = {.lex_state = 6}, + [230] = {.lex_state = 6}, + [231] = {.lex_state = 6}, + [232] = {.lex_state = 6}, + [233] = {.lex_state = 6}, + [234] = {.lex_state = 5}, + [235] = {.lex_state = 5}, + [236] = {.lex_state = 3}, + [237] = {.lex_state = 5}, + [238] = {.lex_state = 26}, + [239] = {.lex_state = 5}, + [240] = {.lex_state = 5}, + [241] = {.lex_state = 5}, + [242] = {.lex_state = 3}, + [243] = {.lex_state = 3}, + [244] = {.lex_state = 3}, + [245] = {.lex_state = 5}, + [246] = {.lex_state = 5}, + [247] = {.lex_state = 3}, + [248] = {.lex_state = 3}, + [249] = {.lex_state = 3}, + [250] = {.lex_state = 3}, + [251] = {.lex_state = 3}, + [252] = {.lex_state = 5}, + [253] = {.lex_state = 3}, + [254] = {.lex_state = 5}, + [255] = {.lex_state = 3}, + [256] = {.lex_state = 3}, [257] = {.lex_state = 4}, [258] = {.lex_state = 4}, - [259] = {.lex_state = 4}, - [260] = {.lex_state = 4}, - [261] = {.lex_state = 4}, - [262] = {.lex_state = 4}, - [263] = {.lex_state = 4}, - [264] = {.lex_state = 4}, - [265] = {.lex_state = 4}, - [266] = {.lex_state = 2}, - [267] = {.lex_state = 4}, - [268] = {.lex_state = 3}, + [259] = {.lex_state = 6}, + [260] = {.lex_state = 6}, + [261] = {.lex_state = 6}, + [262] = {.lex_state = 6}, + [263] = {.lex_state = 6}, + [264] = {.lex_state = 6}, + [265] = {.lex_state = 6}, + [266] = {.lex_state = 6}, + [267] = {.lex_state = 6}, + [268] = {.lex_state = 4}, [269] = {.lex_state = 4}, - [270] = {.lex_state = 4}, + [270] = {.lex_state = 6}, [271] = {.lex_state = 4}, - [272] = {.lex_state = 4}, + [272] = {.lex_state = 6}, [273] = {.lex_state = 4}, [274] = {.lex_state = 4}, - [275] = {.lex_state = 2}, - [276] = {.lex_state = 3}, - [277] = {.lex_state = 2}, - [278] = {.lex_state = 2}, - [279] = {.lex_state = 2}, - [280] = {.lex_state = 2}, - [281] = {.lex_state = 2}, - [282] = {.lex_state = 2}, - [283] = {.lex_state = 2}, - [284] = {.lex_state = 3}, - [285] = {.lex_state = 2}, - [286] = {.lex_state = 3}, - [287] = {.lex_state = 3}, - [288] = {.lex_state = 2}, - [289] = {.lex_state = 2}, - [290] = {.lex_state = 3}, - [291] = {.lex_state = 2}, - [292] = {.lex_state = 2}, - [293] = {.lex_state = 2}, - [294] = {.lex_state = 3}, - [295] = {.lex_state = 3}, - [296] = {.lex_state = 3}, - [297] = {.lex_state = 2}, - [298] = {.lex_state = 3}, - [299] = {.lex_state = 3}, - [300] = {.lex_state = 3}, - [301] = {.lex_state = 3}, - [302] = {.lex_state = 3}, - [303] = {.lex_state = 3}, - [304] = {.lex_state = 2}, - [305] = {.lex_state = 3}, - [306] = {.lex_state = 27}, - [307] = {.lex_state = 3}, - [308] = {.lex_state = 3}, - [309] = {.lex_state = 3}, - [310] = {.lex_state = 3}, - [311] = {.lex_state = 3}, - [312] = {.lex_state = 3}, - [313] = {.lex_state = 3}, - [314] = {.lex_state = 3}, - [315] = {.lex_state = 3}, - [316] = {.lex_state = 3}, - [317] = {.lex_state = 3}, - [318] = {.lex_state = 3}, - [319] = {.lex_state = 3}, - [320] = {.lex_state = 3}, - [321] = {.lex_state = 4}, - [322] = {.lex_state = 4}, - [323] = {.lex_state = 4}, - [324] = {.lex_state = 4}, - [325] = {.lex_state = 4}, - [326] = {.lex_state = 4}, - [327] = {.lex_state = 4}, - [328] = {.lex_state = 4}, - [329] = {.lex_state = 4}, - [330] = {.lex_state = 6}, - [331] = {.lex_state = 6}, - [332] = {.lex_state = 4}, - [333] = {.lex_state = 6}, - [334] = {.lex_state = 6}, - [335] = {.lex_state = 6}, + [275] = {.lex_state = 6}, + [276] = {.lex_state = 6}, + [277] = {.lex_state = 6}, + [278] = {.lex_state = 6}, + [279] = {.lex_state = 6}, + [280] = {.lex_state = 6}, + [281] = {.lex_state = 6}, + [282] = {.lex_state = 6}, + [283] = {.lex_state = 6}, + [284] = {.lex_state = 6}, + [285] = {.lex_state = 6}, + [286] = {.lex_state = 6}, + [287] = {.lex_state = 6}, + [288] = {.lex_state = 6}, + [289] = {.lex_state = 26}, + [290] = {.lex_state = 6}, + [291] = {.lex_state = 6}, + [292] = {.lex_state = 6}, + [293] = {.lex_state = 6}, + [294] = {.lex_state = 6}, + [295] = {.lex_state = 26}, + [296] = {.lex_state = 6}, + [297] = {.lex_state = 6}, + [298] = {.lex_state = 6}, + [299] = {.lex_state = 6}, + [300] = {.lex_state = 6}, + [301] = {.lex_state = 6}, + [302] = {.lex_state = 6}, + [303] = {.lex_state = 6}, + [304] = {.lex_state = 6}, + [305] = {.lex_state = 6}, + [306] = {.lex_state = 6}, + [307] = {.lex_state = 6}, + [308] = {.lex_state = 6}, + [309] = {.lex_state = 6}, + [310] = {.lex_state = 6}, + [311] = {.lex_state = 6}, + [312] = {.lex_state = 6}, + [313] = {.lex_state = 6}, + [314] = {.lex_state = 6}, + [315] = {.lex_state = 6}, + [316] = {.lex_state = 6}, + [317] = {.lex_state = 6}, + [318] = {.lex_state = 6}, + [319] = {.lex_state = 6}, + [320] = {.lex_state = 6}, + [321] = {.lex_state = 6}, + [322] = {.lex_state = 6}, + [323] = {.lex_state = 6}, + [324] = {.lex_state = 6}, + [325] = {.lex_state = 6}, + [326] = {.lex_state = 6}, + [327] = {.lex_state = 6}, + [328] = {.lex_state = 6}, + [329] = {.lex_state = 6}, + [330] = {.lex_state = 26}, + [331] = {.lex_state = 26}, + [332] = {.lex_state = 26}, + [333] = {.lex_state = 26}, + [334] = {.lex_state = 26}, + [335] = {.lex_state = 26}, [336] = {.lex_state = 6}, - [337] = {.lex_state = 6}, - [338] = {.lex_state = 4}, - [339] = {.lex_state = 4}, - [340] = {.lex_state = 4}, - [341] = {.lex_state = 4}, - [342] = {.lex_state = 4}, - [343] = {.lex_state = 4}, - [344] = {.lex_state = 4}, - [345] = {.lex_state = 4}, - [346] = {.lex_state = 4}, - [347] = {.lex_state = 27}, - [348] = {.lex_state = 4}, - [349] = {.lex_state = 4}, - [350] = {.lex_state = 4}, - [351] = {.lex_state = 4}, - [352] = {.lex_state = 4}, - [353] = {.lex_state = 27}, - [354] = {.lex_state = 4}, - [355] = {.lex_state = 4}, - [356] = {.lex_state = 4}, - [357] = {.lex_state = 4}, - [358] = {.lex_state = 4}, - [359] = {.lex_state = 4}, - [360] = {.lex_state = 4}, - [361] = {.lex_state = 4}, - [362] = {.lex_state = 4}, - [363] = {.lex_state = 4}, - [364] = {.lex_state = 4}, - [365] = {.lex_state = 4}, - [366] = {.lex_state = 4}, - [367] = {.lex_state = 4}, - [368] = {.lex_state = 4}, - [369] = {.lex_state = 4}, - [370] = {.lex_state = 4}, - [371] = {.lex_state = 4}, - [372] = {.lex_state = 4}, - [373] = {.lex_state = 4}, - [374] = {.lex_state = 4}, - [375] = {.lex_state = 4}, - [376] = {.lex_state = 4}, - [377] = {.lex_state = 4}, - [378] = {.lex_state = 4}, - [379] = {.lex_state = 4}, - [380] = {.lex_state = 4}, - [381] = {.lex_state = 4}, - [382] = {.lex_state = 4}, - [383] = {.lex_state = 4}, - [384] = {.lex_state = 4}, - [385] = {.lex_state = 4}, - [386] = {.lex_state = 4}, - [387] = {.lex_state = 4}, - [388] = {.lex_state = 4}, - [389] = {.lex_state = 4}, - [390] = {.lex_state = 4}, - [391] = {.lex_state = 4}, - [392] = {.lex_state = 4}, - [393] = {.lex_state = 4}, - [394] = {.lex_state = 4}, - [395] = {.lex_state = 4}, - [396] = {.lex_state = 27}, - [397] = {.lex_state = 4}, - [398] = {.lex_state = 27}, - [399] = {.lex_state = 27}, - [400] = {.lex_state = 27}, - [401] = {.lex_state = 4}, - [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 = 4}, - [409] = {.lex_state = 27}, - [410] = {.lex_state = 27}, - [411] = {.lex_state = 27}, - [412] = {.lex_state = 4}, - [413] = {.lex_state = 0}, - [414] = {.lex_state = 4}, - [415] = {.lex_state = 0}, - [416] = {.lex_state = 4}, - [417] = {.lex_state = 0}, - [418] = {.lex_state = 0}, - [419] = {.lex_state = 0}, - [420] = {.lex_state = 4}, - [421] = {.lex_state = 0}, - [422] = {.lex_state = 0}, - [423] = {.lex_state = 0}, - [424] = {.lex_state = 0}, - [425] = {.lex_state = 0}, - [426] = {.lex_state = 0}, - [427] = {.lex_state = 0}, - [428] = {.lex_state = 0}, - [429] = {.lex_state = 0}, - [430] = {.lex_state = 4}, - [431] = {.lex_state = 4}, - [432] = {.lex_state = 0}, - [433] = {.lex_state = 0}, - [434] = {.lex_state = 0}, - [435] = {.lex_state = 0}, - [436] = {.lex_state = 0}, - [437] = {.lex_state = 0}, - [438] = {.lex_state = 4}, - [439] = {.lex_state = 4}, - [440] = {.lex_state = 0}, - [441] = {.lex_state = 0}, - [442] = {.lex_state = 0}, - [443] = {.lex_state = 0}, - [444] = {.lex_state = 0}, - [445] = {.lex_state = 4}, - [446] = {.lex_state = 0}, - [447] = {.lex_state = 0}, - [448] = {.lex_state = 27}, - [449] = {.lex_state = 27}, - [450] = {.lex_state = 0}, - [451] = {.lex_state = 0}, - [452] = {.lex_state = 0}, - [453] = {.lex_state = 0}, - [454] = {.lex_state = 0}, - [455] = {.lex_state = 0}, - [456] = {.lex_state = 0}, - [457] = {.lex_state = 0}, - [458] = {.lex_state = 0}, - [459] = {.lex_state = 4}, - [460] = {.lex_state = 0}, + [337] = {.lex_state = 26}, + [338] = {.lex_state = 26}, + [339] = {.lex_state = 26}, + [340] = {.lex_state = 6}, + [341] = {.lex_state = 26}, + [342] = {.lex_state = 0}, + [343] = {.lex_state = 6}, + [344] = {.lex_state = 0}, + [345] = {.lex_state = 0}, + [346] = {.lex_state = 0}, + [347] = {.lex_state = 0}, + [348] = {.lex_state = 0}, + [349] = {.lex_state = 0}, + [350] = {.lex_state = 0}, + [351] = {.lex_state = 0}, + [352] = {.lex_state = 6}, + [353] = {.lex_state = 6}, + [354] = {.lex_state = 6}, + [355] = {.lex_state = 0}, + [356] = {.lex_state = 6}, + [357] = {.lex_state = 0}, + [358] = {.lex_state = 0}, + [359] = {.lex_state = 0}, + [360] = {.lex_state = 0}, + [361] = {.lex_state = 0}, + [362] = {.lex_state = 0}, + [363] = {.lex_state = 6}, + [364] = {.lex_state = 0}, + [365] = {.lex_state = 6}, + [366] = {.lex_state = 6}, + [367] = {.lex_state = 26}, + [368] = {.lex_state = 0}, + [369] = {.lex_state = 6}, + [370] = {.lex_state = 0}, + [371] = {.lex_state = 26}, + [372] = {.lex_state = 6}, + [373] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -3384,34 +3222,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_reverse] = ACTIONS(1), }, [1] = { - [sym_root] = STATE(417), - [sym_block] = STATE(200), - [sym_statement] = STATE(26), - [sym_expression] = STATE(98), - [sym__expression_kind] = STATE(102), - [sym_value] = STATE(102), - [sym_boolean] = STATE(103), - [sym_list] = STATE(103), - [sym_map] = STATE(103), - [sym_index] = STATE(82), - [sym_math] = STATE(102), - [sym_logic] = STATE(102), - [sym_assignment] = STATE(200), - [sym_index_assignment] = STATE(200), - [sym_if_else] = STATE(200), - [sym_if] = STATE(132), - [sym_match] = STATE(200), - [sym_while] = STATE(200), - [sym_for] = STATE(200), - [sym_select] = STATE(200), - [sym_insert] = STATE(200), - [sym_table] = STATE(103), - [sym_return] = STATE(200), - [sym_use] = STATE(200), - [sym_function] = STATE(103), - [sym_function_call] = STATE(102), - [sym_yield] = STATE(102), - [aux_sym_root_repeat1] = STATE(26), + [sym_root] = STATE(360), + [sym_block] = STATE(172), + [sym_statement] = STATE(22), + [sym_expression] = STATE(76), + [sym__expression_kind] = STATE(61), + [sym_value] = STATE(61), + [sym_boolean] = STATE(69), + [sym_list] = STATE(69), + [sym_map] = STATE(69), + [sym_index] = STATE(62), + [sym_math] = STATE(61), + [sym_logic] = STATE(61), + [sym_assignment] = STATE(172), + [sym_index_assignment] = STATE(172), + [sym_if_else] = STATE(172), + [sym_if] = STATE(98), + [sym_match] = STATE(172), + [sym_while] = STATE(172), + [sym_for] = STATE(172), + [sym_select] = STATE(172), + [sym_insert] = STATE(172), + [sym_table] = STATE(69), + [sym_return] = STATE(172), + [sym_use] = STATE(172), + [sym_function] = STATE(69), + [sym_function_call] = STATE(61), + [sym_yield] = STATE(61), + [aux_sym_root_repeat1] = STATE(22), [sym_identifier] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_async] = ACTIONS(7), @@ -3425,61 +3263,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(19), [anon_sym_if] = ACTIONS(21), [anon_sym_match] = ACTIONS(23), - [anon_sym_EQ_GT] = ACTIONS(25), - [anon_sym_while] = ACTIONS(27), - [anon_sym_for] = ACTIONS(29), - [anon_sym_asyncfor] = ACTIONS(31), - [anon_sym_select] = ACTIONS(33), - [anon_sym_insert] = ACTIONS(35), - [anon_sym_PIPE] = ACTIONS(37), - [anon_sym_table] = ACTIONS(39), - [anon_sym_return] = ACTIONS(41), - [anon_sym_use] = ACTIONS(43), + [anon_sym_while] = ACTIONS(25), + [anon_sym_for] = ACTIONS(27), + [anon_sym_asyncfor] = ACTIONS(29), + [anon_sym_select] = ACTIONS(31), + [anon_sym_insert] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_table] = ACTIONS(37), + [anon_sym_return] = ACTIONS(39), + [anon_sym_use] = ACTIONS(41), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 18, + [0] = 17, ACTIONS(3), 1, sym__comment, - ACTIONS(45), 1, + ACTIONS(43), 1, sym_identifier, + ACTIONS(45), 1, + anon_sym_LPAREN, ACTIONS(47), 1, + anon_sym_RPAREN, + ACTIONS(49), 1, + sym_integer, + ACTIONS(55), 1, + anon_sym_LBRACK, + ACTIONS(57), 1, + anon_sym_PIPE, + ACTIONS(59), 1, + anon_sym_table, + STATE(73), 1, + sym_expression, + STATE(151), 1, + sym__built_in_function_name, + STATE(322), 1, + aux_sym_map_repeat1, + ACTIONS(51), 2, + sym_float, + sym_string, + ACTIONS(53), 2, + anon_sym_true, + anon_sym_false, + STATE(358), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(103), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(124), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + ACTIONS(61), 31, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_context, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [95] = 17, + ACTIONS(3), 1, + sym__comment, + ACTIONS(43), 1, + sym_identifier, + ACTIONS(45), 1, anon_sym_LPAREN, ACTIONS(49), 1, - anon_sym_RPAREN, - ACTIONS(51), 1, sym_integer, - ACTIONS(57), 1, + ACTIONS(55), 1, anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_EQ_GT, - ACTIONS(61), 1, + ACTIONS(57), 1, anon_sym_PIPE, - ACTIONS(63), 1, + ACTIONS(59), 1, anon_sym_table, - STATE(84), 1, + ACTIONS(63), 1, + anon_sym_RPAREN, + STATE(73), 1, sym_expression, - STATE(162), 1, + STATE(151), 1, sym__built_in_function_name, - STATE(395), 1, + STATE(325), 1, aux_sym_map_repeat1, - ACTIONS(53), 2, + ACTIONS(51), 2, sym_float, sym_string, - ACTIONS(55), 2, + ACTIONS(53), 2, anon_sym_true, anon_sym_false, - STATE(434), 2, + STATE(362), 2, sym__context_defined_function, sym_built_in_function, - STATE(136), 5, + STATE(103), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(158), 7, + STATE(138), 7, sym__expression_kind, sym_value, sym_index, @@ -3487,7 +3400,7 @@ static const uint16_t ts_small_parse_table[] = { sym_logic, sym_function_call, sym_yield, - ACTIONS(65), 31, + ACTIONS(61), 31, anon_sym_assert, anon_sym_assert_equal, anon_sym_context, @@ -3519,47 +3432,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [98] = 18, + [190] = 17, + ACTIONS(3), 1, + sym__comment, + ACTIONS(43), 1, + sym_identifier, + ACTIONS(45), 1, + anon_sym_LPAREN, + ACTIONS(49), 1, + sym_integer, + ACTIONS(55), 1, + anon_sym_LBRACK, + ACTIONS(57), 1, + anon_sym_PIPE, + ACTIONS(59), 1, + anon_sym_table, + ACTIONS(65), 1, + anon_sym_RPAREN, + STATE(73), 1, + sym_expression, + STATE(151), 1, + sym__built_in_function_name, + STATE(308), 1, + aux_sym_map_repeat1, + ACTIONS(51), 2, + sym_float, + sym_string, + ACTIONS(53), 2, + anon_sym_true, + anon_sym_false, + STATE(344), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(103), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(128), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + ACTIONS(61), 31, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_context, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [285] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(45), 1, - sym_identifier, - ACTIONS(47), 1, anon_sym_LPAREN, - ACTIONS(51), 1, + ACTIONS(49), 1, sym_integer, - ACTIONS(57), 1, + ACTIONS(55), 1, anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_EQ_GT, - ACTIONS(61), 1, + ACTIONS(57), 1, anon_sym_PIPE, - ACTIONS(63), 1, + ACTIONS(59), 1, anon_sym_table, ACTIONS(67), 1, - anon_sym_RPAREN, - STATE(84), 1, + sym_identifier, + STATE(73), 1, sym_expression, - STATE(162), 1, + STATE(151), 1, sym__built_in_function_name, - STATE(373), 1, - aux_sym_map_repeat1, - ACTIONS(53), 2, + ACTIONS(51), 2, sym_float, sym_string, - ACTIONS(55), 2, + ACTIONS(53), 2, anon_sym_true, anon_sym_false, - STATE(426), 2, + STATE(373), 2, sym__context_defined_function, sym_built_in_function, - STATE(136), 5, + STATE(103), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(160), 7, + STATE(107), 7, sym__expression_kind, sym_value, sym_index, @@ -3567,7 +3552,7 @@ static const uint16_t ts_small_parse_table[] = { sym_logic, sym_function_call, sym_yield, - ACTIONS(65), 31, + ACTIONS(61), 31, anon_sym_assert, anon_sym_assert_equal, anon_sym_context, @@ -3599,47 +3584,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [196] = 18, + [374] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(45), 1, - sym_identifier, - ACTIONS(47), 1, anon_sym_LPAREN, - ACTIONS(51), 1, + ACTIONS(49), 1, sym_integer, - ACTIONS(57), 1, + ACTIONS(55), 1, anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_EQ_GT, - ACTIONS(61), 1, + ACTIONS(57), 1, anon_sym_PIPE, - ACTIONS(63), 1, + ACTIONS(59), 1, anon_sym_table, - ACTIONS(69), 1, - anon_sym_RPAREN, - STATE(84), 1, + ACTIONS(67), 1, + sym_identifier, + STATE(73), 1, sym_expression, - STATE(162), 1, + STATE(151), 1, sym__built_in_function_name, - STATE(376), 1, - aux_sym_map_repeat1, - ACTIONS(53), 2, + ACTIONS(51), 2, sym_float, sym_string, - ACTIONS(55), 2, + ACTIONS(53), 2, anon_sym_true, anon_sym_false, - STATE(437), 2, + STATE(364), 2, sym__context_defined_function, sym_built_in_function, - STATE(136), 5, + STATE(103), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(154), 7, + STATE(107), 7, sym__expression_kind, sym_value, sym_index, @@ -3647,7 +3626,7 @@ static const uint16_t ts_small_parse_table[] = { sym_logic, sym_function_call, sym_yield, - ACTIONS(65), 31, + ACTIONS(61), 31, anon_sym_assert, anon_sym_assert_equal, anon_sym_context, @@ -3679,674 +3658,1310 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [294] = 18, + [463] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(45), 1, - sym_identifier, - ACTIONS(47), 1, anon_sym_LPAREN, - ACTIONS(51), 1, + ACTIONS(49), 1, sym_integer, - ACTIONS(57), 1, + ACTIONS(55), 1, anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_EQ_GT, - ACTIONS(61), 1, + ACTIONS(57), 1, anon_sym_PIPE, - ACTIONS(63), 1, + ACTIONS(59), 1, anon_sym_table, + ACTIONS(67), 1, + sym_identifier, + STATE(73), 1, + sym_expression, + STATE(151), 1, + sym__built_in_function_name, + ACTIONS(51), 2, + sym_float, + sym_string, + ACTIONS(53), 2, + anon_sym_true, + anon_sym_false, + STATE(368), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(103), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(107), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + ACTIONS(61), 31, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_context, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [552] = 28, + ACTIONS(3), 1, + sym__comment, ACTIONS(71), 1, - anon_sym_RPAREN, - STATE(84), 1, - sym_expression, - STATE(162), 1, - sym__built_in_function_name, - STATE(394), 1, - aux_sym_map_repeat1, - ACTIONS(53), 2, - sym_float, - sym_string, - ACTIONS(55), 2, - anon_sym_true, - anon_sym_false, - STATE(433), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(136), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(152), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - ACTIONS(65), 31, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_context, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [392] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(45), 1, sym_identifier, - ACTIONS(47), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - sym_integer, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_EQ_GT, - ACTIONS(61), 1, - anon_sym_PIPE, - ACTIONS(63), 1, - anon_sym_table, - ACTIONS(73), 1, - anon_sym_RPAREN, - STATE(84), 1, - sym_expression, - STATE(162), 1, - sym__built_in_function_name, - STATE(362), 1, - aux_sym_map_repeat1, - ACTIONS(53), 2, - sym_float, - sym_string, - ACTIONS(55), 2, - anon_sym_true, - anon_sym_false, - STATE(452), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(136), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(159), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - ACTIONS(65), 31, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_context, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [490] = 16, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - sym_integer, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_EQ_GT, - ACTIONS(61), 1, - anon_sym_PIPE, - ACTIONS(63), 1, - anon_sym_table, - ACTIONS(75), 1, - sym_identifier, - STATE(84), 1, - sym_expression, - STATE(162), 1, - sym__built_in_function_name, - ACTIONS(53), 2, - sym_float, - sym_string, - ACTIONS(55), 2, - anon_sym_true, - anon_sym_false, - STATE(419), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(136), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(141), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - ACTIONS(65), 31, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_context, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [582] = 16, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - sym_integer, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_EQ_GT, - ACTIONS(61), 1, - anon_sym_PIPE, - ACTIONS(63), 1, - anon_sym_table, - ACTIONS(75), 1, - sym_identifier, - STATE(84), 1, - sym_expression, - STATE(162), 1, - sym__built_in_function_name, - ACTIONS(53), 2, - sym_float, - sym_string, - ACTIONS(55), 2, - anon_sym_true, - anon_sym_false, - STATE(424), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(136), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(141), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - ACTIONS(65), 31, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_context, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [674] = 16, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - sym_integer, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_EQ_GT, - ACTIONS(61), 1, - anon_sym_PIPE, - ACTIONS(63), 1, - anon_sym_table, - ACTIONS(75), 1, - sym_identifier, - STATE(84), 1, - sym_expression, - STATE(162), 1, - sym__built_in_function_name, - ACTIONS(53), 2, - sym_float, - sym_string, - ACTIONS(55), 2, - anon_sym_true, - anon_sym_false, - STATE(436), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(136), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(141), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - ACTIONS(65), 31, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_context, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [766] = 16, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - sym_integer, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_EQ_GT, - ACTIONS(61), 1, - anon_sym_PIPE, - ACTIONS(63), 1, - anon_sym_table, - ACTIONS(75), 1, - sym_identifier, - STATE(84), 1, - sym_expression, - STATE(162), 1, - sym__built_in_function_name, - ACTIONS(53), 2, - sym_float, - sym_string, - ACTIONS(55), 2, - anon_sym_true, - anon_sym_false, - STATE(444), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(136), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(141), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - ACTIONS(65), 31, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_context, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [858] = 16, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - sym_integer, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_EQ_GT, - ACTIONS(61), 1, - anon_sym_PIPE, - ACTIONS(63), 1, - anon_sym_table, - ACTIONS(75), 1, - sym_identifier, - STATE(84), 1, - sym_expression, - STATE(162), 1, - sym__built_in_function_name, - ACTIONS(53), 2, - sym_float, - sym_string, - ACTIONS(55), 2, - anon_sym_true, - anon_sym_false, - STATE(460), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(136), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(141), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - ACTIONS(65), 31, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_context, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [950] = 29, - ACTIONS(3), 1, - sym__comment, - ACTIONS(79), 1, - sym_identifier, - ACTIONS(82), 1, + ACTIONS(74), 1, anon_sym_async, - ACTIONS(85), 1, + ACTIONS(77), 1, anon_sym_LBRACE, - ACTIONS(88), 1, + ACTIONS(80), 1, anon_sym_LPAREN, - ACTIONS(91), 1, + ACTIONS(83), 1, sym_integer, - ACTIONS(100), 1, + ACTIONS(92), 1, anon_sym_LBRACK, - ACTIONS(103), 1, + ACTIONS(95), 1, anon_sym_if, - ACTIONS(106), 1, + ACTIONS(98), 1, anon_sym_match, - ACTIONS(109), 1, - anon_sym_EQ_GT, - ACTIONS(112), 1, + ACTIONS(101), 1, anon_sym_while, - ACTIONS(115), 1, + ACTIONS(104), 1, anon_sym_for, - ACTIONS(118), 1, + ACTIONS(107), 1, anon_sym_asyncfor, - ACTIONS(121), 1, + ACTIONS(110), 1, anon_sym_select, - ACTIONS(124), 1, + ACTIONS(113), 1, anon_sym_insert, - ACTIONS(127), 1, + ACTIONS(116), 1, anon_sym_PIPE, + ACTIONS(119), 1, + anon_sym_table, + ACTIONS(122), 1, + anon_sym_return, + ACTIONS(125), 1, + anon_sym_use, + STATE(62), 1, + sym_index, + STATE(76), 1, + sym_expression, + STATE(98), 1, + sym_if, + ACTIONS(69), 2, + ts_builtin_sym_end, + anon_sym_RBRACE, + ACTIONS(86), 2, + sym_float, + sym_string, + ACTIONS(89), 2, + anon_sym_true, + anon_sym_false, + STATE(8), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(69), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(61), 6, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + STATE(172), 11, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_select, + sym_insert, + sym_return, + sym_use, + [660] = 28, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_async, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(21), 1, + anon_sym_if, + ACTIONS(23), 1, + anon_sym_match, + ACTIONS(25), 1, + anon_sym_while, + ACTIONS(27), 1, + anon_sym_for, + ACTIONS(29), 1, + anon_sym_asyncfor, + ACTIONS(31), 1, + anon_sym_select, + ACTIONS(33), 1, + anon_sym_insert, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_table, + ACTIONS(39), 1, + anon_sym_return, + ACTIONS(41), 1, + anon_sym_use, + ACTIONS(128), 1, + anon_sym_RBRACE, + STATE(62), 1, + sym_index, + STATE(76), 1, + sym_expression, + STATE(98), 1, + sym_if, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(8), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(69), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(61), 6, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + STATE(172), 11, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_select, + sym_insert, + sym_return, + sym_use, + [767] = 28, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_async, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(21), 1, + anon_sym_if, + ACTIONS(23), 1, + anon_sym_match, + ACTIONS(25), 1, + anon_sym_while, + ACTIONS(27), 1, + anon_sym_for, + ACTIONS(29), 1, + anon_sym_asyncfor, + ACTIONS(31), 1, + anon_sym_select, + ACTIONS(33), 1, + anon_sym_insert, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_table, + ACTIONS(39), 1, + anon_sym_return, + ACTIONS(41), 1, + anon_sym_use, ACTIONS(130), 1, + anon_sym_RBRACE, + STATE(62), 1, + sym_index, + STATE(76), 1, + sym_expression, + STATE(98), 1, + sym_if, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(8), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(69), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(61), 6, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + STATE(172), 11, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_select, + sym_insert, + sym_return, + sym_use, + [874] = 28, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_async, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(21), 1, + anon_sym_if, + ACTIONS(23), 1, + anon_sym_match, + ACTIONS(25), 1, + anon_sym_while, + ACTIONS(27), 1, + anon_sym_for, + ACTIONS(29), 1, + anon_sym_asyncfor, + ACTIONS(31), 1, + anon_sym_select, + ACTIONS(33), 1, + anon_sym_insert, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, anon_sym_table, - ACTIONS(133), 1, + ACTIONS(39), 1, anon_sym_return, + ACTIONS(41), 1, + anon_sym_use, + ACTIONS(132), 1, + anon_sym_RBRACE, + STATE(62), 1, + sym_index, + STATE(76), 1, + sym_expression, + STATE(98), 1, + sym_if, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(8), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(69), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(61), 6, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + STATE(172), 11, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_select, + sym_insert, + sym_return, + sym_use, + [981] = 28, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_async, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(21), 1, + anon_sym_if, + ACTIONS(23), 1, + anon_sym_match, + ACTIONS(25), 1, + anon_sym_while, + ACTIONS(27), 1, + anon_sym_for, + ACTIONS(29), 1, + anon_sym_asyncfor, + ACTIONS(31), 1, + anon_sym_select, + ACTIONS(33), 1, + anon_sym_insert, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_table, + ACTIONS(39), 1, + anon_sym_return, + ACTIONS(41), 1, + anon_sym_use, + ACTIONS(134), 1, + anon_sym_RBRACE, + STATE(62), 1, + sym_index, + STATE(76), 1, + sym_expression, + STATE(98), 1, + sym_if, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(8), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(69), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(61), 6, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + STATE(172), 11, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_select, + sym_insert, + sym_return, + sym_use, + [1088] = 28, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_async, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(21), 1, + anon_sym_if, + ACTIONS(23), 1, + anon_sym_match, + ACTIONS(25), 1, + anon_sym_while, + ACTIONS(27), 1, + anon_sym_for, + ACTIONS(29), 1, + anon_sym_asyncfor, + ACTIONS(31), 1, + anon_sym_select, + ACTIONS(33), 1, + anon_sym_insert, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_table, + ACTIONS(39), 1, + anon_sym_return, + ACTIONS(41), 1, + anon_sym_use, ACTIONS(136), 1, - anon_sym_use, - STATE(82), 1, + anon_sym_RBRACE, + STATE(62), 1, sym_index, - STATE(98), 1, + STATE(76), 1, sym_expression, - STATE(132), 1, + STATE(98), 1, sym_if, - ACTIONS(77), 2, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(8), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(69), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(61), 6, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + STATE(172), 11, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_select, + sym_insert, + sym_return, + sym_use, + [1195] = 28, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_async, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(21), 1, + anon_sym_if, + ACTIONS(23), 1, + anon_sym_match, + ACTIONS(25), 1, + anon_sym_while, + ACTIONS(27), 1, + anon_sym_for, + ACTIONS(29), 1, + anon_sym_asyncfor, + ACTIONS(31), 1, + anon_sym_select, + ACTIONS(33), 1, + anon_sym_insert, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_table, + ACTIONS(39), 1, + anon_sym_return, + ACTIONS(41), 1, + anon_sym_use, + ACTIONS(138), 1, + anon_sym_RBRACE, + STATE(62), 1, + sym_index, + STATE(76), 1, + sym_expression, + STATE(98), 1, + sym_if, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(8), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(69), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(61), 6, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + STATE(172), 11, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_select, + sym_insert, + sym_return, + sym_use, + [1302] = 28, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_async, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(21), 1, + anon_sym_if, + ACTIONS(23), 1, + anon_sym_match, + ACTIONS(25), 1, + anon_sym_while, + ACTIONS(27), 1, + anon_sym_for, + ACTIONS(29), 1, + anon_sym_asyncfor, + ACTIONS(31), 1, + anon_sym_select, + ACTIONS(33), 1, + anon_sym_insert, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_table, + ACTIONS(39), 1, + anon_sym_return, + ACTIONS(41), 1, + anon_sym_use, + ACTIONS(140), 1, + anon_sym_RBRACE, + STATE(62), 1, + sym_index, + STATE(76), 1, + sym_expression, + STATE(98), 1, + sym_if, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(8), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(69), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(61), 6, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + STATE(172), 11, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_select, + sym_insert, + sym_return, + sym_use, + [1409] = 28, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_async, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(21), 1, + anon_sym_if, + ACTIONS(23), 1, + anon_sym_match, + ACTIONS(25), 1, + anon_sym_while, + ACTIONS(27), 1, + anon_sym_for, + ACTIONS(29), 1, + anon_sym_asyncfor, + ACTIONS(31), 1, + anon_sym_select, + ACTIONS(33), 1, + anon_sym_insert, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_table, + ACTIONS(39), 1, + anon_sym_return, + ACTIONS(41), 1, + anon_sym_use, + ACTIONS(142), 1, + anon_sym_RBRACE, + STATE(62), 1, + sym_index, + STATE(76), 1, + sym_expression, + STATE(98), 1, + sym_if, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(8), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(69), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(61), 6, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + STATE(172), 11, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_select, + sym_insert, + sym_return, + sym_use, + [1516] = 28, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_async, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(21), 1, + anon_sym_if, + ACTIONS(23), 1, + anon_sym_match, + ACTIONS(25), 1, + anon_sym_while, + ACTIONS(27), 1, + anon_sym_for, + ACTIONS(29), 1, + anon_sym_asyncfor, + ACTIONS(31), 1, + anon_sym_select, + ACTIONS(33), 1, + anon_sym_insert, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_table, + ACTIONS(39), 1, + anon_sym_return, + ACTIONS(41), 1, + anon_sym_use, + ACTIONS(144), 1, + anon_sym_RBRACE, + STATE(62), 1, + sym_index, + STATE(76), 1, + sym_expression, + STATE(98), 1, + sym_if, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(8), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(69), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(61), 6, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + STATE(172), 11, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_select, + sym_insert, + sym_return, + sym_use, + [1623] = 28, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_async, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(21), 1, + anon_sym_if, + ACTIONS(23), 1, + anon_sym_match, + ACTIONS(25), 1, + anon_sym_while, + ACTIONS(27), 1, + anon_sym_for, + ACTIONS(29), 1, + anon_sym_asyncfor, + ACTIONS(31), 1, + anon_sym_select, + ACTIONS(33), 1, + anon_sym_insert, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_table, + ACTIONS(39), 1, + anon_sym_return, + ACTIONS(41), 1, + anon_sym_use, + ACTIONS(146), 1, + anon_sym_RBRACE, + STATE(62), 1, + sym_index, + STATE(76), 1, + sym_expression, + STATE(98), 1, + sym_if, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(8), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(69), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(61), 6, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + STATE(172), 11, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_select, + sym_insert, + sym_return, + sym_use, + [1730] = 28, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_async, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(21), 1, + anon_sym_if, + ACTIONS(23), 1, + anon_sym_match, + ACTIONS(25), 1, + anon_sym_while, + ACTIONS(27), 1, + anon_sym_for, + ACTIONS(29), 1, + anon_sym_asyncfor, + ACTIONS(31), 1, + anon_sym_select, + ACTIONS(33), 1, + anon_sym_insert, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_table, + ACTIONS(39), 1, + anon_sym_return, + ACTIONS(41), 1, + anon_sym_use, + ACTIONS(148), 1, + anon_sym_RBRACE, + STATE(62), 1, + sym_index, + STATE(76), 1, + sym_expression, + STATE(98), 1, + sym_if, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(8), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(69), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(61), 6, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + STATE(172), 11, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_select, + sym_insert, + sym_return, + sym_use, + [1837] = 28, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_async, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(21), 1, + anon_sym_if, + ACTIONS(23), 1, + anon_sym_match, + ACTIONS(25), 1, + anon_sym_while, + ACTIONS(27), 1, + anon_sym_for, + ACTIONS(29), 1, + anon_sym_asyncfor, + ACTIONS(31), 1, + anon_sym_select, + ACTIONS(33), 1, + anon_sym_insert, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_table, + ACTIONS(39), 1, + anon_sym_return, + ACTIONS(41), 1, + anon_sym_use, + ACTIONS(150), 1, + anon_sym_RBRACE, + STATE(62), 1, + sym_index, + STATE(76), 1, + sym_expression, + STATE(98), 1, + sym_if, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(8), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(69), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(61), 6, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + STATE(172), 11, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_select, + sym_insert, + sym_return, + sym_use, + [1944] = 28, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_async, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(21), 1, + anon_sym_if, + ACTIONS(23), 1, + anon_sym_match, + ACTIONS(25), 1, + anon_sym_while, + ACTIONS(27), 1, + anon_sym_for, + ACTIONS(29), 1, + anon_sym_asyncfor, + ACTIONS(31), 1, + anon_sym_select, + ACTIONS(33), 1, + anon_sym_insert, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_table, + ACTIONS(39), 1, + anon_sym_return, + ACTIONS(41), 1, + anon_sym_use, + ACTIONS(152), 1, + anon_sym_RBRACE, + STATE(62), 1, + sym_index, + STATE(76), 1, + sym_expression, + STATE(98), 1, + sym_if, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(8), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(69), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(61), 6, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + STATE(172), 11, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_select, + sym_insert, + sym_return, + sym_use, + [2051] = 28, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_async, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(21), 1, + anon_sym_if, + ACTIONS(23), 1, + anon_sym_match, + ACTIONS(25), 1, + anon_sym_while, + ACTIONS(27), 1, + anon_sym_for, + ACTIONS(29), 1, + anon_sym_asyncfor, + ACTIONS(31), 1, + anon_sym_select, + ACTIONS(33), 1, + anon_sym_insert, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_table, + ACTIONS(39), 1, + anon_sym_return, + ACTIONS(41), 1, + anon_sym_use, + ACTIONS(154), 1, ts_builtin_sym_end, + STATE(62), 1, + sym_index, + STATE(76), 1, + sym_expression, + STATE(98), 1, + sym_if, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(8), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(69), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(61), 6, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + STATE(172), 11, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_select, + sym_insert, + sym_return, + sym_use, + [2158] = 28, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_async, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(21), 1, + anon_sym_if, + ACTIONS(23), 1, + anon_sym_match, + ACTIONS(25), 1, + anon_sym_while, + ACTIONS(27), 1, + anon_sym_for, + ACTIONS(29), 1, + anon_sym_asyncfor, + ACTIONS(31), 1, + anon_sym_select, + ACTIONS(33), 1, + anon_sym_insert, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_table, + ACTIONS(39), 1, + anon_sym_return, + ACTIONS(41), 1, + anon_sym_use, + ACTIONS(156), 1, anon_sym_RBRACE, - ACTIONS(94), 2, - sym_float, - sym_string, - ACTIONS(97), 2, - anon_sym_true, - anon_sym_false, - STATE(12), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(103), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(102), 6, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - STATE(200), 11, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_select, - sym_insert, - sym_return, - sym_use, - [1061] = 29, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_async, - ACTIONS(9), 1, - anon_sym_LBRACE, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(21), 1, - anon_sym_if, - ACTIONS(23), 1, - anon_sym_match, - ACTIONS(25), 1, - anon_sym_EQ_GT, - ACTIONS(27), 1, - anon_sym_while, - ACTIONS(29), 1, - anon_sym_for, - ACTIONS(31), 1, - anon_sym_asyncfor, - ACTIONS(33), 1, - anon_sym_select, - ACTIONS(35), 1, - anon_sym_insert, - ACTIONS(37), 1, - anon_sym_PIPE, - ACTIONS(39), 1, - anon_sym_table, - ACTIONS(41), 1, - anon_sym_return, - ACTIONS(43), 1, - anon_sym_use, - ACTIONS(139), 1, - anon_sym_RBRACE, - STATE(82), 1, + STATE(62), 1, sym_index, - STATE(98), 1, + STATE(76), 1, sym_expression, - STATE(132), 1, + STATE(98), 1, sym_if, ACTIONS(15), 2, sym_float, @@ -4354,23 +4969,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(17), 2, anon_sym_true, anon_sym_false, - STATE(12), 2, + STATE(8), 2, sym_statement, aux_sym_root_repeat1, - STATE(103), 5, + STATE(69), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(102), 6, + STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, - STATE(200), 11, + STATE(172), 11, sym_block, sym_assignment, sym_index_assignment, @@ -4382,7 +4997,7 @@ static const uint16_t ts_small_parse_table[] = { sym_insert, sym_return, sym_use, - [1171] = 29, + [2265] = 27, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, @@ -4402,32 +5017,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, - anon_sym_EQ_GT, - ACTIONS(27), 1, anon_sym_while, - ACTIONS(29), 1, + ACTIONS(27), 1, anon_sym_for, - ACTIONS(31), 1, + ACTIONS(29), 1, anon_sym_asyncfor, - ACTIONS(33), 1, + ACTIONS(31), 1, anon_sym_select, - ACTIONS(35), 1, + ACTIONS(33), 1, anon_sym_insert, - ACTIONS(37), 1, + ACTIONS(35), 1, anon_sym_PIPE, - ACTIONS(39), 1, + ACTIONS(37), 1, anon_sym_table, - ACTIONS(41), 1, + ACTIONS(39), 1, anon_sym_return, - ACTIONS(43), 1, + ACTIONS(41), 1, anon_sym_use, - ACTIONS(141), 1, - anon_sym_RBRACE, - STATE(82), 1, + STATE(62), 1, sym_index, - STATE(98), 1, + STATE(76), 1, sym_expression, - STATE(132), 1, + STATE(98), 1, sym_if, ACTIONS(15), 2, sym_float, @@ -4435,23 +5046,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(17), 2, anon_sym_true, anon_sym_false, - STATE(12), 2, + STATE(10), 2, sym_statement, aux_sym_root_repeat1, - STATE(103), 5, + STATE(69), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(102), 6, + STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, - STATE(200), 11, + STATE(172), 11, sym_block, sym_assignment, sym_index_assignment, @@ -4463,7 +5074,7 @@ static const uint16_t ts_small_parse_table[] = { sym_insert, sym_return, sym_use, - [1281] = 29, + [2369] = 27, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, @@ -4483,1486 +5094,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, - anon_sym_EQ_GT, - ACTIONS(27), 1, anon_sym_while, - ACTIONS(29), 1, - anon_sym_for, - ACTIONS(31), 1, - anon_sym_asyncfor, - ACTIONS(33), 1, - anon_sym_select, - ACTIONS(35), 1, - anon_sym_insert, - ACTIONS(37), 1, - anon_sym_PIPE, - ACTIONS(39), 1, - anon_sym_table, - ACTIONS(41), 1, - anon_sym_return, - ACTIONS(43), 1, - anon_sym_use, - ACTIONS(143), 1, - anon_sym_RBRACE, - STATE(82), 1, - sym_index, - STATE(98), 1, - sym_expression, - STATE(132), 1, - sym_if, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(12), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(103), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(102), 6, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - STATE(200), 11, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_select, - sym_insert, - sym_return, - sym_use, - [1391] = 29, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_async, - ACTIONS(9), 1, - anon_sym_LBRACE, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(21), 1, - anon_sym_if, - ACTIONS(23), 1, - anon_sym_match, - ACTIONS(25), 1, - anon_sym_EQ_GT, ACTIONS(27), 1, - anon_sym_while, - ACTIONS(29), 1, anon_sym_for, - ACTIONS(31), 1, - anon_sym_asyncfor, - ACTIONS(33), 1, - anon_sym_select, - ACTIONS(35), 1, - anon_sym_insert, - ACTIONS(37), 1, - anon_sym_PIPE, - ACTIONS(39), 1, - anon_sym_table, - ACTIONS(41), 1, - anon_sym_return, - ACTIONS(43), 1, - anon_sym_use, - ACTIONS(145), 1, - anon_sym_RBRACE, - STATE(82), 1, - sym_index, - STATE(98), 1, - sym_expression, - STATE(132), 1, - sym_if, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(12), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(103), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(102), 6, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - STATE(200), 11, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_select, - sym_insert, - sym_return, - sym_use, - [1501] = 29, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_async, - ACTIONS(9), 1, - anon_sym_LBRACE, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(21), 1, - anon_sym_if, - ACTIONS(23), 1, - anon_sym_match, - ACTIONS(25), 1, - anon_sym_EQ_GT, - ACTIONS(27), 1, - anon_sym_while, ACTIONS(29), 1, - anon_sym_for, - ACTIONS(31), 1, anon_sym_asyncfor, - ACTIONS(33), 1, - anon_sym_select, - ACTIONS(35), 1, - anon_sym_insert, - ACTIONS(37), 1, - anon_sym_PIPE, - ACTIONS(39), 1, - anon_sym_table, - ACTIONS(41), 1, - anon_sym_return, - ACTIONS(43), 1, - anon_sym_use, - ACTIONS(147), 1, - anon_sym_RBRACE, - STATE(82), 1, - sym_index, - STATE(98), 1, - sym_expression, - STATE(132), 1, - sym_if, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(12), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(103), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(102), 6, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - STATE(200), 11, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_select, - sym_insert, - sym_return, - sym_use, - [1611] = 29, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_async, - ACTIONS(9), 1, - anon_sym_LBRACE, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(21), 1, - anon_sym_if, - ACTIONS(23), 1, - anon_sym_match, - ACTIONS(25), 1, - anon_sym_EQ_GT, - ACTIONS(27), 1, - anon_sym_while, - ACTIONS(29), 1, - anon_sym_for, ACTIONS(31), 1, - anon_sym_asyncfor, - ACTIONS(33), 1, anon_sym_select, - ACTIONS(35), 1, - anon_sym_insert, - ACTIONS(37), 1, - anon_sym_PIPE, - ACTIONS(39), 1, - anon_sym_table, - ACTIONS(41), 1, - anon_sym_return, - ACTIONS(43), 1, - anon_sym_use, - ACTIONS(149), 1, - anon_sym_RBRACE, - STATE(82), 1, - sym_index, - STATE(98), 1, - sym_expression, - STATE(132), 1, - sym_if, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(12), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(103), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(102), 6, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - STATE(200), 11, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_select, - sym_insert, - sym_return, - sym_use, - [1721] = 29, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_async, - ACTIONS(9), 1, - anon_sym_LBRACE, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(21), 1, - anon_sym_if, - ACTIONS(23), 1, - anon_sym_match, - ACTIONS(25), 1, - anon_sym_EQ_GT, - ACTIONS(27), 1, - anon_sym_while, - ACTIONS(29), 1, - anon_sym_for, - ACTIONS(31), 1, - anon_sym_asyncfor, ACTIONS(33), 1, - anon_sym_select, - ACTIONS(35), 1, anon_sym_insert, - ACTIONS(37), 1, - anon_sym_PIPE, - ACTIONS(39), 1, - anon_sym_table, - ACTIONS(41), 1, - anon_sym_return, - ACTIONS(43), 1, - anon_sym_use, - ACTIONS(151), 1, - anon_sym_RBRACE, - STATE(82), 1, - sym_index, - STATE(98), 1, - sym_expression, - STATE(132), 1, - sym_if, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(12), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(103), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(102), 6, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - STATE(200), 11, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_select, - sym_insert, - sym_return, - sym_use, - [1831] = 29, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_async, - ACTIONS(9), 1, - anon_sym_LBRACE, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(21), 1, - anon_sym_if, - ACTIONS(23), 1, - anon_sym_match, - ACTIONS(25), 1, - anon_sym_EQ_GT, - ACTIONS(27), 1, - anon_sym_while, - ACTIONS(29), 1, - anon_sym_for, - ACTIONS(31), 1, - anon_sym_asyncfor, - ACTIONS(33), 1, - anon_sym_select, ACTIONS(35), 1, - anon_sym_insert, - ACTIONS(37), 1, anon_sym_PIPE, - ACTIONS(39), 1, - anon_sym_table, - ACTIONS(41), 1, - anon_sym_return, - ACTIONS(43), 1, - anon_sym_use, - ACTIONS(153), 1, - anon_sym_RBRACE, - STATE(82), 1, - sym_index, - STATE(98), 1, - sym_expression, - STATE(132), 1, - sym_if, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(12), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(103), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(102), 6, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - STATE(200), 11, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_select, - sym_insert, - sym_return, - sym_use, - [1941] = 29, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_async, - ACTIONS(9), 1, - anon_sym_LBRACE, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(21), 1, - anon_sym_if, - ACTIONS(23), 1, - anon_sym_match, - ACTIONS(25), 1, - anon_sym_EQ_GT, - ACTIONS(27), 1, - anon_sym_while, - ACTIONS(29), 1, - anon_sym_for, - ACTIONS(31), 1, - anon_sym_asyncfor, - ACTIONS(33), 1, - anon_sym_select, - ACTIONS(35), 1, - anon_sym_insert, ACTIONS(37), 1, - anon_sym_PIPE, - ACTIONS(39), 1, anon_sym_table, - ACTIONS(41), 1, - anon_sym_return, - ACTIONS(43), 1, - anon_sym_use, - ACTIONS(155), 1, - anon_sym_RBRACE, - STATE(82), 1, - sym_index, - STATE(98), 1, - sym_expression, - STATE(132), 1, - sym_if, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(12), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(103), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(102), 6, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - STATE(200), 11, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_select, - sym_insert, - sym_return, - sym_use, - [2051] = 29, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_async, - ACTIONS(9), 1, - anon_sym_LBRACE, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(21), 1, - anon_sym_if, - ACTIONS(23), 1, - anon_sym_match, - ACTIONS(25), 1, - anon_sym_EQ_GT, - ACTIONS(27), 1, - anon_sym_while, - ACTIONS(29), 1, - anon_sym_for, - ACTIONS(31), 1, - anon_sym_asyncfor, - ACTIONS(33), 1, - anon_sym_select, - ACTIONS(35), 1, - anon_sym_insert, - ACTIONS(37), 1, - anon_sym_PIPE, ACTIONS(39), 1, - anon_sym_table, - ACTIONS(41), 1, anon_sym_return, - ACTIONS(43), 1, - anon_sym_use, - ACTIONS(157), 1, - anon_sym_RBRACE, - STATE(82), 1, - sym_index, - STATE(98), 1, - sym_expression, - STATE(132), 1, - sym_if, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(12), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(103), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(102), 6, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - STATE(200), 11, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_select, - sym_insert, - sym_return, - sym_use, - [2161] = 29, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_async, - ACTIONS(9), 1, - anon_sym_LBRACE, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(21), 1, - anon_sym_if, - ACTIONS(23), 1, - anon_sym_match, - ACTIONS(25), 1, - anon_sym_EQ_GT, - ACTIONS(27), 1, - anon_sym_while, - ACTIONS(29), 1, - anon_sym_for, - ACTIONS(31), 1, - anon_sym_asyncfor, - ACTIONS(33), 1, - anon_sym_select, - ACTIONS(35), 1, - anon_sym_insert, - ACTIONS(37), 1, - anon_sym_PIPE, - ACTIONS(39), 1, - anon_sym_table, ACTIONS(41), 1, - anon_sym_return, - ACTIONS(43), 1, anon_sym_use, - ACTIONS(159), 1, - anon_sym_RBRACE, - STATE(82), 1, + STATE(62), 1, sym_index, - STATE(98), 1, + STATE(76), 1, sym_expression, - STATE(132), 1, - sym_if, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(12), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(103), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(102), 6, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - STATE(200), 11, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_select, - sym_insert, - sym_return, - sym_use, - [2271] = 29, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_async, - ACTIONS(9), 1, - anon_sym_LBRACE, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(21), 1, - anon_sym_if, - ACTIONS(23), 1, - anon_sym_match, - ACTIONS(25), 1, - anon_sym_EQ_GT, - ACTIONS(27), 1, - anon_sym_while, - ACTIONS(29), 1, - anon_sym_for, - ACTIONS(31), 1, - anon_sym_asyncfor, - ACTIONS(33), 1, - anon_sym_select, - ACTIONS(35), 1, - anon_sym_insert, - ACTIONS(37), 1, - anon_sym_PIPE, - ACTIONS(39), 1, - anon_sym_table, - ACTIONS(41), 1, - anon_sym_return, - ACTIONS(43), 1, - anon_sym_use, - ACTIONS(161), 1, - anon_sym_RBRACE, - STATE(82), 1, - sym_index, STATE(98), 1, - sym_expression, - STATE(132), 1, - sym_if, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(12), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(103), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(102), 6, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - STATE(200), 11, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_select, - sym_insert, - sym_return, - sym_use, - [2381] = 29, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_async, - ACTIONS(9), 1, - anon_sym_LBRACE, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(21), 1, - anon_sym_if, - ACTIONS(23), 1, - anon_sym_match, - ACTIONS(25), 1, - anon_sym_EQ_GT, - ACTIONS(27), 1, - anon_sym_while, - ACTIONS(29), 1, - anon_sym_for, - ACTIONS(31), 1, - anon_sym_asyncfor, - ACTIONS(33), 1, - anon_sym_select, - ACTIONS(35), 1, - anon_sym_insert, - ACTIONS(37), 1, - anon_sym_PIPE, - ACTIONS(39), 1, - anon_sym_table, - ACTIONS(41), 1, - anon_sym_return, - ACTIONS(43), 1, - anon_sym_use, - ACTIONS(163), 1, - anon_sym_RBRACE, - STATE(82), 1, - sym_index, - STATE(98), 1, - sym_expression, - STATE(132), 1, - sym_if, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(12), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(103), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(102), 6, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - STATE(200), 11, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_select, - sym_insert, - sym_return, - sym_use, - [2491] = 29, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_async, - ACTIONS(9), 1, - anon_sym_LBRACE, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(21), 1, - anon_sym_if, - ACTIONS(23), 1, - anon_sym_match, - ACTIONS(25), 1, - anon_sym_EQ_GT, - ACTIONS(27), 1, - anon_sym_while, - ACTIONS(29), 1, - anon_sym_for, - ACTIONS(31), 1, - anon_sym_asyncfor, - ACTIONS(33), 1, - anon_sym_select, - ACTIONS(35), 1, - anon_sym_insert, - ACTIONS(37), 1, - anon_sym_PIPE, - ACTIONS(39), 1, - anon_sym_table, - ACTIONS(41), 1, - anon_sym_return, - ACTIONS(43), 1, - anon_sym_use, - ACTIONS(165), 1, - ts_builtin_sym_end, - STATE(82), 1, - sym_index, - STATE(98), 1, - sym_expression, - STATE(132), 1, - sym_if, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(12), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(103), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(102), 6, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - STATE(200), 11, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_select, - sym_insert, - sym_return, - sym_use, - [2601] = 29, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_async, - ACTIONS(9), 1, - anon_sym_LBRACE, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(21), 1, - anon_sym_if, - ACTIONS(23), 1, - anon_sym_match, - ACTIONS(25), 1, - anon_sym_EQ_GT, - ACTIONS(27), 1, - anon_sym_while, - ACTIONS(29), 1, - anon_sym_for, - ACTIONS(31), 1, - anon_sym_asyncfor, - ACTIONS(33), 1, - anon_sym_select, - ACTIONS(35), 1, - anon_sym_insert, - ACTIONS(37), 1, - anon_sym_PIPE, - ACTIONS(39), 1, - anon_sym_table, - ACTIONS(41), 1, - anon_sym_return, - ACTIONS(43), 1, - anon_sym_use, - ACTIONS(167), 1, - anon_sym_RBRACE, - STATE(82), 1, - sym_index, - STATE(98), 1, - sym_expression, - STATE(132), 1, - sym_if, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(12), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(103), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(102), 6, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - STATE(200), 11, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_select, - sym_insert, - sym_return, - sym_use, - [2711] = 29, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_async, - ACTIONS(9), 1, - anon_sym_LBRACE, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(21), 1, - anon_sym_if, - ACTIONS(23), 1, - anon_sym_match, - ACTIONS(25), 1, - anon_sym_EQ_GT, - ACTIONS(27), 1, - anon_sym_while, - ACTIONS(29), 1, - anon_sym_for, - ACTIONS(31), 1, - anon_sym_asyncfor, - ACTIONS(33), 1, - anon_sym_select, - ACTIONS(35), 1, - anon_sym_insert, - ACTIONS(37), 1, - anon_sym_PIPE, - ACTIONS(39), 1, - anon_sym_table, - ACTIONS(41), 1, - anon_sym_return, - ACTIONS(43), 1, - anon_sym_use, - ACTIONS(169), 1, - anon_sym_RBRACE, - STATE(82), 1, - sym_index, - STATE(98), 1, - sym_expression, - STATE(132), 1, - sym_if, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(12), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(103), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(102), 6, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - STATE(200), 11, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_select, - sym_insert, - sym_return, - sym_use, - [2821] = 29, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_async, - ACTIONS(9), 1, - anon_sym_LBRACE, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(21), 1, - anon_sym_if, - ACTIONS(23), 1, - anon_sym_match, - ACTIONS(25), 1, - anon_sym_EQ_GT, - ACTIONS(27), 1, - anon_sym_while, - ACTIONS(29), 1, - anon_sym_for, - ACTIONS(31), 1, - anon_sym_asyncfor, - ACTIONS(33), 1, - anon_sym_select, - ACTIONS(35), 1, - anon_sym_insert, - ACTIONS(37), 1, - anon_sym_PIPE, - ACTIONS(39), 1, - anon_sym_table, - ACTIONS(41), 1, - anon_sym_return, - ACTIONS(43), 1, - anon_sym_use, - ACTIONS(171), 1, - anon_sym_RBRACE, - STATE(82), 1, - sym_index, - STATE(98), 1, - sym_expression, - STATE(132), 1, - sym_if, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(12), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(103), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(102), 6, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - STATE(200), 11, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_select, - sym_insert, - sym_return, - sym_use, - [2931] = 29, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_async, - ACTIONS(9), 1, - anon_sym_LBRACE, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(21), 1, - anon_sym_if, - ACTIONS(23), 1, - anon_sym_match, - ACTIONS(25), 1, - anon_sym_EQ_GT, - ACTIONS(27), 1, - anon_sym_while, - ACTIONS(29), 1, - anon_sym_for, - ACTIONS(31), 1, - anon_sym_asyncfor, - ACTIONS(33), 1, - anon_sym_select, - ACTIONS(35), 1, - anon_sym_insert, - ACTIONS(37), 1, - anon_sym_PIPE, - ACTIONS(39), 1, - anon_sym_table, - ACTIONS(41), 1, - anon_sym_return, - ACTIONS(43), 1, - anon_sym_use, - ACTIONS(173), 1, - anon_sym_RBRACE, - STATE(82), 1, - sym_index, - STATE(98), 1, - sym_expression, - STATE(132), 1, - sym_if, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(12), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(103), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(102), 6, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - STATE(200), 11, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_select, - sym_insert, - sym_return, - sym_use, - [3041] = 29, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_async, - ACTIONS(9), 1, - anon_sym_LBRACE, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(21), 1, - anon_sym_if, - ACTIONS(23), 1, - anon_sym_match, - ACTIONS(25), 1, - anon_sym_EQ_GT, - ACTIONS(27), 1, - anon_sym_while, - ACTIONS(29), 1, - anon_sym_for, - ACTIONS(31), 1, - anon_sym_asyncfor, - ACTIONS(33), 1, - anon_sym_select, - ACTIONS(35), 1, - anon_sym_insert, - ACTIONS(37), 1, - anon_sym_PIPE, - ACTIONS(39), 1, - anon_sym_table, - ACTIONS(41), 1, - anon_sym_return, - ACTIONS(43), 1, - anon_sym_use, - ACTIONS(175), 1, - anon_sym_RBRACE, - STATE(82), 1, - sym_index, - STATE(98), 1, - sym_expression, - STATE(132), 1, - sym_if, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(12), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(103), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(102), 6, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - STATE(200), 11, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_select, - sym_insert, - sym_return, - sym_use, - [3151] = 28, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_async, - ACTIONS(9), 1, - anon_sym_LBRACE, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(21), 1, - anon_sym_if, - ACTIONS(23), 1, - anon_sym_match, - ACTIONS(25), 1, - anon_sym_EQ_GT, - ACTIONS(27), 1, - anon_sym_while, - ACTIONS(29), 1, - anon_sym_for, - ACTIONS(31), 1, - anon_sym_asyncfor, - ACTIONS(33), 1, - anon_sym_select, - ACTIONS(35), 1, - anon_sym_insert, - ACTIONS(37), 1, - anon_sym_PIPE, - ACTIONS(39), 1, - anon_sym_table, - ACTIONS(41), 1, - anon_sym_return, - ACTIONS(43), 1, - anon_sym_use, - STATE(82), 1, - sym_index, - STATE(98), 1, - sym_expression, - STATE(132), 1, - sym_if, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(15), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(103), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(102), 6, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - STATE(200), 11, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_select, - sym_insert, - sym_return, - sym_use, - [3258] = 28, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_async, - ACTIONS(9), 1, - anon_sym_LBRACE, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(21), 1, - anon_sym_if, - ACTIONS(23), 1, - anon_sym_match, - ACTIONS(25), 1, - anon_sym_EQ_GT, - ACTIONS(27), 1, - anon_sym_while, - ACTIONS(29), 1, - anon_sym_for, - ACTIONS(31), 1, - anon_sym_asyncfor, - ACTIONS(33), 1, - anon_sym_select, - ACTIONS(35), 1, - anon_sym_insert, - ACTIONS(37), 1, - anon_sym_PIPE, - ACTIONS(39), 1, - anon_sym_table, - ACTIONS(41), 1, - anon_sym_return, - ACTIONS(43), 1, - anon_sym_use, - STATE(82), 1, - sym_index, - STATE(98), 1, - sym_expression, - STATE(132), 1, sym_if, ACTIONS(15), 2, sym_float, @@ -5973,20 +5126,20 @@ static const uint16_t ts_small_parse_table[] = { STATE(20), 2, sym_statement, aux_sym_root_repeat1, - STATE(103), 5, + STATE(69), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(102), 6, + STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, - STATE(200), 11, + STATE(172), 11, sym_block, sym_assignment, sym_index_assignment, @@ -5998,7 +5151,7 @@ static const uint16_t ts_small_parse_table[] = { sym_insert, sym_return, sym_use, - [3365] = 28, + [2473] = 27, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, @@ -6018,741 +5171,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, - anon_sym_EQ_GT, - ACTIONS(27), 1, anon_sym_while, - ACTIONS(29), 1, - anon_sym_for, - ACTIONS(31), 1, - anon_sym_asyncfor, - ACTIONS(33), 1, - anon_sym_select, - ACTIONS(35), 1, - anon_sym_insert, - ACTIONS(37), 1, - anon_sym_PIPE, - ACTIONS(39), 1, - anon_sym_table, - ACTIONS(41), 1, - anon_sym_return, - ACTIONS(43), 1, - anon_sym_use, - STATE(82), 1, - sym_index, - STATE(98), 1, - sym_expression, - STATE(132), 1, - sym_if, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(21), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(103), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(102), 6, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - STATE(200), 11, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_select, - sym_insert, - sym_return, - sym_use, - [3472] = 28, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_async, - ACTIONS(9), 1, - anon_sym_LBRACE, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(21), 1, - anon_sym_if, - ACTIONS(23), 1, - anon_sym_match, - ACTIONS(25), 1, - anon_sym_EQ_GT, ACTIONS(27), 1, - anon_sym_while, - ACTIONS(29), 1, anon_sym_for, - ACTIONS(31), 1, - anon_sym_asyncfor, - ACTIONS(33), 1, - anon_sym_select, - ACTIONS(35), 1, - anon_sym_insert, - ACTIONS(37), 1, - anon_sym_PIPE, - ACTIONS(39), 1, - anon_sym_table, - ACTIONS(41), 1, - anon_sym_return, - ACTIONS(43), 1, - anon_sym_use, - STATE(82), 1, - sym_index, - STATE(98), 1, - sym_expression, - STATE(132), 1, - sym_if, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(24), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(103), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(102), 6, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - STATE(200), 11, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_select, - sym_insert, - sym_return, - sym_use, - [3579] = 28, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_async, - ACTIONS(9), 1, - anon_sym_LBRACE, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(21), 1, - anon_sym_if, - ACTIONS(23), 1, - anon_sym_match, - ACTIONS(25), 1, - anon_sym_EQ_GT, - ACTIONS(27), 1, - anon_sym_while, ACTIONS(29), 1, - anon_sym_for, - ACTIONS(31), 1, anon_sym_asyncfor, - ACTIONS(33), 1, - anon_sym_select, - ACTIONS(35), 1, - anon_sym_insert, - ACTIONS(37), 1, - anon_sym_PIPE, - ACTIONS(39), 1, - anon_sym_table, - ACTIONS(41), 1, - anon_sym_return, - ACTIONS(43), 1, - anon_sym_use, - STATE(82), 1, - sym_index, - STATE(98), 1, - sym_expression, - STATE(132), 1, - sym_if, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(30), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(103), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(102), 6, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - STATE(200), 11, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_select, - sym_insert, - sym_return, - sym_use, - [3686] = 28, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_async, - ACTIONS(9), 1, - anon_sym_LBRACE, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(21), 1, - anon_sym_if, - ACTIONS(23), 1, - anon_sym_match, - ACTIONS(25), 1, - anon_sym_EQ_GT, - ACTIONS(27), 1, - anon_sym_while, - ACTIONS(29), 1, - anon_sym_for, ACTIONS(31), 1, - anon_sym_asyncfor, - ACTIONS(33), 1, anon_sym_select, - ACTIONS(35), 1, - anon_sym_insert, - ACTIONS(37), 1, - anon_sym_PIPE, - ACTIONS(39), 1, - anon_sym_table, - ACTIONS(41), 1, - anon_sym_return, - ACTIONS(43), 1, - anon_sym_use, - STATE(82), 1, - sym_index, - STATE(98), 1, - sym_expression, - STATE(132), 1, - sym_if, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(19), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(103), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(102), 6, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - STATE(200), 11, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_select, - sym_insert, - sym_return, - sym_use, - [3793] = 28, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_async, - ACTIONS(9), 1, - anon_sym_LBRACE, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(21), 1, - anon_sym_if, - ACTIONS(23), 1, - anon_sym_match, - ACTIONS(25), 1, - anon_sym_EQ_GT, - ACTIONS(27), 1, - anon_sym_while, - ACTIONS(29), 1, - anon_sym_for, - ACTIONS(31), 1, - anon_sym_asyncfor, ACTIONS(33), 1, - anon_sym_select, - ACTIONS(35), 1, anon_sym_insert, - ACTIONS(37), 1, - anon_sym_PIPE, - ACTIONS(39), 1, - anon_sym_table, - ACTIONS(41), 1, - anon_sym_return, - ACTIONS(43), 1, - anon_sym_use, - STATE(82), 1, - sym_index, - STATE(98), 1, - sym_expression, - STATE(132), 1, - sym_if, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(22), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(103), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(102), 6, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - STATE(200), 11, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_select, - sym_insert, - sym_return, - sym_use, - [3900] = 28, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_async, - ACTIONS(9), 1, - anon_sym_LBRACE, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(21), 1, - anon_sym_if, - ACTIONS(23), 1, - anon_sym_match, - ACTIONS(25), 1, - anon_sym_EQ_GT, - ACTIONS(27), 1, - anon_sym_while, - ACTIONS(29), 1, - anon_sym_for, - ACTIONS(31), 1, - anon_sym_asyncfor, - ACTIONS(33), 1, - anon_sym_select, ACTIONS(35), 1, - anon_sym_insert, - ACTIONS(37), 1, anon_sym_PIPE, - ACTIONS(39), 1, - anon_sym_table, - ACTIONS(41), 1, - anon_sym_return, - ACTIONS(43), 1, - anon_sym_use, - STATE(82), 1, - sym_index, - STATE(98), 1, - sym_expression, - STATE(132), 1, - sym_if, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(14), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(103), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(102), 6, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - STATE(200), 11, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_select, - sym_insert, - sym_return, - sym_use, - [4007] = 28, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_async, - ACTIONS(9), 1, - anon_sym_LBRACE, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(21), 1, - anon_sym_if, - ACTIONS(23), 1, - anon_sym_match, - ACTIONS(25), 1, - anon_sym_EQ_GT, - ACTIONS(27), 1, - anon_sym_while, - ACTIONS(29), 1, - anon_sym_for, - ACTIONS(31), 1, - anon_sym_asyncfor, - ACTIONS(33), 1, - anon_sym_select, - ACTIONS(35), 1, - anon_sym_insert, ACTIONS(37), 1, - anon_sym_PIPE, - ACTIONS(39), 1, anon_sym_table, - ACTIONS(41), 1, - anon_sym_return, - ACTIONS(43), 1, - anon_sym_use, - STATE(82), 1, - sym_index, - STATE(98), 1, - sym_expression, - STATE(132), 1, - sym_if, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(18), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(103), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(102), 6, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - STATE(200), 11, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_select, - sym_insert, - sym_return, - sym_use, - [4114] = 28, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_async, - ACTIONS(9), 1, - anon_sym_LBRACE, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(21), 1, - anon_sym_if, - ACTIONS(23), 1, - anon_sym_match, - ACTIONS(25), 1, - anon_sym_EQ_GT, - ACTIONS(27), 1, - anon_sym_while, - ACTIONS(29), 1, - anon_sym_for, - ACTIONS(31), 1, - anon_sym_asyncfor, - ACTIONS(33), 1, - anon_sym_select, - ACTIONS(35), 1, - anon_sym_insert, - ACTIONS(37), 1, - anon_sym_PIPE, ACTIONS(39), 1, - anon_sym_table, - ACTIONS(41), 1, anon_sym_return, - ACTIONS(43), 1, - anon_sym_use, - STATE(82), 1, - sym_index, - STATE(98), 1, - sym_expression, - STATE(132), 1, - sym_if, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(13), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(103), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(102), 6, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - STATE(200), 11, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_select, - sym_insert, - sym_return, - sym_use, - [4221] = 28, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_async, - ACTIONS(9), 1, - anon_sym_LBRACE, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(21), 1, - anon_sym_if, - ACTIONS(23), 1, - anon_sym_match, - ACTIONS(25), 1, - anon_sym_EQ_GT, - ACTIONS(27), 1, - anon_sym_while, - ACTIONS(29), 1, - anon_sym_for, - ACTIONS(31), 1, - anon_sym_asyncfor, - ACTIONS(33), 1, - anon_sym_select, - ACTIONS(35), 1, - anon_sym_insert, - ACTIONS(37), 1, - anon_sym_PIPE, - ACTIONS(39), 1, - anon_sym_table, ACTIONS(41), 1, - anon_sym_return, - ACTIONS(43), 1, anon_sym_use, - STATE(82), 1, + STATE(62), 1, sym_index, - STATE(98), 1, + STATE(76), 1, sym_expression, - STATE(132), 1, - sym_if, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(17), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(103), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(102), 6, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - STATE(200), 11, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_select, - sym_insert, - sym_return, - sym_use, - [4328] = 28, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_async, - ACTIONS(9), 1, - anon_sym_LBRACE, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(21), 1, - anon_sym_if, - ACTIONS(23), 1, - anon_sym_match, - ACTIONS(25), 1, - anon_sym_EQ_GT, - ACTIONS(27), 1, - anon_sym_while, - ACTIONS(29), 1, - anon_sym_for, - ACTIONS(31), 1, - anon_sym_asyncfor, - ACTIONS(33), 1, - anon_sym_select, - ACTIONS(35), 1, - anon_sym_insert, - ACTIONS(37), 1, - anon_sym_PIPE, - ACTIONS(39), 1, - anon_sym_table, - ACTIONS(41), 1, - anon_sym_return, - ACTIONS(43), 1, - anon_sym_use, - STATE(82), 1, - sym_index, STATE(98), 1, - sym_expression, - STATE(132), 1, sym_if, ACTIONS(15), 2, sym_float, @@ -6763,20 +5203,20 @@ static const uint16_t ts_small_parse_table[] = { STATE(23), 2, sym_statement, aux_sym_root_repeat1, - STATE(103), 5, + STATE(69), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(102), 6, + STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, - STATE(200), 11, + STATE(172), 11, sym_block, sym_assignment, sym_index_assignment, @@ -6788,7 +5228,7 @@ static const uint16_t ts_small_parse_table[] = { sym_insert, sym_return, sym_use, - [4435] = 28, + [2577] = 27, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, @@ -6808,30 +5248,644 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, - anon_sym_EQ_GT, - ACTIONS(27), 1, anon_sym_while, - ACTIONS(29), 1, + ACTIONS(27), 1, anon_sym_for, - ACTIONS(31), 1, + ACTIONS(29), 1, anon_sym_asyncfor, - ACTIONS(33), 1, + ACTIONS(31), 1, anon_sym_select, - ACTIONS(35), 1, + ACTIONS(33), 1, anon_sym_insert, - ACTIONS(37), 1, + ACTIONS(35), 1, anon_sym_PIPE, - ACTIONS(39), 1, + ACTIONS(37), 1, anon_sym_table, - ACTIONS(41), 1, + ACTIONS(39), 1, anon_sym_return, - ACTIONS(43), 1, + ACTIONS(41), 1, anon_sym_use, - STATE(82), 1, + STATE(62), 1, sym_index, - STATE(98), 1, + STATE(76), 1, sym_expression, - STATE(132), 1, + STATE(98), 1, + sym_if, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(12), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(69), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(61), 6, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + STATE(172), 11, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_select, + sym_insert, + sym_return, + sym_use, + [2681] = 27, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_async, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(21), 1, + anon_sym_if, + ACTIONS(23), 1, + anon_sym_match, + ACTIONS(25), 1, + anon_sym_while, + ACTIONS(27), 1, + anon_sym_for, + ACTIONS(29), 1, + anon_sym_asyncfor, + ACTIONS(31), 1, + anon_sym_select, + ACTIONS(33), 1, + anon_sym_insert, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_table, + ACTIONS(39), 1, + anon_sym_return, + ACTIONS(41), 1, + anon_sym_use, + STATE(62), 1, + sym_index, + STATE(76), 1, + sym_expression, + STATE(98), 1, + sym_if, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(11), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(69), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(61), 6, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + STATE(172), 11, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_select, + sym_insert, + sym_return, + sym_use, + [2785] = 27, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_async, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(21), 1, + anon_sym_if, + ACTIONS(23), 1, + anon_sym_match, + ACTIONS(25), 1, + anon_sym_while, + ACTIONS(27), 1, + anon_sym_for, + ACTIONS(29), 1, + anon_sym_asyncfor, + ACTIONS(31), 1, + anon_sym_select, + ACTIONS(33), 1, + anon_sym_insert, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_table, + ACTIONS(39), 1, + anon_sym_return, + ACTIONS(41), 1, + anon_sym_use, + STATE(62), 1, + sym_index, + STATE(76), 1, + sym_expression, + STATE(98), 1, + sym_if, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(17), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(69), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(61), 6, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + STATE(172), 11, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_select, + sym_insert, + sym_return, + sym_use, + [2889] = 27, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_async, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(21), 1, + anon_sym_if, + ACTIONS(23), 1, + anon_sym_match, + ACTIONS(25), 1, + anon_sym_while, + ACTIONS(27), 1, + anon_sym_for, + ACTIONS(29), 1, + anon_sym_asyncfor, + ACTIONS(31), 1, + anon_sym_select, + ACTIONS(33), 1, + anon_sym_insert, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_table, + ACTIONS(39), 1, + anon_sym_return, + ACTIONS(41), 1, + anon_sym_use, + STATE(62), 1, + sym_index, + STATE(76), 1, + sym_expression, + STATE(98), 1, + sym_if, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(14), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(69), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(61), 6, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + STATE(172), 11, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_select, + sym_insert, + sym_return, + sym_use, + [2993] = 27, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_async, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(21), 1, + anon_sym_if, + ACTIONS(23), 1, + anon_sym_match, + ACTIONS(25), 1, + anon_sym_while, + ACTIONS(27), 1, + anon_sym_for, + ACTIONS(29), 1, + anon_sym_asyncfor, + ACTIONS(31), 1, + anon_sym_select, + ACTIONS(33), 1, + anon_sym_insert, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_table, + ACTIONS(39), 1, + anon_sym_return, + ACTIONS(41), 1, + anon_sym_use, + STATE(62), 1, + sym_index, + STATE(76), 1, + sym_expression, + STATE(98), 1, + sym_if, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(9), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(69), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(61), 6, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + STATE(172), 11, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_select, + sym_insert, + sym_return, + sym_use, + [3097] = 27, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_async, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(21), 1, + anon_sym_if, + ACTIONS(23), 1, + anon_sym_match, + ACTIONS(25), 1, + anon_sym_while, + ACTIONS(27), 1, + anon_sym_for, + ACTIONS(29), 1, + anon_sym_asyncfor, + ACTIONS(31), 1, + anon_sym_select, + ACTIONS(33), 1, + anon_sym_insert, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_table, + ACTIONS(39), 1, + anon_sym_return, + ACTIONS(41), 1, + anon_sym_use, + STATE(62), 1, + sym_index, + STATE(76), 1, + sym_expression, + STATE(98), 1, + sym_if, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(19), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(69), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(61), 6, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + STATE(172), 11, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_select, + sym_insert, + sym_return, + sym_use, + [3201] = 27, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_async, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(21), 1, + anon_sym_if, + ACTIONS(23), 1, + anon_sym_match, + ACTIONS(25), 1, + anon_sym_while, + ACTIONS(27), 1, + anon_sym_for, + ACTIONS(29), 1, + anon_sym_asyncfor, + ACTIONS(31), 1, + anon_sym_select, + ACTIONS(33), 1, + anon_sym_insert, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_table, + ACTIONS(39), 1, + anon_sym_return, + ACTIONS(41), 1, + anon_sym_use, + STATE(62), 1, + sym_index, + STATE(76), 1, + sym_expression, + STATE(98), 1, + sym_if, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(21), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(69), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(61), 6, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + STATE(172), 11, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_select, + sym_insert, + sym_return, + sym_use, + [3305] = 27, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_async, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(21), 1, + anon_sym_if, + ACTIONS(23), 1, + anon_sym_match, + ACTIONS(25), 1, + anon_sym_while, + ACTIONS(27), 1, + anon_sym_for, + ACTIONS(29), 1, + anon_sym_asyncfor, + ACTIONS(31), 1, + anon_sym_select, + ACTIONS(33), 1, + anon_sym_insert, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_table, + ACTIONS(39), 1, + anon_sym_return, + ACTIONS(41), 1, + anon_sym_use, + STATE(62), 1, + sym_index, + STATE(76), 1, + sym_expression, + STATE(98), 1, + sym_if, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(18), 2, + sym_statement, + aux_sym_root_repeat1, + STATE(69), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(61), 6, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + STATE(172), 11, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_select, + sym_insert, + sym_return, + sym_use, + [3409] = 27, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym_identifier, + ACTIONS(7), 1, + anon_sym_async, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(21), 1, + anon_sym_if, + ACTIONS(23), 1, + anon_sym_match, + ACTIONS(25), 1, + anon_sym_while, + ACTIONS(27), 1, + anon_sym_for, + ACTIONS(29), 1, + anon_sym_asyncfor, + ACTIONS(31), 1, + anon_sym_select, + ACTIONS(33), 1, + anon_sym_insert, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_table, + ACTIONS(39), 1, + anon_sym_return, + ACTIONS(41), 1, + anon_sym_use, + STATE(62), 1, + sym_index, + STATE(76), 1, + sym_expression, + STATE(98), 1, sym_if, ACTIONS(15), 2, sym_float, @@ -6842,20 +5896,20 @@ static const uint16_t ts_small_parse_table[] = { STATE(16), 2, sym_statement, aux_sym_root_repeat1, - STATE(103), 5, + STATE(69), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(102), 6, + STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, - STATE(200), 11, + STATE(172), 11, sym_block, sym_assignment, sym_index_assignment, @@ -6867,7 +5921,7 @@ static const uint16_t ts_small_parse_table[] = { sym_insert, sym_return, sym_use, - [4542] = 28, + [3513] = 27, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, @@ -6887,30 +5941,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, - anon_sym_EQ_GT, - ACTIONS(27), 1, anon_sym_while, - ACTIONS(29), 1, + ACTIONS(27), 1, anon_sym_for, - ACTIONS(31), 1, + ACTIONS(29), 1, anon_sym_asyncfor, - ACTIONS(33), 1, + ACTIONS(31), 1, anon_sym_select, - ACTIONS(35), 1, + ACTIONS(33), 1, anon_sym_insert, - ACTIONS(37), 1, + ACTIONS(35), 1, anon_sym_PIPE, - ACTIONS(39), 1, + ACTIONS(37), 1, anon_sym_table, - ACTIONS(41), 1, + ACTIONS(39), 1, anon_sym_return, - ACTIONS(43), 1, + ACTIONS(41), 1, anon_sym_use, - STATE(82), 1, + STATE(62), 1, sym_index, - STATE(98), 1, + STATE(76), 1, sym_expression, - STATE(132), 1, + STATE(98), 1, sym_if, ACTIONS(15), 2, sym_float, @@ -6918,23 +5970,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(17), 2, anon_sym_true, anon_sym_false, - STATE(28), 2, + STATE(15), 2, sym_statement, aux_sym_root_repeat1, - STATE(103), 5, + STATE(69), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(102), 6, + STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, - STATE(200), 11, + STATE(172), 11, sym_block, sym_assignment, sym_index_assignment, @@ -6946,7 +5998,7 @@ static const uint16_t ts_small_parse_table[] = { sym_insert, sym_return, sym_use, - [4649] = 28, + [3617] = 27, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, @@ -6966,30 +6018,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, - anon_sym_EQ_GT, - ACTIONS(27), 1, anon_sym_while, - ACTIONS(29), 1, + ACTIONS(27), 1, anon_sym_for, - ACTIONS(31), 1, + ACTIONS(29), 1, anon_sym_asyncfor, - ACTIONS(33), 1, + ACTIONS(31), 1, anon_sym_select, - ACTIONS(35), 1, + ACTIONS(33), 1, anon_sym_insert, - ACTIONS(37), 1, + ACTIONS(35), 1, anon_sym_PIPE, - ACTIONS(39), 1, + ACTIONS(37), 1, anon_sym_table, - ACTIONS(41), 1, + ACTIONS(39), 1, anon_sym_return, - ACTIONS(43), 1, + ACTIONS(41), 1, anon_sym_use, - STATE(82), 1, + STATE(62), 1, sym_index, - STATE(98), 1, + STATE(76), 1, sym_expression, - STATE(132), 1, + STATE(98), 1, sym_if, ACTIONS(15), 2, sym_float, @@ -6997,23 +6047,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(17), 2, anon_sym_true, anon_sym_false, - STATE(29), 2, + STATE(13), 2, sym_statement, aux_sym_root_repeat1, - STATE(103), 5, + STATE(69), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(102), 6, + STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, - STATE(200), 11, + STATE(172), 11, sym_block, sym_assignment, sym_index_assignment, @@ -7025,7 +6075,7 @@ static const uint16_t ts_small_parse_table[] = { sym_insert, sym_return, sym_use, - [4756] = 28, + [3721] = 27, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, @@ -7045,54 +6095,51 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, - anon_sym_EQ_GT, - ACTIONS(27), 1, anon_sym_while, - ACTIONS(29), 1, + ACTIONS(27), 1, anon_sym_for, - ACTIONS(31), 1, + ACTIONS(29), 1, anon_sym_asyncfor, - ACTIONS(33), 1, + ACTIONS(31), 1, anon_sym_select, - ACTIONS(35), 1, + ACTIONS(33), 1, anon_sym_insert, - ACTIONS(37), 1, + ACTIONS(35), 1, anon_sym_PIPE, - ACTIONS(39), 1, + ACTIONS(37), 1, anon_sym_table, - ACTIONS(41), 1, + ACTIONS(39), 1, anon_sym_return, - ACTIONS(43), 1, + ACTIONS(41), 1, anon_sym_use, - STATE(82), 1, + STATE(62), 1, sym_index, + STATE(75), 1, + sym_expression, STATE(98), 1, - sym_expression, - STATE(132), 1, sym_if, + STATE(179), 1, + sym_statement, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, - STATE(31), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(103), 5, + STATE(69), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(102), 6, + STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, - STATE(200), 11, + STATE(169), 11, sym_block, sym_assignment, sym_index_assignment, @@ -7104,7 +6151,7 @@ static const uint16_t ts_small_parse_table[] = { sym_insert, sym_return, sym_use, - [4863] = 28, + [3824] = 27, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, @@ -7124,54 +6171,51 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, - anon_sym_EQ_GT, - ACTIONS(27), 1, anon_sym_while, - ACTIONS(29), 1, + ACTIONS(27), 1, anon_sym_for, - ACTIONS(31), 1, + ACTIONS(29), 1, anon_sym_asyncfor, - ACTIONS(33), 1, + ACTIONS(31), 1, anon_sym_select, - ACTIONS(35), 1, + ACTIONS(33), 1, anon_sym_insert, - ACTIONS(37), 1, + ACTIONS(35), 1, anon_sym_PIPE, - ACTIONS(39), 1, + ACTIONS(37), 1, anon_sym_table, - ACTIONS(41), 1, + ACTIONS(39), 1, anon_sym_return, - ACTIONS(43), 1, + ACTIONS(41), 1, anon_sym_use, - STATE(82), 1, + STATE(62), 1, sym_index, + STATE(75), 1, + sym_expression, STATE(98), 1, - sym_expression, - STATE(132), 1, sym_if, + STATE(168), 1, + sym_statement, ACTIONS(15), 2, sym_float, sym_string, ACTIONS(17), 2, anon_sym_true, anon_sym_false, - STATE(27), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(103), 5, + STATE(69), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(102), 6, + STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, - STATE(200), 11, + STATE(169), 11, sym_block, sym_assignment, sym_index_assignment, @@ -7183,7 +6227,159 @@ static const uint16_t ts_small_parse_table[] = { sym_insert, sym_return, sym_use, - [4970] = 28, + [3927] = 27, + ACTIONS(3), 1, + sym__comment, + ACTIONS(158), 1, + sym_identifier, + ACTIONS(160), 1, + anon_sym_async, + ACTIONS(162), 1, + anon_sym_LBRACE, + ACTIONS(164), 1, + anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(174), 1, + anon_sym_if, + ACTIONS(176), 1, + anon_sym_match, + ACTIONS(178), 1, + anon_sym_while, + ACTIONS(180), 1, + anon_sym_for, + ACTIONS(182), 1, + anon_sym_asyncfor, + ACTIONS(184), 1, + anon_sym_select, + ACTIONS(186), 1, + anon_sym_insert, + ACTIONS(188), 1, + anon_sym_PIPE, + ACTIONS(190), 1, + anon_sym_table, + ACTIONS(192), 1, + anon_sym_return, + ACTIONS(194), 1, + anon_sym_use, + STATE(186), 1, + sym_index, + STATE(236), 1, + sym_expression, + STATE(269), 1, + sym_if, + STATE(303), 1, + sym_statement, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(141), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(139), 6, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + STATE(301), 11, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_select, + sym_insert, + sym_return, + sym_use, + [4030] = 27, + ACTIONS(3), 1, + sym__comment, + ACTIONS(158), 1, + sym_identifier, + ACTIONS(160), 1, + anon_sym_async, + ACTIONS(162), 1, + anon_sym_LBRACE, + ACTIONS(164), 1, + anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(174), 1, + anon_sym_if, + ACTIONS(176), 1, + anon_sym_match, + ACTIONS(178), 1, + anon_sym_while, + ACTIONS(180), 1, + anon_sym_for, + ACTIONS(182), 1, + anon_sym_asyncfor, + ACTIONS(184), 1, + anon_sym_select, + ACTIONS(186), 1, + anon_sym_insert, + ACTIONS(188), 1, + anon_sym_PIPE, + ACTIONS(190), 1, + anon_sym_table, + ACTIONS(192), 1, + anon_sym_return, + ACTIONS(194), 1, + anon_sym_use, + STATE(186), 1, + sym_index, + STATE(236), 1, + sym_expression, + STATE(269), 1, + sym_if, + STATE(300), 1, + sym_statement, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(141), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(139), 6, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + STATE(301), 11, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_select, + sym_insert, + sym_return, + sym_use, + [4133] = 27, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, @@ -7203,111 +6399,30 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(23), 1, anon_sym_match, ACTIONS(25), 1, - anon_sym_EQ_GT, - ACTIONS(27), 1, anon_sym_while, - ACTIONS(29), 1, + ACTIONS(27), 1, anon_sym_for, - ACTIONS(31), 1, + ACTIONS(29), 1, anon_sym_asyncfor, - ACTIONS(33), 1, + ACTIONS(31), 1, anon_sym_select, - ACTIONS(35), 1, + ACTIONS(33), 1, anon_sym_insert, - ACTIONS(37), 1, + ACTIONS(35), 1, anon_sym_PIPE, - ACTIONS(39), 1, + ACTIONS(37), 1, anon_sym_table, - ACTIONS(41), 1, + ACTIONS(39), 1, anon_sym_return, - ACTIONS(43), 1, + ACTIONS(41), 1, anon_sym_use, - STATE(82), 1, + STATE(62), 1, sym_index, + STATE(75), 1, + sym_expression, STATE(98), 1, - sym_expression, - STATE(132), 1, sym_if, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(25), 2, - sym_statement, - aux_sym_root_repeat1, - STATE(103), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(102), 6, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - STATE(200), 11, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_select, - sym_insert, - sym_return, - sym_use, - [5077] = 28, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_async, - ACTIONS(9), 1, - anon_sym_LBRACE, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(21), 1, - anon_sym_if, - ACTIONS(23), 1, - anon_sym_match, - ACTIONS(25), 1, - anon_sym_EQ_GT, - ACTIONS(27), 1, - anon_sym_while, - ACTIONS(29), 1, - anon_sym_for, - ACTIONS(31), 1, - anon_sym_asyncfor, - ACTIONS(33), 1, - anon_sym_select, - ACTIONS(35), 1, - anon_sym_insert, - ACTIONS(37), 1, - anon_sym_PIPE, - ACTIONS(39), 1, - anon_sym_table, - ACTIONS(41), 1, - anon_sym_return, - ACTIONS(43), 1, - anon_sym_use, - STATE(82), 1, - sym_index, - STATE(97), 1, - sym_expression, - STATE(132), 1, - sym_if, - STATE(189), 1, + STATE(163), 1, sym_statement, ACTIONS(15), 2, sym_float, @@ -7315,20 +6430,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(17), 2, anon_sym_true, anon_sym_false, - STATE(103), 5, + STATE(69), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(102), 6, + STATE(61), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, - STATE(196), 11, + STATE(169), 11, sym_block, sym_assignment, sym_index_assignment, @@ -7340,73 +6455,71 @@ static const uint16_t ts_small_parse_table[] = { sym_insert, sym_return, sym_use, - [5183] = 28, + [4236] = 27, ACTIONS(3), 1, sym__comment, - ACTIONS(5), 1, + ACTIONS(158), 1, sym_identifier, - ACTIONS(7), 1, + ACTIONS(160), 1, anon_sym_async, - ACTIONS(9), 1, + ACTIONS(162), 1, anon_sym_LBRACE, - ACTIONS(11), 1, + ACTIONS(164), 1, anon_sym_LPAREN, - ACTIONS(13), 1, + ACTIONS(166), 1, sym_integer, - ACTIONS(19), 1, + ACTIONS(172), 1, anon_sym_LBRACK, - ACTIONS(21), 1, + ACTIONS(174), 1, anon_sym_if, - ACTIONS(23), 1, + ACTIONS(176), 1, anon_sym_match, - ACTIONS(25), 1, - anon_sym_EQ_GT, - ACTIONS(27), 1, + ACTIONS(178), 1, anon_sym_while, - ACTIONS(29), 1, + ACTIONS(180), 1, anon_sym_for, - ACTIONS(31), 1, + ACTIONS(182), 1, anon_sym_asyncfor, - ACTIONS(33), 1, + ACTIONS(184), 1, anon_sym_select, - ACTIONS(35), 1, + ACTIONS(186), 1, anon_sym_insert, - ACTIONS(37), 1, + ACTIONS(188), 1, anon_sym_PIPE, - ACTIONS(39), 1, + ACTIONS(190), 1, anon_sym_table, - ACTIONS(41), 1, + ACTIONS(192), 1, anon_sym_return, - ACTIONS(43), 1, + ACTIONS(194), 1, anon_sym_use, - STATE(82), 1, + STATE(186), 1, sym_index, - STATE(97), 1, + STATE(236), 1, sym_expression, - STATE(132), 1, + STATE(269), 1, sym_if, - STATE(176), 1, + STATE(290), 1, sym_statement, - ACTIONS(15), 2, + ACTIONS(168), 2, sym_float, sym_string, - ACTIONS(17), 2, + ACTIONS(170), 2, anon_sym_true, anon_sym_false, - STATE(103), 5, + STATE(141), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(102), 6, + STATE(139), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, - STATE(196), 11, + STATE(301), 11, sym_block, sym_assignment, sym_index_assignment, @@ -7418,73 +6531,71 @@ static const uint16_t ts_small_parse_table[] = { sym_insert, sym_return, sym_use, - [5289] = 28, + [4339] = 27, ACTIONS(3), 1, sym__comment, - ACTIONS(177), 1, + ACTIONS(158), 1, sym_identifier, - ACTIONS(179), 1, + ACTIONS(160), 1, anon_sym_async, - ACTIONS(181), 1, + ACTIONS(162), 1, anon_sym_LBRACE, - ACTIONS(183), 1, + ACTIONS(164), 1, anon_sym_LPAREN, - ACTIONS(185), 1, + ACTIONS(166), 1, sym_integer, - ACTIONS(191), 1, + ACTIONS(172), 1, anon_sym_LBRACK, - ACTIONS(193), 1, + ACTIONS(174), 1, anon_sym_if, - ACTIONS(195), 1, + ACTIONS(176), 1, anon_sym_match, - ACTIONS(197), 1, - anon_sym_EQ_GT, - ACTIONS(199), 1, + ACTIONS(178), 1, anon_sym_while, - ACTIONS(201), 1, + ACTIONS(180), 1, anon_sym_for, - ACTIONS(203), 1, + ACTIONS(182), 1, anon_sym_asyncfor, - ACTIONS(205), 1, + ACTIONS(184), 1, anon_sym_select, - ACTIONS(207), 1, + ACTIONS(186), 1, anon_sym_insert, - ACTIONS(209), 1, + ACTIONS(188), 1, anon_sym_PIPE, - ACTIONS(211), 1, + ACTIONS(190), 1, anon_sym_table, - ACTIONS(213), 1, + ACTIONS(192), 1, anon_sym_return, - ACTIONS(215), 1, + ACTIONS(194), 1, anon_sym_use, - STATE(285), 1, + STATE(186), 1, sym_index, - STATE(308), 1, + STATE(242), 1, sym_expression, - STATE(331), 1, + STATE(269), 1, sym_if, - STATE(349), 1, + STATE(324), 1, sym_statement, - ACTIONS(187), 2, + ACTIONS(168), 2, sym_float, sym_string, - ACTIONS(189), 2, + ACTIONS(170), 2, anon_sym_true, anon_sym_false, - STATE(300), 5, + STATE(141), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(305), 6, + STATE(139), 6, sym__expression_kind, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, - STATE(344), 11, + STATE(297), 11, sym_block, sym_assignment, sym_index_assignment, @@ -7496,347 +6607,37 @@ static const uint16_t ts_small_parse_table[] = { sym_insert, sym_return, sym_use, - [5395] = 28, + [4442] = 6, ACTIONS(3), 1, sym__comment, - ACTIONS(177), 1, - sym_identifier, - ACTIONS(179), 1, - anon_sym_async, - ACTIONS(181), 1, - anon_sym_LBRACE, - ACTIONS(183), 1, - anon_sym_LPAREN, - ACTIONS(185), 1, - sym_integer, - ACTIONS(191), 1, - anon_sym_LBRACK, - ACTIONS(193), 1, - anon_sym_if, - ACTIONS(195), 1, - anon_sym_match, - ACTIONS(197), 1, - anon_sym_EQ_GT, - ACTIONS(199), 1, - anon_sym_while, - ACTIONS(201), 1, - anon_sym_for, - ACTIONS(203), 1, - anon_sym_asyncfor, - ACTIONS(205), 1, - anon_sym_select, - ACTIONS(207), 1, - anon_sym_insert, - ACTIONS(209), 1, - anon_sym_PIPE, - ACTIONS(211), 1, - anon_sym_table, - ACTIONS(213), 1, - anon_sym_return, - ACTIONS(215), 1, - anon_sym_use, - STATE(285), 1, - sym_index, - STATE(308), 1, - sym_expression, - STATE(331), 1, - sym_if, - STATE(342), 1, - sym_statement, - ACTIONS(187), 2, - sym_float, - sym_string, - ACTIONS(189), 2, - anon_sym_true, - anon_sym_false, - STATE(300), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(305), 6, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - STATE(344), 11, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_select, - sym_insert, - sym_return, - sym_use, - [5501] = 28, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym_identifier, - ACTIONS(7), 1, - anon_sym_async, - ACTIONS(9), 1, - anon_sym_LBRACE, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(21), 1, - anon_sym_if, - ACTIONS(23), 1, - anon_sym_match, - ACTIONS(25), 1, - anon_sym_EQ_GT, - ACTIONS(27), 1, - anon_sym_while, - ACTIONS(29), 1, - anon_sym_for, - ACTIONS(31), 1, - anon_sym_asyncfor, - ACTIONS(33), 1, - anon_sym_select, - ACTIONS(35), 1, - anon_sym_insert, - ACTIONS(37), 1, - anon_sym_PIPE, - ACTIONS(39), 1, - anon_sym_table, - ACTIONS(41), 1, - anon_sym_return, - ACTIONS(43), 1, - anon_sym_use, - STATE(82), 1, - sym_index, - STATE(97), 1, - sym_expression, - STATE(132), 1, - sym_if, - STATE(192), 1, - sym_statement, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(103), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(102), 6, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - STATE(196), 11, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_select, - sym_insert, - sym_return, - sym_use, - [5607] = 28, - ACTIONS(3), 1, - sym__comment, - ACTIONS(177), 1, - sym_identifier, - ACTIONS(179), 1, - anon_sym_async, - ACTIONS(181), 1, - anon_sym_LBRACE, - ACTIONS(183), 1, - anon_sym_LPAREN, - ACTIONS(185), 1, - sym_integer, - ACTIONS(191), 1, - anon_sym_LBRACK, - ACTIONS(193), 1, - anon_sym_if, - ACTIONS(195), 1, - anon_sym_match, - ACTIONS(197), 1, - anon_sym_EQ_GT, - ACTIONS(199), 1, - anon_sym_while, - ACTIONS(201), 1, - anon_sym_for, - ACTIONS(203), 1, - anon_sym_asyncfor, - ACTIONS(205), 1, - anon_sym_select, - ACTIONS(207), 1, - anon_sym_insert, - ACTIONS(209), 1, - anon_sym_PIPE, - ACTIONS(211), 1, - anon_sym_table, - ACTIONS(213), 1, - anon_sym_return, - ACTIONS(215), 1, - anon_sym_use, - STATE(285), 1, - sym_index, - STATE(307), 1, - sym_expression, - STATE(331), 1, - sym_if, - STATE(390), 1, - sym_statement, - ACTIONS(187), 2, - sym_float, - sym_string, - ACTIONS(189), 2, - anon_sym_true, - anon_sym_false, - STATE(300), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(305), 6, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - STATE(339), 11, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_select, - sym_insert, - sym_return, - sym_use, - [5713] = 28, - ACTIONS(3), 1, - sym__comment, - ACTIONS(177), 1, - sym_identifier, - ACTIONS(179), 1, - anon_sym_async, - ACTIONS(181), 1, - anon_sym_LBRACE, - ACTIONS(183), 1, - anon_sym_LPAREN, - ACTIONS(185), 1, - sym_integer, - ACTIONS(191), 1, - anon_sym_LBRACK, - ACTIONS(193), 1, - anon_sym_if, - ACTIONS(195), 1, - anon_sym_match, - ACTIONS(197), 1, - anon_sym_EQ_GT, - ACTIONS(199), 1, - anon_sym_while, - ACTIONS(201), 1, - anon_sym_for, - ACTIONS(203), 1, - anon_sym_asyncfor, - ACTIONS(205), 1, - anon_sym_select, - ACTIONS(207), 1, - anon_sym_insert, - ACTIONS(209), 1, - anon_sym_PIPE, - ACTIONS(211), 1, - anon_sym_table, - ACTIONS(213), 1, - anon_sym_return, - ACTIONS(215), 1, - anon_sym_use, - STATE(285), 1, - sym_index, - STATE(308), 1, - sym_expression, - STATE(331), 1, - sym_if, - STATE(352), 1, - sym_statement, - ACTIONS(187), 2, - sym_float, - sym_string, - ACTIONS(189), 2, - anon_sym_true, - anon_sym_false, - STATE(300), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(305), 6, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - STATE(344), 11, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_select, - sym_insert, - sym_return, - sym_use, - [5819] = 11, - ACTIONS(3), 1, - sym__comment, - ACTIONS(221), 1, - anon_sym_COLON, - ACTIONS(231), 1, - anon_sym_DASH_GT, - STATE(229), 1, - sym_math_operator, - STATE(230), 1, + ACTIONS(200), 1, + anon_sym_DOT_DOT, + STATE(198), 1, sym_logic_operator, - ACTIONS(223), 2, + STATE(200), 1, + sym_math_operator, + ACTIONS(198), 20, + anon_sym_async, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(229), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(225), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(227), 6, - 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(217), 13, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_PIPE, + anon_sym_table, + anon_sym_return, + anon_sym_use, + ACTIONS(196), 22, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -7845,36 +6646,28 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_string, anon_sym_LBRACK, - anon_sym_DOT_DOT, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - anon_sym_EQ_GT, anon_sym_asyncfor, - ACTIONS(219), 16, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_PIPE, - anon_sym_table, - anon_sym_return, - anon_sym_use, - [5889] = 5, + anon_sym_DASH_GT, + [4501] = 5, ACTIONS(3), 1, sym__comment, - STATE(229), 1, - sym_math_operator, - STATE(230), 1, + STATE(198), 1, sym_logic_operator, - ACTIONS(235), 20, + STATE(200), 1, + sym_math_operator, + ACTIONS(198), 20, anon_sym_async, sym_identifier, sym_integer, @@ -7895,7 +6688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_table, anon_sym_return, anon_sym_use, - ACTIONS(233), 24, + ACTIONS(196), 23, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -7917,17 +6710,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - anon_sym_EQ_GT, anon_sym_asyncfor, anon_sym_DASH_GT, - [5947] = 5, + [4558] = 11, ACTIONS(3), 1, sym__comment, - STATE(229), 1, - sym_math_operator, - STATE(230), 1, + ACTIONS(206), 1, + anon_sym_COLON, + ACTIONS(216), 1, + anon_sym_DASH_GT, + STATE(198), 1, sym_logic_operator, - ACTIONS(239), 20, + STATE(200), 1, + sym_math_operator, + ACTIONS(208), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(214), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(210), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(212), 6, + 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(202), 12, + 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_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_asyncfor, + ACTIONS(204), 16, + anon_sym_async, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_PIPE, + anon_sym_table, + anon_sym_return, + anon_sym_use, + [4627] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(206), 1, + anon_sym_COLON, + STATE(198), 1, + sym_logic_operator, + STATE(200), 1, + sym_math_operator, + ACTIONS(220), 20, anon_sym_async, sym_identifier, sym_integer, @@ -7948,7 +6800,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_table, anon_sym_return, anon_sym_use, - ACTIONS(237), 24, + ACTIONS(218), 22, + 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_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_asyncfor, + anon_sym_DASH_GT, + [4686] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(198), 1, + sym_logic_operator, + STATE(200), 1, + sym_math_operator, + ACTIONS(224), 20, + anon_sym_async, + 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_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_PIPE, + anon_sym_table, + anon_sym_return, + anon_sym_use, + ACTIONS(222), 23, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -7970,146 +6873,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - anon_sym_EQ_GT, anon_sym_asyncfor, anon_sym_DASH_GT, - [6005] = 6, + [4743] = 11, ACTIONS(3), 1, sym__comment, - ACTIONS(241), 1, - anon_sym_DOT_DOT, - STATE(229), 1, - sym_math_operator, - STATE(230), 1, + ACTIONS(206), 1, + anon_sym_COLON, + ACTIONS(216), 1, + anon_sym_DASH_GT, + STATE(198), 1, sym_logic_operator, - ACTIONS(235), 20, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, + STATE(200), 1, + sym_math_operator, + ACTIONS(208), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(214), 2, anon_sym_GT, anon_sym_LT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_PIPE, - anon_sym_table, - anon_sym_return, - anon_sym_use, - ACTIONS(233), 23, - 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_COLON, + ACTIONS(210), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(212), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_asyncfor, - anon_sym_DASH_GT, - [6065] = 6, - ACTIONS(3), 1, - sym__comment, - ACTIONS(221), 1, - anon_sym_COLON, - STATE(229), 1, - sym_math_operator, - STATE(230), 1, - sym_logic_operator, - ACTIONS(245), 20, - anon_sym_async, - 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_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_PIPE, - anon_sym_table, - anon_sym_return, - anon_sym_use, - ACTIONS(243), 23, - 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_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_asyncfor, - anon_sym_DASH_GT, - [6125] = 11, - ACTIONS(3), 1, - sym__comment, - ACTIONS(221), 1, - anon_sym_COLON, - ACTIONS(231), 1, - anon_sym_DASH_GT, - STATE(229), 1, - sym_math_operator, - STATE(230), 1, - sym_logic_operator, - ACTIONS(223), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(225), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(227), 6, - 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(247), 13, + ACTIONS(226), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -8121,9 +6915,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - anon_sym_EQ_GT, anon_sym_asyncfor, - ACTIONS(249), 16, + ACTIONS(228), 16, anon_sym_async, sym_identifier, sym_integer, @@ -8140,35 +6933,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_table, anon_sym_return, anon_sym_use, - [6195] = 11, + [4812] = 11, ACTIONS(3), 1, sym__comment, - ACTIONS(231), 1, + ACTIONS(216), 1, anon_sym_DASH_GT, - ACTIONS(251), 1, + ACTIONS(230), 1, anon_sym_COLON, - STATE(211), 1, - sym_logic_operator, - STATE(212), 1, + STATE(218), 1, sym_math_operator, - ACTIONS(223), 2, + STATE(219), 1, + sym_logic_operator, + ACTIONS(208), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(229), 2, + ACTIONS(214), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(225), 3, + ACTIONS(210), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(227), 6, + ACTIONS(212), 6, 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(217), 12, + ACTIONS(202), 11, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -8179,9 +6972,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - anon_sym_EQ_GT, anon_sym_asyncfor, - ACTIONS(219), 16, + ACTIONS(204), 16, anon_sym_async, sym_identifier, sym_integer, @@ -8198,16 +6990,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_table, anon_sym_return, anon_sym_use, - [6264] = 6, + [4880] = 6, ACTIONS(3), 1, sym__comment, - ACTIONS(251), 1, + ACTIONS(230), 1, anon_sym_COLON, - STATE(211), 1, - sym_logic_operator, - STATE(212), 1, + STATE(218), 1, sym_math_operator, - ACTIONS(245), 20, + STATE(219), 1, + sym_logic_operator, + ACTIONS(220), 20, anon_sym_async, sym_identifier, sym_integer, @@ -8228,7 +7020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_table, anon_sym_return, anon_sym_use, - ACTIONS(243), 22, + ACTIONS(218), 21, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -8248,24 +7040,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - anon_sym_EQ_GT, anon_sym_asyncfor, anon_sym_DASH_GT, - [6323] = 8, + [4938] = 11, ACTIONS(3), 1, sym__comment, - ACTIONS(257), 1, - anon_sym_EQ, - ACTIONS(259), 1, + ACTIONS(216), 1, + anon_sym_DASH_GT, + ACTIONS(230), 1, + anon_sym_COLON, + STATE(218), 1, + sym_math_operator, + STATE(219), 1, + sym_logic_operator, + ACTIONS(208), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(214), 2, + anon_sym_GT, anon_sym_LT, - STATE(50), 1, + ACTIONS(210), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(212), 6, + 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(226), 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_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_asyncfor, + ACTIONS(228), 16, + anon_sym_async, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_PIPE, + anon_sym_table, + anon_sym_return, + anon_sym_use, + [5006] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(218), 1, + sym_math_operator, + STATE(219), 1, + sym_logic_operator, + ACTIONS(224), 20, + anon_sym_async, + 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_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_PIPE, + anon_sym_table, + anon_sym_return, + anon_sym_use, + ACTIONS(222), 22, + 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_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_asyncfor, + anon_sym_DASH_GT, + [5062] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(236), 1, + anon_sym_EQ, + ACTIONS(238), 1, + anon_sym_LT, + STATE(38), 1, sym_assignment_operator, - STATE(353), 1, + STATE(295), 1, sym_type, - ACTIONS(261), 2, + ACTIONS(240), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(255), 18, + ACTIONS(234), 18, anon_sym_async, sym_identifier, sym_integer, @@ -8284,7 +7183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_table, anon_sym_return, anon_sym_use, - ACTIONS(253), 21, + ACTIONS(232), 20, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -8303,75 +7202,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_EQ_GT, anon_sym_asyncfor, anon_sym_DASH_GT, - [6386] = 11, + [5124] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(231), 1, - anon_sym_DASH_GT, - ACTIONS(251), 1, - anon_sym_COLON, - STATE(211), 1, - sym_logic_operator, - STATE(212), 1, - sym_math_operator, - ACTIONS(223), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(225), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(227), 6, - 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(247), 12, - 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_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_asyncfor, - ACTIONS(249), 16, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_PIPE, - anon_sym_table, - anon_sym_return, - anon_sym_use, - [6455] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(211), 1, - sym_logic_operator, - STATE(212), 1, - sym_math_operator, - ACTIONS(239), 20, + ACTIONS(244), 20, anon_sym_async, sym_identifier, sym_integer, @@ -8392,55 +7228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_table, anon_sym_return, anon_sym_use, - ACTIONS(237), 23, - 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_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_asyncfor, - anon_sym_DASH_GT, - [6512] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(265), 20, - anon_sym_async, - 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_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_PIPE, - anon_sym_table, - anon_sym_return, - anon_sym_use, - ACTIONS(263), 24, + ACTIONS(242), 23, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -8462,13 +7250,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - anon_sym_EQ_GT, anon_sym_asyncfor, anon_sym_DASH_GT, - [6564] = 3, + [5175] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(269), 20, + ACTIONS(248), 20, anon_sym_async, sym_identifier, sym_integer, @@ -8489,7 +7276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_table, anon_sym_return, anon_sym_use, - ACTIONS(267), 24, + ACTIONS(246), 23, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -8511,13 +7298,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - anon_sym_EQ_GT, anon_sym_asyncfor, anon_sym_DASH_GT, - [6616] = 3, + [5226] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(273), 20, + ACTIONS(252), 20, anon_sym_async, sym_identifier, sym_integer, @@ -8538,7 +7324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_table, anon_sym_return, anon_sym_use, - ACTIONS(271), 24, + ACTIONS(250), 23, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -8560,13 +7346,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - anon_sym_EQ_GT, anon_sym_asyncfor, anon_sym_DASH_GT, - [6668] = 3, + [5277] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(277), 20, + ACTIONS(256), 20, anon_sym_async, sym_identifier, sym_integer, @@ -8587,7 +7372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_table, anon_sym_return, anon_sym_use, - ACTIONS(275), 24, + ACTIONS(254), 23, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -8609,13 +7394,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - anon_sym_EQ_GT, anon_sym_asyncfor, anon_sym_DASH_GT, - [6720] = 3, + [5328] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(281), 20, + ACTIONS(260), 20, anon_sym_async, sym_identifier, sym_integer, @@ -8636,7 +7420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_table, anon_sym_return, anon_sym_use, - ACTIONS(279), 24, + ACTIONS(258), 23, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -8658,13 +7442,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - anon_sym_EQ_GT, anon_sym_asyncfor, anon_sym_DASH_GT, - [6772] = 3, + [5379] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(285), 20, + ACTIONS(264), 20, anon_sym_async, sym_identifier, sym_integer, @@ -8685,7 +7468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_table, anon_sym_return, anon_sym_use, - ACTIONS(283), 24, + ACTIONS(262), 23, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -8707,412 +7490,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - anon_sym_EQ_GT, anon_sym_asyncfor, anon_sym_DASH_GT, - [6824] = 3, + [5430] = 6, ACTIONS(3), 1, sym__comment, - ACTIONS(289), 20, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, + ACTIONS(236), 1, anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_PIPE, - anon_sym_table, - anon_sym_return, - anon_sym_use, - ACTIONS(287), 24, - 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_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_asyncfor, - anon_sym_DASH_GT, - [6876] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(293), 20, - anon_sym_async, - 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_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_PIPE, - anon_sym_table, - anon_sym_return, - anon_sym_use, - ACTIONS(291), 24, - 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_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_asyncfor, - anon_sym_DASH_GT, - [6928] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(297), 20, - anon_sym_async, - 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_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_PIPE, - anon_sym_table, - anon_sym_return, - anon_sym_use, - ACTIONS(295), 24, - 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_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_asyncfor, - anon_sym_DASH_GT, - [6980] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(301), 20, - anon_sym_async, - 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_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_PIPE, - anon_sym_table, - anon_sym_return, - anon_sym_use, - ACTIONS(299), 24, - 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_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_asyncfor, - anon_sym_DASH_GT, - [7032] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(305), 20, - anon_sym_async, - 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_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_PIPE, - anon_sym_table, - anon_sym_return, - anon_sym_use, - ACTIONS(303), 24, - 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_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_asyncfor, - anon_sym_DASH_GT, - [7084] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(309), 20, - anon_sym_async, - 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_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_PIPE, - anon_sym_table, - anon_sym_return, - anon_sym_use, - ACTIONS(307), 24, - 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_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_asyncfor, - anon_sym_DASH_GT, - [7136] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(313), 20, - anon_sym_async, - 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_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_PIPE, - anon_sym_table, - anon_sym_return, - anon_sym_use, - ACTIONS(311), 24, - 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_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_asyncfor, - anon_sym_DASH_GT, - [7188] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(317), 20, - anon_sym_async, - 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_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_PIPE, - anon_sym_table, - anon_sym_return, - anon_sym_use, - ACTIONS(315), 24, - 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_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_asyncfor, - anon_sym_DASH_GT, - [7240] = 6, - ACTIONS(3), 1, - sym__comment, - ACTIONS(257), 1, - anon_sym_EQ, - STATE(54), 1, + STATE(39), 1, sym_assignment_operator, - ACTIONS(261), 2, + ACTIONS(240), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(255), 19, + ACTIONS(234), 19, anon_sym_async, sym_identifier, sym_integer, @@ -9132,7 +7522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_table, anon_sym_return, anon_sym_use, - ACTIONS(253), 21, + ACTIONS(232), 20, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -9151,13 +7541,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_EQ_GT, anon_sym_asyncfor, anon_sym_DASH_GT, - [7298] = 3, + [5487] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(321), 20, + ACTIONS(268), 20, anon_sym_async, sym_identifier, sym_integer, @@ -9178,7 +7567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_table, anon_sym_return, anon_sym_use, - ACTIONS(319), 24, + ACTIONS(266), 23, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -9200,70 +7589,499 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - anon_sym_EQ_GT, anon_sym_asyncfor, anon_sym_DASH_GT, - [7350] = 23, + [5538] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(47), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, + ACTIONS(272), 20, + anon_sym_async, + sym_identifier, sym_integer, - ACTIONS(57), 1, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_PIPE, + anon_sym_table, + anon_sym_return, + anon_sym_use, + ACTIONS(270), 23, + 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_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_asyncfor, + anon_sym_DASH_GT, + [5589] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(276), 20, + anon_sym_async, + 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_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_PIPE, + anon_sym_table, + anon_sym_return, + anon_sym_use, + ACTIONS(274), 23, + 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_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_asyncfor, + anon_sym_DASH_GT, + [5640] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(280), 20, + anon_sym_async, + 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_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_PIPE, + anon_sym_table, + anon_sym_return, + anon_sym_use, + ACTIONS(278), 23, + 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_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_asyncfor, + anon_sym_DASH_GT, + [5691] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(284), 20, + anon_sym_async, + 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_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_PIPE, + anon_sym_table, + anon_sym_return, + anon_sym_use, + ACTIONS(282), 23, + 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_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_asyncfor, + anon_sym_DASH_GT, + [5742] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(288), 20, + anon_sym_async, + 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_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_PIPE, + anon_sym_table, + anon_sym_return, + anon_sym_use, + ACTIONS(286), 23, + 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_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_asyncfor, + anon_sym_DASH_GT, + [5793] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(292), 20, + anon_sym_async, + 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_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_PIPE, + anon_sym_table, + anon_sym_return, + anon_sym_use, + ACTIONS(290), 23, + 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_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_asyncfor, + anon_sym_DASH_GT, + [5844] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(296), 20, + anon_sym_async, + 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_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_PIPE, + anon_sym_table, + anon_sym_return, + anon_sym_use, + ACTIONS(294), 23, + 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_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_asyncfor, + anon_sym_DASH_GT, + [5895] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(300), 20, + anon_sym_async, + 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_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_PIPE, + anon_sym_table, + anon_sym_return, + anon_sym_use, + ACTIONS(298), 23, + 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_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_asyncfor, + anon_sym_DASH_GT, + [5946] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(304), 20, + anon_sym_async, + 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_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_PIPE, + anon_sym_table, + anon_sym_return, + anon_sym_use, + ACTIONS(302), 23, + 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_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_asyncfor, + anon_sym_DASH_GT, + [5997] = 22, + ACTIONS(3), 1, + sym__comment, + ACTIONS(45), 1, + anon_sym_LPAREN, + ACTIONS(49), 1, + sym_integer, + ACTIONS(55), 1, anon_sym_LBRACK, ACTIONS(59), 1, - anon_sym_EQ_GT, - ACTIONS(63), 1, anon_sym_table, - ACTIONS(75), 1, + ACTIONS(67), 1, sym_identifier, - ACTIONS(223), 1, + ACTIONS(208), 1, anon_sym_DASH, - ACTIONS(323), 1, + ACTIONS(306), 1, anon_sym_RPAREN, - ACTIONS(325), 1, + ACTIONS(308), 1, anon_sym_COLON, - ACTIONS(327), 1, + ACTIONS(310), 1, anon_sym_PIPE, - ACTIONS(329), 1, + ACTIONS(312), 1, anon_sym_DASH_GT, - STATE(138), 1, + STATE(111), 1, sym_expression, - STATE(174), 1, + STATE(160), 1, aux_sym__expression_list, - STATE(220), 1, - sym_logic_operator, - STATE(221), 1, + STATE(208), 1, sym_math_operator, - ACTIONS(53), 2, + STATE(209), 1, + sym_logic_operator, + ACTIONS(51), 2, sym_float, sym_string, - ACTIONS(55), 2, + ACTIONS(53), 2, anon_sym_true, anon_sym_false, - ACTIONS(229), 2, + ACTIONS(214), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(225), 4, + ACTIONS(210), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - STATE(136), 5, + STATE(103), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - ACTIONS(227), 6, + ACTIONS(212), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(141), 7, + STATE(107), 7, sym__expression_kind, sym_value, sym_index, @@ -9271,204 +8089,41 @@ static const uint16_t ts_small_parse_table[] = { sym_logic, sym_function_call, sym_yield, - [7441] = 6, - ACTIONS(3), 1, - sym__comment, - ACTIONS(331), 1, - anon_sym_COLON, - STATE(205), 1, - sym_logic_operator, - STATE(238), 1, - sym_math_operator, - ACTIONS(245), 18, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_PIPE, - anon_sym_table, - anon_sym_return, - anon_sym_use, - ACTIONS(243), 22, - 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_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, - anon_sym_asyncfor, - anon_sym_DASH_GT, - [7498] = 11, - ACTIONS(3), 1, - sym__comment, - ACTIONS(223), 1, - anon_sym_DASH, - ACTIONS(331), 1, - anon_sym_COLON, - ACTIONS(333), 1, - anon_sym_DASH_GT, - STATE(205), 1, - sym_logic_operator, - STATE(238), 1, - sym_math_operator, - ACTIONS(229), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(225), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(227), 6, - 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(247), 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_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_asyncfor, - ACTIONS(249), 15, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_PIPE, - anon_sym_table, - anon_sym_return, - anon_sym_use, - [7565] = 11, - ACTIONS(3), 1, - sym__comment, - ACTIONS(223), 1, - anon_sym_DASH, - ACTIONS(331), 1, - anon_sym_COLON, - ACTIONS(333), 1, - anon_sym_DASH_GT, - STATE(205), 1, - sym_logic_operator, - STATE(238), 1, - sym_math_operator, - ACTIONS(229), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(225), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(227), 6, - 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(217), 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_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_asyncfor, - ACTIONS(219), 15, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_PIPE, - anon_sym_table, - anon_sym_return, - anon_sym_use, - [7632] = 14, + [6085] = 14, ACTIONS(3), 1, sym__comment, ACTIONS(7), 1, anon_sym_async, ACTIONS(9), 1, anon_sym_LBRACE, - ACTIONS(223), 1, + ACTIONS(208), 1, anon_sym_DASH, - ACTIONS(333), 1, + ACTIONS(216), 1, anon_sym_DASH_GT, - ACTIONS(339), 1, + ACTIONS(230), 1, anon_sym_COLON, - STATE(195), 1, + STATE(175), 1, sym_block, - STATE(243), 1, + STATE(218), 1, sym_math_operator, - STATE(245), 1, + STATE(219), 1, sym_logic_operator, - ACTIONS(229), 2, + ACTIONS(214), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(225), 4, + ACTIONS(210), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(227), 6, + ACTIONS(212), 6, 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(335), 9, + ACTIONS(314), 8, ts_builtin_sym_end, anon_sym_RBRACE, anon_sym_SEMI, @@ -9476,9 +8131,8 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_string, anon_sym_LBRACK, - anon_sym_EQ_GT, anon_sym_asyncfor, - ACTIONS(337), 14, + ACTIONS(316), 14, sym_identifier, sym_integer, anon_sym_true, @@ -9493,33 +8147,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_table, anon_sym_return, anon_sym_use, - [7705] = 5, + [6157] = 11, ACTIONS(3), 1, sym__comment, - STATE(205), 1, - sym_logic_operator, - STATE(238), 1, - sym_math_operator, - ACTIONS(239), 18, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, + ACTIONS(208), 1, anon_sym_DASH, + ACTIONS(216), 1, + anon_sym_DASH_GT, + ACTIONS(230), 1, + anon_sym_COLON, + STATE(218), 1, + sym_math_operator, + STATE(219), 1, + sym_logic_operator, + ACTIONS(214), 2, anon_sym_GT, anon_sym_LT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_PIPE, - anon_sym_table, - anon_sym_return, - anon_sym_use, - ACTIONS(237), 23, + ACTIONS(210), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(212), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(318), 9, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -9528,37 +8184,13 @@ static const uint16_t ts_small_parse_table[] = { 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, anon_sym_asyncfor, - anon_sym_DASH_GT, - [7760] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(205), 1, - sym_logic_operator, - STATE(238), 1, - sym_math_operator, - ACTIONS(235), 18, + ACTIONS(320), 15, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, anon_sym_if, anon_sym_match, anon_sym_while, @@ -9569,48 +8201,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_table, anon_sym_return, anon_sym_use, - ACTIONS(233), 23, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, + [6222] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(208), 1, + anon_sym_DASH, + ACTIONS(216), 1, + anon_sym_DASH_GT, + ACTIONS(230), 1, anon_sym_COLON, - anon_sym_DOT_DOT, + ACTIONS(322), 1, + anon_sym_SEMI, + STATE(218), 1, + sym_math_operator, + STATE(219), 1, + sym_logic_operator, + ACTIONS(214), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(210), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(212), 6, anon_sym_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(318), 8, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, anon_sym_asyncfor, - anon_sym_DASH_GT, - [7815] = 6, - ACTIONS(3), 1, - sym__comment, - ACTIONS(341), 1, - anon_sym_DOT_DOT, - STATE(205), 1, - sym_logic_operator, - STATE(238), 1, - sym_math_operator, - ACTIONS(235), 18, + ACTIONS(320), 15, anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, anon_sym_if, anon_sym_match, anon_sym_while, @@ -9621,7 +8256,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_table, anon_sym_return, anon_sym_use, - ACTIONS(233), 22, + [6289] = 11, + ACTIONS(3), 1, + sym__comment, + ACTIONS(208), 1, + anon_sym_DASH, + ACTIONS(216), 1, + anon_sym_DASH_GT, + ACTIONS(230), 1, + anon_sym_COLON, + STATE(218), 1, + sym_math_operator, + STATE(219), 1, + sym_logic_operator, + ACTIONS(214), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(210), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(212), 6, + 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(324), 9, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -9630,79 +8293,80 @@ static const uint16_t ts_small_parse_table[] = { 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, anon_sym_asyncfor, - anon_sym_DASH_GT, - [7872] = 22, + ACTIONS(326), 15, + anon_sym_async, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_PIPE, + anon_sym_table, + anon_sym_return, + anon_sym_use, + [6354] = 21, ACTIONS(3), 1, sym__comment, - ACTIONS(183), 1, + ACTIONS(164), 1, anon_sym_LPAREN, - ACTIONS(185), 1, + ACTIONS(166), 1, sym_integer, - ACTIONS(191), 1, + ACTIONS(172), 1, anon_sym_LBRACK, - ACTIONS(197), 1, - anon_sym_EQ_GT, - ACTIONS(211), 1, - anon_sym_table, - ACTIONS(223), 1, + ACTIONS(208), 1, anon_sym_DASH, - ACTIONS(325), 1, + ACTIONS(308), 1, anon_sym_COLON, - ACTIONS(329), 1, + ACTIONS(312), 1, anon_sym_DASH_GT, - ACTIONS(343), 1, + ACTIONS(328), 1, sym_identifier, - ACTIONS(345), 1, + ACTIONS(330), 1, anon_sym_PIPE, + ACTIONS(332), 1, + anon_sym_table, STATE(117), 1, aux_sym_match_repeat1, - STATE(220), 1, - sym_logic_operator, - STATE(221), 1, + STATE(208), 1, sym_math_operator, - STATE(320), 1, + STATE(209), 1, + sym_logic_operator, + STATE(258), 1, sym_expression, - ACTIONS(187), 2, + ACTIONS(168), 2, sym_float, sym_string, - ACTIONS(189), 2, + ACTIONS(170), 2, anon_sym_true, anon_sym_false, - ACTIONS(229), 2, + ACTIONS(214), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(225), 4, + ACTIONS(210), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - STATE(300), 5, + STATE(141), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - ACTIONS(227), 6, + ACTIONS(212), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(305), 7, + STATE(139), 7, sym__expression_kind, sym_value, sym_index, @@ -9710,35 +8374,35 @@ static const uint16_t ts_small_parse_table[] = { sym_logic, sym_function_call, sym_yield, - [7960] = 6, + [6439] = 11, ACTIONS(3), 1, sym__comment, - ACTIONS(339), 1, - anon_sym_COLON, - STATE(243), 1, - sym_math_operator, - STATE(245), 1, - sym_logic_operator, - ACTIONS(245), 18, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, + ACTIONS(208), 1, anon_sym_DASH, + ACTIONS(216), 1, + anon_sym_DASH_GT, + ACTIONS(230), 1, + anon_sym_COLON, + STATE(218), 1, + sym_math_operator, + STATE(219), 1, + sym_logic_operator, + ACTIONS(214), 2, anon_sym_GT, anon_sym_LT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_PIPE, - anon_sym_table, - anon_sym_return, - anon_sym_use, - ACTIONS(243), 21, + ACTIONS(210), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(212), 6, + 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(334), 9, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -9747,59 +8411,8 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_string, anon_sym_LBRACK, - 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, anon_sym_asyncfor, - anon_sym_DASH_GT, - [8016] = 11, - ACTIONS(3), 1, - sym__comment, - ACTIONS(223), 1, - anon_sym_DASH, - ACTIONS(333), 1, - anon_sym_DASH_GT, - ACTIONS(339), 1, - anon_sym_COLON, - STATE(243), 1, - sym_math_operator, - STATE(245), 1, - sym_logic_operator, - ACTIONS(229), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(225), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(227), 6, - 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(347), 10, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_asyncfor, - ACTIONS(349), 15, + ACTIONS(336), 15, anon_sym_async, sym_identifier, sym_integer, @@ -9815,280 +8428,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_table, anon_sym_return, anon_sym_use, - [8082] = 5, + [6504] = 21, ACTIONS(3), 1, sym__comment, - STATE(243), 1, - sym_math_operator, - STATE(245), 1, - sym_logic_operator, - ACTIONS(239), 18, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_PIPE, - anon_sym_table, - anon_sym_return, - anon_sym_use, - ACTIONS(237), 22, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(164), 1, 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, - anon_sym_asyncfor, - anon_sym_DASH_GT, - [8136] = 11, - ACTIONS(3), 1, - sym__comment, - ACTIONS(223), 1, - anon_sym_DASH, - ACTIONS(333), 1, - anon_sym_DASH_GT, - ACTIONS(339), 1, - anon_sym_COLON, - STATE(243), 1, - sym_math_operator, - STATE(245), 1, - sym_logic_operator, - ACTIONS(229), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(225), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(227), 6, - 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(351), 10, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_asyncfor, - ACTIONS(353), 15, - anon_sym_async, - sym_identifier, + ACTIONS(166), 1, sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_PIPE, - anon_sym_table, - anon_sym_return, - anon_sym_use, - [8202] = 11, - ACTIONS(3), 1, - sym__comment, - ACTIONS(223), 1, - anon_sym_DASH, - ACTIONS(251), 1, - anon_sym_COLON, - ACTIONS(333), 1, - anon_sym_DASH_GT, - STATE(243), 1, - sym_math_operator, - STATE(245), 1, - sym_logic_operator, - ACTIONS(229), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(225), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(227), 6, - 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(355), 10, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, + ACTIONS(172), 1, anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_asyncfor, - ACTIONS(357), 15, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_PIPE, - anon_sym_table, - anon_sym_return, - anon_sym_use, - [8268] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(223), 1, + ACTIONS(208), 1, anon_sym_DASH, - ACTIONS(251), 1, + ACTIONS(308), 1, anon_sym_COLON, - ACTIONS(333), 1, + ACTIONS(312), 1, anon_sym_DASH_GT, - ACTIONS(359), 1, - anon_sym_SEMI, - STATE(243), 1, - sym_math_operator, - STATE(245), 1, - sym_logic_operator, - ACTIONS(229), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(225), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(227), 6, - 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(355), 9, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_asyncfor, - ACTIONS(357), 15, - anon_sym_async, + ACTIONS(328), 1, sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, + ACTIONS(330), 1, anon_sym_PIPE, + ACTIONS(332), 1, anon_sym_table, - anon_sym_return, - anon_sym_use, - [8336] = 22, - ACTIONS(3), 1, - sym__comment, - ACTIONS(183), 1, - anon_sym_LPAREN, - ACTIONS(185), 1, - sym_integer, - ACTIONS(191), 1, - anon_sym_LBRACK, - ACTIONS(197), 1, - anon_sym_EQ_GT, - ACTIONS(211), 1, - anon_sym_table, - ACTIONS(223), 1, - anon_sym_DASH, - ACTIONS(325), 1, - anon_sym_COLON, - ACTIONS(329), 1, - anon_sym_DASH_GT, - ACTIONS(343), 1, - sym_identifier, - ACTIONS(345), 1, - anon_sym_PIPE, - STATE(150), 1, + STATE(81), 1, aux_sym_match_repeat1, - STATE(220), 1, - sym_logic_operator, - STATE(221), 1, + STATE(208), 1, sym_math_operator, - STATE(319), 1, + STATE(209), 1, + sym_logic_operator, + STATE(257), 1, sym_expression, - ACTIONS(187), 2, + ACTIONS(168), 2, sym_float, sym_string, - ACTIONS(189), 2, + ACTIONS(170), 2, anon_sym_true, anon_sym_false, - ACTIONS(229), 2, + ACTIONS(214), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(225), 4, + ACTIONS(210), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - STATE(300), 5, + STATE(141), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - ACTIONS(227), 6, + ACTIONS(212), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(305), 7, + STATE(139), 7, sym__expression_kind, sym_value, sym_index, @@ -10096,846 +8492,44 @@ static const uint16_t ts_small_parse_table[] = { sym_logic, sym_function_call, sym_yield, - [8424] = 11, + [6589] = 15, ACTIONS(3), 1, sym__comment, - ACTIONS(223), 1, - anon_sym_DASH, - ACTIONS(333), 1, - anon_sym_DASH_GT, - ACTIONS(339), 1, - anon_sym_COLON, - STATE(243), 1, - sym_math_operator, - STATE(245), 1, - sym_logic_operator, - ACTIONS(229), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(225), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(227), 6, - 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(217), 10, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(164), 1, anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_asyncfor, - ACTIONS(219), 15, - anon_sym_async, - sym_identifier, + ACTIONS(166), 1, sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_PIPE, - anon_sym_table, - anon_sym_return, - anon_sym_use, - [8490] = 11, - ACTIONS(3), 1, - sym__comment, - ACTIONS(223), 1, - anon_sym_DASH, - ACTIONS(333), 1, - anon_sym_DASH_GT, - ACTIONS(339), 1, - anon_sym_COLON, - STATE(243), 1, - sym_math_operator, - STATE(245), 1, - sym_logic_operator, - ACTIONS(229), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(225), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(227), 6, - 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(247), 10, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, + ACTIONS(172), 1, anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_asyncfor, - ACTIONS(249), 15, - anon_sym_async, + ACTIONS(328), 1, sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_PIPE, + ACTIONS(332), 1, anon_sym_table, - anon_sym_return, - anon_sym_use, - [8556] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(269), 18, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, + ACTIONS(342), 1, anon_sym_PIPE, - anon_sym_table, - anon_sym_return, - anon_sym_use, - ACTIONS(267), 23, - 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_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, - anon_sym_asyncfor, - anon_sym_DASH_GT, - [8605] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(297), 18, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_PIPE, - anon_sym_table, - anon_sym_return, - anon_sym_use, - ACTIONS(295), 23, - 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_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, - anon_sym_asyncfor, - anon_sym_DASH_GT, - [8654] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(285), 18, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_PIPE, - anon_sym_table, - anon_sym_return, - anon_sym_use, - ACTIONS(283), 23, - 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_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, - anon_sym_asyncfor, - anon_sym_DASH_GT, - [8703] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(321), 18, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_PIPE, - anon_sym_table, - anon_sym_return, - anon_sym_use, - ACTIONS(319), 23, - 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_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, - anon_sym_asyncfor, - anon_sym_DASH_GT, - [8752] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(317), 18, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_PIPE, - anon_sym_table, - anon_sym_return, - anon_sym_use, - ACTIONS(315), 23, - 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_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, - anon_sym_asyncfor, - anon_sym_DASH_GT, - [8801] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(265), 18, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_PIPE, - anon_sym_table, - anon_sym_return, - anon_sym_use, - ACTIONS(263), 23, - 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_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, - anon_sym_asyncfor, - anon_sym_DASH_GT, - [8850] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(305), 18, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_PIPE, - anon_sym_table, - anon_sym_return, - anon_sym_use, - ACTIONS(303), 23, - 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_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, - anon_sym_asyncfor, - anon_sym_DASH_GT, - [8899] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(273), 18, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_PIPE, - anon_sym_table, - anon_sym_return, - anon_sym_use, - ACTIONS(271), 23, - 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_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, - anon_sym_asyncfor, - anon_sym_DASH_GT, - [8948] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(313), 18, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_PIPE, - anon_sym_table, - anon_sym_return, - anon_sym_use, - ACTIONS(311), 23, - 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_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, - anon_sym_asyncfor, - anon_sym_DASH_GT, - [8997] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(281), 18, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_PIPE, - anon_sym_table, - anon_sym_return, - anon_sym_use, - ACTIONS(279), 23, - 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_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, - anon_sym_asyncfor, - anon_sym_DASH_GT, - [9046] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(289), 18, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_PIPE, - anon_sym_table, - anon_sym_return, - anon_sym_use, - ACTIONS(287), 23, - 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_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, - anon_sym_asyncfor, - anon_sym_DASH_GT, - [9095] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(293), 18, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_PIPE, - anon_sym_table, - anon_sym_return, - anon_sym_use, - ACTIONS(291), 23, - 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_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, - anon_sym_asyncfor, - anon_sym_DASH_GT, - [9144] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(309), 18, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_PIPE, - anon_sym_table, - anon_sym_return, - anon_sym_use, - ACTIONS(307), 23, - 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_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, - anon_sym_asyncfor, - anon_sym_DASH_GT, - [9193] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(277), 18, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_PIPE, - anon_sym_table, - anon_sym_return, - anon_sym_use, - ACTIONS(275), 23, - 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_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, - anon_sym_asyncfor, - anon_sym_DASH_GT, - [9242] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(301), 18, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_PIPE, - anon_sym_table, - anon_sym_return, - anon_sym_use, - ACTIONS(299), 23, - 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_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, - anon_sym_asyncfor, - anon_sym_DASH_GT, - [9291] = 16, - ACTIONS(3), 1, - sym__comment, - ACTIONS(183), 1, - anon_sym_LPAREN, - ACTIONS(185), 1, - sym_integer, - ACTIONS(191), 1, - anon_sym_LBRACK, - ACTIONS(197), 1, - anon_sym_EQ_GT, - ACTIONS(209), 1, - anon_sym_PIPE, - ACTIONS(211), 1, - anon_sym_table, - ACTIONS(343), 1, - sym_identifier, - STATE(118), 1, + STATE(82), 1, aux_sym_match_repeat1, - STATE(320), 1, + STATE(257), 1, sym_expression, - ACTIONS(187), 2, + ACTIONS(168), 2, sym_float, sym_string, - ACTIONS(189), 2, + ACTIONS(170), 2, anon_sym_true, anon_sym_false, - ACTIONS(361), 5, + ACTIONS(338), 5, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_asyncfor, - STATE(300), 5, + STATE(141), 5, sym_boolean, sym_list, sym_map, sym_table, sym_function, - STATE(305), 7, + STATE(139), 7, sym__expression_kind, sym_value, sym_index, @@ -10943,7 +8537,7 @@ static const uint16_t ts_small_parse_table[] = { sym_logic, sym_function_call, sym_yield, - ACTIONS(363), 9, + ACTIONS(340), 9, anon_sym_async, anon_sym_if, anon_sym_match, @@ -10953,73 +8547,687 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_insert, anon_sym_return, anon_sym_use, - [9364] = 16, + [6659] = 15, ACTIONS(3), 1, sym__comment, - ACTIONS(367), 1, + ACTIONS(346), 1, sym_identifier, + ACTIONS(351), 1, + anon_sym_LPAREN, + ACTIONS(354), 1, + sym_integer, + ACTIONS(363), 1, + anon_sym_LBRACK, + ACTIONS(366), 1, + anon_sym_PIPE, + ACTIONS(369), 1, + anon_sym_table, + STATE(82), 1, + aux_sym_match_repeat1, + STATE(257), 1, + sym_expression, + ACTIONS(357), 2, + sym_float, + sym_string, + ACTIONS(360), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(344), 5, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_asyncfor, + STATE(141), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(139), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + ACTIONS(349), 9, + anon_sym_async, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_return, + anon_sym_use, + [6729] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(192), 1, + sym_logic_operator, + STATE(193), 1, + sym_math_operator, + ACTIONS(198), 9, + 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, + ACTIONS(196), 20, + 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_DASH_GT, + [6772] = 6, + ACTIONS(3), 1, + sym__comment, ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(375), 1, + anon_sym_DOT_DOT, + STATE(192), 1, + sym_logic_operator, + STATE(193), 1, + sym_math_operator, + ACTIONS(198), 9, + sym_identifier, sym_integer, - ACTIONS(384), 1, - anon_sym_LBRACK, - ACTIONS(387), 1, - anon_sym_EQ_GT, - ACTIONS(390), 1, - anon_sym_PIPE, - ACTIONS(393), 1, - anon_sym_table, - STATE(118), 1, - aux_sym_match_repeat1, - STATE(320), 1, - sym_expression, - ACTIONS(378), 2, - sym_float, - sym_string, - ACTIONS(381), 2, anon_sym_true, anon_sym_false, - ACTIONS(365), 5, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_table, + ACTIONS(196), 19, + 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_DASH_GT, + [6817] = 11, + ACTIONS(3), 1, + sym__comment, + ACTIONS(208), 1, + anon_sym_DASH, + ACTIONS(312), 1, + anon_sym_DASH_GT, + ACTIONS(374), 1, + anon_sym_COLON, + STATE(192), 1, + sym_logic_operator, + STATE(193), 1, + sym_math_operator, + ACTIONS(214), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(210), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(212), 6, + 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(228), 6, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_PIPE, + anon_sym_table, + ACTIONS(226), 8, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [6872] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(374), 1, + anon_sym_COLON, + STATE(192), 1, + sym_logic_operator, + STATE(193), 1, + sym_math_operator, + ACTIONS(220), 9, + 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, + ACTIONS(218), 19, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DASH_GT, + [6917] = 11, + ACTIONS(3), 1, + sym__comment, + ACTIONS(208), 1, + anon_sym_DASH, + ACTIONS(312), 1, + anon_sym_DASH_GT, + ACTIONS(374), 1, + anon_sym_COLON, + STATE(192), 1, + sym_logic_operator, + STATE(193), 1, + sym_math_operator, + ACTIONS(214), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(210), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(204), 6, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_PIPE, + anon_sym_table, + ACTIONS(212), 6, + 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(202), 8, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [6972] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(192), 1, + sym_logic_operator, + STATE(193), 1, + sym_math_operator, + ACTIONS(224), 9, + 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, + ACTIONS(222), 20, + 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_DASH_GT, + [7015] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(252), 9, + 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, + ACTIONS(250), 21, + 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_DASH_GT, + [7053] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(208), 1, + sym_math_operator, + STATE(209), 1, + sym_logic_operator, + ACTIONS(224), 9, + 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, + ACTIONS(222), 19, + 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_DASH_GT, + [7095] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(256), 9, + 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, + ACTIONS(254), 21, + 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_DASH_GT, + [7133] = 11, + ACTIONS(3), 1, + sym__comment, + ACTIONS(208), 1, + anon_sym_DASH, + ACTIONS(308), 1, + anon_sym_COLON, + ACTIONS(312), 1, + anon_sym_DASH_GT, + STATE(208), 1, + sym_math_operator, + STATE(209), 1, + sym_logic_operator, + ACTIONS(214), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(210), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(204), 6, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_PIPE, + anon_sym_table, + ACTIONS(212), 6, + 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(202), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + [7187] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(308), 1, + anon_sym_COLON, + STATE(208), 1, + sym_math_operator, + STATE(209), 1, + sym_logic_operator, + ACTIONS(220), 9, + 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, + ACTIONS(218), 18, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DASH_GT, + [7231] = 11, + ACTIONS(3), 1, + sym__comment, + ACTIONS(208), 1, + anon_sym_DASH, + ACTIONS(308), 1, + anon_sym_COLON, + ACTIONS(312), 1, + anon_sym_DASH_GT, + STATE(208), 1, + sym_math_operator, + STATE(209), 1, + sym_logic_operator, + ACTIONS(214), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(210), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(212), 6, + 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(228), 6, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_PIPE, + anon_sym_table, + ACTIONS(226), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + [7285] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(296), 9, + 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, + ACTIONS(294), 20, + 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_DASH_GT, + [7322] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(268), 9, + 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, + ACTIONS(266), 20, + 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_DASH_GT, + [7359] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(208), 1, + anon_sym_DASH, + ACTIONS(308), 1, + anon_sym_COLON, + ACTIONS(312), 1, + anon_sym_DASH_GT, + ACTIONS(380), 1, + anon_sym_COMMA, + STATE(208), 1, + sym_math_operator, + STATE(209), 1, + sym_logic_operator, + ACTIONS(214), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(210), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(378), 5, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(212), 6, + 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(376), 6, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_PIPE, + anon_sym_table, + [7414] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(386), 1, + anon_sym_elseif, + ACTIONS(388), 1, + anon_sym_else, + STATE(167), 1, + sym_else, + STATE(104), 2, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(382), 10, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, anon_sym_asyncfor, - STATE(300), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(305), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - ACTIONS(370), 9, + anon_sym_PIPE, + ACTIONS(384), 14, anon_sym_async, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_select, anon_sym_insert, + anon_sym_table, anon_sym_return, anon_sym_use, - [9437] = 6, + [7459] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(396), 1, - anon_sym_COLON, - STATE(242), 1, - sym_math_operator, - STATE(249), 1, - sym_logic_operator, - ACTIONS(245), 9, + ACTIONS(248), 9, sym_identifier, sym_integer, anon_sym_true, @@ -11029,7 +9237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_PIPE, anon_sym_table, - ACTIONS(243), 20, + ACTIONS(246), 20, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -11037,6 +9245,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_STAR, @@ -11048,44 +9257,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_EQ_GT, anon_sym_DASH_GT, - [9483] = 11, + [7496] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(223), 1, - anon_sym_DASH, - ACTIONS(329), 1, - anon_sym_DASH_GT, - ACTIONS(396), 1, - anon_sym_COLON, - STATE(242), 1, - sym_math_operator, - STATE(249), 1, - sym_logic_operator, - ACTIONS(229), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(225), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(219), 6, + ACTIONS(244), 9, 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, - ACTIONS(227), 6, - 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(217), 9, + ACTIONS(242), 20, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -11093,56 +9279,410 @@ static const uint16_t ts_small_parse_table[] = { sym_string, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_DOT_DOT, - anon_sym_EQ_GT, - [9539] = 6, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DASH_GT, + [7533] = 3, ACTIONS(3), 1, sym__comment, + ACTIONS(276), 9, + 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, + ACTIONS(274), 20, + 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_DASH_GT, + [7570] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(272), 9, + 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, + ACTIONS(270), 20, + 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_DASH_GT, + [7607] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(292), 9, + 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, + ACTIONS(290), 20, + 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_DASH_GT, + [7644] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(386), 1, + anon_sym_elseif, + ACTIONS(388), 1, + anon_sym_else, + STATE(173), 1, + sym_else, + STATE(113), 2, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(390), 10, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(392), 14, + anon_sym_async, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_return, + anon_sym_use, + [7689] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(300), 9, + 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, + ACTIONS(298), 20, + 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_DASH_GT, + [7726] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(280), 9, + 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, + ACTIONS(278), 20, + 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_DASH_GT, + [7763] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(264), 9, + 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, + ACTIONS(262), 20, + 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_DASH_GT, + [7800] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(288), 9, + 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, + ACTIONS(286), 20, + 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_DASH_GT, + [7837] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(284), 9, + 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, + ACTIONS(282), 20, + 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_DASH_GT, + [7874] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(260), 9, + 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, + ACTIONS(258), 20, + 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_DASH_GT, + [7911] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(208), 1, + anon_sym_DASH, + ACTIONS(308), 1, + anon_sym_COLON, + ACTIONS(312), 1, + anon_sym_DASH_GT, ACTIONS(398), 1, - anon_sym_DOT_DOT, - STATE(242), 1, + anon_sym_COMMA, + STATE(208), 1, sym_math_operator, - STATE(249), 1, + STATE(209), 1, sym_logic_operator, - ACTIONS(235), 9, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_DASH, + ACTIONS(214), 2, anon_sym_GT, anon_sym_LT, - anon_sym_PIPE, - anon_sym_table, - ACTIONS(233), 20, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, + ACTIONS(210), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(396), 5, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + ACTIONS(212), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [9585] = 5, + ACTIONS(394), 6, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_PIPE, + anon_sym_table, + [7966] = 3, ACTIONS(3), 1, sym__comment, - STATE(242), 1, - sym_math_operator, - STATE(249), 1, - sym_logic_operator, - ACTIONS(235), 9, + ACTIONS(304), 9, sym_identifier, sym_integer, anon_sym_true, @@ -11152,7 +9692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_PIPE, anon_sym_table, - ACTIONS(233), 21, + ACTIONS(302), 20, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -11172,377 +9712,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_EQ_GT, anon_sym_DASH_GT, - [9629] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(242), 1, - sym_math_operator, - STATE(249), 1, - sym_logic_operator, - ACTIONS(239), 9, - 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, - ACTIONS(237), 21, - 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, - anon_sym_DASH_GT, - [9673] = 11, - ACTIONS(3), 1, - sym__comment, - ACTIONS(223), 1, - anon_sym_DASH, - ACTIONS(329), 1, - anon_sym_DASH_GT, - ACTIONS(396), 1, - anon_sym_COLON, - STATE(242), 1, - sym_math_operator, - STATE(249), 1, - sym_logic_operator, - ACTIONS(229), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(225), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(227), 6, - 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(249), 6, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_PIPE, - anon_sym_table, - ACTIONS(247), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - [9729] = 6, - ACTIONS(3), 1, - sym__comment, - ACTIONS(325), 1, - anon_sym_COLON, - STATE(220), 1, - sym_logic_operator, - STATE(221), 1, - sym_math_operator, - ACTIONS(245), 9, - 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, - ACTIONS(243), 19, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - 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, - anon_sym_DASH_GT, - [9774] = 11, - ACTIONS(3), 1, - sym__comment, - ACTIONS(223), 1, - anon_sym_DASH, - ACTIONS(325), 1, - anon_sym_COLON, - ACTIONS(329), 1, - anon_sym_DASH_GT, - STATE(220), 1, - sym_logic_operator, - STATE(221), 1, - sym_math_operator, - ACTIONS(229), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(225), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(227), 6, - 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(249), 6, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_PIPE, - anon_sym_table, - ACTIONS(247), 8, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_EQ_GT, - [9829] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(220), 1, - sym_logic_operator, - STATE(221), 1, - sym_math_operator, - ACTIONS(239), 9, - 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, - ACTIONS(237), 20, - 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, - anon_sym_DASH_GT, - [9872] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(289), 9, - 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, - ACTIONS(287), 22, - 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, - anon_sym_DASH_GT, - [9911] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(265), 9, - 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, - ACTIONS(263), 22, - 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, - anon_sym_DASH_GT, - [9950] = 11, - ACTIONS(3), 1, - sym__comment, - ACTIONS(223), 1, - anon_sym_DASH, - ACTIONS(325), 1, - anon_sym_COLON, - ACTIONS(329), 1, - anon_sym_DASH_GT, - STATE(220), 1, - sym_logic_operator, - STATE(221), 1, - sym_math_operator, - ACTIONS(229), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(225), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(219), 6, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_PIPE, - anon_sym_table, - ACTIONS(227), 6, - 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(217), 8, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_EQ_GT, - [10005] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(301), 9, - 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, - ACTIONS(299), 21, - 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, - anon_sym_DASH_GT, - [10043] = 7, + [8003] = 5, ACTIONS(3), 1, sym__comment, ACTIONS(404), 1, anon_sym_elseif, - ACTIONS(406), 1, - anon_sym_else, - STATE(191), 1, - sym_else, - STATE(145), 2, + STATE(113), 2, sym_else_if, aux_sym_if_else_repeat1, - ACTIONS(400), 11, + ACTIONS(400), 10, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -11551,10 +9730,1746 @@ 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(402), 14, + ACTIONS(402), 15, + anon_sym_async, + 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_select, + anon_sym_insert, + anon_sym_table, + anon_sym_return, + anon_sym_use, + [8043] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(407), 1, + anon_sym_COLON, + STATE(229), 1, + sym_logic_operator, + STATE(230), 1, + sym_math_operator, + ACTIONS(220), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(218), 17, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DASH_GT, + [8084] = 11, + ACTIONS(3), 1, + sym__comment, + ACTIONS(407), 1, + anon_sym_COLON, + ACTIONS(409), 1, + anon_sym_DASH_GT, + STATE(229), 1, + sym_logic_operator, + STATE(230), 1, + sym_math_operator, + ACTIONS(208), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(214), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(210), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(228), 3, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + ACTIONS(212), 6, + 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(226), 7, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [8135] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(229), 1, + sym_logic_operator, + STATE(230), 1, + sym_math_operator, + ACTIONS(198), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(196), 18, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DASH_GT, + [8174] = 14, + ACTIONS(3), 1, + sym__comment, + ACTIONS(164), 1, + anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(328), 1, + sym_identifier, + ACTIONS(332), 1, + anon_sym_table, + ACTIONS(342), 1, + anon_sym_PIPE, + STATE(119), 1, + aux_sym_match_repeat1, + STATE(258), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(338), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(141), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(139), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [8231] = 11, + ACTIONS(3), 1, + sym__comment, + ACTIONS(407), 1, + anon_sym_COLON, + ACTIONS(409), 1, + anon_sym_DASH_GT, + STATE(229), 1, + sym_logic_operator, + STATE(230), 1, + sym_math_operator, + ACTIONS(208), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(214), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(204), 3, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + ACTIONS(210), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(212), 6, + 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(202), 7, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [8282] = 14, + ACTIONS(3), 1, + sym__comment, + ACTIONS(346), 1, + sym_identifier, + ACTIONS(351), 1, + anon_sym_LPAREN, + ACTIONS(354), 1, + sym_integer, + ACTIONS(363), 1, + anon_sym_LBRACK, + ACTIONS(366), 1, + anon_sym_PIPE, + ACTIONS(369), 1, + anon_sym_table, + STATE(119), 1, + aux_sym_match_repeat1, + STATE(258), 1, + sym_expression, + ACTIONS(357), 2, + sym_float, + sym_string, + ACTIONS(360), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(344), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(141), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(139), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [8339] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(411), 1, + anon_sym_DOT_DOT, + STATE(229), 1, + sym_logic_operator, + STATE(230), 1, + sym_math_operator, + ACTIONS(198), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(196), 17, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DASH_GT, + [8380] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(413), 1, + anon_sym_EQ, + ACTIONS(234), 9, + 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, + ACTIONS(232), 17, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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_DASH_GT, + [8417] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(229), 1, + sym_logic_operator, + STATE(230), 1, + sym_math_operator, + ACTIONS(224), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(222), 18, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DASH_GT, + [8456] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(250), 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_elseif, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(252), 15, + anon_sym_async, + 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_select, + anon_sym_insert, + anon_sym_table, + anon_sym_return, + anon_sym_use, + [8490] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(415), 1, + anon_sym_RPAREN, + ACTIONS(264), 9, + 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, + ACTIONS(262), 16, + 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_DASH_GT, + [8526] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(276), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(274), 19, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [8560] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(272), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(270), 19, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [8594] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(280), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(278), 19, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [8628] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(417), 1, + anon_sym_RPAREN, + ACTIONS(264), 9, + 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, + ACTIONS(262), 16, + 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_DASH_GT, + [8664] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(248), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(246), 19, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [8698] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(419), 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_elseif, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(421), 15, + anon_sym_async, + 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_select, + anon_sym_insert, + anon_sym_table, + anon_sym_return, + anon_sym_use, + [8732] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(268), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(266), 19, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [8766] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(284), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(282), 19, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [8800] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(296), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(294), 19, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [8834] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(244), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(242), 19, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [8868] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(304), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(302), 19, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [8902] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(260), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(258), 19, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [8936] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(288), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(286), 19, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [8970] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(423), 1, + anon_sym_RPAREN, + ACTIONS(264), 9, + 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, + ACTIONS(262), 16, + 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_DASH_GT, + [9006] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(264), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(262), 19, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [9040] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(300), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(298), 19, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [9074] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(292), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(290), 19, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [9108] = 11, + ACTIONS(3), 1, + sym__comment, + ACTIONS(409), 1, + anon_sym_DASH_GT, + ACTIONS(425), 1, + anon_sym_COLON, + STATE(185), 1, + sym_math_operator, + STATE(194), 1, + sym_logic_operator, + ACTIONS(208), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(214), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(204), 3, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + ACTIONS(210), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(202), 6, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(212), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [9158] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(425), 1, + anon_sym_COLON, + STATE(185), 1, + sym_math_operator, + STATE(194), 1, + sym_logic_operator, + ACTIONS(220), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(218), 16, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DASH_GT, + [9198] = 11, + ACTIONS(3), 1, + sym__comment, + ACTIONS(409), 1, + anon_sym_DASH_GT, + ACTIONS(425), 1, + anon_sym_COLON, + STATE(185), 1, + sym_math_operator, + STATE(194), 1, + sym_logic_operator, + ACTIONS(208), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(214), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(210), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(228), 3, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + ACTIONS(212), 6, + 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(226), 6, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [9248] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(185), 1, + sym_math_operator, + STATE(194), 1, + sym_logic_operator, + ACTIONS(224), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(222), 17, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DASH_GT, + [9286] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(427), 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_elseif, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(429), 15, + anon_sym_async, + 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_select, + anon_sym_insert, + anon_sym_table, + anon_sym_return, + anon_sym_use, + [9320] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(254), 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_elseif, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(256), 15, + anon_sym_async, + 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_select, + anon_sym_insert, + anon_sym_table, + anon_sym_return, + anon_sym_use, + [9354] = 14, + ACTIONS(3), 1, + sym__comment, + ACTIONS(45), 1, + anon_sym_LPAREN, + ACTIONS(49), 1, + sym_integer, + ACTIONS(55), 1, + anon_sym_LBRACK, + ACTIONS(57), 1, + anon_sym_PIPE, + ACTIONS(59), 1, + anon_sym_table, + ACTIONS(67), 1, + sym_identifier, + ACTIONS(431), 1, + anon_sym_RBRACK, + STATE(97), 1, + sym_expression, + STATE(154), 1, + aux_sym_list_repeat1, + ACTIONS(51), 2, + sym_float, + sym_string, + ACTIONS(53), 2, + anon_sym_true, + anon_sym_false, + STATE(103), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(107), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [9409] = 14, + ACTIONS(3), 1, + sym__comment, + ACTIONS(45), 1, + anon_sym_LPAREN, + ACTIONS(49), 1, + sym_integer, + ACTIONS(55), 1, + anon_sym_LBRACK, + ACTIONS(57), 1, + anon_sym_PIPE, + ACTIONS(59), 1, + anon_sym_table, + ACTIONS(67), 1, + sym_identifier, + ACTIONS(433), 1, + anon_sym_RBRACK, + STATE(97), 1, + sym_expression, + STATE(154), 1, + aux_sym_list_repeat1, + ACTIONS(51), 2, + sym_float, + sym_string, + ACTIONS(53), 2, + anon_sym_true, + anon_sym_false, + STATE(103), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(107), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [9464] = 14, + ACTIONS(3), 1, + sym__comment, + ACTIONS(45), 1, + anon_sym_LPAREN, + ACTIONS(49), 1, + sym_integer, + ACTIONS(55), 1, + anon_sym_LBRACK, + ACTIONS(57), 1, + anon_sym_PIPE, + ACTIONS(59), 1, + anon_sym_table, + ACTIONS(67), 1, + sym_identifier, + ACTIONS(435), 1, + anon_sym_RBRACK, + STATE(97), 1, + sym_expression, + STATE(149), 1, + aux_sym_list_repeat1, + ACTIONS(51), 2, + sym_float, + sym_string, + ACTIONS(53), 2, + anon_sym_true, + anon_sym_false, + STATE(103), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(107), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [9519] = 14, + ACTIONS(3), 1, + sym__comment, + ACTIONS(45), 1, + anon_sym_LPAREN, + ACTIONS(49), 1, + sym_integer, + ACTIONS(55), 1, + anon_sym_LBRACK, + ACTIONS(57), 1, + anon_sym_PIPE, + ACTIONS(59), 1, + anon_sym_table, + ACTIONS(67), 1, + sym_identifier, + ACTIONS(437), 1, + anon_sym_RPAREN, + STATE(111), 1, + sym_expression, + STATE(155), 1, + aux_sym__expression_list, + ACTIONS(51), 2, + sym_float, + sym_string, + ACTIONS(53), 2, + anon_sym_true, + anon_sym_false, + STATE(103), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(107), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [9574] = 14, + ACTIONS(3), 1, + sym__comment, + ACTIONS(45), 1, + anon_sym_LPAREN, + ACTIONS(49), 1, + sym_integer, + ACTIONS(55), 1, + anon_sym_LBRACK, + ACTIONS(57), 1, + anon_sym_PIPE, + ACTIONS(59), 1, + anon_sym_table, + ACTIONS(67), 1, + sym_identifier, + ACTIONS(439), 1, + anon_sym_RBRACK, + STATE(97), 1, + sym_expression, + STATE(157), 1, + aux_sym_list_repeat1, + ACTIONS(51), 2, + sym_float, + sym_string, + ACTIONS(53), 2, + anon_sym_true, + anon_sym_false, + STATE(103), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(107), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [9629] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(252), 6, + anon_sym_async, + sym_identifier, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_else, + ACTIONS(250), 19, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + 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_elseif, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [9662] = 14, + ACTIONS(3), 1, + sym__comment, + ACTIONS(441), 1, + sym_identifier, + ACTIONS(444), 1, + anon_sym_LPAREN, + ACTIONS(447), 1, + sym_integer, + ACTIONS(456), 1, + anon_sym_LBRACK, + ACTIONS(459), 1, + anon_sym_RBRACK, + ACTIONS(461), 1, + anon_sym_PIPE, + ACTIONS(464), 1, + anon_sym_table, + STATE(97), 1, + sym_expression, + STATE(154), 1, + aux_sym_list_repeat1, + ACTIONS(450), 2, + sym_float, + sym_string, + ACTIONS(453), 2, + anon_sym_true, + anon_sym_false, + STATE(103), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(107), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [9717] = 14, + ACTIONS(3), 1, + sym__comment, + ACTIONS(45), 1, + anon_sym_LPAREN, + ACTIONS(49), 1, + sym_integer, + ACTIONS(55), 1, + anon_sym_LBRACK, + ACTIONS(57), 1, + anon_sym_PIPE, + ACTIONS(59), 1, + anon_sym_table, + ACTIONS(67), 1, + sym_identifier, + ACTIONS(467), 1, + anon_sym_RPAREN, + STATE(111), 1, + sym_expression, + STATE(159), 1, + aux_sym__expression_list, + ACTIONS(51), 2, + sym_float, + sym_string, + ACTIONS(53), 2, + anon_sym_true, + anon_sym_false, + STATE(103), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(107), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [9772] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(256), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(254), 18, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DASH_GT, + [9805] = 14, + ACTIONS(3), 1, + sym__comment, + ACTIONS(45), 1, + anon_sym_LPAREN, + ACTIONS(49), 1, + sym_integer, + ACTIONS(55), 1, + anon_sym_LBRACK, + ACTIONS(57), 1, + anon_sym_PIPE, + ACTIONS(59), 1, + anon_sym_table, + ACTIONS(67), 1, + sym_identifier, + ACTIONS(469), 1, + anon_sym_RBRACK, + STATE(97), 1, + sym_expression, + STATE(154), 1, + aux_sym_list_repeat1, + ACTIONS(51), 2, + sym_float, + sym_string, + ACTIONS(53), 2, + anon_sym_true, + anon_sym_false, + STATE(103), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(107), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [9860] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(256), 6, + anon_sym_async, + sym_identifier, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_else, + ACTIONS(254), 19, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + 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_elseif, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [9893] = 14, + ACTIONS(3), 1, + sym__comment, + ACTIONS(471), 1, + sym_identifier, + ACTIONS(474), 1, + anon_sym_LPAREN, + ACTIONS(477), 1, + anon_sym_RPAREN, + ACTIONS(479), 1, + sym_integer, + ACTIONS(488), 1, + anon_sym_LBRACK, + ACTIONS(491), 1, + anon_sym_PIPE, + ACTIONS(494), 1, + anon_sym_table, + STATE(111), 1, + sym_expression, + STATE(159), 1, + aux_sym__expression_list, + ACTIONS(482), 2, + sym_float, + sym_string, + ACTIONS(485), 2, + anon_sym_true, + anon_sym_false, + STATE(103), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(107), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [9948] = 14, + ACTIONS(3), 1, + sym__comment, + ACTIONS(45), 1, + anon_sym_LPAREN, + ACTIONS(49), 1, + sym_integer, + ACTIONS(55), 1, + anon_sym_LBRACK, + ACTIONS(57), 1, + anon_sym_PIPE, + ACTIONS(59), 1, + anon_sym_table, + ACTIONS(67), 1, + sym_identifier, + ACTIONS(497), 1, + anon_sym_RPAREN, + STATE(111), 1, + sym_expression, + STATE(159), 1, + aux_sym__expression_list, + ACTIONS(51), 2, + sym_float, + sym_string, + ACTIONS(53), 2, + anon_sym_true, + anon_sym_false, + STATE(103), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(107), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [10003] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(252), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(250), 18, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DASH_GT, + [10036] = 14, + ACTIONS(3), 1, + sym__comment, + ACTIONS(45), 1, + anon_sym_LPAREN, + ACTIONS(49), 1, + sym_integer, + ACTIONS(55), 1, + anon_sym_LBRACK, + ACTIONS(57), 1, + anon_sym_PIPE, + ACTIONS(59), 1, + anon_sym_table, + ACTIONS(67), 1, + sym_identifier, + ACTIONS(499), 1, + anon_sym_RBRACK, + STATE(97), 1, + sym_expression, + STATE(148), 1, + aux_sym_list_repeat1, + ACTIONS(51), 2, + sym_float, + sym_string, + ACTIONS(53), 2, + anon_sym_true, + anon_sym_false, + STATE(103), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(107), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [10091] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(501), 10, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(503), 14, anon_sym_async, sym_identifier, sym_integer, @@ -11569,457 +11484,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_table, anon_sym_return, anon_sym_use, - [10089] = 3, + [10123] = 14, ACTIONS(3), 1, sym__comment, - ACTIONS(277), 9, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, + ACTIONS(160), 1, + anon_sym_async, + ACTIONS(162), 1, + anon_sym_LBRACE, + ACTIONS(208), 1, anon_sym_DASH, + ACTIONS(316), 1, + sym_identifier, + ACTIONS(409), 1, + anon_sym_DASH_GT, + ACTIONS(425), 1, + anon_sym_COLON, + STATE(185), 1, + sym_math_operator, + STATE(194), 1, + sym_logic_operator, + STATE(304), 1, + sym_block, + ACTIONS(214), 2, anon_sym_GT, anon_sym_LT, - anon_sym_PIPE, - anon_sym_table, - ACTIONS(275), 21, - anon_sym_LPAREN, + ACTIONS(314), 3, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, + ACTIONS(210), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(212), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [10127] = 3, + [10177] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(281), 9, + ACTIONS(505), 10, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(507), 14, + anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, anon_sym_table, - ACTIONS(279), 21, + anon_sym_return, + anon_sym_use, + [10209] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(509), 10, + ts_builtin_sym_end, + 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, - anon_sym_DASH_GT, - [10165] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(285), 9, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(511), 14, + anon_sym_async, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, anon_sym_table, - ACTIONS(283), 21, - 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, - anon_sym_DASH_GT, - [10203] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(297), 9, - 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, - ACTIONS(295), 21, - 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, - anon_sym_DASH_GT, + anon_sym_return, + anon_sym_use, [10241] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(309), 9, - 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, - ACTIONS(307), 21, - 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, - anon_sym_DASH_GT, - [10279] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(223), 1, - anon_sym_DASH, - ACTIONS(325), 1, - anon_sym_COLON, - ACTIONS(329), 1, - anon_sym_DASH_GT, - ACTIONS(412), 1, - anon_sym_COMMA, - STATE(220), 1, - sym_logic_operator, - STATE(221), 1, - sym_math_operator, - ACTIONS(229), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(225), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(227), 6, - 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(408), 6, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_PIPE, - anon_sym_table, - ACTIONS(410), 6, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - [10335] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(223), 1, - anon_sym_DASH, - ACTIONS(325), 1, - anon_sym_COLON, - ACTIONS(329), 1, - anon_sym_DASH_GT, - ACTIONS(418), 1, - anon_sym_COMMA, - STATE(220), 1, - sym_logic_operator, - STATE(221), 1, - sym_math_operator, - ACTIONS(229), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(225), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(227), 6, - 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(414), 6, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_PIPE, - anon_sym_table, - ACTIONS(416), 6, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_EQ_GT, - [10391] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(293), 9, - 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, - ACTIONS(291), 21, - 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, - anon_sym_DASH_GT, - [10429] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(269), 9, - 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, - ACTIONS(267), 21, - 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, - anon_sym_DASH_GT, - [10467] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(305), 9, - 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, - ACTIONS(303), 21, - 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, - anon_sym_DASH_GT, - [10505] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(273), 9, - 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, - ACTIONS(271), 21, - 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, - anon_sym_DASH_GT, - [10543] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(321), 9, - 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, - ACTIONS(319), 21, - 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, - anon_sym_DASH_GT, - [10581] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(404), 1, - anon_sym_elseif, - ACTIONS(406), 1, - anon_sym_else, - STATE(179), 1, - sym_else, - STATE(148), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(420), 11, + ACTIONS(390), 10, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -12028,10 +11594,9 @@ 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(422), 14, + ACTIONS(392), 14, anon_sym_async, sym_identifier, sym_integer, @@ -12046,85 +11611,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_table, anon_sym_return, anon_sym_use, - [10627] = 3, + [10273] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(317), 9, - 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, - ACTIONS(315), 21, - 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, - anon_sym_DASH_GT, - [10665] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(313), 9, - 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, - ACTIONS(311), 21, - 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, - anon_sym_DASH_GT, - [10703] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(428), 1, - anon_sym_elseif, - STATE(148), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(424), 11, + ACTIONS(513), 10, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -12133,17 +11623,15 @@ 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(426), 15, + ACTIONS(515), 14, anon_sym_async, 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, @@ -12152,1167 +11640,306 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_table, anon_sym_return, anon_sym_use, - [10744] = 15, + [10305] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(367), 1, - sym_identifier, - ACTIONS(372), 1, + ACTIONS(318), 10, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(375), 1, - sym_integer, - ACTIONS(384), 1, - anon_sym_LBRACK, - ACTIONS(387), 1, - anon_sym_EQ_GT, - ACTIONS(390), 1, - anon_sym_PIPE, - ACTIONS(393), 1, - anon_sym_table, - STATE(149), 1, - aux_sym_match_repeat1, - STATE(319), 1, - sym_expression, - ACTIONS(378), 2, sym_float, sym_string, - ACTIONS(381), 2, + anon_sym_LBRACK, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(320), 14, + anon_sym_async, + sym_identifier, + sym_integer, anon_sym_true, anon_sym_false, - ACTIONS(365), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(300), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(305), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [10804] = 15, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_return, + anon_sym_use, + [10337] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(183), 1, + ACTIONS(517), 10, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(185), 1, - sym_integer, - ACTIONS(191), 1, - anon_sym_LBRACK, - ACTIONS(197), 1, - anon_sym_EQ_GT, - ACTIONS(209), 1, - anon_sym_PIPE, - ACTIONS(211), 1, - anon_sym_table, - ACTIONS(343), 1, - sym_identifier, - STATE(149), 1, - aux_sym_match_repeat1, - STATE(319), 1, - sym_expression, - ACTIONS(187), 2, sym_float, sym_string, - ACTIONS(189), 2, + anon_sym_LBRACK, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(519), 14, + anon_sym_async, + sym_identifier, + sym_integer, anon_sym_true, anon_sym_false, - ACTIONS(361), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(300), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(305), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [10864] = 4, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_return, + anon_sym_use, + [10369] = 8, ACTIONS(3), 1, sym__comment, - ACTIONS(431), 1, + ACTIONS(236), 1, anon_sym_EQ, - ACTIONS(255), 9, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_DASH, - anon_sym_GT, + ACTIONS(238), 1, anon_sym_LT, - anon_sym_PIPE, - anon_sym_table, - ACTIONS(253), 18, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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, - anon_sym_DASH_GT, - [10902] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(433), 1, - anon_sym_RPAREN, - ACTIONS(269), 9, - 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, - ACTIONS(267), 17, - 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, - anon_sym_DASH_GT, - [10939] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(435), 12, - 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_elseif, - anon_sym_EQ_GT, - anon_sym_asyncfor, - anon_sym_PIPE, - ACTIONS(437), 15, - anon_sym_async, - 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_select, - anon_sym_insert, - anon_sym_table, - anon_sym_return, - anon_sym_use, - [10974] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(439), 1, - anon_sym_RPAREN, - ACTIONS(269), 9, - 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, - ACTIONS(267), 17, - 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, - anon_sym_DASH_GT, - [11011] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(263), 12, - 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_elseif, - anon_sym_EQ_GT, - anon_sym_asyncfor, - anon_sym_PIPE, - ACTIONS(265), 15, - anon_sym_async, - 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_select, - anon_sym_insert, - anon_sym_table, - anon_sym_return, - anon_sym_use, - [11046] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(441), 12, - 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_elseif, - anon_sym_EQ_GT, - anon_sym_asyncfor, - anon_sym_PIPE, - ACTIONS(443), 15, - anon_sym_async, - 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_select, - anon_sym_insert, - anon_sym_table, - anon_sym_return, - anon_sym_use, - [11081] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(287), 12, - 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_elseif, - anon_sym_EQ_GT, - anon_sym_asyncfor, - anon_sym_PIPE, - ACTIONS(289), 15, - anon_sym_async, - 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_select, - anon_sym_insert, - anon_sym_table, - anon_sym_return, - anon_sym_use, - [11116] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(445), 1, - anon_sym_RPAREN, - ACTIONS(269), 9, - 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, - ACTIONS(267), 17, - 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, - anon_sym_DASH_GT, - [11153] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(447), 1, - anon_sym_RPAREN, - ACTIONS(269), 9, - 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, - ACTIONS(267), 17, - 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, - anon_sym_DASH_GT, - [11190] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(449), 1, - anon_sym_RPAREN, - ACTIONS(269), 9, - 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, - ACTIONS(267), 17, - 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, - anon_sym_DASH_GT, - [11227] = 15, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - sym_integer, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_EQ_GT, - ACTIONS(61), 1, - anon_sym_PIPE, - ACTIONS(63), 1, - anon_sym_table, - ACTIONS(75), 1, - sym_identifier, - ACTIONS(451), 1, - anon_sym_RBRACK, - STATE(139), 1, - sym_expression, - STATE(164), 1, - aux_sym_list_repeat1, - ACTIONS(53), 2, - sym_float, - sym_string, - ACTIONS(55), 2, - anon_sym_true, - anon_sym_false, - STATE(136), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(141), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [11285] = 15, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - sym_integer, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_EQ_GT, - ACTIONS(61), 1, - anon_sym_PIPE, - ACTIONS(63), 1, - anon_sym_table, - ACTIONS(75), 1, - sym_identifier, - ACTIONS(453), 1, - anon_sym_RPAREN, - STATE(138), 1, - sym_expression, - STATE(175), 1, - aux_sym__expression_list, - ACTIONS(53), 2, - sym_float, - sym_string, - ACTIONS(55), 2, - anon_sym_true, - anon_sym_false, - STATE(136), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(141), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [11343] = 15, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - sym_integer, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_EQ_GT, - ACTIONS(61), 1, - anon_sym_PIPE, - ACTIONS(63), 1, - anon_sym_table, - ACTIONS(75), 1, - sym_identifier, - ACTIONS(455), 1, - anon_sym_RBRACK, - STATE(139), 1, - sym_expression, - STATE(165), 1, - aux_sym_list_repeat1, - ACTIONS(53), 2, - sym_float, - sym_string, - ACTIONS(55), 2, - anon_sym_true, - anon_sym_false, - STATE(136), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(141), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [11401] = 15, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - sym_integer, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_EQ_GT, - ACTIONS(61), 1, - anon_sym_PIPE, - ACTIONS(63), 1, - anon_sym_table, - ACTIONS(75), 1, - sym_identifier, - ACTIONS(457), 1, - anon_sym_RBRACK, - STATE(139), 1, - sym_expression, - STATE(165), 1, - aux_sym_list_repeat1, - ACTIONS(53), 2, - sym_float, - sym_string, - ACTIONS(55), 2, - anon_sym_true, - anon_sym_false, - STATE(136), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(141), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [11459] = 15, - ACTIONS(3), 1, - sym__comment, - ACTIONS(459), 1, - sym_identifier, - ACTIONS(462), 1, - anon_sym_LPAREN, - ACTIONS(465), 1, - sym_integer, - ACTIONS(474), 1, - anon_sym_LBRACK, - ACTIONS(477), 1, - anon_sym_RBRACK, - ACTIONS(479), 1, - anon_sym_EQ_GT, - ACTIONS(482), 1, - anon_sym_PIPE, - ACTIONS(485), 1, - anon_sym_table, - STATE(139), 1, - sym_expression, - STATE(165), 1, - aux_sym_list_repeat1, - ACTIONS(468), 2, - sym_float, - sym_string, - ACTIONS(471), 2, - anon_sym_true, - anon_sym_false, - STATE(136), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(141), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [11517] = 15, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - sym_integer, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_EQ_GT, - ACTIONS(61), 1, - anon_sym_PIPE, - ACTIONS(63), 1, - anon_sym_table, - ACTIONS(75), 1, - sym_identifier, - ACTIONS(488), 1, - anon_sym_RBRACK, - STATE(139), 1, - sym_expression, - STATE(163), 1, - aux_sym_list_repeat1, - ACTIONS(53), 2, - sym_float, - sym_string, - ACTIONS(55), 2, - anon_sym_true, - anon_sym_false, - STATE(136), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(141), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [11575] = 15, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - sym_integer, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_EQ_GT, - ACTIONS(61), 1, - anon_sym_PIPE, - ACTIONS(63), 1, - anon_sym_table, - ACTIONS(75), 1, - sym_identifier, - ACTIONS(490), 1, - anon_sym_RBRACK, - STATE(139), 1, - sym_expression, - STATE(165), 1, - aux_sym_list_repeat1, - ACTIONS(53), 2, - sym_float, - sym_string, - ACTIONS(55), 2, - anon_sym_true, - anon_sym_false, - STATE(136), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(141), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [11633] = 15, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - sym_integer, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_EQ_GT, - ACTIONS(61), 1, - anon_sym_PIPE, - ACTIONS(63), 1, - anon_sym_table, - ACTIONS(75), 1, - sym_identifier, - ACTIONS(492), 1, - anon_sym_RBRACK, - STATE(139), 1, - sym_expression, - STATE(169), 1, - aux_sym_list_repeat1, - ACTIONS(53), 2, - sym_float, - sym_string, - ACTIONS(55), 2, - anon_sym_true, - anon_sym_false, - STATE(136), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(141), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [11691] = 15, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - sym_integer, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_EQ_GT, - ACTIONS(61), 1, - anon_sym_PIPE, - ACTIONS(63), 1, - anon_sym_table, - ACTIONS(75), 1, - sym_identifier, - ACTIONS(494), 1, - anon_sym_RBRACK, - STATE(139), 1, - sym_expression, - STATE(165), 1, - aux_sym_list_repeat1, - ACTIONS(53), 2, - sym_float, - sym_string, - ACTIONS(55), 2, - anon_sym_true, - anon_sym_false, - STATE(136), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(141), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [11749] = 15, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - sym_integer, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_EQ_GT, - ACTIONS(61), 1, - anon_sym_PIPE, - ACTIONS(63), 1, - anon_sym_table, - ACTIONS(75), 1, - sym_identifier, - ACTIONS(496), 1, - anon_sym_RBRACK, - STATE(139), 1, - sym_expression, - STATE(165), 1, - aux_sym_list_repeat1, - ACTIONS(53), 2, - sym_float, - sym_string, - ACTIONS(55), 2, - anon_sym_true, - anon_sym_false, - STATE(136), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(141), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [11807] = 15, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - sym_integer, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_EQ_GT, - ACTIONS(61), 1, - anon_sym_PIPE, - ACTIONS(63), 1, - anon_sym_table, - ACTIONS(75), 1, - sym_identifier, - ACTIONS(498), 1, - anon_sym_RBRACK, - STATE(139), 1, - sym_expression, - STATE(167), 1, - aux_sym_list_repeat1, - ACTIONS(53), 2, - sym_float, - sym_string, - ACTIONS(55), 2, - anon_sym_true, - anon_sym_false, - STATE(136), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(141), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [11865] = 15, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - sym_integer, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_EQ_GT, - ACTIONS(61), 1, - anon_sym_PIPE, - ACTIONS(63), 1, - anon_sym_table, - ACTIONS(75), 1, - sym_identifier, - ACTIONS(500), 1, - anon_sym_RBRACK, - STATE(139), 1, - sym_expression, - STATE(170), 1, - aux_sym_list_repeat1, - ACTIONS(53), 2, - sym_float, - sym_string, - ACTIONS(55), 2, - anon_sym_true, - anon_sym_false, - STATE(136), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(141), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [11923] = 15, - ACTIONS(3), 1, - sym__comment, - ACTIONS(502), 1, - sym_identifier, - ACTIONS(505), 1, - anon_sym_LPAREN, - ACTIONS(508), 1, - anon_sym_RPAREN, - ACTIONS(510), 1, - sym_integer, - ACTIONS(519), 1, - anon_sym_LBRACK, - ACTIONS(522), 1, - anon_sym_EQ_GT, - ACTIONS(525), 1, - anon_sym_PIPE, - ACTIONS(528), 1, - anon_sym_table, - STATE(138), 1, - sym_expression, - STATE(173), 1, - aux_sym__expression_list, - ACTIONS(513), 2, - sym_float, - sym_string, - ACTIONS(516), 2, - anon_sym_true, - anon_sym_false, - STATE(136), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(141), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [11981] = 15, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - sym_integer, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_EQ_GT, - ACTIONS(61), 1, - anon_sym_PIPE, - ACTIONS(63), 1, - anon_sym_table, - ACTIONS(75), 1, - sym_identifier, - ACTIONS(531), 1, - anon_sym_RPAREN, - STATE(138), 1, - sym_expression, - STATE(173), 1, - aux_sym__expression_list, - ACTIONS(53), 2, - sym_float, - sym_string, - ACTIONS(55), 2, - anon_sym_true, - anon_sym_false, - STATE(136), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(141), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [12039] = 15, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - sym_integer, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_EQ_GT, - ACTIONS(61), 1, - anon_sym_PIPE, - ACTIONS(63), 1, - anon_sym_table, - ACTIONS(75), 1, - sym_identifier, - ACTIONS(533), 1, - anon_sym_RPAREN, - STATE(138), 1, - sym_expression, - STATE(173), 1, - aux_sym__expression_list, - ACTIONS(53), 2, - sym_float, - sym_string, - ACTIONS(55), 2, - anon_sym_true, - anon_sym_false, - STATE(136), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(141), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [12097] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(535), 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(537), 14, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_return, - anon_sym_use, - [12130] = 6, - ACTIONS(3), 1, - sym__comment, - ACTIONS(539), 1, - anon_sym_DOT_DOT, - STATE(257), 1, - sym_math_operator, - STATE(259), 1, - sym_logic_operator, - ACTIONS(235), 5, - anon_sym_async, - sym_identifier, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(233), 17, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - 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, - anon_sym_DASH_GT, - [12169] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(252), 1, - sym_math_operator, - STATE(253), 1, - sym_logic_operator, - ACTIONS(239), 5, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(237), 18, - anon_sym_SEMI, - anon_sym_RPAREN, - 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, + STATE(40), 1, + sym_assignment_operator, + STATE(289), 1, + sym_type, + ACTIONS(240), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, + ACTIONS(234), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + ACTIONS(232), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + 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_DASH_GT, - [12206] = 3, + [10411] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(541), 11, + ACTIONS(322), 1, + anon_sym_SEMI, + ACTIONS(318), 9, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(320), 14, + anon_sym_async, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_return, + anon_sym_use, + [10445] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(521), 10, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(523), 14, + anon_sym_async, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_return, + anon_sym_use, + [10477] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(525), 10, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(527), 14, + anon_sym_async, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_return, + anon_sym_use, + [10509] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(529), 10, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(531), 14, + anon_sym_async, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_return, + anon_sym_use, + [10541] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(533), 10, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(535), 14, + anon_sym_async, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_return, + anon_sym_use, + [10573] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(537), 10, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(539), 14, + anon_sym_async, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_return, + anon_sym_use, + [10605] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(254), 10, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_asyncfor, + anon_sym_PIPE, + ACTIONS(256), 14, + anon_sym_async, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_return, + anon_sym_use, + [10637] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(541), 10, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -13321,7 +11948,6 @@ 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(543), 14, @@ -13339,42 +11965,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_table, anon_sym_return, anon_sym_use, - [12239] = 5, + [10669] = 3, ACTIONS(3), 1, sym__comment, - STATE(252), 1, - sym_math_operator, - STATE(253), 1, - sym_logic_operator, - ACTIONS(235), 5, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(233), 18, - anon_sym_SEMI, - anon_sym_RPAREN, - 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, - anon_sym_DASH_GT, - [12276] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(545), 11, + ACTIONS(250), 10, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -13383,10 +11977,9 @@ 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(547), 14, + ACTIONS(252), 14, anon_sym_async, sym_identifier, sym_integer, @@ -13401,125 +11994,1975 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_table, anon_sym_return, anon_sym_use, - [12309] = 6, + [10701] = 12, ACTIONS(3), 1, sym__comment, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_table, + ACTIONS(545), 1, + sym_identifier, + STATE(79), 1, + sym_expression, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(69), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(61), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [10750] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(45), 1, + anon_sym_LPAREN, + ACTIONS(49), 1, + sym_integer, + ACTIONS(55), 1, + anon_sym_LBRACK, + ACTIONS(57), 1, + anon_sym_PIPE, + ACTIONS(59), 1, + anon_sym_table, + ACTIONS(67), 1, + sym_identifier, + STATE(78), 1, + sym_expression, + ACTIONS(51), 2, + sym_float, + sym_string, + ACTIONS(53), 2, + anon_sym_true, + anon_sym_false, + STATE(103), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(107), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [10799] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(164), 1, + anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(188), 1, + anon_sym_PIPE, + ACTIONS(190), 1, + anon_sym_table, + ACTIONS(328), 1, + sym_identifier, + STATE(243), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(141), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(139), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [10848] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(164), 1, + anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(328), 1, + sym_identifier, + ACTIONS(332), 1, + anon_sym_table, + ACTIONS(342), 1, + anon_sym_PIPE, + STATE(251), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(141), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(139), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [10897] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(164), 1, + anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(188), 1, + anon_sym_PIPE, + ACTIONS(190), 1, + anon_sym_table, + ACTIONS(328), 1, + sym_identifier, + STATE(143), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(141), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(139), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [10946] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(236), 1, + anon_sym_EQ, + STATE(43), 1, + sym_assignment_operator, + ACTIONS(240), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(234), 4, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(232), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + 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_DASH_GT, + [10983] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(45), 1, + anon_sym_LPAREN, + ACTIONS(49), 1, + sym_integer, + ACTIONS(55), 1, + anon_sym_LBRACK, + ACTIONS(57), 1, + anon_sym_PIPE, + ACTIONS(59), 1, + anon_sym_table, + ACTIONS(67), 1, + sym_identifier, + STATE(92), 1, + sym_expression, + ACTIONS(51), 2, + sym_float, + sym_string, + ACTIONS(53), 2, + anon_sym_true, + anon_sym_false, + STATE(103), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(107), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [11032] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(45), 1, + anon_sym_LPAREN, + ACTIONS(49), 1, + sym_integer, + ACTIONS(55), 1, + anon_sym_LBRACK, + ACTIONS(57), 1, + anon_sym_PIPE, + ACTIONS(59), 1, + anon_sym_table, + ACTIONS(67), 1, + sym_identifier, + STATE(90), 1, + sym_expression, + ACTIONS(51), 2, + sym_float, + sym_string, + ACTIONS(53), 2, + anon_sym_true, + anon_sym_false, + STATE(103), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(107), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [11081] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(164), 1, + anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(328), 1, + sym_identifier, + ACTIONS(342), 1, + anon_sym_PIPE, + ACTIONS(547), 1, + anon_sym_table, + STATE(239), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(141), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(139), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [11130] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(164), 1, + anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(328), 1, + sym_identifier, + ACTIONS(342), 1, + anon_sym_PIPE, + ACTIONS(547), 1, + anon_sym_table, + STATE(237), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(141), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(139), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [11179] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(164), 1, + anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(328), 1, + sym_identifier, + ACTIONS(342), 1, + anon_sym_PIPE, + ACTIONS(547), 1, + anon_sym_table, + STATE(235), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(141), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(139), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [11228] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(45), 1, + anon_sym_LPAREN, + ACTIONS(49), 1, + sym_integer, + ACTIONS(55), 1, + anon_sym_LBRACK, + ACTIONS(57), 1, + anon_sym_PIPE, + ACTIONS(67), 1, + sym_identifier, ACTIONS(549), 1, - anon_sym_DOT_DOT, - STATE(252), 1, - sym_math_operator, - STATE(253), 1, - sym_logic_operator, - ACTIONS(235), 5, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(233), 17, - anon_sym_SEMI, - anon_sym_RPAREN, - 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, - anon_sym_DASH_GT, - [12348] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(263), 11, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, + anon_sym_table, + STATE(85), 1, + sym_expression, + ACTIONS(51), 2, sym_float, sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_asyncfor, - anon_sym_PIPE, - ACTIONS(265), 14, - anon_sym_async, - sym_identifier, - sym_integer, + ACTIONS(53), 2, anon_sym_true, anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, + STATE(103), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(107), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [11277] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(45), 1, + anon_sym_LPAREN, + ACTIONS(49), 1, + sym_integer, + ACTIONS(55), 1, + anon_sym_LBRACK, + ACTIONS(57), 1, + anon_sym_PIPE, + ACTIONS(67), 1, + sym_identifier, + ACTIONS(549), 1, anon_sym_table, - anon_sym_return, - anon_sym_use, - [12381] = 11, + STATE(86), 1, + sym_expression, + ACTIONS(51), 2, + sym_float, + sym_string, + ACTIONS(53), 2, + anon_sym_true, + anon_sym_false, + STATE(103), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(107), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [11326] = 12, ACTIONS(3), 1, sym__comment, - ACTIONS(219), 1, - anon_sym_EQ, - ACTIONS(551), 1, - anon_sym_COLON, - ACTIONS(553), 1, - anon_sym_DASH_GT, - STATE(252), 1, - sym_math_operator, + ACTIONS(164), 1, + anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(188), 1, + anon_sym_PIPE, + ACTIONS(190), 1, + anon_sym_table, + ACTIONS(328), 1, + sym_identifier, + STATE(144), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(141), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(139), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [11375] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(45), 1, + anon_sym_LPAREN, + ACTIONS(49), 1, + sym_integer, + ACTIONS(55), 1, + anon_sym_LBRACK, + ACTIONS(57), 1, + anon_sym_PIPE, + ACTIONS(67), 1, + sym_identifier, + ACTIONS(549), 1, + anon_sym_table, + STATE(87), 1, + sym_expression, + ACTIONS(51), 2, + sym_float, + sym_string, + ACTIONS(53), 2, + anon_sym_true, + anon_sym_false, + STATE(103), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(107), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [11424] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(164), 1, + anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(328), 1, + sym_identifier, + ACTIONS(332), 1, + anon_sym_table, + ACTIONS(342), 1, + anon_sym_PIPE, STATE(253), 1, - sym_logic_operator, - ACTIONS(223), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(225), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(227), 6, - 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(217), 7, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_identifier, - anon_sym_DOT_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [12430] = 5, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(141), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(139), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [11473] = 12, ACTIONS(3), 1, sym__comment, - STATE(257), 1, - sym_math_operator, - STATE(259), 1, - sym_logic_operator, - ACTIONS(239), 5, - anon_sym_async, + ACTIONS(164), 1, + anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(328), 1, sym_identifier, + ACTIONS(332), 1, + anon_sym_table, + ACTIONS(342), 1, + anon_sym_PIPE, + STATE(255), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(141), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(139), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [11522] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(545), 1, + sym_identifier, + ACTIONS(551), 1, + anon_sym_table, + STATE(50), 1, + sym_expression, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(69), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(61), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [11571] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_table, + ACTIONS(545), 1, + sym_identifier, + STATE(77), 1, + sym_expression, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(69), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(61), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [11620] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(545), 1, + sym_identifier, + ACTIONS(551), 1, + anon_sym_table, + STATE(48), 1, + sym_expression, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(69), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(61), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [11669] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(164), 1, + anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(188), 1, + anon_sym_PIPE, + ACTIONS(190), 1, + anon_sym_table, + ACTIONS(328), 1, + sym_identifier, + STATE(164), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(141), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(139), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [11718] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(164), 1, + anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(188), 1, + anon_sym_PIPE, + ACTIONS(190), 1, + anon_sym_table, + ACTIONS(328), 1, + sym_identifier, + STATE(244), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(141), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(139), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [11767] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(164), 1, + anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(328), 1, + sym_identifier, + ACTIONS(332), 1, + anon_sym_table, + ACTIONS(342), 1, + anon_sym_PIPE, + STATE(245), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(141), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(139), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [11816] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(164), 1, + anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(328), 1, + sym_identifier, + ACTIONS(342), 1, + anon_sym_PIPE, + ACTIONS(547), 1, + anon_sym_table, + STATE(240), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(141), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(139), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [11865] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(164), 1, + anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(328), 1, + sym_identifier, + ACTIONS(332), 1, + anon_sym_table, + ACTIONS(342), 1, + anon_sym_PIPE, + STATE(252), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(141), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(139), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [11914] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(164), 1, + anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(328), 1, + sym_identifier, + ACTIONS(332), 1, + anon_sym_table, + ACTIONS(342), 1, + anon_sym_PIPE, + STATE(254), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(141), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(139), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [11963] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(45), 1, + anon_sym_LPAREN, + ACTIONS(49), 1, + sym_integer, + ACTIONS(55), 1, + anon_sym_LBRACK, + ACTIONS(57), 1, + anon_sym_PIPE, + ACTIONS(67), 1, + sym_identifier, + ACTIONS(549), 1, + anon_sym_table, + STATE(84), 1, + sym_expression, + ACTIONS(51), 2, + sym_float, + sym_string, + ACTIONS(53), 2, + anon_sym_true, + anon_sym_false, + STATE(103), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(107), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [12012] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(45), 1, + anon_sym_LPAREN, + ACTIONS(49), 1, + sym_integer, + ACTIONS(55), 1, + anon_sym_LBRACK, + ACTIONS(57), 1, + anon_sym_PIPE, + ACTIONS(59), 1, + anon_sym_table, + ACTIONS(67), 1, + sym_identifier, + STATE(93), 1, + sym_expression, + ACTIONS(51), 2, + sym_float, + sym_string, + ACTIONS(53), 2, + anon_sym_true, + anon_sym_false, + STATE(103), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(107), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [12061] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(45), 1, + anon_sym_LPAREN, + ACTIONS(49), 1, + sym_integer, + ACTIONS(55), 1, + anon_sym_LBRACK, + ACTIONS(57), 1, + anon_sym_PIPE, + ACTIONS(59), 1, + anon_sym_table, + ACTIONS(67), 1, + sym_identifier, + STATE(94), 1, + sym_expression, + ACTIONS(51), 2, + sym_float, + sym_string, + ACTIONS(53), 2, + anon_sym_true, + anon_sym_false, + STATE(103), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(107), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [12110] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(545), 1, + sym_identifier, + ACTIONS(551), 1, + anon_sym_table, + STATE(47), 1, + sym_expression, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(69), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(61), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [12159] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(164), 1, + anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(328), 1, + sym_identifier, + ACTIONS(332), 1, + anon_sym_table, + ACTIONS(342), 1, + anon_sym_PIPE, + STATE(249), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(141), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(139), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [12208] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(164), 1, + anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(188), 1, + anon_sym_PIPE, + ACTIONS(328), 1, + sym_identifier, + ACTIONS(553), 1, + anon_sym_table, + STATE(120), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(141), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(139), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [12257] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(164), 1, + anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(188), 1, + anon_sym_PIPE, + ACTIONS(190), 1, + anon_sym_table, + ACTIONS(328), 1, + sym_identifier, + STATE(142), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(141), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(139), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [12306] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(164), 1, + anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(188), 1, + anon_sym_PIPE, + ACTIONS(190), 1, + anon_sym_table, + ACTIONS(328), 1, + sym_identifier, + STATE(145), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(141), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(139), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [12355] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(164), 1, + anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(328), 1, + sym_identifier, + ACTIONS(332), 1, + anon_sym_table, + ACTIONS(342), 1, + anon_sym_PIPE, + STATE(247), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(141), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(139), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [12404] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_table, + ACTIONS(545), 1, + sym_identifier, + STATE(51), 1, + sym_expression, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(69), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(61), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [12453] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(545), 1, + sym_identifier, + ACTIONS(551), 1, + anon_sym_table, + STATE(45), 1, + sym_expression, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(69), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(61), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [12502] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_table, + ACTIONS(545), 1, + sym_identifier, + STATE(52), 1, + sym_expression, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(69), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(61), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [12551] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_table, + ACTIONS(545), 1, + sym_identifier, + STATE(53), 1, + sym_expression, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(69), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(61), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [12600] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(164), 1, + anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(328), 1, + sym_identifier, + ACTIONS(332), 1, + anon_sym_table, + ACTIONS(342), 1, + anon_sym_PIPE, + STATE(246), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(141), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(139), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [12649] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(164), 1, + anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(328), 1, + sym_identifier, + ACTIONS(332), 1, + anon_sym_table, + ACTIONS(342), 1, + anon_sym_PIPE, + STATE(248), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(141), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(139), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [12698] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(164), 1, + anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(328), 1, + sym_identifier, + ACTIONS(332), 1, + anon_sym_table, + ACTIONS(342), 1, + anon_sym_PIPE, + STATE(256), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(141), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(139), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [12747] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(545), 1, + sym_identifier, + ACTIONS(551), 1, + anon_sym_table, + STATE(46), 1, + sym_expression, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(69), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(61), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [12796] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(164), 1, + anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(188), 1, + anon_sym_PIPE, + ACTIONS(328), 1, + sym_identifier, + ACTIONS(553), 1, + anon_sym_table, + STATE(116), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(141), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(139), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [12845] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_table, + ACTIONS(545), 1, + sym_identifier, + STATE(74), 1, + sym_expression, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(69), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(61), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [12894] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(45), 1, + anon_sym_LPAREN, + ACTIONS(49), 1, + sym_integer, + ACTIONS(55), 1, + anon_sym_LBRACK, + ACTIONS(57), 1, + anon_sym_PIPE, + ACTIONS(59), 1, + anon_sym_table, + ACTIONS(67), 1, + sym_identifier, + STATE(80), 1, + sym_expression, + ACTIONS(51), 2, + sym_float, + sym_string, + ACTIONS(53), 2, + anon_sym_true, + anon_sym_false, + STATE(103), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(107), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [12943] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_PIPE, + ACTIONS(37), 1, + anon_sym_table, + ACTIONS(545), 1, + sym_identifier, + STATE(54), 1, + sym_expression, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(69), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(61), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [12992] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(164), 1, + anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(328), 1, + sym_identifier, + ACTIONS(332), 1, + anon_sym_table, + ACTIONS(342), 1, + anon_sym_PIPE, + STATE(250), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(141), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(139), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [13041] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(164), 1, + anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(188), 1, + anon_sym_PIPE, + ACTIONS(328), 1, + sym_identifier, + ACTIONS(553), 1, + anon_sym_table, + STATE(115), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(141), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(139), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [13090] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(164), 1, + anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(188), 1, + anon_sym_PIPE, + ACTIONS(328), 1, + sym_identifier, + ACTIONS(553), 1, + anon_sym_table, + STATE(114), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(141), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(139), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [13139] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(45), 1, + anon_sym_LPAREN, + ACTIONS(49), 1, + sym_integer, + ACTIONS(55), 1, + anon_sym_LBRACK, + ACTIONS(57), 1, + anon_sym_PIPE, + ACTIONS(67), 1, + sym_identifier, + ACTIONS(549), 1, + anon_sym_table, + STATE(83), 1, + sym_expression, + ACTIONS(51), 2, + sym_float, + sym_string, + ACTIONS(53), 2, + anon_sym_true, + anon_sym_false, + STATE(103), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(107), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [13188] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(164), 1, + anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(188), 1, + anon_sym_PIPE, + ACTIONS(328), 1, + sym_identifier, + ACTIONS(553), 1, + anon_sym_table, + STATE(118), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(141), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(139), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [13237] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(164), 1, + anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(328), 1, + sym_identifier, + ACTIONS(342), 1, + anon_sym_PIPE, + ACTIONS(547), 1, + anon_sym_table, + STATE(234), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(141), 5, + sym_boolean, + sym_list, + sym_map, + sym_table, + sym_function, + STATE(139), 7, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [13286] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(189), 1, + sym_logic_operator, + STATE(190), 1, + sym_math_operator, + ACTIONS(198), 3, anon_sym_DASH, anon_sym_GT, anon_sym_LT, - ACTIONS(237), 18, + ACTIONS(196), 16, + anon_sym_async, anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -13534,90 +13977,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_GT, anon_sym_DASH_GT, - [12467] = 6, + [13319] = 10, ACTIONS(3), 1, sym__comment, - ACTIONS(551), 1, - anon_sym_COLON, - STATE(252), 1, - sym_math_operator, - STATE(253), 1, - sym_logic_operator, - ACTIONS(245), 5, - anon_sym_EQ, - anon_sym_PLUS, + ACTIONS(208), 1, anon_sym_DASH, + ACTIONS(409), 1, + anon_sym_DASH_GT, + ACTIONS(555), 1, + anon_sym_COLON, + STATE(189), 1, + sym_logic_operator, + STATE(190), 1, + sym_math_operator, + ACTIONS(214), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(243), 17, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_identifier, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_GT, - [12506] = 11, - ACTIONS(3), 1, - sym__comment, - ACTIONS(249), 1, - anon_sym_EQ, - ACTIONS(551), 1, - anon_sym_COLON, - ACTIONS(553), 1, - anon_sym_DASH_GT, - STATE(252), 1, - sym_math_operator, - STATE(253), 1, - sym_logic_operator, - ACTIONS(223), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(225), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(227), 6, - 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(247), 7, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_identifier, - anon_sym_DOT_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [12555] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(555), 11, - ts_builtin_sym_end, + ACTIONS(202), 4, + anon_sym_async, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + ACTIONS(210), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(212), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [13362] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(208), 1, + anon_sym_DASH, + ACTIONS(409), 1, + anon_sym_DASH_GT, + ACTIONS(425), 1, + anon_sym_COLON, + STATE(185), 1, + sym_math_operator, + STATE(194), 1, + sym_logic_operator, + ACTIONS(214), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(210), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(318), 4, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_identifier, + ACTIONS(212), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [13405] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(555), 1, + anon_sym_COLON, + STATE(189), 1, + sym_logic_operator, + STATE(190), 1, + sym_math_operator, + ACTIONS(220), 3, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(218), 15, + anon_sym_async, + anon_sym_LBRACE, + 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, + anon_sym_DASH_GT, + [13440] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(559), 7, + anon_sym_LBRACE, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, - anon_sym_EQ_GT, anon_sym_asyncfor, anon_sym_PIPE, ACTIONS(557), 14, @@ -13635,4578 +14098,657 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_table, anon_sym_return, anon_sym_use, - [12588] = 3, + [13469] = 10, ACTIONS(3), 1, sym__comment, - ACTIONS(559), 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(561), 14, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_return, - anon_sym_use, - [12621] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(287), 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(289), 14, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_return, - anon_sym_use, - [12654] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(420), 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(422), 14, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_return, - anon_sym_use, - [12687] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(563), 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(565), 14, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_return, - anon_sym_use, - [12720] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(567), 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(569), 14, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_return, - anon_sym_use, - [12753] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(571), 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(573), 14, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_return, - anon_sym_use, - [12786] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(575), 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(577), 14, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_return, - anon_sym_use, - [12819] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(355), 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(357), 14, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_return, - anon_sym_use, - [12852] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(579), 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(581), 14, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_return, - anon_sym_use, - [12885] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(583), 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(585), 14, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_return, - anon_sym_use, - [12918] = 6, - ACTIONS(3), 1, - sym__comment, - ACTIONS(587), 1, + ACTIONS(208), 1, + anon_sym_DASH, + ACTIONS(409), 1, + anon_sym_DASH_GT, + ACTIONS(555), 1, anon_sym_COLON, - STATE(257), 1, - sym_math_operator, - STATE(259), 1, + STATE(189), 1, sym_logic_operator, - ACTIONS(245), 5, - anon_sym_async, - sym_identifier, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(243), 17, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - 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, - anon_sym_DASH_GT, - [12957] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(359), 1, - anon_sym_SEMI, - ACTIONS(355), 10, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_asyncfor, - anon_sym_PIPE, - ACTIONS(357), 14, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_return, - anon_sym_use, - [12992] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(257), 1, + STATE(190), 1, sym_math_operator, - STATE(259), 1, - sym_logic_operator, - ACTIONS(235), 5, - anon_sym_async, - sym_identifier, - anon_sym_DASH, + ACTIONS(214), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(233), 18, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT_DOT, + ACTIONS(210), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(226), 4, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + ACTIONS(212), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [13029] = 11, + [13512] = 6, ACTIONS(3), 1, sym__comment, - ACTIONS(223), 1, - anon_sym_DASH, - ACTIONS(587), 1, - anon_sym_COLON, - ACTIONS(589), 1, - anon_sym_DASH_GT, - STATE(257), 1, + ACTIONS(561), 1, + anon_sym_DOT_DOT, + STATE(189), 1, + sym_logic_operator, + STATE(190), 1, sym_math_operator, - STATE(259), 1, - sym_logic_operator, - ACTIONS(219), 2, - anon_sym_async, - sym_identifier, - ACTIONS(229), 2, + ACTIONS(198), 3, + anon_sym_DASH, anon_sym_GT, anon_sym_LT, - ACTIONS(225), 4, + ACTIONS(196), 15, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(217), 6, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - ACTIONS(227), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [13078] = 11, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [13547] = 5, ACTIONS(3), 1, sym__comment, - ACTIONS(223), 1, - anon_sym_DASH, - ACTIONS(587), 1, - anon_sym_COLON, - ACTIONS(589), 1, - anon_sym_DASH_GT, - STATE(257), 1, + STATE(189), 1, + sym_logic_operator, + STATE(190), 1, sym_math_operator, - STATE(259), 1, - sym_logic_operator, - ACTIONS(229), 2, + ACTIONS(224), 3, + anon_sym_DASH, anon_sym_GT, anon_sym_LT, - ACTIONS(249), 2, + ACTIONS(222), 16, anon_sym_async, - sym_identifier, - ACTIONS(225), 4, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(227), 6, 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(247), 6, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT, anon_sym_EQ_GT, - [13127] = 11, + anon_sym_DASH_GT, + [13580] = 11, ACTIONS(3), 1, sym__comment, - ACTIONS(219), 1, - anon_sym_EQ, - ACTIONS(553), 1, + ACTIONS(208), 1, + anon_sym_DASH, + ACTIONS(409), 1, anon_sym_DASH_GT, - ACTIONS(591), 1, + ACTIONS(425), 1, anon_sym_COLON, - STATE(227), 1, - sym_logic_operator, - STATE(274), 1, + ACTIONS(563), 1, + anon_sym_SEMI, + STATE(185), 1, sym_math_operator, - ACTIONS(223), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(225), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(217), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_identifier, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(227), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [13175] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(25), 1, - anon_sym_EQ_GT, - ACTIONS(37), 1, - anon_sym_PIPE, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(595), 1, - anon_sym_table, - STATE(87), 1, - sym_expression, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(103), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(102), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [13227] = 6, - ACTIONS(3), 1, - sym__comment, - ACTIONS(591), 1, - anon_sym_COLON, - STATE(227), 1, - sym_logic_operator, - STATE(274), 1, - sym_math_operator, - ACTIONS(245), 5, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(243), 16, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_identifier, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_GT, - [13265] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(183), 1, - anon_sym_LPAREN, - ACTIONS(185), 1, - sym_integer, - ACTIONS(191), 1, - anon_sym_LBRACK, - ACTIONS(197), 1, - anon_sym_EQ_GT, - ACTIONS(209), 1, - anon_sym_PIPE, - ACTIONS(211), 1, - anon_sym_table, - ACTIONS(343), 1, - sym_identifier, - STATE(214), 1, - sym_expression, - ACTIONS(187), 2, - sym_float, - sym_string, - ACTIONS(189), 2, - anon_sym_true, - anon_sym_false, - STATE(300), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(305), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [13317] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(183), 1, - anon_sym_LPAREN, - ACTIONS(185), 1, - sym_integer, - ACTIONS(191), 1, - anon_sym_LBRACK, - ACTIONS(197), 1, - anon_sym_EQ_GT, - ACTIONS(209), 1, - anon_sym_PIPE, - ACTIONS(211), 1, - anon_sym_table, - ACTIONS(343), 1, - sym_identifier, - STATE(215), 1, - sym_expression, - ACTIONS(187), 2, - sym_float, - sym_string, - ACTIONS(189), 2, - anon_sym_true, - anon_sym_false, - STATE(300), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(305), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [13369] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(183), 1, - anon_sym_LPAREN, - ACTIONS(185), 1, - sym_integer, - ACTIONS(191), 1, - anon_sym_LBRACK, - ACTIONS(197), 1, - anon_sym_EQ_GT, - ACTIONS(209), 1, - anon_sym_PIPE, - ACTIONS(211), 1, - anon_sym_table, - ACTIONS(343), 1, - sym_identifier, - STATE(216), 1, - sym_expression, - ACTIONS(187), 2, - sym_float, - sym_string, - ACTIONS(189), 2, - anon_sym_true, - anon_sym_false, - STATE(300), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(305), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [13421] = 11, - ACTIONS(3), 1, - sym__comment, - ACTIONS(249), 1, - anon_sym_EQ, - ACTIONS(553), 1, - anon_sym_DASH_GT, - ACTIONS(591), 1, - anon_sym_COLON, - STATE(227), 1, - sym_logic_operator, - STATE(274), 1, - sym_math_operator, - ACTIONS(223), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(229), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(225), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(227), 6, - 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(247), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_identifier, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [13469] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(597), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_LPAREN, - ACTIONS(601), 1, - sym_integer, - ACTIONS(607), 1, - anon_sym_LBRACK, - ACTIONS(609), 1, - anon_sym_EQ_GT, - ACTIONS(611), 1, - anon_sym_PIPE, - ACTIONS(613), 1, - anon_sym_table, - STATE(63), 1, - sym_expression, - ACTIONS(603), 2, - sym_float, - sym_string, - ACTIONS(605), 2, - anon_sym_true, - anon_sym_false, - STATE(76), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(69), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [13521] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(597), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_LPAREN, - ACTIONS(601), 1, - sym_integer, - ACTIONS(607), 1, - anon_sym_LBRACK, - ACTIONS(609), 1, - anon_sym_EQ_GT, - ACTIONS(611), 1, - anon_sym_PIPE, - ACTIONS(613), 1, - anon_sym_table, - STATE(64), 1, - sym_expression, - ACTIONS(603), 2, - sym_float, - sym_string, - ACTIONS(605), 2, - anon_sym_true, - anon_sym_false, - STATE(76), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(69), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [13573] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(597), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_LPAREN, - ACTIONS(601), 1, - sym_integer, - ACTIONS(607), 1, - anon_sym_LBRACK, - ACTIONS(609), 1, - anon_sym_EQ_GT, - ACTIONS(611), 1, - anon_sym_PIPE, - ACTIONS(613), 1, - anon_sym_table, - STATE(66), 1, - sym_expression, - ACTIONS(603), 2, - sym_float, - sym_string, - ACTIONS(605), 2, - anon_sym_true, - anon_sym_false, - STATE(76), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(69), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [13625] = 11, - ACTIONS(3), 1, - sym__comment, - ACTIONS(223), 1, - anon_sym_DASH, - ACTIONS(589), 1, - anon_sym_DASH_GT, - ACTIONS(615), 1, - anon_sym_COLON, - STATE(208), 1, - sym_math_operator, - STATE(209), 1, - sym_logic_operator, - ACTIONS(229), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(249), 2, - anon_sym_async, - sym_identifier, - ACTIONS(225), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(247), 5, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ_GT, - ACTIONS(227), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [13673] = 6, - ACTIONS(3), 1, - sym__comment, - ACTIONS(615), 1, - anon_sym_COLON, - STATE(208), 1, - sym_math_operator, - STATE(209), 1, - sym_logic_operator, - ACTIONS(245), 5, - anon_sym_async, - sym_identifier, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(243), 16, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - 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, - anon_sym_DASH_GT, - [13711] = 11, - ACTIONS(3), 1, - sym__comment, - ACTIONS(223), 1, - anon_sym_DASH, - ACTIONS(589), 1, - anon_sym_DASH_GT, - ACTIONS(615), 1, - anon_sym_COLON, - STATE(208), 1, - sym_math_operator, - STATE(209), 1, - sym_logic_operator, - ACTIONS(219), 2, - anon_sym_async, - sym_identifier, - ACTIONS(229), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(225), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(217), 5, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ_GT, - ACTIONS(227), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [13759] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(183), 1, - anon_sym_LPAREN, - ACTIONS(185), 1, - sym_integer, - ACTIONS(191), 1, - anon_sym_LBRACK, - ACTIONS(197), 1, - anon_sym_EQ_GT, - ACTIONS(209), 1, - anon_sym_PIPE, - ACTIONS(211), 1, - anon_sym_table, - ACTIONS(343), 1, - sym_identifier, - STATE(313), 1, - sym_expression, - ACTIONS(187), 2, - sym_float, - sym_string, - ACTIONS(189), 2, - anon_sym_true, - anon_sym_false, - STATE(300), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(305), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [13811] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(208), 1, - sym_math_operator, - STATE(209), 1, - sym_logic_operator, - ACTIONS(239), 5, - anon_sym_async, - sym_identifier, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(237), 17, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - 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, - anon_sym_DASH_GT, - [13847] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(183), 1, - anon_sym_LPAREN, - ACTIONS(185), 1, - sym_integer, - ACTIONS(191), 1, - anon_sym_LBRACK, - ACTIONS(197), 1, - anon_sym_EQ_GT, - ACTIONS(209), 1, - anon_sym_PIPE, - ACTIONS(211), 1, - anon_sym_table, - ACTIONS(343), 1, - sym_identifier, - STATE(311), 1, - sym_expression, - ACTIONS(187), 2, - sym_float, - sym_string, - ACTIONS(189), 2, - anon_sym_true, - anon_sym_false, - STATE(300), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(305), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [13899] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - sym_integer, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_EQ_GT, - ACTIONS(61), 1, - anon_sym_PIPE, - ACTIONS(63), 1, - anon_sym_table, - ACTIONS(75), 1, - sym_identifier, - STATE(130), 1, - sym_expression, - ACTIONS(53), 2, - sym_float, - sym_string, - ACTIONS(55), 2, - anon_sym_true, - anon_sym_false, - STATE(136), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(141), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [13951] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - sym_integer, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_EQ_GT, - ACTIONS(61), 1, - anon_sym_PIPE, - ACTIONS(63), 1, - anon_sym_table, - ACTIONS(75), 1, - sym_identifier, - STATE(125), 1, - sym_expression, - ACTIONS(53), 2, - sym_float, - sym_string, - ACTIONS(55), 2, - anon_sym_true, - anon_sym_false, - STATE(136), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(141), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [14003] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(25), 1, - anon_sym_EQ_GT, - ACTIONS(37), 1, - anon_sym_PIPE, - ACTIONS(39), 1, - anon_sym_table, - ACTIONS(593), 1, - sym_identifier, - STATE(101), 1, - sym_expression, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(103), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(102), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [14055] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(183), 1, - anon_sym_LPAREN, - ACTIONS(185), 1, - sym_integer, - ACTIONS(191), 1, - anon_sym_LBRACK, - ACTIONS(197), 1, - anon_sym_EQ_GT, - ACTIONS(209), 1, - anon_sym_PIPE, - ACTIONS(211), 1, - anon_sym_table, - ACTIONS(343), 1, - sym_identifier, - STATE(315), 1, - sym_expression, - ACTIONS(187), 2, - sym_float, - sym_string, - ACTIONS(189), 2, - anon_sym_true, - anon_sym_false, - STATE(300), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(305), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [14107] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(25), 1, - anon_sym_EQ_GT, - ACTIONS(37), 1, - anon_sym_PIPE, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(595), 1, - anon_sym_table, - STATE(91), 1, - sym_expression, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(103), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(102), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [14159] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - sym_integer, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_EQ_GT, - ACTIONS(61), 1, - anon_sym_PIPE, - ACTIONS(63), 1, - anon_sym_table, - ACTIONS(75), 1, - sym_identifier, - STATE(99), 1, - sym_expression, - ACTIONS(53), 2, - sym_float, - sym_string, - ACTIONS(55), 2, - anon_sym_true, - anon_sym_false, - STATE(136), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(141), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [14211] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(183), 1, - anon_sym_LPAREN, - ACTIONS(185), 1, - sym_integer, - ACTIONS(191), 1, - anon_sym_LBRACK, - ACTIONS(197), 1, - anon_sym_EQ_GT, - ACTIONS(209), 1, - anon_sym_PIPE, - ACTIONS(211), 1, - anon_sym_table, - ACTIONS(343), 1, - sym_identifier, - STATE(316), 1, - sym_expression, - ACTIONS(187), 2, - sym_float, - sym_string, - ACTIONS(189), 2, - anon_sym_true, - anon_sym_false, - STATE(300), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(305), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [14263] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(617), 1, - sym_identifier, - ACTIONS(619), 1, - anon_sym_LPAREN, - ACTIONS(621), 1, - sym_integer, - ACTIONS(627), 1, - anon_sym_LBRACK, - ACTIONS(629), 1, - anon_sym_EQ_GT, - ACTIONS(631), 1, - anon_sym_PIPE, - ACTIONS(633), 1, - anon_sym_table, - STATE(204), 1, - sym_expression, - ACTIONS(623), 2, - sym_float, - sym_string, - ACTIONS(625), 2, - anon_sym_true, - anon_sym_false, - STATE(281), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(277), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [14315] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(597), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_LPAREN, - ACTIONS(601), 1, - sym_integer, - ACTIONS(607), 1, - anon_sym_LBRACK, - ACTIONS(609), 1, - anon_sym_EQ_GT, - ACTIONS(611), 1, - anon_sym_PIPE, - ACTIONS(635), 1, - anon_sym_table, - STATE(62), 1, - sym_expression, - ACTIONS(603), 2, - sym_float, - sym_string, - ACTIONS(605), 2, - anon_sym_true, - anon_sym_false, - STATE(76), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(69), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [14367] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(597), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_LPAREN, - ACTIONS(601), 1, - sym_integer, - ACTIONS(607), 1, - anon_sym_LBRACK, - ACTIONS(609), 1, - anon_sym_EQ_GT, - ACTIONS(611), 1, - anon_sym_PIPE, - ACTIONS(635), 1, - anon_sym_table, - STATE(61), 1, - sym_expression, - ACTIONS(603), 2, - sym_float, - sym_string, - ACTIONS(605), 2, - anon_sym_true, - anon_sym_false, - STATE(76), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(69), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [14419] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(597), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_LPAREN, - ACTIONS(601), 1, - sym_integer, - ACTIONS(607), 1, - anon_sym_LBRACK, - ACTIONS(609), 1, - anon_sym_EQ_GT, - ACTIONS(611), 1, - anon_sym_PIPE, - ACTIONS(635), 1, - anon_sym_table, - STATE(57), 1, - sym_expression, - ACTIONS(603), 2, - sym_float, - sym_string, - ACTIONS(605), 2, - anon_sym_true, - anon_sym_false, - STATE(76), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(69), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [14471] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(183), 1, - anon_sym_LPAREN, - ACTIONS(185), 1, - sym_integer, - ACTIONS(191), 1, - anon_sym_LBRACK, - ACTIONS(197), 1, - anon_sym_EQ_GT, - ACTIONS(209), 1, - anon_sym_PIPE, - ACTIONS(211), 1, - anon_sym_table, - ACTIONS(343), 1, - sym_identifier, - STATE(318), 1, - sym_expression, - ACTIONS(187), 2, - sym_float, - sym_string, - ACTIONS(189), 2, - anon_sym_true, - anon_sym_false, - STATE(300), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(305), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [14523] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - sym_integer, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_EQ_GT, - ACTIONS(61), 1, - anon_sym_PIPE, - ACTIONS(63), 1, - anon_sym_table, - ACTIONS(75), 1, - sym_identifier, - STATE(126), 1, - sym_expression, - ACTIONS(53), 2, - sym_float, - sym_string, - ACTIONS(55), 2, - anon_sym_true, - anon_sym_false, - STATE(136), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(141), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [14575] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(597), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_LPAREN, - ACTIONS(601), 1, - sym_integer, - ACTIONS(607), 1, - anon_sym_LBRACK, - ACTIONS(609), 1, - anon_sym_EQ_GT, - ACTIONS(611), 1, - anon_sym_PIPE, - ACTIONS(635), 1, - anon_sym_table, - STATE(60), 1, - sym_expression, - ACTIONS(603), 2, - sym_float, - sym_string, - ACTIONS(605), 2, - anon_sym_true, - anon_sym_false, - STATE(76), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(69), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [14627] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(617), 1, - sym_identifier, - ACTIONS(619), 1, - anon_sym_LPAREN, - ACTIONS(621), 1, - sym_integer, - ACTIONS(627), 1, - anon_sym_LBRACK, - ACTIONS(629), 1, - anon_sym_EQ_GT, - ACTIONS(631), 1, - anon_sym_PIPE, - ACTIONS(637), 1, - anon_sym_table, - STATE(180), 1, - sym_expression, - ACTIONS(623), 2, - sym_float, - sym_string, - ACTIONS(625), 2, - anon_sym_true, - anon_sym_false, - STATE(281), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(277), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [14679] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(25), 1, - anon_sym_EQ_GT, - ACTIONS(37), 1, - anon_sym_PIPE, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(595), 1, - anon_sym_table, - STATE(86), 1, - sym_expression, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(103), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(102), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [14731] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(183), 1, - anon_sym_LPAREN, - ACTIONS(185), 1, - sym_integer, - ACTIONS(191), 1, - anon_sym_LBRACK, - ACTIONS(197), 1, - anon_sym_EQ_GT, - ACTIONS(209), 1, - anon_sym_PIPE, - ACTIONS(211), 1, - anon_sym_table, - ACTIONS(343), 1, - sym_identifier, - STATE(310), 1, - sym_expression, - ACTIONS(187), 2, - sym_float, - sym_string, - ACTIONS(189), 2, - anon_sym_true, - anon_sym_false, - STATE(300), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(305), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [14783] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(257), 1, - anon_sym_EQ, - ACTIONS(259), 1, - anon_sym_LT, - STATE(52), 1, - sym_assignment_operator, - STATE(347), 1, - sym_type, - ACTIONS(261), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(255), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - ACTIONS(253), 15, - anon_sym_SEMI, - anon_sym_RPAREN, - 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_DASH_GT, - [14825] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(25), 1, - anon_sym_EQ_GT, - ACTIONS(37), 1, - anon_sym_PIPE, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(595), 1, - anon_sym_table, - STATE(85), 1, - sym_expression, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(103), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(102), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [14877] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(25), 1, - anon_sym_EQ_GT, - ACTIONS(37), 1, - anon_sym_PIPE, - ACTIONS(39), 1, - anon_sym_table, - ACTIONS(593), 1, - sym_identifier, - STATE(94), 1, - sym_expression, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(103), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(102), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [14929] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(183), 1, - anon_sym_LPAREN, - ACTIONS(185), 1, - sym_integer, - ACTIONS(191), 1, - anon_sym_LBRACK, - ACTIONS(197), 1, - anon_sym_EQ_GT, - ACTIONS(209), 1, - anon_sym_PIPE, - ACTIONS(343), 1, - sym_identifier, - ACTIONS(639), 1, - anon_sym_table, - STATE(201), 1, - sym_expression, - ACTIONS(187), 2, - sym_float, - sym_string, - ACTIONS(189), 2, - anon_sym_true, - anon_sym_false, - STATE(300), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(305), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [14981] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - sym_integer, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_EQ_GT, - ACTIONS(61), 1, - anon_sym_PIPE, - ACTIONS(75), 1, - sym_identifier, - ACTIONS(641), 1, - anon_sym_table, - STATE(124), 1, - sym_expression, - ACTIONS(53), 2, - sym_float, - sym_string, - ACTIONS(55), 2, - anon_sym_true, - anon_sym_false, - STATE(136), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(141), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [15033] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - sym_integer, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_EQ_GT, - ACTIONS(61), 1, - anon_sym_PIPE, - ACTIONS(75), 1, - sym_identifier, - ACTIONS(641), 1, - anon_sym_table, - STATE(119), 1, - sym_expression, - ACTIONS(53), 2, - sym_float, - sym_string, - ACTIONS(55), 2, - anon_sym_true, - anon_sym_false, - STATE(136), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(141), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [15085] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(25), 1, - anon_sym_EQ_GT, - ACTIONS(37), 1, - anon_sym_PIPE, - ACTIONS(39), 1, - anon_sym_table, - ACTIONS(593), 1, - sym_identifier, - STATE(93), 1, - sym_expression, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(103), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(102), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [15137] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(597), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_LPAREN, - ACTIONS(601), 1, - sym_integer, - ACTIONS(607), 1, - anon_sym_LBRACK, - ACTIONS(609), 1, - anon_sym_EQ_GT, - ACTIONS(611), 1, - anon_sym_PIPE, - ACTIONS(613), 1, - anon_sym_table, - STATE(67), 1, - sym_expression, - ACTIONS(603), 2, - sym_float, - sym_string, - ACTIONS(605), 2, - anon_sym_true, - anon_sym_false, - STATE(76), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(69), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [15189] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(25), 1, - anon_sym_EQ_GT, - ACTIONS(37), 1, - anon_sym_PIPE, - ACTIONS(39), 1, - anon_sym_table, - ACTIONS(593), 1, - sym_identifier, - STATE(100), 1, - sym_expression, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(103), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(102), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [15241] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - sym_integer, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_EQ_GT, - ACTIONS(61), 1, - anon_sym_PIPE, - ACTIONS(75), 1, - sym_identifier, - ACTIONS(641), 1, - anon_sym_table, - STATE(122), 1, - sym_expression, - ACTIONS(53), 2, - sym_float, - sym_string, - ACTIONS(55), 2, - anon_sym_true, - anon_sym_false, - STATE(136), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(141), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [15293] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(183), 1, - anon_sym_LPAREN, - ACTIONS(185), 1, - sym_integer, - ACTIONS(191), 1, - anon_sym_LBRACK, - ACTIONS(197), 1, - anon_sym_EQ_GT, - ACTIONS(209), 1, - anon_sym_PIPE, - ACTIONS(211), 1, - anon_sym_table, - ACTIONS(343), 1, - sym_identifier, - STATE(312), 1, - sym_expression, - ACTIONS(187), 2, - sym_float, - sym_string, - ACTIONS(189), 2, - anon_sym_true, - anon_sym_false, - STATE(300), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(305), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [15345] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(617), 1, - sym_identifier, - ACTIONS(619), 1, - anon_sym_LPAREN, - ACTIONS(621), 1, - sym_integer, - ACTIONS(627), 1, - anon_sym_LBRACK, - ACTIONS(629), 1, - anon_sym_EQ_GT, - ACTIONS(631), 1, - anon_sym_PIPE, - ACTIONS(637), 1, - anon_sym_table, - STATE(182), 1, - sym_expression, - ACTIONS(623), 2, - sym_float, - sym_string, - ACTIONS(625), 2, - anon_sym_true, - anon_sym_false, - STATE(281), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(277), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [15397] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - sym_integer, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_EQ_GT, - ACTIONS(61), 1, - anon_sym_PIPE, - ACTIONS(75), 1, - sym_identifier, - ACTIONS(641), 1, - anon_sym_table, - STATE(120), 1, - sym_expression, - ACTIONS(53), 2, - sym_float, - sym_string, - ACTIONS(55), 2, - anon_sym_true, - anon_sym_false, - STATE(136), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(141), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [15449] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - sym_integer, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_EQ_GT, - ACTIONS(61), 1, - anon_sym_PIPE, - ACTIONS(63), 1, - anon_sym_table, - ACTIONS(75), 1, - sym_identifier, - STATE(92), 1, - sym_expression, - ACTIONS(53), 2, - sym_float, - sym_string, - ACTIONS(55), 2, - anon_sym_true, - anon_sym_false, - STATE(136), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(141), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [15501] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(617), 1, - sym_identifier, - ACTIONS(619), 1, - anon_sym_LPAREN, - ACTIONS(621), 1, - sym_integer, - ACTIONS(627), 1, - anon_sym_LBRACK, - ACTIONS(629), 1, - anon_sym_EQ_GT, - ACTIONS(631), 1, - anon_sym_PIPE, - ACTIONS(637), 1, - anon_sym_table, - STATE(187), 1, - sym_expression, - ACTIONS(623), 2, - sym_float, - sym_string, - ACTIONS(625), 2, - anon_sym_true, - anon_sym_false, - STATE(281), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(277), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [15553] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(617), 1, - sym_identifier, - ACTIONS(619), 1, - anon_sym_LPAREN, - ACTIONS(621), 1, - sym_integer, - ACTIONS(627), 1, - anon_sym_LBRACK, - ACTIONS(629), 1, - anon_sym_EQ_GT, - ACTIONS(631), 1, - anon_sym_PIPE, - ACTIONS(637), 1, - anon_sym_table, - STATE(186), 1, - sym_expression, - ACTIONS(623), 2, - sym_float, - sym_string, - ACTIONS(625), 2, - anon_sym_true, - anon_sym_false, - STATE(281), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(277), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [15605] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(617), 1, - sym_identifier, - ACTIONS(619), 1, - anon_sym_LPAREN, - ACTIONS(621), 1, - sym_integer, - ACTIONS(627), 1, - anon_sym_LBRACK, - ACTIONS(629), 1, - anon_sym_EQ_GT, - ACTIONS(631), 1, - anon_sym_PIPE, - ACTIONS(637), 1, - anon_sym_table, - STATE(184), 1, - sym_expression, - ACTIONS(623), 2, - sym_float, - sym_string, - ACTIONS(625), 2, - anon_sym_true, - anon_sym_false, - STATE(281), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(277), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [15657] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(617), 1, - sym_identifier, - ACTIONS(619), 1, - anon_sym_LPAREN, - ACTIONS(621), 1, - sym_integer, - ACTIONS(627), 1, - anon_sym_LBRACK, - ACTIONS(629), 1, - anon_sym_EQ_GT, - ACTIONS(631), 1, - anon_sym_PIPE, - ACTIONS(633), 1, - anon_sym_table, - STATE(266), 1, - sym_expression, - ACTIONS(623), 2, - sym_float, - sym_string, - ACTIONS(625), 2, - anon_sym_true, - anon_sym_false, - STATE(281), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(277), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [15709] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(183), 1, - anon_sym_LPAREN, - ACTIONS(185), 1, - sym_integer, - ACTIONS(191), 1, - anon_sym_LBRACK, - ACTIONS(197), 1, - anon_sym_EQ_GT, - ACTIONS(209), 1, - anon_sym_PIPE, - ACTIONS(343), 1, - sym_identifier, - ACTIONS(639), 1, - anon_sym_table, - STATE(203), 1, - sym_expression, - ACTIONS(187), 2, - sym_float, - sym_string, - ACTIONS(189), 2, - anon_sym_true, - anon_sym_false, - STATE(300), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(305), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [15761] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(597), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_LPAREN, - ACTIONS(601), 1, - sym_integer, - ACTIONS(607), 1, - anon_sym_LBRACK, - ACTIONS(609), 1, - anon_sym_EQ_GT, - ACTIONS(611), 1, - anon_sym_PIPE, - ACTIONS(635), 1, - anon_sym_table, - STATE(58), 1, - sym_expression, - ACTIONS(603), 2, - sym_float, - sym_string, - ACTIONS(605), 2, - anon_sym_true, - anon_sym_false, - STATE(76), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(69), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [15813] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(183), 1, - anon_sym_LPAREN, - ACTIONS(185), 1, - sym_integer, - ACTIONS(191), 1, - anon_sym_LBRACK, - ACTIONS(197), 1, - anon_sym_EQ_GT, - ACTIONS(209), 1, - anon_sym_PIPE, - ACTIONS(343), 1, - sym_identifier, - ACTIONS(639), 1, - anon_sym_table, - STATE(199), 1, - sym_expression, - ACTIONS(187), 2, - sym_float, - sym_string, - ACTIONS(189), 2, - anon_sym_true, - anon_sym_false, - STATE(300), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(305), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [15865] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(183), 1, - anon_sym_LPAREN, - ACTIONS(185), 1, - sym_integer, - ACTIONS(191), 1, - anon_sym_LBRACK, - ACTIONS(197), 1, - anon_sym_EQ_GT, - ACTIONS(209), 1, - anon_sym_PIPE, - ACTIONS(211), 1, - anon_sym_table, - ACTIONS(343), 1, - sym_identifier, - STATE(314), 1, - sym_expression, - ACTIONS(187), 2, - sym_float, - sym_string, - ACTIONS(189), 2, - anon_sym_true, - anon_sym_false, - STATE(300), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(305), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [15917] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(183), 1, - anon_sym_LPAREN, - ACTIONS(185), 1, - sym_integer, - ACTIONS(191), 1, - anon_sym_LBRACK, - ACTIONS(197), 1, - anon_sym_EQ_GT, - ACTIONS(209), 1, - anon_sym_PIPE, - ACTIONS(343), 1, - sym_identifier, - ACTIONS(639), 1, - anon_sym_table, - STATE(202), 1, - sym_expression, - ACTIONS(187), 2, - sym_float, - sym_string, - ACTIONS(189), 2, - anon_sym_true, - anon_sym_false, - STATE(300), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(305), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [15969] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(183), 1, - anon_sym_LPAREN, - ACTIONS(185), 1, - sym_integer, - ACTIONS(191), 1, - anon_sym_LBRACK, - ACTIONS(197), 1, - anon_sym_EQ_GT, - ACTIONS(209), 1, - anon_sym_PIPE, - ACTIONS(211), 1, - anon_sym_table, - ACTIONS(343), 1, - sym_identifier, - STATE(218), 1, - sym_expression, - ACTIONS(187), 2, - sym_float, - sym_string, - ACTIONS(189), 2, - anon_sym_true, - anon_sym_false, - STATE(300), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(305), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [16021] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(25), 1, - anon_sym_EQ_GT, - ACTIONS(37), 1, - anon_sym_PIPE, - ACTIONS(39), 1, - anon_sym_table, - ACTIONS(593), 1, - sym_identifier, - STATE(95), 1, - sym_expression, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(103), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(102), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [16073] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(183), 1, - anon_sym_LPAREN, - ACTIONS(185), 1, - sym_integer, - ACTIONS(191), 1, - anon_sym_LBRACK, - ACTIONS(197), 1, - anon_sym_EQ_GT, - ACTIONS(209), 1, - anon_sym_PIPE, - ACTIONS(211), 1, - anon_sym_table, - ACTIONS(343), 1, - sym_identifier, - STATE(268), 1, - sym_expression, - ACTIONS(187), 2, - sym_float, - sym_string, - ACTIONS(189), 2, - anon_sym_true, - anon_sym_false, - STATE(300), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(305), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [16125] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(183), 1, - anon_sym_LPAREN, - ACTIONS(185), 1, - sym_integer, - ACTIONS(191), 1, - anon_sym_LBRACK, - ACTIONS(197), 1, - anon_sym_EQ_GT, - ACTIONS(209), 1, - anon_sym_PIPE, - ACTIONS(343), 1, - sym_identifier, - ACTIONS(639), 1, - anon_sym_table, - STATE(177), 1, - sym_expression, - ACTIONS(187), 2, - sym_float, - sym_string, - ACTIONS(189), 2, - anon_sym_true, - anon_sym_false, - STATE(300), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(305), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [16177] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(25), 1, - anon_sym_EQ_GT, - ACTIONS(37), 1, - anon_sym_PIPE, - ACTIONS(39), 1, - anon_sym_table, - ACTIONS(593), 1, - sym_identifier, - STATE(88), 1, - sym_expression, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(103), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(102), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [16229] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(25), 1, - anon_sym_EQ_GT, - ACTIONS(37), 1, - anon_sym_PIPE, - ACTIONS(39), 1, - anon_sym_table, - ACTIONS(593), 1, - sym_identifier, - STATE(96), 1, - sym_expression, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(103), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(102), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [16281] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(227), 1, - sym_logic_operator, - STATE(274), 1, - sym_math_operator, - ACTIONS(239), 5, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(237), 17, - anon_sym_SEMI, - anon_sym_RPAREN, - 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, - anon_sym_DASH_GT, - [16317] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(11), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(25), 1, - anon_sym_EQ_GT, - ACTIONS(37), 1, - anon_sym_PIPE, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(595), 1, - anon_sym_table, - STATE(90), 1, - sym_expression, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(103), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(102), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [16369] = 14, - ACTIONS(3), 1, - sym__comment, - ACTIONS(179), 1, - anon_sym_async, - ACTIONS(181), 1, - anon_sym_LBRACE, - ACTIONS(223), 1, - anon_sym_DASH, - ACTIONS(337), 1, - sym_identifier, - ACTIONS(589), 1, - anon_sym_DASH_GT, - ACTIONS(615), 1, - anon_sym_COLON, - STATE(208), 1, - sym_math_operator, - STATE(209), 1, - sym_logic_operator, - STATE(346), 1, - sym_block, - ACTIONS(229), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(335), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(225), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(227), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [16423] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(183), 1, - anon_sym_LPAREN, - ACTIONS(185), 1, - sym_integer, - ACTIONS(191), 1, - anon_sym_LBRACK, - ACTIONS(197), 1, - anon_sym_EQ_GT, - ACTIONS(209), 1, - anon_sym_PIPE, - ACTIONS(211), 1, - anon_sym_table, - ACTIONS(343), 1, - sym_identifier, - STATE(309), 1, - sym_expression, - ACTIONS(187), 2, - sym_float, - sym_string, - ACTIONS(189), 2, - anon_sym_true, - anon_sym_false, - STATE(300), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(305), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [16475] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - sym_integer, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_EQ_GT, - ACTIONS(61), 1, - anon_sym_PIPE, - ACTIONS(75), 1, - sym_identifier, - ACTIONS(641), 1, - anon_sym_table, - STATE(121), 1, - sym_expression, - ACTIONS(53), 2, - sym_float, - sym_string, - ACTIONS(55), 2, - anon_sym_true, - anon_sym_false, - STATE(136), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(141), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [16527] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(183), 1, - anon_sym_LPAREN, - ACTIONS(185), 1, - sym_integer, - ACTIONS(191), 1, - anon_sym_LBRACK, - ACTIONS(197), 1, - anon_sym_EQ_GT, - ACTIONS(209), 1, - anon_sym_PIPE, - ACTIONS(211), 1, - anon_sym_table, - ACTIONS(343), 1, - sym_identifier, - STATE(317), 1, - sym_expression, - ACTIONS(187), 2, - sym_float, - sym_string, - ACTIONS(189), 2, - anon_sym_true, - anon_sym_false, - STATE(300), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(305), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [16579] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(47), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - sym_integer, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_EQ_GT, - ACTIONS(61), 1, - anon_sym_PIPE, - ACTIONS(63), 1, - anon_sym_table, - ACTIONS(75), 1, - sym_identifier, - STATE(127), 1, - sym_expression, - ACTIONS(53), 2, - sym_float, - sym_string, - ACTIONS(55), 2, - anon_sym_true, - anon_sym_false, - STATE(136), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(141), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [16631] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(617), 1, - sym_identifier, - ACTIONS(619), 1, - anon_sym_LPAREN, - ACTIONS(621), 1, - sym_integer, - ACTIONS(627), 1, - anon_sym_LBRACK, - ACTIONS(629), 1, - anon_sym_EQ_GT, - ACTIONS(631), 1, - anon_sym_PIPE, - ACTIONS(633), 1, - anon_sym_table, - STATE(210), 1, - sym_expression, - ACTIONS(623), 2, - sym_float, - sym_string, - ACTIONS(625), 2, - anon_sym_true, - anon_sym_false, - STATE(281), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(277), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [16683] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(617), 1, - sym_identifier, - ACTIONS(619), 1, - anon_sym_LPAREN, - ACTIONS(621), 1, - sym_integer, - ACTIONS(627), 1, - anon_sym_LBRACK, - ACTIONS(629), 1, - anon_sym_EQ_GT, - ACTIONS(631), 1, - anon_sym_PIPE, - ACTIONS(633), 1, - anon_sym_table, - STATE(206), 1, - sym_expression, - ACTIONS(623), 2, - sym_float, - sym_string, - ACTIONS(625), 2, - anon_sym_true, - anon_sym_false, - STATE(281), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(277), 7, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [16735] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(321), 5, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(319), 18, - anon_sym_SEMI, - anon_sym_RPAREN, - 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, - anon_sym_DASH_GT, - [16766] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(301), 5, - anon_sym_async, - sym_identifier, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(299), 18, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - 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, - anon_sym_DASH_GT, - [16797] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(269), 5, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(267), 18, - anon_sym_SEMI, - anon_sym_RPAREN, - 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, - anon_sym_DASH_GT, - [16828] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(289), 5, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(287), 18, - anon_sym_SEMI, - anon_sym_RPAREN, - 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, - anon_sym_DASH_GT, - [16859] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(277), 5, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(275), 18, - anon_sym_SEMI, - anon_sym_RPAREN, - 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, - anon_sym_DASH_GT, - [16890] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(265), 5, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(263), 18, - anon_sym_SEMI, - anon_sym_RPAREN, - 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, - anon_sym_DASH_GT, - [16921] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(297), 5, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(295), 18, - anon_sym_SEMI, - anon_sym_RPAREN, - 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, - anon_sym_DASH_GT, - [16952] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(317), 5, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(315), 18, - anon_sym_SEMI, - anon_sym_RPAREN, - 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, - anon_sym_DASH_GT, - [16983] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(313), 5, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(311), 18, - anon_sym_SEMI, - anon_sym_RPAREN, - 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, - anon_sym_DASH_GT, - [17014] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(265), 5, - anon_sym_async, - sym_identifier, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(263), 18, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - 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, - anon_sym_DASH_GT, - [17045] = 6, - ACTIONS(3), 1, - sym__comment, - ACTIONS(257), 1, - anon_sym_EQ, - STATE(56), 1, - sym_assignment_operator, - ACTIONS(261), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(255), 4, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(253), 15, - anon_sym_SEMI, - anon_sym_RPAREN, - 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_DASH_GT, - [17082] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(289), 5, - anon_sym_async, - sym_identifier, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(287), 18, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - 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, - anon_sym_DASH_GT, - [17113] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(313), 5, - anon_sym_async, - sym_identifier, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(311), 18, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - 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, - anon_sym_DASH_GT, - [17144] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(305), 5, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(303), 18, - anon_sym_SEMI, - anon_sym_RPAREN, - 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, - anon_sym_DASH_GT, - [17175] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(281), 5, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(279), 18, - anon_sym_SEMI, - anon_sym_RPAREN, - 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, - anon_sym_DASH_GT, - [17206] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(317), 5, - anon_sym_async, - sym_identifier, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(315), 18, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - 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, - anon_sym_DASH_GT, - [17237] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(301), 5, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(299), 18, - anon_sym_SEMI, - anon_sym_RPAREN, - 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, - anon_sym_DASH_GT, - [17268] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(293), 5, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(291), 18, - anon_sym_SEMI, - anon_sym_RPAREN, - 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, - anon_sym_DASH_GT, - [17299] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(309), 5, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(307), 18, - anon_sym_SEMI, - anon_sym_RPAREN, - 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, - anon_sym_DASH_GT, - [17330] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(273), 5, - anon_sym_async, - sym_identifier, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(271), 18, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - 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, - anon_sym_DASH_GT, - [17361] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(293), 5, - anon_sym_async, - sym_identifier, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(291), 18, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - 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, - anon_sym_DASH_GT, - [17392] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(321), 5, - anon_sym_async, - sym_identifier, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(319), 18, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - 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, - anon_sym_DASH_GT, - [17423] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(285), 5, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(283), 18, - anon_sym_SEMI, - anon_sym_RPAREN, - 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, - anon_sym_DASH_GT, - [17454] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(281), 5, - anon_sym_async, - sym_identifier, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(279), 18, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - 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, - anon_sym_DASH_GT, - [17485] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(277), 5, - anon_sym_async, - sym_identifier, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(275), 18, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - 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, - anon_sym_DASH_GT, - [17516] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(297), 5, - anon_sym_async, - sym_identifier, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(295), 18, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - 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, - anon_sym_DASH_GT, - [17547] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(309), 5, - anon_sym_async, - sym_identifier, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(307), 18, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - 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, - anon_sym_DASH_GT, - [17578] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(285), 5, - anon_sym_async, - sym_identifier, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(283), 18, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - 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, - anon_sym_DASH_GT, - [17609] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(305), 5, - anon_sym_async, - sym_identifier, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(303), 18, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - 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, - anon_sym_DASH_GT, - [17640] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(273), 5, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(271), 18, - anon_sym_SEMI, - anon_sym_RPAREN, - 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, - anon_sym_DASH_GT, - [17671] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(269), 5, - anon_sym_async, - sym_identifier, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(267), 18, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - 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, - anon_sym_DASH_GT, - [17702] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(645), 8, - anon_sym_LBRACE, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_asyncfor, - anon_sym_PIPE, - ACTIONS(643), 14, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_select, - anon_sym_insert, - anon_sym_table, - anon_sym_return, - anon_sym_use, - [17732] = 11, - ACTIONS(3), 1, - sym__comment, - ACTIONS(223), 1, - anon_sym_DASH, - ACTIONS(589), 1, - anon_sym_DASH_GT, - ACTIONS(591), 1, - anon_sym_COLON, - ACTIONS(647), 1, - anon_sym_SEMI, - STATE(208), 1, - sym_math_operator, - STATE(209), 1, - sym_logic_operator, - ACTIONS(229), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(355), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_identifier, - ACTIONS(225), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(227), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [17777] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(223), 1, - anon_sym_DASH, - ACTIONS(589), 1, - anon_sym_DASH_GT, - ACTIONS(591), 1, - anon_sym_COLON, - STATE(208), 1, - sym_math_operator, - STATE(209), 1, - sym_logic_operator, - ACTIONS(229), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(225), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(355), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_identifier, - ACTIONS(227), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [17820] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(223), 1, - anon_sym_DASH, - ACTIONS(589), 1, - anon_sym_DASH_GT, - ACTIONS(615), 1, - anon_sym_COLON, - STATE(208), 1, - sym_math_operator, - STATE(209), 1, - sym_logic_operator, - ACTIONS(229), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(225), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(351), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_identifier, - ACTIONS(227), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [17863] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(223), 1, - anon_sym_DASH, - ACTIONS(589), 1, - anon_sym_DASH_GT, - ACTIONS(615), 1, - anon_sym_COLON, - STATE(208), 1, - sym_math_operator, - STATE(209), 1, - sym_logic_operator, - ACTIONS(229), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(225), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(347), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_identifier, - ACTIONS(227), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [17906] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(223), 1, - anon_sym_DASH, - ACTIONS(589), 1, - anon_sym_DASH_GT, - ACTIONS(615), 1, - anon_sym_COLON, - ACTIONS(649), 1, - anon_sym_async, - ACTIONS(651), 1, - anon_sym_LBRACE, - STATE(208), 1, - sym_math_operator, - STATE(209), 1, - sym_logic_operator, - STATE(334), 1, - sym_block, - ACTIONS(229), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(225), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(227), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [17952] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(223), 1, - anon_sym_DASH, - ACTIONS(589), 1, - anon_sym_DASH_GT, - ACTIONS(615), 1, - anon_sym_COLON, - ACTIONS(653), 1, - anon_sym_async, - ACTIONS(655), 1, - anon_sym_LBRACE, - STATE(156), 1, - sym_block, - STATE(208), 1, - sym_math_operator, - STATE(209), 1, - sym_logic_operator, - ACTIONS(229), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(225), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(227), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [17998] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(181), 1, - anon_sym_LBRACE, - ACTIONS(223), 1, - anon_sym_DASH, - ACTIONS(589), 1, - anon_sym_DASH_GT, - ACTIONS(615), 1, - anon_sym_COLON, - ACTIONS(657), 1, - anon_sym_async, - STATE(208), 1, - sym_math_operator, - STATE(209), 1, - sym_logic_operator, - STATE(345), 1, - sym_block, - ACTIONS(229), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(225), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(227), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [18044] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(9), 1, - anon_sym_LBRACE, - ACTIONS(223), 1, - anon_sym_DASH, - ACTIONS(589), 1, - anon_sym_DASH_GT, - ACTIONS(615), 1, - anon_sym_COLON, - ACTIONS(659), 1, - anon_sym_async, STATE(194), 1, - sym_block, - STATE(208), 1, - sym_math_operator, - STATE(209), 1, sym_logic_operator, - ACTIONS(229), 2, + ACTIONS(214), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(225), 4, + ACTIONS(318), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_identifier, + ACTIONS(210), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(227), 6, + ACTIONS(212), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [18090] = 12, + [13625] = 10, ACTIONS(3), 1, sym__comment, - ACTIONS(181), 1, - anon_sym_LBRACE, - ACTIONS(223), 1, + ACTIONS(208), 1, anon_sym_DASH, - ACTIONS(589), 1, + ACTIONS(409), 1, anon_sym_DASH_GT, - ACTIONS(615), 1, + ACTIONS(425), 1, anon_sym_COLON, - ACTIONS(657), 1, - anon_sym_async, - STATE(208), 1, + STATE(185), 1, sym_math_operator, - STATE(209), 1, + STATE(194), 1, sym_logic_operator, - STATE(348), 1, - sym_block, - ACTIONS(229), 2, + ACTIONS(214), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(225), 4, + ACTIONS(210), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(227), 6, + ACTIONS(324), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_identifier, + ACTIONS(212), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [18136] = 12, + [13668] = 10, ACTIONS(3), 1, sym__comment, - ACTIONS(223), 1, + ACTIONS(208), 1, anon_sym_DASH, - ACTIONS(589), 1, + ACTIONS(409), 1, anon_sym_DASH_GT, - ACTIONS(615), 1, + ACTIONS(425), 1, anon_sym_COLON, - ACTIONS(649), 1, - anon_sym_async, - ACTIONS(651), 1, - anon_sym_LBRACE, - STATE(208), 1, + STATE(185), 1, sym_math_operator, - STATE(209), 1, + STATE(194), 1, sym_logic_operator, - STATE(336), 1, - sym_block, - ACTIONS(229), 2, + ACTIONS(214), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(225), 4, + ACTIONS(210), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(227), 6, + ACTIONS(334), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_identifier, + ACTIONS(212), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [18182] = 12, + [13711] = 10, ACTIONS(3), 1, sym__comment, - ACTIONS(223), 1, + ACTIONS(208), 1, anon_sym_DASH, - ACTIONS(589), 1, + ACTIONS(409), 1, anon_sym_DASH_GT, - ACTIONS(615), 1, + ACTIONS(565), 1, anon_sym_COLON, - ACTIONS(653), 1, - anon_sym_async, - ACTIONS(655), 1, - anon_sym_LBRACE, - STATE(153), 1, - sym_block, - STATE(208), 1, + STATE(205), 1, sym_math_operator, - STATE(209), 1, + STATE(206), 1, sym_logic_operator, - ACTIONS(229), 2, + ACTIONS(214), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(225), 4, + ACTIONS(202), 3, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_EQ_GT, + ACTIONS(210), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(227), 6, + ACTIONS(212), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [18228] = 12, + [13753] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(205), 1, + sym_math_operator, + STATE(206), 1, + sym_logic_operator, + ACTIONS(224), 3, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(222), 15, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [13785] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(208), 1, + anon_sym_DASH, + ACTIONS(409), 1, + anon_sym_DASH_GT, + ACTIONS(565), 1, + anon_sym_COLON, + ACTIONS(567), 1, + anon_sym_async, + ACTIONS(569), 1, + anon_sym_LBRACE, + STATE(205), 1, + sym_math_operator, + STATE(206), 1, + sym_logic_operator, + STATE(274), 1, + sym_block, + ACTIONS(214), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(210), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(212), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [13831] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(208), 1, + anon_sym_DASH, + ACTIONS(409), 1, + anon_sym_DASH_GT, + ACTIONS(565), 1, + anon_sym_COLON, + ACTIONS(571), 1, + anon_sym_async, + ACTIONS(573), 1, + anon_sym_LBRACE, + STATE(130), 1, + sym_block, + STATE(205), 1, + sym_math_operator, + STATE(206), 1, + sym_logic_operator, + ACTIONS(214), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(210), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(212), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [13877] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(162), 1, + anon_sym_LBRACE, + ACTIONS(208), 1, + anon_sym_DASH, + ACTIONS(409), 1, + anon_sym_DASH_GT, + ACTIONS(565), 1, + anon_sym_COLON, + ACTIONS(575), 1, + anon_sym_async, + STATE(205), 1, + sym_math_operator, + STATE(206), 1, + sym_logic_operator, + STATE(296), 1, + sym_block, + ACTIONS(214), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(210), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(212), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [13923] = 12, ACTIONS(3), 1, sym__comment, ACTIONS(9), 1, anon_sym_LBRACE, - ACTIONS(223), 1, + ACTIONS(208), 1, anon_sym_DASH, - ACTIONS(589), 1, + ACTIONS(409), 1, anon_sym_DASH_GT, - ACTIONS(615), 1, + ACTIONS(565), 1, anon_sym_COLON, - ACTIONS(659), 1, + ACTIONS(577), 1, anon_sym_async, - STATE(188), 1, + STATE(174), 1, sym_block, - STATE(208), 1, + STATE(205), 1, sym_math_operator, - STATE(209), 1, + STATE(206), 1, sym_logic_operator, - ACTIONS(229), 2, + ACTIONS(214), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(225), 4, + ACTIONS(210), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(227), 6, + ACTIONS(212), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [18274] = 10, + [13969] = 12, ACTIONS(3), 1, sym__comment, - ACTIONS(223), 1, + ACTIONS(208), 1, anon_sym_DASH, - ACTIONS(589), 1, + ACTIONS(409), 1, anon_sym_DASH_GT, - ACTIONS(615), 1, + ACTIONS(565), 1, anon_sym_COLON, - ACTIONS(661), 1, - anon_sym_EQ_GT, - STATE(208), 1, + ACTIONS(571), 1, + anon_sym_async, + ACTIONS(573), 1, + anon_sym_LBRACE, + STATE(146), 1, + sym_block, + STATE(205), 1, sym_math_operator, - STATE(209), 1, + STATE(206), 1, sym_logic_operator, - ACTIONS(229), 2, + ACTIONS(214), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(225), 4, + ACTIONS(210), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(227), 6, + ACTIONS(212), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [18314] = 10, + [14015] = 6, ACTIONS(3), 1, sym__comment, - ACTIONS(223), 1, + ACTIONS(565), 1, + anon_sym_COLON, + STATE(205), 1, + sym_math_operator, + STATE(206), 1, + sym_logic_operator, + ACTIONS(220), 3, anon_sym_DASH, - ACTIONS(589), 1, - anon_sym_DASH_GT, - ACTIONS(615), 1, - anon_sym_COLON, - ACTIONS(663), 1, - anon_sym_EQ_GT, - STATE(208), 1, - sym_math_operator, - STATE(209), 1, - sym_logic_operator, - ACTIONS(229), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(225), 4, + ACTIONS(218), 14, + anon_sym_async, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(227), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [18354] = 3, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [14049] = 12, ACTIONS(3), 1, sym__comment, - ACTIONS(289), 5, + ACTIONS(162), 1, + anon_sym_LBRACE, + ACTIONS(208), 1, + anon_sym_DASH, + ACTIONS(409), 1, + anon_sym_DASH_GT, + ACTIONS(565), 1, + anon_sym_COLON, + ACTIONS(575), 1, + anon_sym_async, + STATE(205), 1, + sym_math_operator, + STATE(206), 1, + sym_logic_operator, + STATE(305), 1, + sym_block, + ACTIONS(214), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(210), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(212), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [14095] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(208), 1, + anon_sym_DASH, + ACTIONS(409), 1, + anon_sym_DASH_GT, + ACTIONS(565), 1, + anon_sym_COLON, + STATE(205), 1, + sym_math_operator, + STATE(206), 1, + sym_logic_operator, + ACTIONS(214), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(226), 3, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_EQ_GT, + ACTIONS(210), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(212), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [14137] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(208), 1, + anon_sym_DASH, + ACTIONS(409), 1, + anon_sym_DASH_GT, + ACTIONS(565), 1, + anon_sym_COLON, + ACTIONS(567), 1, + anon_sym_async, + ACTIONS(569), 1, + anon_sym_LBRACE, + STATE(205), 1, + sym_math_operator, + STATE(206), 1, + sym_logic_operator, + STATE(273), 1, + sym_block, + ACTIONS(214), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(210), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(212), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [14183] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(208), 1, + anon_sym_DASH, + ACTIONS(409), 1, + anon_sym_DASH_GT, + ACTIONS(565), 1, + anon_sym_COLON, + ACTIONS(577), 1, + anon_sym_async, + STATE(176), 1, + sym_block, + STATE(205), 1, + sym_math_operator, + STATE(206), 1, + sym_logic_operator, + ACTIONS(214), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(210), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(212), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [14229] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(208), 1, + anon_sym_DASH, + ACTIONS(409), 1, + anon_sym_DASH_GT, + ACTIONS(565), 1, + anon_sym_COLON, + ACTIONS(579), 1, + anon_sym_EQ_GT, + STATE(205), 1, + sym_math_operator, + STATE(206), 1, + sym_logic_operator, + ACTIONS(214), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(210), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(212), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [14269] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(208), 1, + anon_sym_DASH, + ACTIONS(409), 1, + anon_sym_DASH_GT, + ACTIONS(565), 1, + anon_sym_COLON, + ACTIONS(581), 1, + anon_sym_EQ_GT, + STATE(205), 1, + sym_math_operator, + STATE(206), 1, + sym_logic_operator, + ACTIONS(214), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(210), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(212), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [14309] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(256), 5, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_table, - ACTIONS(287), 9, + ACTIONS(254), 8, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -18214,18 +14756,17 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_string, anon_sym_LBRACK, - anon_sym_EQ_GT, anon_sym_PIPE, - [18376] = 3, + [14330] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(265), 5, + ACTIONS(252), 5, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_table, - ACTIONS(263), 9, + ACTIONS(250), 8, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -18233,18 +14774,17 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_string, anon_sym_LBRACK, - anon_sym_EQ_GT, anon_sym_PIPE, - [18398] = 3, + [14351] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(569), 5, + ACTIONS(539), 5, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_table, - ACTIONS(567), 9, + ACTIONS(537), 8, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -18252,148 +14792,169 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_string, anon_sym_LBRACK, - anon_sym_EQ_GT, anon_sym_PIPE, - [18420] = 3, + [14372] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(665), 6, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_from, - anon_sym_table, - ACTIONS(667), 6, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - [18440] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(669), 6, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_from, - anon_sym_table, - ACTIONS(671), 6, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - [18460] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(673), 5, + ACTIONS(583), 5, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_table, - ACTIONS(477), 7, + ACTIONS(459), 6, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_PIPE, - [18480] = 3, + [14391] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(675), 5, + ACTIONS(587), 5, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_PIPE, + ACTIONS(585), 6, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_from, + anon_sym_table, + [14410] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(589), 5, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_table, - ACTIONS(508), 7, + ACTIONS(477), 6, anon_sym_LPAREN, anon_sym_RPAREN, sym_float, sym_string, anon_sym_LBRACK, - anon_sym_EQ_GT, anon_sym_PIPE, - [18500] = 3, + [14429] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(677), 5, + ACTIONS(593), 5, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_PIPE, + ACTIONS(591), 6, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_from, + anon_sym_table, + [14448] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(595), 5, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_table, - ACTIONS(679), 6, + ACTIONS(597), 5, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, - anon_sym_EQ_GT, anon_sym_PIPE, - [18519] = 3, + [14466] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(681), 5, + ACTIONS(599), 5, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_table, - ACTIONS(683), 6, + ACTIONS(601), 5, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, - anon_sym_EQ_GT, anon_sym_PIPE, - [18538] = 7, + [14484] = 7, ACTIONS(3), 1, sym__comment, - ACTIONS(422), 1, + ACTIONS(392), 1, sym_identifier, - ACTIONS(685), 1, + ACTIONS(603), 1, anon_sym_elseif, - ACTIONS(687), 1, + ACTIONS(605), 1, anon_sym_else, - STATE(343), 1, + STATE(287), 1, sym_else, - STATE(333), 2, + STATE(271), 2, sym_else_if, aux_sym_if_else_repeat1, - ACTIONS(420), 3, + ACTIONS(390), 3, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, - [18563] = 7, + [14509] = 7, ACTIONS(3), 1, sym__comment, - ACTIONS(402), 1, + ACTIONS(384), 1, sym_identifier, - ACTIONS(685), 1, + ACTIONS(603), 1, anon_sym_elseif, - ACTIONS(687), 1, + ACTIONS(605), 1, anon_sym_else, - STATE(351), 1, + STATE(284), 1, sym_else, - STATE(330), 2, + STATE(268), 2, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(382), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + [14534] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(607), 2, + anon_sym_async, + sym_identifier, + ACTIONS(609), 6, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE, + [14550] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(611), 1, + anon_sym_elseif, + ACTIONS(402), 2, + sym_identifier, + anon_sym_else, + STATE(271), 2, sym_else_if, aux_sym_if_else_repeat1, ACTIONS(400), 3, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, - [18588] = 2, + [14570] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(689), 8, + ACTIONS(614), 8, anon_sym_table, anon_sym_any, anon_sym_bool, @@ -18402,109 +14963,312 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_list, anon_sym_map, anon_sym_str, - [18602] = 5, + [14584] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(691), 1, - anon_sym_elseif, - ACTIONS(426), 2, + ACTIONS(421), 2, sym_identifier, anon_sym_else, - STATE(333), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(424), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - [18622] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(443), 2, - sym_identifier, - anon_sym_else, - ACTIONS(441), 4, + ACTIONS(419), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_elseif, - [18636] = 3, + [14598] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(289), 2, + ACTIONS(429), 2, sym_identifier, anon_sym_else, - ACTIONS(287), 4, + ACTIONS(427), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_elseif, - [18650] = 3, + [14612] = 6, ACTIONS(3), 1, sym__comment, - ACTIONS(437), 2, + ACTIONS(616), 1, + anon_sym_async, + ACTIONS(618), 1, + anon_sym_LBRACE, + ACTIONS(620), 1, + anon_sym_LT, + STATE(66), 1, + sym_block, + STATE(311), 1, + sym_type, + [14631] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(162), 1, + anon_sym_LBRACE, + ACTIONS(575), 1, + anon_sym_async, + ACTIONS(620), 1, + anon_sym_LT, + STATE(106), 1, + sym_block, + STATE(314), 1, + sym_type, + [14650] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(162), 1, + anon_sym_LBRACE, + ACTIONS(575), 1, + anon_sym_async, + ACTIONS(620), 1, + anon_sym_LT, + STATE(101), 1, + sym_block, + STATE(318), 1, + sym_type, + [14669] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(620), 1, + anon_sym_LT, + ACTIONS(622), 1, + anon_sym_async, + ACTIONS(624), 1, + anon_sym_LBRACE, + STATE(125), 1, + sym_block, + STATE(316), 1, + sym_type, + [14688] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(567), 1, + anon_sym_async, + ACTIONS(569), 1, + anon_sym_LBRACE, + ACTIONS(620), 1, + anon_sym_LT, + STATE(127), 1, + sym_block, + STATE(317), 1, + sym_type, + [14707] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(567), 1, + anon_sym_async, + ACTIONS(569), 1, + anon_sym_LBRACE, + ACTIONS(620), 1, + anon_sym_LT, + STATE(125), 1, + sym_block, + STATE(319), 1, + sym_type, + [14726] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(616), 1, + anon_sym_async, + ACTIONS(618), 1, + anon_sym_LBRACE, + ACTIONS(620), 1, + anon_sym_LT, + STATE(65), 1, + sym_block, + STATE(310), 1, + sym_type, + [14745] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(620), 1, + anon_sym_LT, + ACTIONS(622), 1, + anon_sym_async, + ACTIONS(624), 1, + anon_sym_LBRACE, + STATE(127), 1, + sym_block, + STATE(312), 1, + sym_type, + [14764] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(626), 1, sym_identifier, - anon_sym_else, - ACTIONS(435), 4, + ACTIONS(628), 1, + anon_sym_PIPE, + STATE(298), 2, + sym__function_parameters, + aux_sym_function_repeat1, + [14778] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(390), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_elseif, - [18664] = 3, + sym_identifier, + [14788] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(265), 2, + ACTIONS(626), 1, sym_identifier, - anon_sym_else, - ACTIONS(263), 4, + ACTIONS(630), 1, + anon_sym_PIPE, + STATE(306), 2, + sym__function_parameters, + aux_sym_function_repeat1, + [14802] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(626), 1, + sym_identifier, + ACTIONS(632), 1, + anon_sym_PIPE, + STATE(292), 2, + sym__function_parameters, + aux_sym_function_repeat1, + [14816] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(521), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_elseif, - [18678] = 2, + sym_identifier, + [14826] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(694), 6, + ACTIONS(517), 4, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COMMA, sym_identifier, + [14836] = 3, + ACTIONS(3), 1, + sym__comment, + STATE(41), 1, + sym_assignment_operator, + ACTIONS(240), 3, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, + [14848] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(513), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_identifier, + [14858] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(626), 1, + sym_identifier, + ACTIONS(634), 1, anon_sym_PIPE, - [18690] = 3, + STATE(293), 2, + sym__function_parameters, + aux_sym_function_repeat1, + [14872] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(647), 1, - anon_sym_SEMI, - ACTIONS(355), 3, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(626), 1, sym_identifier, - [18702] = 2, + ACTIONS(636), 1, + anon_sym_PIPE, + STATE(294), 2, + sym__function_parameters, + aux_sym_function_repeat1, + [14886] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(579), 4, + ACTIONS(626), 1, + sym_identifier, + ACTIONS(638), 1, + anon_sym_PIPE, + STATE(294), 2, + sym__function_parameters, + aux_sym_function_repeat1, + [14900] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(640), 1, + sym_identifier, + ACTIONS(643), 1, + anon_sym_PIPE, + STATE(294), 2, + sym__function_parameters, + aux_sym_function_repeat1, + [14914] = 3, + ACTIONS(3), 1, + sym__comment, + STATE(42), 1, + sym_assignment_operator, + ACTIONS(240), 3, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [14926] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(525), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, sym_identifier, - [18712] = 2, + [14936] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(583), 4, + ACTIONS(563), 1, + anon_sym_SEMI, + ACTIONS(318), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_identifier, + [14948] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(626), 1, + sym_identifier, + ACTIONS(645), 1, + anon_sym_PIPE, + STATE(294), 2, + sym__function_parameters, + aux_sym_function_repeat1, + [14962] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(509), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, sym_identifier, - [18722] = 2, + [14972] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(535), 4, + ACTIONS(501), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, sym_identifier, - [18732] = 2, + [14982] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(318), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_identifier, + [14992] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(505), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_identifier, + [15002] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(541), 4, @@ -18512,1700 +15276,1210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, sym_identifier, - [18742] = 2, + [15012] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(355), 4, + ACTIONS(529), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, sym_identifier, - [18752] = 2, + [15022] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(571), 4, + ACTIONS(533), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, sym_identifier, - [18762] = 2, + [15032] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(575), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(626), 1, sym_identifier, - [18772] = 3, - ACTIONS(3), 1, - sym__comment, - STATE(53), 1, - sym_assignment_operator, - ACTIONS(261), 3, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [18784] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(555), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_identifier, - [18794] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(559), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_identifier, - [18804] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(545), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_identifier, - [18814] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(420), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_identifier, - [18824] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(563), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_identifier, - [18834] = 3, - ACTIONS(3), 1, - sym__comment, - STATE(51), 1, - sym_assignment_operator, - ACTIONS(261), 3, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [18846] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(696), 1, - anon_sym_async, - ACTIONS(698), 1, - anon_sym_LBRACE, - STATE(299), 1, - sym_block, - [18859] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(700), 1, - sym_identifier, - ACTIONS(702), 1, + ACTIONS(647), 1, anon_sym_PIPE, - STATE(393), 1, + STATE(294), 2, + sym__function_parameters, + aux_sym_function_repeat1, + [15046] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(649), 1, + sym_identifier, + ACTIONS(651), 1, + anon_sym_PIPE, + STATE(328), 1, aux_sym_identifier_list_repeat1, - [18872] = 4, + [15059] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(704), 1, - anon_sym_async, - ACTIONS(706), 1, - anon_sym_LBRACE, - STATE(289), 1, - sym_block, - [18885] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(708), 1, + ACTIONS(653), 1, sym_identifier, - ACTIONS(710), 1, - anon_sym_PIPE, - STATE(378), 1, - aux_sym_function_repeat1, - [18898] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(708), 1, - sym_identifier, - ACTIONS(712), 1, - anon_sym_PIPE, - STATE(366), 1, - aux_sym_function_repeat1, - [18911] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(708), 1, - sym_identifier, - ACTIONS(714), 1, - anon_sym_PIPE, - STATE(383), 1, - aux_sym_function_repeat1, - [18924] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(708), 1, - sym_identifier, - ACTIONS(716), 1, - anon_sym_PIPE, - STATE(359), 1, - aux_sym_function_repeat1, - [18937] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(9), 1, - anon_sym_LBRACE, - ACTIONS(659), 1, - anon_sym_async, - STATE(181), 1, - sym_block, - [18950] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(718), 1, - sym_identifier, - ACTIONS(720), 1, + ACTIONS(655), 1, anon_sym_RPAREN, - STATE(368), 1, + STATE(309), 1, aux_sym_map_repeat1, - [18963] = 4, + [15072] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(708), 1, - sym_identifier, - ACTIONS(722), 1, - anon_sym_PIPE, - STATE(383), 1, - aux_sym_function_repeat1, - [18976] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(724), 1, - anon_sym_async, - ACTIONS(726), 1, - anon_sym_LBRACE, - STATE(111), 1, - sym_block, - [18989] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(708), 1, - sym_identifier, - ACTIONS(728), 1, - anon_sym_PIPE, - STATE(363), 1, - aux_sym_function_repeat1, - [19002] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(708), 1, - sym_identifier, - ACTIONS(730), 1, - anon_sym_PIPE, - STATE(383), 1, - aux_sym_function_repeat1, - [19015] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(704), 1, - anon_sym_async, - ACTIONS(706), 1, - anon_sym_LBRACE, - STATE(283), 1, - sym_block, - [19028] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(732), 1, - sym_identifier, - ACTIONS(735), 1, - anon_sym_RPAREN, - STATE(368), 1, - aux_sym_map_repeat1, - [19041] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(708), 1, - sym_identifier, - ACTIONS(737), 1, - anon_sym_PIPE, - STATE(383), 1, - aux_sym_function_repeat1, - [19054] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(724), 1, - anon_sym_async, - ACTIONS(726), 1, - anon_sym_LBRACE, - STATE(115), 1, - sym_block, - [19067] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(708), 1, - sym_identifier, - ACTIONS(739), 1, - anon_sym_PIPE, - STATE(369), 1, - aux_sym_function_repeat1, - [19080] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(181), 1, - anon_sym_LBRACE, ACTIONS(657), 1, + sym_identifier, + ACTIONS(660), 1, + anon_sym_RPAREN, + STATE(309), 1, + aux_sym_map_repeat1, + [15085] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(616), 1, anon_sym_async, + ACTIONS(618), 1, + anon_sym_LBRACE, + STATE(56), 1, + sym_block, + [15098] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(616), 1, + anon_sym_async, + ACTIONS(618), 1, + anon_sym_LBRACE, + STATE(64), 1, + sym_block, + [15111] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(622), 1, + anon_sym_async, + ACTIONS(624), 1, + anon_sym_LBRACE, + STATE(126), 1, + sym_block, + [15124] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(664), 1, + anon_sym_COMMA, + ACTIONS(662), 2, + sym_identifier, + anon_sym_PIPE, + [15135] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(162), 1, + anon_sym_LBRACE, + ACTIONS(575), 1, + anon_sym_async, + STATE(102), 1, + sym_block, + [15148] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(666), 1, + sym_identifier, + ACTIONS(669), 1, + anon_sym_PIPE, + STATE(315), 1, + aux_sym_identifier_list_repeat1, + [15161] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(622), 1, + anon_sym_async, + ACTIONS(624), 1, + anon_sym_LBRACE, STATE(134), 1, sym_block, - [19093] = 4, + [15174] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(718), 1, - sym_identifier, - ACTIONS(741), 1, - anon_sym_RPAREN, - STATE(368), 1, - aux_sym_map_repeat1, - [19106] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(743), 1, + ACTIONS(567), 1, anon_sym_async, - ACTIONS(745), 1, + ACTIONS(569), 1, anon_sym_LBRACE, - STATE(72), 1, + STATE(126), 1, sym_block, - [19119] = 4, + [15187] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(743), 1, + ACTIONS(162), 1, + anon_sym_LBRACE, + ACTIONS(575), 1, anon_sym_async, - ACTIONS(745), 1, - anon_sym_LBRACE, - STATE(71), 1, + STATE(100), 1, sym_block, - [19132] = 4, + [15200] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(718), 1, - sym_identifier, - ACTIONS(747), 1, - anon_sym_RPAREN, - STATE(368), 1, - aux_sym_map_repeat1, - [19145] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(724), 1, + ACTIONS(567), 1, anon_sym_async, - ACTIONS(726), 1, + ACTIONS(569), 1, anon_sym_LBRACE, - STATE(110), 1, + STATE(134), 1, sym_block, - [19158] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(708), 1, - sym_identifier, - ACTIONS(749), 1, - anon_sym_PIPE, - STATE(383), 1, - aux_sym_function_repeat1, - [19171] = 4, + [15213] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(9), 1, anon_sym_LBRACE, - ACTIONS(659), 1, + ACTIONS(577), 1, anon_sym_async, - STATE(193), 1, + STATE(177), 1, sym_block, - [19184] = 4, + [15226] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(751), 1, - anon_sym_async, - ACTIONS(753), 1, + ACTIONS(162), 1, anon_sym_LBRACE, - STATE(323), 1, - sym_block, - [19197] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(704), 1, + ACTIONS(575), 1, anon_sym_async, - ACTIONS(706), 1, - anon_sym_LBRACE, - STATE(279), 1, + STATE(288), 1, sym_block, - [19210] = 4, + [15239] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(181), 1, - anon_sym_LBRACE, - ACTIONS(657), 1, - anon_sym_async, - STATE(147), 1, - sym_block, - [19223] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(755), 1, + ACTIONS(653), 1, sym_identifier, - ACTIONS(758), 1, - anon_sym_PIPE, - STATE(383), 1, - aux_sym_function_repeat1, - [19236] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(760), 1, - anon_sym_COMMA, - ACTIONS(758), 2, - sym_identifier, - anon_sym_PIPE, - [19247] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(696), 1, - anon_sym_async, - ACTIONS(698), 1, - anon_sym_LBRACE, - STATE(287), 1, - sym_block, - [19260] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(181), 1, - anon_sym_LBRACE, - ACTIONS(657), 1, - anon_sym_async, - STATE(133), 1, - sym_block, - [19273] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(743), 1, - anon_sym_async, - ACTIONS(745), 1, - anon_sym_LBRACE, - STATE(80), 1, - sym_block, - [19286] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(181), 1, - anon_sym_LBRACE, - ACTIONS(657), 1, - anon_sym_async, - STATE(350), 1, - sym_block, - [19299] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(764), 1, - anon_sym_COMMA, - ACTIONS(762), 2, - sym_identifier, - anon_sym_PIPE, - [19310] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(768), 1, - anon_sym_COMMA, - ACTIONS(766), 2, + ACTIONS(671), 1, anon_sym_RPAREN, - sym_identifier, - [19321] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(770), 1, - sym_identifier, - ACTIONS(773), 1, - anon_sym_PIPE, - STATE(391), 1, - aux_sym_identifier_list_repeat1, - [19334] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(696), 1, - anon_sym_async, - ACTIONS(698), 1, - anon_sym_LBRACE, - STATE(298), 1, - sym_block, - [19347] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(700), 1, - sym_identifier, - ACTIONS(775), 1, - anon_sym_PIPE, - STATE(391), 1, - aux_sym_identifier_list_repeat1, - [19360] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(718), 1, - sym_identifier, - ACTIONS(777), 1, - anon_sym_RPAREN, - STATE(368), 1, + STATE(309), 1, aux_sym_map_repeat1, - [19373] = 4, + [15252] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(718), 1, - sym_identifier, - ACTIONS(779), 1, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(577), 1, + anon_sym_async, + STATE(170), 1, + sym_block, + [15265] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(675), 1, + anon_sym_COMMA, + ACTIONS(673), 2, anon_sym_RPAREN, - STATE(368), 1, - aux_sym_map_repeat1, - [19386] = 3, + sym_identifier, + [15276] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(781), 1, + ACTIONS(653), 1, + sym_identifier, + ACTIONS(677), 1, + anon_sym_RPAREN, + STATE(309), 1, + aux_sym_map_repeat1, + [15289] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(679), 1, + anon_sym_async, + ACTIONS(681), 1, + anon_sym_LBRACE, + STATE(261), 1, + sym_block, + [15302] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(685), 1, + anon_sym_COMMA, + ACTIONS(683), 2, + sym_identifier, + anon_sym_PIPE, + [15313] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(649), 1, + sym_identifier, + ACTIONS(687), 1, + anon_sym_PIPE, + STATE(315), 1, + aux_sym_identifier_list_repeat1, + [15326] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(669), 2, + sym_identifier, + anon_sym_PIPE, + [15334] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(689), 1, + anon_sym_PIPE, + STATE(187), 1, + sym_identifier_list, + [15344] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(689), 1, + anon_sym_PIPE, + STATE(343), 1, + sym_identifier_list, + [15354] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(689), 1, + anon_sym_PIPE, + STATE(354), 1, + sym_identifier_list, + [15364] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(689), 1, + anon_sym_PIPE, + STATE(203), 1, + sym_identifier_list, + [15374] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(689), 1, anon_sym_PIPE, STATE(213), 1, sym_identifier_list, - [19396] = 2, + [15384] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(783), 2, + ACTIONS(689), 1, + anon_sym_PIPE, + STATE(216), 1, + sym_identifier_list, + [15394] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(691), 2, + anon_sym_RPAREN, + sym_identifier, + [15402] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(689), 1, + anon_sym_PIPE, + STATE(210), 1, + sym_identifier_list, + [15412] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(689), 1, + anon_sym_PIPE, + STATE(191), 1, + sym_identifier_list, + [15422] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(689), 1, + anon_sym_PIPE, + STATE(195), 1, + sym_identifier_list, + [15432] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(693), 2, sym_identifier, anon_sym_PIPE, - [19404] = 3, + [15440] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(781), 1, - anon_sym_PIPE, - STATE(228), 1, - sym_identifier_list, - [19414] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(781), 1, - anon_sym_PIPE, - STATE(207), 1, - sym_identifier_list, - [19424] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(781), 1, + ACTIONS(689), 1, anon_sym_PIPE, STATE(232), 1, sym_identifier_list, - [19434] = 2, + [15450] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(785), 2, - anon_sym_RPAREN, - sym_identifier, - [19442] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(787), 1, + ACTIONS(620), 1, anon_sym_LT, - STATE(384), 1, + STATE(313), 1, sym_type, - [19452] = 3, + [15460] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(781), 1, - anon_sym_PIPE, - STATE(241), 1, - sym_identifier_list, - [19462] = 3, + ACTIONS(695), 1, + anon_sym_from, + [15467] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(781), 1, - anon_sym_PIPE, - STATE(255), 1, - sym_identifier_list, - [19472] = 3, + ACTIONS(697), 1, + anon_sym_RPAREN, + [15474] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(781), 1, - anon_sym_PIPE, - STATE(273), 1, - sym_identifier_list, - [19482] = 3, + ACTIONS(699), 1, + anon_sym_LPAREN, + [15481] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(781), 1, - anon_sym_PIPE, - STATE(431), 1, - sym_identifier_list, - [19492] = 3, + ACTIONS(701), 1, + anon_sym_LBRACE, + [15488] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(781), 1, - anon_sym_PIPE, - STATE(251), 1, - sym_identifier_list, - [19502] = 2, + ACTIONS(703), 1, + anon_sym_LPAREN, + [15495] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(773), 2, + ACTIONS(705), 1, + anon_sym_LBRACE, + [15502] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(707), 1, + anon_sym_LBRACE, + [15509] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(709), 1, + anon_sym_LBRACE, + [15516] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(711), 1, + anon_sym_LBRACE, + [15523] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(713), 1, sym_identifier, - anon_sym_PIPE, - [19510] = 3, + [15530] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(781), 1, - anon_sym_PIPE, - STATE(222), 1, - sym_identifier_list, - [19520] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(781), 1, - anon_sym_PIPE, - STATE(235), 1, - sym_identifier_list, - [19530] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(781), 1, - anon_sym_PIPE, - STATE(439), 1, - sym_identifier_list, - [19540] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(789), 1, + ACTIONS(715), 1, sym_identifier, - [19547] = 2, + [15537] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(791), 1, + ACTIONS(717), 1, + anon_sym_from, + [15544] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(719), 1, + anon_sym_LBRACE, + [15551] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(721), 1, + anon_sym_in, + [15558] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(723), 1, sym_string, - [19554] = 2, + [15565] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(793), 1, - anon_sym_into, - [19561] = 2, + ACTIONS(725), 1, + anon_sym_RPAREN, + [15572] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(795), 1, - anon_sym_EQ_GT, - [19568] = 2, + ACTIONS(727), 1, + anon_sym_LBRACE, + [15579] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(797), 1, - sym_identifier, - [19575] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(799), 1, + ACTIONS(729), 1, ts_builtin_sym_end, - [19582] = 2, + [15586] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(801), 1, - anon_sym_LBRACE, - [19589] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(803), 1, - anon_sym_RPAREN, - [19596] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(805), 1, - anon_sym_in, - [19603] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(807), 1, - anon_sym_EQ_GT, - [19610] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(809), 1, - anon_sym_LBRACE, - [19617] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(811), 1, - anon_sym_LPAREN, - [19624] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(813), 1, - anon_sym_RPAREN, - [19631] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(815), 1, - anon_sym_EQ_GT, - [19638] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(817), 1, - anon_sym_RPAREN, - [19645] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(819), 1, - anon_sym_EQ_GT, - [19652] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(821), 1, - anon_sym_EQ_GT, - [19659] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(823), 1, - anon_sym_EQ_GT, - [19666] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(825), 1, - sym_identifier, - [19673] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(827), 1, - anon_sym_from, - [19680] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(829), 1, - anon_sym_EQ_GT, - [19687] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(831), 1, - anon_sym_RPAREN, - [19694] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(833), 1, - anon_sym_RPAREN, - [19701] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(835), 1, + ACTIONS(731), 1, sym_string, - [19708] = 2, + [15593] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(837), 1, + ACTIONS(733), 1, anon_sym_RPAREN, - [19715] = 2, + [15600] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(839), 1, - anon_sym_RPAREN, - [19722] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(841), 1, - anon_sym_in, - [19729] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(843), 1, - anon_sym_from, - [19736] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(845), 1, - anon_sym_EQ_GT, - [19743] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(847), 1, - anon_sym_EQ_GT, - [19750] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(849), 1, - anon_sym_EQ_GT, - [19757] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(851), 1, - anon_sym_LBRACE, - [19764] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(853), 1, - anon_sym_RPAREN, - [19771] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(855), 1, + ACTIONS(735), 1, anon_sym_into, - [19778] = 2, + [15607] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(857), 1, - anon_sym_LPAREN, - [19785] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(859), 1, - anon_sym_LBRACE, - [19792] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(861), 1, - anon_sym_GT, - [19799] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(863), 1, - anon_sym_EQ, - [19806] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(865), 1, - anon_sym_LPAREN, - [19813] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(867), 1, - anon_sym_LBRACE, - [19820] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(869), 1, + ACTIONS(737), 1, anon_sym_RPAREN, - [19827] = 2, + [15614] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(871), 1, - anon_sym_LPAREN, - [19834] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(873), 1, - anon_sym_LPAREN, - [19841] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(875), 1, - anon_sym_LBRACE, - [19848] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(877), 1, - anon_sym_LBRACE, - [19855] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(879), 1, - anon_sym_LBRACE, - [19862] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(881), 1, - anon_sym_LBRACE, - [19869] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(883), 1, + ACTIONS(739), 1, sym_identifier, - [19876] = 2, + [15621] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(885), 1, + ACTIONS(741), 1, + anon_sym_in, + [15628] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(743), 1, + anon_sym_GT, + [15635] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(745), 1, + anon_sym_RPAREN, + [15642] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(747), 1, + sym_identifier, + [15649] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(749), 1, + anon_sym_LPAREN, + [15656] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(751), 1, + anon_sym_EQ, + [15663] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(753), 1, + anon_sym_into, + [15670] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(755), 1, anon_sym_RPAREN, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2)] = 0, - [SMALL_STATE(3)] = 98, - [SMALL_STATE(4)] = 196, - [SMALL_STATE(5)] = 294, - [SMALL_STATE(6)] = 392, - [SMALL_STATE(7)] = 490, - [SMALL_STATE(8)] = 582, - [SMALL_STATE(9)] = 674, - [SMALL_STATE(10)] = 766, - [SMALL_STATE(11)] = 858, - [SMALL_STATE(12)] = 950, - [SMALL_STATE(13)] = 1061, - [SMALL_STATE(14)] = 1171, - [SMALL_STATE(15)] = 1281, - [SMALL_STATE(16)] = 1391, - [SMALL_STATE(17)] = 1501, - [SMALL_STATE(18)] = 1611, - [SMALL_STATE(19)] = 1721, - [SMALL_STATE(20)] = 1831, - [SMALL_STATE(21)] = 1941, + [SMALL_STATE(3)] = 95, + [SMALL_STATE(4)] = 190, + [SMALL_STATE(5)] = 285, + [SMALL_STATE(6)] = 374, + [SMALL_STATE(7)] = 463, + [SMALL_STATE(8)] = 552, + [SMALL_STATE(9)] = 660, + [SMALL_STATE(10)] = 767, + [SMALL_STATE(11)] = 874, + [SMALL_STATE(12)] = 981, + [SMALL_STATE(13)] = 1088, + [SMALL_STATE(14)] = 1195, + [SMALL_STATE(15)] = 1302, + [SMALL_STATE(16)] = 1409, + [SMALL_STATE(17)] = 1516, + [SMALL_STATE(18)] = 1623, + [SMALL_STATE(19)] = 1730, + [SMALL_STATE(20)] = 1837, + [SMALL_STATE(21)] = 1944, [SMALL_STATE(22)] = 2051, - [SMALL_STATE(23)] = 2161, - [SMALL_STATE(24)] = 2271, - [SMALL_STATE(25)] = 2381, - [SMALL_STATE(26)] = 2491, - [SMALL_STATE(27)] = 2601, - [SMALL_STATE(28)] = 2711, - [SMALL_STATE(29)] = 2821, - [SMALL_STATE(30)] = 2931, - [SMALL_STATE(31)] = 3041, - [SMALL_STATE(32)] = 3151, - [SMALL_STATE(33)] = 3258, - [SMALL_STATE(34)] = 3365, - [SMALL_STATE(35)] = 3472, - [SMALL_STATE(36)] = 3579, - [SMALL_STATE(37)] = 3686, - [SMALL_STATE(38)] = 3793, - [SMALL_STATE(39)] = 3900, - [SMALL_STATE(40)] = 4007, - [SMALL_STATE(41)] = 4114, - [SMALL_STATE(42)] = 4221, - [SMALL_STATE(43)] = 4328, - [SMALL_STATE(44)] = 4435, - [SMALL_STATE(45)] = 4542, - [SMALL_STATE(46)] = 4649, - [SMALL_STATE(47)] = 4756, - [SMALL_STATE(48)] = 4863, - [SMALL_STATE(49)] = 4970, - [SMALL_STATE(50)] = 5077, - [SMALL_STATE(51)] = 5183, - [SMALL_STATE(52)] = 5289, - [SMALL_STATE(53)] = 5395, - [SMALL_STATE(54)] = 5501, - [SMALL_STATE(55)] = 5607, - [SMALL_STATE(56)] = 5713, - [SMALL_STATE(57)] = 5819, - [SMALL_STATE(58)] = 5889, - [SMALL_STATE(59)] = 5947, - [SMALL_STATE(60)] = 6005, - [SMALL_STATE(61)] = 6065, - [SMALL_STATE(62)] = 6125, - [SMALL_STATE(63)] = 6195, - [SMALL_STATE(64)] = 6264, - [SMALL_STATE(65)] = 6323, - [SMALL_STATE(66)] = 6386, - [SMALL_STATE(67)] = 6455, - [SMALL_STATE(68)] = 6512, - [SMALL_STATE(69)] = 6564, - [SMALL_STATE(70)] = 6616, - [SMALL_STATE(71)] = 6668, - [SMALL_STATE(72)] = 6720, - [SMALL_STATE(73)] = 6772, - [SMALL_STATE(74)] = 6824, - [SMALL_STATE(75)] = 6876, - [SMALL_STATE(76)] = 6928, - [SMALL_STATE(77)] = 6980, - [SMALL_STATE(78)] = 7032, - [SMALL_STATE(79)] = 7084, - [SMALL_STATE(80)] = 7136, - [SMALL_STATE(81)] = 7188, - [SMALL_STATE(82)] = 7240, - [SMALL_STATE(83)] = 7298, - [SMALL_STATE(84)] = 7350, - [SMALL_STATE(85)] = 7441, - [SMALL_STATE(86)] = 7498, - [SMALL_STATE(87)] = 7565, - [SMALL_STATE(88)] = 7632, - [SMALL_STATE(89)] = 7705, - [SMALL_STATE(90)] = 7760, - [SMALL_STATE(91)] = 7815, - [SMALL_STATE(92)] = 7872, - [SMALL_STATE(93)] = 7960, - [SMALL_STATE(94)] = 8016, - [SMALL_STATE(95)] = 8082, - [SMALL_STATE(96)] = 8136, - [SMALL_STATE(97)] = 8202, - [SMALL_STATE(98)] = 8268, - [SMALL_STATE(99)] = 8336, - [SMALL_STATE(100)] = 8424, - [SMALL_STATE(101)] = 8490, - [SMALL_STATE(102)] = 8556, - [SMALL_STATE(103)] = 8605, - [SMALL_STATE(104)] = 8654, - [SMALL_STATE(105)] = 8703, - [SMALL_STATE(106)] = 8752, - [SMALL_STATE(107)] = 8801, - [SMALL_STATE(108)] = 8850, - [SMALL_STATE(109)] = 8899, - [SMALL_STATE(110)] = 8948, - [SMALL_STATE(111)] = 8997, - [SMALL_STATE(112)] = 9046, - [SMALL_STATE(113)] = 9095, - [SMALL_STATE(114)] = 9144, - [SMALL_STATE(115)] = 9193, - [SMALL_STATE(116)] = 9242, - [SMALL_STATE(117)] = 9291, - [SMALL_STATE(118)] = 9364, - [SMALL_STATE(119)] = 9437, - [SMALL_STATE(120)] = 9483, - [SMALL_STATE(121)] = 9539, - [SMALL_STATE(122)] = 9585, - [SMALL_STATE(123)] = 9629, - [SMALL_STATE(124)] = 9673, - [SMALL_STATE(125)] = 9729, - [SMALL_STATE(126)] = 9774, - [SMALL_STATE(127)] = 9829, - [SMALL_STATE(128)] = 9872, - [SMALL_STATE(129)] = 9911, - [SMALL_STATE(130)] = 9950, - [SMALL_STATE(131)] = 10005, - [SMALL_STATE(132)] = 10043, - [SMALL_STATE(133)] = 10089, - [SMALL_STATE(134)] = 10127, - [SMALL_STATE(135)] = 10165, - [SMALL_STATE(136)] = 10203, - [SMALL_STATE(137)] = 10241, - [SMALL_STATE(138)] = 10279, - [SMALL_STATE(139)] = 10335, - [SMALL_STATE(140)] = 10391, - [SMALL_STATE(141)] = 10429, - [SMALL_STATE(142)] = 10467, - [SMALL_STATE(143)] = 10505, - [SMALL_STATE(144)] = 10543, - [SMALL_STATE(145)] = 10581, - [SMALL_STATE(146)] = 10627, - [SMALL_STATE(147)] = 10665, - [SMALL_STATE(148)] = 10703, - [SMALL_STATE(149)] = 10744, - [SMALL_STATE(150)] = 10804, - [SMALL_STATE(151)] = 10864, - [SMALL_STATE(152)] = 10902, - [SMALL_STATE(153)] = 10939, - [SMALL_STATE(154)] = 10974, - [SMALL_STATE(155)] = 11011, - [SMALL_STATE(156)] = 11046, - [SMALL_STATE(157)] = 11081, - [SMALL_STATE(158)] = 11116, - [SMALL_STATE(159)] = 11153, - [SMALL_STATE(160)] = 11190, - [SMALL_STATE(161)] = 11227, - [SMALL_STATE(162)] = 11285, - [SMALL_STATE(163)] = 11343, - [SMALL_STATE(164)] = 11401, - [SMALL_STATE(165)] = 11459, - [SMALL_STATE(166)] = 11517, - [SMALL_STATE(167)] = 11575, - [SMALL_STATE(168)] = 11633, - [SMALL_STATE(169)] = 11691, - [SMALL_STATE(170)] = 11749, - [SMALL_STATE(171)] = 11807, - [SMALL_STATE(172)] = 11865, - [SMALL_STATE(173)] = 11923, - [SMALL_STATE(174)] = 11981, - [SMALL_STATE(175)] = 12039, - [SMALL_STATE(176)] = 12097, - [SMALL_STATE(177)] = 12130, - [SMALL_STATE(178)] = 12169, - [SMALL_STATE(179)] = 12206, - [SMALL_STATE(180)] = 12239, - [SMALL_STATE(181)] = 12276, - [SMALL_STATE(182)] = 12309, - [SMALL_STATE(183)] = 12348, - [SMALL_STATE(184)] = 12381, - [SMALL_STATE(185)] = 12430, - [SMALL_STATE(186)] = 12467, - [SMALL_STATE(187)] = 12506, - [SMALL_STATE(188)] = 12555, - [SMALL_STATE(189)] = 12588, - [SMALL_STATE(190)] = 12621, - [SMALL_STATE(191)] = 12654, - [SMALL_STATE(192)] = 12687, - [SMALL_STATE(193)] = 12720, - [SMALL_STATE(194)] = 12753, - [SMALL_STATE(195)] = 12786, - [SMALL_STATE(196)] = 12819, - [SMALL_STATE(197)] = 12852, - [SMALL_STATE(198)] = 12885, - [SMALL_STATE(199)] = 12918, - [SMALL_STATE(200)] = 12957, - [SMALL_STATE(201)] = 12992, - [SMALL_STATE(202)] = 13029, - [SMALL_STATE(203)] = 13078, - [SMALL_STATE(204)] = 13127, - [SMALL_STATE(205)] = 13175, - [SMALL_STATE(206)] = 13227, - [SMALL_STATE(207)] = 13265, - [SMALL_STATE(208)] = 13317, - [SMALL_STATE(209)] = 13369, - [SMALL_STATE(210)] = 13421, - [SMALL_STATE(211)] = 13469, - [SMALL_STATE(212)] = 13521, - [SMALL_STATE(213)] = 13573, - [SMALL_STATE(214)] = 13625, - [SMALL_STATE(215)] = 13673, - [SMALL_STATE(216)] = 13711, - [SMALL_STATE(217)] = 13759, - [SMALL_STATE(218)] = 13811, - [SMALL_STATE(219)] = 13847, - [SMALL_STATE(220)] = 13899, - [SMALL_STATE(221)] = 13951, - [SMALL_STATE(222)] = 14003, - [SMALL_STATE(223)] = 14055, - [SMALL_STATE(224)] = 14107, - [SMALL_STATE(225)] = 14159, - [SMALL_STATE(226)] = 14211, - [SMALL_STATE(227)] = 14263, - [SMALL_STATE(228)] = 14315, - [SMALL_STATE(229)] = 14367, - [SMALL_STATE(230)] = 14419, - [SMALL_STATE(231)] = 14471, - [SMALL_STATE(232)] = 14523, - [SMALL_STATE(233)] = 14575, - [SMALL_STATE(234)] = 14627, - [SMALL_STATE(235)] = 14679, - [SMALL_STATE(236)] = 14731, - [SMALL_STATE(237)] = 14783, - [SMALL_STATE(238)] = 14825, - [SMALL_STATE(239)] = 14877, - [SMALL_STATE(240)] = 14929, - [SMALL_STATE(241)] = 14981, - [SMALL_STATE(242)] = 15033, - [SMALL_STATE(243)] = 15085, - [SMALL_STATE(244)] = 15137, - [SMALL_STATE(245)] = 15189, - [SMALL_STATE(246)] = 15241, - [SMALL_STATE(247)] = 15293, - [SMALL_STATE(248)] = 15345, - [SMALL_STATE(249)] = 15397, - [SMALL_STATE(250)] = 15449, - [SMALL_STATE(251)] = 15501, - [SMALL_STATE(252)] = 15553, - [SMALL_STATE(253)] = 15605, - [SMALL_STATE(254)] = 15657, - [SMALL_STATE(255)] = 15709, - [SMALL_STATE(256)] = 15761, - [SMALL_STATE(257)] = 15813, - [SMALL_STATE(258)] = 15865, - [SMALL_STATE(259)] = 15917, - [SMALL_STATE(260)] = 15969, - [SMALL_STATE(261)] = 16021, - [SMALL_STATE(262)] = 16073, - [SMALL_STATE(263)] = 16125, - [SMALL_STATE(264)] = 16177, - [SMALL_STATE(265)] = 16229, - [SMALL_STATE(266)] = 16281, - [SMALL_STATE(267)] = 16317, - [SMALL_STATE(268)] = 16369, - [SMALL_STATE(269)] = 16423, - [SMALL_STATE(270)] = 16475, - [SMALL_STATE(271)] = 16527, - [SMALL_STATE(272)] = 16579, - [SMALL_STATE(273)] = 16631, - [SMALL_STATE(274)] = 16683, - [SMALL_STATE(275)] = 16735, - [SMALL_STATE(276)] = 16766, - [SMALL_STATE(277)] = 16797, - [SMALL_STATE(278)] = 16828, - [SMALL_STATE(279)] = 16859, - [SMALL_STATE(280)] = 16890, - [SMALL_STATE(281)] = 16921, - [SMALL_STATE(282)] = 16952, - [SMALL_STATE(283)] = 16983, - [SMALL_STATE(284)] = 17014, - [SMALL_STATE(285)] = 17045, - [SMALL_STATE(286)] = 17082, - [SMALL_STATE(287)] = 17113, - [SMALL_STATE(288)] = 17144, - [SMALL_STATE(289)] = 17175, - [SMALL_STATE(290)] = 17206, - [SMALL_STATE(291)] = 17237, - [SMALL_STATE(292)] = 17268, - [SMALL_STATE(293)] = 17299, - [SMALL_STATE(294)] = 17330, - [SMALL_STATE(295)] = 17361, - [SMALL_STATE(296)] = 17392, - [SMALL_STATE(297)] = 17423, - [SMALL_STATE(298)] = 17454, - [SMALL_STATE(299)] = 17485, - [SMALL_STATE(300)] = 17516, - [SMALL_STATE(301)] = 17547, - [SMALL_STATE(302)] = 17578, - [SMALL_STATE(303)] = 17609, - [SMALL_STATE(304)] = 17640, - [SMALL_STATE(305)] = 17671, - [SMALL_STATE(306)] = 17702, - [SMALL_STATE(307)] = 17732, - [SMALL_STATE(308)] = 17777, - [SMALL_STATE(309)] = 17820, - [SMALL_STATE(310)] = 17863, - [SMALL_STATE(311)] = 17906, - [SMALL_STATE(312)] = 17952, - [SMALL_STATE(313)] = 17998, - [SMALL_STATE(314)] = 18044, - [SMALL_STATE(315)] = 18090, - [SMALL_STATE(316)] = 18136, - [SMALL_STATE(317)] = 18182, - [SMALL_STATE(318)] = 18228, - [SMALL_STATE(319)] = 18274, - [SMALL_STATE(320)] = 18314, - [SMALL_STATE(321)] = 18354, - [SMALL_STATE(322)] = 18376, - [SMALL_STATE(323)] = 18398, - [SMALL_STATE(324)] = 18420, - [SMALL_STATE(325)] = 18440, - [SMALL_STATE(326)] = 18460, - [SMALL_STATE(327)] = 18480, - [SMALL_STATE(328)] = 18500, - [SMALL_STATE(329)] = 18519, - [SMALL_STATE(330)] = 18538, - [SMALL_STATE(331)] = 18563, - [SMALL_STATE(332)] = 18588, - [SMALL_STATE(333)] = 18602, - [SMALL_STATE(334)] = 18622, - [SMALL_STATE(335)] = 18636, - [SMALL_STATE(336)] = 18650, - [SMALL_STATE(337)] = 18664, - [SMALL_STATE(338)] = 18678, - [SMALL_STATE(339)] = 18690, - [SMALL_STATE(340)] = 18702, - [SMALL_STATE(341)] = 18712, - [SMALL_STATE(342)] = 18722, - [SMALL_STATE(343)] = 18732, - [SMALL_STATE(344)] = 18742, - [SMALL_STATE(345)] = 18752, - [SMALL_STATE(346)] = 18762, - [SMALL_STATE(347)] = 18772, - [SMALL_STATE(348)] = 18784, - [SMALL_STATE(349)] = 18794, - [SMALL_STATE(350)] = 18804, - [SMALL_STATE(351)] = 18814, - [SMALL_STATE(352)] = 18824, - [SMALL_STATE(353)] = 18834, - [SMALL_STATE(354)] = 18846, - [SMALL_STATE(355)] = 18859, - [SMALL_STATE(356)] = 18872, - [SMALL_STATE(357)] = 18885, - [SMALL_STATE(358)] = 18898, - [SMALL_STATE(359)] = 18911, - [SMALL_STATE(360)] = 18924, - [SMALL_STATE(361)] = 18937, - [SMALL_STATE(362)] = 18950, - [SMALL_STATE(363)] = 18963, - [SMALL_STATE(364)] = 18976, - [SMALL_STATE(365)] = 18989, - [SMALL_STATE(366)] = 19002, - [SMALL_STATE(367)] = 19015, - [SMALL_STATE(368)] = 19028, - [SMALL_STATE(369)] = 19041, - [SMALL_STATE(370)] = 19054, - [SMALL_STATE(371)] = 19067, - [SMALL_STATE(372)] = 19080, - [SMALL_STATE(373)] = 19093, - [SMALL_STATE(374)] = 19106, - [SMALL_STATE(375)] = 19119, - [SMALL_STATE(376)] = 19132, - [SMALL_STATE(377)] = 19145, - [SMALL_STATE(378)] = 19158, - [SMALL_STATE(379)] = 19171, - [SMALL_STATE(380)] = 19184, - [SMALL_STATE(381)] = 19197, - [SMALL_STATE(382)] = 19210, - [SMALL_STATE(383)] = 19223, - [SMALL_STATE(384)] = 19236, - [SMALL_STATE(385)] = 19247, - [SMALL_STATE(386)] = 19260, - [SMALL_STATE(387)] = 19273, - [SMALL_STATE(388)] = 19286, - [SMALL_STATE(389)] = 19299, - [SMALL_STATE(390)] = 19310, - [SMALL_STATE(391)] = 19321, - [SMALL_STATE(392)] = 19334, - [SMALL_STATE(393)] = 19347, - [SMALL_STATE(394)] = 19360, - [SMALL_STATE(395)] = 19373, - [SMALL_STATE(396)] = 19386, - [SMALL_STATE(397)] = 19396, - [SMALL_STATE(398)] = 19404, - [SMALL_STATE(399)] = 19414, - [SMALL_STATE(400)] = 19424, - [SMALL_STATE(401)] = 19434, - [SMALL_STATE(402)] = 19442, - [SMALL_STATE(403)] = 19452, - [SMALL_STATE(404)] = 19462, - [SMALL_STATE(405)] = 19472, - [SMALL_STATE(406)] = 19482, - [SMALL_STATE(407)] = 19492, - [SMALL_STATE(408)] = 19502, - [SMALL_STATE(409)] = 19510, - [SMALL_STATE(410)] = 19520, - [SMALL_STATE(411)] = 19530, - [SMALL_STATE(412)] = 19540, - [SMALL_STATE(413)] = 19547, - [SMALL_STATE(414)] = 19554, - [SMALL_STATE(415)] = 19561, - [SMALL_STATE(416)] = 19568, - [SMALL_STATE(417)] = 19575, - [SMALL_STATE(418)] = 19582, - [SMALL_STATE(419)] = 19589, - [SMALL_STATE(420)] = 19596, - [SMALL_STATE(421)] = 19603, - [SMALL_STATE(422)] = 19610, - [SMALL_STATE(423)] = 19617, - [SMALL_STATE(424)] = 19624, - [SMALL_STATE(425)] = 19631, - [SMALL_STATE(426)] = 19638, - [SMALL_STATE(427)] = 19645, - [SMALL_STATE(428)] = 19652, - [SMALL_STATE(429)] = 19659, - [SMALL_STATE(430)] = 19666, - [SMALL_STATE(431)] = 19673, - [SMALL_STATE(432)] = 19680, - [SMALL_STATE(433)] = 19687, - [SMALL_STATE(434)] = 19694, - [SMALL_STATE(435)] = 19701, - [SMALL_STATE(436)] = 19708, - [SMALL_STATE(437)] = 19715, - [SMALL_STATE(438)] = 19722, - [SMALL_STATE(439)] = 19729, - [SMALL_STATE(440)] = 19736, - [SMALL_STATE(441)] = 19743, - [SMALL_STATE(442)] = 19750, - [SMALL_STATE(443)] = 19757, - [SMALL_STATE(444)] = 19764, - [SMALL_STATE(445)] = 19771, - [SMALL_STATE(446)] = 19778, - [SMALL_STATE(447)] = 19785, - [SMALL_STATE(448)] = 19792, - [SMALL_STATE(449)] = 19799, - [SMALL_STATE(450)] = 19806, - [SMALL_STATE(451)] = 19813, - [SMALL_STATE(452)] = 19820, - [SMALL_STATE(453)] = 19827, - [SMALL_STATE(454)] = 19834, - [SMALL_STATE(455)] = 19841, - [SMALL_STATE(456)] = 19848, - [SMALL_STATE(457)] = 19855, - [SMALL_STATE(458)] = 19862, - [SMALL_STATE(459)] = 19869, - [SMALL_STATE(460)] = 19876, + [SMALL_STATE(23)] = 2158, + [SMALL_STATE(24)] = 2265, + [SMALL_STATE(25)] = 2369, + [SMALL_STATE(26)] = 2473, + [SMALL_STATE(27)] = 2577, + [SMALL_STATE(28)] = 2681, + [SMALL_STATE(29)] = 2785, + [SMALL_STATE(30)] = 2889, + [SMALL_STATE(31)] = 2993, + [SMALL_STATE(32)] = 3097, + [SMALL_STATE(33)] = 3201, + [SMALL_STATE(34)] = 3305, + [SMALL_STATE(35)] = 3409, + [SMALL_STATE(36)] = 3513, + [SMALL_STATE(37)] = 3617, + [SMALL_STATE(38)] = 3721, + [SMALL_STATE(39)] = 3824, + [SMALL_STATE(40)] = 3927, + [SMALL_STATE(41)] = 4030, + [SMALL_STATE(42)] = 4133, + [SMALL_STATE(43)] = 4236, + [SMALL_STATE(44)] = 4339, + [SMALL_STATE(45)] = 4442, + [SMALL_STATE(46)] = 4501, + [SMALL_STATE(47)] = 4558, + [SMALL_STATE(48)] = 4627, + [SMALL_STATE(49)] = 4686, + [SMALL_STATE(50)] = 4743, + [SMALL_STATE(51)] = 4812, + [SMALL_STATE(52)] = 4880, + [SMALL_STATE(53)] = 4938, + [SMALL_STATE(54)] = 5006, + [SMALL_STATE(55)] = 5062, + [SMALL_STATE(56)] = 5124, + [SMALL_STATE(57)] = 5175, + [SMALL_STATE(58)] = 5226, + [SMALL_STATE(59)] = 5277, + [SMALL_STATE(60)] = 5328, + [SMALL_STATE(61)] = 5379, + [SMALL_STATE(62)] = 5430, + [SMALL_STATE(63)] = 5487, + [SMALL_STATE(64)] = 5538, + [SMALL_STATE(65)] = 5589, + [SMALL_STATE(66)] = 5640, + [SMALL_STATE(67)] = 5691, + [SMALL_STATE(68)] = 5742, + [SMALL_STATE(69)] = 5793, + [SMALL_STATE(70)] = 5844, + [SMALL_STATE(71)] = 5895, + [SMALL_STATE(72)] = 5946, + [SMALL_STATE(73)] = 5997, + [SMALL_STATE(74)] = 6085, + [SMALL_STATE(75)] = 6157, + [SMALL_STATE(76)] = 6222, + [SMALL_STATE(77)] = 6289, + [SMALL_STATE(78)] = 6354, + [SMALL_STATE(79)] = 6439, + [SMALL_STATE(80)] = 6504, + [SMALL_STATE(81)] = 6589, + [SMALL_STATE(82)] = 6659, + [SMALL_STATE(83)] = 6729, + [SMALL_STATE(84)] = 6772, + [SMALL_STATE(85)] = 6817, + [SMALL_STATE(86)] = 6872, + [SMALL_STATE(87)] = 6917, + [SMALL_STATE(88)] = 6972, + [SMALL_STATE(89)] = 7015, + [SMALL_STATE(90)] = 7053, + [SMALL_STATE(91)] = 7095, + [SMALL_STATE(92)] = 7133, + [SMALL_STATE(93)] = 7187, + [SMALL_STATE(94)] = 7231, + [SMALL_STATE(95)] = 7285, + [SMALL_STATE(96)] = 7322, + [SMALL_STATE(97)] = 7359, + [SMALL_STATE(98)] = 7414, + [SMALL_STATE(99)] = 7459, + [SMALL_STATE(100)] = 7496, + [SMALL_STATE(101)] = 7533, + [SMALL_STATE(102)] = 7570, + [SMALL_STATE(103)] = 7607, + [SMALL_STATE(104)] = 7644, + [SMALL_STATE(105)] = 7689, + [SMALL_STATE(106)] = 7726, + [SMALL_STATE(107)] = 7763, + [SMALL_STATE(108)] = 7800, + [SMALL_STATE(109)] = 7837, + [SMALL_STATE(110)] = 7874, + [SMALL_STATE(111)] = 7911, + [SMALL_STATE(112)] = 7966, + [SMALL_STATE(113)] = 8003, + [SMALL_STATE(114)] = 8043, + [SMALL_STATE(115)] = 8084, + [SMALL_STATE(116)] = 8135, + [SMALL_STATE(117)] = 8174, + [SMALL_STATE(118)] = 8231, + [SMALL_STATE(119)] = 8282, + [SMALL_STATE(120)] = 8339, + [SMALL_STATE(121)] = 8380, + [SMALL_STATE(122)] = 8417, + [SMALL_STATE(123)] = 8456, + [SMALL_STATE(124)] = 8490, + [SMALL_STATE(125)] = 8526, + [SMALL_STATE(126)] = 8560, + [SMALL_STATE(127)] = 8594, + [SMALL_STATE(128)] = 8628, + [SMALL_STATE(129)] = 8664, + [SMALL_STATE(130)] = 8698, + [SMALL_STATE(131)] = 8732, + [SMALL_STATE(132)] = 8766, + [SMALL_STATE(133)] = 8800, + [SMALL_STATE(134)] = 8834, + [SMALL_STATE(135)] = 8868, + [SMALL_STATE(136)] = 8902, + [SMALL_STATE(137)] = 8936, + [SMALL_STATE(138)] = 8970, + [SMALL_STATE(139)] = 9006, + [SMALL_STATE(140)] = 9040, + [SMALL_STATE(141)] = 9074, + [SMALL_STATE(142)] = 9108, + [SMALL_STATE(143)] = 9158, + [SMALL_STATE(144)] = 9198, + [SMALL_STATE(145)] = 9248, + [SMALL_STATE(146)] = 9286, + [SMALL_STATE(147)] = 9320, + [SMALL_STATE(148)] = 9354, + [SMALL_STATE(149)] = 9409, + [SMALL_STATE(150)] = 9464, + [SMALL_STATE(151)] = 9519, + [SMALL_STATE(152)] = 9574, + [SMALL_STATE(153)] = 9629, + [SMALL_STATE(154)] = 9662, + [SMALL_STATE(155)] = 9717, + [SMALL_STATE(156)] = 9772, + [SMALL_STATE(157)] = 9805, + [SMALL_STATE(158)] = 9860, + [SMALL_STATE(159)] = 9893, + [SMALL_STATE(160)] = 9948, + [SMALL_STATE(161)] = 10003, + [SMALL_STATE(162)] = 10036, + [SMALL_STATE(163)] = 10091, + [SMALL_STATE(164)] = 10123, + [SMALL_STATE(165)] = 10177, + [SMALL_STATE(166)] = 10209, + [SMALL_STATE(167)] = 10241, + [SMALL_STATE(168)] = 10273, + [SMALL_STATE(169)] = 10305, + [SMALL_STATE(170)] = 10337, + [SMALL_STATE(171)] = 10369, + [SMALL_STATE(172)] = 10411, + [SMALL_STATE(173)] = 10445, + [SMALL_STATE(174)] = 10477, + [SMALL_STATE(175)] = 10509, + [SMALL_STATE(176)] = 10541, + [SMALL_STATE(177)] = 10573, + [SMALL_STATE(178)] = 10605, + [SMALL_STATE(179)] = 10637, + [SMALL_STATE(180)] = 10669, + [SMALL_STATE(181)] = 10701, + [SMALL_STATE(182)] = 10750, + [SMALL_STATE(183)] = 10799, + [SMALL_STATE(184)] = 10848, + [SMALL_STATE(185)] = 10897, + [SMALL_STATE(186)] = 10946, + [SMALL_STATE(187)] = 10983, + [SMALL_STATE(188)] = 11032, + [SMALL_STATE(189)] = 11081, + [SMALL_STATE(190)] = 11130, + [SMALL_STATE(191)] = 11179, + [SMALL_STATE(192)] = 11228, + [SMALL_STATE(193)] = 11277, + [SMALL_STATE(194)] = 11326, + [SMALL_STATE(195)] = 11375, + [SMALL_STATE(196)] = 11424, + [SMALL_STATE(197)] = 11473, + [SMALL_STATE(198)] = 11522, + [SMALL_STATE(199)] = 11571, + [SMALL_STATE(200)] = 11620, + [SMALL_STATE(201)] = 11669, + [SMALL_STATE(202)] = 11718, + [SMALL_STATE(203)] = 11767, + [SMALL_STATE(204)] = 11816, + [SMALL_STATE(205)] = 11865, + [SMALL_STATE(206)] = 11914, + [SMALL_STATE(207)] = 11963, + [SMALL_STATE(208)] = 12012, + [SMALL_STATE(209)] = 12061, + [SMALL_STATE(210)] = 12110, + [SMALL_STATE(211)] = 12159, + [SMALL_STATE(212)] = 12208, + [SMALL_STATE(213)] = 12257, + [SMALL_STATE(214)] = 12306, + [SMALL_STATE(215)] = 12355, + [SMALL_STATE(216)] = 12404, + [SMALL_STATE(217)] = 12453, + [SMALL_STATE(218)] = 12502, + [SMALL_STATE(219)] = 12551, + [SMALL_STATE(220)] = 12600, + [SMALL_STATE(221)] = 12649, + [SMALL_STATE(222)] = 12698, + [SMALL_STATE(223)] = 12747, + [SMALL_STATE(224)] = 12796, + [SMALL_STATE(225)] = 12845, + [SMALL_STATE(226)] = 12894, + [SMALL_STATE(227)] = 12943, + [SMALL_STATE(228)] = 12992, + [SMALL_STATE(229)] = 13041, + [SMALL_STATE(230)] = 13090, + [SMALL_STATE(231)] = 13139, + [SMALL_STATE(232)] = 13188, + [SMALL_STATE(233)] = 13237, + [SMALL_STATE(234)] = 13286, + [SMALL_STATE(235)] = 13319, + [SMALL_STATE(236)] = 13362, + [SMALL_STATE(237)] = 13405, + [SMALL_STATE(238)] = 13440, + [SMALL_STATE(239)] = 13469, + [SMALL_STATE(240)] = 13512, + [SMALL_STATE(241)] = 13547, + [SMALL_STATE(242)] = 13580, + [SMALL_STATE(243)] = 13625, + [SMALL_STATE(244)] = 13668, + [SMALL_STATE(245)] = 13711, + [SMALL_STATE(246)] = 13753, + [SMALL_STATE(247)] = 13785, + [SMALL_STATE(248)] = 13831, + [SMALL_STATE(249)] = 13877, + [SMALL_STATE(250)] = 13923, + [SMALL_STATE(251)] = 13969, + [SMALL_STATE(252)] = 14015, + [SMALL_STATE(253)] = 14049, + [SMALL_STATE(254)] = 14095, + [SMALL_STATE(255)] = 14137, + [SMALL_STATE(256)] = 14183, + [SMALL_STATE(257)] = 14229, + [SMALL_STATE(258)] = 14269, + [SMALL_STATE(259)] = 14309, + [SMALL_STATE(260)] = 14330, + [SMALL_STATE(261)] = 14351, + [SMALL_STATE(262)] = 14372, + [SMALL_STATE(263)] = 14391, + [SMALL_STATE(264)] = 14410, + [SMALL_STATE(265)] = 14429, + [SMALL_STATE(266)] = 14448, + [SMALL_STATE(267)] = 14466, + [SMALL_STATE(268)] = 14484, + [SMALL_STATE(269)] = 14509, + [SMALL_STATE(270)] = 14534, + [SMALL_STATE(271)] = 14550, + [SMALL_STATE(272)] = 14570, + [SMALL_STATE(273)] = 14584, + [SMALL_STATE(274)] = 14598, + [SMALL_STATE(275)] = 14612, + [SMALL_STATE(276)] = 14631, + [SMALL_STATE(277)] = 14650, + [SMALL_STATE(278)] = 14669, + [SMALL_STATE(279)] = 14688, + [SMALL_STATE(280)] = 14707, + [SMALL_STATE(281)] = 14726, + [SMALL_STATE(282)] = 14745, + [SMALL_STATE(283)] = 14764, + [SMALL_STATE(284)] = 14778, + [SMALL_STATE(285)] = 14788, + [SMALL_STATE(286)] = 14802, + [SMALL_STATE(287)] = 14816, + [SMALL_STATE(288)] = 14826, + [SMALL_STATE(289)] = 14836, + [SMALL_STATE(290)] = 14848, + [SMALL_STATE(291)] = 14858, + [SMALL_STATE(292)] = 14872, + [SMALL_STATE(293)] = 14886, + [SMALL_STATE(294)] = 14900, + [SMALL_STATE(295)] = 14914, + [SMALL_STATE(296)] = 14926, + [SMALL_STATE(297)] = 14936, + [SMALL_STATE(298)] = 14948, + [SMALL_STATE(299)] = 14962, + [SMALL_STATE(300)] = 14972, + [SMALL_STATE(301)] = 14982, + [SMALL_STATE(302)] = 14992, + [SMALL_STATE(303)] = 15002, + [SMALL_STATE(304)] = 15012, + [SMALL_STATE(305)] = 15022, + [SMALL_STATE(306)] = 15032, + [SMALL_STATE(307)] = 15046, + [SMALL_STATE(308)] = 15059, + [SMALL_STATE(309)] = 15072, + [SMALL_STATE(310)] = 15085, + [SMALL_STATE(311)] = 15098, + [SMALL_STATE(312)] = 15111, + [SMALL_STATE(313)] = 15124, + [SMALL_STATE(314)] = 15135, + [SMALL_STATE(315)] = 15148, + [SMALL_STATE(316)] = 15161, + [SMALL_STATE(317)] = 15174, + [SMALL_STATE(318)] = 15187, + [SMALL_STATE(319)] = 15200, + [SMALL_STATE(320)] = 15213, + [SMALL_STATE(321)] = 15226, + [SMALL_STATE(322)] = 15239, + [SMALL_STATE(323)] = 15252, + [SMALL_STATE(324)] = 15265, + [SMALL_STATE(325)] = 15276, + [SMALL_STATE(326)] = 15289, + [SMALL_STATE(327)] = 15302, + [SMALL_STATE(328)] = 15313, + [SMALL_STATE(329)] = 15326, + [SMALL_STATE(330)] = 15334, + [SMALL_STATE(331)] = 15344, + [SMALL_STATE(332)] = 15354, + [SMALL_STATE(333)] = 15364, + [SMALL_STATE(334)] = 15374, + [SMALL_STATE(335)] = 15384, + [SMALL_STATE(336)] = 15394, + [SMALL_STATE(337)] = 15402, + [SMALL_STATE(338)] = 15412, + [SMALL_STATE(339)] = 15422, + [SMALL_STATE(340)] = 15432, + [SMALL_STATE(341)] = 15440, + [SMALL_STATE(342)] = 15450, + [SMALL_STATE(343)] = 15460, + [SMALL_STATE(344)] = 15467, + [SMALL_STATE(345)] = 15474, + [SMALL_STATE(346)] = 15481, + [SMALL_STATE(347)] = 15488, + [SMALL_STATE(348)] = 15495, + [SMALL_STATE(349)] = 15502, + [SMALL_STATE(350)] = 15509, + [SMALL_STATE(351)] = 15516, + [SMALL_STATE(352)] = 15523, + [SMALL_STATE(353)] = 15530, + [SMALL_STATE(354)] = 15537, + [SMALL_STATE(355)] = 15544, + [SMALL_STATE(356)] = 15551, + [SMALL_STATE(357)] = 15558, + [SMALL_STATE(358)] = 15565, + [SMALL_STATE(359)] = 15572, + [SMALL_STATE(360)] = 15579, + [SMALL_STATE(361)] = 15586, + [SMALL_STATE(362)] = 15593, + [SMALL_STATE(363)] = 15600, + [SMALL_STATE(364)] = 15607, + [SMALL_STATE(365)] = 15614, + [SMALL_STATE(366)] = 15621, + [SMALL_STATE(367)] = 15628, + [SMALL_STATE(368)] = 15635, + [SMALL_STATE(369)] = 15642, + [SMALL_STATE(370)] = 15649, + [SMALL_STATE(371)] = 15656, + [SMALL_STATE(372)] = 15663, + [SMALL_STATE(373)] = 15670, }; 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(65), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [77] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), - [79] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(65), - [82] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(422), - [85] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(45), - [88] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(3), - [91] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(103), - [94] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(103), - [97] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(114), - [100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(171), - [103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(271), - [106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(250), - [109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(377), - [112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(231), - [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(416), - [118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(416), - [121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(411), - [124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(414), - [127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(357), - [130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(409), - [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(239), - [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(413), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_root, 1), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 3), - [219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 3), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 3), - [235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 3), - [237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 5), - [239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 5), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 3), - [245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 3), - [247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 3), - [249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 3), - [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_kind, 1), - [255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_kind, 1), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), - [265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), - [267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 5), - [273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 5), - [275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 4), - [277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 4), - [279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, .production_id = 5), - [281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5, .production_id = 5), - [283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), - [285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), - [287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3), - [293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3), - [295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), - [297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1), - [299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3), - [301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3), - [303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 3), - [305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 3), - [307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), - [309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1), - [311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 2, .production_id = 1), - [313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 2, .production_id = 1), - [315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), - [317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), - [319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 2), - [321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 2), - [323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__context_defined_function, 1), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 4), - [337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 4), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return, 2), - [349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return, 2), - [351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4), - [353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4), - [355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1), - [357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 3), - [363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 3), - [365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), - [367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(305), - [370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), - [372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(2), - [375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(300), - [378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(300), - [381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(301), - [384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(172), - [387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(385), - [390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(371), - [393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(399), - [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 1), - [402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 1), - [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 1), - [410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 1), - [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 1), - [416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 1), - [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 2), - [422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 2), - [424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), - [426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_else_repeat1, 2), - [428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(247), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 3), - [437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 3), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if, 3), - [443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if, 3), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_function, 1), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(141), - [462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(5), - [465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(136), - [468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(136), - [471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(137), - [474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(161), - [477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), - [479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(382), - [482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(358), - [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(400), - [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(141), - [505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(5), - [508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), - [510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(136), - [513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(136), - [516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(137), - [519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(161), - [522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(382), - [525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(358), - [528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(400), - [531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__context_defined_function, 2), - [533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_function, 2), - [535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 4, .production_id = 3), - [537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 4, .production_id = 3), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 3), - [543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 3), - [545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else, 2), - [547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else, 2), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 3), - [557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 3), - [559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 2), - [561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3, .production_id = 2), - [563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_assignment, 3), - [565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_assignment, 3), - [567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 3), - [569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 3), - [571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for, 5), - [573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for, 5), - [575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 5), - [577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 5), - [579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 2), - [581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 2), - [583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use, 2), - [585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use, 2), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_operator, 1), - [645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_operator, 1), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier_list, 2), - [667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 2), - [669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier_list, 3), - [671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 3), - [673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), - [675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), - [677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic_operator, 1), - [679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic_operator, 1), - [681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 1), - [683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 1), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(219), - [694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 3), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(449), - [735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), SHIFT_REPEAT(402), - [758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 1), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 3), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), SHIFT_REPEAT(389), - [773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 3), - [785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 4), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [799] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [69] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), + [71] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(55), + [74] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(355), + [77] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(26), + [80] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(3), + [83] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(69), + [86] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(69), + [89] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(71), + [92] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(162), + [95] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(184), + [98] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(226), + [101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(228), + [104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(365), + [107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(365), + [110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(331), + [113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(363), + [116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(286), + [119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(335), + [122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(199), + [125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(357), + [128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_root, 1), + [156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 3), + [198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 3), + [200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 3), + [204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 3), + [206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 3), + [220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 3), + [222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 5), + [224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 5), + [226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 3), + [228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 3), + [230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_kind, 1), + [234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_kind, 1), + [236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, .production_id = 6), + [244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5, .production_id = 6), + [246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 5), + [248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 5), + [250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), + [252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), + [254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), + [260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), + [262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), + [264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), + [266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), + [268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), + [270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 4), + [272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 4), + [274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 5), + [276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 5), + [278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, .production_id = 2), + [280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3, .production_id = 2), + [282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3), + [284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3), + [286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 2), + [288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 2), + [290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), + [292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1), + [294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3), + [296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3), + [298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), + [300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1), + [302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 3), + [304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 3), + [306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__context_defined_function, 1), + [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 4), + [316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 4), + [318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1), + [320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1), + [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return, 2), + [326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return, 2), + [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4), + [336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4), + [338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 3), + [340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 3), + [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), + [346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(139), + [349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), + [351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(4), + [354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(141), + [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(141), + [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(140), + [363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(150), + [366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(285), + [369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(333), + [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 1), + [378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 1), + [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 1), + [384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 1), + [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 2), + [392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 2), + [394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 1), + [396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 1), + [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), + [402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_else_repeat1, 2), + [404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(221), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if, 3), + [421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if, 3), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 3), + [429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 3), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_function, 1), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(107), + [444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(2), + [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(103), + [450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(103), + [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(105), + [456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(152), + [459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), + [461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(291), + [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(330), + [467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_function, 2), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(107), + [474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(2), + [477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), + [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(103), + [482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(103), + [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(105), + [488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(152), + [491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(291), + [494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(330), + [497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__context_defined_function, 2), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 4, .production_id = 3), + [503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 4, .production_id = 3), + [505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use, 2), + [507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use, 2), + [509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 2), + [511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 2), + [513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_assignment, 3), + [515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_assignment, 3), + [517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else, 2), + [519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else, 2), + [521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 3), + [523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 3), + [525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 3), + [527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 3), + [529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 5), + [531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 5), + [533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for, 5), + [535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for, 5), + [537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 3), + [539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 3), + [541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 1), + [543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3, .production_id = 1), + [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_operator, 1), + [559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_operator, 1), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), + [585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier_list, 3), + [587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 3), + [589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), + [591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier_list, 2), + [593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 2), + [595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic_operator, 1), + [597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic_operator, 1), + [599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 1), + [601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 1), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 3), + [609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 3), + [611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(197), + [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), SHIFT_REPEAT(342), + [643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(371), + [660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), + [662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_parameters, 2), + [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), SHIFT_REPEAT(327), + [669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 3), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 1), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 4), + [693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_parameters, 3), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [729] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), }; #ifdef __cplusplus