From 270c2fd1dc81ecc04bad29b8945f2854e827c906 Mon Sep 17 00:00:00 2001 From: Jeff Date: Tue, 23 Jan 2024 17:35:12 -0500 Subject: [PATCH] Begin implementing range value --- src/abstract_tree/type.rs | 3 + src/lib.rs | 9 +- src/value/mod.rs | 16 +- src/value/range.rs | 15 + tree-sitter-dust/corpus/index.txt | 6 +- tree-sitter-dust/corpus/range.txt | 15 + tree-sitter-dust/grammar.js | 12 +- tree-sitter-dust/src/grammar.json | 49 +- tree-sitter-dust/src/node-types.json | 27 +- tree-sitter-dust/src/parser.c | 32445 +++++++++++-------------- 10 files changed, 14839 insertions(+), 17758 deletions(-) create mode 100644 src/value/range.rs create mode 100644 tree-sitter-dust/corpus/range.txt diff --git a/src/abstract_tree/type.rs b/src/abstract_tree/type.rs index f338a19..9f61c75 100644 --- a/src/abstract_tree/type.rs +++ b/src/abstract_tree/type.rs @@ -21,6 +21,7 @@ pub enum Type { None, Number, String, + Range, Option(Box), } @@ -266,6 +267,7 @@ impl Format for Type { optional_type.format(output, indent_level); output.push(')'); } + Type::Range => todo!(), } } } @@ -304,6 +306,7 @@ impl Display for Type { Type::Option(inner_type) => { write!(f, "option({})", inner_type) } + Type::Range => todo!(), } } } diff --git a/src/lib.rs b/src/lib.rs index ceee1ae..7f9df6e 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -4,14 +4,7 @@ //! Using this library is simple and straightforward, see the [inferface] module for instructions on //! interpreting Dust code. Most of the language's features are implemented in the [tools] module. pub use crate::{ - abstract_tree::*, - built_in_functions::BuiltInFunction, - error::*, - interpret::*, - value::{ - function::Function, list::List, map::Map, structure::Structure, - type_definition::TypeDefintion, Value, - }, + abstract_tree::*, built_in_functions::BuiltInFunction, error::*, interpret::*, value::*, }; pub use tree_sitter::Node as SyntaxNode; diff --git a/src/value/mod.rs b/src/value/mod.rs index 9cdccd6..0dc0c16 100644 --- a/src/value/mod.rs +++ b/src/value/mod.rs @@ -1,7 +1,7 @@ //! Types that represent runtime values. use crate::{ error::{Error, Result}, - Function, Identifier, List, Map, Type, TypeDefintion, TypeSpecification, + Identifier, Type, TypeSpecification, }; use serde::{ @@ -18,9 +18,15 @@ use std::{ ops::{Add, AddAssign, Div, Mul, Rem, Sub, SubAssign}, }; +pub use self::{ + function::Function, list::List, map::Map, range::Range, structure::Structure, + type_definition::TypeDefintion, +}; + pub mod function; pub mod list; pub mod map; +pub mod range; pub mod structure; pub mod type_definition; @@ -38,6 +44,7 @@ pub enum Value { Float(f64), Integer(i64), Boolean(bool), + Range(Range), Option(Option>), TypeDefinition(TypeDefintion), } @@ -54,8 +61,6 @@ impl Value { } pub fn r#type(&self) -> Type { - - match self { Value::List(list) => { let mut previous_type = None; @@ -103,6 +108,7 @@ impl Value { } } Value::TypeDefinition(_) => todo!(), + Value::Range(_) => todo!(), } } @@ -472,6 +478,8 @@ impl Ord for Value { (Value::Function(_), _) => Ordering::Greater, (Value::TypeDefinition(left), Value::TypeDefinition(right)) => left.cmp(right), (Value::TypeDefinition(_), _) => Ordering::Greater, + (Value::Range(left), Value::Range(right)) => left.cmp(right), + (Value::Range(_), _) => Ordering::Greater, (Value::Option(left), Value::Option(right)) => left.cmp(right), (Value::Option(_), _) => Ordering::Less, } @@ -502,6 +510,7 @@ impl Serialize for Value { Value::Map(inner) => inner.serialize(serializer), Value::Function(inner) => inner.serialize(serializer), Value::TypeDefinition(inner) => inner.serialize(serializer), + Value::Range(range) => range.serialize(serializer), } } } @@ -524,6 +533,7 @@ impl Display for Value { Value::Map(map) => write!(f, "{map}"), Value::Function(function) => write!(f, "{function}"), Value::TypeDefinition(structure) => write!(f, "{structure}"), + Value::Range(range) => write!(f, "{range}"), } } } diff --git a/src/value/range.rs b/src/value/range.rs new file mode 100644 index 0000000..cfe4adb --- /dev/null +++ b/src/value/range.rs @@ -0,0 +1,15 @@ +use std::fmt::{self, Display, Formatter}; + +use serde::{Deserialize, Serialize}; + +#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Serialize, Deserialize)] +pub struct Range { + start: i64, + end: i64, +} + +impl Display for Range { + fn fmt(&self, f: &mut Formatter) -> fmt::Result { + write!(f, "{}..{}", self.start, self.end) + } +} diff --git a/tree-sitter-dust/corpus/index.txt b/tree-sitter-dust/corpus/index.txt index fc656fb..a535538 100644 --- a/tree-sitter-dust/corpus/index.txt +++ b/tree-sitter-dust/corpus/index.txt @@ -85,10 +85,8 @@ Nested Indexes (value (integer))))) (index_expression - (value - (integer))) - (expression - (value + (range + (integer) (integer))))))) ================================================================================ diff --git a/tree-sitter-dust/corpus/range.txt b/tree-sitter-dust/corpus/range.txt new file mode 100644 index 0000000..391dc11 --- /dev/null +++ b/tree-sitter-dust/corpus/range.txt @@ -0,0 +1,15 @@ +================================================================================ +Simple Range +================================================================================ + +0..10 + +-------------------------------------------------------------------------------- + +(root + (statement + (expression + (value + (range + (integer) + (integer)))))) diff --git a/tree-sitter-dust/grammar.js b/tree-sitter-dust/grammar.js index b17ee38..be286c3 100644 --- a/tree-sitter-dust/grammar.js +++ b/tree-sitter-dust/grammar.js @@ -86,6 +86,14 @@ module.exports = grammar({ $.option, $.built_in_value, $.structure, + $.range, + ), + + range: $ => + seq( + $.integer, + token.immediate('..'), + $.integer, ), structure: $ => @@ -253,9 +261,6 @@ module.exports = grammar({ $.index_expression, ':', $.index_expression, - optional( - seq('..', $.expression), - ), ), ), @@ -271,6 +276,7 @@ module.exports = grammar({ $.identifier, $.index, $.value, + $.range, ), ), diff --git a/tree-sitter-dust/src/grammar.json b/tree-sitter-dust/src/grammar.json index 26738c2..953dafc 100644 --- a/tree-sitter-dust/src/grammar.json +++ b/tree-sitter-dust/src/grammar.json @@ -252,6 +252,30 @@ { "type": "SYMBOL", "name": "structure" + }, + { + "type": "SYMBOL", + "name": "range" + } + ] + }, + "range": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "integer" + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": ".." + } + }, + { + "type": "SYMBOL", + "name": "integer" } ] }, @@ -756,27 +780,6 @@ { "type": "SYMBOL", "name": "index_expression" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ".." - }, - { - "type": "SYMBOL", - "name": "expression" - } - ] - }, - { - "type": "BLANK" - } - ] } ] } @@ -815,6 +818,10 @@ { "type": "SYMBOL", "name": "value" + }, + { + "type": "SYMBOL", + "name": "range" } ] } diff --git a/tree-sitter-dust/src/node-types.json b/tree-sitter-dust/src/node-types.json index 8019149..1f6e1b7 100644 --- a/tree-sitter-dust/src/node-types.json +++ b/tree-sitter-dust/src/node-types.json @@ -279,10 +279,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "expression", - "named": true - }, { "type": "index_expression", "named": true @@ -333,6 +329,10 @@ "type": "index", "named": true }, + { + "type": "range", + "named": true + }, { "type": "value", "named": true @@ -483,6 +483,21 @@ ] } }, + { + "type": "range", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "integer", + "named": true + } + ] + } + }, { "type": "return", "named": true, @@ -657,6 +672,10 @@ "type": "option", "named": true }, + { + "type": "range", + "named": true + }, { "type": "string", "named": true diff --git a/tree-sitter-dust/src/parser.c b/tree-sitter-dust/src/parser.c index afd9851..ff6ec8c 100644 --- a/tree-sitter-dust/src/parser.c +++ b/tree-sitter-dust/src/parser.c @@ -6,9 +6,9 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 493 +#define STATE_COUNT 436 #define LARGE_STATE_COUNT 48 -#define SYMBOL_COUNT 115 +#define SYMBOL_COUNT 116 #define ALIAS_COUNT 0 #define TOKEN_COUNT 68 #define EXTERNAL_TOKEN_COUNT 0 @@ -26,20 +26,20 @@ enum { anon_sym_async = 7, anon_sym_LBRACE = 8, anon_sym_RBRACE = 9, - anon_sym_struct = 10, - anon_sym_EQ = 11, - anon_sym_new = 12, - sym_integer = 13, - sym_float = 14, - sym_string = 15, - anon_sym_true = 16, - anon_sym_false = 17, - anon_sym_LBRACK = 18, - anon_sym_RBRACK = 19, - anon_sym_none = 20, - anon_sym_some = 21, - anon_sym_COLON = 22, - anon_sym_DOT_DOT = 23, + anon_sym_DOT_DOT = 10, + anon_sym_struct = 11, + anon_sym_EQ = 12, + anon_sym_new = 13, + sym_integer = 14, + sym_float = 15, + sym_string = 16, + anon_sym_true = 17, + anon_sym_false = 18, + anon_sym_LBRACK = 19, + anon_sym_RBRACK = 20, + anon_sym_none = 21, + anon_sym_some = 22, + anon_sym_COLON = 23, anon_sym_PLUS = 24, anon_sym_DASH = 25, anon_sym_STAR = 26, @@ -91,46 +91,47 @@ enum { aux_sym__expression_list = 72, sym_block = 73, sym_value = 74, - sym_structure = 75, - sym_new = 76, - sym_boolean = 77, - sym_list = 78, - sym_map = 79, - sym_option = 80, - sym_index = 81, - sym_index_expression = 82, - sym_math = 83, - sym_math_operator = 84, - sym_logic = 85, - sym_logic_operator = 86, - sym_assignment = 87, - sym_index_assignment = 88, - sym_assignment_operator = 89, - sym_if_else = 90, - sym_if = 91, - sym_else_if = 92, - sym_else = 93, - sym_match = 94, - sym_while = 95, - sym_for = 96, - sym_return = 97, - sym_type_specification = 98, - sym_type = 99, - sym_function = 100, - sym_function_expression = 101, - sym__function_expression_kind = 102, - sym_function_call = 103, - sym_yield = 104, - sym_built_in_value = 105, - aux_sym_root_repeat1 = 106, - aux_sym_structure_repeat1 = 107, - aux_sym_new_repeat1 = 108, - aux_sym_list_repeat1 = 109, - aux_sym_map_repeat1 = 110, - aux_sym_if_else_repeat1 = 111, - aux_sym_match_repeat1 = 112, - aux_sym_type_repeat1 = 113, - aux_sym_function_repeat1 = 114, + sym_range = 75, + sym_structure = 76, + sym_new = 77, + sym_boolean = 78, + sym_list = 79, + sym_map = 80, + sym_option = 81, + sym_index = 82, + sym_index_expression = 83, + sym_math = 84, + sym_math_operator = 85, + sym_logic = 86, + sym_logic_operator = 87, + sym_assignment = 88, + sym_index_assignment = 89, + sym_assignment_operator = 90, + sym_if_else = 91, + sym_if = 92, + sym_else_if = 93, + sym_else = 94, + sym_match = 95, + sym_while = 96, + sym_for = 97, + sym_return = 98, + sym_type_specification = 99, + sym_type = 100, + sym_function = 101, + sym_function_expression = 102, + sym__function_expression_kind = 103, + sym_function_call = 104, + sym_yield = 105, + sym_built_in_value = 106, + aux_sym_root_repeat1 = 107, + aux_sym_structure_repeat1 = 108, + aux_sym_new_repeat1 = 109, + aux_sym_list_repeat1 = 110, + aux_sym_map_repeat1 = 111, + aux_sym_if_else_repeat1 = 112, + aux_sym_match_repeat1 = 113, + aux_sym_type_repeat1 = 114, + aux_sym_function_repeat1 = 115, }; static const char * const ts_symbol_names[] = { @@ -144,6 +145,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_async] = "async", [anon_sym_LBRACE] = "{", [anon_sym_RBRACE] = "}", + [anon_sym_DOT_DOT] = "..", [anon_sym_struct] = "struct", [anon_sym_EQ] = "=", [anon_sym_new] = "new", @@ -157,7 +159,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_none] = "none", [anon_sym_some] = "some", [anon_sym_COLON] = ":", - [anon_sym_DOT_DOT] = "..", [anon_sym_PLUS] = "+", [anon_sym_DASH] = "-", [anon_sym_STAR] = "*", @@ -209,6 +210,7 @@ static const char * const ts_symbol_names[] = { [aux_sym__expression_list] = "_expression_list", [sym_block] = "block", [sym_value] = "value", + [sym_range] = "range", [sym_structure] = "structure", [sym_new] = "new", [sym_boolean] = "boolean", @@ -262,6 +264,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_async] = anon_sym_async, [anon_sym_LBRACE] = anon_sym_LBRACE, [anon_sym_RBRACE] = anon_sym_RBRACE, + [anon_sym_DOT_DOT] = anon_sym_DOT_DOT, [anon_sym_struct] = anon_sym_struct, [anon_sym_EQ] = anon_sym_EQ, [anon_sym_new] = anon_sym_new, @@ -275,7 +278,6 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_none] = anon_sym_none, [anon_sym_some] = anon_sym_some, [anon_sym_COLON] = anon_sym_COLON, - [anon_sym_DOT_DOT] = anon_sym_DOT_DOT, [anon_sym_PLUS] = anon_sym_PLUS, [anon_sym_DASH] = anon_sym_DASH, [anon_sym_STAR] = anon_sym_STAR, @@ -327,6 +329,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym__expression_list] = aux_sym__expression_list, [sym_block] = sym_block, [sym_value] = sym_value, + [sym_range] = sym_range, [sym_structure] = sym_structure, [sym_new] = sym_new, [sym_boolean] = sym_boolean, @@ -410,6 +413,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_DOT_DOT] = { + .visible = true, + .named = false, + }, [anon_sym_struct] = { .visible = true, .named = false, @@ -462,10 +469,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_DOT_DOT] = { - .visible = true, - .named = false, - }, [anon_sym_PLUS] = { .visible = true, .named = false, @@ -670,6 +673,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_range] = { + .visible = true, + .named = true, + }, [sym_structure] = { .visible = true, .named = true, @@ -848,54 +855,54 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4] = 2, [5] = 5, [6] = 6, - [7] = 7, + [7] = 6, [8] = 8, - [9] = 7, + [9] = 9, [10] = 10, - [11] = 7, - [12] = 7, + [11] = 9, + [12] = 6, [13] = 10, [14] = 8, - [15] = 6, - [16] = 7, + [15] = 9, + [16] = 6, [17] = 10, [18] = 8, - [19] = 6, + [19] = 9, [20] = 6, - [21] = 6, - [22] = 8, - [23] = 10, - [24] = 24, - [25] = 8, - [26] = 10, + [21] = 8, + [22] = 10, + [23] = 8, + [24] = 10, + [25] = 25, + [26] = 9, [27] = 27, [28] = 28, [29] = 29, [30] = 30, [31] = 31, - [32] = 32, + [32] = 30, [33] = 33, - [34] = 32, - [35] = 35, - [36] = 31, - [37] = 32, - [38] = 38, - [39] = 31, - [40] = 29, + [34] = 34, + [35] = 27, + [36] = 36, + [37] = 37, + [38] = 27, + [39] = 39, + [40] = 36, [41] = 41, - [42] = 41, - [43] = 43, + [42] = 29, + [43] = 36, [44] = 44, - [45] = 41, + [45] = 30, [46] = 29, [47] = 47, [48] = 48, [49] = 49, [50] = 50, [51] = 51, - [52] = 48, - [53] = 50, - [54] = 49, + [52] = 52, + [53] = 53, + [54] = 54, [55] = 55, [56] = 56, [57] = 57, @@ -915,12 +922,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [71] = 71, [72] = 72, [73] = 73, - [74] = 74, - [75] = 64, + [74] = 73, + [75] = 75, [76] = 76, - [77] = 77, - [78] = 78, - [79] = 79, + [77] = 71, + [78] = 76, + [79] = 51, [80] = 80, [81] = 81, [82] = 82, @@ -930,313 +937,313 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [86] = 86, [87] = 87, [88] = 88, - [89] = 49, - [90] = 50, - [91] = 48, - [92] = 88, - [93] = 48, - [94] = 50, - [95] = 50, - [96] = 87, - [97] = 49, - [98] = 48, - [99] = 76, - [100] = 62, - [101] = 77, - [102] = 78, - [103] = 86, + [89] = 89, + [90] = 90, + [91] = 62, + [92] = 66, + [93] = 56, + [94] = 57, + [95] = 54, + [96] = 67, + [97] = 63, + [98] = 65, + [99] = 58, + [100] = 61, + [101] = 60, + [102] = 71, + [103] = 103, [104] = 70, - [105] = 79, - [106] = 66, - [107] = 74, - [108] = 64, - [109] = 65, - [110] = 55, - [111] = 61, - [112] = 59, - [113] = 58, - [114] = 68, - [115] = 83, - [116] = 85, - [117] = 57, - [118] = 73, - [119] = 69, - [120] = 60, - [121] = 71, - [122] = 56, - [123] = 82, - [124] = 67, - [125] = 63, - [126] = 87, - [127] = 64, - [128] = 80, - [129] = 81, - [130] = 51, + [105] = 48, + [106] = 106, + [107] = 68, + [108] = 55, + [109] = 106, + [110] = 64, + [111] = 53, + [112] = 69, + [113] = 59, + [114] = 52, + [115] = 115, + [116] = 116, + [117] = 117, + [118] = 115, + [119] = 119, + [120] = 116, + [121] = 121, + [122] = 121, + [123] = 123, + [124] = 124, + [125] = 117, + [126] = 124, + [127] = 123, + [128] = 128, + [129] = 116, + [130] = 121, [131] = 131, - [132] = 132, - [133] = 132, - [134] = 84, - [135] = 135, - [136] = 136, - [137] = 137, - [138] = 138, + [132] = 117, + [133] = 50, + [134] = 116, + [135] = 116, + [136] = 119, + [137] = 123, + [138] = 119, [139] = 139, - [140] = 135, - [141] = 141, - [142] = 142, - [143] = 143, - [144] = 50, - [145] = 48, - [146] = 141, - [147] = 137, - [148] = 138, - [149] = 149, - [150] = 137, - [151] = 149, - [152] = 139, - [153] = 143, - [154] = 142, - [155] = 141, - [156] = 137, + [140] = 128, + [141] = 115, + [142] = 116, + [143] = 128, + [144] = 72, + [145] = 75, + [146] = 146, + [147] = 147, + [148] = 146, + [149] = 146, + [150] = 150, + [151] = 150, + [152] = 147, + [153] = 153, + [154] = 71, + [155] = 76, + [156] = 156, [157] = 157, - [158] = 142, - [159] = 137, - [160] = 139, - [161] = 149, - [162] = 137, - [163] = 138, - [164] = 135, - [165] = 87, - [166] = 166, - [167] = 167, - [168] = 168, - [169] = 166, - [170] = 170, - [171] = 171, - [172] = 172, - [173] = 171, - [174] = 167, - [175] = 175, - [176] = 176, - [177] = 167, - [178] = 176, - [179] = 171, - [180] = 171, - [181] = 167, - [182] = 167, - [183] = 176, - [184] = 175, - [185] = 167, - [186] = 176, - [187] = 176, - [188] = 171, - [189] = 171, - [190] = 167, - [191] = 176, - [192] = 167, - [193] = 171, - [194] = 176, - [195] = 176, - [196] = 88, + [158] = 158, + [159] = 156, + [160] = 157, + [161] = 161, + [162] = 162, + [163] = 76, + [164] = 158, + [165] = 157, + [166] = 153, + [167] = 158, + [168] = 146, + [169] = 150, + [170] = 147, + [171] = 161, + [172] = 161, + [173] = 162, + [174] = 150, + [175] = 89, + [176] = 90, + [177] = 88, + [178] = 86, + [179] = 73, + [180] = 82, + [181] = 81, + [182] = 83, + [183] = 80, + [184] = 85, + [185] = 73, + [186] = 84, + [187] = 87, + [188] = 188, + [189] = 189, + [190] = 190, + [191] = 191, + [192] = 192, + [193] = 63, + [194] = 65, + [195] = 195, + [196] = 61, [197] = 197, - [198] = 171, - [199] = 176, - [200] = 175, - [201] = 88, - [202] = 167, - [203] = 176, - [204] = 197, - [205] = 171, - [206] = 176, - [207] = 171, - [208] = 167, - [209] = 176, - [210] = 168, - [211] = 167, - [212] = 167, - [213] = 172, - [214] = 197, - [215] = 197, - [216] = 170, - [217] = 166, - [218] = 218, - [219] = 218, - [220] = 168, - [221] = 171, - [222] = 222, - [223] = 223, - [224] = 224, - [225] = 225, - [226] = 226, - [227] = 82, - [228] = 228, - [229] = 229, - [230] = 67, + [198] = 198, + [199] = 199, + [200] = 200, + [201] = 200, + [202] = 202, + [203] = 199, + [204] = 204, + [205] = 205, + [206] = 206, + [207] = 207, + [208] = 208, + [209] = 209, + [210] = 210, + [211] = 211, + [212] = 199, + [213] = 213, + [214] = 191, + [215] = 190, + [216] = 192, + [217] = 217, + [218] = 197, + [219] = 63, + [220] = 195, + [221] = 61, + [222] = 65, + [223] = 51, + [224] = 52, + [225] = 53, + [226] = 59, + [227] = 69, + [228] = 63, + [229] = 62, + [230] = 70, [231] = 60, - [232] = 232, - [233] = 233, - [234] = 234, - [235] = 235, - [236] = 236, - [237] = 237, - [238] = 238, - [239] = 239, - [240] = 232, - [241] = 241, - [242] = 242, - [243] = 243, - [244] = 244, - [245] = 245, - [246] = 224, - [247] = 245, - [248] = 245, - [249] = 245, - [250] = 225, - [251] = 245, - [252] = 245, - [253] = 245, - [254] = 226, - [255] = 50, - [256] = 48, - [257] = 49, - [258] = 258, - [259] = 68, - [260] = 67, - [261] = 57, - [262] = 50, - [263] = 48, - [264] = 73, - [265] = 87, - [266] = 80, - [267] = 60, - [268] = 64, - [269] = 71, - [270] = 62, - [271] = 83, - [272] = 228, - [273] = 49, - [274] = 58, - [275] = 59, - [276] = 61, - [277] = 69, - [278] = 82, - [279] = 81, - [280] = 55, - [281] = 65, - [282] = 85, - [283] = 67, - [284] = 82, - [285] = 74, - [286] = 60, - [287] = 76, - [288] = 63, - [289] = 66, - [290] = 56, - [291] = 77, - [292] = 229, - [293] = 79, - [294] = 70, - [295] = 78, - [296] = 86, - [297] = 64, - [298] = 234, - [299] = 244, - [300] = 232, - [301] = 232, - [302] = 238, - [303] = 233, - [304] = 237, - [305] = 243, - [306] = 239, - [307] = 236, - [308] = 241, - [309] = 235, - [310] = 242, - [311] = 51, - [312] = 312, + [232] = 68, + [233] = 65, + [234] = 67, + [235] = 58, + [236] = 57, + [237] = 71, + [238] = 54, + [239] = 55, + [240] = 56, + [241] = 64, + [242] = 66, + [243] = 61, + [244] = 210, + [245] = 204, + [246] = 205, + [247] = 198, + [248] = 209, + [249] = 208, + [250] = 213, + [251] = 202, + [252] = 206, + [253] = 200, + [254] = 211, + [255] = 200, + [256] = 207, + [257] = 257, + [258] = 48, + [259] = 76, + [260] = 260, + [261] = 50, + [262] = 71, + [263] = 76, + [264] = 85, + [265] = 82, + [266] = 266, + [267] = 267, + [268] = 87, + [269] = 84, + [270] = 80, + [271] = 89, + [272] = 86, + [273] = 72, + [274] = 75, + [275] = 81, + [276] = 83, + [277] = 88, + [278] = 90, + [279] = 279, + [280] = 280, + [281] = 73, + [282] = 73, + [283] = 283, + [284] = 284, + [285] = 284, + [286] = 286, + [287] = 287, + [288] = 287, + [289] = 287, + [290] = 286, + [291] = 286, + [292] = 283, + [293] = 293, + [294] = 294, + [295] = 295, + [296] = 296, + [297] = 297, + [298] = 298, + [299] = 298, + [300] = 296, + [301] = 72, + [302] = 302, + [303] = 75, + [304] = 304, + [305] = 298, + [306] = 76, + [307] = 307, + [308] = 308, + [309] = 309, + [310] = 310, + [311] = 85, + [312] = 309, [313] = 313, - [314] = 84, - [315] = 87, - [316] = 50, - [317] = 48, - [318] = 318, + [314] = 309, + [315] = 313, + [316] = 316, + [317] = 309, + [318] = 313, [319] = 319, - [320] = 320, + [320] = 313, [321] = 321, - [322] = 49, - [323] = 88, - [324] = 88, - [325] = 48, - [326] = 50, + [322] = 322, + [323] = 321, + [324] = 321, + [325] = 325, + [326] = 326, [327] = 327, [328] = 328, - [329] = 49, - [330] = 48, - [331] = 327, - [332] = 50, - [333] = 333, - [334] = 328, + [329] = 329, + [330] = 330, + [331] = 191, + [332] = 332, + [333] = 190, + [334] = 334, [335] = 335, - [336] = 335, - [337] = 333, - [338] = 335, - [339] = 327, + [336] = 334, + [337] = 334, + [338] = 338, + [339] = 339, [340] = 340, [341] = 341, [342] = 342, - [343] = 69, - [344] = 87, - [345] = 64, + [343] = 343, + [344] = 344, + [345] = 345, [346] = 346, [347] = 347, - [348] = 346, - [349] = 48, + [348] = 347, + [349] = 344, [350] = 350, [351] = 351, - [352] = 352, - [353] = 353, - [354] = 347, - [355] = 347, + [352] = 351, + [353] = 339, + [354] = 351, + [355] = 340, [356] = 356, - [357] = 50, - [358] = 358, + [357] = 341, + [358] = 342, [359] = 359, [360] = 360, [361] = 361, - [362] = 359, - [363] = 359, - [364] = 359, - [365] = 358, - [366] = 359, - [367] = 359, - [368] = 358, - [369] = 359, - [370] = 359, + [362] = 339, + [363] = 342, + [364] = 364, + [365] = 365, + [366] = 366, + [367] = 340, + [368] = 343, + [369] = 341, + [370] = 344, [371] = 371, - [372] = 359, - [373] = 359, - [374] = 359, - [375] = 359, - [376] = 358, + [372] = 345, + [373] = 345, + [374] = 347, + [375] = 343, + [376] = 376, [377] = 377, - [378] = 377, - [379] = 379, - [380] = 377, + [378] = 378, + [379] = 376, + [380] = 380, [381] = 381, [382] = 382, [383] = 383, [384] = 384, [385] = 385, [386] = 386, - [387] = 225, - [388] = 224, - [389] = 389, + [387] = 385, + [388] = 388, + [389] = 380, [390] = 390, - [391] = 391, - [392] = 391, - [393] = 391, - [394] = 394, - [395] = 395, + [391] = 385, + [392] = 378, + [393] = 378, + [394] = 380, + [395] = 376, [396] = 396, [397] = 397, [398] = 398, @@ -1244,96 +1251,39 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [400] = 400, [401] = 398, [402] = 402, - [403] = 394, + [403] = 403, [404] = 404, - [405] = 399, - [406] = 406, + [405] = 405, + [406] = 396, [407] = 407, - [408] = 407, - [409] = 396, - [410] = 410, - [411] = 411, - [412] = 394, - [413] = 413, - [414] = 396, - [415] = 404, - [416] = 410, - [417] = 404, + [408] = 403, + [409] = 409, + [410] = 396, + [411] = 400, + [412] = 402, + [413] = 400, + [414] = 397, + [415] = 415, + [416] = 415, + [417] = 417, [418] = 398, - [419] = 411, - [420] = 410, - [421] = 421, - [422] = 422, - [423] = 422, - [424] = 424, - [425] = 411, - [426] = 422, - [427] = 407, - [428] = 428, - [429] = 399, - [430] = 430, - [431] = 431, - [432] = 432, - [433] = 433, - [434] = 434, - [435] = 435, - [436] = 436, - [437] = 437, - [438] = 435, - [439] = 439, - [440] = 440, - [441] = 432, - [442] = 435, - [443] = 439, - [444] = 444, - [445] = 445, - [446] = 446, - [447] = 437, - [448] = 448, - [449] = 437, - [450] = 439, - [451] = 432, - [452] = 452, - [453] = 453, - [454] = 454, - [455] = 455, - [456] = 456, - [457] = 457, - [458] = 458, - [459] = 459, - [460] = 452, - [461] = 456, - [462] = 454, - [463] = 459, - [464] = 452, - [465] = 465, - [466] = 466, - [467] = 467, - [468] = 468, - [469] = 459, - [470] = 456, - [471] = 457, - [472] = 455, - [473] = 454, - [474] = 454, - [475] = 454, - [476] = 452, - [477] = 477, - [478] = 478, - [479] = 479, - [480] = 480, - [481] = 457, - [482] = 452, - [483] = 483, - [484] = 479, - [485] = 452, - [486] = 458, - [487] = 477, - [488] = 452, - [489] = 477, - [490] = 458, - [491] = 479, - [492] = 455, + [419] = 397, + [420] = 403, + [421] = 415, + [422] = 400, + [423] = 423, + [424] = 400, + [425] = 425, + [426] = 426, + [427] = 427, + [428] = 425, + [429] = 429, + [430] = 427, + [431] = 426, + [432] = 426, + [433] = 427, + [434] = 425, + [435] = 402, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -1341,513 +1291,648 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(26); - if (lookahead == '!') ADVANCE(11); - if (lookahead == '"') ADVANCE(6); - if (lookahead == '#') ADVANCE(21); - if (lookahead == '%') ADVANCE(61); - if (lookahead == '&') ADVANCE(8); - if (lookahead == '\'') ADVANCE(9); - if (lookahead == '(') ADVANCE(30); - if (lookahead == ')') ADVANCE(31); - if (lookahead == '*') ADVANCE(59); - if (lookahead == '+') ADVANCE(55); - if (lookahead == ',') ADVANCE(32); - if (lookahead == '-') ADVANCE(58); - if (lookahead == '.') ADVANCE(10); - if (lookahead == '/') ADVANCE(60); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(47); - if (lookahead == ':') ADVANCE(52); - if (lookahead == ';') ADVANCE(29); - if (lookahead == '<') ADVANCE(68); - if (lookahead == '=') ADVANCE(46); - if (lookahead == '>') ADVANCE(67); - if (lookahead == '[') ADVANCE(50); - if (lookahead == ']') ADVANCE(51); - if (lookahead == '`') ADVANCE(15); - if (lookahead == 'a') ADVANCE(41); - if (lookahead == 'e') ADVANCE(39); - if (lookahead == '{') ADVANCE(33); - if (lookahead == '|') ADVANCE(22); - if (lookahead == '}') ADVANCE(34); + if (eof) ADVANCE(30); + if (lookahead == '!') ADVANCE(13); + if (lookahead == '"') ADVANCE(8); + if (lookahead == '#') ADVANCE(22); + if (lookahead == '%') ADVANCE(66); + if (lookahead == '&') ADVANCE(10); + if (lookahead == '\'') ADVANCE(11); + if (lookahead == '(') ADVANCE(34); + if (lookahead == ')') ADVANCE(35); + if (lookahead == '*') ADVANCE(64); + if (lookahead == '+') ADVANCE(60); + if (lookahead == ',') ADVANCE(36); + if (lookahead == '-') ADVANCE(63); + if (lookahead == '.') ADVANCE(12); + if (lookahead == '/') ADVANCE(65); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(52); + if (lookahead == ':') ADVANCE(58); + if (lookahead == ';') ADVANCE(33); + if (lookahead == '<') ADVANCE(73); + if (lookahead == '=') ADVANCE(51); + if (lookahead == '>') ADVANCE(72); + if (lookahead == '[') ADVANCE(56); + if (lookahead == ']') ADVANCE(57); + if (lookahead == '`') ADVANCE(16); + if (lookahead == 'a') ADVANCE(45); + if (lookahead == 'e') ADVANCE(43); + if (lookahead == '{') ADVANCE(37); + if (lookahead == '|') ADVANCE(23); + if (lookahead == '}') ADVANCE(38); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(0) + lookahead == ' ') SKIP(27) if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(44); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 1: - if (lookahead == '!') ADVANCE(11); - if (lookahead == '"') ADVANCE(6); - if (lookahead == '#') ADVANCE(21); - if (lookahead == '%') ADVANCE(61); - if (lookahead == '&') ADVANCE(8); - if (lookahead == '\'') ADVANCE(9); - if (lookahead == '(') ADVANCE(30); - if (lookahead == ')') ADVANCE(31); - if (lookahead == '*') ADVANCE(59); - if (lookahead == '+') ADVANCE(55); - if (lookahead == ',') ADVANCE(32); - if (lookahead == '-') ADVANCE(58); - if (lookahead == '.') ADVANCE(10); - if (lookahead == '/') ADVANCE(60); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(47); - if (lookahead == ':') ADVANCE(52); - if (lookahead == ';') ADVANCE(29); - if (lookahead == '<') ADVANCE(68); - if (lookahead == '=') ADVANCE(45); - if (lookahead == '>') ADVANCE(67); - if (lookahead == '[') ADVANCE(50); - if (lookahead == ']') ADVANCE(51); - if (lookahead == '`') ADVANCE(15); - if (lookahead == '{') ADVANCE(33); - if (lookahead == '|') ADVANCE(22); - if (lookahead == '}') ADVANCE(34); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(1) - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(44); - END_STATE(); - case 2: - if (lookahead == '!') ADVANCE(11); - if (lookahead == '#') ADVANCE(21); - if (lookahead == '%') ADVANCE(61); - if (lookahead == '&') ADVANCE(8); - if (lookahead == '(') ADVANCE(30); - if (lookahead == ')') ADVANCE(31); - if (lookahead == '*') ADVANCE(59); - if (lookahead == '+') ADVANCE(55); - if (lookahead == ',') ADVANCE(32); - if (lookahead == '-') ADVANCE(56); - if (lookahead == '.') ADVANCE(10); - if (lookahead == '/') ADVANCE(60); - if (lookahead == ':') ADVANCE(52); - if (lookahead == ';') ADVANCE(29); - if (lookahead == '<') ADVANCE(68); - if (lookahead == '=') ADVANCE(46); - if (lookahead == '>') ADVANCE(67); - if (lookahead == '{') ADVANCE(33); - if (lookahead == '|') ADVANCE(22); - if (lookahead == '}') ADVANCE(34); + if (lookahead == '!') ADVANCE(13); + if (lookahead == '"') ADVANCE(8); + if (lookahead == '#') ADVANCE(22); + if (lookahead == '%') ADVANCE(66); + if (lookahead == '&') ADVANCE(10); + if (lookahead == '\'') ADVANCE(11); + if (lookahead == '(') ADVANCE(34); + if (lookahead == ')') ADVANCE(35); + if (lookahead == '*') ADVANCE(64); + if (lookahead == '+') ADVANCE(60); + if (lookahead == ',') ADVANCE(36); + if (lookahead == '-') ADVANCE(63); + if (lookahead == '.') ADVANCE(12); + if (lookahead == '/') ADVANCE(65); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(52); + if (lookahead == ':') ADVANCE(58); + if (lookahead == ';') ADVANCE(33); + if (lookahead == '<') ADVANCE(73); + if (lookahead == '=') ADVANCE(50); + if (lookahead == '>') ADVANCE(72); + if (lookahead == '[') ADVANCE(56); + if (lookahead == ']') ADVANCE(57); + if (lookahead == '`') ADVANCE(16); + if (lookahead == '{') ADVANCE(37); + if (lookahead == '|') ADVANCE(23); + if (lookahead == '}') ADVANCE(38); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(2) if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(44); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); - case 3: - if (lookahead == '!') ADVANCE(11); - if (lookahead == '#') ADVANCE(21); - if (lookahead == '%') ADVANCE(61); - if (lookahead == '&') ADVANCE(8); - if (lookahead == '(') ADVANCE(30); - if (lookahead == ')') ADVANCE(31); - if (lookahead == '*') ADVANCE(59); - if (lookahead == '+') ADVANCE(54); - if (lookahead == ',') ADVANCE(32); - if (lookahead == '-') ADVANCE(57); - if (lookahead == '/') ADVANCE(60); - if (lookahead == ':') ADVANCE(52); - if (lookahead == ';') ADVANCE(29); - if (lookahead == '<') ADVANCE(68); - if (lookahead == '=') ADVANCE(12); - if (lookahead == '>') ADVANCE(67); - if (lookahead == '{') ADVANCE(33); - if (lookahead == '|') ADVANCE(22); - if (lookahead == '}') ADVANCE(34); + case 2: + if (lookahead == '!') ADVANCE(13); + if (lookahead == '"') ADVANCE(8); + if (lookahead == '#') ADVANCE(22); + if (lookahead == '%') ADVANCE(66); + if (lookahead == '&') ADVANCE(10); + if (lookahead == '\'') ADVANCE(11); + if (lookahead == '(') ADVANCE(34); + if (lookahead == ')') ADVANCE(35); + if (lookahead == '*') ADVANCE(64); + if (lookahead == '+') ADVANCE(60); + if (lookahead == ',') ADVANCE(36); + if (lookahead == '-') ADVANCE(63); + if (lookahead == '/') ADVANCE(65); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(52); + if (lookahead == ':') ADVANCE(58); + if (lookahead == ';') ADVANCE(33); + if (lookahead == '<') ADVANCE(73); + if (lookahead == '=') ADVANCE(50); + if (lookahead == '>') ADVANCE(72); + if (lookahead == '[') ADVANCE(56); + if (lookahead == ']') ADVANCE(57); + if (lookahead == '`') ADVANCE(16); + if (lookahead == '{') ADVANCE(37); + if (lookahead == '|') ADVANCE(23); + if (lookahead == '}') ADVANCE(38); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(3) + lookahead == ' ') SKIP(2) if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(44); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); - case 4: - if (lookahead == '!') ADVANCE(11); - if (lookahead == '#') ADVANCE(21); - if (lookahead == '%') ADVANCE(61); - if (lookahead == '&') ADVANCE(8); - if (lookahead == '(') ADVANCE(30); - if (lookahead == '*') ADVANCE(59); - if (lookahead == '+') ADVANCE(55); - if (lookahead == ',') ADVANCE(32); - if (lookahead == '-') ADVANCE(56); - if (lookahead == '/') ADVANCE(60); - if (lookahead == ':') ADVANCE(52); - if (lookahead == ';') ADVANCE(29); - if (lookahead == '<') ADVANCE(68); - if (lookahead == '=') ADVANCE(45); - if (lookahead == '>') ADVANCE(67); - if (lookahead == '|') ADVANCE(22); - if (lookahead == '}') ADVANCE(34); + case 3: + if (lookahead == '!') ADVANCE(13); + if (lookahead == '#') ADVANCE(22); + if (lookahead == '%') ADVANCE(66); + if (lookahead == '&') ADVANCE(10); + if (lookahead == '(') ADVANCE(34); + if (lookahead == ')') ADVANCE(35); + if (lookahead == '*') ADVANCE(64); + if (lookahead == '+') ADVANCE(60); + if (lookahead == ',') ADVANCE(36); + if (lookahead == '-') ADVANCE(61); + if (lookahead == '.') ADVANCE(12); + if (lookahead == '/') ADVANCE(65); + if (lookahead == ':') ADVANCE(58); + if (lookahead == ';') ADVANCE(33); + if (lookahead == '<') ADVANCE(73); + if (lookahead == '=') ADVANCE(51); + if (lookahead == '>') ADVANCE(72); + if (lookahead == '{') ADVANCE(37); + if (lookahead == '|') ADVANCE(23); + if (lookahead == '}') ADVANCE(38); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(4) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(44); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); + END_STATE(); + case 4: + if (lookahead == '!') ADVANCE(13); + if (lookahead == '#') ADVANCE(22); + if (lookahead == '%') ADVANCE(66); + if (lookahead == '&') ADVANCE(10); + if (lookahead == '(') ADVANCE(34); + if (lookahead == ')') ADVANCE(35); + if (lookahead == '*') ADVANCE(64); + if (lookahead == '+') ADVANCE(60); + if (lookahead == ',') ADVANCE(36); + if (lookahead == '-') ADVANCE(61); + if (lookahead == '/') ADVANCE(65); + if (lookahead == ':') ADVANCE(58); + if (lookahead == ';') ADVANCE(33); + if (lookahead == '<') ADVANCE(73); + if (lookahead == '=') ADVANCE(51); + if (lookahead == '>') ADVANCE(72); + if (lookahead == '{') ADVANCE(37); + if (lookahead == '|') ADVANCE(23); + if (lookahead == '}') ADVANCE(38); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(4) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 5: - if (lookahead == '"') ADVANCE(6); - if (lookahead == '#') ADVANCE(21); - if (lookahead == '\'') ADVANCE(9); - if (lookahead == '(') ADVANCE(30); - if (lookahead == '*') ADVANCE(59); - if (lookahead == ',') ADVANCE(32); - if (lookahead == '-') ADVANCE(23); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(47); - if (lookahead == ';') ADVANCE(29); + if (lookahead == '!') ADVANCE(13); + if (lookahead == '#') ADVANCE(22); + if (lookahead == '%') ADVANCE(66); + if (lookahead == '&') ADVANCE(10); + 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(65); + if (lookahead == ':') ADVANCE(58); + if (lookahead == ';') ADVANCE(33); + if (lookahead == '<') ADVANCE(73); if (lookahead == '=') ADVANCE(14); - if (lookahead == '>') ADVANCE(66); - if (lookahead == '[') ADVANCE(50); - if (lookahead == '`') ADVANCE(15); - if (lookahead == 'e') ADVANCE(39); - if (lookahead == '{') ADVANCE(33); - if (lookahead == '}') ADVANCE(34); + if (lookahead == '>') ADVANCE(72); + if (lookahead == '{') ADVANCE(37); + if (lookahead == '|') ADVANCE(23); + if (lookahead == '}') ADVANCE(38); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(5) if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(44); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 6: - if (lookahead == '"') ADVANCE(49); - if (lookahead != 0) ADVANCE(6); + if (lookahead == '!') ADVANCE(13); + if (lookahead == '#') ADVANCE(22); + if (lookahead == '%') ADVANCE(66); + if (lookahead == '&') ADVANCE(10); + if (lookahead == '(') ADVANCE(34); + if (lookahead == '*') ADVANCE(64); + if (lookahead == '+') ADVANCE(60); + if (lookahead == ',') ADVANCE(36); + if (lookahead == '-') ADVANCE(61); + if (lookahead == '/') ADVANCE(65); + if (lookahead == ':') ADVANCE(58); + if (lookahead == ';') ADVANCE(33); + if (lookahead == '<') ADVANCE(73); + if (lookahead == '=') ADVANCE(50); + if (lookahead == '>') ADVANCE(72); + if (lookahead == '|') ADVANCE(23); + if (lookahead == '}') ADVANCE(38); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(6) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 7: - if (lookahead == '#') ADVANCE(21); - if (lookahead == '(') ADVANCE(30); - if (lookahead == ')') ADVANCE(31); - if (lookahead == ',') ADVANCE(32); - if (lookahead == '-') ADVANCE(13); - if (lookahead == '>') ADVANCE(66); - if (lookahead == '[') ADVANCE(50); - if (lookahead == ']') ADVANCE(51); + if (lookahead == '"') ADVANCE(8); + if (lookahead == '#') ADVANCE(22); + if (lookahead == '\'') ADVANCE(11); + if (lookahead == '(') ADVANCE(34); + if (lookahead == '*') ADVANCE(64); + if (lookahead == ',') ADVANCE(36); + if (lookahead == '-') ADVANCE(24); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(52); + if (lookahead == ';') ADVANCE(33); + if (lookahead == '=') ADVANCE(15); + if (lookahead == '>') ADVANCE(71); + if (lookahead == '[') ADVANCE(56); + if (lookahead == '`') ADVANCE(16); + if (lookahead == 'e') ADVANCE(43); + if (lookahead == '{') ADVANCE(37); + if (lookahead == '}') ADVANCE(38); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(7) if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(44); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 8: - if (lookahead == '&') ADVANCE(64); + if (lookahead == '"') ADVANCE(55); + if (lookahead != 0) ADVANCE(8); END_STATE(); case 9: - if (lookahead == '\'') ADVANCE(49); - if (lookahead != 0) ADVANCE(9); - END_STATE(); - case 10: - if (lookahead == '.') ADVANCE(53); - END_STATE(); - case 11: - if (lookahead == '=') ADVANCE(63); - END_STATE(); - case 12: - if (lookahead == '=') ADVANCE(62); - if (lookahead == '>') ADVANCE(74); - END_STATE(); - case 13: - if (lookahead == '>') ADVANCE(76); - END_STATE(); - case 14: - if (lookahead == '>') ADVANCE(74); - END_STATE(); - case 15: - if (lookahead == '`') ADVANCE(49); - if (lookahead != 0) ADVANCE(15); - END_STATE(); - case 16: - if (lookahead == 'f') ADVANCE(19); - END_STATE(); - case 17: - if (lookahead == 'f') ADVANCE(73); - END_STATE(); - case 18: - if (lookahead == 'i') ADVANCE(17); - END_STATE(); - case 19: - if (lookahead == 'o') ADVANCE(20); - END_STATE(); - case 20: - if (lookahead == 'r') ADVANCE(75); - END_STATE(); - case 21: - if (lookahead == '|') ADVANCE(28); - if (lookahead == '\n' || - lookahead == '#') ADVANCE(27); - if (lookahead != 0) ADVANCE(21); - END_STATE(); - case 22: - if (lookahead == '|') ADVANCE(65); - END_STATE(); - case 23: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(47); - END_STATE(); - case 24: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48); - END_STATE(); - case 25: - if (eof) ADVANCE(26); - if (lookahead == '!') ADVANCE(11); - if (lookahead == '"') ADVANCE(6); - if (lookahead == '#') ADVANCE(21); - if (lookahead == '%') ADVANCE(61); - if (lookahead == '&') ADVANCE(8); - if (lookahead == '\'') ADVANCE(9); - if (lookahead == '(') ADVANCE(30); - if (lookahead == '*') ADVANCE(59); - if (lookahead == '+') ADVANCE(55); - if (lookahead == '-') ADVANCE(58); - if (lookahead == '.') ADVANCE(10); - if (lookahead == '/') ADVANCE(60); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(47); - if (lookahead == ':') ADVANCE(52); - if (lookahead == ';') ADVANCE(29); - if (lookahead == '<') ADVANCE(68); - if (lookahead == '=') ADVANCE(45); - if (lookahead == '>') ADVANCE(67); - if (lookahead == '[') ADVANCE(50); - if (lookahead == '`') ADVANCE(15); - if (lookahead == 'a') ADVANCE(41); - if (lookahead == '{') ADVANCE(33); - if (lookahead == '|') ADVANCE(22); - if (lookahead == '}') ADVANCE(34); + if (lookahead == '#') ADVANCE(22); + if (lookahead == '(') ADVANCE(34); + if (lookahead == ')') ADVANCE(35); + if (lookahead == ',') ADVANCE(36); + if (lookahead == '-') ADVANCE(26); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(53); + if (lookahead == '>') ADVANCE(71); + if (lookahead == '[') ADVANCE(56); + if (lookahead == ']') ADVANCE(57); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(25) + lookahead == ' ') SKIP(9) if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(44); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); + END_STATE(); + case 10: + if (lookahead == '&') ADVANCE(69); + END_STATE(); + case 11: + if (lookahead == '\'') ADVANCE(55); + if (lookahead != 0) ADVANCE(11); + END_STATE(); + case 12: + if (lookahead == '.') ADVANCE(49); + END_STATE(); + case 13: + if (lookahead == '=') ADVANCE(68); + END_STATE(); + case 14: + if (lookahead == '=') ADVANCE(67); + if (lookahead == '>') ADVANCE(79); + END_STATE(); + case 15: + if (lookahead == '>') ADVANCE(79); + END_STATE(); + case 16: + if (lookahead == '`') ADVANCE(55); + if (lookahead != 0) ADVANCE(16); + END_STATE(); + case 17: + if (lookahead == 'f') ADVANCE(20); + END_STATE(); + case 18: + if (lookahead == 'f') ADVANCE(78); + END_STATE(); + case 19: + if (lookahead == 'i') ADVANCE(18); + END_STATE(); + case 20: + if (lookahead == 'o') ADVANCE(21); + END_STATE(); + case 21: + if (lookahead == 'r') ADVANCE(80); + END_STATE(); + case 22: + if (lookahead == '|') ADVANCE(32); + if (lookahead == '\n' || + lookahead == '#') ADVANCE(31); + if (lookahead != 0) ADVANCE(22); + END_STATE(); + case 23: + if (lookahead == '|') ADVANCE(70); + END_STATE(); + case 24: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(52); + END_STATE(); + case 25: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); END_STATE(); case 26: - ACCEPT_TOKEN(ts_builtin_sym_end); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(53); + if (lookahead == '>') ADVANCE(81); END_STATE(); case 27: - ACCEPT_TOKEN(sym__comment); + if (eof) ADVANCE(30); + if (lookahead == '!') ADVANCE(13); + if (lookahead == '"') ADVANCE(8); + if (lookahead == '#') ADVANCE(22); + if (lookahead == '%') ADVANCE(66); + if (lookahead == '&') ADVANCE(10); + if (lookahead == '\'') ADVANCE(11); + if (lookahead == '(') ADVANCE(34); + if (lookahead == ')') ADVANCE(35); + if (lookahead == '*') ADVANCE(64); + if (lookahead == '+') ADVANCE(60); + if (lookahead == ',') ADVANCE(36); + if (lookahead == '-') ADVANCE(63); + if (lookahead == '/') ADVANCE(65); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(52); + if (lookahead == ':') ADVANCE(58); + if (lookahead == ';') ADVANCE(33); + if (lookahead == '<') ADVANCE(73); + if (lookahead == '=') ADVANCE(51); + if (lookahead == '>') ADVANCE(72); + if (lookahead == '[') ADVANCE(56); + if (lookahead == ']') ADVANCE(57); + if (lookahead == '`') ADVANCE(16); + if (lookahead == 'a') ADVANCE(45); + if (lookahead == 'e') ADVANCE(43); + if (lookahead == '{') ADVANCE(37); + if (lookahead == '|') ADVANCE(23); + if (lookahead == '}') ADVANCE(38); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(27) + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 28: - ACCEPT_TOKEN(sym__comment); - if (lookahead == '|') ADVANCE(28); - if (lookahead == '\n' || - lookahead == '#') ADVANCE(27); - if (lookahead != 0) ADVANCE(21); + if (eof) ADVANCE(30); + if (lookahead == '!') ADVANCE(13); + if (lookahead == '"') ADVANCE(8); + if (lookahead == '#') ADVANCE(22); + if (lookahead == '%') ADVANCE(66); + if (lookahead == '&') ADVANCE(10); + if (lookahead == '\'') ADVANCE(11); + if (lookahead == '(') ADVANCE(34); + if (lookahead == '*') ADVANCE(64); + if (lookahead == '+') ADVANCE(60); + if (lookahead == '-') ADVANCE(63); + if (lookahead == '.') ADVANCE(12); + if (lookahead == '/') ADVANCE(65); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(52); + if (lookahead == ':') ADVANCE(58); + if (lookahead == ';') ADVANCE(33); + if (lookahead == '<') ADVANCE(73); + if (lookahead == '=') ADVANCE(50); + if (lookahead == '>') ADVANCE(72); + if (lookahead == '[') ADVANCE(56); + if (lookahead == '`') ADVANCE(16); + if (lookahead == 'a') ADVANCE(45); + if (lookahead == '{') ADVANCE(37); + if (lookahead == '|') ADVANCE(23); + if (lookahead == '}') ADVANCE(38); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(29) + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 29: - ACCEPT_TOKEN(anon_sym_SEMI); + if (eof) ADVANCE(30); + if (lookahead == '!') ADVANCE(13); + if (lookahead == '"') ADVANCE(8); + if (lookahead == '#') ADVANCE(22); + if (lookahead == '%') ADVANCE(66); + if (lookahead == '&') ADVANCE(10); + if (lookahead == '\'') ADVANCE(11); + if (lookahead == '(') ADVANCE(34); + if (lookahead == '*') ADVANCE(64); + if (lookahead == '+') ADVANCE(60); + if (lookahead == '-') ADVANCE(63); + if (lookahead == '/') ADVANCE(65); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(52); + if (lookahead == ':') ADVANCE(58); + if (lookahead == ';') ADVANCE(33); + if (lookahead == '<') ADVANCE(73); + if (lookahead == '=') ADVANCE(50); + if (lookahead == '>') ADVANCE(72); + if (lookahead == '[') ADVANCE(56); + if (lookahead == '`') ADVANCE(16); + if (lookahead == 'a') ADVANCE(45); + if (lookahead == '{') ADVANCE(37); + if (lookahead == '|') ADVANCE(23); + if (lookahead == '}') ADVANCE(38); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(29) + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 30: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 31: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(sym__comment); END_STATE(); case 32: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(sym__comment); + if (lookahead == '|') ADVANCE(32); + if (lookahead == '\n' || + lookahead == '#') ADVANCE(31); + if (lookahead != 0) ADVANCE(22); END_STATE(); case 33: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 34: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 35: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == ' ') ADVANCE(18); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(44); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(44); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 36: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == ' ') ADVANCE(16); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(44); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(44); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 37: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(36); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(44); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(44); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 38: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(35); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(44); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(44); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 39: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(42); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(44); + if (lookahead == ' ') ADVANCE(19); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(44); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 40: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(37); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(44); + if (lookahead == ' ') ADVANCE(17); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(44); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 41: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(43); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(44); + if (lookahead == 'c') ADVANCE(40); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(44); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 42: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(38); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(44); + if (lookahead == 'e') ADVANCE(39); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(44); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 43: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'y') ADVANCE(40); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(44); + if (lookahead == 'l') ADVANCE(46); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(44); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 44: ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(44); + if (lookahead == 'n') ADVANCE(41); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(44); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 45: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(62); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(47); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 46: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(62); - if (lookahead == '>') ADVANCE(74); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(42); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 47: - ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(24); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(47); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'y') ADVANCE(44); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 48: - ACCEPT_TOKEN(sym_float); + ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 49: - ACCEPT_TOKEN(sym_string); - END_STATE(); - case 50: - ACCEPT_TOKEN(anon_sym_LBRACK); - END_STATE(); - case 51: - ACCEPT_TOKEN(anon_sym_RBRACK); - END_STATE(); - case 52: - ACCEPT_TOKEN(anon_sym_COLON); - END_STATE(); - case 53: ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); + case 50: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(67); + END_STATE(); + case 51: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(67); + if (lookahead == '>') ADVANCE(79); + END_STATE(); + case 52: + ACCEPT_TOKEN(sym_integer); + if (lookahead == '.') ADVANCE(25); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(52); + END_STATE(); + case 53: + ACCEPT_TOKEN(sym_integer); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(53); + END_STATE(); case 54: - ACCEPT_TOKEN(anon_sym_PLUS); + ACCEPT_TOKEN(sym_float); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(54); END_STATE(); case 55: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(71); + ACCEPT_TOKEN(sym_string); END_STATE(); case 56: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(72); - if (lookahead == '>') ADVANCE(76); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 57: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '>') ADVANCE(76); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 58: - ACCEPT_TOKEN(anon_sym_DASH); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(47); - if (lookahead == '=') ADVANCE(72); - if (lookahead == '>') ADVANCE(76); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 59: - ACCEPT_TOKEN(anon_sym_STAR); + ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); case 60: - ACCEPT_TOKEN(anon_sym_SLASH); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '=') ADVANCE(76); END_STATE(); case 61: - ACCEPT_TOKEN(anon_sym_PERCENT); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(77); + if (lookahead == '>') ADVANCE(81); END_STATE(); case 62: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '>') ADVANCE(81); END_STATE(); case 63: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_DASH); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(52); + if (lookahead == '=') ADVANCE(77); + if (lookahead == '>') ADVANCE(81); END_STATE(); case 64: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); case 65: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(anon_sym_SLASH); END_STATE(); case 66: - ACCEPT_TOKEN(anon_sym_GT); + ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); case 67: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(69); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 68: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(70); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 69: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 70: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 71: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_GT); END_STATE(); case 72: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(74); END_STATE(); case 73: - ACCEPT_TOKEN(anon_sym_elseif); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '=') ADVANCE(75); END_STATE(); case 74: - ACCEPT_TOKEN(anon_sym_EQ_GT); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 75: - ACCEPT_TOKEN(anon_sym_asyncfor); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 76: + ACCEPT_TOKEN(anon_sym_PLUS_EQ); + END_STATE(); + case 77: + ACCEPT_TOKEN(anon_sym_DASH_EQ); + END_STATE(); + case 78: + ACCEPT_TOKEN(anon_sym_elseif); + END_STATE(); + case 79: + ACCEPT_TOKEN(anon_sym_EQ_GT); + END_STATE(); + case 80: + ACCEPT_TOKEN(anon_sym_asyncfor); + END_STATE(); + case 81: ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); default: @@ -2273,102 +2358,102 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [1] = {.lex_state = 25}, - [2] = {.lex_state = 25}, - [3] = {.lex_state = 25}, - [4] = {.lex_state = 25}, - [5] = {.lex_state = 25}, - [6] = {.lex_state = 25}, - [7] = {.lex_state = 25}, - [8] = {.lex_state = 25}, - [9] = {.lex_state = 25}, - [10] = {.lex_state = 25}, - [11] = {.lex_state = 25}, - [12] = {.lex_state = 25}, - [13] = {.lex_state = 25}, - [14] = {.lex_state = 25}, - [15] = {.lex_state = 25}, - [16] = {.lex_state = 25}, - [17] = {.lex_state = 25}, - [18] = {.lex_state = 25}, - [19] = {.lex_state = 25}, - [20] = {.lex_state = 25}, - [21] = {.lex_state = 25}, - [22] = {.lex_state = 25}, - [23] = {.lex_state = 25}, - [24] = {.lex_state = 25}, - [25] = {.lex_state = 25}, - [26] = {.lex_state = 25}, - [27] = {.lex_state = 25}, - [28] = {.lex_state = 25}, - [29] = {.lex_state = 25}, - [30] = {.lex_state = 25}, - [31] = {.lex_state = 25}, - [32] = {.lex_state = 25}, - [33] = {.lex_state = 25}, - [34] = {.lex_state = 25}, - [35] = {.lex_state = 25}, - [36] = {.lex_state = 25}, - [37] = {.lex_state = 25}, - [38] = {.lex_state = 25}, - [39] = {.lex_state = 25}, - [40] = {.lex_state = 25}, - [41] = {.lex_state = 25}, - [42] = {.lex_state = 25}, - [43] = {.lex_state = 25}, - [44] = {.lex_state = 25}, - [45] = {.lex_state = 25}, - [46] = {.lex_state = 25}, - [47] = {.lex_state = 25}, - [48] = {.lex_state = 25}, - [49] = {.lex_state = 25}, - [50] = {.lex_state = 25}, - [51] = {.lex_state = 25}, - [52] = {.lex_state = 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}, - [60] = {.lex_state = 25}, - [61] = {.lex_state = 25}, - [62] = {.lex_state = 25}, - [63] = {.lex_state = 25}, - [64] = {.lex_state = 25}, - [65] = {.lex_state = 25}, - [66] = {.lex_state = 25}, - [67] = {.lex_state = 25}, - [68] = {.lex_state = 25}, - [69] = {.lex_state = 25}, - [70] = {.lex_state = 25}, - [71] = {.lex_state = 25}, - [72] = {.lex_state = 25}, - [73] = {.lex_state = 25}, - [74] = {.lex_state = 25}, - [75] = {.lex_state = 25}, - [76] = {.lex_state = 25}, - [77] = {.lex_state = 25}, - [78] = {.lex_state = 25}, - [79] = {.lex_state = 25}, - [80] = {.lex_state = 25}, - [81] = {.lex_state = 25}, - [82] = {.lex_state = 25}, - [83] = {.lex_state = 25}, - [84] = {.lex_state = 25}, - [85] = {.lex_state = 25}, - [86] = {.lex_state = 25}, - [87] = {.lex_state = 25}, - [88] = {.lex_state = 25}, - [89] = {.lex_state = 1}, - [90] = {.lex_state = 1}, + [1] = {.lex_state = 28}, + [2] = {.lex_state = 28}, + [3] = {.lex_state = 28}, + [4] = {.lex_state = 28}, + [5] = {.lex_state = 28}, + [6] = {.lex_state = 28}, + [7] = {.lex_state = 28}, + [8] = {.lex_state = 28}, + [9] = {.lex_state = 28}, + [10] = {.lex_state = 28}, + [11] = {.lex_state = 28}, + [12] = {.lex_state = 28}, + [13] = {.lex_state = 28}, + [14] = {.lex_state = 28}, + [15] = {.lex_state = 28}, + [16] = {.lex_state = 28}, + [17] = {.lex_state = 28}, + [18] = {.lex_state = 28}, + [19] = {.lex_state = 28}, + [20] = {.lex_state = 28}, + [21] = {.lex_state = 28}, + [22] = {.lex_state = 28}, + [23] = {.lex_state = 28}, + [24] = {.lex_state = 28}, + [25] = {.lex_state = 28}, + [26] = {.lex_state = 28}, + [27] = {.lex_state = 28}, + [28] = {.lex_state = 28}, + [29] = {.lex_state = 28}, + [30] = {.lex_state = 28}, + [31] = {.lex_state = 28}, + [32] = {.lex_state = 28}, + [33] = {.lex_state = 28}, + [34] = {.lex_state = 28}, + [35] = {.lex_state = 28}, + [36] = {.lex_state = 28}, + [37] = {.lex_state = 28}, + [38] = {.lex_state = 28}, + [39] = {.lex_state = 28}, + [40] = {.lex_state = 28}, + [41] = {.lex_state = 28}, + [42] = {.lex_state = 28}, + [43] = {.lex_state = 28}, + [44] = {.lex_state = 28}, + [45] = {.lex_state = 28}, + [46] = {.lex_state = 28}, + [47] = {.lex_state = 28}, + [48] = {.lex_state = 28}, + [49] = {.lex_state = 28}, + [50] = {.lex_state = 28}, + [51] = {.lex_state = 28}, + [52] = {.lex_state = 28}, + [53] = {.lex_state = 28}, + [54] = {.lex_state = 28}, + [55] = {.lex_state = 28}, + [56] = {.lex_state = 28}, + [57] = {.lex_state = 28}, + [58] = {.lex_state = 28}, + [59] = {.lex_state = 28}, + [60] = {.lex_state = 28}, + [61] = {.lex_state = 28}, + [62] = {.lex_state = 28}, + [63] = {.lex_state = 28}, + [64] = {.lex_state = 28}, + [65] = {.lex_state = 28}, + [66] = {.lex_state = 28}, + [67] = {.lex_state = 28}, + [68] = {.lex_state = 28}, + [69] = {.lex_state = 28}, + [70] = {.lex_state = 28}, + [71] = {.lex_state = 28}, + [72] = {.lex_state = 28}, + [73] = {.lex_state = 28}, + [74] = {.lex_state = 28}, + [75] = {.lex_state = 28}, + [76] = {.lex_state = 28}, + [77] = {.lex_state = 28}, + [78] = {.lex_state = 28}, + [79] = {.lex_state = 1}, + [80] = {.lex_state = 28}, + [81] = {.lex_state = 28}, + [82] = {.lex_state = 28}, + [83] = {.lex_state = 28}, + [84] = {.lex_state = 28}, + [85] = {.lex_state = 28}, + [86] = {.lex_state = 28}, + [87] = {.lex_state = 28}, + [88] = {.lex_state = 28}, + [89] = {.lex_state = 28}, + [90] = {.lex_state = 28}, [91] = {.lex_state = 1}, - [92] = {.lex_state = 25}, - [93] = {.lex_state = 25}, - [94] = {.lex_state = 25}, + [92] = {.lex_state = 1}, + [93] = {.lex_state = 1}, + [94] = {.lex_state = 1}, [95] = {.lex_state = 1}, - [96] = {.lex_state = 25}, + [96] = {.lex_state = 1}, [97] = {.lex_state = 1}, [98] = {.lex_state = 1}, [99] = {.lex_state = 1}, @@ -2462,309 +2547,252 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [187] = {.lex_state = 1}, [188] = {.lex_state = 1}, [189] = {.lex_state = 1}, - [190] = {.lex_state = 1}, - [191] = {.lex_state = 1}, - [192] = {.lex_state = 1}, - [193] = {.lex_state = 1}, - [194] = {.lex_state = 1}, - [195] = {.lex_state = 1}, - [196] = {.lex_state = 1}, - [197] = {.lex_state = 1}, - [198] = {.lex_state = 1}, + [190] = {.lex_state = 0}, + [191] = {.lex_state = 0}, + [192] = {.lex_state = 0}, + [193] = {.lex_state = 0}, + [194] = {.lex_state = 0}, + [195] = {.lex_state = 0}, + [196] = {.lex_state = 0}, + [197] = {.lex_state = 0}, + [198] = {.lex_state = 28}, [199] = {.lex_state = 1}, - [200] = {.lex_state = 1}, - [201] = {.lex_state = 1}, - [202] = {.lex_state = 1}, + [200] = {.lex_state = 28}, + [201] = {.lex_state = 28}, + [202] = {.lex_state = 28}, [203] = {.lex_state = 1}, - [204] = {.lex_state = 1}, - [205] = {.lex_state = 1}, - [206] = {.lex_state = 1}, - [207] = {.lex_state = 1}, - [208] = {.lex_state = 1}, - [209] = {.lex_state = 1}, - [210] = {.lex_state = 1}, - [211] = {.lex_state = 1}, + [204] = {.lex_state = 28}, + [205] = {.lex_state = 28}, + [206] = {.lex_state = 28}, + [207] = {.lex_state = 28}, + [208] = {.lex_state = 28}, + [209] = {.lex_state = 28}, + [210] = {.lex_state = 28}, + [211] = {.lex_state = 28}, [212] = {.lex_state = 1}, - [213] = {.lex_state = 1}, - [214] = {.lex_state = 1}, - [215] = {.lex_state = 1}, - [216] = {.lex_state = 1}, - [217] = {.lex_state = 1}, - [218] = {.lex_state = 1}, - [219] = {.lex_state = 1}, - [220] = {.lex_state = 1}, - [221] = {.lex_state = 1}, - [222] = {.lex_state = 1}, - [223] = {.lex_state = 1}, - [224] = {.lex_state = 0}, - [225] = {.lex_state = 0}, - [226] = {.lex_state = 0}, - [227] = {.lex_state = 0}, - [228] = {.lex_state = 0}, - [229] = {.lex_state = 0}, - [230] = {.lex_state = 0}, - [231] = {.lex_state = 0}, - [232] = {.lex_state = 25}, - [233] = {.lex_state = 25}, - [234] = {.lex_state = 25}, - [235] = {.lex_state = 25}, - [236] = {.lex_state = 25}, - [237] = {.lex_state = 25}, - [238] = {.lex_state = 25}, - [239] = {.lex_state = 25}, - [240] = {.lex_state = 25}, - [241] = {.lex_state = 25}, - [242] = {.lex_state = 25}, - [243] = {.lex_state = 25}, - [244] = {.lex_state = 25}, + [213] = {.lex_state = 28}, + [214] = {.lex_state = 7}, + [215] = {.lex_state = 7}, + [216] = {.lex_state = 7}, + [217] = {.lex_state = 28}, + [218] = {.lex_state = 7}, + [219] = {.lex_state = 7}, + [220] = {.lex_state = 7}, + [221] = {.lex_state = 7}, + [222] = {.lex_state = 7}, + [223] = {.lex_state = 3}, + [224] = {.lex_state = 3}, + [225] = {.lex_state = 3}, + [226] = {.lex_state = 3}, + [227] = {.lex_state = 3}, + [228] = {.lex_state = 3}, + [229] = {.lex_state = 3}, + [230] = {.lex_state = 3}, + [231] = {.lex_state = 3}, + [232] = {.lex_state = 3}, + [233] = {.lex_state = 3}, + [234] = {.lex_state = 3}, + [235] = {.lex_state = 3}, + [236] = {.lex_state = 3}, + [237] = {.lex_state = 3}, + [238] = {.lex_state = 3}, + [239] = {.lex_state = 3}, + [240] = {.lex_state = 3}, + [241] = {.lex_state = 3}, + [242] = {.lex_state = 3}, + [243] = {.lex_state = 3}, + [244] = {.lex_state = 1}, [245] = {.lex_state = 1}, - [246] = {.lex_state = 5}, + [246] = {.lex_state = 1}, [247] = {.lex_state = 1}, [248] = {.lex_state = 1}, [249] = {.lex_state = 1}, - [250] = {.lex_state = 5}, + [250] = {.lex_state = 1}, [251] = {.lex_state = 1}, [252] = {.lex_state = 1}, [253] = {.lex_state = 1}, - [254] = {.lex_state = 5}, - [255] = {.lex_state = 2}, - [256] = {.lex_state = 2}, - [257] = {.lex_state = 2}, - [258] = {.lex_state = 25}, - [259] = {.lex_state = 2}, - [260] = {.lex_state = 2}, - [261] = {.lex_state = 2}, - [262] = {.lex_state = 2}, - [263] = {.lex_state = 2}, - [264] = {.lex_state = 2}, - [265] = {.lex_state = 2}, - [266] = {.lex_state = 2}, - [267] = {.lex_state = 2}, - [268] = {.lex_state = 2}, - [269] = {.lex_state = 2}, - [270] = {.lex_state = 2}, - [271] = {.lex_state = 2}, + [254] = {.lex_state = 1}, + [255] = {.lex_state = 1}, + [256] = {.lex_state = 1}, + [257] = {.lex_state = 1}, + [258] = {.lex_state = 6}, + [259] = {.lex_state = 5}, + [260] = {.lex_state = 1}, + [261] = {.lex_state = 6}, + [262] = {.lex_state = 5}, + [263] = {.lex_state = 5}, + [264] = {.lex_state = 5}, + [265] = {.lex_state = 5}, + [266] = {.lex_state = 1}, + [267] = {.lex_state = 1}, + [268] = {.lex_state = 5}, + [269] = {.lex_state = 5}, + [270] = {.lex_state = 5}, + [271] = {.lex_state = 5}, [272] = {.lex_state = 5}, - [273] = {.lex_state = 2}, - [274] = {.lex_state = 2}, - [275] = {.lex_state = 2}, - [276] = {.lex_state = 2}, - [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 = 5}, - [284] = {.lex_state = 5}, - [285] = {.lex_state = 2}, - [286] = {.lex_state = 5}, - [287] = {.lex_state = 2}, - [288] = {.lex_state = 2}, - [289] = {.lex_state = 2}, - [290] = {.lex_state = 2}, - [291] = {.lex_state = 2}, - [292] = {.lex_state = 5}, - [293] = {.lex_state = 2}, - [294] = {.lex_state = 2}, - [295] = {.lex_state = 2}, - [296] = {.lex_state = 2}, - [297] = {.lex_state = 2}, - [298] = {.lex_state = 1}, - [299] = {.lex_state = 1}, - [300] = {.lex_state = 1}, - [301] = {.lex_state = 1}, - [302] = {.lex_state = 1}, - [303] = {.lex_state = 1}, - [304] = {.lex_state = 1}, - [305] = {.lex_state = 1}, - [306] = {.lex_state = 1}, - [307] = {.lex_state = 1}, - [308] = {.lex_state = 1}, - [309] = {.lex_state = 1}, + [273] = {.lex_state = 5}, + [274] = {.lex_state = 5}, + [275] = {.lex_state = 5}, + [276] = {.lex_state = 5}, + [277] = {.lex_state = 5}, + [278] = {.lex_state = 5}, + [279] = {.lex_state = 1}, + [280] = {.lex_state = 1}, + [281] = {.lex_state = 3}, + [282] = {.lex_state = 3}, + [283] = {.lex_state = 3}, + [284] = {.lex_state = 3}, + [285] = {.lex_state = 3}, + [286] = {.lex_state = 3}, + [287] = {.lex_state = 3}, + [288] = {.lex_state = 3}, + [289] = {.lex_state = 3}, + [290] = {.lex_state = 3}, + [291] = {.lex_state = 3}, + [292] = {.lex_state = 3}, + [293] = {.lex_state = 3}, + [294] = {.lex_state = 9}, + [295] = {.lex_state = 9}, + [296] = {.lex_state = 3}, + [297] = {.lex_state = 5}, + [298] = {.lex_state = 3}, + [299] = {.lex_state = 3}, + [300] = {.lex_state = 3}, + [301] = {.lex_state = 3}, + [302] = {.lex_state = 9}, + [303] = {.lex_state = 3}, + [304] = {.lex_state = 9}, + [305] = {.lex_state = 3}, + [306] = {.lex_state = 3}, + [307] = {.lex_state = 9}, + [308] = {.lex_state = 9}, + [309] = {.lex_state = 3}, [310] = {.lex_state = 1}, - [311] = {.lex_state = 4}, - [312] = {.lex_state = 1}, - [313] = {.lex_state = 1}, - [314] = {.lex_state = 4}, + [311] = {.lex_state = 3}, + [312] = {.lex_state = 3}, + [313] = {.lex_state = 3}, + [314] = {.lex_state = 3}, [315] = {.lex_state = 3}, - [316] = {.lex_state = 3}, + [316] = {.lex_state = 1}, [317] = {.lex_state = 3}, - [318] = {.lex_state = 1}, + [318] = {.lex_state = 3}, [319] = {.lex_state = 1}, - [320] = {.lex_state = 1}, - [321] = {.lex_state = 1}, - [322] = {.lex_state = 2}, - [323] = {.lex_state = 2}, - [324] = {.lex_state = 2}, - [325] = {.lex_state = 2}, - [326] = {.lex_state = 2}, - [327] = {.lex_state = 2}, - [328] = {.lex_state = 2}, - [329] = {.lex_state = 2}, - [330] = {.lex_state = 2}, - [331] = {.lex_state = 2}, - [332] = {.lex_state = 2}, - [333] = {.lex_state = 2}, - [334] = {.lex_state = 2}, - [335] = {.lex_state = 2}, - [336] = {.lex_state = 2}, - [337] = {.lex_state = 2}, - [338] = {.lex_state = 2}, - [339] = {.lex_state = 2}, - [340] = {.lex_state = 7}, - [341] = {.lex_state = 7}, - [342] = {.lex_state = 2}, - [343] = {.lex_state = 2}, - [344] = {.lex_state = 2}, - [345] = {.lex_state = 2}, - [346] = {.lex_state = 2}, - [347] = {.lex_state = 2}, - [348] = {.lex_state = 2}, - [349] = {.lex_state = 2}, - [350] = {.lex_state = 7}, - [351] = {.lex_state = 7}, - [352] = {.lex_state = 3}, - [353] = {.lex_state = 7}, - [354] = {.lex_state = 2}, - [355] = {.lex_state = 2}, - [356] = {.lex_state = 7}, - [357] = {.lex_state = 2}, - [358] = {.lex_state = 2}, - [359] = {.lex_state = 2}, + [320] = {.lex_state = 3}, + [321] = {.lex_state = 3}, + [322] = {.lex_state = 1}, + [323] = {.lex_state = 3}, + [324] = {.lex_state = 3}, + [325] = {.lex_state = 1}, + [326] = {.lex_state = 1}, + [327] = {.lex_state = 1}, + [328] = {.lex_state = 1}, + [329] = {.lex_state = 1}, + [330] = {.lex_state = 1}, + [331] = {.lex_state = 7}, + [332] = {.lex_state = 1}, + [333] = {.lex_state = 7}, + [334] = {.lex_state = 28}, + [335] = {.lex_state = 28}, + [336] = {.lex_state = 28}, + [337] = {.lex_state = 28}, + [338] = {.lex_state = 1}, + [339] = {.lex_state = 1}, + [340] = {.lex_state = 1}, + [341] = {.lex_state = 1}, + [342] = {.lex_state = 1}, + [343] = {.lex_state = 1}, + [344] = {.lex_state = 1}, + [345] = {.lex_state = 1}, + [346] = {.lex_state = 1}, + [347] = {.lex_state = 1}, + [348] = {.lex_state = 1}, + [349] = {.lex_state = 1}, + [350] = {.lex_state = 28}, + [351] = {.lex_state = 1}, + [352] = {.lex_state = 1}, + [353] = {.lex_state = 1}, + [354] = {.lex_state = 1}, + [355] = {.lex_state = 1}, + [356] = {.lex_state = 1}, + [357] = {.lex_state = 1}, + [358] = {.lex_state = 1}, + [359] = {.lex_state = 1}, [360] = {.lex_state = 1}, [361] = {.lex_state = 1}, - [362] = {.lex_state = 2}, - [363] = {.lex_state = 2}, - [364] = {.lex_state = 2}, - [365] = {.lex_state = 2}, - [366] = {.lex_state = 2}, - [367] = {.lex_state = 2}, - [368] = {.lex_state = 2}, - [369] = {.lex_state = 2}, - [370] = {.lex_state = 2}, - [371] = {.lex_state = 1}, - [372] = {.lex_state = 2}, - [373] = {.lex_state = 2}, - [374] = {.lex_state = 2}, - [375] = {.lex_state = 2}, - [376] = {.lex_state = 2}, - [377] = {.lex_state = 2}, - [378] = {.lex_state = 2}, - [379] = {.lex_state = 1}, - [380] = {.lex_state = 2}, + [362] = {.lex_state = 1}, + [363] = {.lex_state = 1}, + [364] = {.lex_state = 28}, + [365] = {.lex_state = 1}, + [366] = {.lex_state = 1}, + [367] = {.lex_state = 1}, + [368] = {.lex_state = 1}, + [369] = {.lex_state = 1}, + [370] = {.lex_state = 1}, + [371] = {.lex_state = 28}, + [372] = {.lex_state = 1}, + [373] = {.lex_state = 1}, + [374] = {.lex_state = 1}, + [375] = {.lex_state = 1}, + [376] = {.lex_state = 0}, + [377] = {.lex_state = 1}, + [378] = {.lex_state = 1}, + [379] = {.lex_state = 0}, + [380] = {.lex_state = 0}, [381] = {.lex_state = 1}, [382] = {.lex_state = 1}, [383] = {.lex_state = 1}, [384] = {.lex_state = 1}, - [385] = {.lex_state = 1}, - [386] = {.lex_state = 1}, - [387] = {.lex_state = 5}, - [388] = {.lex_state = 5}, - [389] = {.lex_state = 1}, - [390] = {.lex_state = 25}, - [391] = {.lex_state = 25}, - [392] = {.lex_state = 25}, - [393] = {.lex_state = 25}, - [394] = {.lex_state = 1}, - [395] = {.lex_state = 25}, - [396] = {.lex_state = 1}, - [397] = {.lex_state = 1}, - [398] = {.lex_state = 1}, - [399] = {.lex_state = 1}, - [400] = {.lex_state = 1}, - [401] = {.lex_state = 1}, - [402] = {.lex_state = 25}, + [385] = {.lex_state = 0}, + [386] = {.lex_state = 0}, + [387] = {.lex_state = 0}, + [388] = {.lex_state = 1}, + [389] = {.lex_state = 0}, + [390] = {.lex_state = 1}, + [391] = {.lex_state = 0}, + [392] = {.lex_state = 1}, + [393] = {.lex_state = 1}, + [394] = {.lex_state = 0}, + [395] = {.lex_state = 0}, + [396] = {.lex_state = 9}, + [397] = {.lex_state = 0}, + [398] = {.lex_state = 0}, + [399] = {.lex_state = 28}, + [400] = {.lex_state = 0}, + [401] = {.lex_state = 0}, + [402] = {.lex_state = 0}, [403] = {.lex_state = 1}, - [404] = {.lex_state = 1}, - [405] = {.lex_state = 1}, - [406] = {.lex_state = 1}, - [407] = {.lex_state = 1}, + [404] = {.lex_state = 0}, + [405] = {.lex_state = 28}, + [406] = {.lex_state = 9}, + [407] = {.lex_state = 7}, [408] = {.lex_state = 1}, - [409] = {.lex_state = 1}, - [410] = {.lex_state = 1}, - [411] = {.lex_state = 1}, - [412] = {.lex_state = 1}, - [413] = {.lex_state = 1}, - [414] = {.lex_state = 1}, - [415] = {.lex_state = 1}, - [416] = {.lex_state = 1}, - [417] = {.lex_state = 1}, - [418] = {.lex_state = 1}, - [419] = {.lex_state = 1}, + [409] = {.lex_state = 0}, + [410] = {.lex_state = 9}, + [411] = {.lex_state = 0}, + [412] = {.lex_state = 0}, + [413] = {.lex_state = 0}, + [414] = {.lex_state = 0}, + [415] = {.lex_state = 0}, + [416] = {.lex_state = 0}, + [417] = {.lex_state = 0}, + [418] = {.lex_state = 0}, + [419] = {.lex_state = 0}, [420] = {.lex_state = 1}, - [421] = {.lex_state = 1}, - [422] = {.lex_state = 1}, - [423] = {.lex_state = 1}, - [424] = {.lex_state = 25}, + [421] = {.lex_state = 0}, + [422] = {.lex_state = 0}, + [423] = {.lex_state = 0}, + [424] = {.lex_state = 0}, [425] = {.lex_state = 1}, [426] = {.lex_state = 1}, - [427] = {.lex_state = 1}, + [427] = {.lex_state = 0}, [428] = {.lex_state = 1}, - [429] = {.lex_state = 1}, - [430] = {.lex_state = 1}, + [429] = {.lex_state = 7}, + [430] = {.lex_state = 0}, [431] = {.lex_state = 1}, [432] = {.lex_state = 1}, - [433] = {.lex_state = 1}, + [433] = {.lex_state = 0}, [434] = {.lex_state = 1}, [435] = {.lex_state = 0}, - [436] = {.lex_state = 0}, - [437] = {.lex_state = 0}, - [438] = {.lex_state = 0}, - [439] = {.lex_state = 0}, - [440] = {.lex_state = 1}, - [441] = {.lex_state = 1}, - [442] = {.lex_state = 0}, - [443] = {.lex_state = 0}, - [444] = {.lex_state = 1}, - [445] = {.lex_state = 1}, - [446] = {.lex_state = 1}, - [447] = {.lex_state = 0}, - [448] = {.lex_state = 1}, - [449] = {.lex_state = 0}, - [450] = {.lex_state = 0}, - [451] = {.lex_state = 1}, - [452] = {.lex_state = 0}, - [453] = {.lex_state = 25}, - [454] = {.lex_state = 0}, - [455] = {.lex_state = 0}, - [456] = {.lex_state = 0}, - [457] = {.lex_state = 0}, - [458] = {.lex_state = 0}, - [459] = {.lex_state = 1}, - [460] = {.lex_state = 0}, - [461] = {.lex_state = 0}, - [462] = {.lex_state = 0}, - [463] = {.lex_state = 1}, - [464] = {.lex_state = 0}, - [465] = {.lex_state = 0}, - [466] = {.lex_state = 0}, - [467] = {.lex_state = 0}, - [468] = {.lex_state = 5}, - [469] = {.lex_state = 1}, - [470] = {.lex_state = 0}, - [471] = {.lex_state = 0}, - [472] = {.lex_state = 0}, - [473] = {.lex_state = 0}, - [474] = {.lex_state = 0}, - [475] = {.lex_state = 0}, - [476] = {.lex_state = 0}, - [477] = {.lex_state = 1}, - [478] = {.lex_state = 5}, - [479] = {.lex_state = 1}, - [480] = {.lex_state = 25}, - [481] = {.lex_state = 0}, - [482] = {.lex_state = 0}, - [483] = {.lex_state = 0}, - [484] = {.lex_state = 1}, - [485] = {.lex_state = 0}, - [486] = {.lex_state = 0}, - [487] = {.lex_state = 1}, - [488] = {.lex_state = 0}, - [489] = {.lex_state = 1}, - [490] = {.lex_state = 0}, - [491] = {.lex_state = 1}, - [492] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -2779,6 +2807,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1), [anon_sym_LBRACE] = ACTIONS(1), [anon_sym_RBRACE] = ACTIONS(1), + [anon_sym_DOT_DOT] = ACTIONS(1), [anon_sym_struct] = ACTIONS(1), [anon_sym_EQ] = ACTIONS(1), [anon_sym_new] = ACTIONS(1), @@ -2792,7 +2821,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_none] = ACTIONS(1), [anon_sym_some] = ACTIONS(1), [anon_sym_COLON] = ACTIONS(1), - [anon_sym_DOT_DOT] = ACTIONS(1), [anon_sym_PLUS] = ACTIONS(1), [anon_sym_DASH] = ACTIONS(1), [anon_sym_STAR] = ACTIONS(1), @@ -2839,37 +2867,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1), }, [1] = { - [sym_root] = STATE(483), - [sym_statement] = STATE(24), - [sym_expression] = STATE(92), - [sym__expression_kind] = STATE(63), - [sym_block] = STATE(240), - [sym_value] = STATE(87), - [sym_structure] = STATE(81), - [sym_new] = STATE(63), - [sym_boolean] = STATE(81), - [sym_list] = STATE(81), - [sym_map] = STATE(81), - [sym_option] = STATE(81), - [sym_index] = STATE(84), - [sym_index_expression] = STATE(482), - [sym_math] = STATE(63), - [sym_logic] = STATE(63), - [sym_assignment] = STATE(240), - [sym_index_assignment] = STATE(240), - [sym_if_else] = STATE(240), - [sym_if] = STATE(224), - [sym_match] = STATE(240), - [sym_while] = STATE(240), - [sym_for] = STATE(240), - [sym_return] = STATE(240), - [sym_function] = STATE(81), - [sym_function_expression] = STATE(481), - [sym__function_expression_kind] = STATE(71), - [sym_function_call] = STATE(69), - [sym_yield] = STATE(69), - [sym_built_in_value] = STATE(81), - [aux_sym_root_repeat1] = STATE(24), + [sym_root] = STATE(423), + [sym_statement] = STATE(25), + [sym_expression] = STATE(73), + [sym__expression_kind] = STATE(90), + [sym_block] = STATE(200), + [sym_value] = STATE(78), + [sym_range] = STATE(77), + [sym_structure] = STATE(70), + [sym_new] = STATE(90), + [sym_boolean] = STATE(70), + [sym_list] = STATE(70), + [sym_map] = STATE(70), + [sym_option] = STATE(70), + [sym_index] = STATE(50), + [sym_index_expression] = STATE(421), + [sym_math] = STATE(90), + [sym_logic] = STATE(90), + [sym_assignment] = STATE(200), + [sym_index_assignment] = STATE(200), + [sym_if_else] = STATE(200), + [sym_if] = STATE(190), + [sym_match] = STATE(200), + [sym_while] = STATE(200), + [sym_for] = STATE(200), + [sym_return] = STATE(200), + [sym_function] = STATE(70), + [sym_function_expression] = STATE(419), + [sym__function_expression_kind] = STATE(84), + [sym_function_call] = STATE(85), + [sym_yield] = STATE(85), + [sym_built_in_value] = STATE(70), + [aux_sym_root_repeat1] = STATE(25), [sym_identifier] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(7), @@ -2902,37 +2931,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(41), }, [2] = { - [sym_statement] = STATE(17), - [sym_expression] = STATE(92), - [sym__expression_kind] = STATE(63), - [sym_block] = STATE(240), - [sym_value] = STATE(87), - [sym_structure] = STATE(81), - [sym_new] = STATE(63), - [sym_boolean] = STATE(81), - [sym_list] = STATE(81), - [sym_map] = STATE(81), - [sym_option] = STATE(81), - [sym_index] = STATE(84), - [sym_index_expression] = STATE(482), - [sym_math] = STATE(63), - [sym_logic] = STATE(63), - [sym_assignment] = STATE(240), - [sym_index_assignment] = STATE(240), - [sym_if_else] = STATE(240), - [sym_if] = STATE(224), - [sym_match] = STATE(240), - [sym_while] = STATE(240), - [sym_for] = STATE(240), - [sym_return] = STATE(240), - [sym_function] = STATE(81), - [sym_function_expression] = STATE(481), - [sym__function_expression_kind] = STATE(71), - [sym_function_call] = STATE(69), - [sym_yield] = STATE(69), - [sym_built_in_value] = STATE(81), - [aux_sym_root_repeat1] = STATE(17), - [aux_sym_map_repeat1] = STATE(403), + [sym_statement] = STATE(15), + [sym_expression] = STATE(73), + [sym__expression_kind] = STATE(90), + [sym_block] = STATE(200), + [sym_value] = STATE(78), + [sym_range] = STATE(77), + [sym_structure] = STATE(70), + [sym_new] = STATE(90), + [sym_boolean] = STATE(70), + [sym_list] = STATE(70), + [sym_map] = STATE(70), + [sym_option] = STATE(70), + [sym_index] = STATE(50), + [sym_index_expression] = STATE(421), + [sym_math] = STATE(90), + [sym_logic] = STATE(90), + [sym_assignment] = STATE(200), + [sym_index_assignment] = STATE(200), + [sym_if_else] = STATE(200), + [sym_if] = STATE(190), + [sym_match] = STATE(200), + [sym_while] = STATE(200), + [sym_for] = STATE(200), + [sym_return] = STATE(200), + [sym_function] = STATE(70), + [sym_function_expression] = STATE(419), + [sym__function_expression_kind] = STATE(84), + [sym_function_call] = STATE(85), + [sym_yield] = STATE(85), + [sym_built_in_value] = STATE(70), + [aux_sym_root_repeat1] = STATE(15), + [aux_sym_map_repeat1] = STATE(367), [sym_identifier] = ACTIONS(43), [sym__comment] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(7), @@ -2966,37 +2996,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(41), }, [3] = { - [sym_statement] = STATE(13), - [sym_expression] = STATE(92), - [sym__expression_kind] = STATE(63), - [sym_block] = STATE(240), - [sym_value] = STATE(87), - [sym_structure] = STATE(81), - [sym_new] = STATE(63), - [sym_boolean] = STATE(81), - [sym_list] = STATE(81), - [sym_map] = STATE(81), - [sym_option] = STATE(81), - [sym_index] = STATE(84), - [sym_index_expression] = STATE(482), - [sym_math] = STATE(63), - [sym_logic] = STATE(63), - [sym_assignment] = STATE(240), - [sym_index_assignment] = STATE(240), - [sym_if_else] = STATE(240), - [sym_if] = STATE(224), - [sym_match] = STATE(240), - [sym_while] = STATE(240), - [sym_for] = STATE(240), - [sym_return] = STATE(240), - [sym_function] = STATE(81), - [sym_function_expression] = STATE(481), - [sym__function_expression_kind] = STATE(71), - [sym_function_call] = STATE(69), - [sym_yield] = STATE(69), - [sym_built_in_value] = STATE(81), - [aux_sym_root_repeat1] = STATE(13), - [aux_sym_map_repeat1] = STATE(412), + [sym_statement] = STATE(9), + [sym_expression] = STATE(73), + [sym__expression_kind] = STATE(90), + [sym_block] = STATE(200), + [sym_value] = STATE(78), + [sym_range] = STATE(77), + [sym_structure] = STATE(70), + [sym_new] = STATE(90), + [sym_boolean] = STATE(70), + [sym_list] = STATE(70), + [sym_map] = STATE(70), + [sym_option] = STATE(70), + [sym_index] = STATE(50), + [sym_index_expression] = STATE(421), + [sym_math] = STATE(90), + [sym_logic] = STATE(90), + [sym_assignment] = STATE(200), + [sym_index_assignment] = STATE(200), + [sym_if_else] = STATE(200), + [sym_if] = STATE(190), + [sym_match] = STATE(200), + [sym_while] = STATE(200), + [sym_for] = STATE(200), + [sym_return] = STATE(200), + [sym_function] = STATE(70), + [sym_function_expression] = STATE(419), + [sym__function_expression_kind] = STATE(84), + [sym_function_call] = STATE(85), + [sym_yield] = STATE(85), + [sym_built_in_value] = STATE(70), + [aux_sym_root_repeat1] = STATE(9), + [aux_sym_map_repeat1] = STATE(340), [sym_identifier] = ACTIONS(43), [sym__comment] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(7), @@ -3030,37 +3061,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(41), }, [4] = { - [sym_statement] = STATE(23), - [sym_expression] = STATE(92), - [sym__expression_kind] = STATE(63), - [sym_block] = STATE(240), - [sym_value] = STATE(87), - [sym_structure] = STATE(81), - [sym_new] = STATE(63), - [sym_boolean] = STATE(81), - [sym_list] = STATE(81), - [sym_map] = STATE(81), - [sym_option] = STATE(81), - [sym_index] = STATE(84), - [sym_index_expression] = STATE(482), - [sym_math] = STATE(63), - [sym_logic] = STATE(63), - [sym_assignment] = STATE(240), - [sym_index_assignment] = STATE(240), - [sym_if_else] = STATE(240), - [sym_if] = STATE(224), - [sym_match] = STATE(240), - [sym_while] = STATE(240), - [sym_for] = STATE(240), - [sym_return] = STATE(240), - [sym_function] = STATE(81), - [sym_function_expression] = STATE(481), - [sym__function_expression_kind] = STATE(71), - [sym_function_call] = STATE(69), - [sym_yield] = STATE(69), - [sym_built_in_value] = STATE(81), - [aux_sym_root_repeat1] = STATE(23), - [aux_sym_map_repeat1] = STATE(394), + [sym_statement] = STATE(26), + [sym_expression] = STATE(73), + [sym__expression_kind] = STATE(90), + [sym_block] = STATE(200), + [sym_value] = STATE(78), + [sym_range] = STATE(77), + [sym_structure] = STATE(70), + [sym_new] = STATE(90), + [sym_boolean] = STATE(70), + [sym_list] = STATE(70), + [sym_map] = STATE(70), + [sym_option] = STATE(70), + [sym_index] = STATE(50), + [sym_index_expression] = STATE(421), + [sym_math] = STATE(90), + [sym_logic] = STATE(90), + [sym_assignment] = STATE(200), + [sym_index_assignment] = STATE(200), + [sym_if_else] = STATE(200), + [sym_if] = STATE(190), + [sym_match] = STATE(200), + [sym_while] = STATE(200), + [sym_for] = STATE(200), + [sym_return] = STATE(200), + [sym_function] = STATE(70), + [sym_function_expression] = STATE(419), + [sym__function_expression_kind] = STATE(84), + [sym_function_call] = STATE(85), + [sym_yield] = STATE(85), + [sym_built_in_value] = STATE(70), + [aux_sym_root_repeat1] = STATE(26), + [aux_sym_map_repeat1] = STATE(355), [sym_identifier] = ACTIONS(43), [sym__comment] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(7), @@ -3095,34 +3127,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [5] = { [sym_statement] = STATE(5), - [sym_expression] = STATE(92), - [sym__expression_kind] = STATE(63), - [sym_block] = STATE(240), - [sym_value] = STATE(87), - [sym_structure] = STATE(81), - [sym_new] = STATE(63), - [sym_boolean] = STATE(81), - [sym_list] = STATE(81), - [sym_map] = STATE(81), - [sym_option] = STATE(81), - [sym_index] = STATE(84), - [sym_index_expression] = STATE(482), - [sym_math] = STATE(63), - [sym_logic] = STATE(63), - [sym_assignment] = STATE(240), - [sym_index_assignment] = STATE(240), - [sym_if_else] = STATE(240), - [sym_if] = STATE(224), - [sym_match] = STATE(240), - [sym_while] = STATE(240), - [sym_for] = STATE(240), - [sym_return] = STATE(240), - [sym_function] = STATE(81), - [sym_function_expression] = STATE(481), - [sym__function_expression_kind] = STATE(71), - [sym_function_call] = STATE(69), - [sym_yield] = STATE(69), - [sym_built_in_value] = STATE(81), + [sym_expression] = STATE(73), + [sym__expression_kind] = STATE(90), + [sym_block] = STATE(200), + [sym_value] = STATE(78), + [sym_range] = STATE(77), + [sym_structure] = STATE(70), + [sym_new] = STATE(90), + [sym_boolean] = STATE(70), + [sym_list] = STATE(70), + [sym_map] = STATE(70), + [sym_option] = STATE(70), + [sym_index] = STATE(50), + [sym_index_expression] = STATE(421), + [sym_math] = STATE(90), + [sym_logic] = STATE(90), + [sym_assignment] = STATE(200), + [sym_index_assignment] = STATE(200), + [sym_if_else] = STATE(200), + [sym_if] = STATE(190), + [sym_match] = STATE(200), + [sym_while] = STATE(200), + [sym_for] = STATE(200), + [sym_return] = STATE(200), + [sym_function] = STATE(70), + [sym_function_expression] = STATE(419), + [sym__function_expression_kind] = STATE(84), + [sym_function_call] = STATE(85), + [sym_yield] = STATE(85), + [sym_built_in_value] = STATE(70), [aux_sym_root_repeat1] = STATE(5), [ts_builtin_sym_end] = ACTIONS(51), [sym_identifier] = ACTIONS(53), @@ -3158,98 +3191,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(107), }, [6] = { - [sym_statement] = STATE(23), - [sym_expression] = STATE(92), - [sym__expression_kind] = STATE(63), - [sym_block] = STATE(240), - [sym_value] = STATE(87), - [sym_structure] = STATE(81), - [sym_new] = STATE(63), - [sym_boolean] = STATE(81), - [sym_list] = STATE(81), - [sym_map] = STATE(81), - [sym_option] = STATE(81), - [sym_index] = STATE(84), - [sym_index_expression] = STATE(482), - [sym_math] = STATE(63), - [sym_logic] = STATE(63), - [sym_assignment] = STATE(240), - [sym_index_assignment] = STATE(240), - [sym_if_else] = STATE(240), - [sym_if] = STATE(224), - [sym_match] = STATE(240), - [sym_while] = STATE(240), - [sym_for] = STATE(240), - [sym_return] = STATE(240), - [sym_function] = STATE(81), - [sym_function_expression] = STATE(481), - [sym__function_expression_kind] = STATE(71), - [sym_function_call] = STATE(69), - [sym_yield] = STATE(69), - [sym_built_in_value] = STATE(81), - [aux_sym_root_repeat1] = STATE(23), - [sym_identifier] = ACTIONS(5), - [sym__comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(7), - [anon_sym_async] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(11), - [anon_sym_RBRACE] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(13), - [anon_sym_new] = ACTIONS(15), - [sym_integer] = ACTIONS(17), - [sym_float] = ACTIONS(19), - [sym_string] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_none] = ACTIONS(25), - [anon_sym_some] = ACTIONS(27), - [anon_sym_if] = ACTIONS(29), - [anon_sym_match] = ACTIONS(31), - [anon_sym_while] = ACTIONS(33), - [anon_sym_for] = ACTIONS(35), - [anon_sym_asyncfor] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_args] = ACTIONS(41), - [anon_sym_assert_equal] = ACTIONS(41), - [anon_sym_env] = ACTIONS(41), - [anon_sym_fs] = ACTIONS(41), - [anon_sym_json] = ACTIONS(41), - [anon_sym_length] = ACTIONS(41), - [anon_sym_output] = ACTIONS(41), - [anon_sym_random] = ACTIONS(41), - [anon_sym_string] = ACTIONS(41), - }, - [7] = { [sym_statement] = STATE(5), - [sym_expression] = STATE(92), - [sym__expression_kind] = STATE(63), - [sym_block] = STATE(240), - [sym_value] = STATE(87), - [sym_structure] = STATE(81), - [sym_new] = STATE(63), - [sym_boolean] = STATE(81), - [sym_list] = STATE(81), - [sym_map] = STATE(81), - [sym_option] = STATE(81), - [sym_index] = STATE(84), - [sym_index_expression] = STATE(482), - [sym_math] = STATE(63), - [sym_logic] = STATE(63), - [sym_assignment] = STATE(240), - [sym_index_assignment] = STATE(240), - [sym_if_else] = STATE(240), - [sym_if] = STATE(224), - [sym_match] = STATE(240), - [sym_while] = STATE(240), - [sym_for] = STATE(240), - [sym_return] = STATE(240), - [sym_function] = STATE(81), - [sym_function_expression] = STATE(481), - [sym__function_expression_kind] = STATE(71), - [sym_function_call] = STATE(69), - [sym_yield] = STATE(69), - [sym_built_in_value] = STATE(81), + [sym_expression] = STATE(73), + [sym__expression_kind] = STATE(90), + [sym_block] = STATE(200), + [sym_value] = STATE(78), + [sym_range] = STATE(77), + [sym_structure] = STATE(70), + [sym_new] = STATE(90), + [sym_boolean] = STATE(70), + [sym_list] = STATE(70), + [sym_map] = STATE(70), + [sym_option] = STATE(70), + [sym_index] = STATE(50), + [sym_index_expression] = STATE(421), + [sym_math] = STATE(90), + [sym_logic] = STATE(90), + [sym_assignment] = STATE(200), + [sym_index_assignment] = STATE(200), + [sym_if_else] = STATE(200), + [sym_if] = STATE(190), + [sym_match] = STATE(200), + [sym_while] = STATE(200), + [sym_for] = STATE(200), + [sym_return] = STATE(200), + [sym_function] = STATE(70), + [sym_function_expression] = STATE(419), + [sym__function_expression_kind] = STATE(84), + [sym_function_call] = STATE(85), + [sym_yield] = STATE(85), + [sym_built_in_value] = STATE(70), [aux_sym_root_repeat1] = STATE(5), [sym_identifier] = ACTIONS(5), [sym__comment] = ACTIONS(3), @@ -3283,37 +3254,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_random] = ACTIONS(41), [anon_sym_string] = ACTIONS(41), }, - [8] = { - [sym_statement] = STATE(9), - [sym_expression] = STATE(92), - [sym__expression_kind] = STATE(63), - [sym_block] = STATE(240), - [sym_value] = STATE(87), - [sym_structure] = STATE(81), - [sym_new] = STATE(63), - [sym_boolean] = STATE(81), - [sym_list] = STATE(81), - [sym_map] = STATE(81), - [sym_option] = STATE(81), - [sym_index] = STATE(84), - [sym_index_expression] = STATE(482), - [sym_math] = STATE(63), - [sym_logic] = STATE(63), - [sym_assignment] = STATE(240), - [sym_index_assignment] = STATE(240), - [sym_if_else] = STATE(240), - [sym_if] = STATE(224), - [sym_match] = STATE(240), - [sym_while] = STATE(240), - [sym_for] = STATE(240), - [sym_return] = STATE(240), - [sym_function] = STATE(81), - [sym_function_expression] = STATE(481), - [sym__function_expression_kind] = STATE(71), - [sym_function_call] = STATE(69), - [sym_yield] = STATE(69), - [sym_built_in_value] = STATE(81), - [aux_sym_root_repeat1] = STATE(9), + [7] = { + [sym_statement] = STATE(5), + [sym_expression] = STATE(73), + [sym__expression_kind] = STATE(90), + [sym_block] = STATE(200), + [sym_value] = STATE(78), + [sym_range] = STATE(77), + [sym_structure] = STATE(70), + [sym_new] = STATE(90), + [sym_boolean] = STATE(70), + [sym_list] = STATE(70), + [sym_map] = STATE(70), + [sym_option] = STATE(70), + [sym_index] = STATE(50), + [sym_index_expression] = STATE(421), + [sym_math] = STATE(90), + [sym_logic] = STATE(90), + [sym_assignment] = STATE(200), + [sym_index_assignment] = STATE(200), + [sym_if_else] = STATE(200), + [sym_if] = STATE(190), + [sym_match] = STATE(200), + [sym_while] = STATE(200), + [sym_for] = STATE(200), + [sym_return] = STATE(200), + [sym_function] = STATE(70), + [sym_function_expression] = STATE(419), + [sym__function_expression_kind] = STATE(84), + [sym_function_call] = STATE(85), + [sym_yield] = STATE(85), + [sym_built_in_value] = STATE(70), + [aux_sym_root_repeat1] = STATE(5), [sym_identifier] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(7), @@ -3346,36 +3318,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_random] = ACTIONS(41), [anon_sym_string] = ACTIONS(41), }, + [8] = { + [sym_statement] = STATE(6), + [sym_expression] = STATE(73), + [sym__expression_kind] = STATE(90), + [sym_block] = STATE(200), + [sym_value] = STATE(78), + [sym_range] = STATE(77), + [sym_structure] = STATE(70), + [sym_new] = STATE(90), + [sym_boolean] = STATE(70), + [sym_list] = STATE(70), + [sym_map] = STATE(70), + [sym_option] = STATE(70), + [sym_index] = STATE(50), + [sym_index_expression] = STATE(421), + [sym_math] = STATE(90), + [sym_logic] = STATE(90), + [sym_assignment] = STATE(200), + [sym_index_assignment] = STATE(200), + [sym_if_else] = STATE(200), + [sym_if] = STATE(190), + [sym_match] = STATE(200), + [sym_while] = STATE(200), + [sym_for] = STATE(200), + [sym_return] = STATE(200), + [sym_function] = STATE(70), + [sym_function_expression] = STATE(419), + [sym__function_expression_kind] = STATE(84), + [sym_function_call] = STATE(85), + [sym_yield] = STATE(85), + [sym_built_in_value] = STATE(70), + [aux_sym_root_repeat1] = STATE(6), + [sym_identifier] = ACTIONS(5), + [sym__comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_async] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(11), + [anon_sym_RBRACE] = ACTIONS(114), + [anon_sym_struct] = ACTIONS(13), + [anon_sym_new] = ACTIONS(15), + [sym_integer] = ACTIONS(17), + [sym_float] = ACTIONS(19), + [sym_string] = ACTIONS(19), + [anon_sym_true] = ACTIONS(21), + [anon_sym_false] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_none] = ACTIONS(25), + [anon_sym_some] = ACTIONS(27), + [anon_sym_if] = ACTIONS(29), + [anon_sym_match] = ACTIONS(31), + [anon_sym_while] = ACTIONS(33), + [anon_sym_for] = ACTIONS(35), + [anon_sym_asyncfor] = ACTIONS(37), + [anon_sym_return] = ACTIONS(39), + [anon_sym_args] = ACTIONS(41), + [anon_sym_assert_equal] = ACTIONS(41), + [anon_sym_env] = ACTIONS(41), + [anon_sym_fs] = ACTIONS(41), + [anon_sym_json] = ACTIONS(41), + [anon_sym_length] = ACTIONS(41), + [anon_sym_output] = ACTIONS(41), + [anon_sym_random] = ACTIONS(41), + [anon_sym_string] = ACTIONS(41), + }, [9] = { [sym_statement] = STATE(5), - [sym_expression] = STATE(92), - [sym__expression_kind] = STATE(63), - [sym_block] = STATE(240), - [sym_value] = STATE(87), - [sym_structure] = STATE(81), - [sym_new] = STATE(63), - [sym_boolean] = STATE(81), - [sym_list] = STATE(81), - [sym_map] = STATE(81), - [sym_option] = STATE(81), - [sym_index] = STATE(84), - [sym_index_expression] = STATE(482), - [sym_math] = STATE(63), - [sym_logic] = STATE(63), - [sym_assignment] = STATE(240), - [sym_index_assignment] = STATE(240), - [sym_if_else] = STATE(240), - [sym_if] = STATE(224), - [sym_match] = STATE(240), - [sym_while] = STATE(240), - [sym_for] = STATE(240), - [sym_return] = STATE(240), - [sym_function] = STATE(81), - [sym_function_expression] = STATE(481), - [sym__function_expression_kind] = STATE(71), - [sym_function_call] = STATE(69), - [sym_yield] = STATE(69), - [sym_built_in_value] = STATE(81), + [sym_expression] = STATE(73), + [sym__expression_kind] = STATE(90), + [sym_block] = STATE(200), + [sym_value] = STATE(78), + [sym_range] = STATE(77), + [sym_structure] = STATE(70), + [sym_new] = STATE(90), + [sym_boolean] = STATE(70), + [sym_list] = STATE(70), + [sym_map] = STATE(70), + [sym_option] = STATE(70), + [sym_index] = STATE(50), + [sym_index_expression] = STATE(421), + [sym_math] = STATE(90), + [sym_logic] = STATE(90), + [sym_assignment] = STATE(200), + [sym_index_assignment] = STATE(200), + [sym_if_else] = STATE(200), + [sym_if] = STATE(190), + [sym_match] = STATE(200), + [sym_while] = STATE(200), + [sym_for] = STATE(200), + [sym_return] = STATE(200), + [sym_function] = STATE(70), + [sym_function_expression] = STATE(419), + [sym__function_expression_kind] = STATE(84), + [sym_function_call] = STATE(85), + [sym_yield] = STATE(85), + [sym_built_in_value] = STATE(70), [aux_sym_root_repeat1] = STATE(5), [sym_identifier] = ACTIONS(5), [sym__comment] = ACTIONS(3), @@ -3410,99 +3447,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(41), }, [10] = { - [sym_statement] = STATE(5), - [sym_expression] = STATE(92), - [sym__expression_kind] = STATE(63), - [sym_block] = STATE(240), - [sym_value] = STATE(87), - [sym_structure] = STATE(81), - [sym_new] = STATE(63), - [sym_boolean] = STATE(81), - [sym_list] = STATE(81), - [sym_map] = STATE(81), - [sym_option] = STATE(81), - [sym_index] = STATE(84), - [sym_index_expression] = STATE(482), - [sym_math] = STATE(63), - [sym_logic] = STATE(63), - [sym_assignment] = STATE(240), - [sym_index_assignment] = STATE(240), - [sym_if_else] = STATE(240), - [sym_if] = STATE(224), - [sym_match] = STATE(240), - [sym_while] = STATE(240), - [sym_for] = STATE(240), - [sym_return] = STATE(240), - [sym_function] = STATE(81), - [sym_function_expression] = STATE(481), - [sym__function_expression_kind] = STATE(71), - [sym_function_call] = STATE(69), - [sym_yield] = STATE(69), - [sym_built_in_value] = STATE(81), - [aux_sym_root_repeat1] = STATE(5), - [sym_identifier] = ACTIONS(5), - [sym__comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(7), - [anon_sym_async] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(11), - [anon_sym_RBRACE] = ACTIONS(112), - [anon_sym_struct] = ACTIONS(13), - [anon_sym_new] = ACTIONS(15), - [sym_integer] = ACTIONS(17), - [sym_float] = ACTIONS(19), - [sym_string] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_none] = ACTIONS(25), - [anon_sym_some] = ACTIONS(27), - [anon_sym_if] = ACTIONS(29), - [anon_sym_match] = ACTIONS(31), - [anon_sym_while] = ACTIONS(33), - [anon_sym_for] = ACTIONS(35), - [anon_sym_asyncfor] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_args] = ACTIONS(41), - [anon_sym_assert_equal] = ACTIONS(41), - [anon_sym_env] = ACTIONS(41), - [anon_sym_fs] = ACTIONS(41), - [anon_sym_json] = ACTIONS(41), - [anon_sym_length] = ACTIONS(41), - [anon_sym_output] = ACTIONS(41), - [anon_sym_random] = ACTIONS(41), - [anon_sym_string] = ACTIONS(41), - }, - [11] = { - [sym_statement] = STATE(5), - [sym_expression] = STATE(92), - [sym__expression_kind] = STATE(63), - [sym_block] = STATE(240), - [sym_value] = STATE(87), - [sym_structure] = STATE(81), - [sym_new] = STATE(63), - [sym_boolean] = STATE(81), - [sym_list] = STATE(81), - [sym_map] = STATE(81), - [sym_option] = STATE(81), - [sym_index] = STATE(84), - [sym_index_expression] = STATE(482), - [sym_math] = STATE(63), - [sym_logic] = STATE(63), - [sym_assignment] = STATE(240), - [sym_index_assignment] = STATE(240), - [sym_if_else] = STATE(240), - [sym_if] = STATE(224), - [sym_match] = STATE(240), - [sym_while] = STATE(240), - [sym_for] = STATE(240), - [sym_return] = STATE(240), - [sym_function] = STATE(81), - [sym_function_expression] = STATE(481), - [sym__function_expression_kind] = STATE(71), - [sym_function_call] = STATE(69), - [sym_yield] = STATE(69), - [sym_built_in_value] = STATE(81), - [aux_sym_root_repeat1] = STATE(5), + [sym_statement] = STATE(11), + [sym_expression] = STATE(73), + [sym__expression_kind] = STATE(90), + [sym_block] = STATE(200), + [sym_value] = STATE(78), + [sym_range] = STATE(77), + [sym_structure] = STATE(70), + [sym_new] = STATE(90), + [sym_boolean] = STATE(70), + [sym_list] = STATE(70), + [sym_map] = STATE(70), + [sym_option] = STATE(70), + [sym_index] = STATE(50), + [sym_index_expression] = STATE(421), + [sym_math] = STATE(90), + [sym_logic] = STATE(90), + [sym_assignment] = STATE(200), + [sym_index_assignment] = STATE(200), + [sym_if_else] = STATE(200), + [sym_if] = STATE(190), + [sym_match] = STATE(200), + [sym_while] = STATE(200), + [sym_for] = STATE(200), + [sym_return] = STATE(200), + [sym_function] = STATE(70), + [sym_function_expression] = STATE(419), + [sym__function_expression_kind] = STATE(84), + [sym_function_call] = STATE(85), + [sym_yield] = STATE(85), + [sym_built_in_value] = STATE(70), + [aux_sym_root_repeat1] = STATE(11), [sym_identifier] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(7), @@ -3535,36 +3510,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_random] = ACTIONS(41), [anon_sym_string] = ACTIONS(41), }, - [12] = { + [11] = { [sym_statement] = STATE(5), - [sym_expression] = STATE(92), - [sym__expression_kind] = STATE(63), - [sym_block] = STATE(240), - [sym_value] = STATE(87), - [sym_structure] = STATE(81), - [sym_new] = STATE(63), - [sym_boolean] = STATE(81), - [sym_list] = STATE(81), - [sym_map] = STATE(81), - [sym_option] = STATE(81), - [sym_index] = STATE(84), - [sym_index_expression] = STATE(482), - [sym_math] = STATE(63), - [sym_logic] = STATE(63), - [sym_assignment] = STATE(240), - [sym_index_assignment] = STATE(240), - [sym_if_else] = STATE(240), - [sym_if] = STATE(224), - [sym_match] = STATE(240), - [sym_while] = STATE(240), - [sym_for] = STATE(240), - [sym_return] = STATE(240), - [sym_function] = STATE(81), - [sym_function_expression] = STATE(481), - [sym__function_expression_kind] = STATE(71), - [sym_function_call] = STATE(69), - [sym_yield] = STATE(69), - [sym_built_in_value] = STATE(81), + [sym_expression] = STATE(73), + [sym__expression_kind] = STATE(90), + [sym_block] = STATE(200), + [sym_value] = STATE(78), + [sym_range] = STATE(77), + [sym_structure] = STATE(70), + [sym_new] = STATE(90), + [sym_boolean] = STATE(70), + [sym_list] = STATE(70), + [sym_map] = STATE(70), + [sym_option] = STATE(70), + [sym_index] = STATE(50), + [sym_index_expression] = STATE(421), + [sym_math] = STATE(90), + [sym_logic] = STATE(90), + [sym_assignment] = STATE(200), + [sym_index_assignment] = STATE(200), + [sym_if_else] = STATE(200), + [sym_if] = STATE(190), + [sym_match] = STATE(200), + [sym_while] = STATE(200), + [sym_for] = STATE(200), + [sym_return] = STATE(200), + [sym_function] = STATE(70), + [sym_function_expression] = STATE(419), + [sym__function_expression_kind] = STATE(84), + [sym_function_call] = STATE(85), + [sym_yield] = STATE(85), + [sym_built_in_value] = STATE(70), [aux_sym_root_repeat1] = STATE(5), [sym_identifier] = ACTIONS(5), [sym__comment] = ACTIONS(3), @@ -3598,36 +3574,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_random] = ACTIONS(41), [anon_sym_string] = ACTIONS(41), }, - [13] = { + [12] = { [sym_statement] = STATE(5), - [sym_expression] = STATE(92), - [sym__expression_kind] = STATE(63), - [sym_block] = STATE(240), - [sym_value] = STATE(87), - [sym_structure] = STATE(81), - [sym_new] = STATE(63), - [sym_boolean] = STATE(81), - [sym_list] = STATE(81), - [sym_map] = STATE(81), - [sym_option] = STATE(81), - [sym_index] = STATE(84), - [sym_index_expression] = STATE(482), - [sym_math] = STATE(63), - [sym_logic] = STATE(63), - [sym_assignment] = STATE(240), - [sym_index_assignment] = STATE(240), - [sym_if_else] = STATE(240), - [sym_if] = STATE(224), - [sym_match] = STATE(240), - [sym_while] = STATE(240), - [sym_for] = STATE(240), - [sym_return] = STATE(240), - [sym_function] = STATE(81), - [sym_function_expression] = STATE(481), - [sym__function_expression_kind] = STATE(71), - [sym_function_call] = STATE(69), - [sym_yield] = STATE(69), - [sym_built_in_value] = STATE(81), + [sym_expression] = STATE(73), + [sym__expression_kind] = STATE(90), + [sym_block] = STATE(200), + [sym_value] = STATE(78), + [sym_range] = STATE(77), + [sym_structure] = STATE(70), + [sym_new] = STATE(90), + [sym_boolean] = STATE(70), + [sym_list] = STATE(70), + [sym_map] = STATE(70), + [sym_option] = STATE(70), + [sym_index] = STATE(50), + [sym_index_expression] = STATE(421), + [sym_math] = STATE(90), + [sym_logic] = STATE(90), + [sym_assignment] = STATE(200), + [sym_index_assignment] = STATE(200), + [sym_if_else] = STATE(200), + [sym_if] = STATE(190), + [sym_match] = STATE(200), + [sym_while] = STATE(200), + [sym_for] = STATE(200), + [sym_return] = STATE(200), + [sym_function] = STATE(70), + [sym_function_expression] = STATE(419), + [sym__function_expression_kind] = STATE(84), + [sym_function_call] = STATE(85), + [sym_yield] = STATE(85), + [sym_built_in_value] = STATE(70), [aux_sym_root_repeat1] = STATE(5), [sym_identifier] = ACTIONS(5), [sym__comment] = ACTIONS(3), @@ -3661,43 +3638,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_random] = ACTIONS(41), [anon_sym_string] = ACTIONS(41), }, - [14] = { - [sym_statement] = STATE(11), - [sym_expression] = STATE(92), - [sym__expression_kind] = STATE(63), - [sym_block] = STATE(240), - [sym_value] = STATE(87), - [sym_structure] = STATE(81), - [sym_new] = STATE(63), - [sym_boolean] = STATE(81), - [sym_list] = STATE(81), - [sym_map] = STATE(81), - [sym_option] = STATE(81), - [sym_index] = STATE(84), - [sym_index_expression] = STATE(482), - [sym_math] = STATE(63), - [sym_logic] = STATE(63), - [sym_assignment] = STATE(240), - [sym_index_assignment] = STATE(240), - [sym_if_else] = STATE(240), - [sym_if] = STATE(224), - [sym_match] = STATE(240), - [sym_while] = STATE(240), - [sym_for] = STATE(240), - [sym_return] = STATE(240), - [sym_function] = STATE(81), - [sym_function_expression] = STATE(481), - [sym__function_expression_kind] = STATE(71), - [sym_function_call] = STATE(69), - [sym_yield] = STATE(69), - [sym_built_in_value] = STATE(81), - [aux_sym_root_repeat1] = STATE(11), + [13] = { + [sym_statement] = STATE(15), + [sym_expression] = STATE(73), + [sym__expression_kind] = STATE(90), + [sym_block] = STATE(200), + [sym_value] = STATE(78), + [sym_range] = STATE(77), + [sym_structure] = STATE(70), + [sym_new] = STATE(90), + [sym_boolean] = STATE(70), + [sym_list] = STATE(70), + [sym_map] = STATE(70), + [sym_option] = STATE(70), + [sym_index] = STATE(50), + [sym_index_expression] = STATE(421), + [sym_math] = STATE(90), + [sym_logic] = STATE(90), + [sym_assignment] = STATE(200), + [sym_index_assignment] = STATE(200), + [sym_if_else] = STATE(200), + [sym_if] = STATE(190), + [sym_match] = STATE(200), + [sym_while] = STATE(200), + [sym_for] = STATE(200), + [sym_return] = STATE(200), + [sym_function] = STATE(70), + [sym_function_expression] = STATE(419), + [sym__function_expression_kind] = STATE(84), + [sym_function_call] = STATE(85), + [sym_yield] = STATE(85), + [sym_built_in_value] = STATE(70), + [aux_sym_root_repeat1] = STATE(15), [sym_identifier] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(7), [anon_sym_async] = ACTIONS(9), [anon_sym_LBRACE] = ACTIONS(11), - [anon_sym_RBRACE] = ACTIONS(120), + [anon_sym_RBRACE] = ACTIONS(45), + [anon_sym_struct] = ACTIONS(13), + [anon_sym_new] = ACTIONS(15), + [sym_integer] = ACTIONS(17), + [sym_float] = ACTIONS(19), + [sym_string] = ACTIONS(19), + [anon_sym_true] = ACTIONS(21), + [anon_sym_false] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_none] = ACTIONS(25), + [anon_sym_some] = ACTIONS(27), + [anon_sym_if] = ACTIONS(29), + [anon_sym_match] = ACTIONS(31), + [anon_sym_while] = ACTIONS(33), + [anon_sym_for] = ACTIONS(35), + [anon_sym_asyncfor] = ACTIONS(37), + [anon_sym_return] = ACTIONS(39), + [anon_sym_args] = ACTIONS(41), + [anon_sym_assert_equal] = ACTIONS(41), + [anon_sym_env] = ACTIONS(41), + [anon_sym_fs] = ACTIONS(41), + [anon_sym_json] = ACTIONS(41), + [anon_sym_length] = ACTIONS(41), + [anon_sym_output] = ACTIONS(41), + [anon_sym_random] = ACTIONS(41), + [anon_sym_string] = ACTIONS(41), + }, + [14] = { + [sym_statement] = STATE(16), + [sym_expression] = STATE(73), + [sym__expression_kind] = STATE(90), + [sym_block] = STATE(200), + [sym_value] = STATE(78), + [sym_range] = STATE(77), + [sym_structure] = STATE(70), + [sym_new] = STATE(90), + [sym_boolean] = STATE(70), + [sym_list] = STATE(70), + [sym_map] = STATE(70), + [sym_option] = STATE(70), + [sym_index] = STATE(50), + [sym_index_expression] = STATE(421), + [sym_math] = STATE(90), + [sym_logic] = STATE(90), + [sym_assignment] = STATE(200), + [sym_index_assignment] = STATE(200), + [sym_if_else] = STATE(200), + [sym_if] = STATE(190), + [sym_match] = STATE(200), + [sym_while] = STATE(200), + [sym_for] = STATE(200), + [sym_return] = STATE(200), + [sym_function] = STATE(70), + [sym_function_expression] = STATE(419), + [sym__function_expression_kind] = STATE(84), + [sym_function_call] = STATE(85), + [sym_yield] = STATE(85), + [sym_built_in_value] = STATE(70), + [aux_sym_root_repeat1] = STATE(16), + [sym_identifier] = ACTIONS(5), + [sym__comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_async] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(11), + [anon_sym_RBRACE] = ACTIONS(122), [anon_sym_struct] = ACTIONS(13), [anon_sym_new] = ACTIONS(15), [sym_integer] = ACTIONS(17), @@ -3725,98 +3767,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(41), }, [15] = { - [sym_statement] = STATE(13), - [sym_expression] = STATE(92), - [sym__expression_kind] = STATE(63), - [sym_block] = STATE(240), - [sym_value] = STATE(87), - [sym_structure] = STATE(81), - [sym_new] = STATE(63), - [sym_boolean] = STATE(81), - [sym_list] = STATE(81), - [sym_map] = STATE(81), - [sym_option] = STATE(81), - [sym_index] = STATE(84), - [sym_index_expression] = STATE(482), - [sym_math] = STATE(63), - [sym_logic] = STATE(63), - [sym_assignment] = STATE(240), - [sym_index_assignment] = STATE(240), - [sym_if_else] = STATE(240), - [sym_if] = STATE(224), - [sym_match] = STATE(240), - [sym_while] = STATE(240), - [sym_for] = STATE(240), - [sym_return] = STATE(240), - [sym_function] = STATE(81), - [sym_function_expression] = STATE(481), - [sym__function_expression_kind] = STATE(71), - [sym_function_call] = STATE(69), - [sym_yield] = STATE(69), - [sym_built_in_value] = STATE(81), - [aux_sym_root_repeat1] = STATE(13), - [sym_identifier] = ACTIONS(5), - [sym__comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(7), - [anon_sym_async] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(11), - [anon_sym_RBRACE] = ACTIONS(47), - [anon_sym_struct] = ACTIONS(13), - [anon_sym_new] = ACTIONS(15), - [sym_integer] = ACTIONS(17), - [sym_float] = ACTIONS(19), - [sym_string] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_none] = ACTIONS(25), - [anon_sym_some] = ACTIONS(27), - [anon_sym_if] = ACTIONS(29), - [anon_sym_match] = ACTIONS(31), - [anon_sym_while] = ACTIONS(33), - [anon_sym_for] = ACTIONS(35), - [anon_sym_asyncfor] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_args] = ACTIONS(41), - [anon_sym_assert_equal] = ACTIONS(41), - [anon_sym_env] = ACTIONS(41), - [anon_sym_fs] = ACTIONS(41), - [anon_sym_json] = ACTIONS(41), - [anon_sym_length] = ACTIONS(41), - [anon_sym_output] = ACTIONS(41), - [anon_sym_random] = ACTIONS(41), - [anon_sym_string] = ACTIONS(41), - }, - [16] = { [sym_statement] = STATE(5), - [sym_expression] = STATE(92), - [sym__expression_kind] = STATE(63), - [sym_block] = STATE(240), - [sym_value] = STATE(87), - [sym_structure] = STATE(81), - [sym_new] = STATE(63), - [sym_boolean] = STATE(81), - [sym_list] = STATE(81), - [sym_map] = STATE(81), - [sym_option] = STATE(81), - [sym_index] = STATE(84), - [sym_index_expression] = STATE(482), - [sym_math] = STATE(63), - [sym_logic] = STATE(63), - [sym_assignment] = STATE(240), - [sym_index_assignment] = STATE(240), - [sym_if_else] = STATE(240), - [sym_if] = STATE(224), - [sym_match] = STATE(240), - [sym_while] = STATE(240), - [sym_for] = STATE(240), - [sym_return] = STATE(240), - [sym_function] = STATE(81), - [sym_function_expression] = STATE(481), - [sym__function_expression_kind] = STATE(71), - [sym_function_call] = STATE(69), - [sym_yield] = STATE(69), - [sym_built_in_value] = STATE(81), + [sym_expression] = STATE(73), + [sym__expression_kind] = STATE(90), + [sym_block] = STATE(200), + [sym_value] = STATE(78), + [sym_range] = STATE(77), + [sym_structure] = STATE(70), + [sym_new] = STATE(90), + [sym_boolean] = STATE(70), + [sym_list] = STATE(70), + [sym_map] = STATE(70), + [sym_option] = STATE(70), + [sym_index] = STATE(50), + [sym_index_expression] = STATE(421), + [sym_math] = STATE(90), + [sym_logic] = STATE(90), + [sym_assignment] = STATE(200), + [sym_index_assignment] = STATE(200), + [sym_if_else] = STATE(200), + [sym_if] = STATE(190), + [sym_match] = STATE(200), + [sym_while] = STATE(200), + [sym_for] = STATE(200), + [sym_return] = STATE(200), + [sym_function] = STATE(70), + [sym_function_expression] = STATE(419), + [sym__function_expression_kind] = STATE(84), + [sym_function_call] = STATE(85), + [sym_yield] = STATE(85), + [sym_built_in_value] = STATE(70), [aux_sym_root_repeat1] = STATE(5), [sym_identifier] = ACTIONS(5), [sym__comment] = ACTIONS(3), @@ -3850,36 +3830,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_random] = ACTIONS(41), [anon_sym_string] = ACTIONS(41), }, - [17] = { + [16] = { [sym_statement] = STATE(5), - [sym_expression] = STATE(92), - [sym__expression_kind] = STATE(63), - [sym_block] = STATE(240), - [sym_value] = STATE(87), - [sym_structure] = STATE(81), - [sym_new] = STATE(63), - [sym_boolean] = STATE(81), - [sym_list] = STATE(81), - [sym_map] = STATE(81), - [sym_option] = STATE(81), - [sym_index] = STATE(84), - [sym_index_expression] = STATE(482), - [sym_math] = STATE(63), - [sym_logic] = STATE(63), - [sym_assignment] = STATE(240), - [sym_index_assignment] = STATE(240), - [sym_if_else] = STATE(240), - [sym_if] = STATE(224), - [sym_match] = STATE(240), - [sym_while] = STATE(240), - [sym_for] = STATE(240), - [sym_return] = STATE(240), - [sym_function] = STATE(81), - [sym_function_expression] = STATE(481), - [sym__function_expression_kind] = STATE(71), - [sym_function_call] = STATE(69), - [sym_yield] = STATE(69), - [sym_built_in_value] = STATE(81), + [sym_expression] = STATE(73), + [sym__expression_kind] = STATE(90), + [sym_block] = STATE(200), + [sym_value] = STATE(78), + [sym_range] = STATE(77), + [sym_structure] = STATE(70), + [sym_new] = STATE(90), + [sym_boolean] = STATE(70), + [sym_list] = STATE(70), + [sym_map] = STATE(70), + [sym_option] = STATE(70), + [sym_index] = STATE(50), + [sym_index_expression] = STATE(421), + [sym_math] = STATE(90), + [sym_logic] = STATE(90), + [sym_assignment] = STATE(200), + [sym_index_assignment] = STATE(200), + [sym_if_else] = STATE(200), + [sym_if] = STATE(190), + [sym_match] = STATE(200), + [sym_while] = STATE(200), + [sym_for] = STATE(200), + [sym_return] = STATE(200), + [sym_function] = STATE(70), + [sym_function_expression] = STATE(419), + [sym__function_expression_kind] = STATE(84), + [sym_function_call] = STATE(85), + [sym_yield] = STATE(85), + [sym_built_in_value] = STATE(70), [aux_sym_root_repeat1] = STATE(5), [sym_identifier] = ACTIONS(5), [sym__comment] = ACTIONS(3), @@ -3913,100 +3894,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_random] = ACTIONS(41), [anon_sym_string] = ACTIONS(41), }, - [18] = { - [sym_statement] = STATE(16), - [sym_expression] = STATE(92), - [sym__expression_kind] = STATE(63), - [sym_block] = STATE(240), - [sym_value] = STATE(87), - [sym_structure] = STATE(81), - [sym_new] = STATE(63), - [sym_boolean] = STATE(81), - [sym_list] = STATE(81), - [sym_map] = STATE(81), - [sym_option] = STATE(81), - [sym_index] = STATE(84), - [sym_index_expression] = STATE(482), - [sym_math] = STATE(63), - [sym_logic] = STATE(63), - [sym_assignment] = STATE(240), - [sym_index_assignment] = STATE(240), - [sym_if_else] = STATE(240), - [sym_if] = STATE(224), - [sym_match] = STATE(240), - [sym_while] = STATE(240), - [sym_for] = STATE(240), - [sym_return] = STATE(240), - [sym_function] = STATE(81), - [sym_function_expression] = STATE(481), - [sym__function_expression_kind] = STATE(71), - [sym_function_call] = STATE(69), - [sym_yield] = STATE(69), - [sym_built_in_value] = STATE(81), - [aux_sym_root_repeat1] = STATE(16), - [sym_identifier] = ACTIONS(5), - [sym__comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(7), - [anon_sym_async] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(11), - [anon_sym_RBRACE] = ACTIONS(124), - [anon_sym_struct] = ACTIONS(13), - [anon_sym_new] = ACTIONS(15), - [sym_integer] = ACTIONS(17), - [sym_float] = ACTIONS(19), - [sym_string] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_none] = ACTIONS(25), - [anon_sym_some] = ACTIONS(27), - [anon_sym_if] = ACTIONS(29), - [anon_sym_match] = ACTIONS(31), - [anon_sym_while] = ACTIONS(33), - [anon_sym_for] = ACTIONS(35), - [anon_sym_asyncfor] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_args] = ACTIONS(41), - [anon_sym_assert_equal] = ACTIONS(41), - [anon_sym_env] = ACTIONS(41), - [anon_sym_fs] = ACTIONS(41), - [anon_sym_json] = ACTIONS(41), - [anon_sym_length] = ACTIONS(41), - [anon_sym_output] = ACTIONS(41), - [anon_sym_random] = ACTIONS(41), - [anon_sym_string] = ACTIONS(41), - }, - [19] = { - [sym_statement] = STATE(10), - [sym_expression] = STATE(92), - [sym__expression_kind] = STATE(63), - [sym_block] = STATE(240), - [sym_value] = STATE(87), - [sym_structure] = STATE(81), - [sym_new] = STATE(63), - [sym_boolean] = STATE(81), - [sym_list] = STATE(81), - [sym_map] = STATE(81), - [sym_option] = STATE(81), - [sym_index] = STATE(84), - [sym_index_expression] = STATE(482), - [sym_math] = STATE(63), - [sym_logic] = STATE(63), - [sym_assignment] = STATE(240), - [sym_index_assignment] = STATE(240), - [sym_if_else] = STATE(240), - [sym_if] = STATE(224), - [sym_match] = STATE(240), - [sym_while] = STATE(240), - [sym_for] = STATE(240), - [sym_return] = STATE(240), - [sym_function] = STATE(81), - [sym_function_expression] = STATE(481), - [sym__function_expression_kind] = STATE(71), - [sym_function_call] = STATE(69), - [sym_yield] = STATE(69), - [sym_built_in_value] = STATE(81), - [aux_sym_root_repeat1] = STATE(10), + [17] = { + [sym_statement] = STATE(19), + [sym_expression] = STATE(73), + [sym__expression_kind] = STATE(90), + [sym_block] = STATE(200), + [sym_value] = STATE(78), + [sym_range] = STATE(77), + [sym_structure] = STATE(70), + [sym_new] = STATE(90), + [sym_boolean] = STATE(70), + [sym_list] = STATE(70), + [sym_map] = STATE(70), + [sym_option] = STATE(70), + [sym_index] = STATE(50), + [sym_index_expression] = STATE(421), + [sym_math] = STATE(90), + [sym_logic] = STATE(90), + [sym_assignment] = STATE(200), + [sym_index_assignment] = STATE(200), + [sym_if_else] = STATE(200), + [sym_if] = STATE(190), + [sym_match] = STATE(200), + [sym_while] = STATE(200), + [sym_for] = STATE(200), + [sym_return] = STATE(200), + [sym_function] = STATE(70), + [sym_function_expression] = STATE(419), + [sym__function_expression_kind] = STATE(84), + [sym_function_call] = STATE(85), + [sym_yield] = STATE(85), + [sym_built_in_value] = STATE(70), + [aux_sym_root_repeat1] = STATE(19), [sym_identifier] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(7), @@ -4039,37 +3958,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_random] = ACTIONS(41), [anon_sym_string] = ACTIONS(41), }, - [20] = { - [sym_statement] = STATE(26), - [sym_expression] = STATE(92), - [sym__expression_kind] = STATE(63), - [sym_block] = STATE(240), - [sym_value] = STATE(87), - [sym_structure] = STATE(81), - [sym_new] = STATE(63), - [sym_boolean] = STATE(81), - [sym_list] = STATE(81), - [sym_map] = STATE(81), - [sym_option] = STATE(81), - [sym_index] = STATE(84), - [sym_index_expression] = STATE(482), - [sym_math] = STATE(63), - [sym_logic] = STATE(63), - [sym_assignment] = STATE(240), - [sym_index_assignment] = STATE(240), - [sym_if_else] = STATE(240), - [sym_if] = STATE(224), - [sym_match] = STATE(240), - [sym_while] = STATE(240), - [sym_for] = STATE(240), - [sym_return] = STATE(240), - [sym_function] = STATE(81), - [sym_function_expression] = STATE(481), - [sym__function_expression_kind] = STATE(71), - [sym_function_call] = STATE(69), - [sym_yield] = STATE(69), - [sym_built_in_value] = STATE(81), - [aux_sym_root_repeat1] = STATE(26), + [18] = { + [sym_statement] = STATE(20), + [sym_expression] = STATE(73), + [sym__expression_kind] = STATE(90), + [sym_block] = STATE(200), + [sym_value] = STATE(78), + [sym_range] = STATE(77), + [sym_structure] = STATE(70), + [sym_new] = STATE(90), + [sym_boolean] = STATE(70), + [sym_list] = STATE(70), + [sym_map] = STATE(70), + [sym_option] = STATE(70), + [sym_index] = STATE(50), + [sym_index_expression] = STATE(421), + [sym_math] = STATE(90), + [sym_logic] = STATE(90), + [sym_assignment] = STATE(200), + [sym_index_assignment] = STATE(200), + [sym_if_else] = STATE(200), + [sym_if] = STATE(190), + [sym_match] = STATE(200), + [sym_while] = STATE(200), + [sym_for] = STATE(200), + [sym_return] = STATE(200), + [sym_function] = STATE(70), + [sym_function_expression] = STATE(419), + [sym__function_expression_kind] = STATE(84), + [sym_function_call] = STATE(85), + [sym_yield] = STATE(85), + [sym_built_in_value] = STATE(70), + [aux_sym_root_repeat1] = STATE(20), [sym_identifier] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(7), @@ -4102,43 +4022,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_random] = ACTIONS(41), [anon_sym_string] = ACTIONS(41), }, - [21] = { - [sym_statement] = STATE(17), - [sym_expression] = STATE(92), - [sym__expression_kind] = STATE(63), - [sym_block] = STATE(240), - [sym_value] = STATE(87), - [sym_structure] = STATE(81), - [sym_new] = STATE(63), - [sym_boolean] = STATE(81), - [sym_list] = STATE(81), - [sym_map] = STATE(81), - [sym_option] = STATE(81), - [sym_index] = STATE(84), - [sym_index_expression] = STATE(482), - [sym_math] = STATE(63), - [sym_logic] = STATE(63), - [sym_assignment] = STATE(240), - [sym_index_assignment] = STATE(240), - [sym_if_else] = STATE(240), - [sym_if] = STATE(224), - [sym_match] = STATE(240), - [sym_while] = STATE(240), - [sym_for] = STATE(240), - [sym_return] = STATE(240), - [sym_function] = STATE(81), - [sym_function_expression] = STATE(481), - [sym__function_expression_kind] = STATE(71), - [sym_function_call] = STATE(69), - [sym_yield] = STATE(69), - [sym_built_in_value] = STATE(81), - [aux_sym_root_repeat1] = STATE(17), + [19] = { + [sym_statement] = STATE(5), + [sym_expression] = STATE(73), + [sym__expression_kind] = STATE(90), + [sym_block] = STATE(200), + [sym_value] = STATE(78), + [sym_range] = STATE(77), + [sym_structure] = STATE(70), + [sym_new] = STATE(90), + [sym_boolean] = STATE(70), + [sym_list] = STATE(70), + [sym_map] = STATE(70), + [sym_option] = STATE(70), + [sym_index] = STATE(50), + [sym_index_expression] = STATE(421), + [sym_math] = STATE(90), + [sym_logic] = STATE(90), + [sym_assignment] = STATE(200), + [sym_index_assignment] = STATE(200), + [sym_if_else] = STATE(200), + [sym_if] = STATE(190), + [sym_match] = STATE(200), + [sym_while] = STATE(200), + [sym_for] = STATE(200), + [sym_return] = STATE(200), + [sym_function] = STATE(70), + [sym_function_expression] = STATE(419), + [sym__function_expression_kind] = STATE(84), + [sym_function_call] = STATE(85), + [sym_yield] = STATE(85), + [sym_built_in_value] = STATE(70), + [aux_sym_root_repeat1] = STATE(5), [sym_identifier] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(7), [anon_sym_async] = ACTIONS(9), [anon_sym_LBRACE] = ACTIONS(11), - [anon_sym_RBRACE] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(128), [anon_sym_struct] = ACTIONS(13), [anon_sym_new] = ACTIONS(15), [sym_integer] = ACTIONS(17), @@ -4165,37 +4086,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_random] = ACTIONS(41), [anon_sym_string] = ACTIONS(41), }, - [22] = { - [sym_statement] = STATE(12), - [sym_expression] = STATE(92), - [sym__expression_kind] = STATE(63), - [sym_block] = STATE(240), - [sym_value] = STATE(87), - [sym_structure] = STATE(81), - [sym_new] = STATE(63), - [sym_boolean] = STATE(81), - [sym_list] = STATE(81), - [sym_map] = STATE(81), - [sym_option] = STATE(81), - [sym_index] = STATE(84), - [sym_index_expression] = STATE(482), - [sym_math] = STATE(63), - [sym_logic] = STATE(63), - [sym_assignment] = STATE(240), - [sym_index_assignment] = STATE(240), - [sym_if_else] = STATE(240), - [sym_if] = STATE(224), - [sym_match] = STATE(240), - [sym_while] = STATE(240), - [sym_for] = STATE(240), - [sym_return] = STATE(240), - [sym_function] = STATE(81), - [sym_function_expression] = STATE(481), - [sym__function_expression_kind] = STATE(71), - [sym_function_call] = STATE(69), - [sym_yield] = STATE(69), - [sym_built_in_value] = STATE(81), - [aux_sym_root_repeat1] = STATE(12), + [20] = { + [sym_statement] = STATE(5), + [sym_expression] = STATE(73), + [sym__expression_kind] = STATE(90), + [sym_block] = STATE(200), + [sym_value] = STATE(78), + [sym_range] = STATE(77), + [sym_structure] = STATE(70), + [sym_new] = STATE(90), + [sym_boolean] = STATE(70), + [sym_list] = STATE(70), + [sym_map] = STATE(70), + [sym_option] = STATE(70), + [sym_index] = STATE(50), + [sym_index_expression] = STATE(421), + [sym_math] = STATE(90), + [sym_logic] = STATE(90), + [sym_assignment] = STATE(200), + [sym_index_assignment] = STATE(200), + [sym_if_else] = STATE(200), + [sym_if] = STATE(190), + [sym_match] = STATE(200), + [sym_while] = STATE(200), + [sym_for] = STATE(200), + [sym_return] = STATE(200), + [sym_function] = STATE(70), + [sym_function_expression] = STATE(419), + [sym__function_expression_kind] = STATE(84), + [sym_function_call] = STATE(85), + [sym_yield] = STATE(85), + [sym_built_in_value] = STATE(70), + [aux_sym_root_repeat1] = STATE(5), [sym_identifier] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(7), @@ -4228,162 +4150,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_random] = ACTIONS(41), [anon_sym_string] = ACTIONS(41), }, + [21] = { + [sym_statement] = STATE(12), + [sym_expression] = STATE(73), + [sym__expression_kind] = STATE(90), + [sym_block] = STATE(200), + [sym_value] = STATE(78), + [sym_range] = STATE(77), + [sym_structure] = STATE(70), + [sym_new] = STATE(90), + [sym_boolean] = STATE(70), + [sym_list] = STATE(70), + [sym_map] = STATE(70), + [sym_option] = STATE(70), + [sym_index] = STATE(50), + [sym_index_expression] = STATE(421), + [sym_math] = STATE(90), + [sym_logic] = STATE(90), + [sym_assignment] = STATE(200), + [sym_index_assignment] = STATE(200), + [sym_if_else] = STATE(200), + [sym_if] = STATE(190), + [sym_match] = STATE(200), + [sym_while] = STATE(200), + [sym_for] = STATE(200), + [sym_return] = STATE(200), + [sym_function] = STATE(70), + [sym_function_expression] = STATE(419), + [sym__function_expression_kind] = STATE(84), + [sym_function_call] = STATE(85), + [sym_yield] = STATE(85), + [sym_built_in_value] = STATE(70), + [aux_sym_root_repeat1] = STATE(12), + [sym_identifier] = ACTIONS(5), + [sym__comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_async] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(11), + [anon_sym_RBRACE] = ACTIONS(118), + [anon_sym_struct] = ACTIONS(13), + [anon_sym_new] = ACTIONS(15), + [sym_integer] = ACTIONS(17), + [sym_float] = ACTIONS(19), + [sym_string] = ACTIONS(19), + [anon_sym_true] = ACTIONS(21), + [anon_sym_false] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_none] = ACTIONS(25), + [anon_sym_some] = ACTIONS(27), + [anon_sym_if] = ACTIONS(29), + [anon_sym_match] = ACTIONS(31), + [anon_sym_while] = ACTIONS(33), + [anon_sym_for] = ACTIONS(35), + [anon_sym_asyncfor] = ACTIONS(37), + [anon_sym_return] = ACTIONS(39), + [anon_sym_args] = ACTIONS(41), + [anon_sym_assert_equal] = ACTIONS(41), + [anon_sym_env] = ACTIONS(41), + [anon_sym_fs] = ACTIONS(41), + [anon_sym_json] = ACTIONS(41), + [anon_sym_length] = ACTIONS(41), + [anon_sym_output] = ACTIONS(41), + [anon_sym_random] = ACTIONS(41), + [anon_sym_string] = ACTIONS(41), + }, + [22] = { + [sym_statement] = STATE(9), + [sym_expression] = STATE(73), + [sym__expression_kind] = STATE(90), + [sym_block] = STATE(200), + [sym_value] = STATE(78), + [sym_range] = STATE(77), + [sym_structure] = STATE(70), + [sym_new] = STATE(90), + [sym_boolean] = STATE(70), + [sym_list] = STATE(70), + [sym_map] = STATE(70), + [sym_option] = STATE(70), + [sym_index] = STATE(50), + [sym_index_expression] = STATE(421), + [sym_math] = STATE(90), + [sym_logic] = STATE(90), + [sym_assignment] = STATE(200), + [sym_index_assignment] = STATE(200), + [sym_if_else] = STATE(200), + [sym_if] = STATE(190), + [sym_match] = STATE(200), + [sym_while] = STATE(200), + [sym_for] = STATE(200), + [sym_return] = STATE(200), + [sym_function] = STATE(70), + [sym_function_expression] = STATE(419), + [sym__function_expression_kind] = STATE(84), + [sym_function_call] = STATE(85), + [sym_yield] = STATE(85), + [sym_built_in_value] = STATE(70), + [aux_sym_root_repeat1] = STATE(9), + [sym_identifier] = ACTIONS(5), + [sym__comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_async] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(11), + [anon_sym_RBRACE] = ACTIONS(47), + [anon_sym_struct] = ACTIONS(13), + [anon_sym_new] = ACTIONS(15), + [sym_integer] = ACTIONS(17), + [sym_float] = ACTIONS(19), + [sym_string] = ACTIONS(19), + [anon_sym_true] = ACTIONS(21), + [anon_sym_false] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_none] = ACTIONS(25), + [anon_sym_some] = ACTIONS(27), + [anon_sym_if] = ACTIONS(29), + [anon_sym_match] = ACTIONS(31), + [anon_sym_while] = ACTIONS(33), + [anon_sym_for] = ACTIONS(35), + [anon_sym_asyncfor] = ACTIONS(37), + [anon_sym_return] = ACTIONS(39), + [anon_sym_args] = ACTIONS(41), + [anon_sym_assert_equal] = ACTIONS(41), + [anon_sym_env] = ACTIONS(41), + [anon_sym_fs] = ACTIONS(41), + [anon_sym_json] = ACTIONS(41), + [anon_sym_length] = ACTIONS(41), + [anon_sym_output] = ACTIONS(41), + [anon_sym_random] = ACTIONS(41), + [anon_sym_string] = ACTIONS(41), + }, [23] = { - [sym_statement] = STATE(5), - [sym_expression] = STATE(92), - [sym__expression_kind] = STATE(63), - [sym_block] = STATE(240), - [sym_value] = STATE(87), - [sym_structure] = STATE(81), - [sym_new] = STATE(63), - [sym_boolean] = STATE(81), - [sym_list] = STATE(81), - [sym_map] = STATE(81), - [sym_option] = STATE(81), - [sym_index] = STATE(84), - [sym_index_expression] = STATE(482), - [sym_math] = STATE(63), - [sym_logic] = STATE(63), - [sym_assignment] = STATE(240), - [sym_index_assignment] = STATE(240), - [sym_if_else] = STATE(240), - [sym_if] = STATE(224), - [sym_match] = STATE(240), - [sym_while] = STATE(240), - [sym_for] = STATE(240), - [sym_return] = STATE(240), - [sym_function] = STATE(81), - [sym_function_expression] = STATE(481), - [sym__function_expression_kind] = STATE(71), - [sym_function_call] = STATE(69), - [sym_yield] = STATE(69), - [sym_built_in_value] = STATE(81), - [aux_sym_root_repeat1] = STATE(5), - [sym_identifier] = ACTIONS(5), - [sym__comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(7), - [anon_sym_async] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(11), - [anon_sym_RBRACE] = ACTIONS(132), - [anon_sym_struct] = ACTIONS(13), - [anon_sym_new] = ACTIONS(15), - [sym_integer] = ACTIONS(17), - [sym_float] = ACTIONS(19), - [sym_string] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_none] = ACTIONS(25), - [anon_sym_some] = ACTIONS(27), - [anon_sym_if] = ACTIONS(29), - [anon_sym_match] = ACTIONS(31), - [anon_sym_while] = ACTIONS(33), - [anon_sym_for] = ACTIONS(35), - [anon_sym_asyncfor] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_args] = ACTIONS(41), - [anon_sym_assert_equal] = ACTIONS(41), - [anon_sym_env] = ACTIONS(41), - [anon_sym_fs] = ACTIONS(41), - [anon_sym_json] = ACTIONS(41), - [anon_sym_length] = ACTIONS(41), - [anon_sym_output] = ACTIONS(41), - [anon_sym_random] = ACTIONS(41), - [anon_sym_string] = ACTIONS(41), - }, - [24] = { - [sym_statement] = STATE(5), - [sym_expression] = STATE(92), - [sym__expression_kind] = STATE(63), - [sym_block] = STATE(240), - [sym_value] = STATE(87), - [sym_structure] = STATE(81), - [sym_new] = STATE(63), - [sym_boolean] = STATE(81), - [sym_list] = STATE(81), - [sym_map] = STATE(81), - [sym_option] = STATE(81), - [sym_index] = STATE(84), - [sym_index_expression] = STATE(482), - [sym_math] = STATE(63), - [sym_logic] = STATE(63), - [sym_assignment] = STATE(240), - [sym_index_assignment] = STATE(240), - [sym_if_else] = STATE(240), - [sym_if] = STATE(224), - [sym_match] = STATE(240), - [sym_while] = STATE(240), - [sym_for] = STATE(240), - [sym_return] = STATE(240), - [sym_function] = STATE(81), - [sym_function_expression] = STATE(481), - [sym__function_expression_kind] = STATE(71), - [sym_function_call] = STATE(69), - [sym_yield] = STATE(69), - [sym_built_in_value] = STATE(81), - [aux_sym_root_repeat1] = STATE(5), - [ts_builtin_sym_end] = ACTIONS(134), - [sym_identifier] = ACTIONS(5), - [sym__comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(7), - [anon_sym_async] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(11), - [anon_sym_struct] = ACTIONS(13), - [anon_sym_new] = ACTIONS(15), - [sym_integer] = ACTIONS(17), - [sym_float] = ACTIONS(19), - [sym_string] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_none] = ACTIONS(25), - [anon_sym_some] = ACTIONS(27), - [anon_sym_if] = ACTIONS(29), - [anon_sym_match] = ACTIONS(31), - [anon_sym_while] = ACTIONS(33), - [anon_sym_for] = ACTIONS(35), - [anon_sym_asyncfor] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_args] = ACTIONS(41), - [anon_sym_assert_equal] = ACTIONS(41), - [anon_sym_env] = ACTIONS(41), - [anon_sym_fs] = ACTIONS(41), - [anon_sym_json] = ACTIONS(41), - [anon_sym_length] = ACTIONS(41), - [anon_sym_output] = ACTIONS(41), - [anon_sym_random] = ACTIONS(41), - [anon_sym_string] = ACTIONS(41), - }, - [25] = { [sym_statement] = STATE(7), - [sym_expression] = STATE(92), - [sym__expression_kind] = STATE(63), - [sym_block] = STATE(240), - [sym_value] = STATE(87), - [sym_structure] = STATE(81), - [sym_new] = STATE(63), - [sym_boolean] = STATE(81), - [sym_list] = STATE(81), - [sym_map] = STATE(81), - [sym_option] = STATE(81), - [sym_index] = STATE(84), - [sym_index_expression] = STATE(482), - [sym_math] = STATE(63), - [sym_logic] = STATE(63), - [sym_assignment] = STATE(240), - [sym_index_assignment] = STATE(240), - [sym_if_else] = STATE(240), - [sym_if] = STATE(224), - [sym_match] = STATE(240), - [sym_while] = STATE(240), - [sym_for] = STATE(240), - [sym_return] = STATE(240), - [sym_function] = STATE(81), - [sym_function_expression] = STATE(481), - [sym__function_expression_kind] = STATE(71), - [sym_function_call] = STATE(69), - [sym_yield] = STATE(69), - [sym_built_in_value] = STATE(81), + [sym_expression] = STATE(73), + [sym__expression_kind] = STATE(90), + [sym_block] = STATE(200), + [sym_value] = STATE(78), + [sym_range] = STATE(77), + [sym_structure] = STATE(70), + [sym_new] = STATE(90), + [sym_boolean] = STATE(70), + [sym_list] = STATE(70), + [sym_map] = STATE(70), + [sym_option] = STATE(70), + [sym_index] = STATE(50), + [sym_index_expression] = STATE(421), + [sym_math] = STATE(90), + [sym_logic] = STATE(90), + [sym_assignment] = STATE(200), + [sym_index_assignment] = STATE(200), + [sym_if_else] = STATE(200), + [sym_if] = STATE(190), + [sym_match] = STATE(200), + [sym_while] = STATE(200), + [sym_for] = STATE(200), + [sym_return] = STATE(200), + [sym_function] = STATE(70), + [sym_function_expression] = STATE(419), + [sym__function_expression_kind] = STATE(84), + [sym_function_call] = STATE(85), + [sym_yield] = STATE(85), + [sym_built_in_value] = STATE(70), [aux_sym_root_repeat1] = STATE(7), [sym_identifier] = ACTIONS(5), [sym__comment] = ACTIONS(3), @@ -4417,43 +4342,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_random] = ACTIONS(41), [anon_sym_string] = ACTIONS(41), }, + [24] = { + [sym_statement] = STATE(26), + [sym_expression] = STATE(73), + [sym__expression_kind] = STATE(90), + [sym_block] = STATE(200), + [sym_value] = STATE(78), + [sym_range] = STATE(77), + [sym_structure] = STATE(70), + [sym_new] = STATE(90), + [sym_boolean] = STATE(70), + [sym_list] = STATE(70), + [sym_map] = STATE(70), + [sym_option] = STATE(70), + [sym_index] = STATE(50), + [sym_index_expression] = STATE(421), + [sym_math] = STATE(90), + [sym_logic] = STATE(90), + [sym_assignment] = STATE(200), + [sym_index_assignment] = STATE(200), + [sym_if_else] = STATE(200), + [sym_if] = STATE(190), + [sym_match] = STATE(200), + [sym_while] = STATE(200), + [sym_for] = STATE(200), + [sym_return] = STATE(200), + [sym_function] = STATE(70), + [sym_function_expression] = STATE(419), + [sym__function_expression_kind] = STATE(84), + [sym_function_call] = STATE(85), + [sym_yield] = STATE(85), + [sym_built_in_value] = STATE(70), + [aux_sym_root_repeat1] = STATE(26), + [sym_identifier] = ACTIONS(5), + [sym__comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_async] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(11), + [anon_sym_RBRACE] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(13), + [anon_sym_new] = ACTIONS(15), + [sym_integer] = ACTIONS(17), + [sym_float] = ACTIONS(19), + [sym_string] = ACTIONS(19), + [anon_sym_true] = ACTIONS(21), + [anon_sym_false] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_none] = ACTIONS(25), + [anon_sym_some] = ACTIONS(27), + [anon_sym_if] = ACTIONS(29), + [anon_sym_match] = ACTIONS(31), + [anon_sym_while] = ACTIONS(33), + [anon_sym_for] = ACTIONS(35), + [anon_sym_asyncfor] = ACTIONS(37), + [anon_sym_return] = ACTIONS(39), + [anon_sym_args] = ACTIONS(41), + [anon_sym_assert_equal] = ACTIONS(41), + [anon_sym_env] = ACTIONS(41), + [anon_sym_fs] = ACTIONS(41), + [anon_sym_json] = ACTIONS(41), + [anon_sym_length] = ACTIONS(41), + [anon_sym_output] = ACTIONS(41), + [anon_sym_random] = ACTIONS(41), + [anon_sym_string] = ACTIONS(41), + }, + [25] = { + [sym_statement] = STATE(5), + [sym_expression] = STATE(73), + [sym__expression_kind] = STATE(90), + [sym_block] = STATE(200), + [sym_value] = STATE(78), + [sym_range] = STATE(77), + [sym_structure] = STATE(70), + [sym_new] = STATE(90), + [sym_boolean] = STATE(70), + [sym_list] = STATE(70), + [sym_map] = STATE(70), + [sym_option] = STATE(70), + [sym_index] = STATE(50), + [sym_index_expression] = STATE(421), + [sym_math] = STATE(90), + [sym_logic] = STATE(90), + [sym_assignment] = STATE(200), + [sym_index_assignment] = STATE(200), + [sym_if_else] = STATE(200), + [sym_if] = STATE(190), + [sym_match] = STATE(200), + [sym_while] = STATE(200), + [sym_for] = STATE(200), + [sym_return] = STATE(200), + [sym_function] = STATE(70), + [sym_function_expression] = STATE(419), + [sym__function_expression_kind] = STATE(84), + [sym_function_call] = STATE(85), + [sym_yield] = STATE(85), + [sym_built_in_value] = STATE(70), + [aux_sym_root_repeat1] = STATE(5), + [ts_builtin_sym_end] = ACTIONS(134), + [sym_identifier] = ACTIONS(5), + [sym__comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_async] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(11), + [anon_sym_struct] = ACTIONS(13), + [anon_sym_new] = ACTIONS(15), + [sym_integer] = ACTIONS(17), + [sym_float] = ACTIONS(19), + [sym_string] = ACTIONS(19), + [anon_sym_true] = ACTIONS(21), + [anon_sym_false] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_none] = ACTIONS(25), + [anon_sym_some] = ACTIONS(27), + [anon_sym_if] = ACTIONS(29), + [anon_sym_match] = ACTIONS(31), + [anon_sym_while] = ACTIONS(33), + [anon_sym_for] = ACTIONS(35), + [anon_sym_asyncfor] = ACTIONS(37), + [anon_sym_return] = ACTIONS(39), + [anon_sym_args] = ACTIONS(41), + [anon_sym_assert_equal] = ACTIONS(41), + [anon_sym_env] = ACTIONS(41), + [anon_sym_fs] = ACTIONS(41), + [anon_sym_json] = ACTIONS(41), + [anon_sym_length] = ACTIONS(41), + [anon_sym_output] = ACTIONS(41), + [anon_sym_random] = ACTIONS(41), + [anon_sym_string] = ACTIONS(41), + }, [26] = { [sym_statement] = STATE(5), - [sym_expression] = STATE(92), - [sym__expression_kind] = STATE(63), - [sym_block] = STATE(240), - [sym_value] = STATE(87), - [sym_structure] = STATE(81), - [sym_new] = STATE(63), - [sym_boolean] = STATE(81), - [sym_list] = STATE(81), - [sym_map] = STATE(81), - [sym_option] = STATE(81), - [sym_index] = STATE(84), - [sym_index_expression] = STATE(482), - [sym_math] = STATE(63), - [sym_logic] = STATE(63), - [sym_assignment] = STATE(240), - [sym_index_assignment] = STATE(240), - [sym_if_else] = STATE(240), - [sym_if] = STATE(224), - [sym_match] = STATE(240), - [sym_while] = STATE(240), - [sym_for] = STATE(240), - [sym_return] = STATE(240), - [sym_function] = STATE(81), - [sym_function_expression] = STATE(481), - [sym__function_expression_kind] = STATE(71), - [sym_function_call] = STATE(69), - [sym_yield] = STATE(69), - [sym_built_in_value] = STATE(81), + [sym_expression] = STATE(73), + [sym__expression_kind] = STATE(90), + [sym_block] = STATE(200), + [sym_value] = STATE(78), + [sym_range] = STATE(77), + [sym_structure] = STATE(70), + [sym_new] = STATE(90), + [sym_boolean] = STATE(70), + [sym_list] = STATE(70), + [sym_map] = STATE(70), + [sym_option] = STATE(70), + [sym_index] = STATE(50), + [sym_index_expression] = STATE(421), + [sym_math] = STATE(90), + [sym_logic] = STATE(90), + [sym_assignment] = STATE(200), + [sym_index_assignment] = STATE(200), + [sym_if_else] = STATE(200), + [sym_if] = STATE(190), + [sym_match] = STATE(200), + [sym_while] = STATE(200), + [sym_for] = STATE(200), + [sym_return] = STATE(200), + [sym_function] = STATE(70), + [sym_function_expression] = STATE(419), + [sym__function_expression_kind] = STATE(84), + [sym_function_call] = STATE(85), + [sym_yield] = STATE(85), + [sym_built_in_value] = STATE(70), [aux_sym_root_repeat1] = STATE(5), [sym_identifier] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(7), [anon_sym_async] = ACTIONS(9), [anon_sym_LBRACE] = ACTIONS(11), - [anon_sym_RBRACE] = ACTIONS(130), + [anon_sym_RBRACE] = ACTIONS(132), [anon_sym_struct] = ACTIONS(13), [anon_sym_new] = ACTIONS(15), [sym_integer] = ACTIONS(17), @@ -4481,35 +4535,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(41), }, [27] = { - [sym_statement] = STATE(428), - [sym_expression] = STATE(323), - [sym__expression_kind] = STATE(288), - [sym_block] = STATE(300), - [sym_value] = STATE(265), - [sym_structure] = STATE(279), - [sym_new] = STATE(288), - [sym_boolean] = STATE(279), - [sym_list] = STATE(279), - [sym_map] = STATE(279), - [sym_option] = STATE(279), - [sym_index] = STATE(314), - [sym_index_expression] = STATE(464), - [sym_math] = STATE(288), - [sym_logic] = STATE(288), - [sym_assignment] = STATE(300), - [sym_index_assignment] = STATE(300), - [sym_if_else] = STATE(300), - [sym_if] = STATE(388), - [sym_match] = STATE(300), - [sym_while] = STATE(300), - [sym_for] = STATE(300), - [sym_return] = STATE(300), - [sym_function] = STATE(279), - [sym_function_expression] = STATE(471), - [sym__function_expression_kind] = STATE(71), - [sym_function_call] = STATE(277), - [sym_yield] = STATE(277), - [sym_built_in_value] = STATE(279), + [sym_statement] = STATE(252), + [sym_expression] = STATE(185), + [sym__expression_kind] = STATE(176), + [sym_block] = STATE(253), + [sym_value] = STATE(155), + [sym_range] = STATE(154), + [sym_structure] = STATE(104), + [sym_new] = STATE(176), + [sym_boolean] = STATE(104), + [sym_list] = STATE(104), + [sym_map] = STATE(104), + [sym_option] = STATE(104), + [sym_index] = STATE(133), + [sym_index_expression] = STATE(415), + [sym_math] = STATE(176), + [sym_logic] = STATE(176), + [sym_assignment] = STATE(253), + [sym_index_assignment] = STATE(253), + [sym_if_else] = STATE(253), + [sym_if] = STATE(215), + [sym_match] = STATE(253), + [sym_while] = STATE(253), + [sym_for] = STATE(253), + [sym_return] = STATE(253), + [sym_function] = STATE(104), + [sym_function_expression] = STATE(414), + [sym__function_expression_kind] = STATE(84), + [sym_function_call] = STATE(184), + [sym_yield] = STATE(184), + [sym_built_in_value] = STATE(104), [sym_identifier] = ACTIONS(136), [sym__comment] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(138), @@ -4542,96 +4597,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(172), }, [28] = { - [sym_statement] = STATE(434), - [sym_expression] = STATE(323), - [sym__expression_kind] = STATE(288), - [sym_block] = STATE(300), - [sym_value] = STATE(265), - [sym_structure] = STATE(279), - [sym_new] = STATE(288), - [sym_boolean] = STATE(279), - [sym_list] = STATE(279), - [sym_map] = STATE(279), - [sym_option] = STATE(279), - [sym_index] = STATE(314), - [sym_index_expression] = STATE(464), - [sym_math] = STATE(288), - [sym_logic] = STATE(288), - [sym_assignment] = STATE(300), - [sym_index_assignment] = STATE(300), - [sym_if_else] = STATE(300), - [sym_if] = STATE(388), - [sym_match] = STATE(300), - [sym_while] = STATE(300), - [sym_for] = STATE(300), - [sym_return] = STATE(300), - [sym_function] = STATE(279), - [sym_function_expression] = STATE(471), - [sym__function_expression_kind] = STATE(71), - [sym_function_call] = STATE(277), - [sym_yield] = STATE(277), - [sym_built_in_value] = STATE(279), - [sym_identifier] = ACTIONS(136), - [sym__comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_async] = ACTIONS(140), - [anon_sym_LBRACE] = ACTIONS(142), - [anon_sym_struct] = ACTIONS(144), - [anon_sym_new] = ACTIONS(146), - [sym_integer] = ACTIONS(148), - [sym_float] = ACTIONS(150), - [sym_string] = ACTIONS(150), - [anon_sym_true] = ACTIONS(152), - [anon_sym_false] = ACTIONS(152), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_none] = ACTIONS(156), - [anon_sym_some] = ACTIONS(158), - [anon_sym_if] = ACTIONS(160), - [anon_sym_match] = ACTIONS(162), - [anon_sym_while] = ACTIONS(164), - [anon_sym_for] = ACTIONS(166), - [anon_sym_asyncfor] = ACTIONS(168), - [anon_sym_return] = ACTIONS(170), - [anon_sym_args] = ACTIONS(172), - [anon_sym_assert_equal] = ACTIONS(172), - [anon_sym_env] = ACTIONS(172), - [anon_sym_fs] = ACTIONS(172), - [anon_sym_json] = ACTIONS(172), - [anon_sym_length] = ACTIONS(172), - [anon_sym_output] = ACTIONS(172), - [anon_sym_random] = ACTIONS(172), - [anon_sym_string] = ACTIONS(172), - }, - [29] = { - [sym_statement] = STATE(303), - [sym_expression] = STATE(196), - [sym__expression_kind] = STATE(125), - [sym_block] = STATE(301), - [sym_value] = STATE(126), - [sym_structure] = STATE(129), - [sym_new] = STATE(125), - [sym_boolean] = STATE(129), - [sym_list] = STATE(129), - [sym_map] = STATE(129), - [sym_option] = STATE(129), - [sym_index] = STATE(134), - [sym_index_expression] = STATE(476), - [sym_math] = STATE(125), - [sym_logic] = STATE(125), - [sym_assignment] = STATE(301), - [sym_index_assignment] = STATE(301), - [sym_if_else] = STATE(301), - [sym_if] = STATE(246), - [sym_match] = STATE(301), - [sym_while] = STATE(301), - [sym_for] = STATE(301), - [sym_return] = STATE(301), - [sym_function] = STATE(129), - [sym_function_expression] = STATE(457), - [sym__function_expression_kind] = STATE(71), - [sym_function_call] = STATE(119), - [sym_yield] = STATE(119), - [sym_built_in_value] = STATE(129), + [sym_statement] = STATE(361), + [sym_expression] = STATE(281), + [sym__expression_kind] = STATE(278), + [sym_block] = STATE(255), + [sym_value] = STATE(263), + [sym_range] = STATE(262), + [sym_structure] = STATE(230), + [sym_new] = STATE(278), + [sym_boolean] = STATE(230), + [sym_list] = STATE(230), + [sym_map] = STATE(230), + [sym_option] = STATE(230), + [sym_index] = STATE(261), + [sym_index_expression] = STATE(416), + [sym_math] = STATE(278), + [sym_logic] = STATE(278), + [sym_assignment] = STATE(255), + [sym_index_assignment] = STATE(255), + [sym_if_else] = STATE(255), + [sym_if] = STATE(333), + [sym_match] = STATE(255), + [sym_while] = STATE(255), + [sym_for] = STATE(255), + [sym_return] = STATE(255), + [sym_function] = STATE(230), + [sym_function_expression] = STATE(397), + [sym__function_expression_kind] = STATE(84), + [sym_function_call] = STATE(264), + [sym_yield] = STATE(264), + [sym_built_in_value] = STATE(230), [sym_identifier] = ACTIONS(174), [sym__comment] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(176), @@ -4663,97 +4658,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_random] = ACTIONS(206), [anon_sym_string] = ACTIONS(206), }, - [30] = { - [sym_statement] = STATE(400), - [sym_expression] = STATE(323), - [sym__expression_kind] = STATE(288), - [sym_block] = STATE(300), - [sym_value] = STATE(265), - [sym_structure] = STATE(279), - [sym_new] = STATE(288), - [sym_boolean] = STATE(279), - [sym_list] = STATE(279), - [sym_map] = STATE(279), - [sym_option] = STATE(279), - [sym_index] = STATE(314), - [sym_index_expression] = STATE(464), - [sym_math] = STATE(288), - [sym_logic] = STATE(288), - [sym_assignment] = STATE(300), - [sym_index_assignment] = STATE(300), - [sym_if_else] = STATE(300), - [sym_if] = STATE(388), - [sym_match] = STATE(300), - [sym_while] = STATE(300), - [sym_for] = STATE(300), - [sym_return] = STATE(300), - [sym_function] = STATE(279), - [sym_function_expression] = STATE(471), - [sym__function_expression_kind] = STATE(71), - [sym_function_call] = STATE(277), - [sym_yield] = STATE(277), - [sym_built_in_value] = STATE(279), - [sym_identifier] = ACTIONS(136), + [29] = { + [sym_statement] = STATE(204), + [sym_expression] = STATE(74), + [sym__expression_kind] = STATE(90), + [sym_block] = STATE(201), + [sym_value] = STATE(78), + [sym_range] = STATE(77), + [sym_structure] = STATE(70), + [sym_new] = STATE(90), + [sym_boolean] = STATE(70), + [sym_list] = STATE(70), + [sym_map] = STATE(70), + [sym_option] = STATE(70), + [sym_index] = STATE(50), + [sym_index_expression] = STATE(421), + [sym_math] = STATE(90), + [sym_logic] = STATE(90), + [sym_assignment] = STATE(201), + [sym_index_assignment] = STATE(201), + [sym_if_else] = STATE(201), + [sym_if] = STATE(190), + [sym_match] = STATE(201), + [sym_while] = STATE(201), + [sym_for] = STATE(201), + [sym_return] = STATE(201), + [sym_function] = STATE(70), + [sym_function_expression] = STATE(419), + [sym__function_expression_kind] = STATE(84), + [sym_function_call] = STATE(85), + [sym_yield] = STATE(85), + [sym_built_in_value] = STATE(70), + [sym_identifier] = ACTIONS(5), [sym__comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_async] = ACTIONS(140), - [anon_sym_LBRACE] = ACTIONS(142), - [anon_sym_struct] = ACTIONS(144), - [anon_sym_new] = ACTIONS(146), - [sym_integer] = ACTIONS(148), - [sym_float] = ACTIONS(150), - [sym_string] = ACTIONS(150), - [anon_sym_true] = ACTIONS(152), - [anon_sym_false] = ACTIONS(152), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_none] = ACTIONS(156), - [anon_sym_some] = ACTIONS(158), - [anon_sym_if] = ACTIONS(160), - [anon_sym_match] = ACTIONS(162), - [anon_sym_while] = ACTIONS(164), - [anon_sym_for] = ACTIONS(166), - [anon_sym_asyncfor] = ACTIONS(168), - [anon_sym_return] = ACTIONS(170), - [anon_sym_args] = ACTIONS(172), - [anon_sym_assert_equal] = ACTIONS(172), - [anon_sym_env] = ACTIONS(172), - [anon_sym_fs] = ACTIONS(172), - [anon_sym_json] = ACTIONS(172), - [anon_sym_length] = ACTIONS(172), - [anon_sym_output] = ACTIONS(172), - [anon_sym_random] = ACTIONS(172), - [anon_sym_string] = ACTIONS(172), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_async] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(11), + [anon_sym_struct] = ACTIONS(13), + [anon_sym_new] = ACTIONS(15), + [sym_integer] = ACTIONS(17), + [sym_float] = ACTIONS(19), + [sym_string] = ACTIONS(19), + [anon_sym_true] = ACTIONS(21), + [anon_sym_false] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_none] = ACTIONS(25), + [anon_sym_some] = ACTIONS(27), + [anon_sym_if] = ACTIONS(29), + [anon_sym_match] = ACTIONS(31), + [anon_sym_while] = ACTIONS(33), + [anon_sym_for] = ACTIONS(35), + [anon_sym_asyncfor] = ACTIONS(37), + [anon_sym_return] = ACTIONS(39), + [anon_sym_args] = ACTIONS(41), + [anon_sym_assert_equal] = ACTIONS(41), + [anon_sym_env] = ACTIONS(41), + [anon_sym_fs] = ACTIONS(41), + [anon_sym_json] = ACTIONS(41), + [anon_sym_length] = ACTIONS(41), + [anon_sym_output] = ACTIONS(41), + [anon_sym_random] = ACTIONS(41), + [anon_sym_string] = ACTIONS(41), + }, + [30] = { + [sym_statement] = STATE(207), + [sym_expression] = STATE(74), + [sym__expression_kind] = STATE(90), + [sym_block] = STATE(201), + [sym_value] = STATE(78), + [sym_range] = STATE(77), + [sym_structure] = STATE(70), + [sym_new] = STATE(90), + [sym_boolean] = STATE(70), + [sym_list] = STATE(70), + [sym_map] = STATE(70), + [sym_option] = STATE(70), + [sym_index] = STATE(50), + [sym_index_expression] = STATE(421), + [sym_math] = STATE(90), + [sym_logic] = STATE(90), + [sym_assignment] = STATE(201), + [sym_index_assignment] = STATE(201), + [sym_if_else] = STATE(201), + [sym_if] = STATE(190), + [sym_match] = STATE(201), + [sym_while] = STATE(201), + [sym_for] = STATE(201), + [sym_return] = STATE(201), + [sym_function] = STATE(70), + [sym_function_expression] = STATE(419), + [sym__function_expression_kind] = STATE(84), + [sym_function_call] = STATE(85), + [sym_yield] = STATE(85), + [sym_built_in_value] = STATE(70), + [sym_identifier] = ACTIONS(5), + [sym__comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_async] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(11), + [anon_sym_struct] = ACTIONS(13), + [anon_sym_new] = ACTIONS(15), + [sym_integer] = ACTIONS(17), + [sym_float] = ACTIONS(19), + [sym_string] = ACTIONS(19), + [anon_sym_true] = ACTIONS(21), + [anon_sym_false] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_none] = ACTIONS(25), + [anon_sym_some] = ACTIONS(27), + [anon_sym_if] = ACTIONS(29), + [anon_sym_match] = ACTIONS(31), + [anon_sym_while] = ACTIONS(33), + [anon_sym_for] = ACTIONS(35), + [anon_sym_asyncfor] = ACTIONS(37), + [anon_sym_return] = ACTIONS(39), + [anon_sym_args] = ACTIONS(41), + [anon_sym_assert_equal] = ACTIONS(41), + [anon_sym_env] = ACTIONS(41), + [anon_sym_fs] = ACTIONS(41), + [anon_sym_json] = ACTIONS(41), + [anon_sym_length] = ACTIONS(41), + [anon_sym_output] = ACTIONS(41), + [anon_sym_random] = ACTIONS(41), + [anon_sym_string] = ACTIONS(41), }, [31] = { - [sym_statement] = STATE(305), - [sym_expression] = STATE(196), - [sym__expression_kind] = STATE(125), - [sym_block] = STATE(301), - [sym_value] = STATE(126), - [sym_structure] = STATE(129), - [sym_new] = STATE(125), - [sym_boolean] = STATE(129), - [sym_list] = STATE(129), - [sym_map] = STATE(129), - [sym_option] = STATE(129), - [sym_index] = STATE(134), - [sym_index_expression] = STATE(476), - [sym_math] = STATE(125), - [sym_logic] = STATE(125), - [sym_assignment] = STATE(301), - [sym_index_assignment] = STATE(301), - [sym_if_else] = STATE(301), - [sym_if] = STATE(246), - [sym_match] = STATE(301), - [sym_while] = STATE(301), - [sym_for] = STATE(301), - [sym_return] = STATE(301), - [sym_function] = STATE(129), - [sym_function_expression] = STATE(457), - [sym__function_expression_kind] = STATE(71), - [sym_function_call] = STATE(119), - [sym_yield] = STATE(119), - [sym_built_in_value] = STATE(129), + [sym_statement] = STATE(361), + [sym_expression] = STATE(281), + [sym__expression_kind] = STATE(278), + [sym_block] = STATE(255), + [sym_value] = STATE(263), + [sym_range] = STATE(262), + [sym_structure] = STATE(230), + [sym_new] = STATE(278), + [sym_boolean] = STATE(230), + [sym_list] = STATE(230), + [sym_map] = STATE(230), + [sym_option] = STATE(230), + [sym_index] = STATE(261), + [sym_index_expression] = STATE(416), + [sym_math] = STATE(278), + [sym_logic] = STATE(278), + [sym_assignment] = STATE(255), + [sym_index_assignment] = STATE(255), + [sym_if_else] = STATE(255), + [sym_if] = STATE(333), + [sym_match] = STATE(255), + [sym_while] = STATE(255), + [sym_for] = STATE(255), + [sym_return] = STATE(255), + [sym_function] = STATE(230), + [sym_function_expression] = STATE(397), + [sym__function_expression_kind] = STATE(84), + [sym_function_call] = STATE(264), + [sym_yield] = STATE(264), + [sym_built_in_value] = STATE(230), [sym_identifier] = ACTIONS(174), [sym__comment] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(176), @@ -4786,35 +4845,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(206), }, [32] = { - [sym_statement] = STATE(310), - [sym_expression] = STATE(196), - [sym__expression_kind] = STATE(125), - [sym_block] = STATE(301), - [sym_value] = STATE(126), - [sym_structure] = STATE(129), - [sym_new] = STATE(125), - [sym_boolean] = STATE(129), - [sym_list] = STATE(129), - [sym_map] = STATE(129), - [sym_option] = STATE(129), - [sym_index] = STATE(134), - [sym_index_expression] = STATE(476), - [sym_math] = STATE(125), - [sym_logic] = STATE(125), - [sym_assignment] = STATE(301), - [sym_index_assignment] = STATE(301), - [sym_if_else] = STATE(301), - [sym_if] = STATE(246), - [sym_match] = STATE(301), - [sym_while] = STATE(301), - [sym_for] = STATE(301), - [sym_return] = STATE(301), - [sym_function] = STATE(129), - [sym_function_expression] = STATE(457), - [sym__function_expression_kind] = STATE(71), - [sym_function_call] = STATE(119), - [sym_yield] = STATE(119), - [sym_built_in_value] = STATE(129), + [sym_statement] = STATE(256), + [sym_expression] = STATE(185), + [sym__expression_kind] = STATE(176), + [sym_block] = STATE(253), + [sym_value] = STATE(155), + [sym_range] = STATE(154), + [sym_structure] = STATE(104), + [sym_new] = STATE(176), + [sym_boolean] = STATE(104), + [sym_list] = STATE(104), + [sym_map] = STATE(104), + [sym_option] = STATE(104), + [sym_index] = STATE(133), + [sym_index_expression] = STATE(415), + [sym_math] = STATE(176), + [sym_logic] = STATE(176), + [sym_assignment] = STATE(253), + [sym_index_assignment] = STATE(253), + [sym_if_else] = STATE(253), + [sym_if] = STATE(215), + [sym_match] = STATE(253), + [sym_while] = STATE(253), + [sym_for] = STATE(253), + [sym_return] = STATE(253), + [sym_function] = STATE(104), + [sym_function_expression] = STATE(414), + [sym__function_expression_kind] = STATE(84), + [sym_function_call] = STATE(184), + [sym_yield] = STATE(184), + [sym_built_in_value] = STATE(104), + [sym_identifier] = ACTIONS(136), + [sym__comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_async] = ACTIONS(140), + [anon_sym_LBRACE] = ACTIONS(142), + [anon_sym_struct] = ACTIONS(144), + [anon_sym_new] = ACTIONS(146), + [sym_integer] = ACTIONS(148), + [sym_float] = ACTIONS(150), + [sym_string] = ACTIONS(150), + [anon_sym_true] = ACTIONS(152), + [anon_sym_false] = ACTIONS(152), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_none] = ACTIONS(156), + [anon_sym_some] = ACTIONS(158), + [anon_sym_if] = ACTIONS(160), + [anon_sym_match] = ACTIONS(162), + [anon_sym_while] = ACTIONS(164), + [anon_sym_for] = ACTIONS(166), + [anon_sym_asyncfor] = ACTIONS(168), + [anon_sym_return] = ACTIONS(170), + [anon_sym_args] = ACTIONS(172), + [anon_sym_assert_equal] = ACTIONS(172), + [anon_sym_env] = ACTIONS(172), + [anon_sym_fs] = ACTIONS(172), + [anon_sym_json] = ACTIONS(172), + [anon_sym_length] = ACTIONS(172), + [anon_sym_output] = ACTIONS(172), + [anon_sym_random] = ACTIONS(172), + [anon_sym_string] = ACTIONS(172), + }, + [33] = { + [sym_statement] = STATE(377), + [sym_expression] = STATE(281), + [sym__expression_kind] = STATE(278), + [sym_block] = STATE(255), + [sym_value] = STATE(263), + [sym_range] = STATE(262), + [sym_structure] = STATE(230), + [sym_new] = STATE(278), + [sym_boolean] = STATE(230), + [sym_list] = STATE(230), + [sym_map] = STATE(230), + [sym_option] = STATE(230), + [sym_index] = STATE(261), + [sym_index_expression] = STATE(416), + [sym_math] = STATE(278), + [sym_logic] = STATE(278), + [sym_assignment] = STATE(255), + [sym_index_assignment] = STATE(255), + [sym_if_else] = STATE(255), + [sym_if] = STATE(333), + [sym_match] = STATE(255), + [sym_while] = STATE(255), + [sym_for] = STATE(255), + [sym_return] = STATE(255), + [sym_function] = STATE(230), + [sym_function_expression] = STATE(397), + [sym__function_expression_kind] = STATE(84), + [sym_function_call] = STATE(264), + [sym_yield] = STATE(264), + [sym_built_in_value] = STATE(230), [sym_identifier] = ACTIONS(174), [sym__comment] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(176), @@ -4846,36 +4968,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_random] = ACTIONS(206), [anon_sym_string] = ACTIONS(206), }, - [33] = { - [sym_statement] = STATE(400), - [sym_expression] = STATE(323), - [sym__expression_kind] = STATE(288), - [sym_block] = STATE(300), - [sym_value] = STATE(265), - [sym_structure] = STATE(279), - [sym_new] = STATE(288), - [sym_boolean] = STATE(279), - [sym_list] = STATE(279), - [sym_map] = STATE(279), - [sym_option] = STATE(279), - [sym_index] = STATE(314), - [sym_index_expression] = STATE(464), - [sym_math] = STATE(288), - [sym_logic] = STATE(288), - [sym_assignment] = STATE(300), - [sym_index_assignment] = STATE(300), - [sym_if_else] = STATE(300), - [sym_if] = STATE(388), - [sym_match] = STATE(300), - [sym_while] = STATE(300), - [sym_for] = STATE(300), - [sym_return] = STATE(300), - [sym_function] = STATE(279), - [sym_function_expression] = STATE(471), - [sym__function_expression_kind] = STATE(71), - [sym_function_call] = STATE(277), - [sym_yield] = STATE(277), - [sym_built_in_value] = STATE(279), + [34] = { + [sym_statement] = STATE(257), + [sym_expression] = STATE(179), + [sym__expression_kind] = STATE(176), + [sym_block] = STATE(255), + [sym_value] = STATE(155), + [sym_range] = STATE(154), + [sym_structure] = STATE(104), + [sym_new] = STATE(176), + [sym_boolean] = STATE(104), + [sym_list] = STATE(104), + [sym_map] = STATE(104), + [sym_option] = STATE(104), + [sym_index] = STATE(133), + [sym_index_expression] = STATE(415), + [sym_math] = STATE(176), + [sym_logic] = STATE(176), + [sym_assignment] = STATE(255), + [sym_index_assignment] = STATE(255), + [sym_if_else] = STATE(255), + [sym_if] = STATE(215), + [sym_match] = STATE(255), + [sym_while] = STATE(255), + [sym_for] = STATE(255), + [sym_return] = STATE(255), + [sym_function] = STATE(104), + [sym_function_expression] = STATE(414), + [sym__function_expression_kind] = STATE(84), + [sym_function_call] = STATE(184), + [sym_yield] = STATE(184), + [sym_built_in_value] = STATE(104), [sym_identifier] = ACTIONS(136), [sym__comment] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(138), @@ -4907,158 +5030,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_random] = ACTIONS(172), [anon_sym_string] = ACTIONS(172), }, - [34] = { - [sym_statement] = STATE(242), - [sym_expression] = STATE(88), - [sym__expression_kind] = STATE(63), - [sym_block] = STATE(232), - [sym_value] = STATE(87), - [sym_structure] = STATE(81), - [sym_new] = STATE(63), - [sym_boolean] = STATE(81), - [sym_list] = STATE(81), - [sym_map] = STATE(81), - [sym_option] = STATE(81), - [sym_index] = STATE(84), - [sym_index_expression] = STATE(482), - [sym_math] = STATE(63), - [sym_logic] = STATE(63), - [sym_assignment] = STATE(232), - [sym_index_assignment] = STATE(232), - [sym_if_else] = STATE(232), - [sym_if] = STATE(224), - [sym_match] = STATE(232), - [sym_while] = STATE(232), - [sym_for] = STATE(232), - [sym_return] = STATE(232), - [sym_function] = STATE(81), - [sym_function_expression] = STATE(481), - [sym__function_expression_kind] = STATE(71), - [sym_function_call] = STATE(69), - [sym_yield] = STATE(69), - [sym_built_in_value] = STATE(81), - [sym_identifier] = ACTIONS(5), - [sym__comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(7), - [anon_sym_async] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(11), - [anon_sym_struct] = ACTIONS(13), - [anon_sym_new] = ACTIONS(15), - [sym_integer] = ACTIONS(17), - [sym_float] = ACTIONS(19), - [sym_string] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_none] = ACTIONS(25), - [anon_sym_some] = ACTIONS(27), - [anon_sym_if] = ACTIONS(29), - [anon_sym_match] = ACTIONS(31), - [anon_sym_while] = ACTIONS(33), - [anon_sym_for] = ACTIONS(35), - [anon_sym_asyncfor] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_args] = ACTIONS(41), - [anon_sym_assert_equal] = ACTIONS(41), - [anon_sym_env] = ACTIONS(41), - [anon_sym_fs] = ACTIONS(41), - [anon_sym_json] = ACTIONS(41), - [anon_sym_length] = ACTIONS(41), - [anon_sym_output] = ACTIONS(41), - [anon_sym_random] = ACTIONS(41), - [anon_sym_string] = ACTIONS(41), - }, [35] = { - [sym_statement] = STATE(440), - [sym_expression] = STATE(323), - [sym__expression_kind] = STATE(288), - [sym_block] = STATE(300), - [sym_value] = STATE(265), - [sym_structure] = STATE(279), - [sym_new] = STATE(288), - [sym_boolean] = STATE(279), - [sym_list] = STATE(279), - [sym_map] = STATE(279), - [sym_option] = STATE(279), - [sym_index] = STATE(314), - [sym_index_expression] = STATE(464), - [sym_math] = STATE(288), - [sym_logic] = STATE(288), - [sym_assignment] = STATE(300), - [sym_index_assignment] = STATE(300), - [sym_if_else] = STATE(300), - [sym_if] = STATE(388), - [sym_match] = STATE(300), - [sym_while] = STATE(300), - [sym_for] = STATE(300), - [sym_return] = STATE(300), - [sym_function] = STATE(279), - [sym_function_expression] = STATE(471), - [sym__function_expression_kind] = STATE(71), - [sym_function_call] = STATE(277), - [sym_yield] = STATE(277), - [sym_built_in_value] = STATE(279), - [sym_identifier] = ACTIONS(136), - [sym__comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_async] = ACTIONS(140), - [anon_sym_LBRACE] = ACTIONS(142), - [anon_sym_struct] = ACTIONS(144), - [anon_sym_new] = ACTIONS(146), - [sym_integer] = ACTIONS(148), - [sym_float] = ACTIONS(150), - [sym_string] = ACTIONS(150), - [anon_sym_true] = ACTIONS(152), - [anon_sym_false] = ACTIONS(152), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_none] = ACTIONS(156), - [anon_sym_some] = ACTIONS(158), - [anon_sym_if] = ACTIONS(160), - [anon_sym_match] = ACTIONS(162), - [anon_sym_while] = ACTIONS(164), - [anon_sym_for] = ACTIONS(166), - [anon_sym_asyncfor] = ACTIONS(168), - [anon_sym_return] = ACTIONS(170), - [anon_sym_args] = ACTIONS(172), - [anon_sym_assert_equal] = ACTIONS(172), - [anon_sym_env] = ACTIONS(172), - [anon_sym_fs] = ACTIONS(172), - [anon_sym_json] = ACTIONS(172), - [anon_sym_length] = ACTIONS(172), - [anon_sym_output] = ACTIONS(172), - [anon_sym_random] = ACTIONS(172), - [anon_sym_string] = ACTIONS(172), - }, - [36] = { - [sym_statement] = STATE(243), - [sym_expression] = STATE(88), - [sym__expression_kind] = STATE(63), - [sym_block] = STATE(232), - [sym_value] = STATE(87), - [sym_structure] = STATE(81), - [sym_new] = STATE(63), - [sym_boolean] = STATE(81), - [sym_list] = STATE(81), - [sym_map] = STATE(81), - [sym_option] = STATE(81), - [sym_index] = STATE(84), - [sym_index_expression] = STATE(482), - [sym_math] = STATE(63), - [sym_logic] = STATE(63), - [sym_assignment] = STATE(232), - [sym_index_assignment] = STATE(232), - [sym_if_else] = STATE(232), - [sym_if] = STATE(224), - [sym_match] = STATE(232), - [sym_while] = STATE(232), - [sym_for] = STATE(232), - [sym_return] = STATE(232), - [sym_function] = STATE(81), - [sym_function_expression] = STATE(481), - [sym__function_expression_kind] = STATE(71), - [sym_function_call] = STATE(69), - [sym_yield] = STATE(69), - [sym_built_in_value] = STATE(81), + [sym_statement] = STATE(206), + [sym_expression] = STATE(74), + [sym__expression_kind] = STATE(90), + [sym_block] = STATE(201), + [sym_value] = STATE(78), + [sym_range] = STATE(77), + [sym_structure] = STATE(70), + [sym_new] = STATE(90), + [sym_boolean] = STATE(70), + [sym_list] = STATE(70), + [sym_map] = STATE(70), + [sym_option] = STATE(70), + [sym_index] = STATE(50), + [sym_index_expression] = STATE(421), + [sym_math] = STATE(90), + [sym_logic] = STATE(90), + [sym_assignment] = STATE(201), + [sym_index_assignment] = STATE(201), + [sym_if_else] = STATE(201), + [sym_if] = STATE(190), + [sym_match] = STATE(201), + [sym_while] = STATE(201), + [sym_for] = STATE(201), + [sym_return] = STATE(201), + [sym_function] = STATE(70), + [sym_function_expression] = STATE(419), + [sym__function_expression_kind] = STATE(84), + [sym_function_call] = STATE(85), + [sym_yield] = STATE(85), + [sym_built_in_value] = STATE(70), [sym_identifier] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(7), @@ -5090,97 +5092,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_random] = ACTIONS(41), [anon_sym_string] = ACTIONS(41), }, - [37] = { - [sym_statement] = STATE(310), - [sym_expression] = STATE(324), - [sym__expression_kind] = STATE(288), - [sym_block] = STATE(301), - [sym_value] = STATE(265), - [sym_structure] = STATE(279), - [sym_new] = STATE(288), - [sym_boolean] = STATE(279), - [sym_list] = STATE(279), - [sym_map] = STATE(279), - [sym_option] = STATE(279), - [sym_index] = STATE(314), - [sym_index_expression] = STATE(464), - [sym_math] = STATE(288), - [sym_logic] = STATE(288), - [sym_assignment] = STATE(301), - [sym_index_assignment] = STATE(301), - [sym_if_else] = STATE(301), - [sym_if] = STATE(388), - [sym_match] = STATE(301), - [sym_while] = STATE(301), - [sym_for] = STATE(301), - [sym_return] = STATE(301), - [sym_function] = STATE(279), - [sym_function_expression] = STATE(471), - [sym__function_expression_kind] = STATE(71), - [sym_function_call] = STATE(277), - [sym_yield] = STATE(277), - [sym_built_in_value] = STATE(279), - [sym_identifier] = ACTIONS(136), + [36] = { + [sym_statement] = STATE(247), + [sym_expression] = STATE(282), + [sym__expression_kind] = STATE(278), + [sym_block] = STATE(253), + [sym_value] = STATE(263), + [sym_range] = STATE(262), + [sym_structure] = STATE(230), + [sym_new] = STATE(278), + [sym_boolean] = STATE(230), + [sym_list] = STATE(230), + [sym_map] = STATE(230), + [sym_option] = STATE(230), + [sym_index] = STATE(261), + [sym_index_expression] = STATE(416), + [sym_math] = STATE(278), + [sym_logic] = STATE(278), + [sym_assignment] = STATE(253), + [sym_index_assignment] = STATE(253), + [sym_if_else] = STATE(253), + [sym_if] = STATE(333), + [sym_match] = STATE(253), + [sym_while] = STATE(253), + [sym_for] = STATE(253), + [sym_return] = STATE(253), + [sym_function] = STATE(230), + [sym_function_expression] = STATE(397), + [sym__function_expression_kind] = STATE(84), + [sym_function_call] = STATE(264), + [sym_yield] = STATE(264), + [sym_built_in_value] = STATE(230), + [sym_identifier] = ACTIONS(174), [sym__comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_async] = ACTIONS(140), - [anon_sym_LBRACE] = ACTIONS(142), - [anon_sym_struct] = ACTIONS(144), - [anon_sym_new] = ACTIONS(146), - [sym_integer] = ACTIONS(148), - [sym_float] = ACTIONS(150), - [sym_string] = ACTIONS(150), - [anon_sym_true] = ACTIONS(152), - [anon_sym_false] = ACTIONS(152), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_none] = ACTIONS(156), - [anon_sym_some] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(176), + [anon_sym_async] = ACTIONS(178), + [anon_sym_LBRACE] = ACTIONS(180), + [anon_sym_struct] = ACTIONS(182), + [anon_sym_new] = ACTIONS(184), + [sym_integer] = ACTIONS(186), + [sym_float] = ACTIONS(188), + [sym_string] = ACTIONS(188), + [anon_sym_true] = ACTIONS(190), + [anon_sym_false] = ACTIONS(190), + [anon_sym_LBRACK] = ACTIONS(192), + [anon_sym_none] = ACTIONS(194), + [anon_sym_some] = ACTIONS(196), [anon_sym_if] = ACTIONS(160), [anon_sym_match] = ACTIONS(162), - [anon_sym_while] = ACTIONS(164), - [anon_sym_for] = ACTIONS(166), - [anon_sym_asyncfor] = ACTIONS(168), - [anon_sym_return] = ACTIONS(170), - [anon_sym_args] = ACTIONS(172), - [anon_sym_assert_equal] = ACTIONS(172), - [anon_sym_env] = ACTIONS(172), - [anon_sym_fs] = ACTIONS(172), - [anon_sym_json] = ACTIONS(172), - [anon_sym_length] = ACTIONS(172), - [anon_sym_output] = ACTIONS(172), - [anon_sym_random] = ACTIONS(172), - [anon_sym_string] = ACTIONS(172), + [anon_sym_while] = ACTIONS(198), + [anon_sym_for] = ACTIONS(200), + [anon_sym_asyncfor] = ACTIONS(202), + [anon_sym_return] = ACTIONS(204), + [anon_sym_args] = ACTIONS(206), + [anon_sym_assert_equal] = ACTIONS(206), + [anon_sym_env] = ACTIONS(206), + [anon_sym_fs] = ACTIONS(206), + [anon_sym_json] = ACTIONS(206), + [anon_sym_length] = ACTIONS(206), + [anon_sym_output] = ACTIONS(206), + [anon_sym_random] = ACTIONS(206), + [anon_sym_string] = ACTIONS(206), + }, + [37] = { + [sym_statement] = STATE(388), + [sym_expression] = STATE(281), + [sym__expression_kind] = STATE(278), + [sym_block] = STATE(255), + [sym_value] = STATE(263), + [sym_range] = STATE(262), + [sym_structure] = STATE(230), + [sym_new] = STATE(278), + [sym_boolean] = STATE(230), + [sym_list] = STATE(230), + [sym_map] = STATE(230), + [sym_option] = STATE(230), + [sym_index] = STATE(261), + [sym_index_expression] = STATE(416), + [sym_math] = STATE(278), + [sym_logic] = STATE(278), + [sym_assignment] = STATE(255), + [sym_index_assignment] = STATE(255), + [sym_if_else] = STATE(255), + [sym_if] = STATE(333), + [sym_match] = STATE(255), + [sym_while] = STATE(255), + [sym_for] = STATE(255), + [sym_return] = STATE(255), + [sym_function] = STATE(230), + [sym_function_expression] = STATE(397), + [sym__function_expression_kind] = STATE(84), + [sym_function_call] = STATE(264), + [sym_yield] = STATE(264), + [sym_built_in_value] = STATE(230), + [sym_identifier] = ACTIONS(174), + [sym__comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(176), + [anon_sym_async] = ACTIONS(178), + [anon_sym_LBRACE] = ACTIONS(180), + [anon_sym_struct] = ACTIONS(182), + [anon_sym_new] = ACTIONS(184), + [sym_integer] = ACTIONS(186), + [sym_float] = ACTIONS(188), + [sym_string] = ACTIONS(188), + [anon_sym_true] = ACTIONS(190), + [anon_sym_false] = ACTIONS(190), + [anon_sym_LBRACK] = ACTIONS(192), + [anon_sym_none] = ACTIONS(194), + [anon_sym_some] = ACTIONS(196), + [anon_sym_if] = ACTIONS(160), + [anon_sym_match] = ACTIONS(162), + [anon_sym_while] = ACTIONS(198), + [anon_sym_for] = ACTIONS(200), + [anon_sym_asyncfor] = ACTIONS(202), + [anon_sym_return] = ACTIONS(204), + [anon_sym_args] = ACTIONS(206), + [anon_sym_assert_equal] = ACTIONS(206), + [anon_sym_env] = ACTIONS(206), + [anon_sym_fs] = ACTIONS(206), + [anon_sym_json] = ACTIONS(206), + [anon_sym_length] = ACTIONS(206), + [anon_sym_output] = ACTIONS(206), + [anon_sym_random] = ACTIONS(206), + [anon_sym_string] = ACTIONS(206), }, [38] = { - [sym_statement] = STATE(312), - [sym_expression] = STATE(201), - [sym__expression_kind] = STATE(125), - [sym_block] = STATE(300), - [sym_value] = STATE(126), - [sym_structure] = STATE(129), - [sym_new] = STATE(125), - [sym_boolean] = STATE(129), - [sym_list] = STATE(129), - [sym_map] = STATE(129), - [sym_option] = STATE(129), - [sym_index] = STATE(134), - [sym_index_expression] = STATE(476), - [sym_math] = STATE(125), - [sym_logic] = STATE(125), - [sym_assignment] = STATE(300), - [sym_index_assignment] = STATE(300), - [sym_if_else] = STATE(300), - [sym_if] = STATE(246), - [sym_match] = STATE(300), - [sym_while] = STATE(300), - [sym_for] = STATE(300), - [sym_return] = STATE(300), - [sym_function] = STATE(129), - [sym_function_expression] = STATE(457), - [sym__function_expression_kind] = STATE(71), - [sym_function_call] = STATE(119), - [sym_yield] = STATE(119), - [sym_built_in_value] = STATE(129), + [sym_statement] = STATE(252), + [sym_expression] = STATE(282), + [sym__expression_kind] = STATE(278), + [sym_block] = STATE(253), + [sym_value] = STATE(263), + [sym_range] = STATE(262), + [sym_structure] = STATE(230), + [sym_new] = STATE(278), + [sym_boolean] = STATE(230), + [sym_list] = STATE(230), + [sym_map] = STATE(230), + [sym_option] = STATE(230), + [sym_index] = STATE(261), + [sym_index_expression] = STATE(416), + [sym_math] = STATE(278), + [sym_logic] = STATE(278), + [sym_assignment] = STATE(253), + [sym_index_assignment] = STATE(253), + [sym_if_else] = STATE(253), + [sym_if] = STATE(333), + [sym_match] = STATE(253), + [sym_while] = STATE(253), + [sym_for] = STATE(253), + [sym_return] = STATE(253), + [sym_function] = STATE(230), + [sym_function_expression] = STATE(397), + [sym__function_expression_kind] = STATE(84), + [sym_function_call] = STATE(264), + [sym_yield] = STATE(264), + [sym_built_in_value] = STATE(230), [sym_identifier] = ACTIONS(174), [sym__comment] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(176), @@ -5213,157 +5279,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(206), }, [39] = { - [sym_statement] = STATE(305), - [sym_expression] = STATE(324), - [sym__expression_kind] = STATE(288), - [sym_block] = STATE(301), - [sym_value] = STATE(265), - [sym_structure] = STATE(279), - [sym_new] = STATE(288), - [sym_boolean] = STATE(279), - [sym_list] = STATE(279), - [sym_map] = STATE(279), - [sym_option] = STATE(279), - [sym_index] = STATE(314), - [sym_index_expression] = STATE(464), - [sym_math] = STATE(288), - [sym_logic] = STATE(288), - [sym_assignment] = STATE(301), - [sym_index_assignment] = STATE(301), - [sym_if_else] = STATE(301), - [sym_if] = STATE(388), - [sym_match] = STATE(301), - [sym_while] = STATE(301), - [sym_for] = STATE(301), - [sym_return] = STATE(301), - [sym_function] = STATE(279), - [sym_function_expression] = STATE(471), - [sym__function_expression_kind] = STATE(71), - [sym_function_call] = STATE(277), - [sym_yield] = STATE(277), - [sym_built_in_value] = STATE(279), - [sym_identifier] = ACTIONS(136), + [sym_statement] = STATE(381), + [sym_expression] = STATE(281), + [sym__expression_kind] = STATE(278), + [sym_block] = STATE(255), + [sym_value] = STATE(263), + [sym_range] = STATE(262), + [sym_structure] = STATE(230), + [sym_new] = STATE(278), + [sym_boolean] = STATE(230), + [sym_list] = STATE(230), + [sym_map] = STATE(230), + [sym_option] = STATE(230), + [sym_index] = STATE(261), + [sym_index_expression] = STATE(416), + [sym_math] = STATE(278), + [sym_logic] = STATE(278), + [sym_assignment] = STATE(255), + [sym_index_assignment] = STATE(255), + [sym_if_else] = STATE(255), + [sym_if] = STATE(333), + [sym_match] = STATE(255), + [sym_while] = STATE(255), + [sym_for] = STATE(255), + [sym_return] = STATE(255), + [sym_function] = STATE(230), + [sym_function_expression] = STATE(397), + [sym__function_expression_kind] = STATE(84), + [sym_function_call] = STATE(264), + [sym_yield] = STATE(264), + [sym_built_in_value] = STATE(230), + [sym_identifier] = ACTIONS(174), [sym__comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_async] = ACTIONS(140), - [anon_sym_LBRACE] = ACTIONS(142), - [anon_sym_struct] = ACTIONS(144), - [anon_sym_new] = ACTIONS(146), - [sym_integer] = ACTIONS(148), - [sym_float] = ACTIONS(150), - [sym_string] = ACTIONS(150), - [anon_sym_true] = ACTIONS(152), - [anon_sym_false] = ACTIONS(152), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_none] = ACTIONS(156), - [anon_sym_some] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(176), + [anon_sym_async] = ACTIONS(178), + [anon_sym_LBRACE] = ACTIONS(180), + [anon_sym_struct] = ACTIONS(182), + [anon_sym_new] = ACTIONS(184), + [sym_integer] = ACTIONS(186), + [sym_float] = ACTIONS(188), + [sym_string] = ACTIONS(188), + [anon_sym_true] = ACTIONS(190), + [anon_sym_false] = ACTIONS(190), + [anon_sym_LBRACK] = ACTIONS(192), + [anon_sym_none] = ACTIONS(194), + [anon_sym_some] = ACTIONS(196), [anon_sym_if] = ACTIONS(160), [anon_sym_match] = ACTIONS(162), - [anon_sym_while] = ACTIONS(164), - [anon_sym_for] = ACTIONS(166), - [anon_sym_asyncfor] = ACTIONS(168), - [anon_sym_return] = ACTIONS(170), - [anon_sym_args] = ACTIONS(172), - [anon_sym_assert_equal] = ACTIONS(172), - [anon_sym_env] = ACTIONS(172), - [anon_sym_fs] = ACTIONS(172), - [anon_sym_json] = ACTIONS(172), - [anon_sym_length] = ACTIONS(172), - [anon_sym_output] = ACTIONS(172), - [anon_sym_random] = ACTIONS(172), - [anon_sym_string] = ACTIONS(172), + [anon_sym_while] = ACTIONS(198), + [anon_sym_for] = ACTIONS(200), + [anon_sym_asyncfor] = ACTIONS(202), + [anon_sym_return] = ACTIONS(204), + [anon_sym_args] = ACTIONS(206), + [anon_sym_assert_equal] = ACTIONS(206), + [anon_sym_env] = ACTIONS(206), + [anon_sym_fs] = ACTIONS(206), + [anon_sym_json] = ACTIONS(206), + [anon_sym_length] = ACTIONS(206), + [anon_sym_output] = ACTIONS(206), + [anon_sym_random] = ACTIONS(206), + [anon_sym_string] = ACTIONS(206), }, [40] = { - [sym_statement] = STATE(303), - [sym_expression] = STATE(324), - [sym__expression_kind] = STATE(288), - [sym_block] = STATE(301), - [sym_value] = STATE(265), - [sym_structure] = STATE(279), - [sym_new] = STATE(288), - [sym_boolean] = STATE(279), - [sym_list] = STATE(279), - [sym_map] = STATE(279), - [sym_option] = STATE(279), - [sym_index] = STATE(314), - [sym_index_expression] = STATE(464), - [sym_math] = STATE(288), - [sym_logic] = STATE(288), - [sym_assignment] = STATE(301), - [sym_index_assignment] = STATE(301), - [sym_if_else] = STATE(301), - [sym_if] = STATE(388), - [sym_match] = STATE(301), - [sym_while] = STATE(301), - [sym_for] = STATE(301), - [sym_return] = STATE(301), - [sym_function] = STATE(279), - [sym_function_expression] = STATE(471), - [sym__function_expression_kind] = STATE(71), - [sym_function_call] = STATE(277), - [sym_yield] = STATE(277), - [sym_built_in_value] = STATE(279), - [sym_identifier] = ACTIONS(136), - [sym__comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_async] = ACTIONS(140), - [anon_sym_LBRACE] = ACTIONS(142), - [anon_sym_struct] = ACTIONS(144), - [anon_sym_new] = ACTIONS(146), - [sym_integer] = ACTIONS(148), - [sym_float] = ACTIONS(150), - [sym_string] = ACTIONS(150), - [anon_sym_true] = ACTIONS(152), - [anon_sym_false] = ACTIONS(152), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_none] = ACTIONS(156), - [anon_sym_some] = ACTIONS(158), - [anon_sym_if] = ACTIONS(160), - [anon_sym_match] = ACTIONS(162), - [anon_sym_while] = ACTIONS(164), - [anon_sym_for] = ACTIONS(166), - [anon_sym_asyncfor] = ACTIONS(168), - [anon_sym_return] = ACTIONS(170), - [anon_sym_args] = ACTIONS(172), - [anon_sym_assert_equal] = ACTIONS(172), - [anon_sym_env] = ACTIONS(172), - [anon_sym_fs] = ACTIONS(172), - [anon_sym_json] = ACTIONS(172), - [anon_sym_length] = ACTIONS(172), - [anon_sym_output] = ACTIONS(172), - [anon_sym_random] = ACTIONS(172), - [anon_sym_string] = ACTIONS(172), - }, - [41] = { - [sym_statement] = STATE(235), - [sym_expression] = STATE(88), - [sym__expression_kind] = STATE(63), - [sym_block] = STATE(232), - [sym_value] = STATE(87), - [sym_structure] = STATE(81), - [sym_new] = STATE(63), - [sym_boolean] = STATE(81), - [sym_list] = STATE(81), - [sym_map] = STATE(81), - [sym_option] = STATE(81), - [sym_index] = STATE(84), - [sym_index_expression] = STATE(482), - [sym_math] = STATE(63), - [sym_logic] = STATE(63), - [sym_assignment] = STATE(232), - [sym_index_assignment] = STATE(232), - [sym_if_else] = STATE(232), - [sym_if] = STATE(224), - [sym_match] = STATE(232), - [sym_while] = STATE(232), - [sym_for] = STATE(232), - [sym_return] = STATE(232), - [sym_function] = STATE(81), - [sym_function_expression] = STATE(481), - [sym__function_expression_kind] = STATE(71), - [sym_function_call] = STATE(69), - [sym_yield] = STATE(69), - [sym_built_in_value] = STATE(81), + [sym_statement] = STATE(198), + [sym_expression] = STATE(74), + [sym__expression_kind] = STATE(90), + [sym_block] = STATE(201), + [sym_value] = STATE(78), + [sym_range] = STATE(77), + [sym_structure] = STATE(70), + [sym_new] = STATE(90), + [sym_boolean] = STATE(70), + [sym_list] = STATE(70), + [sym_map] = STATE(70), + [sym_option] = STATE(70), + [sym_index] = STATE(50), + [sym_index_expression] = STATE(421), + [sym_math] = STATE(90), + [sym_logic] = STATE(90), + [sym_assignment] = STATE(201), + [sym_index_assignment] = STATE(201), + [sym_if_else] = STATE(201), + [sym_if] = STATE(190), + [sym_match] = STATE(201), + [sym_while] = STATE(201), + [sym_for] = STATE(201), + [sym_return] = STATE(201), + [sym_function] = STATE(70), + [sym_function_expression] = STATE(419), + [sym__function_expression_kind] = STATE(84), + [sym_function_call] = STATE(85), + [sym_yield] = STATE(85), + [sym_built_in_value] = STATE(70), [sym_identifier] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(7), @@ -5395,97 +5402,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_random] = ACTIONS(41), [anon_sym_string] = ACTIONS(41), }, - [42] = { - [sym_statement] = STATE(309), - [sym_expression] = STATE(324), - [sym__expression_kind] = STATE(288), - [sym_block] = STATE(301), - [sym_value] = STATE(265), - [sym_structure] = STATE(279), - [sym_new] = STATE(288), - [sym_boolean] = STATE(279), - [sym_list] = STATE(279), - [sym_map] = STATE(279), - [sym_option] = STATE(279), - [sym_index] = STATE(314), - [sym_index_expression] = STATE(464), - [sym_math] = STATE(288), - [sym_logic] = STATE(288), - [sym_assignment] = STATE(301), - [sym_index_assignment] = STATE(301), - [sym_if_else] = STATE(301), - [sym_if] = STATE(388), - [sym_match] = STATE(301), - [sym_while] = STATE(301), - [sym_for] = STATE(301), - [sym_return] = STATE(301), - [sym_function] = STATE(279), - [sym_function_expression] = STATE(471), - [sym__function_expression_kind] = STATE(71), - [sym_function_call] = STATE(277), - [sym_yield] = STATE(277), - [sym_built_in_value] = STATE(279), - [sym_identifier] = ACTIONS(136), + [41] = { + [sym_statement] = STATE(384), + [sym_expression] = STATE(281), + [sym__expression_kind] = STATE(278), + [sym_block] = STATE(255), + [sym_value] = STATE(263), + [sym_range] = STATE(262), + [sym_structure] = STATE(230), + [sym_new] = STATE(278), + [sym_boolean] = STATE(230), + [sym_list] = STATE(230), + [sym_map] = STATE(230), + [sym_option] = STATE(230), + [sym_index] = STATE(261), + [sym_index_expression] = STATE(416), + [sym_math] = STATE(278), + [sym_logic] = STATE(278), + [sym_assignment] = STATE(255), + [sym_index_assignment] = STATE(255), + [sym_if_else] = STATE(255), + [sym_if] = STATE(333), + [sym_match] = STATE(255), + [sym_while] = STATE(255), + [sym_for] = STATE(255), + [sym_return] = STATE(255), + [sym_function] = STATE(230), + [sym_function_expression] = STATE(397), + [sym__function_expression_kind] = STATE(84), + [sym_function_call] = STATE(264), + [sym_yield] = STATE(264), + [sym_built_in_value] = STATE(230), + [sym_identifier] = ACTIONS(174), [sym__comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_async] = ACTIONS(140), - [anon_sym_LBRACE] = ACTIONS(142), - [anon_sym_struct] = ACTIONS(144), - [anon_sym_new] = ACTIONS(146), - [sym_integer] = ACTIONS(148), - [sym_float] = ACTIONS(150), - [sym_string] = ACTIONS(150), - [anon_sym_true] = ACTIONS(152), - [anon_sym_false] = ACTIONS(152), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_none] = ACTIONS(156), - [anon_sym_some] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(176), + [anon_sym_async] = ACTIONS(178), + [anon_sym_LBRACE] = ACTIONS(180), + [anon_sym_struct] = ACTIONS(182), + [anon_sym_new] = ACTIONS(184), + [sym_integer] = ACTIONS(186), + [sym_float] = ACTIONS(188), + [sym_string] = ACTIONS(188), + [anon_sym_true] = ACTIONS(190), + [anon_sym_false] = ACTIONS(190), + [anon_sym_LBRACK] = ACTIONS(192), + [anon_sym_none] = ACTIONS(194), + [anon_sym_some] = ACTIONS(196), [anon_sym_if] = ACTIONS(160), [anon_sym_match] = ACTIONS(162), - [anon_sym_while] = ACTIONS(164), - [anon_sym_for] = ACTIONS(166), - [anon_sym_asyncfor] = ACTIONS(168), - [anon_sym_return] = ACTIONS(170), - [anon_sym_args] = ACTIONS(172), - [anon_sym_assert_equal] = ACTIONS(172), - [anon_sym_env] = ACTIONS(172), - [anon_sym_fs] = ACTIONS(172), - [anon_sym_json] = ACTIONS(172), - [anon_sym_length] = ACTIONS(172), - [anon_sym_output] = ACTIONS(172), - [anon_sym_random] = ACTIONS(172), - [anon_sym_string] = ACTIONS(172), + [anon_sym_while] = ACTIONS(198), + [anon_sym_for] = ACTIONS(200), + [anon_sym_asyncfor] = ACTIONS(202), + [anon_sym_return] = ACTIONS(204), + [anon_sym_args] = ACTIONS(206), + [anon_sym_assert_equal] = ACTIONS(206), + [anon_sym_env] = ACTIONS(206), + [anon_sym_fs] = ACTIONS(206), + [anon_sym_json] = ACTIONS(206), + [anon_sym_length] = ACTIONS(206), + [anon_sym_output] = ACTIONS(206), + [anon_sym_random] = ACTIONS(206), + [anon_sym_string] = ACTIONS(206), + }, + [42] = { + [sym_statement] = STATE(245), + [sym_expression] = STATE(282), + [sym__expression_kind] = STATE(278), + [sym_block] = STATE(253), + [sym_value] = STATE(263), + [sym_range] = STATE(262), + [sym_structure] = STATE(230), + [sym_new] = STATE(278), + [sym_boolean] = STATE(230), + [sym_list] = STATE(230), + [sym_map] = STATE(230), + [sym_option] = STATE(230), + [sym_index] = STATE(261), + [sym_index_expression] = STATE(416), + [sym_math] = STATE(278), + [sym_logic] = STATE(278), + [sym_assignment] = STATE(253), + [sym_index_assignment] = STATE(253), + [sym_if_else] = STATE(253), + [sym_if] = STATE(333), + [sym_match] = STATE(253), + [sym_while] = STATE(253), + [sym_for] = STATE(253), + [sym_return] = STATE(253), + [sym_function] = STATE(230), + [sym_function_expression] = STATE(397), + [sym__function_expression_kind] = STATE(84), + [sym_function_call] = STATE(264), + [sym_yield] = STATE(264), + [sym_built_in_value] = STATE(230), + [sym_identifier] = ACTIONS(174), + [sym__comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(176), + [anon_sym_async] = ACTIONS(178), + [anon_sym_LBRACE] = ACTIONS(180), + [anon_sym_struct] = ACTIONS(182), + [anon_sym_new] = ACTIONS(184), + [sym_integer] = ACTIONS(186), + [sym_float] = ACTIONS(188), + [sym_string] = ACTIONS(188), + [anon_sym_true] = ACTIONS(190), + [anon_sym_false] = ACTIONS(190), + [anon_sym_LBRACK] = ACTIONS(192), + [anon_sym_none] = ACTIONS(194), + [anon_sym_some] = ACTIONS(196), + [anon_sym_if] = ACTIONS(160), + [anon_sym_match] = ACTIONS(162), + [anon_sym_while] = ACTIONS(198), + [anon_sym_for] = ACTIONS(200), + [anon_sym_asyncfor] = ACTIONS(202), + [anon_sym_return] = ACTIONS(204), + [anon_sym_args] = ACTIONS(206), + [anon_sym_assert_equal] = ACTIONS(206), + [anon_sym_env] = ACTIONS(206), + [anon_sym_fs] = ACTIONS(206), + [anon_sym_json] = ACTIONS(206), + [anon_sym_length] = ACTIONS(206), + [anon_sym_output] = ACTIONS(206), + [anon_sym_random] = ACTIONS(206), + [anon_sym_string] = ACTIONS(206), }, [43] = { - [sym_statement] = STATE(448), - [sym_expression] = STATE(323), - [sym__expression_kind] = STATE(288), - [sym_block] = STATE(300), - [sym_value] = STATE(265), - [sym_structure] = STATE(279), - [sym_new] = STATE(288), - [sym_boolean] = STATE(279), - [sym_list] = STATE(279), - [sym_map] = STATE(279), - [sym_option] = STATE(279), - [sym_index] = STATE(314), - [sym_index_expression] = STATE(464), - [sym_math] = STATE(288), - [sym_logic] = STATE(288), - [sym_assignment] = STATE(300), - [sym_index_assignment] = STATE(300), - [sym_if_else] = STATE(300), - [sym_if] = STATE(388), - [sym_match] = STATE(300), - [sym_while] = STATE(300), - [sym_for] = STATE(300), - [sym_return] = STATE(300), - [sym_function] = STATE(279), - [sym_function_expression] = STATE(471), - [sym__function_expression_kind] = STATE(71), - [sym_function_call] = STATE(277), - [sym_yield] = STATE(277), - [sym_built_in_value] = STATE(279), + [sym_statement] = STATE(247), + [sym_expression] = STATE(185), + [sym__expression_kind] = STATE(176), + [sym_block] = STATE(253), + [sym_value] = STATE(155), + [sym_range] = STATE(154), + [sym_structure] = STATE(104), + [sym_new] = STATE(176), + [sym_boolean] = STATE(104), + [sym_list] = STATE(104), + [sym_map] = STATE(104), + [sym_option] = STATE(104), + [sym_index] = STATE(133), + [sym_index_expression] = STATE(415), + [sym_math] = STATE(176), + [sym_logic] = STATE(176), + [sym_assignment] = STATE(253), + [sym_index_assignment] = STATE(253), + [sym_if_else] = STATE(253), + [sym_if] = STATE(215), + [sym_match] = STATE(253), + [sym_while] = STATE(253), + [sym_for] = STATE(253), + [sym_return] = STATE(253), + [sym_function] = STATE(104), + [sym_function_expression] = STATE(414), + [sym__function_expression_kind] = STATE(84), + [sym_function_call] = STATE(184), + [sym_yield] = STATE(184), + [sym_built_in_value] = STATE(104), [sym_identifier] = ACTIONS(136), [sym__comment] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(138), @@ -5518,96 +5589,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(172), }, [44] = { - [sym_statement] = STATE(445), - [sym_expression] = STATE(323), - [sym__expression_kind] = STATE(288), - [sym_block] = STATE(300), - [sym_value] = STATE(265), - [sym_structure] = STATE(279), - [sym_new] = STATE(288), - [sym_boolean] = STATE(279), - [sym_list] = STATE(279), - [sym_map] = STATE(279), - [sym_option] = STATE(279), - [sym_index] = STATE(314), - [sym_index_expression] = STATE(464), - [sym_math] = STATE(288), - [sym_logic] = STATE(288), - [sym_assignment] = STATE(300), - [sym_index_assignment] = STATE(300), - [sym_if_else] = STATE(300), - [sym_if] = STATE(388), - [sym_match] = STATE(300), - [sym_while] = STATE(300), - [sym_for] = STATE(300), - [sym_return] = STATE(300), - [sym_function] = STATE(279), - [sym_function_expression] = STATE(471), - [sym__function_expression_kind] = STATE(71), - [sym_function_call] = STATE(277), - [sym_yield] = STATE(277), - [sym_built_in_value] = STATE(279), - [sym_identifier] = ACTIONS(136), + [sym_statement] = STATE(360), + [sym_expression] = STATE(281), + [sym__expression_kind] = STATE(278), + [sym_block] = STATE(255), + [sym_value] = STATE(263), + [sym_range] = STATE(262), + [sym_structure] = STATE(230), + [sym_new] = STATE(278), + [sym_boolean] = STATE(230), + [sym_list] = STATE(230), + [sym_map] = STATE(230), + [sym_option] = STATE(230), + [sym_index] = STATE(261), + [sym_index_expression] = STATE(416), + [sym_math] = STATE(278), + [sym_logic] = STATE(278), + [sym_assignment] = STATE(255), + [sym_index_assignment] = STATE(255), + [sym_if_else] = STATE(255), + [sym_if] = STATE(333), + [sym_match] = STATE(255), + [sym_while] = STATE(255), + [sym_for] = STATE(255), + [sym_return] = STATE(255), + [sym_function] = STATE(230), + [sym_function_expression] = STATE(397), + [sym__function_expression_kind] = STATE(84), + [sym_function_call] = STATE(264), + [sym_yield] = STATE(264), + [sym_built_in_value] = STATE(230), + [sym_identifier] = ACTIONS(174), [sym__comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_async] = ACTIONS(140), - [anon_sym_LBRACE] = ACTIONS(142), - [anon_sym_struct] = ACTIONS(144), - [anon_sym_new] = ACTIONS(146), - [sym_integer] = ACTIONS(148), - [sym_float] = ACTIONS(150), - [sym_string] = ACTIONS(150), - [anon_sym_true] = ACTIONS(152), - [anon_sym_false] = ACTIONS(152), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_none] = ACTIONS(156), - [anon_sym_some] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(176), + [anon_sym_async] = ACTIONS(178), + [anon_sym_LBRACE] = ACTIONS(180), + [anon_sym_struct] = ACTIONS(182), + [anon_sym_new] = ACTIONS(184), + [sym_integer] = ACTIONS(186), + [sym_float] = ACTIONS(188), + [sym_string] = ACTIONS(188), + [anon_sym_true] = ACTIONS(190), + [anon_sym_false] = ACTIONS(190), + [anon_sym_LBRACK] = ACTIONS(192), + [anon_sym_none] = ACTIONS(194), + [anon_sym_some] = ACTIONS(196), [anon_sym_if] = ACTIONS(160), [anon_sym_match] = ACTIONS(162), - [anon_sym_while] = ACTIONS(164), - [anon_sym_for] = ACTIONS(166), - [anon_sym_asyncfor] = ACTIONS(168), - [anon_sym_return] = ACTIONS(170), - [anon_sym_args] = ACTIONS(172), - [anon_sym_assert_equal] = ACTIONS(172), - [anon_sym_env] = ACTIONS(172), - [anon_sym_fs] = ACTIONS(172), - [anon_sym_json] = ACTIONS(172), - [anon_sym_length] = ACTIONS(172), - [anon_sym_output] = ACTIONS(172), - [anon_sym_random] = ACTIONS(172), - [anon_sym_string] = ACTIONS(172), + [anon_sym_while] = ACTIONS(198), + [anon_sym_for] = ACTIONS(200), + [anon_sym_asyncfor] = ACTIONS(202), + [anon_sym_return] = ACTIONS(204), + [anon_sym_args] = ACTIONS(206), + [anon_sym_assert_equal] = ACTIONS(206), + [anon_sym_env] = ACTIONS(206), + [anon_sym_fs] = ACTIONS(206), + [anon_sym_json] = ACTIONS(206), + [anon_sym_length] = ACTIONS(206), + [anon_sym_output] = ACTIONS(206), + [anon_sym_random] = ACTIONS(206), + [anon_sym_string] = ACTIONS(206), }, [45] = { - [sym_statement] = STATE(309), - [sym_expression] = STATE(196), - [sym__expression_kind] = STATE(125), - [sym_block] = STATE(301), - [sym_value] = STATE(126), - [sym_structure] = STATE(129), - [sym_new] = STATE(125), - [sym_boolean] = STATE(129), - [sym_list] = STATE(129), - [sym_map] = STATE(129), - [sym_option] = STATE(129), - [sym_index] = STATE(134), - [sym_index_expression] = STATE(476), - [sym_math] = STATE(125), - [sym_logic] = STATE(125), - [sym_assignment] = STATE(301), - [sym_index_assignment] = STATE(301), - [sym_if_else] = STATE(301), - [sym_if] = STATE(246), - [sym_match] = STATE(301), - [sym_while] = STATE(301), - [sym_for] = STATE(301), - [sym_return] = STATE(301), - [sym_function] = STATE(129), - [sym_function_expression] = STATE(457), - [sym__function_expression_kind] = STATE(71), - [sym_function_call] = STATE(119), - [sym_yield] = STATE(119), - [sym_built_in_value] = STATE(129), + [sym_statement] = STATE(256), + [sym_expression] = STATE(282), + [sym__expression_kind] = STATE(278), + [sym_block] = STATE(253), + [sym_value] = STATE(263), + [sym_range] = STATE(262), + [sym_structure] = STATE(230), + [sym_new] = STATE(278), + [sym_boolean] = STATE(230), + [sym_list] = STATE(230), + [sym_map] = STATE(230), + [sym_option] = STATE(230), + [sym_index] = STATE(261), + [sym_index_expression] = STATE(416), + [sym_math] = STATE(278), + [sym_logic] = STATE(278), + [sym_assignment] = STATE(253), + [sym_index_assignment] = STATE(253), + [sym_if_else] = STATE(253), + [sym_if] = STATE(333), + [sym_match] = STATE(253), + [sym_while] = STATE(253), + [sym_for] = STATE(253), + [sym_return] = STATE(253), + [sym_function] = STATE(230), + [sym_function_expression] = STATE(397), + [sym__function_expression_kind] = STATE(84), + [sym_function_call] = STATE(264), + [sym_yield] = STATE(264), + [sym_built_in_value] = STATE(230), [sym_identifier] = ACTIONS(174), [sym__comment] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(176), @@ -5640,96 +5713,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(206), }, [46] = { - [sym_statement] = STATE(233), - [sym_expression] = STATE(88), - [sym__expression_kind] = STATE(63), - [sym_block] = STATE(232), - [sym_value] = STATE(87), - [sym_structure] = STATE(81), - [sym_new] = STATE(63), - [sym_boolean] = STATE(81), - [sym_list] = STATE(81), - [sym_map] = STATE(81), - [sym_option] = STATE(81), - [sym_index] = STATE(84), - [sym_index_expression] = STATE(482), - [sym_math] = STATE(63), - [sym_logic] = STATE(63), - [sym_assignment] = STATE(232), - [sym_index_assignment] = STATE(232), - [sym_if_else] = STATE(232), - [sym_if] = STATE(224), - [sym_match] = STATE(232), - [sym_while] = STATE(232), - [sym_for] = STATE(232), - [sym_return] = STATE(232), - [sym_function] = STATE(81), - [sym_function_expression] = STATE(481), - [sym__function_expression_kind] = STATE(71), - [sym_function_call] = STATE(69), - [sym_yield] = STATE(69), - [sym_built_in_value] = STATE(81), - [sym_identifier] = ACTIONS(5), - [sym__comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(7), - [anon_sym_async] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(11), - [anon_sym_struct] = ACTIONS(13), - [anon_sym_new] = ACTIONS(15), - [sym_integer] = ACTIONS(17), - [sym_float] = ACTIONS(19), - [sym_string] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_none] = ACTIONS(25), - [anon_sym_some] = ACTIONS(27), - [anon_sym_if] = ACTIONS(29), - [anon_sym_match] = ACTIONS(31), - [anon_sym_while] = ACTIONS(33), - [anon_sym_for] = ACTIONS(35), - [anon_sym_asyncfor] = ACTIONS(37), - [anon_sym_return] = ACTIONS(39), - [anon_sym_args] = ACTIONS(41), - [anon_sym_assert_equal] = ACTIONS(41), - [anon_sym_env] = ACTIONS(41), - [anon_sym_fs] = ACTIONS(41), - [anon_sym_json] = ACTIONS(41), - [anon_sym_length] = ACTIONS(41), - [anon_sym_output] = ACTIONS(41), - [anon_sym_random] = ACTIONS(41), - [anon_sym_string] = ACTIONS(41), - }, - [47] = { - [sym_statement] = STATE(428), - [sym_expression] = STATE(323), - [sym__expression_kind] = STATE(288), - [sym_block] = STATE(300), - [sym_value] = STATE(265), - [sym_structure] = STATE(279), - [sym_new] = STATE(288), - [sym_boolean] = STATE(279), - [sym_list] = STATE(279), - [sym_map] = STATE(279), - [sym_option] = STATE(279), - [sym_index] = STATE(314), - [sym_index_expression] = STATE(464), - [sym_math] = STATE(288), - [sym_logic] = STATE(288), - [sym_assignment] = STATE(300), - [sym_index_assignment] = STATE(300), - [sym_if_else] = STATE(300), - [sym_if] = STATE(388), - [sym_match] = STATE(300), - [sym_while] = STATE(300), - [sym_for] = STATE(300), - [sym_return] = STATE(300), - [sym_function] = STATE(279), - [sym_function_expression] = STATE(471), - [sym__function_expression_kind] = STATE(71), - [sym_function_call] = STATE(277), - [sym_yield] = STATE(277), - [sym_built_in_value] = STATE(279), + [sym_statement] = STATE(245), + [sym_expression] = STATE(185), + [sym__expression_kind] = STATE(176), + [sym_block] = STATE(253), + [sym_value] = STATE(155), + [sym_range] = STATE(154), + [sym_structure] = STATE(104), + [sym_new] = STATE(176), + [sym_boolean] = STATE(104), + [sym_list] = STATE(104), + [sym_map] = STATE(104), + [sym_option] = STATE(104), + [sym_index] = STATE(133), + [sym_index_expression] = STATE(415), + [sym_math] = STATE(176), + [sym_logic] = STATE(176), + [sym_assignment] = STATE(253), + [sym_index_assignment] = STATE(253), + [sym_if_else] = STATE(253), + [sym_if] = STATE(215), + [sym_match] = STATE(253), + [sym_while] = STATE(253), + [sym_for] = STATE(253), + [sym_return] = STATE(253), + [sym_function] = STATE(104), + [sym_function_expression] = STATE(414), + [sym__function_expression_kind] = STATE(84), + [sym_function_call] = STATE(184), + [sym_yield] = STATE(184), + [sym_built_in_value] = STATE(104), [sym_identifier] = ACTIONS(136), [sym__comment] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(138), @@ -5761,210 +5774,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_random] = ACTIONS(172), [anon_sym_string] = ACTIONS(172), }, + [47] = { + [sym_statement] = STATE(360), + [sym_expression] = STATE(281), + [sym__expression_kind] = STATE(278), + [sym_block] = STATE(255), + [sym_value] = STATE(263), + [sym_range] = STATE(262), + [sym_structure] = STATE(230), + [sym_new] = STATE(278), + [sym_boolean] = STATE(230), + [sym_list] = STATE(230), + [sym_map] = STATE(230), + [sym_option] = STATE(230), + [sym_index] = STATE(261), + [sym_index_expression] = STATE(416), + [sym_math] = STATE(278), + [sym_logic] = STATE(278), + [sym_assignment] = STATE(255), + [sym_index_assignment] = STATE(255), + [sym_if_else] = STATE(255), + [sym_if] = STATE(333), + [sym_match] = STATE(255), + [sym_while] = STATE(255), + [sym_for] = STATE(255), + [sym_return] = STATE(255), + [sym_function] = STATE(230), + [sym_function_expression] = STATE(397), + [sym__function_expression_kind] = STATE(84), + [sym_function_call] = STATE(264), + [sym_yield] = STATE(264), + [sym_built_in_value] = STATE(230), + [sym_identifier] = ACTIONS(174), + [sym__comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(176), + [anon_sym_async] = ACTIONS(178), + [anon_sym_LBRACE] = ACTIONS(180), + [anon_sym_struct] = ACTIONS(182), + [anon_sym_new] = ACTIONS(184), + [sym_integer] = ACTIONS(186), + [sym_float] = ACTIONS(188), + [sym_string] = ACTIONS(188), + [anon_sym_true] = ACTIONS(190), + [anon_sym_false] = ACTIONS(190), + [anon_sym_LBRACK] = ACTIONS(192), + [anon_sym_none] = ACTIONS(194), + [anon_sym_some] = ACTIONS(196), + [anon_sym_if] = ACTIONS(160), + [anon_sym_match] = ACTIONS(162), + [anon_sym_while] = ACTIONS(198), + [anon_sym_for] = ACTIONS(200), + [anon_sym_asyncfor] = ACTIONS(202), + [anon_sym_return] = ACTIONS(204), + [anon_sym_args] = ACTIONS(206), + [anon_sym_assert_equal] = ACTIONS(206), + [anon_sym_env] = ACTIONS(206), + [anon_sym_fs] = ACTIONS(206), + [anon_sym_json] = ACTIONS(206), + [anon_sym_length] = ACTIONS(206), + [anon_sym_output] = ACTIONS(206), + [anon_sym_random] = ACTIONS(206), + [anon_sym_string] = ACTIONS(206), + }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 6, + [0] = 10, ACTIONS(3), 1, sym__comment, ACTIONS(212), 1, - anon_sym_DASH_GT, - STATE(174), 1, - sym_math_operator, - STATE(176), 1, - sym_logic_operator, - ACTIONS(208), 22, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_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, - ACTIONS(210), 28, - anon_sym_async, - sym_identifier, - anon_sym_struct, + ACTIONS(214), 1, anon_sym_EQ, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - 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_return, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [67] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(174), 1, - sym_math_operator, - STATE(176), 1, - sym_logic_operator, - ACTIONS(214), 23, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, + ACTIONS(216), 1, 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, - ACTIONS(216), 28, - anon_sym_async, - sym_identifier, - anon_sym_struct, - anon_sym_EQ, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, + ACTIONS(218), 1, anon_sym_LT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [132] = 6, - ACTIONS(3), 1, - sym__comment, - ACTIONS(212), 1, - anon_sym_DASH_GT, - STATE(174), 1, - sym_math_operator, - STATE(176), 1, - sym_logic_operator, - ACTIONS(218), 22, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_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, - ACTIONS(220), 28, - anon_sym_async, - sym_identifier, - anon_sym_struct, - anon_sym_EQ, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - 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_return, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [199] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(226), 1, - anon_sym_LPAREN, - ACTIONS(228), 1, - anon_sym_EQ, - ACTIONS(230), 1, - anon_sym_COLON, - ACTIONS(232), 1, - anon_sym_LT, - STATE(46), 1, + STATE(30), 1, sym_assignment_operator, - STATE(393), 1, + STATE(336), 1, sym_type_specification, - ACTIONS(234), 2, + ACTIONS(220), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(222), 18, + ACTIONS(208), 18, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -5983,7 +5876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_asyncfor, anon_sym_DASH_GT, - ACTIONS(224), 26, + ACTIONS(210), 26, anon_sym_async, sym_identifier, anon_sym_struct, @@ -6010,25 +5903,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_output, anon_sym_random, anon_sym_string, - [273] = 6, + [74] = 10, ACTIONS(3), 1, sym__comment, - ACTIONS(236), 1, - anon_sym_DASH_GT, - STATE(192), 1, - sym_math_operator, - STATE(195), 1, - sym_logic_operator, - ACTIONS(208), 21, - ts_builtin_sym_end, - anon_sym_SEMI, + ACTIONS(212), 1, anon_sym_LPAREN, + ACTIONS(216), 1, + anon_sym_COLON, + ACTIONS(218), 1, + anon_sym_LT, + ACTIONS(222), 1, + anon_sym_EQ, + STATE(30), 1, + sym_assignment_operator, + STATE(335), 1, + sym_type_specification, + ACTIONS(220), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(208), 17, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, sym_float, sym_string, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -6038,14 +5937,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, anon_sym_asyncfor, - ACTIONS(210), 28, + anon_sym_DASH_GT, + ACTIONS(210), 26, anon_sym_async, sym_identifier, anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [147] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(212), 1, + anon_sym_LPAREN, + ACTIONS(214), 1, anon_sym_EQ, + ACTIONS(216), 1, + anon_sym_COLON, + STATE(35), 1, + sym_assignment_operator, + ACTIONS(220), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(208), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_asyncfor, + anon_sym_DASH_GT, + ACTIONS(210), 27, + anon_sym_async, + sym_identifier, + anon_sym_struct, anon_sym_new, sym_integer, anon_sym_true, @@ -6070,139 +6027,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_output, anon_sym_random, anon_sym_string, - [339] = 6, + [216] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(236), 1, - anon_sym_DASH_GT, - STATE(192), 1, - sym_math_operator, - STATE(195), 1, - sym_logic_operator, - ACTIONS(218), 21, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_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, - ACTIONS(220), 28, - anon_sym_async, - sym_identifier, - anon_sym_struct, - anon_sym_EQ, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - 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_return, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [405] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(192), 1, - sym_math_operator, - STATE(195), 1, - sym_logic_operator, - ACTIONS(214), 22, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_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, - ACTIONS(216), 28, - anon_sym_async, - sym_identifier, - anon_sym_struct, - anon_sym_EQ, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - 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_return, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [469] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(238), 23, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_COLON, + ACTIONS(228), 1, anon_sym_DOT_DOT, + ACTIONS(224), 22, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_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, + ACTIONS(226), 28, + anon_sym_async, + sym_identifier, + anon_sym_struct, + anon_sym_EQ, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + 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_return, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [277] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(230), 22, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_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, + ACTIONS(232), 28, + anon_sym_async, + sym_identifier, + anon_sym_struct, + anon_sym_EQ, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + 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_return, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [335] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(234), 22, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_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, + ACTIONS(236), 28, + anon_sym_async, + sym_identifier, + anon_sym_struct, + anon_sym_EQ, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + 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_return, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [393] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(238), 22, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_COLON, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -6245,10 +6249,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_output, anon_sym_random, anon_sym_string, - [528] = 3, + [451] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(242), 23, + ACTIONS(242), 22, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, @@ -6258,7 +6262,6 @@ static const uint16_t ts_small_parse_table[] = { sym_string, anon_sym_LBRACK, anon_sym_COLON, - anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -6301,10 +6304,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_output, anon_sym_random, anon_sym_string, - [587] = 3, + [509] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(246), 23, + ACTIONS(246), 22, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, @@ -6314,7 +6317,6 @@ static const uint16_t ts_small_parse_table[] = { sym_string, anon_sym_LBRACK, anon_sym_COLON, - anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -6357,10 +6359,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_output, anon_sym_random, anon_sym_string, - [646] = 3, + [567] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(250), 23, + ACTIONS(250), 22, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, @@ -6370,7 +6372,6 @@ static const uint16_t ts_small_parse_table[] = { sym_string, anon_sym_LBRACK, anon_sym_COLON, - anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -6413,1714 +6414,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_output, anon_sym_random, anon_sym_string, - [705] = 3, + [625] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(254), 23, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_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, - ACTIONS(256), 28, - anon_sym_async, - sym_identifier, - anon_sym_struct, - anon_sym_EQ, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - 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_return, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [764] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(258), 23, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_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, - ACTIONS(260), 28, - anon_sym_async, - sym_identifier, - anon_sym_struct, - anon_sym_EQ, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - 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_return, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [823] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(262), 23, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_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, - ACTIONS(264), 28, - anon_sym_async, - sym_identifier, - anon_sym_struct, - anon_sym_EQ, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - 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_return, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [882] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(266), 23, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_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, - ACTIONS(268), 28, - anon_sym_async, - sym_identifier, - anon_sym_struct, - anon_sym_EQ, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - 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_return, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [941] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(270), 23, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_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, - ACTIONS(272), 28, - anon_sym_async, - sym_identifier, - anon_sym_struct, - anon_sym_EQ, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - 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_return, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [1000] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(274), 23, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_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, - ACTIONS(276), 28, - anon_sym_async, - sym_identifier, - anon_sym_struct, - anon_sym_EQ, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - 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_return, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [1059] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(278), 23, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_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, - ACTIONS(280), 28, - anon_sym_async, - sym_identifier, - anon_sym_struct, - anon_sym_EQ, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - 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_return, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [1118] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(282), 23, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_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, - ACTIONS(284), 28, - anon_sym_async, - sym_identifier, - anon_sym_struct, - anon_sym_EQ, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - 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_return, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [1177] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(286), 23, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_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, - ACTIONS(288), 28, - anon_sym_async, - sym_identifier, - anon_sym_struct, - anon_sym_EQ, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - 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_return, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [1236] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(290), 23, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_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, - ACTIONS(292), 28, - anon_sym_async, - sym_identifier, - anon_sym_struct, - anon_sym_EQ, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - 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_return, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [1295] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(226), 1, - anon_sym_LPAREN, - ACTIONS(222), 22, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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, - ACTIONS(224), 28, - anon_sym_async, - sym_identifier, - anon_sym_struct, - anon_sym_EQ, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - 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_return, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [1356] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(294), 23, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_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, - ACTIONS(296), 28, - anon_sym_async, - sym_identifier, - anon_sym_struct, - anon_sym_EQ, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - 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_return, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [1415] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(298), 23, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_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, - ACTIONS(300), 28, - anon_sym_async, - sym_identifier, - anon_sym_struct, - anon_sym_EQ, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - 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_return, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [1474] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(226), 1, - anon_sym_LPAREN, - ACTIONS(230), 1, - anon_sym_COLON, - ACTIONS(232), 1, - anon_sym_LT, - ACTIONS(302), 1, - anon_sym_EQ, - STATE(46), 1, - sym_assignment_operator, - STATE(390), 1, - sym_type_specification, - ACTIONS(234), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(222), 17, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_asyncfor, - anon_sym_DASH_GT, - ACTIONS(224), 26, - anon_sym_async, - sym_identifier, - anon_sym_struct, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [1547] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(304), 23, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_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, - ACTIONS(306), 28, - anon_sym_async, - sym_identifier, - anon_sym_struct, - anon_sym_EQ, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - 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_return, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [1606] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(230), 23, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_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, - ACTIONS(308), 28, - anon_sym_async, - sym_identifier, - anon_sym_struct, - anon_sym_EQ, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - 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_return, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [1665] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(310), 1, - anon_sym_DOT_DOT, - ACTIONS(274), 22, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_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, - ACTIONS(276), 28, - anon_sym_async, - sym_identifier, - anon_sym_struct, - anon_sym_EQ, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - 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_return, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [1726] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(312), 23, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_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, - ACTIONS(314), 28, - anon_sym_async, - sym_identifier, - anon_sym_struct, - anon_sym_EQ, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - 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_return, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [1785] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(316), 23, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_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, - ACTIONS(318), 28, - anon_sym_async, - sym_identifier, - anon_sym_struct, - anon_sym_EQ, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - 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_return, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [1844] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(320), 23, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_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, - ACTIONS(322), 28, - anon_sym_async, - sym_identifier, - anon_sym_struct, - anon_sym_EQ, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - 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_return, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [1903] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(324), 23, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_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, - ACTIONS(326), 28, - anon_sym_async, - sym_identifier, - anon_sym_struct, - anon_sym_EQ, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - 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_return, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [1962] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(328), 23, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_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, - ACTIONS(330), 28, - anon_sym_async, - sym_identifier, - anon_sym_struct, - anon_sym_EQ, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - 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_return, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [2021] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(332), 23, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_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, - ACTIONS(334), 28, - anon_sym_async, - sym_identifier, - anon_sym_struct, - anon_sym_EQ, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - 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_return, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [2080] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(336), 23, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_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, - ACTIONS(338), 28, - anon_sym_async, - sym_identifier, - anon_sym_struct, - anon_sym_EQ, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - 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_return, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [2139] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(340), 23, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_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, - ACTIONS(342), 28, - anon_sym_async, - sym_identifier, - anon_sym_struct, - anon_sym_EQ, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - 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_return, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [2198] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(226), 1, - anon_sym_LPAREN, - ACTIONS(228), 1, - anon_sym_EQ, - ACTIONS(230), 1, - anon_sym_COLON, - STATE(36), 1, - sym_assignment_operator, - ACTIONS(234), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(222), 18, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_asyncfor, - anon_sym_DASH_GT, - ACTIONS(224), 27, - anon_sym_async, - sym_identifier, - anon_sym_struct, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - 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_return, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [2267] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(344), 23, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_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, - ACTIONS(346), 28, - anon_sym_async, - sym_identifier, - anon_sym_struct, - anon_sym_EQ, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - 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_return, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [2326] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(348), 23, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_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, - ACTIONS(350), 28, - anon_sym_async, - sym_identifier, - anon_sym_struct, - anon_sym_EQ, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - 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_return, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [2385] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(226), 1, - anon_sym_LPAREN, - ACTIONS(230), 1, - anon_sym_COLON, - ACTIONS(222), 21, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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, - ACTIONS(224), 28, - anon_sym_async, - sym_identifier, - anon_sym_struct, - anon_sym_EQ, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - 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_return, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [2448] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(358), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_DASH_GT, - STATE(181), 1, - sym_math_operator, - STATE(191), 1, - sym_logic_operator, - ACTIONS(362), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(356), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(360), 6, - 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(352), 9, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(354), 23, - anon_sym_async, - sym_identifier, - anon_sym_struct, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [2518] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(182), 1, - sym_math_operator, - STATE(183), 1, - sym_logic_operator, ACTIONS(216), 22, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_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, + ACTIONS(254), 28, + anon_sym_async, sym_identifier, anon_sym_struct, anon_sym_EQ, @@ -8134,6 +6455,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_GT, anon_sym_LT, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, anon_sym_args, anon_sym_assert_equal, anon_sym_env, @@ -8143,19 +6469,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_output, anon_sym_random, anon_sym_string, - ACTIONS(214), 24, + [683] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(256), 22, + ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, sym_float, sym_string, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, - anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -8167,17 +6493,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, + anon_sym_asyncfor, anon_sym_DASH_GT, - [2578] = 6, - ACTIONS(3), 1, - sym__comment, - ACTIONS(366), 1, - anon_sym_DASH_GT, - STATE(182), 1, - sym_math_operator, - STATE(183), 1, - sym_logic_operator, - ACTIONS(220), 22, + ACTIONS(258), 28, + anon_sym_async, sym_identifier, anon_sym_struct, anon_sym_EQ, @@ -8191,6 +6510,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_GT, anon_sym_LT, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, anon_sym_args, anon_sym_assert_equal, anon_sym_env, @@ -8200,19 +6524,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_output, anon_sym_random, anon_sym_string, - ACTIONS(218), 23, + [741] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(260), 22, + ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, sym_float, sym_string, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, - anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -8224,16 +6548,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - [2640] = 6, - ACTIONS(3), 1, - sym__comment, - ACTIONS(366), 1, + anon_sym_asyncfor, anon_sym_DASH_GT, - STATE(182), 1, - sym_math_operator, - STATE(183), 1, - sym_logic_operator, - ACTIONS(210), 22, + ACTIONS(262), 28, + anon_sym_async, sym_identifier, anon_sym_struct, anon_sym_EQ, @@ -8247,6 +6565,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_GT, anon_sym_LT, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, anon_sym_args, anon_sym_assert_equal, anon_sym_env, @@ -8256,19 +6579,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_output, anon_sym_random, anon_sym_string, - ACTIONS(208), 23, + [799] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(264), 22, + ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, sym_float, sym_string, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, - anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -8280,35 +6603,672 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - [2702] = 11, - ACTIONS(3), 1, - sym__comment, - ACTIONS(358), 1, - anon_sym_DASH, - ACTIONS(364), 1, + anon_sym_asyncfor, anon_sym_DASH_GT, - ACTIONS(368), 1, - anon_sym_SEMI, - STATE(181), 1, - sym_math_operator, - STATE(191), 1, - sym_logic_operator, - ACTIONS(362), 2, + ACTIONS(266), 28, + anon_sym_async, + sym_identifier, + anon_sym_struct, + anon_sym_EQ, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, anon_sym_LT, - ACTIONS(356), 4, - anon_sym_PLUS, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [857] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(268), 22, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_COLON, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(360), 6, 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(352), 8, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_asyncfor, + anon_sym_DASH_GT, + ACTIONS(270), 28, + anon_sym_async, + sym_identifier, + anon_sym_struct, + anon_sym_EQ, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + 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_return, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [915] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(272), 22, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_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, + ACTIONS(274), 28, + anon_sym_async, + sym_identifier, + anon_sym_struct, + anon_sym_EQ, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + 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_return, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [973] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(276), 22, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_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, + ACTIONS(278), 28, + anon_sym_async, + sym_identifier, + anon_sym_struct, + anon_sym_EQ, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + 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_return, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [1031] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(280), 22, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_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, + ACTIONS(282), 28, + anon_sym_async, + sym_identifier, + anon_sym_struct, + anon_sym_EQ, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + 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_return, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [1089] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(284), 22, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_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, + ACTIONS(286), 28, + anon_sym_async, + sym_identifier, + anon_sym_struct, + anon_sym_EQ, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + 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_return, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [1147] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(288), 22, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_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, + ACTIONS(290), 28, + anon_sym_async, + sym_identifier, + anon_sym_struct, + anon_sym_EQ, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + 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_return, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [1205] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(292), 22, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_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, + ACTIONS(294), 28, + anon_sym_async, + sym_identifier, + anon_sym_struct, + anon_sym_EQ, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + 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_return, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [1263] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(296), 22, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_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, + ACTIONS(298), 28, + anon_sym_async, + sym_identifier, + anon_sym_struct, + anon_sym_EQ, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + 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_return, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [1321] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(224), 22, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_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, + ACTIONS(226), 28, + anon_sym_async, + sym_identifier, + anon_sym_struct, + anon_sym_EQ, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + 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_return, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [1379] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(216), 22, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_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, + ACTIONS(254), 28, + anon_sym_async, + sym_identifier, + anon_sym_struct, + anon_sym_EQ, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + 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_return, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [1437] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(304), 1, + anon_sym_DASH_GT, + STATE(146), 1, + sym_logic_operator, + STATE(174), 1, + sym_math_operator, + ACTIONS(300), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_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_asyncfor, + ACTIONS(302), 26, + anon_sym_async, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [1499] = 11, + ACTIONS(3), 1, + sym__comment, + ACTIONS(304), 1, + anon_sym_DASH_GT, + ACTIONS(310), 1, + anon_sym_SEMI, + ACTIONS(314), 1, + anon_sym_DASH, + STATE(146), 1, + sym_logic_operator, + STATE(174), 1, + sym_math_operator, + ACTIONS(318), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(312), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(316), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(306), 8, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACE, @@ -8317,7 +7277,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string, anon_sym_LBRACK, anon_sym_asyncfor, - ACTIONS(354), 23, + ACTIONS(308), 23, anon_sym_async, sym_identifier, anon_sym_struct, @@ -8341,19 +7301,238 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_output, anon_sym_random, anon_sym_string, - [2774] = 6, + [1571] = 10, ACTIONS(3), 1, sym__comment, - ACTIONS(364), 1, + ACTIONS(304), 1, anon_sym_DASH_GT, - STATE(181), 1, - sym_math_operator, - STATE(191), 1, + ACTIONS(314), 1, + anon_sym_DASH, + STATE(146), 1, sym_logic_operator, + STATE(174), 1, + sym_math_operator, + ACTIONS(318), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(312), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(316), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(306), 9, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(308), 23, + anon_sym_async, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [1641] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(304), 1, + anon_sym_DASH_GT, + STATE(146), 1, + sym_logic_operator, + STATE(174), 1, + sym_math_operator, + ACTIONS(320), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_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_asyncfor, + ACTIONS(322), 26, + anon_sym_async, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [1703] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(216), 1, + anon_sym_COLON, + ACTIONS(212), 20, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_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_asyncfor, + anon_sym_DASH_GT, + ACTIONS(324), 26, + anon_sym_async, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [1760] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(216), 1, + anon_sym_COLON, + ACTIONS(224), 20, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_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_asyncfor, + anon_sym_DASH_GT, + ACTIONS(226), 26, + anon_sym_async, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [1817] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(212), 1, + anon_sym_LPAREN, + ACTIONS(216), 1, + anon_sym_COLON, ACTIONS(208), 19, ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_RBRACE, sym_float, @@ -8370,6 +7549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_asyncfor, + anon_sym_DASH_GT, ACTIONS(210), 26, anon_sym_async, sym_identifier, @@ -8397,16 +7577,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_output, anon_sym_random, anon_sym_string, - [2836] = 6, + [1876] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(364), 1, + ACTIONS(326), 1, + anon_sym_DOT_DOT, + ACTIONS(226), 22, + sym_identifier, + anon_sym_struct, + anon_sym_EQ, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + ACTIONS(224), 23, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_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, - STATE(181), 1, - sym_math_operator, - STATE(191), 1, - sym_logic_operator, - ACTIONS(218), 19, + [1932] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(328), 20, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, @@ -8426,7 +7652,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_asyncfor, - ACTIONS(220), 26, + anon_sym_DASH_GT, + ACTIONS(330), 26, anon_sym_async, sym_identifier, anon_sym_struct, @@ -8453,67 +7680,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_output, anon_sym_random, anon_sym_string, - [2898] = 6, + [1986] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(370), 1, - anon_sym_DASH_GT, - STATE(194), 1, - sym_logic_operator, - STATE(202), 1, - sym_math_operator, - ACTIONS(218), 22, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_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, - ACTIONS(220), 22, - sym_identifier, - anon_sym_struct, - anon_sym_EQ, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [2959] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(230), 1, - anon_sym_COLON, - ACTIONS(226), 20, + ACTIONS(332), 20, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, @@ -8534,7 +7704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_asyncfor, anon_sym_DASH_GT, - ACTIONS(372), 26, + ACTIONS(334), 26, anon_sym_async, sym_identifier, anon_sym_struct, @@ -8561,14 +7731,470 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_output, anon_sym_random, anon_sym_string, - [3016] = 5, + [2040] = 3, ACTIONS(3), 1, sym__comment, - STATE(194), 1, - sym_logic_operator, - STATE(202), 1, - sym_math_operator, - ACTIONS(216), 22, + ACTIONS(336), 20, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_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_asyncfor, + anon_sym_DASH_GT, + ACTIONS(338), 26, + anon_sym_async, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [2094] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(340), 20, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_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_asyncfor, + anon_sym_DASH_GT, + ACTIONS(342), 26, + anon_sym_async, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [2148] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(344), 20, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_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_asyncfor, + anon_sym_DASH_GT, + ACTIONS(346), 26, + anon_sym_async, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [2202] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(212), 1, + anon_sym_LPAREN, + ACTIONS(208), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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_asyncfor, + anon_sym_DASH_GT, + ACTIONS(210), 26, + anon_sym_async, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [2258] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(348), 20, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_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_asyncfor, + anon_sym_DASH_GT, + ACTIONS(350), 26, + anon_sym_async, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [2312] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(352), 20, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_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_asyncfor, + anon_sym_DASH_GT, + ACTIONS(354), 26, + anon_sym_async, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [2366] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(356), 20, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_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_asyncfor, + anon_sym_DASH_GT, + ACTIONS(358), 26, + anon_sym_async, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [2420] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(360), 20, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_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_asyncfor, + anon_sym_DASH_GT, + ACTIONS(362), 26, + anon_sym_async, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [2474] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(364), 20, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_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_asyncfor, + anon_sym_DASH_GT, + ACTIONS(366), 26, + anon_sym_async, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [2528] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(270), 22, sym_identifier, anon_sym_struct, anon_sym_EQ, @@ -8591,7 +8217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_output, anon_sym_random, anon_sym_string, - ACTIONS(214), 23, + ACTIONS(268), 23, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -8615,39 +8241,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_DASH_GT, - [3075] = 6, + [2581] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(370), 1, - anon_sym_DASH_GT, - STATE(194), 1, - sym_logic_operator, - STATE(202), 1, - sym_math_operator, - ACTIONS(208), 22, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_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, - ACTIONS(210), 22, + ACTIONS(286), 22, sym_identifier, anon_sym_struct, anon_sym_EQ, @@ -8670,494 +8267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_output, anon_sym_random, anon_sym_string, - [3136] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(314), 22, - sym_identifier, - anon_sym_struct, - anon_sym_EQ, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - ACTIONS(312), 24, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_GT, - [3190] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(268), 22, - sym_identifier, - anon_sym_struct, - anon_sym_EQ, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - ACTIONS(266), 24, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_GT, - [3244] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(318), 22, - sym_identifier, - anon_sym_struct, - anon_sym_EQ, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - ACTIONS(316), 24, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_GT, - [3298] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(322), 22, - sym_identifier, - anon_sym_struct, - anon_sym_EQ, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - ACTIONS(320), 24, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_GT, - [3352] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(350), 22, - sym_identifier, - anon_sym_struct, - anon_sym_EQ, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - ACTIONS(348), 24, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_GT, - [3406] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(296), 22, - sym_identifier, - anon_sym_struct, - anon_sym_EQ, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - ACTIONS(294), 24, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_GT, - [3460] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(326), 22, - sym_identifier, - anon_sym_struct, - anon_sym_EQ, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - ACTIONS(324), 24, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_GT, - [3514] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(284), 22, - sym_identifier, - anon_sym_struct, - anon_sym_EQ, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - ACTIONS(282), 24, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_GT, - [3568] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(308), 22, - sym_identifier, - anon_sym_struct, - anon_sym_EQ, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - ACTIONS(230), 24, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_GT, - [3622] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(374), 1, - anon_sym_DOT_DOT, - ACTIONS(276), 22, - sym_identifier, - anon_sym_struct, - anon_sym_EQ, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - ACTIONS(274), 23, + ACTIONS(284), 23, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -9181,415 +8291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_DASH_GT, - [3678] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(280), 22, - sym_identifier, - anon_sym_struct, - anon_sym_EQ, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - ACTIONS(278), 24, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_GT, - [3732] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(240), 22, - sym_identifier, - anon_sym_struct, - anon_sym_EQ, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - ACTIONS(238), 24, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_GT, - [3786] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(264), 22, - sym_identifier, - anon_sym_struct, - anon_sym_EQ, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - ACTIONS(262), 24, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_GT, - [3840] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(256), 22, - sym_identifier, - anon_sym_struct, - anon_sym_EQ, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - ACTIONS(254), 24, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_GT, - [3894] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(252), 22, - sym_identifier, - anon_sym_struct, - anon_sym_EQ, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - ACTIONS(250), 24, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_GT, - [3948] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(292), 22, - sym_identifier, - anon_sym_struct, - anon_sym_EQ, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - ACTIONS(290), 24, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_GT, - [4002] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(342), 22, - sym_identifier, - anon_sym_struct, - anon_sym_EQ, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - ACTIONS(340), 24, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_GT, - [4056] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(346), 22, - sym_identifier, - anon_sym_struct, - anon_sym_EQ, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - ACTIONS(344), 24, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_GT, - [4110] = 3, + [2634] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(248), 22, @@ -9615,7 +8317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_output, anon_sym_random, anon_sym_string, - ACTIONS(246), 24, + ACTIONS(246), 23, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -9627,7 +8329,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -9640,10 +8341,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_DASH_GT, - [4164] = 3, + [2687] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(306), 22, + ACTIONS(252), 22, sym_identifier, anon_sym_struct, anon_sym_EQ, @@ -9666,7 +8367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_output, anon_sym_random, anon_sym_string, - ACTIONS(304), 24, + ACTIONS(250), 23, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -9678,7 +8379,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -9691,12 +8391,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_DASH_GT, - [4218] = 4, + [2740] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(226), 1, - anon_sym_LPAREN, - ACTIONS(224), 22, + ACTIONS(240), 22, sym_identifier, anon_sym_struct, anon_sym_EQ, @@ -9719,8 +8417,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_output, anon_sym_random, anon_sym_string, - ACTIONS(222), 23, + ACTIONS(238), 23, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_LBRACE, @@ -9730,7 +8429,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -9743,10 +8441,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_DASH_GT, - [4274] = 3, + [2793] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(260), 22, + ACTIONS(290), 22, sym_identifier, anon_sym_struct, anon_sym_EQ, @@ -9769,7 +8467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_output, anon_sym_random, anon_sym_string, - ACTIONS(258), 24, + ACTIONS(288), 23, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -9781,7 +8479,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -9794,10 +8491,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_DASH_GT, - [4328] = 3, + [2846] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(300), 22, + ACTIONS(274), 22, sym_identifier, anon_sym_struct, anon_sym_EQ, @@ -9820,7 +8517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_output, anon_sym_random, anon_sym_string, - ACTIONS(298), 24, + ACTIONS(272), 23, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -9832,7 +8529,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -9845,7 +8541,558 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_DASH_GT, - [4382] = 3, + [2899] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(282), 22, + sym_identifier, + anon_sym_struct, + anon_sym_EQ, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + ACTIONS(280), 23, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_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, + [2952] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(254), 22, + sym_identifier, + anon_sym_struct, + anon_sym_EQ, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + ACTIONS(216), 23, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_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, + [3005] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(266), 22, + sym_identifier, + anon_sym_struct, + anon_sym_EQ, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + ACTIONS(264), 23, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_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, + [3058] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(262), 22, + sym_identifier, + anon_sym_struct, + anon_sym_EQ, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + ACTIONS(260), 23, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_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, + [3111] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(254), 22, + sym_identifier, + anon_sym_struct, + anon_sym_EQ, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + ACTIONS(216), 23, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_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, + [3164] = 25, + ACTIONS(3), 1, + sym__comment, + ACTIONS(368), 1, + sym_identifier, + ACTIONS(371), 1, + anon_sym_LPAREN, + ACTIONS(374), 1, + anon_sym_LBRACE, + ACTIONS(377), 1, + anon_sym_RBRACE, + ACTIONS(379), 1, + anon_sym_struct, + ACTIONS(382), 1, + anon_sym_new, + ACTIONS(385), 1, + sym_integer, + ACTIONS(394), 1, + anon_sym_LBRACK, + ACTIONS(397), 1, + anon_sym_none, + ACTIONS(400), 1, + anon_sym_some, + ACTIONS(403), 1, + anon_sym_STAR, + STATE(84), 1, + sym__function_expression_kind, + STATE(103), 1, + aux_sym_match_repeat1, + STATE(262), 1, + sym_range, + STATE(297), 1, + sym_expression, + STATE(397), 1, + sym_function_expression, + STATE(416), 1, + sym_index_expression, + ACTIONS(388), 2, + sym_float, + sym_string, + ACTIONS(391), 2, + anon_sym_true, + anon_sym_false, + STATE(263), 2, + sym_value, + sym_index, + STATE(264), 2, + sym_function_call, + sym_yield, + STATE(278), 4, + sym__expression_kind, + sym_new, + sym_math, + sym_logic, + STATE(230), 7, + sym_structure, + sym_boolean, + sym_list, + sym_map, + sym_option, + sym_function, + sym_built_in_value, + ACTIONS(406), 9, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [3261] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(226), 22, + sym_identifier, + anon_sym_struct, + anon_sym_EQ, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + ACTIONS(224), 23, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_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, + [3314] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(212), 1, + anon_sym_LPAREN, + ACTIONS(214), 1, + anon_sym_EQ, + ACTIONS(216), 1, + anon_sym_COLON, + ACTIONS(218), 1, + anon_sym_LT, + STATE(32), 1, + sym_assignment_operator, + STATE(334), 1, + sym_type_specification, + ACTIONS(220), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(208), 17, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DASH_GT, + ACTIONS(210), 20, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [3381] = 25, + ACTIONS(3), 1, + sym__comment, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(182), 1, + anon_sym_struct, + ACTIONS(184), 1, + anon_sym_new, + ACTIONS(186), 1, + sym_integer, + ACTIONS(192), 1, + anon_sym_LBRACK, + ACTIONS(194), 1, + anon_sym_none, + ACTIONS(196), 1, + anon_sym_some, + ACTIONS(409), 1, + sym_identifier, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(413), 1, + anon_sym_RBRACE, + ACTIONS(415), 1, + anon_sym_STAR, + STATE(84), 1, + sym__function_expression_kind, + STATE(103), 1, + aux_sym_match_repeat1, + STATE(262), 1, + sym_range, + STATE(297), 1, + sym_expression, + STATE(397), 1, + sym_function_expression, + STATE(416), 1, + sym_index_expression, + ACTIONS(188), 2, + sym_float, + sym_string, + ACTIONS(190), 2, + anon_sym_true, + anon_sym_false, + STATE(263), 2, + sym_value, + sym_index, + STATE(264), 2, + sym_function_call, + sym_yield, + STATE(278), 4, + sym__expression_kind, + sym_new, + sym_math, + sym_logic, + STATE(230), 7, + sym_structure, + sym_boolean, + sym_list, + sym_map, + sym_option, + sym_function, + sym_built_in_value, + ACTIONS(206), 9, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [3478] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(294), 22, + sym_identifier, + anon_sym_struct, + anon_sym_EQ, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + ACTIONS(292), 23, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_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, + [3531] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(244), 22, @@ -9871,7 +9118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_output, anon_sym_random, anon_sym_string, - ACTIONS(242), 24, + ACTIONS(242), 23, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -9883,7 +9130,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -9896,687 +9142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_DASH_GT, - [4436] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(338), 22, - sym_identifier, - anon_sym_struct, - anon_sym_EQ, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - ACTIONS(336), 24, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_GT, - [4490] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(288), 22, - sym_identifier, - anon_sym_struct, - anon_sym_EQ, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - ACTIONS(286), 24, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_GT, - [4544] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(272), 22, - sym_identifier, - anon_sym_struct, - anon_sym_EQ, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - ACTIONS(270), 24, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_GT, - [4598] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(226), 1, - anon_sym_LPAREN, - ACTIONS(230), 1, - anon_sym_COLON, - ACTIONS(222), 22, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_GT, - ACTIONS(224), 22, - sym_identifier, - anon_sym_struct, - anon_sym_EQ, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [4656] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(276), 22, - sym_identifier, - anon_sym_struct, - anon_sym_EQ, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - ACTIONS(274), 24, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_GT, - [4710] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(330), 22, - sym_identifier, - anon_sym_struct, - anon_sym_EQ, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - ACTIONS(328), 24, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_GT, - [4764] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(334), 22, - sym_identifier, - anon_sym_struct, - anon_sym_EQ, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - ACTIONS(332), 24, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_GT, - [4818] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(226), 1, - anon_sym_LPAREN, - ACTIONS(228), 1, - anon_sym_EQ, - ACTIONS(230), 1, - anon_sym_COLON, - ACTIONS(232), 1, - anon_sym_LT, - STATE(29), 1, - sym_assignment_operator, - STATE(391), 1, - sym_type_specification, - ACTIONS(234), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(222), 17, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DASH_GT, - ACTIONS(224), 20, - sym_identifier, - anon_sym_struct, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [4885] = 24, - ACTIONS(3), 1, - sym__comment, - ACTIONS(376), 1, - sym_identifier, - ACTIONS(379), 1, - anon_sym_LPAREN, - ACTIONS(382), 1, - anon_sym_LBRACE, - ACTIONS(385), 1, - anon_sym_RBRACE, - ACTIONS(387), 1, - anon_sym_struct, - ACTIONS(390), 1, - anon_sym_new, - ACTIONS(393), 1, - sym_integer, - ACTIONS(402), 1, - anon_sym_LBRACK, - ACTIONS(405), 1, - anon_sym_none, - ACTIONS(408), 1, - anon_sym_some, - ACTIONS(411), 1, - anon_sym_STAR, - STATE(71), 1, - sym__function_expression_kind, - STATE(131), 1, - aux_sym_match_repeat1, - STATE(352), 1, - sym_expression, - STATE(464), 1, - sym_index_expression, - STATE(471), 1, - sym_function_expression, - ACTIONS(396), 2, - sym_float, - sym_string, - ACTIONS(399), 2, - anon_sym_true, - anon_sym_false, - STATE(265), 2, - sym_value, - sym_index, - STATE(277), 2, - sym_function_call, - sym_yield, - STATE(288), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(279), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(414), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [4979] = 24, - ACTIONS(3), 1, - sym__comment, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(144), 1, - anon_sym_struct, - ACTIONS(146), 1, - anon_sym_new, - ACTIONS(148), 1, - sym_integer, - ACTIONS(154), 1, - anon_sym_LBRACK, - ACTIONS(156), 1, - anon_sym_none, - ACTIONS(158), 1, - anon_sym_some, - ACTIONS(417), 1, - sym_identifier, - ACTIONS(419), 1, - anon_sym_LBRACE, - ACTIONS(421), 1, - anon_sym_RBRACE, - ACTIONS(423), 1, - anon_sym_STAR, - STATE(71), 1, - sym__function_expression_kind, - STATE(131), 1, - aux_sym_match_repeat1, - STATE(352), 1, - sym_expression, - STATE(464), 1, - sym_index_expression, - STATE(471), 1, - sym_function_expression, - ACTIONS(150), 2, - sym_float, - sym_string, - ACTIONS(152), 2, - anon_sym_true, - anon_sym_false, - STATE(265), 2, - sym_value, - sym_index, - STATE(277), 2, - sym_function_call, - sym_yield, - STATE(288), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(279), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(172), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [5073] = 24, - ACTIONS(3), 1, - sym__comment, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(144), 1, - anon_sym_struct, - ACTIONS(146), 1, - anon_sym_new, - ACTIONS(148), 1, - sym_integer, - ACTIONS(154), 1, - anon_sym_LBRACK, - ACTIONS(156), 1, - anon_sym_none, - ACTIONS(158), 1, - anon_sym_some, - ACTIONS(417), 1, - sym_identifier, - ACTIONS(419), 1, - anon_sym_LBRACE, - ACTIONS(423), 1, - anon_sym_STAR, - ACTIONS(425), 1, - anon_sym_RBRACE, - STATE(71), 1, - sym__function_expression_kind, - STATE(131), 1, - aux_sym_match_repeat1, - STATE(352), 1, - sym_expression, - STATE(464), 1, - sym_index_expression, - STATE(471), 1, - sym_function_expression, - ACTIONS(150), 2, - sym_float, - sym_string, - ACTIONS(152), 2, - anon_sym_true, - anon_sym_false, - STATE(265), 2, - sym_value, - sym_index, - STATE(277), 2, - sym_function_call, - sym_yield, - STATE(288), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(279), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(172), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [5167] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(226), 1, - anon_sym_LPAREN, - ACTIONS(228), 1, - anon_sym_EQ, - ACTIONS(230), 1, - anon_sym_COLON, - STATE(31), 1, - sym_assignment_operator, - ACTIONS(234), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(222), 17, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DASH_GT, - ACTIONS(224), 21, - sym_identifier, - anon_sym_struct, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [5229] = 23, + [3584] = 25, ACTIONS(3), 1, sym__comment, ACTIONS(176), 1, @@ -10593,21 +9159,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_none, ACTIONS(196), 1, anon_sym_some, - ACTIONS(427), 1, + ACTIONS(409), 1, sym_identifier, - ACTIONS(429), 1, - anon_sym_RPAREN, - ACTIONS(431), 1, + ACTIONS(411), 1, anon_sym_LBRACE, - STATE(71), 1, + ACTIONS(415), 1, + anon_sym_STAR, + ACTIONS(417), 1, + anon_sym_RBRACE, + STATE(84), 1, sym__function_expression_kind, - STATE(157), 1, - aux_sym__expression_list, - STATE(222), 1, + STATE(103), 1, + aux_sym_match_repeat1, + STATE(262), 1, + sym_range, + STATE(297), 1, sym_expression, - STATE(457), 1, + STATE(397), 1, sym_function_expression, - STATE(476), 1, + STATE(416), 1, sym_index_expression, ACTIONS(188), 2, sym_float, @@ -10615,18 +9185,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(190), 2, anon_sym_true, anon_sym_false, - STATE(119), 2, - sym_function_call, - sym_yield, - STATE(126), 2, + STATE(263), 2, sym_value, sym_index, - STATE(125), 4, + STATE(264), 2, + sym_function_call, + sym_yield, + STATE(278), 4, sym__expression_kind, sym_new, sym_math, sym_logic, - STATE(129), 7, + STATE(230), 7, sym_structure, sym_boolean, sym_list, @@ -10644,110 +9214,1204 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_output, anon_sym_random, anon_sym_string, - [5320] = 23, + [3681] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(433), 1, + ACTIONS(278), 22, sym_identifier, - ACTIONS(436), 1, - anon_sym_LPAREN, - ACTIONS(439), 1, - anon_sym_LBRACE, - ACTIONS(442), 1, anon_sym_struct, - ACTIONS(445), 1, + anon_sym_EQ, anon_sym_new, - ACTIONS(448), 1, sym_integer, - ACTIONS(457), 1, - anon_sym_LBRACK, - ACTIONS(460), 1, - anon_sym_RBRACK, - ACTIONS(462), 1, + anon_sym_true, + anon_sym_false, anon_sym_none, - ACTIONS(465), 1, anon_sym_some, - STATE(71), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + ACTIONS(276), 23, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_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, + [3734] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(236), 22, + sym_identifier, + anon_sym_struct, + anon_sym_EQ, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + ACTIONS(234), 23, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_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, + [3787] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(298), 22, + sym_identifier, + anon_sym_struct, + anon_sym_EQ, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + ACTIONS(296), 23, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_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, + [3840] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(258), 22, + sym_identifier, + anon_sym_struct, + anon_sym_EQ, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + ACTIONS(256), 23, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_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, + [3893] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(232), 22, + sym_identifier, + anon_sym_struct, + anon_sym_EQ, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + ACTIONS(230), 23, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_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, + [3946] = 24, + ACTIONS(3), 1, + sym__comment, + ACTIONS(138), 1, + anon_sym_LPAREN, + ACTIONS(144), 1, + anon_sym_struct, + ACTIONS(146), 1, + anon_sym_new, + ACTIONS(148), 1, + sym_integer, + ACTIONS(154), 1, + anon_sym_LBRACK, + ACTIONS(156), 1, + anon_sym_none, + ACTIONS(158), 1, + anon_sym_some, + ACTIONS(419), 1, + sym_identifier, + ACTIONS(421), 1, + anon_sym_RPAREN, + ACTIONS(423), 1, + anon_sym_LBRACE, + STATE(84), 1, + sym__function_expression_kind, + STATE(139), 1, + aux_sym__expression_list, + STATE(154), 1, + sym_range, + STATE(188), 1, + sym_expression, + STATE(414), 1, + sym_function_expression, + STATE(415), 1, + sym_index_expression, + ACTIONS(150), 2, + sym_float, + sym_string, + ACTIONS(152), 2, + anon_sym_true, + anon_sym_false, + STATE(155), 2, + sym_value, + sym_index, + STATE(184), 2, + sym_function_call, + sym_yield, + STATE(176), 4, + sym__expression_kind, + sym_new, + sym_math, + sym_logic, + STATE(104), 7, + sym_structure, + sym_boolean, + sym_list, + sym_map, + sym_option, + sym_function, + sym_built_in_value, + ACTIONS(172), 9, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [4040] = 25, + ACTIONS(3), 1, + sym__comment, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(182), 1, + anon_sym_struct, + ACTIONS(184), 1, + anon_sym_new, + ACTIONS(186), 1, + sym_integer, + ACTIONS(192), 1, + anon_sym_LBRACK, + ACTIONS(194), 1, + anon_sym_none, + ACTIONS(196), 1, + anon_sym_some, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(425), 1, + sym_identifier, + ACTIONS(427), 1, + anon_sym_RPAREN, + STATE(262), 1, + sym_range, + STATE(264), 1, + sym_yield, + STATE(314), 1, + sym_function_call, + STATE(315), 1, + sym_expression, + STATE(354), 1, + aux_sym_function_repeat1, + STATE(394), 1, + sym__function_expression_kind, + STATE(397), 1, + sym_function_expression, + STATE(416), 1, + sym_index_expression, + ACTIONS(188), 2, + sym_float, + sym_string, + ACTIONS(190), 2, + anon_sym_true, + anon_sym_false, + STATE(263), 2, + sym_value, + sym_index, + STATE(324), 4, + sym__expression_kind, + sym_new, + sym_math, + sym_logic, + STATE(230), 7, + sym_structure, + sym_boolean, + sym_list, + sym_map, + sym_option, + sym_function, + sym_built_in_value, + ACTIONS(206), 9, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [4136] = 24, + ACTIONS(3), 1, + sym__comment, + ACTIONS(138), 1, + anon_sym_LPAREN, + ACTIONS(144), 1, + anon_sym_struct, + ACTIONS(146), 1, + anon_sym_new, + ACTIONS(148), 1, + sym_integer, + ACTIONS(154), 1, + anon_sym_LBRACK, + ACTIONS(156), 1, + anon_sym_none, + ACTIONS(158), 1, + anon_sym_some, + ACTIONS(419), 1, + sym_identifier, + ACTIONS(423), 1, + anon_sym_LBRACE, + ACTIONS(429), 1, + anon_sym_RPAREN, + STATE(84), 1, + sym__function_expression_kind, + STATE(139), 1, + aux_sym__expression_list, + STATE(154), 1, + sym_range, + STATE(188), 1, + sym_expression, + STATE(414), 1, + sym_function_expression, + STATE(415), 1, + sym_index_expression, + ACTIONS(150), 2, + sym_float, + sym_string, + ACTIONS(152), 2, + anon_sym_true, + anon_sym_false, + STATE(155), 2, + sym_value, + sym_index, + STATE(184), 2, + sym_function_call, + sym_yield, + STATE(176), 4, + sym__expression_kind, + sym_new, + sym_math, + sym_logic, + STATE(104), 7, + sym_structure, + sym_boolean, + sym_list, + sym_map, + sym_option, + sym_function, + sym_built_in_value, + ACTIONS(172), 9, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [4230] = 24, + ACTIONS(3), 1, + sym__comment, + ACTIONS(138), 1, + anon_sym_LPAREN, + ACTIONS(144), 1, + anon_sym_struct, + ACTIONS(146), 1, + anon_sym_new, + ACTIONS(148), 1, + sym_integer, + ACTIONS(154), 1, + anon_sym_LBRACK, + ACTIONS(156), 1, + anon_sym_none, + ACTIONS(158), 1, + anon_sym_some, + ACTIONS(419), 1, + sym_identifier, + ACTIONS(423), 1, + anon_sym_LBRACE, + ACTIONS(431), 1, + anon_sym_RPAREN, + STATE(84), 1, + sym__function_expression_kind, + STATE(139), 1, + aux_sym__expression_list, + STATE(154), 1, + sym_range, + STATE(188), 1, + sym_expression, + STATE(414), 1, + sym_function_expression, + STATE(415), 1, + sym_index_expression, + ACTIONS(150), 2, + sym_float, + sym_string, + ACTIONS(152), 2, + anon_sym_true, + anon_sym_false, + STATE(155), 2, + sym_value, + sym_index, + STATE(184), 2, + sym_function_call, + sym_yield, + STATE(176), 4, + sym__expression_kind, + sym_new, + sym_math, + sym_logic, + STATE(104), 7, + sym_structure, + sym_boolean, + sym_list, + sym_map, + sym_option, + sym_function, + sym_built_in_value, + ACTIONS(172), 9, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [4324] = 24, + ACTIONS(3), 1, + sym__comment, + ACTIONS(138), 1, + anon_sym_LPAREN, + ACTIONS(144), 1, + anon_sym_struct, + ACTIONS(146), 1, + anon_sym_new, + ACTIONS(148), 1, + sym_integer, + ACTIONS(154), 1, + anon_sym_LBRACK, + ACTIONS(156), 1, + anon_sym_none, + ACTIONS(158), 1, + anon_sym_some, + ACTIONS(419), 1, + sym_identifier, + ACTIONS(423), 1, + anon_sym_LBRACE, + ACTIONS(433), 1, + anon_sym_RBRACK, + STATE(84), 1, + sym__function_expression_kind, + STATE(131), 1, + aux_sym_list_repeat1, + STATE(154), 1, + sym_range, + STATE(189), 1, + sym_expression, + STATE(414), 1, + sym_function_expression, + STATE(415), 1, + sym_index_expression, + ACTIONS(150), 2, + sym_float, + sym_string, + ACTIONS(152), 2, + anon_sym_true, + anon_sym_false, + STATE(155), 2, + sym_value, + sym_index, + STATE(184), 2, + sym_function_call, + sym_yield, + STATE(176), 4, + sym__expression_kind, + sym_new, + sym_math, + sym_logic, + STATE(104), 7, + sym_structure, + sym_boolean, + sym_list, + sym_map, + sym_option, + sym_function, + sym_built_in_value, + ACTIONS(172), 9, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [4418] = 25, + ACTIONS(3), 1, + sym__comment, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(182), 1, + anon_sym_struct, + ACTIONS(184), 1, + anon_sym_new, + ACTIONS(186), 1, + sym_integer, + ACTIONS(192), 1, + anon_sym_LBRACK, + ACTIONS(194), 1, + anon_sym_none, + ACTIONS(196), 1, + anon_sym_some, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(425), 1, + sym_identifier, + ACTIONS(435), 1, + anon_sym_RPAREN, + STATE(262), 1, + sym_range, + STATE(264), 1, + sym_yield, + STATE(314), 1, + sym_function_call, + STATE(315), 1, + sym_expression, + STATE(352), 1, + aux_sym_function_repeat1, + STATE(394), 1, + sym__function_expression_kind, + STATE(397), 1, + sym_function_expression, + STATE(416), 1, + sym_index_expression, + ACTIONS(188), 2, + sym_float, + sym_string, + ACTIONS(190), 2, + anon_sym_true, + anon_sym_false, + STATE(263), 2, + sym_value, + sym_index, + STATE(323), 4, + sym__expression_kind, + sym_new, + sym_math, + sym_logic, + STATE(230), 7, + sym_structure, + sym_boolean, + sym_list, + sym_map, + sym_option, + sym_function, + sym_built_in_value, + ACTIONS(206), 9, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [4514] = 25, + ACTIONS(3), 1, + sym__comment, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(182), 1, + anon_sym_struct, + ACTIONS(184), 1, + anon_sym_new, + ACTIONS(186), 1, + sym_integer, + ACTIONS(192), 1, + anon_sym_LBRACK, + ACTIONS(194), 1, + anon_sym_none, + ACTIONS(196), 1, + anon_sym_some, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(425), 1, + sym_identifier, + ACTIONS(435), 1, + anon_sym_RPAREN, + STATE(84), 1, + sym__function_expression_kind, + STATE(262), 1, + sym_range, + STATE(264), 1, + sym_yield, + STATE(309), 1, + sym_function_call, + STATE(320), 1, + sym_expression, + STATE(352), 1, + aux_sym_function_repeat1, + STATE(397), 1, + sym_function_expression, + STATE(416), 1, + sym_index_expression, + ACTIONS(188), 2, + sym_float, + sym_string, + ACTIONS(190), 2, + anon_sym_true, + anon_sym_false, + STATE(263), 2, + sym_value, + sym_index, + STATE(278), 4, + sym__expression_kind, + sym_new, + sym_math, + sym_logic, + STATE(230), 7, + sym_structure, + sym_boolean, + sym_list, + sym_map, + sym_option, + sym_function, + sym_built_in_value, + ACTIONS(206), 9, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [4610] = 25, + ACTIONS(3), 1, + sym__comment, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(182), 1, + anon_sym_struct, + ACTIONS(184), 1, + anon_sym_new, + ACTIONS(186), 1, + sym_integer, + ACTIONS(192), 1, + anon_sym_LBRACK, + ACTIONS(194), 1, + anon_sym_none, + ACTIONS(196), 1, + anon_sym_some, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(425), 1, + sym_identifier, + ACTIONS(437), 1, + anon_sym_RPAREN, + STATE(84), 1, + sym__function_expression_kind, + STATE(262), 1, + sym_range, + STATE(264), 1, + sym_yield, + STATE(312), 1, + sym_function_call, + STATE(320), 1, + sym_expression, + STATE(351), 1, + aux_sym_function_repeat1, + STATE(397), 1, + sym_function_expression, + STATE(416), 1, + sym_index_expression, + ACTIONS(188), 2, + sym_float, + sym_string, + ACTIONS(190), 2, + anon_sym_true, + anon_sym_false, + STATE(263), 2, + sym_value, + sym_index, + STATE(278), 4, + sym__expression_kind, + sym_new, + sym_math, + sym_logic, + STATE(230), 7, + sym_structure, + sym_boolean, + sym_list, + sym_map, + sym_option, + sym_function, + sym_built_in_value, + ACTIONS(206), 9, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [4706] = 24, + ACTIONS(3), 1, + sym__comment, + ACTIONS(138), 1, + anon_sym_LPAREN, + ACTIONS(144), 1, + anon_sym_struct, + ACTIONS(146), 1, + anon_sym_new, + ACTIONS(148), 1, + sym_integer, + ACTIONS(154), 1, + anon_sym_LBRACK, + ACTIONS(156), 1, + anon_sym_none, + ACTIONS(158), 1, + anon_sym_some, + ACTIONS(419), 1, + sym_identifier, + ACTIONS(423), 1, + anon_sym_LBRACE, + ACTIONS(439), 1, + anon_sym_RPAREN, + STATE(84), 1, + sym__function_expression_kind, + STATE(117), 1, + aux_sym__expression_list, + STATE(154), 1, + sym_range, + STATE(188), 1, + sym_expression, + STATE(414), 1, + sym_function_expression, + STATE(415), 1, + sym_index_expression, + ACTIONS(150), 2, + sym_float, + sym_string, + ACTIONS(152), 2, + anon_sym_true, + anon_sym_false, + STATE(155), 2, + sym_value, + sym_index, + STATE(184), 2, + sym_function_call, + sym_yield, + STATE(176), 4, + sym__expression_kind, + sym_new, + sym_math, + sym_logic, + STATE(104), 7, + sym_structure, + sym_boolean, + sym_list, + sym_map, + sym_option, + sym_function, + sym_built_in_value, + ACTIONS(172), 9, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [4800] = 24, + ACTIONS(3), 1, + sym__comment, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(182), 1, + anon_sym_struct, + ACTIONS(184), 1, + anon_sym_new, + ACTIONS(186), 1, + sym_integer, + ACTIONS(192), 1, + anon_sym_LBRACK, + ACTIONS(194), 1, + anon_sym_none, + ACTIONS(196), 1, + anon_sym_some, + ACTIONS(409), 1, + sym_identifier, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(415), 1, + anon_sym_STAR, + STATE(84), 1, + sym__function_expression_kind, + STATE(109), 1, + aux_sym_match_repeat1, + STATE(262), 1, + sym_range, + STATE(297), 1, + sym_expression, + STATE(397), 1, + sym_function_expression, + STATE(416), 1, + sym_index_expression, + ACTIONS(188), 2, + sym_float, + sym_string, + ACTIONS(190), 2, + anon_sym_true, + anon_sym_false, + STATE(263), 2, + sym_value, + sym_index, + STATE(264), 2, + sym_function_call, + sym_yield, + STATE(278), 4, + sym__expression_kind, + sym_new, + sym_math, + sym_logic, + STATE(230), 7, + sym_structure, + sym_boolean, + sym_list, + sym_map, + sym_option, + sym_function, + sym_built_in_value, + ACTIONS(206), 9, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [4894] = 24, + ACTIONS(3), 1, + sym__comment, + ACTIONS(138), 1, + anon_sym_LPAREN, + ACTIONS(144), 1, + anon_sym_struct, + ACTIONS(146), 1, + anon_sym_new, + ACTIONS(148), 1, + sym_integer, + ACTIONS(154), 1, + anon_sym_LBRACK, + ACTIONS(156), 1, + anon_sym_none, + ACTIONS(158), 1, + anon_sym_some, + ACTIONS(419), 1, + sym_identifier, + ACTIONS(423), 1, + anon_sym_LBRACE, + ACTIONS(441), 1, + anon_sym_RPAREN, + STATE(84), 1, + sym__function_expression_kind, + STATE(139), 1, + aux_sym__expression_list, + STATE(154), 1, + sym_range, + STATE(188), 1, + sym_expression, + STATE(414), 1, + sym_function_expression, + STATE(415), 1, + sym_index_expression, + ACTIONS(150), 2, + sym_float, + sym_string, + ACTIONS(152), 2, + anon_sym_true, + anon_sym_false, + STATE(155), 2, + sym_value, + sym_index, + STATE(184), 2, + sym_function_call, + sym_yield, + STATE(176), 4, + sym__expression_kind, + sym_new, + sym_math, + sym_logic, + STATE(104), 7, + sym_structure, + sym_boolean, + sym_list, + sym_map, + sym_option, + sym_function, + sym_built_in_value, + ACTIONS(172), 9, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [4988] = 24, + ACTIONS(3), 1, + sym__comment, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(182), 1, + anon_sym_struct, + ACTIONS(184), 1, + anon_sym_new, + ACTIONS(186), 1, + sym_integer, + ACTIONS(192), 1, + anon_sym_LBRACK, + ACTIONS(194), 1, + anon_sym_none, + ACTIONS(196), 1, + anon_sym_some, + ACTIONS(409), 1, + sym_identifier, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(415), 1, + anon_sym_STAR, + STATE(84), 1, + sym__function_expression_kind, + STATE(106), 1, + aux_sym_match_repeat1, + STATE(262), 1, + sym_range, + STATE(297), 1, + sym_expression, + STATE(397), 1, + sym_function_expression, + STATE(416), 1, + sym_index_expression, + ACTIONS(188), 2, + sym_float, + sym_string, + ACTIONS(190), 2, + anon_sym_true, + anon_sym_false, + STATE(263), 2, + sym_value, + sym_index, + STATE(264), 2, + sym_function_call, + sym_yield, + STATE(278), 4, + sym__expression_kind, + sym_new, + sym_math, + sym_logic, + STATE(230), 7, + sym_structure, + sym_boolean, + sym_list, + sym_map, + sym_option, + sym_function, + sym_built_in_value, + ACTIONS(206), 9, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [5082] = 24, + ACTIONS(3), 1, + sym__comment, + ACTIONS(138), 1, + anon_sym_LPAREN, + ACTIONS(144), 1, + anon_sym_struct, + ACTIONS(146), 1, + anon_sym_new, + ACTIONS(148), 1, + sym_integer, + ACTIONS(154), 1, + anon_sym_LBRACK, + ACTIONS(156), 1, + anon_sym_none, + ACTIONS(158), 1, + anon_sym_some, + ACTIONS(419), 1, + sym_identifier, + ACTIONS(423), 1, + anon_sym_LBRACE, + ACTIONS(443), 1, + anon_sym_RPAREN, + STATE(84), 1, + sym__function_expression_kind, + STATE(125), 1, + aux_sym__expression_list, + STATE(154), 1, + sym_range, + STATE(188), 1, + sym_expression, + STATE(414), 1, + sym_function_expression, + STATE(415), 1, + sym_index_expression, + ACTIONS(150), 2, + sym_float, + sym_string, + ACTIONS(152), 2, + anon_sym_true, + anon_sym_false, + STATE(155), 2, + sym_value, + sym_index, + STATE(184), 2, + sym_function_call, + sym_yield, + STATE(176), 4, + sym__expression_kind, + sym_new, + sym_math, + sym_logic, + STATE(104), 7, + sym_structure, + sym_boolean, + sym_list, + sym_map, + sym_option, + sym_function, + sym_built_in_value, + ACTIONS(172), 9, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [5176] = 24, + ACTIONS(3), 1, + sym__comment, + ACTIONS(138), 1, + anon_sym_LPAREN, + ACTIONS(144), 1, + anon_sym_struct, + ACTIONS(146), 1, + anon_sym_new, + ACTIONS(148), 1, + sym_integer, + ACTIONS(154), 1, + anon_sym_LBRACK, + ACTIONS(156), 1, + anon_sym_none, + ACTIONS(158), 1, + anon_sym_some, + ACTIONS(419), 1, + sym_identifier, + ACTIONS(423), 1, + anon_sym_LBRACE, + ACTIONS(445), 1, + anon_sym_RBRACK, + STATE(84), 1, sym__function_expression_kind, STATE(136), 1, aux_sym_list_repeat1, - STATE(223), 1, + STATE(154), 1, + sym_range, + STATE(189), 1, sym_expression, - STATE(457), 1, + STATE(414), 1, sym_function_expression, - STATE(476), 1, - sym_index_expression, - ACTIONS(451), 2, - sym_float, - sym_string, - ACTIONS(454), 2, - anon_sym_true, - anon_sym_false, - STATE(119), 2, - sym_function_call, - sym_yield, - STATE(126), 2, - sym_value, - sym_index, - STATE(125), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(129), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(468), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [5411] = 24, - ACTIONS(3), 1, - sym__comment, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(144), 1, - anon_sym_struct, - ACTIONS(146), 1, - anon_sym_new, - ACTIONS(148), 1, - sym_integer, - ACTIONS(154), 1, - anon_sym_LBRACK, - ACTIONS(156), 1, - anon_sym_none, - ACTIONS(158), 1, - anon_sym_some, - ACTIONS(419), 1, - anon_sym_LBRACE, - ACTIONS(471), 1, - sym_identifier, - ACTIONS(473), 1, - anon_sym_RPAREN, - STATE(277), 1, - sym_yield, - STATE(366), 1, - sym_expression, - STATE(376), 1, - sym_function_call, - STATE(426), 1, - aux_sym_function_repeat1, - STATE(435), 1, - sym__function_expression_kind, - STATE(471), 1, - sym_function_expression, - STATE(488), 1, + STATE(415), 1, sym_index_expression, ACTIONS(150), 2, sym_float, @@ -10755,15 +10419,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(152), 2, anon_sym_true, anon_sym_false, - STATE(265), 2, + STATE(155), 2, sym_value, sym_index, - STATE(377), 4, + STATE(184), 2, + sym_function_call, + sym_yield, + STATE(176), 4, sym__expression_kind, sym_new, sym_math, sym_logic, - STATE(279), 7, + STATE(104), 7, sym_structure, sym_boolean, sym_list, @@ -10781,7 +10448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_output, anon_sym_random, anon_sym_string, - [5504] = 23, + [5270] = 25, ACTIONS(3), 1, sym__comment, ACTIONS(176), 1, @@ -10798,21 +10465,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_none, ACTIONS(196), 1, anon_sym_some, - ACTIONS(427), 1, - sym_identifier, - ACTIONS(431), 1, + ACTIONS(411), 1, anon_sym_LBRACE, - ACTIONS(475), 1, + ACTIONS(425), 1, + sym_identifier, + ACTIONS(437), 1, anon_sym_RPAREN, - STATE(71), 1, - sym__function_expression_kind, - STATE(146), 1, - aux_sym__expression_list, - STATE(222), 1, + STATE(262), 1, + sym_range, + STATE(264), 1, + sym_yield, + STATE(314), 1, + sym_function_call, + STATE(315), 1, sym_expression, - STATE(457), 1, + STATE(351), 1, + aux_sym_function_repeat1, + STATE(394), 1, + sym__function_expression_kind, + STATE(397), 1, sym_function_expression, - STATE(476), 1, + STATE(416), 1, sym_index_expression, ACTIONS(188), 2, sym_float, @@ -10820,18 +10493,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(190), 2, anon_sym_true, anon_sym_false, - STATE(119), 2, - sym_function_call, - sym_yield, - STATE(126), 2, + STATE(263), 2, sym_value, sym_index, - STATE(125), 4, + STATE(321), 4, sym__expression_kind, sym_new, sym_math, sym_logic, - STATE(129), 7, + STATE(230), 7, sym_structure, sym_boolean, sym_list, @@ -10849,7 +10519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_output, anon_sym_random, anon_sym_string, - [5595] = 23, + [5366] = 25, ACTIONS(3), 1, sym__comment, ACTIONS(176), 1, @@ -10866,176 +10536,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_none, ACTIONS(196), 1, anon_sym_some, - ACTIONS(427), 1, - sym_identifier, - ACTIONS(431), 1, + ACTIONS(411), 1, anon_sym_LBRACE, - ACTIONS(477), 1, + ACTIONS(425), 1, + sym_identifier, + ACTIONS(427), 1, + anon_sym_RPAREN, + STATE(84), 1, + sym__function_expression_kind, + STATE(262), 1, + sym_range, + STATE(264), 1, + sym_yield, + STATE(317), 1, + sym_function_call, + STATE(320), 1, + sym_expression, + STATE(354), 1, + aux_sym_function_repeat1, + STATE(397), 1, + sym_function_expression, + STATE(416), 1, + sym_index_expression, + ACTIONS(188), 2, + sym_float, + sym_string, + ACTIONS(190), 2, + anon_sym_true, + anon_sym_false, + STATE(263), 2, + sym_value, + sym_index, + STATE(278), 4, + sym__expression_kind, + sym_new, + sym_math, + sym_logic, + STATE(230), 7, + sym_structure, + sym_boolean, + sym_list, + sym_map, + sym_option, + sym_function, + sym_built_in_value, + ACTIONS(206), 9, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [5462] = 24, + ACTIONS(3), 1, + sym__comment, + ACTIONS(447), 1, + sym_identifier, + ACTIONS(450), 1, + anon_sym_LPAREN, + ACTIONS(453), 1, + anon_sym_LBRACE, + ACTIONS(456), 1, + anon_sym_struct, + ACTIONS(459), 1, + anon_sym_new, + ACTIONS(462), 1, + sym_integer, + ACTIONS(471), 1, + anon_sym_LBRACK, + ACTIONS(474), 1, anon_sym_RBRACK, - STATE(71), 1, - sym__function_expression_kind, - STATE(151), 1, - aux_sym_list_repeat1, - STATE(223), 1, - sym_expression, - STATE(457), 1, - sym_function_expression, - STATE(476), 1, - sym_index_expression, - ACTIONS(188), 2, - sym_float, - sym_string, - ACTIONS(190), 2, - anon_sym_true, - anon_sym_false, - STATE(119), 2, - sym_function_call, - sym_yield, - STATE(126), 2, - sym_value, - sym_index, - STATE(125), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(129), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(206), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [5686] = 23, - ACTIONS(3), 1, - sym__comment, - ACTIONS(176), 1, - anon_sym_LPAREN, - ACTIONS(182), 1, - anon_sym_struct, - ACTIONS(184), 1, - anon_sym_new, - ACTIONS(186), 1, - sym_integer, - ACTIONS(192), 1, - anon_sym_LBRACK, - ACTIONS(194), 1, + ACTIONS(476), 1, anon_sym_none, - ACTIONS(196), 1, - anon_sym_some, - ACTIONS(427), 1, - sym_identifier, - ACTIONS(431), 1, - anon_sym_LBRACE, ACTIONS(479), 1, - anon_sym_RPAREN, - STATE(71), 1, - sym__function_expression_kind, - STATE(157), 1, - aux_sym__expression_list, - STATE(222), 1, - sym_expression, - STATE(457), 1, - sym_function_expression, - STATE(476), 1, - sym_index_expression, - ACTIONS(188), 2, - sym_float, - sym_string, - ACTIONS(190), 2, - anon_sym_true, - anon_sym_false, - STATE(119), 2, - sym_function_call, - sym_yield, - STATE(126), 2, - sym_value, - sym_index, - STATE(125), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(129), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(206), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [5777] = 23, - ACTIONS(3), 1, - sym__comment, - ACTIONS(176), 1, - anon_sym_LPAREN, - ACTIONS(182), 1, - anon_sym_struct, - ACTIONS(184), 1, - anon_sym_new, - ACTIONS(186), 1, - sym_integer, - ACTIONS(192), 1, - anon_sym_LBRACK, - ACTIONS(194), 1, - anon_sym_none, - ACTIONS(196), 1, anon_sym_some, - ACTIONS(427), 1, - sym_identifier, - ACTIONS(431), 1, - anon_sym_LBRACE, - ACTIONS(481), 1, - anon_sym_RPAREN, - STATE(71), 1, + STATE(84), 1, sym__function_expression_kind, - STATE(157), 1, - aux_sym__expression_list, - STATE(222), 1, + STATE(131), 1, + aux_sym_list_repeat1, + STATE(154), 1, + sym_range, + STATE(189), 1, sym_expression, - STATE(457), 1, + STATE(414), 1, sym_function_expression, - STATE(476), 1, + STATE(415), 1, sym_index_expression, - ACTIONS(188), 2, + ACTIONS(465), 2, sym_float, sym_string, - ACTIONS(190), 2, + ACTIONS(468), 2, anon_sym_true, anon_sym_false, - STATE(119), 2, - sym_function_call, - sym_yield, - STATE(126), 2, + STATE(155), 2, sym_value, sym_index, - STATE(125), 4, + STATE(184), 2, + sym_function_call, + sym_yield, + STATE(176), 4, sym__expression_kind, sym_new, sym_math, sym_logic, - STATE(129), 7, + STATE(104), 7, sym_structure, sym_boolean, sym_list, @@ -11043,7 +10650,7 @@ static const uint16_t ts_small_parse_table[] = { sym_option, sym_function, sym_built_in_value, - ACTIONS(206), 9, + ACTIONS(482), 9, anon_sym_args, anon_sym_assert_equal, anon_sym_env, @@ -11053,7 +10660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_output, anon_sym_random, anon_sym_string, - [5868] = 24, + [5556] = 24, ACTIONS(3), 1, sym__comment, ACTIONS(138), 1, @@ -11071,40 +10678,41 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(158), 1, anon_sym_some, ACTIONS(419), 1, - anon_sym_LBRACE, - ACTIONS(471), 1, sym_identifier, - ACTIONS(483), 1, + ACTIONS(423), 1, + anon_sym_LBRACE, + ACTIONS(485), 1, anon_sym_RPAREN, - STATE(71), 1, + STATE(84), 1, sym__function_expression_kind, - STATE(277), 1, - sym_yield, - STATE(358), 1, - sym_function_call, - STATE(362), 1, + STATE(139), 1, + aux_sym__expression_list, + STATE(154), 1, + sym_range, + STATE(188), 1, sym_expression, - STATE(422), 1, - aux_sym_function_repeat1, - STATE(464), 1, - sym_index_expression, - STATE(471), 1, + STATE(414), 1, sym_function_expression, + STATE(415), 1, + sym_index_expression, ACTIONS(150), 2, sym_float, sym_string, ACTIONS(152), 2, anon_sym_true, anon_sym_false, - STATE(265), 2, + STATE(155), 2, sym_value, sym_index, - STATE(288), 4, + STATE(184), 2, + sym_function_call, + sym_yield, + STATE(176), 4, sym__expression_kind, sym_new, sym_math, sym_logic, - STATE(279), 7, + STATE(104), 7, sym_structure, sym_boolean, sym_list, @@ -11122,7 +10730,203 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_output, anon_sym_random, anon_sym_string, - [5961] = 23, + [5650] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(212), 1, + anon_sym_LPAREN, + ACTIONS(214), 1, + anon_sym_EQ, + ACTIONS(216), 1, + anon_sym_COLON, + STATE(27), 1, + sym_assignment_operator, + ACTIONS(220), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(208), 17, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DASH_GT, + ACTIONS(210), 21, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [5712] = 25, + ACTIONS(3), 1, + sym__comment, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(182), 1, + anon_sym_struct, + ACTIONS(184), 1, + anon_sym_new, + ACTIONS(186), 1, + sym_integer, + ACTIONS(192), 1, + anon_sym_LBRACK, + ACTIONS(194), 1, + anon_sym_none, + ACTIONS(196), 1, + anon_sym_some, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(425), 1, + sym_identifier, + ACTIONS(427), 1, + anon_sym_RPAREN, + STATE(262), 1, + sym_range, + STATE(264), 1, + sym_yield, + STATE(314), 1, + sym_function_call, + STATE(315), 1, + sym_expression, + STATE(354), 1, + aux_sym_function_repeat1, + STATE(394), 1, + sym__function_expression_kind, + STATE(397), 1, + sym_function_expression, + STATE(416), 1, + sym_index_expression, + ACTIONS(188), 2, + sym_float, + sym_string, + ACTIONS(190), 2, + anon_sym_true, + anon_sym_false, + STATE(263), 2, + sym_value, + sym_index, + STATE(323), 4, + sym__expression_kind, + sym_new, + sym_math, + sym_logic, + STATE(230), 7, + sym_structure, + sym_boolean, + sym_list, + sym_map, + sym_option, + sym_function, + sym_built_in_value, + ACTIONS(206), 9, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [5808] = 25, + ACTIONS(3), 1, + sym__comment, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(182), 1, + anon_sym_struct, + ACTIONS(184), 1, + anon_sym_new, + ACTIONS(186), 1, + sym_integer, + ACTIONS(192), 1, + anon_sym_LBRACK, + ACTIONS(194), 1, + anon_sym_none, + ACTIONS(196), 1, + anon_sym_some, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(425), 1, + sym_identifier, + ACTIONS(435), 1, + anon_sym_RPAREN, + STATE(262), 1, + sym_range, + STATE(264), 1, + sym_yield, + STATE(314), 1, + sym_function_call, + STATE(315), 1, + sym_expression, + STATE(352), 1, + aux_sym_function_repeat1, + STATE(389), 1, + sym__function_expression_kind, + STATE(397), 1, + sym_function_expression, + STATE(416), 1, + sym_index_expression, + ACTIONS(188), 2, + sym_float, + sym_string, + ACTIONS(190), 2, + anon_sym_true, + anon_sym_false, + STATE(263), 2, + sym_value, + sym_index, + STATE(323), 4, + sym__expression_kind, + sym_new, + sym_math, + sym_logic, + STATE(230), 7, + sym_structure, + sym_boolean, + sym_list, + sym_map, + sym_option, + sym_function, + sym_built_in_value, + ACTIONS(206), 9, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [5904] = 24, ACTIONS(3), 1, sym__comment, ACTIONS(138), 1, @@ -11139,40 +10943,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_none, ACTIONS(158), 1, anon_sym_some, - ACTIONS(417), 1, - sym_identifier, ACTIONS(419), 1, - anon_sym_LBRACE, + sym_identifier, ACTIONS(423), 1, - anon_sym_STAR, - STATE(71), 1, + anon_sym_LBRACE, + ACTIONS(487), 1, + anon_sym_RBRACK, + STATE(84), 1, + sym__function_expression_kind, + STATE(131), 1, + aux_sym_list_repeat1, + STATE(154), 1, + sym_range, + STATE(189), 1, + sym_expression, + STATE(414), 1, + sym_function_expression, + STATE(415), 1, + sym_index_expression, + ACTIONS(150), 2, + sym_float, + sym_string, + ACTIONS(152), 2, + anon_sym_true, + anon_sym_false, + STATE(155), 2, + sym_value, + sym_index, + STATE(184), 2, + sym_function_call, + sym_yield, + STATE(176), 4, + sym__expression_kind, + sym_new, + sym_math, + sym_logic, + STATE(104), 7, + sym_structure, + sym_boolean, + sym_list, + sym_map, + sym_option, + sym_function, + sym_built_in_value, + ACTIONS(172), 9, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [5998] = 24, + ACTIONS(3), 1, + sym__comment, + ACTIONS(138), 1, + anon_sym_LPAREN, + ACTIONS(144), 1, + anon_sym_struct, + ACTIONS(146), 1, + anon_sym_new, + ACTIONS(148), 1, + sym_integer, + ACTIONS(154), 1, + anon_sym_LBRACK, + ACTIONS(156), 1, + anon_sym_none, + ACTIONS(158), 1, + anon_sym_some, + ACTIONS(419), 1, + sym_identifier, + ACTIONS(423), 1, + anon_sym_LBRACE, + ACTIONS(489), 1, + anon_sym_RPAREN, + STATE(84), 1, sym__function_expression_kind, STATE(132), 1, - aux_sym_match_repeat1, - STATE(352), 1, + aux_sym__expression_list, + STATE(154), 1, + sym_range, + STATE(188), 1, sym_expression, - STATE(464), 1, - sym_index_expression, - STATE(471), 1, + STATE(414), 1, sym_function_expression, + STATE(415), 1, + sym_index_expression, ACTIONS(150), 2, sym_float, sym_string, ACTIONS(152), 2, anon_sym_true, anon_sym_false, - STATE(265), 2, + STATE(155), 2, sym_value, sym_index, - STATE(277), 2, + STATE(184), 2, sym_function_call, sym_yield, - STATE(288), 4, + STATE(176), 4, sym__expression_kind, sym_new, sym_math, sym_logic, - STATE(279), 7, + STATE(104), 7, sym_structure, sym_boolean, sym_list, @@ -11190,16 +11066,437 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_output, anon_sym_random, anon_sym_string, - [6052] = 6, + [6092] = 24, ACTIONS(3), 1, sym__comment, - ACTIONS(485), 1, + ACTIONS(138), 1, + anon_sym_LPAREN, + ACTIONS(144), 1, + anon_sym_struct, + ACTIONS(146), 1, + anon_sym_new, + ACTIONS(148), 1, + sym_integer, + ACTIONS(154), 1, + anon_sym_LBRACK, + ACTIONS(156), 1, + anon_sym_none, + ACTIONS(158), 1, + anon_sym_some, + ACTIONS(419), 1, + sym_identifier, + ACTIONS(423), 1, + anon_sym_LBRACE, + ACTIONS(491), 1, + anon_sym_RBRACK, + STATE(84), 1, + sym__function_expression_kind, + STATE(131), 1, + aux_sym_list_repeat1, + STATE(154), 1, + sym_range, + STATE(189), 1, + sym_expression, + STATE(414), 1, + sym_function_expression, + STATE(415), 1, + sym_index_expression, + ACTIONS(150), 2, + sym_float, + sym_string, + ACTIONS(152), 2, + anon_sym_true, + anon_sym_false, + STATE(155), 2, + sym_value, + sym_index, + STATE(184), 2, + sym_function_call, + sym_yield, + STATE(176), 4, + sym__expression_kind, + sym_new, + sym_math, + sym_logic, + STATE(104), 7, + sym_structure, + sym_boolean, + sym_list, + sym_map, + sym_option, + sym_function, + sym_built_in_value, + ACTIONS(172), 9, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [6186] = 24, + ACTIONS(3), 1, + sym__comment, + ACTIONS(493), 1, + sym_identifier, + ACTIONS(496), 1, + anon_sym_LPAREN, + ACTIONS(499), 1, + anon_sym_RPAREN, + ACTIONS(501), 1, + anon_sym_LBRACE, + ACTIONS(504), 1, + anon_sym_struct, + ACTIONS(507), 1, + anon_sym_new, + ACTIONS(510), 1, + sym_integer, + ACTIONS(519), 1, + anon_sym_LBRACK, + ACTIONS(522), 1, + anon_sym_none, + ACTIONS(525), 1, + anon_sym_some, + STATE(84), 1, + sym__function_expression_kind, + STATE(139), 1, + aux_sym__expression_list, + STATE(154), 1, + sym_range, + STATE(188), 1, + sym_expression, + STATE(414), 1, + sym_function_expression, + STATE(415), 1, + sym_index_expression, + ACTIONS(513), 2, + sym_float, + sym_string, + ACTIONS(516), 2, + anon_sym_true, + anon_sym_false, + STATE(155), 2, + sym_value, + sym_index, + STATE(184), 2, + sym_function_call, + sym_yield, + STATE(176), 4, + sym__expression_kind, + sym_new, + sym_math, + sym_logic, + STATE(104), 7, + sym_structure, + sym_boolean, + sym_list, + sym_map, + sym_option, + sym_function, + sym_built_in_value, + ACTIONS(528), 9, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [6280] = 24, + ACTIONS(3), 1, + sym__comment, + ACTIONS(138), 1, + anon_sym_LPAREN, + ACTIONS(144), 1, + anon_sym_struct, + ACTIONS(146), 1, + anon_sym_new, + ACTIONS(148), 1, + sym_integer, + ACTIONS(154), 1, + anon_sym_LBRACK, + ACTIONS(156), 1, + anon_sym_none, + ACTIONS(158), 1, + anon_sym_some, + ACTIONS(419), 1, + sym_identifier, + ACTIONS(423), 1, + anon_sym_LBRACE, + ACTIONS(531), 1, + anon_sym_RBRACK, + STATE(84), 1, + sym__function_expression_kind, + STATE(138), 1, + aux_sym_list_repeat1, + STATE(154), 1, + sym_range, + STATE(189), 1, + sym_expression, + STATE(414), 1, + sym_function_expression, + STATE(415), 1, + sym_index_expression, + ACTIONS(150), 2, + sym_float, + sym_string, + ACTIONS(152), 2, + anon_sym_true, + anon_sym_false, + STATE(155), 2, + sym_value, + sym_index, + STATE(184), 2, + sym_function_call, + sym_yield, + STATE(176), 4, + sym__expression_kind, + sym_new, + sym_math, + sym_logic, + STATE(104), 7, + sym_structure, + sym_boolean, + sym_list, + sym_map, + sym_option, + sym_function, + sym_built_in_value, + ACTIONS(172), 9, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [6374] = 24, + ACTIONS(3), 1, + sym__comment, + ACTIONS(138), 1, + anon_sym_LPAREN, + ACTIONS(144), 1, + anon_sym_struct, + ACTIONS(146), 1, + anon_sym_new, + ACTIONS(148), 1, + sym_integer, + ACTIONS(154), 1, + anon_sym_LBRACK, + ACTIONS(156), 1, + anon_sym_none, + ACTIONS(158), 1, + anon_sym_some, + ACTIONS(419), 1, + sym_identifier, + ACTIONS(423), 1, + anon_sym_LBRACE, + ACTIONS(533), 1, + anon_sym_RPAREN, + STATE(84), 1, + sym__function_expression_kind, + STATE(139), 1, + aux_sym__expression_list, + STATE(154), 1, + sym_range, + STATE(188), 1, + sym_expression, + STATE(414), 1, + sym_function_expression, + STATE(415), 1, + sym_index_expression, + ACTIONS(150), 2, + sym_float, + sym_string, + ACTIONS(152), 2, + anon_sym_true, + anon_sym_false, + STATE(155), 2, + sym_value, + sym_index, + STATE(184), 2, + sym_function_call, + sym_yield, + STATE(176), 4, + sym__expression_kind, + sym_new, + sym_math, + sym_logic, + STATE(104), 7, + sym_structure, + sym_boolean, + sym_list, + sym_map, + sym_option, + sym_function, + sym_built_in_value, + ACTIONS(172), 9, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [6468] = 25, + ACTIONS(3), 1, + sym__comment, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(182), 1, + anon_sym_struct, + ACTIONS(184), 1, + anon_sym_new, + ACTIONS(186), 1, + sym_integer, + ACTIONS(192), 1, + anon_sym_LBRACK, + ACTIONS(194), 1, + anon_sym_none, + ACTIONS(196), 1, + anon_sym_some, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(425), 1, + sym_identifier, + ACTIONS(437), 1, + anon_sym_RPAREN, + STATE(262), 1, + sym_range, + STATE(264), 1, + sym_yield, + STATE(314), 1, + sym_function_call, + STATE(315), 1, + sym_expression, + STATE(351), 1, + aux_sym_function_repeat1, + STATE(380), 1, + sym__function_expression_kind, + STATE(397), 1, + sym_function_expression, + STATE(416), 1, + sym_index_expression, + ACTIONS(188), 2, + sym_float, + sym_string, + ACTIONS(190), 2, + anon_sym_true, + anon_sym_false, + STATE(263), 2, + sym_value, + sym_index, + STATE(323), 4, + sym__expression_kind, + sym_new, + sym_math, + sym_logic, + STATE(230), 7, + sym_structure, + sym_boolean, + sym_list, + sym_map, + sym_option, + sym_function, + sym_built_in_value, + ACTIONS(206), 9, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [6564] = 24, + ACTIONS(3), 1, + sym__comment, + ACTIONS(138), 1, + anon_sym_LPAREN, + ACTIONS(144), 1, + anon_sym_struct, + ACTIONS(146), 1, + anon_sym_new, + ACTIONS(148), 1, + sym_integer, + ACTIONS(154), 1, + anon_sym_LBRACK, + ACTIONS(156), 1, + anon_sym_none, + ACTIONS(158), 1, + anon_sym_some, + ACTIONS(419), 1, + sym_identifier, + ACTIONS(423), 1, + anon_sym_LBRACE, + ACTIONS(535), 1, + anon_sym_RBRACK, + STATE(84), 1, + sym__function_expression_kind, + STATE(119), 1, + aux_sym_list_repeat1, + STATE(154), 1, + sym_range, + STATE(189), 1, + sym_expression, + STATE(414), 1, + sym_function_expression, + STATE(415), 1, + sym_index_expression, + ACTIONS(150), 2, + sym_float, + sym_string, + ACTIONS(152), 2, + anon_sym_true, + anon_sym_false, + STATE(155), 2, + sym_value, + sym_index, + STATE(184), 2, + sym_function_call, + sym_yield, + STATE(176), 4, + sym__expression_kind, + sym_new, + sym_math, + sym_logic, + STATE(104), 7, + sym_structure, + sym_boolean, + sym_list, + sym_map, + sym_option, + sym_function, + sym_built_in_value, + ACTIONS(172), 9, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [6658] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(537), 1, anon_sym_DASH_GT, - STATE(167), 1, - sym_math_operator, - STATE(199), 1, + STATE(148), 1, sym_logic_operator, - ACTIONS(218), 20, + STATE(151), 1, + sym_math_operator, + ACTIONS(300), 20, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -11220,7 +11517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(220), 20, + ACTIONS(302), 20, sym_identifier, anon_sym_struct, anon_sym_new, @@ -11241,16 +11538,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_output, anon_sym_random, anon_sym_string, - [6109] = 6, + [6715] = 6, ACTIONS(3), 1, sym__comment, - ACTIONS(485), 1, + ACTIONS(537), 1, anon_sym_DASH_GT, - STATE(167), 1, - sym_math_operator, - STATE(199), 1, + STATE(148), 1, sym_logic_operator, - ACTIONS(208), 20, + STATE(151), 1, + sym_math_operator, + ACTIONS(320), 20, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -11271,6 +11568,629 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(322), 20, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [6772] = 22, + ACTIONS(3), 1, + sym__comment, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + anon_sym_struct, + ACTIONS(15), 1, + anon_sym_new, + ACTIONS(17), 1, + sym_integer, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_none, + ACTIONS(27), 1, + anon_sym_some, + ACTIONS(539), 1, + sym_identifier, + ACTIONS(541), 1, + anon_sym_LBRACE, + STATE(72), 1, + sym_expression, + STATE(77), 1, + sym_range, + STATE(84), 1, + sym__function_expression_kind, + STATE(419), 1, + sym_function_expression, + STATE(421), 1, + sym_index_expression, + ACTIONS(19), 2, + sym_float, + sym_string, + ACTIONS(21), 2, + anon_sym_true, + anon_sym_false, + STATE(78), 2, + sym_value, + sym_index, + STATE(85), 2, + sym_function_call, + sym_yield, + STATE(90), 4, + sym__expression_kind, + sym_new, + sym_math, + sym_logic, + STATE(70), 7, + sym_structure, + sym_boolean, + sym_list, + sym_map, + sym_option, + sym_function, + sym_built_in_value, + ACTIONS(41), 9, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [6860] = 21, + ACTIONS(3), 1, + sym__comment, + ACTIONS(13), 1, + anon_sym_struct, + ACTIONS(17), 1, + sym_integer, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_none, + ACTIONS(27), 1, + anon_sym_some, + ACTIONS(184), 1, + anon_sym_new, + ACTIONS(541), 1, + anon_sym_LBRACE, + ACTIONS(543), 1, + sym_identifier, + ACTIONS(545), 1, + anon_sym_LPAREN, + STATE(77), 1, + sym_range, + STATE(87), 1, + sym_function_expression, + STATE(318), 1, + sym_expression, + STATE(421), 1, + sym_index_expression, + ACTIONS(19), 2, + sym_float, + sym_string, + ACTIONS(21), 2, + anon_sym_true, + anon_sym_false, + STATE(76), 2, + sym_value, + sym_index, + STATE(84), 3, + sym__function_expression_kind, + sym_function_call, + sym_yield, + STATE(278), 4, + sym__expression_kind, + sym_new, + sym_math, + sym_logic, + STATE(70), 7, + sym_structure, + sym_boolean, + sym_list, + sym_map, + sym_option, + sym_function, + sym_built_in_value, + ACTIONS(41), 9, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [6946] = 22, + ACTIONS(3), 1, + sym__comment, + ACTIONS(138), 1, + anon_sym_LPAREN, + ACTIONS(144), 1, + anon_sym_struct, + ACTIONS(146), 1, + anon_sym_new, + ACTIONS(148), 1, + sym_integer, + ACTIONS(154), 1, + anon_sym_LBRACK, + ACTIONS(156), 1, + anon_sym_none, + ACTIONS(158), 1, + anon_sym_some, + ACTIONS(419), 1, + sym_identifier, + ACTIONS(423), 1, + anon_sym_LBRACE, + STATE(84), 1, + sym__function_expression_kind, + STATE(144), 1, + sym_expression, + STATE(154), 1, + sym_range, + STATE(414), 1, + sym_function_expression, + STATE(415), 1, + sym_index_expression, + ACTIONS(150), 2, + sym_float, + sym_string, + ACTIONS(152), 2, + anon_sym_true, + anon_sym_false, + STATE(155), 2, + sym_value, + sym_index, + STATE(184), 2, + sym_function_call, + sym_yield, + STATE(176), 4, + sym__expression_kind, + sym_new, + sym_math, + sym_logic, + STATE(104), 7, + sym_structure, + sym_boolean, + sym_list, + sym_map, + sym_option, + sym_function, + sym_built_in_value, + ACTIONS(172), 9, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [7034] = 22, + ACTIONS(3), 1, + sym__comment, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(182), 1, + anon_sym_struct, + ACTIONS(184), 1, + anon_sym_new, + ACTIONS(186), 1, + sym_integer, + ACTIONS(192), 1, + anon_sym_LBRACK, + ACTIONS(194), 1, + anon_sym_none, + ACTIONS(196), 1, + anon_sym_some, + ACTIONS(409), 1, + sym_identifier, + ACTIONS(411), 1, + anon_sym_LBRACE, + STATE(84), 1, + sym__function_expression_kind, + STATE(262), 1, + sym_range, + STATE(273), 1, + sym_expression, + STATE(397), 1, + sym_function_expression, + STATE(416), 1, + sym_index_expression, + ACTIONS(188), 2, + sym_float, + sym_string, + ACTIONS(190), 2, + anon_sym_true, + anon_sym_false, + STATE(263), 2, + sym_value, + sym_index, + STATE(264), 2, + sym_function_call, + sym_yield, + STATE(278), 4, + sym__expression_kind, + sym_new, + sym_math, + sym_logic, + STATE(230), 7, + sym_structure, + sym_boolean, + sym_list, + sym_map, + sym_option, + sym_function, + sym_built_in_value, + ACTIONS(206), 9, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [7122] = 22, + ACTIONS(3), 1, + sym__comment, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(182), 1, + anon_sym_struct, + ACTIONS(184), 1, + anon_sym_new, + ACTIONS(186), 1, + sym_integer, + ACTIONS(192), 1, + anon_sym_LBRACK, + ACTIONS(194), 1, + anon_sym_none, + ACTIONS(196), 1, + anon_sym_some, + ACTIONS(409), 1, + sym_identifier, + ACTIONS(411), 1, + anon_sym_LBRACE, + STATE(84), 1, + sym__function_expression_kind, + STATE(262), 1, + sym_range, + STATE(274), 1, + sym_expression, + STATE(397), 1, + sym_function_expression, + STATE(416), 1, + sym_index_expression, + ACTIONS(188), 2, + sym_float, + sym_string, + ACTIONS(190), 2, + anon_sym_true, + anon_sym_false, + STATE(263), 2, + sym_value, + sym_index, + STATE(264), 2, + sym_function_call, + sym_yield, + STATE(278), 4, + sym__expression_kind, + sym_new, + sym_math, + sym_logic, + STATE(230), 7, + sym_structure, + sym_boolean, + sym_list, + sym_map, + sym_option, + sym_function, + sym_built_in_value, + ACTIONS(206), 9, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [7210] = 22, + ACTIONS(3), 1, + sym__comment, + ACTIONS(138), 1, + anon_sym_LPAREN, + ACTIONS(144), 1, + anon_sym_struct, + ACTIONS(146), 1, + anon_sym_new, + ACTIONS(148), 1, + sym_integer, + ACTIONS(154), 1, + anon_sym_LBRACK, + ACTIONS(156), 1, + anon_sym_none, + ACTIONS(158), 1, + anon_sym_some, + ACTIONS(419), 1, + sym_identifier, + ACTIONS(423), 1, + anon_sym_LBRACE, + STATE(84), 1, + sym__function_expression_kind, + STATE(145), 1, + sym_expression, + STATE(154), 1, + sym_range, + STATE(414), 1, + sym_function_expression, + STATE(415), 1, + sym_index_expression, + ACTIONS(150), 2, + sym_float, + sym_string, + ACTIONS(152), 2, + anon_sym_true, + anon_sym_false, + STATE(155), 2, + sym_value, + sym_index, + STATE(184), 2, + sym_function_call, + sym_yield, + STATE(176), 4, + sym__expression_kind, + sym_new, + sym_math, + sym_logic, + STATE(104), 7, + sym_structure, + sym_boolean, + sym_list, + sym_map, + sym_option, + sym_function, + sym_built_in_value, + ACTIONS(172), 9, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [7298] = 21, + ACTIONS(3), 1, + sym__comment, + ACTIONS(144), 1, + anon_sym_struct, + ACTIONS(148), 1, + sym_integer, + ACTIONS(154), 1, + anon_sym_LBRACK, + ACTIONS(156), 1, + anon_sym_none, + ACTIONS(158), 1, + anon_sym_some, + ACTIONS(184), 1, + anon_sym_new, + ACTIONS(423), 1, + anon_sym_LBRACE, + ACTIONS(547), 1, + sym_identifier, + ACTIONS(549), 1, + anon_sym_LPAREN, + STATE(154), 1, + sym_range, + STATE(187), 1, + sym_function_expression, + STATE(313), 1, + sym_expression, + STATE(415), 1, + sym_index_expression, + ACTIONS(150), 2, + sym_float, + sym_string, + ACTIONS(152), 2, + anon_sym_true, + anon_sym_false, + STATE(163), 2, + sym_value, + sym_index, + STATE(186), 3, + sym__function_expression_kind, + sym_function_call, + sym_yield, + STATE(278), 4, + sym__expression_kind, + sym_new, + sym_math, + sym_logic, + STATE(104), 7, + sym_structure, + sym_boolean, + sym_list, + sym_map, + sym_option, + sym_function, + sym_built_in_value, + ACTIONS(172), 9, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [7384] = 22, + ACTIONS(3), 1, + sym__comment, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(182), 1, + anon_sym_struct, + ACTIONS(184), 1, + anon_sym_new, + ACTIONS(186), 1, + sym_integer, + ACTIONS(192), 1, + anon_sym_LBRACK, + ACTIONS(194), 1, + anon_sym_none, + ACTIONS(196), 1, + anon_sym_some, + ACTIONS(409), 1, + sym_identifier, + ACTIONS(411), 1, + anon_sym_LBRACE, + STATE(84), 1, + sym__function_expression_kind, + STATE(262), 1, + sym_range, + STATE(283), 1, + sym_expression, + STATE(397), 1, + sym_function_expression, + STATE(416), 1, + sym_index_expression, + ACTIONS(188), 2, + sym_float, + sym_string, + ACTIONS(190), 2, + anon_sym_true, + anon_sym_false, + STATE(263), 2, + sym_value, + sym_index, + STATE(264), 2, + sym_function_call, + sym_yield, + STATE(278), 4, + sym__expression_kind, + sym_new, + sym_math, + sym_logic, + STATE(230), 7, + sym_structure, + sym_boolean, + sym_list, + sym_map, + sym_option, + sym_function, + sym_built_in_value, + ACTIONS(206), 9, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [7472] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(216), 1, + anon_sym_COLON, + ACTIONS(226), 20, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + ACTIONS(224), 21, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_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, + [7524] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(212), 1, + anon_sym_LPAREN, + ACTIONS(216), 1, + anon_sym_COLON, + ACTIONS(208), 20, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_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, ACTIONS(210), 20, sym_identifier, anon_sym_struct, @@ -11292,7 +12212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_output, anon_sym_random, anon_sym_string, - [6166] = 23, + [7578] = 22, ACTIONS(3), 1, sym__comment, ACTIONS(176), 1, @@ -11309,3078 +12229,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_none, ACTIONS(196), 1, anon_sym_some, - ACTIONS(427), 1, + ACTIONS(409), 1, sym_identifier, - ACTIONS(431), 1, + ACTIONS(411), 1, anon_sym_LBRACE, - ACTIONS(487), 1, - anon_sym_RPAREN, - STATE(71), 1, - sym__function_expression_kind, - STATE(157), 1, - aux_sym__expression_list, - STATE(222), 1, - sym_expression, - STATE(457), 1, - sym_function_expression, - STATE(476), 1, - sym_index_expression, - ACTIONS(188), 2, - sym_float, - sym_string, - ACTIONS(190), 2, - anon_sym_true, - anon_sym_false, - STATE(119), 2, - sym_function_call, - sym_yield, - STATE(126), 2, - sym_value, - sym_index, - STATE(125), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(129), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(206), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [6257] = 24, - ACTIONS(3), 1, - sym__comment, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(144), 1, - anon_sym_struct, - ACTIONS(146), 1, - anon_sym_new, - ACTIONS(148), 1, - sym_integer, - ACTIONS(154), 1, - anon_sym_LBRACK, - ACTIONS(156), 1, - anon_sym_none, - ACTIONS(158), 1, - anon_sym_some, - ACTIONS(419), 1, - anon_sym_LBRACE, - ACTIONS(471), 1, - sym_identifier, - ACTIONS(489), 1, - anon_sym_RPAREN, - STATE(277), 1, - sym_yield, - STATE(366), 1, - sym_expression, - STATE(376), 1, - sym_function_call, - STATE(423), 1, - aux_sym_function_repeat1, - STATE(435), 1, - sym__function_expression_kind, - STATE(471), 1, - sym_function_expression, - STATE(488), 1, - sym_index_expression, - ACTIONS(150), 2, - sym_float, - sym_string, - ACTIONS(152), 2, - anon_sym_true, - anon_sym_false, - STATE(265), 2, - sym_value, - sym_index, - STATE(380), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(279), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(172), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [6350] = 23, - ACTIONS(3), 1, - sym__comment, - ACTIONS(176), 1, - anon_sym_LPAREN, - ACTIONS(182), 1, - anon_sym_struct, - ACTIONS(184), 1, - anon_sym_new, - ACTIONS(186), 1, - sym_integer, - ACTIONS(192), 1, - anon_sym_LBRACK, - ACTIONS(194), 1, - anon_sym_none, - ACTIONS(196), 1, - anon_sym_some, - ACTIONS(427), 1, - sym_identifier, - ACTIONS(431), 1, - anon_sym_LBRACE, - ACTIONS(491), 1, - anon_sym_RPAREN, - STATE(71), 1, - sym__function_expression_kind, - STATE(141), 1, - aux_sym__expression_list, - STATE(222), 1, - sym_expression, - STATE(457), 1, - sym_function_expression, - STATE(476), 1, - sym_index_expression, - ACTIONS(188), 2, - sym_float, - sym_string, - ACTIONS(190), 2, - anon_sym_true, - anon_sym_false, - STATE(119), 2, - sym_function_call, - sym_yield, - STATE(126), 2, - sym_value, - sym_index, - STATE(125), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(129), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(206), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [6441] = 23, - ACTIONS(3), 1, - sym__comment, - ACTIONS(176), 1, - anon_sym_LPAREN, - ACTIONS(182), 1, - anon_sym_struct, - ACTIONS(184), 1, - anon_sym_new, - ACTIONS(186), 1, - sym_integer, - ACTIONS(192), 1, - anon_sym_LBRACK, - ACTIONS(194), 1, - anon_sym_none, - ACTIONS(196), 1, - anon_sym_some, - ACTIONS(427), 1, - sym_identifier, - ACTIONS(431), 1, - anon_sym_LBRACE, - ACTIONS(493), 1, - anon_sym_RBRACK, - STATE(71), 1, - sym__function_expression_kind, - STATE(136), 1, - aux_sym_list_repeat1, - STATE(223), 1, - sym_expression, - STATE(457), 1, - sym_function_expression, - STATE(476), 1, - sym_index_expression, - ACTIONS(188), 2, - sym_float, - sym_string, - ACTIONS(190), 2, - anon_sym_true, - anon_sym_false, - STATE(119), 2, - sym_function_call, - sym_yield, - STATE(126), 2, - sym_value, - sym_index, - STATE(125), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(129), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(206), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [6532] = 24, - ACTIONS(3), 1, - sym__comment, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(144), 1, - anon_sym_struct, - ACTIONS(146), 1, - anon_sym_new, - ACTIONS(148), 1, - sym_integer, - ACTIONS(154), 1, - anon_sym_LBRACK, - ACTIONS(156), 1, - anon_sym_none, - ACTIONS(158), 1, - anon_sym_some, - ACTIONS(419), 1, - anon_sym_LBRACE, - ACTIONS(471), 1, - sym_identifier, - ACTIONS(473), 1, - anon_sym_RPAREN, - STATE(277), 1, - sym_yield, - STATE(366), 1, - sym_expression, - STATE(376), 1, - sym_function_call, - STATE(426), 1, - aux_sym_function_repeat1, - STATE(435), 1, - sym__function_expression_kind, - STATE(471), 1, - sym_function_expression, - STATE(488), 1, - sym_index_expression, - ACTIONS(150), 2, - sym_float, - sym_string, - ACTIONS(152), 2, - anon_sym_true, - anon_sym_false, - STATE(265), 2, - sym_value, - sym_index, - STATE(380), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(279), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(172), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [6625] = 23, - ACTIONS(3), 1, - sym__comment, - ACTIONS(176), 1, - anon_sym_LPAREN, - ACTIONS(182), 1, - anon_sym_struct, - ACTIONS(184), 1, - anon_sym_new, - ACTIONS(186), 1, - sym_integer, - ACTIONS(192), 1, - anon_sym_LBRACK, - ACTIONS(194), 1, - anon_sym_none, - ACTIONS(196), 1, - anon_sym_some, - ACTIONS(427), 1, - sym_identifier, - ACTIONS(431), 1, - anon_sym_LBRACE, - ACTIONS(495), 1, - anon_sym_RBRACK, - STATE(71), 1, - sym__function_expression_kind, - STATE(136), 1, - aux_sym_list_repeat1, - STATE(223), 1, - sym_expression, - STATE(457), 1, - sym_function_expression, - STATE(476), 1, - sym_index_expression, - ACTIONS(188), 2, - sym_float, - sym_string, - ACTIONS(190), 2, - anon_sym_true, - anon_sym_false, - STATE(119), 2, - sym_function_call, - sym_yield, - STATE(126), 2, - sym_value, - sym_index, - STATE(125), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(129), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(206), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [6716] = 23, - ACTIONS(3), 1, - sym__comment, - ACTIONS(176), 1, - anon_sym_LPAREN, - ACTIONS(182), 1, - anon_sym_struct, - ACTIONS(184), 1, - anon_sym_new, - ACTIONS(186), 1, - sym_integer, - ACTIONS(192), 1, - anon_sym_LBRACK, - ACTIONS(194), 1, - anon_sym_none, - ACTIONS(196), 1, - anon_sym_some, - ACTIONS(427), 1, - sym_identifier, - ACTIONS(431), 1, - anon_sym_LBRACE, - ACTIONS(497), 1, - anon_sym_RBRACK, - STATE(71), 1, - sym__function_expression_kind, - STATE(149), 1, - aux_sym_list_repeat1, - STATE(223), 1, - sym_expression, - STATE(457), 1, - sym_function_expression, - STATE(476), 1, - sym_index_expression, - ACTIONS(188), 2, - sym_float, - sym_string, - ACTIONS(190), 2, - anon_sym_true, - anon_sym_false, - STATE(119), 2, - sym_function_call, - sym_yield, - STATE(126), 2, - sym_value, - sym_index, - STATE(125), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(129), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(206), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [6807] = 23, - ACTIONS(3), 1, - sym__comment, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(144), 1, - anon_sym_struct, - ACTIONS(146), 1, - anon_sym_new, - ACTIONS(148), 1, - sym_integer, - ACTIONS(154), 1, - anon_sym_LBRACK, - ACTIONS(156), 1, - anon_sym_none, - ACTIONS(158), 1, - anon_sym_some, - ACTIONS(417), 1, - sym_identifier, - ACTIONS(419), 1, - anon_sym_LBRACE, - ACTIONS(423), 1, - anon_sym_STAR, - STATE(71), 1, - sym__function_expression_kind, - STATE(133), 1, - aux_sym_match_repeat1, - STATE(352), 1, - sym_expression, - STATE(464), 1, - sym_index_expression, - STATE(471), 1, - sym_function_expression, - ACTIONS(150), 2, - sym_float, - sym_string, - ACTIONS(152), 2, - anon_sym_true, - anon_sym_false, - STATE(265), 2, - sym_value, - sym_index, - STATE(277), 2, - sym_function_call, - sym_yield, - STATE(288), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(279), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(172), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [6898] = 24, - ACTIONS(3), 1, - sym__comment, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(144), 1, - anon_sym_struct, - ACTIONS(146), 1, - anon_sym_new, - ACTIONS(148), 1, - sym_integer, - ACTIONS(154), 1, - anon_sym_LBRACK, - ACTIONS(156), 1, - anon_sym_none, - ACTIONS(158), 1, - anon_sym_some, - ACTIONS(419), 1, - anon_sym_LBRACE, - ACTIONS(471), 1, - sym_identifier, - ACTIONS(473), 1, - anon_sym_RPAREN, - STATE(71), 1, - sym__function_expression_kind, - STATE(277), 1, - sym_yield, - STATE(362), 1, - sym_expression, - STATE(365), 1, - sym_function_call, - STATE(426), 1, - aux_sym_function_repeat1, - STATE(464), 1, - sym_index_expression, - STATE(471), 1, - sym_function_expression, - ACTIONS(150), 2, - sym_float, - sym_string, - ACTIONS(152), 2, - anon_sym_true, - anon_sym_false, - STATE(265), 2, - sym_value, - sym_index, - STATE(288), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(279), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(172), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [6991] = 23, - ACTIONS(3), 1, - sym__comment, - ACTIONS(176), 1, - anon_sym_LPAREN, - ACTIONS(182), 1, - anon_sym_struct, - ACTIONS(184), 1, - anon_sym_new, - ACTIONS(186), 1, - sym_integer, - ACTIONS(192), 1, - anon_sym_LBRACK, - ACTIONS(194), 1, - anon_sym_none, - ACTIONS(196), 1, - anon_sym_some, - ACTIONS(427), 1, - sym_identifier, - ACTIONS(431), 1, - anon_sym_LBRACE, - ACTIONS(499), 1, - anon_sym_RPAREN, - STATE(71), 1, - sym__function_expression_kind, - STATE(157), 1, - aux_sym__expression_list, - STATE(222), 1, - sym_expression, - STATE(457), 1, - sym_function_expression, - STATE(476), 1, - sym_index_expression, - ACTIONS(188), 2, - sym_float, - sym_string, - ACTIONS(190), 2, - anon_sym_true, - anon_sym_false, - STATE(119), 2, - sym_function_call, - sym_yield, - STATE(126), 2, - sym_value, - sym_index, - STATE(125), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(129), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(206), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [7082] = 24, - ACTIONS(3), 1, - sym__comment, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(144), 1, - anon_sym_struct, - ACTIONS(146), 1, - anon_sym_new, - ACTIONS(148), 1, - sym_integer, - ACTIONS(154), 1, - anon_sym_LBRACK, - ACTIONS(156), 1, - anon_sym_none, - ACTIONS(158), 1, - anon_sym_some, - ACTIONS(419), 1, - anon_sym_LBRACE, - ACTIONS(471), 1, - sym_identifier, - ACTIONS(483), 1, - anon_sym_RPAREN, - STATE(277), 1, - sym_yield, - STATE(366), 1, - sym_expression, - STATE(376), 1, - sym_function_call, - STATE(422), 1, - aux_sym_function_repeat1, - STATE(435), 1, - sym__function_expression_kind, - STATE(471), 1, - sym_function_expression, - STATE(488), 1, - sym_index_expression, - ACTIONS(150), 2, - sym_float, - sym_string, - ACTIONS(152), 2, - anon_sym_true, - anon_sym_false, - STATE(265), 2, - sym_value, - sym_index, - STATE(378), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(279), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(172), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [7175] = 23, - ACTIONS(3), 1, - sym__comment, - ACTIONS(501), 1, - sym_identifier, - ACTIONS(504), 1, - anon_sym_LPAREN, - ACTIONS(507), 1, - anon_sym_RPAREN, - ACTIONS(509), 1, - anon_sym_LBRACE, - ACTIONS(512), 1, - anon_sym_struct, - ACTIONS(515), 1, - anon_sym_new, - ACTIONS(518), 1, - sym_integer, - ACTIONS(527), 1, - anon_sym_LBRACK, - ACTIONS(530), 1, - anon_sym_none, - ACTIONS(533), 1, - anon_sym_some, - STATE(71), 1, - sym__function_expression_kind, - STATE(157), 1, - aux_sym__expression_list, - STATE(222), 1, - sym_expression, - STATE(457), 1, - sym_function_expression, - STATE(476), 1, - sym_index_expression, - ACTIONS(521), 2, - sym_float, - sym_string, - ACTIONS(524), 2, - anon_sym_true, - anon_sym_false, - STATE(119), 2, - sym_function_call, - sym_yield, - STATE(126), 2, - sym_value, - sym_index, - STATE(125), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(129), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(536), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [7266] = 24, - ACTIONS(3), 1, - sym__comment, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(144), 1, - anon_sym_struct, - ACTIONS(146), 1, - anon_sym_new, - ACTIONS(148), 1, - sym_integer, - ACTIONS(154), 1, - anon_sym_LBRACK, - ACTIONS(156), 1, - anon_sym_none, - ACTIONS(158), 1, - anon_sym_some, - ACTIONS(419), 1, - anon_sym_LBRACE, - ACTIONS(471), 1, - sym_identifier, - ACTIONS(489), 1, - anon_sym_RPAREN, - STATE(71), 1, - sym__function_expression_kind, - STATE(277), 1, - sym_yield, - STATE(362), 1, - sym_expression, - STATE(368), 1, - sym_function_call, - STATE(423), 1, - aux_sym_function_repeat1, - STATE(464), 1, - sym_index_expression, - STATE(471), 1, - sym_function_expression, - ACTIONS(150), 2, - sym_float, - sym_string, - ACTIONS(152), 2, - anon_sym_true, - anon_sym_false, - STATE(265), 2, - sym_value, - sym_index, - STATE(288), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(279), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(172), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [7359] = 24, - ACTIONS(3), 1, - sym__comment, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(144), 1, - anon_sym_struct, - ACTIONS(146), 1, - anon_sym_new, - ACTIONS(148), 1, - sym_integer, - ACTIONS(154), 1, - anon_sym_LBRACK, - ACTIONS(156), 1, - anon_sym_none, - ACTIONS(158), 1, - anon_sym_some, - ACTIONS(419), 1, - anon_sym_LBRACE, - ACTIONS(471), 1, - sym_identifier, - ACTIONS(489), 1, - anon_sym_RPAREN, - STATE(277), 1, - sym_yield, - STATE(366), 1, - sym_expression, - STATE(376), 1, - sym_function_call, - STATE(423), 1, - aux_sym_function_repeat1, - STATE(438), 1, - sym__function_expression_kind, - STATE(471), 1, - sym_function_expression, - STATE(488), 1, - sym_index_expression, - ACTIONS(150), 2, - sym_float, - sym_string, - ACTIONS(152), 2, - anon_sym_true, - anon_sym_false, - STATE(265), 2, - sym_value, - sym_index, - STATE(380), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(279), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(172), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [7452] = 23, - ACTIONS(3), 1, - sym__comment, - ACTIONS(176), 1, - anon_sym_LPAREN, - ACTIONS(182), 1, - anon_sym_struct, - ACTIONS(184), 1, - anon_sym_new, - ACTIONS(186), 1, - sym_integer, - ACTIONS(192), 1, - anon_sym_LBRACK, - ACTIONS(194), 1, - anon_sym_none, - ACTIONS(196), 1, - anon_sym_some, - ACTIONS(427), 1, - sym_identifier, - ACTIONS(431), 1, - anon_sym_LBRACE, - ACTIONS(539), 1, - anon_sym_RBRACK, - STATE(71), 1, - sym__function_expression_kind, - STATE(161), 1, - aux_sym_list_repeat1, - STATE(223), 1, - sym_expression, - STATE(457), 1, - sym_function_expression, - STATE(476), 1, - sym_index_expression, - ACTIONS(188), 2, - sym_float, - sym_string, - ACTIONS(190), 2, - anon_sym_true, - anon_sym_false, - STATE(119), 2, - sym_function_call, - sym_yield, - STATE(126), 2, - sym_value, - sym_index, - STATE(125), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(129), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(206), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [7543] = 23, - ACTIONS(3), 1, - sym__comment, - ACTIONS(176), 1, - anon_sym_LPAREN, - ACTIONS(182), 1, - anon_sym_struct, - ACTIONS(184), 1, - anon_sym_new, - ACTIONS(186), 1, - sym_integer, - ACTIONS(192), 1, - anon_sym_LBRACK, - ACTIONS(194), 1, - anon_sym_none, - ACTIONS(196), 1, - anon_sym_some, - ACTIONS(427), 1, - sym_identifier, - ACTIONS(431), 1, - anon_sym_LBRACE, - ACTIONS(541), 1, - anon_sym_RBRACK, - STATE(71), 1, - sym__function_expression_kind, - STATE(136), 1, - aux_sym_list_repeat1, - STATE(223), 1, - sym_expression, - STATE(457), 1, - sym_function_expression, - STATE(476), 1, - sym_index_expression, - ACTIONS(188), 2, - sym_float, - sym_string, - ACTIONS(190), 2, - anon_sym_true, - anon_sym_false, - STATE(119), 2, - sym_function_call, - sym_yield, - STATE(126), 2, - sym_value, - sym_index, - STATE(125), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(129), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(206), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [7634] = 24, - ACTIONS(3), 1, - sym__comment, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(144), 1, - anon_sym_struct, - ACTIONS(146), 1, - anon_sym_new, - ACTIONS(148), 1, - sym_integer, - ACTIONS(154), 1, - anon_sym_LBRACK, - ACTIONS(156), 1, - anon_sym_none, - ACTIONS(158), 1, - anon_sym_some, - ACTIONS(419), 1, - anon_sym_LBRACE, - ACTIONS(471), 1, - sym_identifier, - ACTIONS(483), 1, - anon_sym_RPAREN, - STATE(277), 1, - sym_yield, - STATE(366), 1, - sym_expression, - STATE(376), 1, - sym_function_call, - STATE(422), 1, - aux_sym_function_repeat1, - STATE(442), 1, - sym__function_expression_kind, - STATE(471), 1, - sym_function_expression, - STATE(488), 1, - sym_index_expression, - ACTIONS(150), 2, - sym_float, - sym_string, - ACTIONS(152), 2, - anon_sym_true, - anon_sym_false, - STATE(265), 2, - sym_value, - sym_index, - STATE(380), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(279), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(172), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [7727] = 23, - ACTIONS(3), 1, - sym__comment, - ACTIONS(176), 1, - anon_sym_LPAREN, - ACTIONS(182), 1, - anon_sym_struct, - ACTIONS(184), 1, - anon_sym_new, - ACTIONS(186), 1, - sym_integer, - ACTIONS(192), 1, - anon_sym_LBRACK, - ACTIONS(194), 1, - anon_sym_none, - ACTIONS(196), 1, - anon_sym_some, - ACTIONS(427), 1, - sym_identifier, - ACTIONS(431), 1, - anon_sym_LBRACE, - ACTIONS(543), 1, - anon_sym_RPAREN, - STATE(71), 1, - sym__function_expression_kind, - STATE(155), 1, - aux_sym__expression_list, - STATE(222), 1, - sym_expression, - STATE(457), 1, - sym_function_expression, - STATE(476), 1, - sym_index_expression, - ACTIONS(188), 2, - sym_float, - sym_string, - ACTIONS(190), 2, - anon_sym_true, - anon_sym_false, - STATE(119), 2, - sym_function_call, - sym_yield, - STATE(126), 2, - sym_value, - sym_index, - STATE(125), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(129), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(206), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [7818] = 23, - ACTIONS(3), 1, - sym__comment, - ACTIONS(176), 1, - anon_sym_LPAREN, - ACTIONS(182), 1, - anon_sym_struct, - ACTIONS(184), 1, - anon_sym_new, - ACTIONS(186), 1, - sym_integer, - ACTIONS(192), 1, - anon_sym_LBRACK, - ACTIONS(194), 1, - anon_sym_none, - ACTIONS(196), 1, - anon_sym_some, - ACTIONS(427), 1, - sym_identifier, - ACTIONS(431), 1, - anon_sym_LBRACE, - ACTIONS(545), 1, - anon_sym_RPAREN, - STATE(71), 1, - sym__function_expression_kind, - STATE(157), 1, - aux_sym__expression_list, - STATE(222), 1, - sym_expression, - STATE(457), 1, - sym_function_expression, - STATE(476), 1, - sym_index_expression, - ACTIONS(188), 2, - sym_float, - sym_string, - ACTIONS(190), 2, - anon_sym_true, - anon_sym_false, - STATE(119), 2, - sym_function_call, - sym_yield, - STATE(126), 2, - sym_value, - sym_index, - STATE(125), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(129), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(206), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [7909] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(230), 1, - anon_sym_COLON, - ACTIONS(372), 20, - sym_identifier, - anon_sym_struct, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - ACTIONS(226), 21, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_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, - [7961] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(144), 1, - anon_sym_struct, - ACTIONS(146), 1, - anon_sym_new, - ACTIONS(148), 1, - sym_integer, - ACTIONS(154), 1, - anon_sym_LBRACK, - ACTIONS(156), 1, - anon_sym_none, - ACTIONS(158), 1, - anon_sym_some, - ACTIONS(419), 1, - anon_sym_LBRACE, - ACTIONS(547), 1, - sym_identifier, - STATE(71), 1, - sym__function_expression_kind, - STATE(347), 1, - sym_expression, - STATE(471), 1, - sym_function_expression, - STATE(488), 1, - sym_index_expression, - ACTIONS(150), 2, - sym_float, - sym_string, - ACTIONS(152), 2, - anon_sym_true, - anon_sym_false, - STATE(343), 2, - sym_function_call, - sym_yield, - STATE(344), 2, - sym_value, - sym_index, - STATE(288), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(279), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(172), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [8046] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(176), 1, - anon_sym_LPAREN, - ACTIONS(182), 1, - anon_sym_struct, - ACTIONS(184), 1, - anon_sym_new, - ACTIONS(186), 1, - sym_integer, - ACTIONS(192), 1, - anon_sym_LBRACK, - ACTIONS(194), 1, - anon_sym_none, - ACTIONS(196), 1, - anon_sym_some, - ACTIONS(427), 1, - sym_identifier, - ACTIONS(431), 1, - anon_sym_LBRACE, - STATE(71), 1, - sym__function_expression_kind, - STATE(144), 1, - sym_expression, - STATE(457), 1, - sym_function_expression, - STATE(476), 1, - sym_index_expression, - ACTIONS(188), 2, - sym_float, - sym_string, - ACTIONS(190), 2, - anon_sym_true, - anon_sym_false, - STATE(119), 2, - sym_function_call, - sym_yield, - STATE(126), 2, - sym_value, - sym_index, - STATE(125), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(129), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(206), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [8131] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(144), 1, - anon_sym_struct, - ACTIONS(146), 1, - anon_sym_new, - ACTIONS(148), 1, - sym_integer, - ACTIONS(154), 1, - anon_sym_LBRACK, - ACTIONS(156), 1, - anon_sym_none, - ACTIONS(158), 1, - anon_sym_some, - ACTIONS(417), 1, - sym_identifier, - ACTIONS(419), 1, - anon_sym_LBRACE, - STATE(71), 1, - sym__function_expression_kind, - STATE(336), 1, - sym_expression, - STATE(464), 1, - sym_index_expression, - STATE(471), 1, - sym_function_expression, - ACTIONS(150), 2, - sym_float, - sym_string, - ACTIONS(152), 2, - anon_sym_true, - anon_sym_false, - STATE(265), 2, - sym_value, - sym_index, - STATE(277), 2, - sym_function_call, - sym_yield, - STATE(288), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(279), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(172), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [8216] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(144), 1, - anon_sym_struct, - ACTIONS(146), 1, - anon_sym_new, - ACTIONS(148), 1, - sym_integer, - ACTIONS(154), 1, - anon_sym_LBRACK, - ACTIONS(156), 1, - anon_sym_none, - ACTIONS(158), 1, - anon_sym_some, - ACTIONS(419), 1, - anon_sym_LBRACE, - ACTIONS(547), 1, - sym_identifier, - STATE(71), 1, - sym__function_expression_kind, - STATE(355), 1, - sym_expression, - STATE(471), 1, - sym_function_expression, - STATE(488), 1, - sym_index_expression, - ACTIONS(150), 2, - sym_float, - sym_string, - ACTIONS(152), 2, - anon_sym_true, - anon_sym_false, - STATE(343), 2, - sym_function_call, - sym_yield, - STATE(344), 2, - sym_value, - sym_index, - STATE(288), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(279), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(172), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [8301] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(144), 1, - anon_sym_struct, - ACTIONS(146), 1, - anon_sym_new, - ACTIONS(148), 1, - sym_integer, - ACTIONS(154), 1, - anon_sym_LBRACK, - ACTIONS(156), 1, - anon_sym_none, - ACTIONS(158), 1, - anon_sym_some, - ACTIONS(417), 1, - sym_identifier, - ACTIONS(419), 1, - anon_sym_LBRACE, - STATE(71), 1, - sym__function_expression_kind, - STATE(346), 1, - sym_expression, - STATE(464), 1, - sym_index_expression, - STATE(471), 1, - sym_function_expression, - ACTIONS(150), 2, - sym_float, - sym_string, - ACTIONS(152), 2, - anon_sym_true, - anon_sym_false, - STATE(265), 2, - sym_value, - sym_index, - STATE(277), 2, - sym_function_call, - sym_yield, - STATE(288), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(279), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(172), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [8386] = 19, - ACTIONS(3), 1, - sym__comment, - ACTIONS(146), 1, - anon_sym_new, - ACTIONS(182), 1, - anon_sym_struct, - ACTIONS(186), 1, - sym_integer, - ACTIONS(192), 1, - anon_sym_LBRACK, - ACTIONS(194), 1, - anon_sym_none, - ACTIONS(196), 1, - anon_sym_some, - ACTIONS(431), 1, - anon_sym_LBRACE, - ACTIONS(549), 1, - sym_identifier, - ACTIONS(551), 1, - anon_sym_LPAREN, - STATE(106), 1, - sym_function_expression, - STATE(372), 1, - sym_expression, - STATE(476), 1, - sym_index_expression, - ACTIONS(188), 2, - sym_float, - sym_string, - ACTIONS(190), 2, - anon_sym_true, - anon_sym_false, - STATE(288), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(121), 5, - sym_value, - sym_index, - sym__function_expression_kind, - sym_function_call, - sym_yield, - STATE(129), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(206), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [8467] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(144), 1, - anon_sym_struct, - ACTIONS(146), 1, - anon_sym_new, - ACTIONS(148), 1, - sym_integer, - ACTIONS(154), 1, - anon_sym_LBRACK, - ACTIONS(156), 1, - anon_sym_none, - ACTIONS(158), 1, - anon_sym_some, - ACTIONS(417), 1, - sym_identifier, - ACTIONS(419), 1, - anon_sym_LBRACE, - STATE(71), 1, - sym__function_expression_kind, - STATE(333), 1, - sym_expression, - STATE(464), 1, - sym_index_expression, - STATE(471), 1, - sym_function_expression, - ACTIONS(150), 2, - sym_float, - sym_string, - ACTIONS(152), 2, - anon_sym_true, - anon_sym_false, - STATE(265), 2, - sym_value, - sym_index, - STATE(277), 2, - sym_function_call, - sym_yield, - STATE(288), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(279), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(172), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [8552] = 19, - ACTIONS(3), 1, - sym__comment, - ACTIONS(144), 1, - anon_sym_struct, - ACTIONS(146), 1, - anon_sym_new, - ACTIONS(148), 1, - sym_integer, - ACTIONS(154), 1, - anon_sym_LBRACK, - ACTIONS(156), 1, - anon_sym_none, - ACTIONS(158), 1, - anon_sym_some, - ACTIONS(419), 1, - anon_sym_LBRACE, - ACTIONS(553), 1, - sym_identifier, - ACTIONS(555), 1, - anon_sym_LPAREN, - STATE(289), 1, - sym_function_expression, - STATE(375), 1, - sym_expression, - STATE(488), 1, - sym_index_expression, - ACTIONS(150), 2, - sym_float, - sym_string, - ACTIONS(152), 2, - anon_sym_true, - anon_sym_false, - STATE(288), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(269), 5, - sym_value, - sym_index, - sym__function_expression_kind, - sym_function_call, - sym_yield, - STATE(279), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(172), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [8633] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - anon_sym_struct, - ACTIONS(15), 1, - anon_sym_new, - ACTIONS(17), 1, - sym_integer, - ACTIONS(23), 1, - anon_sym_LBRACK, - ACTIONS(25), 1, - anon_sym_none, - ACTIONS(27), 1, - anon_sym_some, - ACTIONS(557), 1, - sym_identifier, - ACTIONS(559), 1, - anon_sym_LBRACE, - STATE(50), 1, - sym_expression, - STATE(71), 1, - sym__function_expression_kind, - STATE(452), 1, - sym_index_expression, - STATE(481), 1, - sym_function_expression, - ACTIONS(19), 2, - sym_float, - sym_string, - ACTIONS(21), 2, - anon_sym_true, - anon_sym_false, - STATE(69), 2, - sym_function_call, - sym_yield, - STATE(87), 2, - sym_value, - sym_index, - STATE(63), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(81), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(41), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [8718] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(144), 1, - anon_sym_struct, - ACTIONS(146), 1, - anon_sym_new, - ACTIONS(148), 1, - sym_integer, - ACTIONS(154), 1, - anon_sym_LBRACK, - ACTIONS(156), 1, - anon_sym_none, - ACTIONS(158), 1, - anon_sym_some, - ACTIONS(417), 1, - sym_identifier, - ACTIONS(419), 1, - anon_sym_LBRACE, - STATE(71), 1, - sym__function_expression_kind, - STATE(331), 1, - sym_expression, - STATE(464), 1, - sym_index_expression, - STATE(471), 1, - sym_function_expression, - ACTIONS(150), 2, - sym_float, - sym_string, - ACTIONS(152), 2, - anon_sym_true, - anon_sym_false, - STATE(265), 2, - sym_value, - sym_index, - STATE(277), 2, - sym_function_call, - sym_yield, - STATE(288), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(279), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(172), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [8803] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - anon_sym_struct, - ACTIONS(15), 1, - anon_sym_new, - ACTIONS(17), 1, - sym_integer, - ACTIONS(23), 1, - anon_sym_LBRACK, - ACTIONS(25), 1, - anon_sym_none, - ACTIONS(27), 1, - anon_sym_some, - ACTIONS(557), 1, - sym_identifier, - ACTIONS(559), 1, - anon_sym_LBRACE, - STATE(48), 1, - sym_expression, - STATE(71), 1, - sym__function_expression_kind, - STATE(452), 1, - sym_index_expression, - STATE(481), 1, - sym_function_expression, - ACTIONS(19), 2, - sym_float, - sym_string, - ACTIONS(21), 2, - anon_sym_true, - anon_sym_false, - STATE(69), 2, - sym_function_call, - sym_yield, - STATE(87), 2, - sym_value, - sym_index, - STATE(63), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(81), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(41), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [8888] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(144), 1, - anon_sym_struct, - ACTIONS(146), 1, - anon_sym_new, - ACTIONS(148), 1, - sym_integer, - ACTIONS(154), 1, - anon_sym_LBRACK, - ACTIONS(156), 1, - anon_sym_none, - ACTIONS(158), 1, - anon_sym_some, - ACTIONS(419), 1, - anon_sym_LBRACE, - ACTIONS(547), 1, - sym_identifier, - STATE(71), 1, - sym__function_expression_kind, - STATE(326), 1, - sym_expression, - STATE(460), 1, - sym_index_expression, - STATE(471), 1, - sym_function_expression, - ACTIONS(150), 2, - sym_float, - sym_string, - ACTIONS(152), 2, - anon_sym_true, - anon_sym_false, - STATE(343), 2, - sym_function_call, - sym_yield, - STATE(344), 2, - sym_value, - sym_index, - STATE(288), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(279), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(172), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [8973] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(144), 1, - anon_sym_struct, - ACTIONS(146), 1, - anon_sym_new, - ACTIONS(148), 1, - sym_integer, - ACTIONS(154), 1, - anon_sym_LBRACK, - ACTIONS(156), 1, - anon_sym_none, - ACTIONS(158), 1, - anon_sym_some, - ACTIONS(419), 1, - anon_sym_LBRACE, - ACTIONS(547), 1, - sym_identifier, - STATE(71), 1, - sym__function_expression_kind, - STATE(325), 1, - sym_expression, - STATE(460), 1, - sym_index_expression, - STATE(471), 1, - sym_function_expression, - ACTIONS(150), 2, - sym_float, - sym_string, - ACTIONS(152), 2, - anon_sym_true, - anon_sym_false, - STATE(343), 2, - sym_function_call, - sym_yield, - STATE(344), 2, - sym_value, - sym_index, - STATE(288), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(279), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(172), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [9058] = 19, - ACTIONS(3), 1, - sym__comment, - ACTIONS(144), 1, - anon_sym_struct, - ACTIONS(146), 1, - anon_sym_new, - ACTIONS(148), 1, - sym_integer, - ACTIONS(154), 1, - anon_sym_LBRACK, - ACTIONS(156), 1, - anon_sym_none, - ACTIONS(158), 1, - anon_sym_some, - ACTIONS(419), 1, - anon_sym_LBRACE, - ACTIONS(553), 1, - sym_identifier, - ACTIONS(555), 1, - anon_sym_LPAREN, - STATE(289), 1, - sym_function_expression, - STATE(369), 1, - sym_expression, - STATE(460), 1, - sym_index_expression, - ACTIONS(150), 2, - sym_float, - sym_string, - ACTIONS(152), 2, - anon_sym_true, - anon_sym_false, - STATE(288), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(269), 5, - sym_value, - sym_index, - sym__function_expression_kind, - sym_function_call, - sym_yield, - STATE(279), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(172), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [9139] = 19, - ACTIONS(3), 1, - sym__comment, - ACTIONS(13), 1, - anon_sym_struct, - ACTIONS(17), 1, - sym_integer, - ACTIONS(23), 1, - anon_sym_LBRACK, - ACTIONS(25), 1, - anon_sym_none, - ACTIONS(27), 1, - anon_sym_some, - ACTIONS(146), 1, - anon_sym_new, - ACTIONS(559), 1, - anon_sym_LBRACE, - ACTIONS(561), 1, - sym_identifier, - ACTIONS(563), 1, - anon_sym_LPAREN, - STATE(66), 1, - sym_function_expression, - STATE(367), 1, - sym_expression, - STATE(452), 1, - sym_index_expression, - ACTIONS(19), 2, - sym_float, - sym_string, - ACTIONS(21), 2, - anon_sym_true, - anon_sym_false, - STATE(288), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(71), 5, - sym_value, - sym_index, - sym__function_expression_kind, - sym_function_call, - sym_yield, - STATE(81), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(41), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [9220] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - anon_sym_struct, - ACTIONS(15), 1, - anon_sym_new, - ACTIONS(17), 1, - sym_integer, - ACTIONS(23), 1, - anon_sym_LBRACK, - ACTIONS(25), 1, - anon_sym_none, - ACTIONS(27), 1, - anon_sym_some, - ACTIONS(557), 1, - sym_identifier, - ACTIONS(559), 1, - anon_sym_LBRACE, - STATE(71), 1, - sym__function_expression_kind, - STATE(94), 1, - sym_expression, - STATE(481), 1, - sym_function_expression, - STATE(482), 1, - sym_index_expression, - ACTIONS(19), 2, - sym_float, - sym_string, - ACTIONS(21), 2, - anon_sym_true, - anon_sym_false, - STATE(69), 2, - sym_function_call, - sym_yield, - STATE(87), 2, - sym_value, - sym_index, - STATE(63), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(81), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(41), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [9305] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(176), 1, - anon_sym_LPAREN, - ACTIONS(182), 1, - anon_sym_struct, - ACTIONS(184), 1, - anon_sym_new, - ACTIONS(186), 1, - sym_integer, - ACTIONS(192), 1, - anon_sym_LBRACK, - ACTIONS(194), 1, - anon_sym_none, - ACTIONS(196), 1, - anon_sym_some, - ACTIONS(427), 1, - sym_identifier, - ACTIONS(431), 1, - anon_sym_LBRACE, - STATE(71), 1, - sym__function_expression_kind, - STATE(90), 1, - sym_expression, - STATE(457), 1, - sym_function_expression, - STATE(485), 1, - sym_index_expression, - ACTIONS(188), 2, - sym_float, - sym_string, - ACTIONS(190), 2, - anon_sym_true, - anon_sym_false, - STATE(119), 2, - sym_function_call, - sym_yield, - STATE(126), 2, - sym_value, - sym_index, - STATE(125), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(129), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(206), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [9390] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(176), 1, - anon_sym_LPAREN, - ACTIONS(182), 1, - anon_sym_struct, - ACTIONS(184), 1, - anon_sym_new, - ACTIONS(186), 1, - sym_integer, - ACTIONS(192), 1, - anon_sym_LBRACK, - ACTIONS(194), 1, - anon_sym_none, - ACTIONS(196), 1, - anon_sym_some, - ACTIONS(427), 1, - sym_identifier, - ACTIONS(431), 1, - anon_sym_LBRACE, - STATE(71), 1, - sym__function_expression_kind, - STATE(91), 1, - sym_expression, - STATE(457), 1, - sym_function_expression, - STATE(485), 1, - sym_index_expression, - ACTIONS(188), 2, - sym_float, - sym_string, - ACTIONS(190), 2, - anon_sym_true, - anon_sym_false, - STATE(119), 2, - sym_function_call, - sym_yield, - STATE(126), 2, - sym_value, - sym_index, - STATE(125), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(129), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(206), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [9475] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(144), 1, - anon_sym_struct, - ACTIONS(146), 1, - anon_sym_new, - ACTIONS(148), 1, - sym_integer, - ACTIONS(154), 1, - anon_sym_LBRACK, - ACTIONS(156), 1, - anon_sym_none, - ACTIONS(158), 1, - anon_sym_some, - ACTIONS(417), 1, - sym_identifier, - ACTIONS(419), 1, - anon_sym_LBRACE, - STATE(71), 1, - sym__function_expression_kind, - STATE(339), 1, - sym_expression, - STATE(464), 1, - sym_index_expression, - STATE(471), 1, - sym_function_expression, - ACTIONS(150), 2, - sym_float, - sym_string, - ACTIONS(152), 2, - anon_sym_true, - anon_sym_false, - STATE(265), 2, - sym_value, - sym_index, - STATE(277), 2, - sym_function_call, - sym_yield, - STATE(288), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(279), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(172), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [9560] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(144), 1, - anon_sym_struct, - ACTIONS(146), 1, - anon_sym_new, - ACTIONS(148), 1, - sym_integer, - ACTIONS(154), 1, - anon_sym_LBRACK, - ACTIONS(156), 1, - anon_sym_none, - ACTIONS(158), 1, - anon_sym_some, - ACTIONS(417), 1, - sym_identifier, - ACTIONS(419), 1, - anon_sym_LBRACE, - STATE(71), 1, - sym__function_expression_kind, - STATE(255), 1, - sym_expression, - STATE(460), 1, - sym_index_expression, - STATE(471), 1, - sym_function_expression, - ACTIONS(150), 2, - sym_float, - sym_string, - ACTIONS(152), 2, - anon_sym_true, - anon_sym_false, - STATE(265), 2, - sym_value, - sym_index, - STATE(277), 2, - sym_function_call, - sym_yield, - STATE(288), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(279), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(172), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [9645] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(144), 1, - anon_sym_struct, - ACTIONS(146), 1, - anon_sym_new, - ACTIONS(148), 1, - sym_integer, - ACTIONS(154), 1, - anon_sym_LBRACK, - ACTIONS(156), 1, - anon_sym_none, - ACTIONS(158), 1, - anon_sym_some, - ACTIONS(417), 1, - sym_identifier, - ACTIONS(419), 1, - anon_sym_LBRACE, - STATE(71), 1, - sym__function_expression_kind, - STATE(256), 1, - sym_expression, - STATE(460), 1, - sym_index_expression, - STATE(471), 1, - sym_function_expression, - ACTIONS(150), 2, - sym_float, - sym_string, - ACTIONS(152), 2, - anon_sym_true, - anon_sym_false, - STATE(265), 2, - sym_value, - sym_index, - STATE(277), 2, - sym_function_call, - sym_yield, - STATE(288), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(279), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(172), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [9730] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(144), 1, - anon_sym_struct, - ACTIONS(146), 1, - anon_sym_new, - ACTIONS(148), 1, - sym_integer, - ACTIONS(154), 1, - anon_sym_LBRACK, - ACTIONS(156), 1, - anon_sym_none, - ACTIONS(158), 1, - anon_sym_some, - ACTIONS(417), 1, - sym_identifier, - ACTIONS(419), 1, - anon_sym_LBRACE, - STATE(71), 1, - sym__function_expression_kind, - STATE(263), 1, - sym_expression, - STATE(464), 1, - sym_index_expression, - STATE(471), 1, - sym_function_expression, - ACTIONS(150), 2, - sym_float, - sym_string, - ACTIONS(152), 2, - anon_sym_true, - anon_sym_false, - STATE(265), 2, - sym_value, - sym_index, - STATE(277), 2, - sym_function_call, - sym_yield, - STATE(288), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(279), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(172), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [9815] = 19, - ACTIONS(3), 1, - sym__comment, - ACTIONS(13), 1, - anon_sym_struct, - ACTIONS(17), 1, - sym_integer, - ACTIONS(23), 1, - anon_sym_LBRACK, - ACTIONS(25), 1, - anon_sym_none, - ACTIONS(27), 1, - anon_sym_some, - ACTIONS(146), 1, - anon_sym_new, - ACTIONS(559), 1, - anon_sym_LBRACE, - ACTIONS(561), 1, - sym_identifier, - ACTIONS(563), 1, - anon_sym_LPAREN, - STATE(66), 1, - sym_function_expression, - STATE(359), 1, - sym_expression, - STATE(482), 1, - sym_index_expression, - ACTIONS(19), 2, - sym_float, - sym_string, - ACTIONS(21), 2, - anon_sym_true, - anon_sym_false, - STATE(288), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(71), 5, - sym_value, - sym_index, - sym__function_expression_kind, - sym_function_call, - sym_yield, - STATE(81), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(41), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [9896] = 19, - ACTIONS(3), 1, - sym__comment, - ACTIONS(144), 1, - anon_sym_struct, - ACTIONS(146), 1, - anon_sym_new, - ACTIONS(148), 1, - sym_integer, - ACTIONS(154), 1, - anon_sym_LBRACK, - ACTIONS(156), 1, - anon_sym_none, - ACTIONS(158), 1, - anon_sym_some, - ACTIONS(419), 1, - anon_sym_LBRACE, - ACTIONS(553), 1, - sym_identifier, - ACTIONS(555), 1, - anon_sym_LPAREN, - STATE(289), 1, - sym_function_expression, - STATE(373), 1, - sym_expression, - STATE(464), 1, - sym_index_expression, - ACTIONS(150), 2, - sym_float, - sym_string, - ACTIONS(152), 2, - anon_sym_true, - anon_sym_false, - STATE(288), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(269), 5, - sym_value, - sym_index, - sym__function_expression_kind, - sym_function_call, - sym_yield, - STATE(279), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(172), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [9977] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(144), 1, - anon_sym_struct, - ACTIONS(146), 1, - anon_sym_new, - ACTIONS(148), 1, - sym_integer, - ACTIONS(154), 1, - anon_sym_LBRACK, - ACTIONS(156), 1, - anon_sym_none, - ACTIONS(158), 1, - anon_sym_some, - ACTIONS(417), 1, - sym_identifier, - ACTIONS(419), 1, - anon_sym_LBRACE, - STATE(71), 1, + STATE(84), 1, sym__function_expression_kind, STATE(262), 1, + sym_range, + STATE(296), 1, sym_expression, - STATE(464), 1, - sym_index_expression, - STATE(471), 1, + STATE(397), 1, sym_function_expression, - ACTIONS(150), 2, - sym_float, - sym_string, - ACTIONS(152), 2, - anon_sym_true, - anon_sym_false, - STATE(265), 2, - sym_value, - sym_index, - STATE(277), 2, - sym_function_call, - sym_yield, - STATE(288), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(279), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(172), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [10062] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - anon_sym_struct, - ACTIONS(15), 1, - anon_sym_new, - ACTIONS(17), 1, - sym_integer, - ACTIONS(23), 1, - anon_sym_LBRACK, - ACTIONS(25), 1, - anon_sym_none, - ACTIONS(27), 1, - anon_sym_some, - ACTIONS(557), 1, - sym_identifier, - ACTIONS(559), 1, - anon_sym_LBRACE, - STATE(71), 1, - sym__function_expression_kind, - STATE(93), 1, - sym_expression, - STATE(481), 1, - sym_function_expression, - STATE(482), 1, - sym_index_expression, - ACTIONS(19), 2, - sym_float, - sym_string, - ACTIONS(21), 2, - anon_sym_true, - anon_sym_false, - STATE(69), 2, - sym_function_call, - sym_yield, - STATE(87), 2, - sym_value, - sym_index, - STATE(63), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(81), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(41), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [10147] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - anon_sym_struct, - ACTIONS(15), 1, - anon_sym_new, - ACTIONS(17), 1, - sym_integer, - ACTIONS(23), 1, - anon_sym_LBRACK, - ACTIONS(25), 1, - anon_sym_none, - ACTIONS(27), 1, - anon_sym_some, - ACTIONS(557), 1, - sym_identifier, - ACTIONS(559), 1, - anon_sym_LBRACE, - STATE(53), 1, - sym_expression, - STATE(71), 1, - sym__function_expression_kind, - STATE(481), 1, - sym_function_expression, - STATE(482), 1, - sym_index_expression, - ACTIONS(19), 2, - sym_float, - sym_string, - ACTIONS(21), 2, - anon_sym_true, - anon_sym_false, - STATE(69), 2, - sym_function_call, - sym_yield, - STATE(87), 2, - sym_value, - sym_index, - STATE(63), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(81), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(41), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [10232] = 20, - ACTIONS(3), 1, - sym__comment, - ACTIONS(146), 1, - anon_sym_new, - ACTIONS(182), 1, - anon_sym_struct, - ACTIONS(186), 1, - sym_integer, - ACTIONS(192), 1, - anon_sym_LBRACK, - ACTIONS(194), 1, - anon_sym_none, - ACTIONS(196), 1, - anon_sym_some, - ACTIONS(431), 1, - anon_sym_LBRACE, - ACTIONS(551), 1, - anon_sym_LPAREN, - ACTIONS(565), 1, - sym_identifier, - STATE(106), 1, - sym_function_expression, - STATE(363), 1, - sym_expression, - STATE(476), 1, + STATE(416), 1, sym_index_expression, ACTIONS(188), 2, sym_float, @@ -14388,19 +12249,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(190), 2, anon_sym_true, anon_sym_false, - STATE(165), 2, + STATE(263), 2, sym_value, sym_index, - STATE(121), 3, - sym__function_expression_kind, + STATE(264), 2, sym_function_call, sym_yield, - STATE(288), 4, + STATE(278), 4, sym__expression_kind, sym_new, sym_math, sym_logic, - STATE(129), 7, + STATE(230), 7, sym_structure, sym_boolean, sym_list, @@ -14418,7 +12278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_output, anon_sym_random, anon_sym_string, - [10315] = 21, + [7666] = 22, ACTIONS(3), 1, sym__comment, ACTIONS(176), 1, @@ -14435,17 +12295,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_none, ACTIONS(196), 1, anon_sym_some, - ACTIONS(427), 1, + ACTIONS(409), 1, sym_identifier, - ACTIONS(431), 1, + ACTIONS(411), 1, anon_sym_LBRACE, - STATE(71), 1, + STATE(84), 1, sym__function_expression_kind, - STATE(98), 1, + STATE(262), 1, + sym_range, + STATE(289), 1, sym_expression, - STATE(457), 1, + STATE(397), 1, sym_function_expression, - STATE(476), 1, + STATE(416), 1, sym_index_expression, ACTIONS(188), 2, sym_float, @@ -14453,18 +12315,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(190), 2, anon_sym_true, anon_sym_false, - STATE(119), 2, - sym_function_call, - sym_yield, - STATE(126), 2, + STATE(263), 2, sym_value, sym_index, - STATE(125), 4, + STATE(264), 2, + sym_function_call, + sym_yield, + STATE(278), 4, sym__expression_kind, sym_new, sym_math, sym_logic, - STATE(129), 7, + STATE(230), 7, sym_structure, sym_boolean, sym_list, @@ -14482,7 +12344,1044 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_output, anon_sym_random, anon_sym_string, - [10400] = 21, + [7754] = 22, + ACTIONS(3), 1, + sym__comment, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(182), 1, + anon_sym_struct, + ACTIONS(184), 1, + anon_sym_new, + ACTIONS(186), 1, + sym_integer, + ACTIONS(192), 1, + anon_sym_LBRACK, + ACTIONS(194), 1, + anon_sym_none, + ACTIONS(196), 1, + anon_sym_some, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(551), 1, + sym_identifier, + STATE(84), 1, + sym__function_expression_kind, + STATE(262), 1, + sym_range, + STATE(305), 1, + sym_expression, + STATE(397), 1, + sym_function_expression, + STATE(416), 1, + sym_index_expression, + ACTIONS(188), 2, + sym_float, + sym_string, + ACTIONS(190), 2, + anon_sym_true, + anon_sym_false, + STATE(306), 2, + sym_value, + sym_index, + STATE(311), 2, + sym_function_call, + sym_yield, + STATE(278), 4, + sym__expression_kind, + sym_new, + sym_math, + sym_logic, + STATE(230), 7, + sym_structure, + sym_boolean, + sym_list, + sym_map, + sym_option, + sym_function, + sym_built_in_value, + ACTIONS(206), 9, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [7842] = 22, + ACTIONS(3), 1, + sym__comment, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(182), 1, + anon_sym_struct, + ACTIONS(184), 1, + anon_sym_new, + ACTIONS(186), 1, + sym_integer, + ACTIONS(192), 1, + anon_sym_LBRACK, + ACTIONS(194), 1, + anon_sym_none, + ACTIONS(196), 1, + anon_sym_some, + ACTIONS(409), 1, + sym_identifier, + ACTIONS(411), 1, + anon_sym_LBRACE, + STATE(84), 1, + sym__function_expression_kind, + STATE(262), 1, + sym_range, + STATE(300), 1, + sym_expression, + STATE(397), 1, + sym_function_expression, + STATE(416), 1, + sym_index_expression, + ACTIONS(188), 2, + sym_float, + sym_string, + ACTIONS(190), 2, + anon_sym_true, + anon_sym_false, + STATE(263), 2, + sym_value, + sym_index, + STATE(264), 2, + sym_function_call, + sym_yield, + STATE(278), 4, + sym__expression_kind, + sym_new, + sym_math, + sym_logic, + STATE(230), 7, + sym_structure, + sym_boolean, + sym_list, + sym_map, + sym_option, + sym_function, + sym_built_in_value, + ACTIONS(206), 9, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [7930] = 22, + ACTIONS(3), 1, + sym__comment, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(182), 1, + anon_sym_struct, + ACTIONS(184), 1, + anon_sym_new, + ACTIONS(186), 1, + sym_integer, + ACTIONS(192), 1, + anon_sym_LBRACK, + ACTIONS(194), 1, + anon_sym_none, + ACTIONS(196), 1, + anon_sym_some, + ACTIONS(409), 1, + sym_identifier, + ACTIONS(411), 1, + anon_sym_LBRACE, + STATE(84), 1, + sym__function_expression_kind, + STATE(262), 1, + sym_range, + STATE(288), 1, + sym_expression, + STATE(397), 1, + sym_function_expression, + STATE(416), 1, + sym_index_expression, + ACTIONS(188), 2, + sym_float, + sym_string, + ACTIONS(190), 2, + anon_sym_true, + anon_sym_false, + STATE(263), 2, + sym_value, + sym_index, + STATE(264), 2, + sym_function_call, + sym_yield, + STATE(278), 4, + sym__expression_kind, + sym_new, + sym_math, + sym_logic, + STATE(230), 7, + sym_structure, + sym_boolean, + sym_list, + sym_map, + sym_option, + sym_function, + sym_built_in_value, + ACTIONS(206), 9, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [8018] = 22, + ACTIONS(3), 1, + sym__comment, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(182), 1, + anon_sym_struct, + ACTIONS(184), 1, + anon_sym_new, + ACTIONS(186), 1, + sym_integer, + ACTIONS(192), 1, + anon_sym_LBRACK, + ACTIONS(194), 1, + anon_sym_none, + ACTIONS(196), 1, + anon_sym_some, + ACTIONS(409), 1, + sym_identifier, + ACTIONS(411), 1, + anon_sym_LBRACE, + STATE(84), 1, + sym__function_expression_kind, + STATE(262), 1, + sym_range, + STATE(290), 1, + sym_expression, + STATE(397), 1, + sym_function_expression, + STATE(416), 1, + sym_index_expression, + ACTIONS(188), 2, + sym_float, + sym_string, + ACTIONS(190), 2, + anon_sym_true, + anon_sym_false, + STATE(263), 2, + sym_value, + sym_index, + STATE(264), 2, + sym_function_call, + sym_yield, + STATE(278), 4, + sym__expression_kind, + sym_new, + sym_math, + sym_logic, + STATE(230), 7, + sym_structure, + sym_boolean, + sym_list, + sym_map, + sym_option, + sym_function, + sym_built_in_value, + ACTIONS(206), 9, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [8106] = 22, + ACTIONS(3), 1, + sym__comment, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(182), 1, + anon_sym_struct, + ACTIONS(184), 1, + anon_sym_new, + ACTIONS(186), 1, + sym_integer, + ACTIONS(192), 1, + anon_sym_LBRACK, + ACTIONS(194), 1, + anon_sym_none, + ACTIONS(196), 1, + anon_sym_some, + ACTIONS(409), 1, + sym_identifier, + ACTIONS(411), 1, + anon_sym_LBRACE, + STATE(84), 1, + sym__function_expression_kind, + STATE(262), 1, + sym_range, + STATE(284), 1, + sym_expression, + STATE(397), 1, + sym_function_expression, + STATE(416), 1, + sym_index_expression, + ACTIONS(188), 2, + sym_float, + sym_string, + ACTIONS(190), 2, + anon_sym_true, + anon_sym_false, + STATE(263), 2, + sym_value, + sym_index, + STATE(264), 2, + sym_function_call, + sym_yield, + STATE(278), 4, + sym__expression_kind, + sym_new, + sym_math, + sym_logic, + STATE(230), 7, + sym_structure, + sym_boolean, + sym_list, + sym_map, + sym_option, + sym_function, + sym_built_in_value, + ACTIONS(206), 9, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [8194] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(216), 1, + anon_sym_COLON, + ACTIONS(324), 20, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + ACTIONS(212), 21, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_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, + [8246] = 22, + ACTIONS(3), 1, + sym__comment, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(182), 1, + anon_sym_struct, + ACTIONS(184), 1, + anon_sym_new, + ACTIONS(186), 1, + sym_integer, + ACTIONS(192), 1, + anon_sym_LBRACK, + ACTIONS(194), 1, + anon_sym_none, + ACTIONS(196), 1, + anon_sym_some, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(551), 1, + sym_identifier, + STATE(84), 1, + sym__function_expression_kind, + STATE(262), 1, + sym_range, + STATE(299), 1, + sym_expression, + STATE(397), 1, + sym_function_expression, + STATE(416), 1, + sym_index_expression, + ACTIONS(188), 2, + sym_float, + sym_string, + ACTIONS(190), 2, + anon_sym_true, + anon_sym_false, + STATE(306), 2, + sym_value, + sym_index, + STATE(311), 2, + sym_function_call, + sym_yield, + STATE(278), 4, + sym__expression_kind, + sym_new, + sym_math, + sym_logic, + STATE(230), 7, + sym_structure, + sym_boolean, + sym_list, + sym_map, + sym_option, + sym_function, + sym_built_in_value, + ACTIONS(206), 9, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [8334] = 22, + ACTIONS(3), 1, + sym__comment, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(182), 1, + anon_sym_struct, + ACTIONS(184), 1, + anon_sym_new, + ACTIONS(186), 1, + sym_integer, + ACTIONS(192), 1, + anon_sym_LBRACK, + ACTIONS(194), 1, + anon_sym_none, + ACTIONS(196), 1, + anon_sym_some, + ACTIONS(409), 1, + sym_identifier, + ACTIONS(411), 1, + anon_sym_LBRACE, + STATE(84), 1, + sym__function_expression_kind, + STATE(262), 1, + sym_range, + STATE(287), 1, + sym_expression, + STATE(397), 1, + sym_function_expression, + STATE(416), 1, + sym_index_expression, + ACTIONS(188), 2, + sym_float, + sym_string, + ACTIONS(190), 2, + anon_sym_true, + anon_sym_false, + STATE(263), 2, + sym_value, + sym_index, + STATE(264), 2, + sym_function_call, + sym_yield, + STATE(278), 4, + sym__expression_kind, + sym_new, + sym_math, + sym_logic, + STATE(230), 7, + sym_structure, + sym_boolean, + sym_list, + sym_map, + sym_option, + sym_function, + sym_built_in_value, + ACTIONS(206), 9, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [8422] = 22, + ACTIONS(3), 1, + sym__comment, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(182), 1, + anon_sym_struct, + ACTIONS(184), 1, + anon_sym_new, + ACTIONS(186), 1, + sym_integer, + ACTIONS(192), 1, + anon_sym_LBRACK, + ACTIONS(194), 1, + anon_sym_none, + ACTIONS(196), 1, + anon_sym_some, + ACTIONS(409), 1, + sym_identifier, + ACTIONS(411), 1, + anon_sym_LBRACE, + STATE(84), 1, + sym__function_expression_kind, + STATE(262), 1, + sym_range, + STATE(292), 1, + sym_expression, + STATE(397), 1, + sym_function_expression, + STATE(416), 1, + sym_index_expression, + ACTIONS(188), 2, + sym_float, + sym_string, + ACTIONS(190), 2, + anon_sym_true, + anon_sym_false, + STATE(263), 2, + sym_value, + sym_index, + STATE(264), 2, + sym_function_call, + sym_yield, + STATE(278), 4, + sym__expression_kind, + sym_new, + sym_math, + sym_logic, + STATE(230), 7, + sym_structure, + sym_boolean, + sym_list, + sym_map, + sym_option, + sym_function, + sym_built_in_value, + ACTIONS(206), 9, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [8510] = 22, + ACTIONS(3), 1, + sym__comment, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(182), 1, + anon_sym_struct, + ACTIONS(184), 1, + anon_sym_new, + ACTIONS(186), 1, + sym_integer, + ACTIONS(192), 1, + anon_sym_LBRACK, + ACTIONS(194), 1, + anon_sym_none, + ACTIONS(196), 1, + anon_sym_some, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(551), 1, + sym_identifier, + STATE(84), 1, + sym__function_expression_kind, + STATE(262), 1, + sym_range, + STATE(298), 1, + sym_expression, + STATE(397), 1, + sym_function_expression, + STATE(416), 1, + sym_index_expression, + ACTIONS(188), 2, + sym_float, + sym_string, + ACTIONS(190), 2, + anon_sym_true, + anon_sym_false, + STATE(306), 2, + sym_value, + sym_index, + STATE(311), 2, + sym_function_call, + sym_yield, + STATE(278), 4, + sym__expression_kind, + sym_new, + sym_math, + sym_logic, + STATE(230), 7, + sym_structure, + sym_boolean, + sym_list, + sym_map, + sym_option, + sym_function, + sym_built_in_value, + ACTIONS(206), 9, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [8598] = 22, + ACTIONS(3), 1, + sym__comment, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(182), 1, + anon_sym_struct, + ACTIONS(184), 1, + anon_sym_new, + ACTIONS(186), 1, + sym_integer, + ACTIONS(192), 1, + anon_sym_LBRACK, + ACTIONS(194), 1, + anon_sym_none, + ACTIONS(196), 1, + anon_sym_some, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(551), 1, + sym_identifier, + STATE(84), 1, + sym__function_expression_kind, + STATE(262), 1, + sym_range, + STATE(301), 1, + sym_expression, + STATE(397), 1, + sym_function_expression, + STATE(416), 1, + sym_index_expression, + ACTIONS(188), 2, + sym_float, + sym_string, + ACTIONS(190), 2, + anon_sym_true, + anon_sym_false, + STATE(306), 2, + sym_value, + sym_index, + STATE(311), 2, + sym_function_call, + sym_yield, + STATE(278), 4, + sym__expression_kind, + sym_new, + sym_math, + sym_logic, + STATE(230), 7, + sym_structure, + sym_boolean, + sym_list, + sym_map, + sym_option, + sym_function, + sym_built_in_value, + ACTIONS(206), 9, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [8686] = 22, + ACTIONS(3), 1, + sym__comment, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(182), 1, + anon_sym_struct, + ACTIONS(184), 1, + anon_sym_new, + ACTIONS(186), 1, + sym_integer, + ACTIONS(192), 1, + anon_sym_LBRACK, + ACTIONS(194), 1, + anon_sym_none, + ACTIONS(196), 1, + anon_sym_some, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(551), 1, + sym_identifier, + STATE(84), 1, + sym__function_expression_kind, + STATE(262), 1, + sym_range, + STATE(303), 1, + sym_expression, + STATE(397), 1, + sym_function_expression, + STATE(416), 1, + sym_index_expression, + ACTIONS(188), 2, + sym_float, + sym_string, + ACTIONS(190), 2, + anon_sym_true, + anon_sym_false, + STATE(306), 2, + sym_value, + sym_index, + STATE(311), 2, + sym_function_call, + sym_yield, + STATE(278), 4, + sym__expression_kind, + sym_new, + sym_math, + sym_logic, + STATE(230), 7, + sym_structure, + sym_boolean, + sym_list, + sym_map, + sym_option, + sym_function, + sym_built_in_value, + ACTIONS(206), 9, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [8774] = 21, + ACTIONS(3), 1, + sym__comment, + ACTIONS(182), 1, + anon_sym_struct, + ACTIONS(184), 1, + anon_sym_new, + ACTIONS(186), 1, + sym_integer, + ACTIONS(192), 1, + anon_sym_LBRACK, + ACTIONS(194), 1, + anon_sym_none, + ACTIONS(196), 1, + anon_sym_some, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(553), 1, + sym_identifier, + ACTIONS(555), 1, + anon_sym_LPAREN, + STATE(262), 1, + sym_range, + STATE(268), 1, + sym_function_expression, + STATE(320), 1, + sym_expression, + STATE(416), 1, + sym_index_expression, + ACTIONS(188), 2, + sym_float, + sym_string, + ACTIONS(190), 2, + anon_sym_true, + anon_sym_false, + STATE(259), 2, + sym_value, + sym_index, + STATE(269), 3, + sym__function_expression_kind, + sym_function_call, + sym_yield, + STATE(278), 4, + sym__expression_kind, + sym_new, + sym_math, + sym_logic, + STATE(230), 7, + sym_structure, + sym_boolean, + sym_list, + sym_map, + sym_option, + sym_function, + sym_built_in_value, + ACTIONS(206), 9, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [8860] = 22, + ACTIONS(3), 1, + sym__comment, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(182), 1, + anon_sym_struct, + ACTIONS(184), 1, + anon_sym_new, + ACTIONS(186), 1, + sym_integer, + ACTIONS(192), 1, + anon_sym_LBRACK, + ACTIONS(194), 1, + anon_sym_none, + ACTIONS(196), 1, + anon_sym_some, + ACTIONS(409), 1, + sym_identifier, + ACTIONS(411), 1, + anon_sym_LBRACE, + STATE(84), 1, + sym__function_expression_kind, + STATE(262), 1, + sym_range, + STATE(286), 1, + sym_expression, + STATE(397), 1, + sym_function_expression, + STATE(416), 1, + sym_index_expression, + ACTIONS(188), 2, + sym_float, + sym_string, + ACTIONS(190), 2, + anon_sym_true, + anon_sym_false, + STATE(263), 2, + sym_value, + sym_index, + STATE(264), 2, + sym_function_call, + sym_yield, + STATE(278), 4, + sym__expression_kind, + sym_new, + sym_math, + sym_logic, + STATE(230), 7, + sym_structure, + sym_boolean, + sym_list, + sym_map, + sym_option, + sym_function, + sym_built_in_value, + ACTIONS(206), 9, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [8948] = 22, + ACTIONS(3), 1, + sym__comment, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(182), 1, + anon_sym_struct, + ACTIONS(184), 1, + anon_sym_new, + ACTIONS(186), 1, + sym_integer, + ACTIONS(192), 1, + anon_sym_LBRACK, + ACTIONS(194), 1, + anon_sym_none, + ACTIONS(196), 1, + anon_sym_some, + ACTIONS(409), 1, + sym_identifier, + ACTIONS(411), 1, + anon_sym_LBRACE, + STATE(84), 1, + sym__function_expression_kind, + STATE(262), 1, + sym_range, + STATE(291), 1, + sym_expression, + STATE(397), 1, + sym_function_expression, + STATE(416), 1, + sym_index_expression, + ACTIONS(188), 2, + sym_float, + sym_string, + ACTIONS(190), 2, + anon_sym_true, + anon_sym_false, + STATE(263), 2, + sym_value, + sym_index, + STATE(264), 2, + sym_function_call, + sym_yield, + STATE(278), 4, + sym__expression_kind, + sym_new, + sym_math, + sym_logic, + STATE(230), 7, + sym_structure, + sym_boolean, + sym_list, + sym_map, + sym_option, + sym_function, + sym_built_in_value, + ACTIONS(206), 9, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [9036] = 22, + ACTIONS(3), 1, + sym__comment, + ACTIONS(176), 1, + anon_sym_LPAREN, + ACTIONS(182), 1, + anon_sym_struct, + ACTIONS(184), 1, + anon_sym_new, + ACTIONS(186), 1, + sym_integer, + ACTIONS(192), 1, + anon_sym_LBRACK, + ACTIONS(194), 1, + anon_sym_none, + ACTIONS(196), 1, + anon_sym_some, + ACTIONS(409), 1, + sym_identifier, + ACTIONS(411), 1, + anon_sym_LBRACE, + STATE(84), 1, + sym__function_expression_kind, + STATE(262), 1, + sym_range, + STATE(285), 1, + sym_expression, + STATE(397), 1, + sym_function_expression, + STATE(416), 1, + sym_index_expression, + ACTIONS(188), 2, + sym_float, + sym_string, + ACTIONS(190), 2, + anon_sym_true, + anon_sym_false, + STATE(263), 2, + sym_value, + sym_index, + STATE(264), 2, + sym_function_call, + sym_yield, + STATE(278), 4, + sym__expression_kind, + sym_new, + sym_math, + sym_logic, + STATE(230), 7, + sym_structure, + sym_boolean, + sym_list, + sym_map, + sym_option, + sym_function, + sym_built_in_value, + ACTIONS(206), 9, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [9124] = 22, ACTIONS(3), 1, sym__comment, ACTIONS(7), 1, @@ -14499,17 +13398,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_none, ACTIONS(27), 1, anon_sym_some, - ACTIONS(557), 1, + ACTIONS(539), 1, sym_identifier, - ACTIONS(559), 1, + ACTIONS(541), 1, anon_sym_LBRACE, - STATE(52), 1, + STATE(75), 1, sym_expression, - STATE(71), 1, + STATE(77), 1, + sym_range, + STATE(84), 1, sym__function_expression_kind, - STATE(481), 1, + STATE(419), 1, sym_function_expression, - STATE(482), 1, + STATE(421), 1, sym_index_expression, ACTIONS(19), 2, sym_float, @@ -14517,18 +13418,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(21), 2, anon_sym_true, anon_sym_false, - STATE(69), 2, - sym_function_call, - sym_yield, - STATE(87), 2, + STATE(78), 2, sym_value, sym_index, - STATE(63), 4, + STATE(85), 2, + sym_function_call, + sym_yield, + STATE(90), 4, sym__expression_kind, sym_new, sym_math, sym_logic, - STATE(81), 7, + STATE(70), 7, sym_structure, sym_boolean, sym_list, @@ -14546,32 +13447,501 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_output, anon_sym_random, anon_sym_string, - [10485] = 10, + [9212] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(358), 1, + ACTIONS(362), 20, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, anon_sym_DASH, - ACTIONS(485), 1, - anon_sym_DASH_GT, - STATE(167), 1, - sym_math_operator, - STATE(199), 1, - sym_logic_operator, - ACTIONS(362), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(356), 3, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + ACTIONS(360), 21, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(360), 6, 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(352), 9, + anon_sym_DASH_GT, + [9261] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(366), 20, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + ACTIONS(364), 21, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_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, + [9310] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(358), 20, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + ACTIONS(356), 21, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_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, + [9359] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(350), 20, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + ACTIONS(348), 21, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_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, + [9408] = 11, + ACTIONS(3), 1, + sym__comment, + ACTIONS(314), 1, + anon_sym_DASH, + ACTIONS(537), 1, + anon_sym_DASH_GT, + ACTIONS(557), 1, + anon_sym_SEMI, + STATE(148), 1, + sym_logic_operator, + STATE(151), 1, + sym_math_operator, + ACTIONS(318), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(312), 3, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(316), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(306), 8, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(308), 17, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [9473] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(338), 20, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + ACTIONS(336), 21, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_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, + [9522] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(334), 20, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + ACTIONS(332), 21, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_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, + [9571] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(342), 20, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + ACTIONS(340), 21, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_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, + [9620] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(330), 20, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + ACTIONS(328), 21, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_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, + [9669] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(212), 1, + anon_sym_LPAREN, + ACTIONS(208), 20, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_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, + ACTIONS(210), 20, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [9720] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(314), 1, + anon_sym_DASH, + ACTIONS(537), 1, + anon_sym_DASH_GT, + STATE(148), 1, + sym_logic_operator, + STATE(151), 1, + sym_math_operator, + ACTIONS(318), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(312), 3, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(316), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(306), 9, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_COMMA, @@ -14581,7 +13951,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string, anon_sym_LBRACK, anon_sym_STAR, - ACTIONS(354), 17, + ACTIONS(308), 17, sym_identifier, anon_sym_struct, anon_sym_new, @@ -14599,61 +13969,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_output, anon_sym_random, anon_sym_string, - [10548] = 21, + [9783] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(144), 1, - anon_sym_struct, - ACTIONS(146), 1, - anon_sym_new, - ACTIONS(148), 1, - sym_integer, - ACTIONS(154), 1, - anon_sym_LBRACK, - ACTIONS(156), 1, - anon_sym_none, - ACTIONS(158), 1, - anon_sym_some, - ACTIONS(419), 1, - anon_sym_LBRACE, - ACTIONS(547), 1, + ACTIONS(346), 20, sym_identifier, - STATE(71), 1, - sym__function_expression_kind, - STATE(329), 1, - sym_expression, - STATE(471), 1, - sym_function_expression, - STATE(488), 1, - sym_index_expression, - ACTIONS(150), 2, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + ACTIONS(344), 21, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, sym_float, sym_string, - ACTIONS(152), 2, + 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, + [9832] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(354), 20, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, anon_sym_true, anon_sym_false, - STATE(343), 2, - sym_function_call, - sym_yield, - STATE(344), 2, - sym_value, - sym_index, - STATE(288), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(279), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(172), 9, + anon_sym_none, + anon_sym_some, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, anon_sym_args, anon_sym_assert_equal, anon_sym_env, @@ -14663,1562 +14039,1158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_output, anon_sym_random, anon_sym_string, - [10633] = 20, + ACTIONS(352), 21, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_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, + [9881] = 11, ACTIONS(3), 1, sym__comment, - ACTIONS(13), 1, - anon_sym_struct, - ACTIONS(17), 1, - sym_integer, - ACTIONS(23), 1, - anon_sym_LBRACK, - ACTIONS(25), 1, - anon_sym_none, - ACTIONS(27), 1, - anon_sym_some, - ACTIONS(146), 1, - anon_sym_new, - ACTIONS(559), 1, - anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_DASH, + ACTIONS(537), 1, + anon_sym_DASH_GT, ACTIONS(563), 1, - anon_sym_LPAREN, - ACTIONS(567), 1, - sym_identifier, - STATE(66), 1, - sym_function_expression, - STATE(364), 1, - sym_expression, - STATE(482), 1, - sym_index_expression, - ACTIONS(19), 2, - sym_float, - sym_string, - ACTIONS(21), 2, - anon_sym_true, - anon_sym_false, - STATE(96), 2, - sym_value, - sym_index, - STATE(71), 3, - sym__function_expression_kind, - sym_function_call, - sym_yield, - STATE(288), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(81), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(41), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [10716] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(176), 1, - anon_sym_LPAREN, - ACTIONS(182), 1, - anon_sym_struct, - ACTIONS(184), 1, - anon_sym_new, - ACTIONS(186), 1, - sym_integer, - ACTIONS(192), 1, - anon_sym_LBRACK, - ACTIONS(194), 1, - anon_sym_none, - ACTIONS(196), 1, - anon_sym_some, - ACTIONS(427), 1, - sym_identifier, - ACTIONS(431), 1, - anon_sym_LBRACE, - STATE(71), 1, - sym__function_expression_kind, - STATE(145), 1, - sym_expression, - STATE(457), 1, - sym_function_expression, - STATE(476), 1, - sym_index_expression, - ACTIONS(188), 2, - sym_float, - sym_string, - ACTIONS(190), 2, - anon_sym_true, - anon_sym_false, - STATE(119), 2, - sym_function_call, - sym_yield, - STATE(126), 2, - sym_value, - sym_index, - STATE(125), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(129), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(206), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [10801] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(144), 1, - anon_sym_struct, - ACTIONS(146), 1, - anon_sym_new, - ACTIONS(148), 1, - sym_integer, - ACTIONS(154), 1, - anon_sym_LBRACK, - ACTIONS(156), 1, - anon_sym_none, - ACTIONS(158), 1, - anon_sym_some, - ACTIONS(417), 1, - sym_identifier, - ACTIONS(419), 1, - anon_sym_LBRACE, - STATE(71), 1, - sym__function_expression_kind, - STATE(327), 1, - sym_expression, - STATE(464), 1, - sym_index_expression, - STATE(471), 1, - sym_function_expression, - ACTIONS(150), 2, - sym_float, - sym_string, - ACTIONS(152), 2, - anon_sym_true, - anon_sym_false, - STATE(265), 2, - sym_value, - sym_index, - STATE(277), 2, - sym_function_call, - sym_yield, - STATE(288), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(279), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(172), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [10886] = 11, - ACTIONS(3), 1, - sym__comment, - ACTIONS(358), 1, - anon_sym_DASH, - ACTIONS(485), 1, - anon_sym_DASH_GT, - ACTIONS(569), 1, - anon_sym_SEMI, - STATE(167), 1, - sym_math_operator, - STATE(199), 1, + anon_sym_COMMA, + STATE(148), 1, sym_logic_operator, - ACTIONS(362), 2, + STATE(151), 1, + sym_math_operator, + ACTIONS(318), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(356), 3, + ACTIONS(312), 4, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(360), 6, + ACTIONS(316), 6, 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(352), 8, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(354), 17, - sym_identifier, - anon_sym_struct, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [10951] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(176), 1, - anon_sym_LPAREN, - ACTIONS(182), 1, - anon_sym_struct, - ACTIONS(184), 1, - anon_sym_new, - ACTIONS(186), 1, - sym_integer, - ACTIONS(192), 1, - anon_sym_LBRACK, - ACTIONS(194), 1, - anon_sym_none, - ACTIONS(196), 1, - anon_sym_some, - ACTIONS(427), 1, - sym_identifier, - ACTIONS(431), 1, - anon_sym_LBRACE, - STATE(71), 1, - sym__function_expression_kind, - STATE(95), 1, - sym_expression, - STATE(457), 1, - sym_function_expression, - STATE(476), 1, - sym_index_expression, - ACTIONS(188), 2, - sym_float, - sym_string, - ACTIONS(190), 2, - anon_sym_true, - anon_sym_false, - STATE(119), 2, - sym_function_call, - sym_yield, - STATE(126), 2, - sym_value, - sym_index, - STATE(125), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(129), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(206), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [11036] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(144), 1, - anon_sym_struct, - ACTIONS(146), 1, - anon_sym_new, - ACTIONS(148), 1, - sym_integer, - ACTIONS(154), 1, - anon_sym_LBRACK, - ACTIONS(156), 1, - anon_sym_none, - ACTIONS(158), 1, - anon_sym_some, - ACTIONS(419), 1, - anon_sym_LBRACE, - ACTIONS(547), 1, - sym_identifier, - STATE(71), 1, - sym__function_expression_kind, - STATE(330), 1, - sym_expression, - STATE(471), 1, - sym_function_expression, - STATE(488), 1, - sym_index_expression, - ACTIONS(150), 2, - sym_float, - sym_string, - ACTIONS(152), 2, - anon_sym_true, - anon_sym_false, - STATE(343), 2, - sym_function_call, - sym_yield, - STATE(344), 2, - sym_value, - sym_index, - STATE(288), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(279), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(172), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [11121] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(144), 1, - anon_sym_struct, - ACTIONS(146), 1, - anon_sym_new, - ACTIONS(148), 1, - sym_integer, - ACTIONS(154), 1, - anon_sym_LBRACK, - ACTIONS(156), 1, - anon_sym_none, - ACTIONS(158), 1, - anon_sym_some, - ACTIONS(417), 1, - sym_identifier, - ACTIONS(419), 1, - anon_sym_LBRACE, - STATE(71), 1, - sym__function_expression_kind, - STATE(273), 1, - sym_expression, - STATE(464), 1, - sym_index_expression, - STATE(471), 1, - sym_function_expression, - ACTIONS(150), 2, - sym_float, - sym_string, - ACTIONS(152), 2, - anon_sym_true, - anon_sym_false, - STATE(265), 2, - sym_value, - sym_index, - STATE(277), 2, - sym_function_call, - sym_yield, - STATE(288), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(279), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(172), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [11206] = 20, - ACTIONS(3), 1, - sym__comment, - ACTIONS(144), 1, - anon_sym_struct, - ACTIONS(146), 1, - anon_sym_new, - ACTIONS(148), 1, - sym_integer, - ACTIONS(154), 1, - anon_sym_LBRACK, - ACTIONS(156), 1, - anon_sym_none, - ACTIONS(158), 1, - anon_sym_some, - ACTIONS(419), 1, - anon_sym_LBRACE, - ACTIONS(555), 1, - anon_sym_LPAREN, - ACTIONS(571), 1, - sym_identifier, - STATE(289), 1, - sym_function_expression, - STATE(362), 1, - sym_expression, - STATE(464), 1, - sym_index_expression, - ACTIONS(150), 2, - sym_float, - sym_string, - ACTIONS(152), 2, - anon_sym_true, - anon_sym_false, - STATE(315), 2, - sym_value, - sym_index, - STATE(269), 3, - sym__function_expression_kind, - sym_function_call, - sym_yield, - STATE(288), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(279), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(172), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [11289] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(144), 1, - anon_sym_struct, - ACTIONS(146), 1, - anon_sym_new, - ACTIONS(148), 1, - sym_integer, - ACTIONS(154), 1, - anon_sym_LBRACK, - ACTIONS(156), 1, - anon_sym_none, - ACTIONS(158), 1, - anon_sym_some, - ACTIONS(417), 1, - sym_identifier, - ACTIONS(419), 1, - anon_sym_LBRACE, - STATE(71), 1, - sym__function_expression_kind, - STATE(317), 1, - sym_expression, - STATE(464), 1, - sym_index_expression, - STATE(471), 1, - sym_function_expression, - ACTIONS(150), 2, - sym_float, - sym_string, - ACTIONS(152), 2, - anon_sym_true, - anon_sym_false, - STATE(265), 2, - sym_value, - sym_index, - STATE(277), 2, - sym_function_call, - sym_yield, - STATE(288), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(279), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(172), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [11374] = 20, - ACTIONS(3), 1, - sym__comment, - ACTIONS(144), 1, - anon_sym_struct, - ACTIONS(146), 1, - anon_sym_new, - ACTIONS(148), 1, - sym_integer, - ACTIONS(154), 1, - anon_sym_LBRACK, - ACTIONS(156), 1, - anon_sym_none, - ACTIONS(158), 1, - anon_sym_some, - ACTIONS(419), 1, - anon_sym_LBRACE, - ACTIONS(555), 1, - anon_sym_LPAREN, - ACTIONS(571), 1, - sym_identifier, - STATE(289), 1, - sym_function_expression, - STATE(370), 1, - sym_expression, - STATE(488), 1, - sym_index_expression, - ACTIONS(150), 2, - sym_float, - sym_string, - ACTIONS(152), 2, - anon_sym_true, - anon_sym_false, - STATE(315), 2, - sym_value, - sym_index, - STATE(269), 3, - sym__function_expression_kind, - sym_function_call, - sym_yield, - STATE(288), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(279), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(172), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [11457] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(144), 1, - anon_sym_struct, - ACTIONS(146), 1, - anon_sym_new, - ACTIONS(148), 1, - sym_integer, - ACTIONS(154), 1, - anon_sym_LBRACK, - ACTIONS(156), 1, - anon_sym_none, - ACTIONS(158), 1, - anon_sym_some, - ACTIONS(419), 1, - anon_sym_LBRACE, - ACTIONS(547), 1, - sym_identifier, - STATE(71), 1, - sym__function_expression_kind, - STATE(357), 1, - sym_expression, - STATE(471), 1, - sym_function_expression, - STATE(488), 1, - sym_index_expression, - ACTIONS(150), 2, - sym_float, - sym_string, - ACTIONS(152), 2, - anon_sym_true, - anon_sym_false, - STATE(343), 2, - sym_function_call, - sym_yield, - STATE(344), 2, - sym_value, - sym_index, - STATE(288), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(279), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(172), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [11542] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(144), 1, - anon_sym_struct, - ACTIONS(146), 1, - anon_sym_new, - ACTIONS(148), 1, - sym_integer, - ACTIONS(154), 1, - anon_sym_LBRACK, - ACTIONS(156), 1, - anon_sym_none, - ACTIONS(158), 1, - anon_sym_some, - ACTIONS(419), 1, - anon_sym_LBRACE, - ACTIONS(547), 1, - sym_identifier, - STATE(71), 1, - sym__function_expression_kind, - STATE(349), 1, - sym_expression, - STATE(471), 1, - sym_function_expression, - STATE(488), 1, - sym_index_expression, - ACTIONS(150), 2, - sym_float, - sym_string, - ACTIONS(152), 2, - anon_sym_true, - anon_sym_false, - STATE(343), 2, - sym_function_call, - sym_yield, - STATE(344), 2, - sym_value, - sym_index, - STATE(288), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(279), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(172), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [11627] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(144), 1, - anon_sym_struct, - ACTIONS(146), 1, - anon_sym_new, - ACTIONS(148), 1, - sym_integer, - ACTIONS(154), 1, - anon_sym_LBRACK, - ACTIONS(156), 1, - anon_sym_none, - ACTIONS(158), 1, - anon_sym_some, - ACTIONS(417), 1, - sym_identifier, - ACTIONS(419), 1, - anon_sym_LBRACE, - STATE(71), 1, - sym__function_expression_kind, - STATE(338), 1, - sym_expression, - STATE(464), 1, - sym_index_expression, - STATE(471), 1, - sym_function_expression, - ACTIONS(150), 2, - sym_float, - sym_string, - ACTIONS(152), 2, - anon_sym_true, - anon_sym_false, - STATE(265), 2, - sym_value, - sym_index, - STATE(277), 2, - sym_function_call, - sym_yield, - STATE(288), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(279), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(172), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [11712] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(144), 1, - anon_sym_struct, - ACTIONS(146), 1, - anon_sym_new, - ACTIONS(148), 1, - sym_integer, - ACTIONS(154), 1, - anon_sym_LBRACK, - ACTIONS(156), 1, - anon_sym_none, - ACTIONS(158), 1, - anon_sym_some, - ACTIONS(419), 1, - anon_sym_LBRACE, - ACTIONS(547), 1, - sym_identifier, - STATE(71), 1, - sym__function_expression_kind, - STATE(332), 1, - sym_expression, - STATE(471), 1, - sym_function_expression, - STATE(488), 1, - sym_index_expression, - ACTIONS(150), 2, - sym_float, - sym_string, - ACTIONS(152), 2, - anon_sym_true, - anon_sym_false, - STATE(343), 2, - sym_function_call, - sym_yield, - STATE(344), 2, - sym_value, - sym_index, - STATE(288), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(279), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(172), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [11797] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(144), 1, - anon_sym_struct, - ACTIONS(146), 1, - anon_sym_new, - ACTIONS(148), 1, - sym_integer, - ACTIONS(154), 1, - anon_sym_LBRACK, - ACTIONS(156), 1, - anon_sym_none, - ACTIONS(158), 1, - anon_sym_some, - ACTIONS(417), 1, - sym_identifier, - ACTIONS(419), 1, - anon_sym_LBRACE, - STATE(71), 1, - sym__function_expression_kind, - STATE(316), 1, - sym_expression, - STATE(464), 1, - sym_index_expression, - STATE(471), 1, - sym_function_expression, - ACTIONS(150), 2, - sym_float, - sym_string, - ACTIONS(152), 2, - anon_sym_true, - anon_sym_false, - STATE(265), 2, - sym_value, - sym_index, - STATE(277), 2, - sym_function_call, - sym_yield, - STATE(288), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(279), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(172), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [11882] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(144), 1, - anon_sym_struct, - ACTIONS(146), 1, - anon_sym_new, - ACTIONS(148), 1, - sym_integer, - ACTIONS(154), 1, - anon_sym_LBRACK, - ACTIONS(156), 1, - anon_sym_none, - ACTIONS(158), 1, - anon_sym_some, - ACTIONS(417), 1, - sym_identifier, - ACTIONS(419), 1, - anon_sym_LBRACE, - STATE(71), 1, - sym__function_expression_kind, - STATE(337), 1, - sym_expression, - STATE(464), 1, - sym_index_expression, - STATE(471), 1, - sym_function_expression, - ACTIONS(150), 2, - sym_float, - sym_string, - ACTIONS(152), 2, - anon_sym_true, - anon_sym_false, - STATE(265), 2, - sym_value, - sym_index, - STATE(277), 2, - sym_function_call, - sym_yield, - STATE(288), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(279), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(172), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [11967] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - anon_sym_struct, - ACTIONS(15), 1, - anon_sym_new, - ACTIONS(17), 1, - sym_integer, - ACTIONS(23), 1, - anon_sym_LBRACK, - ACTIONS(25), 1, - anon_sym_none, - ACTIONS(27), 1, - anon_sym_some, - ACTIONS(557), 1, - sym_identifier, - ACTIONS(559), 1, - anon_sym_LBRACE, - STATE(54), 1, - sym_expression, - STATE(71), 1, - sym__function_expression_kind, - STATE(481), 1, - sym_function_expression, - STATE(482), 1, - sym_index_expression, - ACTIONS(19), 2, - sym_float, - sym_string, - ACTIONS(21), 2, - anon_sym_true, - anon_sym_false, - STATE(69), 2, - sym_function_call, - sym_yield, - STATE(87), 2, - sym_value, - sym_index, - STATE(63), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(81), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(41), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [12052] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(176), 1, - anon_sym_LPAREN, - ACTIONS(182), 1, - anon_sym_struct, - ACTIONS(184), 1, - anon_sym_new, - ACTIONS(186), 1, - sym_integer, - ACTIONS(192), 1, - anon_sym_LBRACK, - ACTIONS(194), 1, - anon_sym_none, - ACTIONS(196), 1, - anon_sym_some, - ACTIONS(427), 1, - sym_identifier, - ACTIONS(431), 1, - anon_sym_LBRACE, - STATE(71), 1, - sym__function_expression_kind, - STATE(97), 1, - sym_expression, - STATE(457), 1, - sym_function_expression, - STATE(476), 1, - sym_index_expression, - ACTIONS(188), 2, - sym_float, - sym_string, - ACTIONS(190), 2, - anon_sym_true, - anon_sym_false, - STATE(119), 2, - sym_function_call, - sym_yield, - STATE(126), 2, - sym_value, - sym_index, - STATE(125), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(129), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(206), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [12137] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(144), 1, - anon_sym_struct, - ACTIONS(146), 1, - anon_sym_new, - ACTIONS(148), 1, - sym_integer, - ACTIONS(154), 1, - anon_sym_LBRACK, - ACTIONS(156), 1, - anon_sym_none, - ACTIONS(158), 1, - anon_sym_some, - ACTIONS(417), 1, - sym_identifier, - ACTIONS(419), 1, - anon_sym_LBRACE, - STATE(71), 1, - sym__function_expression_kind, - STATE(348), 1, - sym_expression, - STATE(464), 1, - sym_index_expression, - STATE(471), 1, - sym_function_expression, - ACTIONS(150), 2, - sym_float, - sym_string, - ACTIONS(152), 2, - anon_sym_true, - anon_sym_false, - STATE(265), 2, - sym_value, - sym_index, - STATE(277), 2, - sym_function_call, - sym_yield, - STATE(288), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(279), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(172), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [12222] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(144), 1, - anon_sym_struct, - ACTIONS(146), 1, - anon_sym_new, - ACTIONS(148), 1, - sym_integer, - ACTIONS(154), 1, - anon_sym_LBRACK, - ACTIONS(156), 1, - anon_sym_none, - ACTIONS(158), 1, - anon_sym_some, - ACTIONS(419), 1, - anon_sym_LBRACE, - ACTIONS(547), 1, - sym_identifier, - STATE(71), 1, - sym__function_expression_kind, - STATE(354), 1, - sym_expression, - STATE(471), 1, - sym_function_expression, - STATE(488), 1, - sym_index_expression, - ACTIONS(150), 2, - sym_float, - sym_string, - ACTIONS(152), 2, - anon_sym_true, - anon_sym_false, - STATE(343), 2, - sym_function_call, - sym_yield, - STATE(344), 2, - sym_value, - sym_index, - STATE(288), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(279), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(172), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [12307] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(144), 1, - anon_sym_struct, - ACTIONS(146), 1, - anon_sym_new, - ACTIONS(148), 1, - sym_integer, - ACTIONS(154), 1, - anon_sym_LBRACK, - ACTIONS(156), 1, - anon_sym_none, - ACTIONS(158), 1, - anon_sym_some, - ACTIONS(417), 1, - sym_identifier, - ACTIONS(419), 1, - anon_sym_LBRACE, - STATE(71), 1, - sym__function_expression_kind, - STATE(328), 1, - sym_expression, - STATE(464), 1, - sym_index_expression, - STATE(471), 1, - sym_function_expression, - ACTIONS(150), 2, - sym_float, - sym_string, - ACTIONS(152), 2, - anon_sym_true, - anon_sym_false, - STATE(265), 2, - sym_value, - sym_index, - STATE(277), 2, - sym_function_call, - sym_yield, - STATE(288), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(279), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(172), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [12392] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(144), 1, - anon_sym_struct, - ACTIONS(146), 1, - anon_sym_new, - ACTIONS(148), 1, - sym_integer, - ACTIONS(154), 1, - anon_sym_LBRACK, - ACTIONS(156), 1, - anon_sym_none, - ACTIONS(158), 1, - anon_sym_some, - ACTIONS(417), 1, - sym_identifier, - ACTIONS(419), 1, - anon_sym_LBRACE, - STATE(71), 1, - sym__function_expression_kind, - STATE(334), 1, - sym_expression, - STATE(464), 1, - sym_index_expression, - STATE(471), 1, - sym_function_expression, - ACTIONS(150), 2, - sym_float, - sym_string, - ACTIONS(152), 2, - anon_sym_true, - anon_sym_false, - STATE(265), 2, - sym_value, - sym_index, - STATE(277), 2, - sym_function_call, - sym_yield, - STATE(288), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(279), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(172), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [12477] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(144), 1, - anon_sym_struct, - ACTIONS(146), 1, - anon_sym_new, - ACTIONS(148), 1, - sym_integer, - ACTIONS(154), 1, - anon_sym_LBRACK, - ACTIONS(156), 1, - anon_sym_none, - ACTIONS(158), 1, - anon_sym_some, - ACTIONS(417), 1, - sym_identifier, - ACTIONS(419), 1, - anon_sym_LBRACE, - STATE(71), 1, - sym__function_expression_kind, - STATE(335), 1, - sym_expression, - STATE(464), 1, - sym_index_expression, - STATE(471), 1, - sym_function_expression, - ACTIONS(150), 2, - sym_float, - sym_string, - ACTIONS(152), 2, - anon_sym_true, - anon_sym_false, - STATE(265), 2, - sym_value, - sym_index, - STATE(277), 2, - sym_function_call, - sym_yield, - STATE(288), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(279), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(172), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [12562] = 19, - ACTIONS(3), 1, - sym__comment, - ACTIONS(146), 1, - anon_sym_new, - ACTIONS(182), 1, - anon_sym_struct, - ACTIONS(186), 1, - sym_integer, - ACTIONS(192), 1, - anon_sym_LBRACK, - ACTIONS(194), 1, - anon_sym_none, - ACTIONS(196), 1, - anon_sym_some, - ACTIONS(431), 1, - anon_sym_LBRACE, - ACTIONS(549), 1, - sym_identifier, - ACTIONS(551), 1, - anon_sym_LPAREN, - STATE(106), 1, - sym_function_expression, - STATE(374), 1, - sym_expression, - STATE(485), 1, - sym_index_expression, - ACTIONS(188), 2, - sym_float, - sym_string, - ACTIONS(190), 2, - anon_sym_true, - anon_sym_false, - STATE(288), 4, - sym__expression_kind, - sym_new, - sym_math, - sym_logic, - STATE(121), 5, - sym_value, - sym_index, - sym__function_expression_kind, - sym_function_call, - sym_yield, - STATE(129), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(206), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [12643] = 11, - ACTIONS(3), 1, - sym__comment, - ACTIONS(358), 1, - anon_sym_DASH, - ACTIONS(485), 1, - anon_sym_DASH_GT, - ACTIONS(577), 1, - anon_sym_COMMA, - STATE(167), 1, - sym_math_operator, - STATE(199), 1, - sym_logic_operator, - ACTIONS(362), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(356), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(360), 6, - 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(575), 6, + ACTIONS(561), 6, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, sym_float, sym_string, anon_sym_LBRACK, + ACTIONS(559), 17, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [9945] = 11, + ACTIONS(3), 1, + sym__comment, + ACTIONS(314), 1, + anon_sym_DASH, + ACTIONS(537), 1, + anon_sym_DASH_GT, + ACTIONS(569), 1, + anon_sym_COMMA, + STATE(148), 1, + sym_logic_operator, + STATE(151), 1, + sym_math_operator, + ACTIONS(318), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(312), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(316), 6, + 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(567), 6, + anon_sym_LPAREN, + anon_sym_LBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(565), 17, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [10009] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(575), 1, + anon_sym_elseif, + ACTIONS(577), 1, + anon_sym_else, + STATE(209), 1, + sym_else, + STATE(191), 2, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(571), 9, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(573), 23, + anon_sym_async, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [10062] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(575), 1, + anon_sym_elseif, + ACTIONS(577), 1, + anon_sym_else, + STATE(211), 1, + sym_else, + STATE(192), 2, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(579), 9, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(581), 23, + anon_sym_async, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [10115] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(587), 1, + anon_sym_elseif, + STATE(192), 2, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(583), 9, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(585), 24, + anon_sym_async, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [10163] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(272), 10, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_asyncfor, + ACTIONS(274), 24, + anon_sym_async, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [10205] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(280), 10, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_asyncfor, + ACTIONS(282), 24, + anon_sym_async, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [10247] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(590), 10, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_asyncfor, + ACTIONS(592), 24, + anon_sym_async, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [10289] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(264), 10, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_asyncfor, + ACTIONS(266), 24, + anon_sym_async, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [10331] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(594), 10, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_asyncfor, + ACTIONS(596), 24, + anon_sym_async, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [10373] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(598), 9, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(600), 23, + anon_sym_async, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [10413] = 16, + ACTIONS(3), 1, + sym__comment, + ACTIONS(13), 1, + anon_sym_struct, + ACTIONS(17), 1, + sym_integer, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_none, + ACTIONS(27), 1, + anon_sym_some, + ACTIONS(541), 1, + anon_sym_LBRACE, + ACTIONS(602), 1, + sym_identifier, + ACTIONS(604), 1, + anon_sym_LPAREN, + STATE(57), 1, + sym_index_expression, + STATE(71), 1, + sym_range, + ACTIONS(19), 2, + sym_float, + sym_string, + ACTIONS(21), 2, + anon_sym_true, + anon_sym_false, + STATE(58), 2, + sym_value, + sym_index, + STATE(70), 7, + sym_structure, + sym_boolean, + sym_list, + sym_map, + sym_option, + sym_function, + sym_built_in_value, + ACTIONS(41), 9, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [10479] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(310), 1, + anon_sym_SEMI, + ACTIONS(306), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(308), 23, + anon_sym_async, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [10521] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(306), 9, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(308), 23, + anon_sym_async, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [10561] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(606), 9, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(608), 23, + anon_sym_async, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [10601] = 16, + ACTIONS(3), 1, + sym__comment, + ACTIONS(144), 1, + anon_sym_struct, + ACTIONS(148), 1, + sym_integer, + ACTIONS(154), 1, + anon_sym_LBRACK, + ACTIONS(156), 1, + anon_sym_none, + ACTIONS(158), 1, + anon_sym_some, + ACTIONS(423), 1, + anon_sym_LBRACE, + ACTIONS(610), 1, + sym_identifier, + ACTIONS(612), 1, + anon_sym_LPAREN, + STATE(94), 1, + sym_index_expression, + STATE(102), 1, + sym_range, + ACTIONS(150), 2, + sym_float, + sym_string, + ACTIONS(152), 2, + anon_sym_true, + anon_sym_false, + STATE(99), 2, + sym_value, + sym_index, + STATE(104), 7, + sym_structure, + sym_boolean, + sym_list, + sym_map, + sym_option, + sym_function, + sym_built_in_value, + ACTIONS(172), 9, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [10667] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(614), 9, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(616), 23, + anon_sym_async, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [10707] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(618), 9, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(620), 23, + anon_sym_async, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [10747] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(622), 9, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(624), 23, + anon_sym_async, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [10787] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(626), 9, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(628), 23, + anon_sym_async, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [10827] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(630), 9, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(632), 23, + anon_sym_async, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [10867] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(579), 9, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(581), 23, + anon_sym_async, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [10907] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(634), 9, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(636), 23, + anon_sym_async, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [10947] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(638), 9, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(640), 23, + anon_sym_async, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [10987] = 16, + ACTIONS(3), 1, + sym__comment, + ACTIONS(182), 1, + anon_sym_struct, + ACTIONS(186), 1, + sym_integer, + ACTIONS(192), 1, + anon_sym_LBRACK, + ACTIONS(194), 1, + anon_sym_none, + ACTIONS(196), 1, + anon_sym_some, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(642), 1, + sym_identifier, + ACTIONS(644), 1, + anon_sym_LPAREN, + STATE(236), 1, + sym_index_expression, + STATE(237), 1, + sym_range, + ACTIONS(188), 2, + sym_float, + sym_string, + ACTIONS(190), 2, + anon_sym_true, + anon_sym_false, + STATE(235), 2, + sym_value, + sym_index, + STATE(230), 7, + sym_structure, + sym_boolean, + sym_list, + sym_map, + sym_option, + sym_function, + sym_built_in_value, + ACTIONS(206), 9, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [11053] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(646), 9, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(648), 23, + anon_sym_async, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [11093] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(650), 1, + anon_sym_elseif, + ACTIONS(652), 1, + anon_sym_else, + STATE(254), 1, + sym_else, + STATE(216), 2, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(579), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(581), 17, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [11140] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(650), 1, + anon_sym_elseif, + ACTIONS(652), 1, + anon_sym_else, + STATE(248), 1, + sym_else, + STATE(214), 2, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(571), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_STAR, ACTIONS(573), 17, sym_identifier, anon_sym_struct, @@ -16237,932 +15209,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_output, anon_sym_random, anon_sym_string, - [12707] = 11, + [11187] = 5, ACTIONS(3), 1, sym__comment, - ACTIONS(358), 1, - anon_sym_DASH, - ACTIONS(485), 1, - anon_sym_DASH_GT, - ACTIONS(583), 1, - anon_sym_COMMA, - STATE(167), 1, - sym_math_operator, - STATE(199), 1, - sym_logic_operator, - ACTIONS(362), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(356), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(360), 6, - 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(581), 6, - anon_sym_LPAREN, - anon_sym_LBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(579), 17, - sym_identifier, - anon_sym_struct, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [12771] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(589), 1, - anon_sym_elseif, - ACTIONS(591), 1, - anon_sym_else, - STATE(236), 1, - sym_else, - STATE(225), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(585), 9, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(587), 23, - anon_sym_async, - sym_identifier, - anon_sym_struct, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [12824] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(589), 1, - anon_sym_elseif, - ACTIONS(591), 1, - anon_sym_else, - STATE(241), 1, - sym_else, - STATE(226), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(593), 9, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(595), 23, - anon_sym_async, - sym_identifier, - anon_sym_struct, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [12877] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(601), 1, - anon_sym_elseif, - STATE(226), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(597), 9, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(599), 24, - anon_sym_async, - sym_identifier, - anon_sym_struct, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [12925] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(336), 10, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_asyncfor, - ACTIONS(338), 24, - anon_sym_async, - sym_identifier, - anon_sym_struct, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [12967] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(604), 10, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_asyncfor, - ACTIONS(606), 24, - anon_sym_async, - sym_identifier, - anon_sym_struct, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [13009] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(608), 10, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_asyncfor, - ACTIONS(610), 24, - anon_sym_async, - sym_identifier, - anon_sym_struct, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [13051] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(286), 10, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_asyncfor, - ACTIONS(288), 24, - anon_sym_async, - sym_identifier, - anon_sym_struct, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [13093] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(258), 10, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_asyncfor, - ACTIONS(260), 24, - anon_sym_async, - sym_identifier, - anon_sym_struct, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [13135] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(352), 9, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(354), 23, - anon_sym_async, - sym_identifier, - anon_sym_struct, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [13175] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(612), 9, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(614), 23, - anon_sym_async, - sym_identifier, - anon_sym_struct, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [13215] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(616), 9, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(618), 23, - anon_sym_async, - sym_identifier, - anon_sym_struct, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [13255] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(620), 9, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(622), 23, - anon_sym_async, - sym_identifier, - anon_sym_struct, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [13295] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(593), 9, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(595), 23, - anon_sym_async, - sym_identifier, - anon_sym_struct, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [13335] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(624), 9, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(626), 23, - anon_sym_async, - sym_identifier, - anon_sym_struct, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [13375] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(628), 9, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(630), 23, - anon_sym_async, - sym_identifier, - anon_sym_struct, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [13415] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(632), 9, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(634), 23, - anon_sym_async, - sym_identifier, - anon_sym_struct, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [13455] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(368), 1, - anon_sym_SEMI, - ACTIONS(352), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(354), 23, - anon_sym_async, - sym_identifier, - anon_sym_struct, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [13497] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(636), 9, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(638), 23, - anon_sym_async, - sym_identifier, - anon_sym_struct, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [13537] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(640), 9, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(642), 23, - anon_sym_async, - sym_identifier, - anon_sym_struct, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [13577] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(644), 9, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(646), 23, - anon_sym_async, - sym_identifier, - anon_sym_struct, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [13617] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(648), 9, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(650), 23, - anon_sym_async, - sym_identifier, - anon_sym_struct, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [13657] = 15, - ACTIONS(3), 1, - sym__comment, - ACTIONS(182), 1, - anon_sym_struct, - ACTIONS(186), 1, - sym_integer, - ACTIONS(192), 1, - anon_sym_LBRACK, - ACTIONS(194), 1, - anon_sym_none, - ACTIONS(196), 1, - anon_sym_some, - ACTIONS(431), 1, - anon_sym_LBRACE, - ACTIONS(652), 1, - sym_identifier, ACTIONS(654), 1, - anon_sym_LPAREN, - STATE(108), 1, - sym_index_expression, - ACTIONS(188), 2, - sym_float, - sym_string, - ACTIONS(190), 2, - anon_sym_true, - anon_sym_false, - STATE(107), 2, - sym_value, - sym_index, - STATE(129), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(206), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [13720] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(656), 1, anon_sym_elseif, - ACTIONS(658), 1, - anon_sym_else, - STATE(307), 1, - sym_else, - STATE(250), 2, + STATE(216), 2, sym_else_if, aux_sym_if_else_repeat1, - ACTIONS(585), 9, + ACTIONS(583), 9, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_COMMA, @@ -17172,371 +15227,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string, anon_sym_LBRACK, anon_sym_STAR, - ACTIONS(587), 17, - sym_identifier, - anon_sym_struct, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [13767] = 15, - ACTIONS(3), 1, - sym__comment, - ACTIONS(144), 1, - anon_sym_struct, - ACTIONS(148), 1, - sym_integer, - ACTIONS(154), 1, - anon_sym_LBRACK, - ACTIONS(156), 1, - anon_sym_none, - ACTIONS(158), 1, - anon_sym_some, - ACTIONS(419), 1, - anon_sym_LBRACE, - ACTIONS(660), 1, - sym_identifier, - ACTIONS(662), 1, - anon_sym_LPAREN, - STATE(297), 1, - sym_index_expression, - ACTIONS(150), 2, - sym_float, - sym_string, - ACTIONS(152), 2, - anon_sym_true, - anon_sym_false, - STATE(285), 2, - sym_value, - sym_index, - STATE(279), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(172), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [13830] = 15, - ACTIONS(3), 1, - sym__comment, - ACTIONS(13), 1, - anon_sym_struct, - ACTIONS(17), 1, - sym_integer, - ACTIONS(23), 1, - anon_sym_LBRACK, - ACTIONS(25), 1, - anon_sym_none, - ACTIONS(27), 1, - anon_sym_some, - ACTIONS(559), 1, - anon_sym_LBRACE, - ACTIONS(664), 1, - sym_identifier, - ACTIONS(666), 1, - anon_sym_LPAREN, - STATE(64), 1, - sym_index_expression, - ACTIONS(19), 2, - sym_float, - sym_string, - ACTIONS(21), 2, - anon_sym_true, - anon_sym_false, - STATE(74), 2, - sym_value, - sym_index, - STATE(81), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(41), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [13893] = 15, - ACTIONS(3), 1, - sym__comment, - ACTIONS(144), 1, - anon_sym_struct, - ACTIONS(148), 1, - sym_integer, - ACTIONS(154), 1, - anon_sym_LBRACK, - ACTIONS(156), 1, - anon_sym_none, - ACTIONS(158), 1, - anon_sym_some, - ACTIONS(419), 1, - anon_sym_LBRACE, - ACTIONS(660), 1, - sym_identifier, - ACTIONS(662), 1, - anon_sym_LPAREN, - STATE(345), 1, - sym_index_expression, - ACTIONS(150), 2, - sym_float, - sym_string, - ACTIONS(152), 2, - anon_sym_true, - anon_sym_false, - STATE(285), 2, - sym_value, - sym_index, - STATE(279), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(172), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [13956] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(656), 1, - anon_sym_elseif, - ACTIONS(658), 1, - anon_sym_else, - STATE(308), 1, - sym_else, - STATE(254), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(593), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(595), 17, - sym_identifier, - anon_sym_struct, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [14003] = 15, - ACTIONS(3), 1, - sym__comment, - ACTIONS(182), 1, - anon_sym_struct, - ACTIONS(186), 1, - sym_integer, - ACTIONS(192), 1, - anon_sym_LBRACK, - ACTIONS(194), 1, - anon_sym_none, - ACTIONS(196), 1, - anon_sym_some, - ACTIONS(431), 1, - anon_sym_LBRACE, - ACTIONS(652), 1, - sym_identifier, - ACTIONS(654), 1, - anon_sym_LPAREN, - STATE(127), 1, - sym_index_expression, - ACTIONS(188), 2, - sym_float, - sym_string, - ACTIONS(190), 2, - anon_sym_true, - anon_sym_false, - STATE(107), 2, - sym_value, - sym_index, - STATE(129), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(206), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [14066] = 15, - ACTIONS(3), 1, - sym__comment, - ACTIONS(144), 1, - anon_sym_struct, - ACTIONS(148), 1, - sym_integer, - ACTIONS(154), 1, - anon_sym_LBRACK, - ACTIONS(156), 1, - anon_sym_none, - ACTIONS(158), 1, - anon_sym_some, - ACTIONS(419), 1, - anon_sym_LBRACE, - ACTIONS(660), 1, - sym_identifier, - ACTIONS(662), 1, - anon_sym_LPAREN, - STATE(268), 1, - sym_index_expression, - ACTIONS(150), 2, - sym_float, - sym_string, - ACTIONS(152), 2, - anon_sym_true, - anon_sym_false, - STATE(285), 2, - sym_value, - sym_index, - STATE(279), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(172), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [14129] = 15, - ACTIONS(3), 1, - sym__comment, - ACTIONS(13), 1, - anon_sym_struct, - ACTIONS(17), 1, - sym_integer, - ACTIONS(23), 1, - anon_sym_LBRACK, - ACTIONS(25), 1, - anon_sym_none, - ACTIONS(27), 1, - anon_sym_some, - ACTIONS(559), 1, - anon_sym_LBRACE, - ACTIONS(664), 1, - sym_identifier, - ACTIONS(666), 1, - anon_sym_LPAREN, - STATE(75), 1, - sym_index_expression, - ACTIONS(19), 2, - sym_float, - sym_string, - ACTIONS(21), 2, - anon_sym_true, - anon_sym_false, - STATE(74), 2, - sym_value, - sym_index, - STATE(81), 7, - sym_structure, - sym_boolean, - sym_list, - sym_map, - sym_option, - sym_function, - sym_built_in_value, - ACTIONS(41), 9, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [14192] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(668), 1, - anon_sym_elseif, - STATE(254), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(597), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(599), 18, + ACTIONS(585), 18, sym_identifier, anon_sym_struct, anon_sym_new, @@ -17555,127 +15246,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_output, anon_sym_random, anon_sym_string, - [14234] = 6, + [11229] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(671), 1, - anon_sym_DASH_GT, - STATE(185), 1, - sym_math_operator, - STATE(186), 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), 19, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - [14277] = 6, - ACTIONS(3), 1, - sym__comment, - ACTIONS(671), 1, - anon_sym_DASH_GT, - STATE(185), 1, - sym_math_operator, - STATE(186), 1, - sym_logic_operator, - ACTIONS(210), 7, - anon_sym_async, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(208), 19, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - [14320] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(185), 1, - sym_math_operator, - STATE(186), 1, - sym_logic_operator, - ACTIONS(216), 7, - anon_sym_async, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(214), 20, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [14361] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(675), 6, + ACTIONS(659), 6, anon_sym_LPAREN, anon_sym_LBRACE, sym_float, sym_string, anon_sym_LBRACK, anon_sym_asyncfor, - ACTIONS(673), 23, + ACTIONS(657), 23, anon_sym_async, sym_identifier, anon_sym_struct, @@ -17699,447 +15280,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_output, anon_sym_random, anon_sym_string, - [14398] = 3, + [11266] = 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), 21, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [14434] = 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), 21, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [14470] = 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), 21, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [14506] = 6, - ACTIONS(3), 1, - sym__comment, - ACTIONS(677), 1, - anon_sym_DASH_GT, - STATE(187), 1, - sym_logic_operator, - STATE(190), 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), 18, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - [14548] = 6, - ACTIONS(3), 1, - sym__comment, - ACTIONS(677), 1, - anon_sym_DASH_GT, - STATE(187), 1, - sym_logic_operator, - STATE(190), 1, - sym_math_operator, - ACTIONS(210), 7, - anon_sym_async, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(208), 18, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - [14590] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(306), 7, - anon_sym_async, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(304), 21, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [14626] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(230), 1, - anon_sym_COLON, - ACTIONS(226), 2, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [14666] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(330), 7, - anon_sym_async, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(328), 21, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [14702] = 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), 21, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [14738] = 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), 21, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [14774] = 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), 21, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [14810] = 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), 21, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [14846] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(342), 7, - anon_sym_async, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(340), 21, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [14882] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(604), 10, + ACTIONS(594), 10, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_COMMA, @@ -18150,7 +15294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_STAR, anon_sym_elseif, - ACTIONS(606), 18, + ACTIONS(596), 18, sym_identifier, anon_sym_struct, anon_sym_new, @@ -18169,14 +15313,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_output, anon_sym_random, anon_sym_string, - [14918] = 5, + [11302] = 3, ACTIONS(3), 1, sym__comment, - STATE(187), 1, - sym_logic_operator, - STATE(190), 1, - sym_math_operator, - ACTIONS(216), 7, + ACTIONS(272), 10, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_elseif, + ACTIONS(274), 18, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_else, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [11338] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(590), 10, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_elseif, + ACTIONS(592), 18, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_else, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [11374] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(264), 10, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_elseif, + ACTIONS(266), 18, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_else, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [11410] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(280), 10, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_elseif, + ACTIONS(282), 18, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_else, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [11446] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(661), 1, + anon_sym_DOT_DOT, + ACTIONS(226), 7, anon_sym_async, sym_identifier, anon_sym_EQ, @@ -18184,9 +15458,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_GT, anon_sym_LT, - ACTIONS(214), 19, + ACTIONS(224), 20, anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, @@ -18204,7 +15479,391 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_EQ_GT, anon_sym_DASH_GT, - [14958] = 3, + [11484] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(232), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(230), 20, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [11519] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(236), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(234), 20, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [11554] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(258), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(256), 20, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [11589] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(298), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(296), 20, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [11624] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(274), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(272), 20, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [11659] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(270), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(268), 20, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [11694] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(226), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(224), 20, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [11729] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(262), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(260), 20, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [11764] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(294), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(292), 20, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [11799] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(282), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(280), 20, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [11834] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(290), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(288), 20, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [11869] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(254), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(216), 20, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [11904] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(252), 7, @@ -18215,7 +15874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_GT, anon_sym_LT, - ACTIONS(250), 21, + ACTIONS(250), 20, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -18223,7 +15882,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, - anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -18237,10 +15895,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_EQ_GT, anon_sym_DASH_GT, - [14994] = 3, + [11939] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(256), 7, + ACTIONS(254), 7, anon_sym_async, sym_identifier, anon_sym_EQ, @@ -18248,7 +15906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_GT, anon_sym_LT, - ACTIONS(254), 21, + ACTIONS(216), 20, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -18256,7 +15914,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, - anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -18270,140 +15927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_EQ_GT, anon_sym_DASH_GT, - [15030] = 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), 21, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [15066] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(226), 2, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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), 19, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [15104] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(338), 7, - anon_sym_async, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(336), 21, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [15140] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(334), 7, - anon_sym_async, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(332), 21, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [15176] = 3, + [11974] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(240), 7, @@ -18414,7 +15938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_GT, anon_sym_LT, - ACTIONS(238), 21, + ACTIONS(238), 20, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -18422,7 +15946,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, - anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -18436,304 +15959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_EQ_GT, anon_sym_DASH_GT, - [15212] = 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), 21, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [15248] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(346), 7, - anon_sym_async, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(344), 21, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [15284] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(286), 10, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_elseif, - ACTIONS(288), 18, - sym_identifier, - anon_sym_struct, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_else, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [15320] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(336), 10, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_elseif, - ACTIONS(338), 18, - sym_identifier, - anon_sym_struct, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_else, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [15356] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(308), 7, - anon_sym_async, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(230), 21, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [15392] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(258), 10, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_elseif, - ACTIONS(260), 18, - sym_identifier, - anon_sym_struct, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_else, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [15428] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(314), 7, - anon_sym_async, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(312), 21, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [15464] = 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), 21, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [15500] = 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), 21, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [15536] = 3, + [12009] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(244), 7, @@ -18744,7 +15970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_GT, anon_sym_LT, - ACTIONS(242), 21, + ACTIONS(242), 20, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -18752,7 +15978,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, - anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -18766,10 +15991,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_EQ_GT, anon_sym_DASH_GT, - [15572] = 3, + [12044] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(318), 7, + ACTIONS(248), 7, anon_sym_async, sym_identifier, anon_sym_EQ, @@ -18777,7 +16002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_GT, anon_sym_LT, - ACTIONS(316), 21, + ACTIONS(246), 20, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -18785,7 +16010,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, - anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -18799,43 +16023,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_EQ_GT, anon_sym_DASH_GT, - [15608] = 3, + [12079] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(608), 10, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_elseif, - ACTIONS(610), 18, - sym_identifier, - anon_sym_struct, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_else, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [15644] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(326), 7, + ACTIONS(278), 7, anon_sym_async, sym_identifier, anon_sym_EQ, @@ -18843,7 +16034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_GT, anon_sym_LT, - ACTIONS(324), 21, + ACTIONS(276), 20, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -18851,7 +16042,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, - anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -18865,10 +16055,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_EQ_GT, anon_sym_DASH_GT, - [15680] = 3, + [12114] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(296), 7, + ACTIONS(286), 7, anon_sym_async, sym_identifier, anon_sym_EQ, @@ -18876,7 +16066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_GT, anon_sym_LT, - ACTIONS(294), 21, + ACTIONS(284), 20, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -18884,7 +16074,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, - anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -18898,10 +16087,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_EQ_GT, anon_sym_DASH_GT, - [15716] = 3, + [12149] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(322), 7, + ACTIONS(266), 7, anon_sym_async, sym_identifier, anon_sym_EQ, @@ -18909,7 +16098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_GT, anon_sym_LT, - ACTIONS(320), 21, + ACTIONS(264), 20, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -18917,7 +16106,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, - anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -18931,499 +16119,464 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_EQ_GT, anon_sym_DASH_GT, - [15752] = 3, + [12184] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(350), 7, - anon_sym_async, + ACTIONS(634), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(636), 17, sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [12218] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(614), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(616), 17, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [12252] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(618), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(620), 17, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [12286] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(598), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(600), 17, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [12320] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(579), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(581), 17, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [12354] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(630), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(632), 17, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [12388] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(646), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(648), 17, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [12422] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(606), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(608), 17, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [12456] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(622), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(624), 17, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [12490] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(306), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(308), 17, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [12524] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(638), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(640), 17, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [12558] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(557), 1, + anon_sym_SEMI, + ACTIONS(306), 8, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(308), 17, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [12594] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(626), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(628), 17, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [12628] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(667), 1, + anon_sym_COMMA, + ACTIONS(665), 7, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(663), 17, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [12663] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(212), 1, + anon_sym_LPAREN, + ACTIONS(214), 1, anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(348), 21, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(216), 1, 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, - [15788] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(679), 1, - anon_sym_DOT_DOT, - ACTIONS(276), 7, - anon_sym_async, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, + ACTIONS(218), 1, anon_sym_LT, - ACTIONS(274), 19, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [15825] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(616), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(618), 17, - sym_identifier, - anon_sym_struct, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [15859] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(648), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(650), 17, - sym_identifier, - anon_sym_struct, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [15893] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(569), 1, - anon_sym_SEMI, - ACTIONS(352), 8, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(354), 17, - sym_identifier, - anon_sym_struct, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [15929] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(352), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(354), 17, - sym_identifier, - anon_sym_struct, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [15963] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(628), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(630), 17, - sym_identifier, - anon_sym_struct, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [15997] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(612), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(614), 17, - sym_identifier, - anon_sym_struct, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [16031] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(624), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(626), 17, - sym_identifier, - anon_sym_struct, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [16065] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(644), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(646), 17, - sym_identifier, - anon_sym_struct, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [16099] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(632), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(634), 17, - sym_identifier, - anon_sym_struct, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [16133] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(593), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(595), 17, - sym_identifier, - anon_sym_struct, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [16167] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(636), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(638), 17, - sym_identifier, - anon_sym_struct, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [16201] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(620), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(622), 17, - sym_identifier, - anon_sym_struct, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [16235] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(640), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(642), 17, - sym_identifier, - anon_sym_struct, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [16269] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(226), 1, - anon_sym_LPAREN, - ACTIONS(228), 1, - anon_sym_EQ, - ACTIONS(230), 1, - anon_sym_COLON, - ACTIONS(232), 1, - anon_sym_LT, - STATE(40), 1, + STATE(45), 1, sym_assignment_operator, - STATE(392), 1, + STATE(337), 1, sym_type_specification, - ACTIONS(234), 2, + ACTIONS(220), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(224), 3, + ACTIONS(210), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - ACTIONS(222), 14, + ACTIONS(208), 14, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -19438,112 +16591,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_DASH_GT, - [16316] = 4, + [12710] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(685), 1, - anon_sym_COMMA, - ACTIONS(683), 7, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(681), 17, - sym_identifier, - anon_sym_struct, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [16351] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(689), 7, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(687), 17, - sym_identifier, - anon_sym_struct, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [16383] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(226), 1, - anon_sym_LPAREN, - ACTIONS(228), 1, - anon_sym_EQ, - ACTIONS(230), 1, + ACTIONS(216), 1, anon_sym_COLON, - STATE(39), 1, - sym_assignment_operator, - ACTIONS(234), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(224), 4, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(222), 14, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - 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_DASH_GT, - [16425] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(230), 1, - anon_sym_COLON, - ACTIONS(372), 5, + ACTIONS(324), 5, anon_sym_async, sym_identifier, anon_sym_DASH, anon_sym_GT, anon_sym_LT, - ACTIONS(226), 18, + ACTIONS(212), 18, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -19562,23 +16621,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_GT, anon_sym_DASH_GT, - [16459] = 6, + [12744] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(691), 1, + ACTIONS(671), 7, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(669), 17, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [12776] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(212), 1, + anon_sym_LPAREN, + ACTIONS(214), 1, + anon_sym_EQ, + ACTIONS(216), 1, + anon_sym_COLON, + STATE(38), 1, + sym_assignment_operator, + ACTIONS(220), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(210), 4, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(208), 14, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + 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_DASH_GT, - STATE(206), 1, - sym_logic_operator, - STATE(212), 1, - sym_math_operator, - ACTIONS(220), 5, + [12818] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(216), 1, + anon_sym_COLON, + ACTIONS(226), 5, anon_sym_async, sym_identifier, anon_sym_DASH, anon_sym_GT, anon_sym_LT, - ACTIONS(218), 15, + ACTIONS(224), 18, anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, @@ -19593,22 +16713,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, - [16496] = 6, + anon_sym_DASH_GT, + [12852] = 5, ACTIONS(3), 1, sym__comment, - ACTIONS(691), 1, - anon_sym_DASH_GT, - STATE(206), 1, - sym_logic_operator, - STATE(212), 1, - sym_math_operator, + ACTIONS(216), 1, + anon_sym_COLON, + ACTIONS(212), 2, + anon_sym_LPAREN, + anon_sym_RPAREN, ACTIONS(210), 5, anon_sym_async, sym_identifier, anon_sym_DASH, anon_sym_GT, anon_sym_LT, - ACTIONS(208), 15, + ACTIONS(208), 16, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, @@ -19624,17 +16744,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, - [16533] = 3, + anon_sym_DASH_GT, + [12888] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(460), 6, + ACTIONS(212), 2, + anon_sym_LPAREN, + anon_sym_RPAREN, + ACTIONS(210), 5, + anon_sym_async, + sym_identifier, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(208), 16, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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, + [12921] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(338), 5, + anon_sym_async, + sym_identifier, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(336), 18, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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, + [12952] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(499), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + ACTIONS(673), 17, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [12983] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(474), 6, anon_sym_LPAREN, anon_sym_LBRACE, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, - ACTIONS(693), 17, + ACTIONS(675), 17, sym_identifier, anon_sym_struct, anon_sym_new, @@ -19652,104 +16858,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_output, anon_sym_random, anon_sym_string, - [16564] = 3, + [13014] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(507), 6, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - ACTIONS(695), 17, + ACTIONS(354), 5, + anon_sym_async, sym_identifier, - anon_sym_struct, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [16595] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(699), 5, - anon_sym_LPAREN, - anon_sym_LBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - ACTIONS(697), 17, - sym_identifier, - anon_sym_struct, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [16625] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(703), 5, - anon_sym_LPAREN, - anon_sym_LBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - ACTIONS(701), 17, - sym_identifier, - anon_sym_struct, - anon_sym_new, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_args, - anon_sym_assert_equal, - anon_sym_env, - anon_sym_fs, - anon_sym_json, - anon_sym_length, - anon_sym_output, - anon_sym_random, - anon_sym_string, - [16655] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(177), 1, - sym_math_operator, - STATE(178), 1, - sym_logic_operator, - ACTIONS(216), 3, anon_sym_DASH, anon_sym_GT, anon_sym_LT, - ACTIONS(214), 15, + ACTIONS(352), 18, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_DOT_DOT, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -19760,590 +16884,743 @@ 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, - [16687] = 10, + [13045] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(358), 1, + ACTIONS(346), 5, + anon_sym_async, + sym_identifier, anon_sym_DASH, - ACTIONS(569), 1, - anon_sym_SEMI, - ACTIONS(691), 1, - anon_sym_DASH_GT, - STATE(206), 1, - sym_logic_operator, - STATE(212), 1, - sym_math_operator, - ACTIONS(362), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(352), 3, + ACTIONS(344), 18, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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, + [13076] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(330), 5, + anon_sym_async, + sym_identifier, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(328), 18, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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, + [13107] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(362), 5, + anon_sym_async, + sym_identifier, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(360), 18, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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, + [13138] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(350), 5, + anon_sym_async, + sym_identifier, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(348), 18, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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, + [13169] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(677), 1, + anon_sym_DASH_GT, + STATE(149), 1, + sym_logic_operator, + STATE(150), 1, + sym_math_operator, + ACTIONS(302), 5, + anon_sym_async, + sym_identifier, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(300), 15, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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, + [13206] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(677), 1, + anon_sym_DASH_GT, + STATE(149), 1, + sym_logic_operator, + STATE(150), 1, + sym_math_operator, + ACTIONS(322), 5, + anon_sym_async, + sym_identifier, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(320), 15, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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, + [13243] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(334), 5, + anon_sym_async, + sym_identifier, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(332), 17, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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, + [13273] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(342), 5, + anon_sym_async, + sym_identifier, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(340), 17, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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, + [13303] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(358), 5, + anon_sym_async, + sym_identifier, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(356), 17, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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, + [13333] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(366), 5, + anon_sym_async, + sym_identifier, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(364), 17, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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, + [13363] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(681), 5, + anon_sym_LPAREN, + anon_sym_LBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + ACTIONS(679), 17, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [13393] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(685), 5, + anon_sym_LPAREN, + anon_sym_LBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + ACTIONS(683), 17, + sym_identifier, + anon_sym_struct, + anon_sym_new, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_args, + anon_sym_assert_equal, + anon_sym_env, + anon_sym_fs, + anon_sym_json, + anon_sym_length, + anon_sym_output, + anon_sym_random, + anon_sym_string, + [13423] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(314), 1, + anon_sym_DASH, + ACTIONS(557), 1, + anon_sym_SEMI, + ACTIONS(677), 1, + anon_sym_DASH_GT, + STATE(149), 1, + sym_logic_operator, + STATE(150), 1, + sym_math_operator, + ACTIONS(318), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(306), 3, anon_sym_COMMA, anon_sym_RBRACE, sym_identifier, - ACTIONS(356), 4, + ACTIONS(312), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(360), 6, + ACTIONS(316), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [16729] = 9, + [13465] = 9, ACTIONS(3), 1, sym__comment, - ACTIONS(358), 1, + ACTIONS(314), 1, anon_sym_DASH, - ACTIONS(691), 1, + ACTIONS(677), 1, anon_sym_DASH_GT, - STATE(206), 1, + STATE(149), 1, sym_logic_operator, - STATE(212), 1, + STATE(150), 1, sym_math_operator, - ACTIONS(362), 2, + ACTIONS(318), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(352), 4, + ACTIONS(306), 4, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, sym_identifier, - ACTIONS(356), 4, + ACTIONS(312), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(360), 6, + ACTIONS(316), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [16769] = 6, + [13505] = 11, ACTIONS(3), 1, sym__comment, - ACTIONS(671), 1, - anon_sym_DASH_GT, - STATE(177), 1, - sym_math_operator, - STATE(178), 1, - sym_logic_operator, - ACTIONS(210), 3, + ACTIONS(314), 1, anon_sym_DASH, + ACTIONS(677), 1, + anon_sym_DASH_GT, + ACTIONS(687), 1, + anon_sym_async, + ACTIONS(689), 1, + anon_sym_LBRACE, + STATE(149), 1, + sym_logic_operator, + STATE(150), 1, + sym_math_operator, + STATE(195), 1, + sym_block, + ACTIONS(318), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(208), 14, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_DOT_DOT, + ACTIONS(312), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(316), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [16803] = 6, + [13548] = 11, ACTIONS(3), 1, sym__comment, - ACTIONS(671), 1, + ACTIONS(314), 1, + anon_sym_DASH, + ACTIONS(677), 1, anon_sym_DASH_GT, - STATE(177), 1, - sym_math_operator, - STATE(178), 1, - sym_logic_operator, - ACTIONS(220), 3, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(218), 14, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [16837] = 11, - ACTIONS(3), 1, - sym__comment, - ACTIONS(358), 1, - anon_sym_DASH, ACTIONS(691), 1, + anon_sym_async, + ACTIONS(693), 1, + anon_sym_LBRACE, + STATE(149), 1, + sym_logic_operator, + STATE(150), 1, + sym_math_operator, + STATE(218), 1, + sym_block, + ACTIONS(318), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(312), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(316), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [13591] = 11, + ACTIONS(3), 1, + sym__comment, + ACTIONS(314), 1, + anon_sym_DASH, + ACTIONS(677), 1, anon_sym_DASH_GT, + ACTIONS(687), 1, + anon_sym_async, + ACTIONS(689), 1, + anon_sym_LBRACE, + STATE(149), 1, + sym_logic_operator, + STATE(150), 1, + sym_math_operator, + STATE(197), 1, + sym_block, + ACTIONS(318), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(312), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(316), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [13634] = 11, + ACTIONS(3), 1, + sym__comment, + ACTIONS(314), 1, + anon_sym_DASH, + ACTIONS(677), 1, + anon_sym_DASH_GT, + ACTIONS(695), 1, + anon_sym_async, + ACTIONS(697), 1, + anon_sym_LBRACE, + STATE(149), 1, + sym_logic_operator, + STATE(150), 1, + sym_math_operator, + STATE(250), 1, + sym_block, + ACTIONS(318), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(312), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(316), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [13677] = 11, + ACTIONS(3), 1, + sym__comment, + ACTIONS(314), 1, + anon_sym_DASH, + ACTIONS(677), 1, + anon_sym_DASH_GT, + ACTIONS(695), 1, + anon_sym_async, + ACTIONS(697), 1, + anon_sym_LBRACE, + STATE(149), 1, + sym_logic_operator, + STATE(150), 1, + sym_math_operator, + STATE(251), 1, + sym_block, + ACTIONS(318), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(312), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(316), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [13720] = 11, + ACTIONS(3), 1, + sym__comment, + ACTIONS(314), 1, + anon_sym_DASH, + ACTIONS(677), 1, + anon_sym_DASH_GT, + ACTIONS(699), 1, + anon_sym_async, + ACTIONS(701), 1, + anon_sym_LBRACE, + STATE(149), 1, + sym_logic_operator, + STATE(150), 1, + sym_math_operator, + STATE(251), 1, + sym_block, + ACTIONS(318), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(312), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(316), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [13763] = 11, + ACTIONS(3), 1, + sym__comment, + ACTIONS(314), 1, + anon_sym_DASH, + ACTIONS(677), 1, + anon_sym_DASH_GT, + ACTIONS(703), 1, + anon_sym_async, ACTIONS(705), 1, - anon_sym_async, - ACTIONS(707), 1, anon_sym_LBRACE, - STATE(206), 1, + STATE(149), 1, sym_logic_operator, - STATE(212), 1, + STATE(150), 1, sym_math_operator, - STATE(238), 1, + STATE(202), 1, sym_block, - ACTIONS(362), 2, + ACTIONS(318), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(356), 4, + ACTIONS(312), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(360), 6, + ACTIONS(316), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [16880] = 11, + [13806] = 11, ACTIONS(3), 1, sym__comment, - ACTIONS(358), 1, + ACTIONS(314), 1, anon_sym_DASH, - ACTIONS(691), 1, + ACTIONS(677), 1, anon_sym_DASH_GT, - ACTIONS(709), 1, + ACTIONS(699), 1, anon_sym_async, - ACTIONS(711), 1, + ACTIONS(701), 1, anon_sym_LBRACE, - STATE(206), 1, + STATE(149), 1, sym_logic_operator, - STATE(212), 1, + STATE(150), 1, sym_math_operator, - STATE(229), 1, + STATE(250), 1, sym_block, - ACTIONS(362), 2, + ACTIONS(318), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(356), 4, + ACTIONS(312), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(360), 6, + ACTIONS(316), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [16923] = 5, + [13849] = 11, ACTIONS(3), 1, sym__comment, - STATE(203), 1, - sym_logic_operator, - STATE(211), 1, - sym_math_operator, - ACTIONS(216), 3, + ACTIONS(314), 1, anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(214), 14, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(677), 1, anon_sym_DASH_GT, - [16954] = 6, - ACTIONS(3), 1, - sym__comment, - ACTIONS(713), 1, - anon_sym_DASH_GT, - STATE(203), 1, - sym_logic_operator, - STATE(211), 1, - sym_math_operator, - ACTIONS(210), 3, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(208), 13, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [16987] = 11, - ACTIONS(3), 1, - sym__comment, - ACTIONS(358), 1, - anon_sym_DASH, - ACTIONS(691), 1, - anon_sym_DASH_GT, - ACTIONS(715), 1, + ACTIONS(703), 1, anon_sym_async, - ACTIONS(717), 1, - anon_sym_LBRACE, - STATE(206), 1, - sym_logic_operator, - STATE(212), 1, - sym_math_operator, - STATE(302), 1, - sym_block, - ACTIONS(362), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(356), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(360), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [17030] = 6, - ACTIONS(3), 1, - sym__comment, - ACTIONS(713), 1, - anon_sym_DASH_GT, - STATE(203), 1, - sym_logic_operator, - STATE(211), 1, - sym_math_operator, - ACTIONS(220), 3, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(218), 13, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [17063] = 11, - ACTIONS(3), 1, - sym__comment, - ACTIONS(358), 1, - anon_sym_DASH, - ACTIONS(691), 1, - anon_sym_DASH_GT, - ACTIONS(709), 1, - anon_sym_async, - ACTIONS(711), 1, - anon_sym_LBRACE, - STATE(206), 1, - sym_logic_operator, - STATE(212), 1, - sym_math_operator, - STATE(228), 1, - sym_block, - ACTIONS(362), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(356), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(360), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [17106] = 11, - ACTIONS(3), 1, - sym__comment, - ACTIONS(358), 1, - anon_sym_DASH, - ACTIONS(691), 1, - anon_sym_DASH_GT, - ACTIONS(719), 1, - anon_sym_async, - ACTIONS(721), 1, - anon_sym_LBRACE, - STATE(206), 1, - sym_logic_operator, - STATE(212), 1, - sym_math_operator, - STATE(292), 1, - sym_block, - ACTIONS(362), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(356), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(360), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [17149] = 11, - ACTIONS(3), 1, - sym__comment, - ACTIONS(358), 1, - anon_sym_DASH, - ACTIONS(691), 1, - anon_sym_DASH_GT, - ACTIONS(723), 1, - anon_sym_async, - ACTIONS(725), 1, - anon_sym_LBRACE, - STATE(206), 1, - sym_logic_operator, - STATE(212), 1, - sym_math_operator, - STATE(306), 1, - sym_block, - ACTIONS(362), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(356), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(360), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [17192] = 11, - ACTIONS(3), 1, - sym__comment, - ACTIONS(358), 1, - anon_sym_DASH, - ACTIONS(691), 1, - anon_sym_DASH_GT, - ACTIONS(715), 1, - anon_sym_async, - ACTIONS(717), 1, - anon_sym_LBRACE, - STATE(206), 1, - sym_logic_operator, - STATE(212), 1, - sym_math_operator, - STATE(306), 1, - sym_block, - ACTIONS(362), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(356), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(360), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [17235] = 11, - ACTIONS(3), 1, - sym__comment, - ACTIONS(358), 1, - anon_sym_DASH, - ACTIONS(691), 1, - anon_sym_DASH_GT, - ACTIONS(719), 1, - anon_sym_async, - ACTIONS(721), 1, - anon_sym_LBRACE, - STATE(206), 1, - sym_logic_operator, - STATE(212), 1, - sym_math_operator, - STATE(272), 1, - sym_block, - ACTIONS(362), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(356), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(360), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [17278] = 11, - ACTIONS(3), 1, - sym__comment, - ACTIONS(358), 1, - anon_sym_DASH, - ACTIONS(691), 1, - anon_sym_DASH_GT, ACTIONS(705), 1, - anon_sym_async, - ACTIONS(707), 1, anon_sym_LBRACE, - STATE(206), 1, + STATE(149), 1, sym_logic_operator, - STATE(212), 1, + STATE(150), 1, sym_math_operator, - STATE(239), 1, + STATE(213), 1, sym_block, - ACTIONS(362), 2, + ACTIONS(318), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(356), 4, + ACTIONS(312), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(360), 6, + ACTIONS(316), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [17321] = 11, + [13892] = 11, ACTIONS(3), 1, sym__comment, - ACTIONS(358), 1, + ACTIONS(314), 1, anon_sym_DASH, - ACTIONS(691), 1, + ACTIONS(677), 1, anon_sym_DASH_GT, - ACTIONS(723), 1, + ACTIONS(691), 1, anon_sym_async, - ACTIONS(725), 1, + ACTIONS(693), 1, anon_sym_LBRACE, - STATE(206), 1, + STATE(149), 1, sym_logic_operator, - STATE(212), 1, + STATE(150), 1, sym_math_operator, - STATE(302), 1, + STATE(220), 1, sym_block, - ACTIONS(362), 2, + ACTIONS(318), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(356), 4, + ACTIONS(312), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(360), 6, + ACTIONS(316), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [17364] = 4, + [13935] = 7, ACTIONS(3), 1, sym__comment, - ACTIONS(731), 1, - anon_sym_DASH_GT, - ACTIONS(729), 6, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - ACTIONS(727), 11, - sym_identifier, - anon_sym_none, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_num, - anon_sym_str, - anon_sym_option, - [17392] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(737), 1, - anon_sym_DASH_GT, - ACTIONS(735), 6, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - ACTIONS(733), 11, - sym_identifier, - anon_sym_none, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_num, - anon_sym_str, - anon_sym_option, - [17420] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(230), 1, + ACTIONS(216), 1, anon_sym_COLON, - ACTIONS(232), 1, + ACTIONS(218), 1, anon_sym_LT, - STATE(421), 1, + STATE(366), 1, sym_type_specification, - ACTIONS(224), 2, + ACTIONS(210), 2, anon_sym_DASH, anon_sym_GT, - ACTIONS(226), 2, + ACTIONS(212), 2, anon_sym_LPAREN, anon_sym_RPAREN, - ACTIONS(222), 11, + ACTIONS(208), 11, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -20355,178 +17632,396 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_DASH_GT, - [17454] = 4, + [13969] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(226), 1, - anon_sym_LPAREN, - ACTIONS(224), 3, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(222), 14, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(711), 1, anon_sym_DASH_GT, - [17482] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(226), 1, - anon_sym_LPAREN, - ACTIONS(230), 1, - anon_sym_COLON, - ACTIONS(224), 3, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(222), 13, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DASH_GT, - [17512] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(739), 1, - anon_sym_DOT_DOT, - ACTIONS(276), 3, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(274), 14, + ACTIONS(709), 6, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DASH_GT, - [17540] = 9, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + ACTIONS(707), 11, + sym_identifier, + anon_sym_none, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_num, + anon_sym_str, + anon_sym_option, + [13997] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(358), 1, - anon_sym_DASH, - ACTIONS(691), 1, + ACTIONS(717), 1, anon_sym_DASH_GT, - ACTIONS(741), 1, + ACTIONS(715), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + ACTIONS(713), 11, + sym_identifier, + anon_sym_none, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_num, + anon_sym_str, + anon_sym_option, + [14025] = 9, + ACTIONS(3), 1, + sym__comment, + ACTIONS(314), 1, + anon_sym_DASH, + ACTIONS(677), 1, + anon_sym_DASH_GT, + ACTIONS(719), 1, anon_sym_LBRACE, - STATE(206), 1, + STATE(149), 1, sym_logic_operator, - STATE(212), 1, + STATE(150), 1, sym_math_operator, - ACTIONS(362), 2, + ACTIONS(318), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(356), 4, + ACTIONS(312), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(360), 6, + ACTIONS(316), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [17577] = 9, + [14062] = 9, ACTIONS(3), 1, sym__comment, - ACTIONS(358), 1, + ACTIONS(314), 1, anon_sym_DASH, + ACTIONS(677), 1, + anon_sym_DASH_GT, + ACTIONS(721), 1, + anon_sym_EQ_GT, + STATE(149), 1, + sym_logic_operator, + STATE(150), 1, + sym_math_operator, + ACTIONS(318), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(312), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(316), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [14099] = 9, + ACTIONS(3), 1, + sym__comment, + ACTIONS(314), 1, + anon_sym_DASH, + ACTIONS(677), 1, + anon_sym_DASH_GT, + ACTIONS(723), 1, + anon_sym_RPAREN, + STATE(168), 1, + sym_logic_operator, + STATE(169), 1, + sym_math_operator, + ACTIONS(318), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(312), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(316), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [14136] = 9, + ACTIONS(3), 1, + sym__comment, + ACTIONS(314), 1, + anon_sym_DASH, + ACTIONS(677), 1, + anon_sym_DASH_GT, + ACTIONS(725), 1, + anon_sym_RPAREN, + STATE(168), 1, + sym_logic_operator, + STATE(169), 1, + sym_math_operator, + ACTIONS(318), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(312), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(316), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [14173] = 9, + ACTIONS(3), 1, + sym__comment, + ACTIONS(314), 1, + anon_sym_DASH, + ACTIONS(677), 1, + anon_sym_DASH_GT, + ACTIONS(727), 1, + anon_sym_LBRACE, + STATE(149), 1, + sym_logic_operator, + STATE(150), 1, + sym_math_operator, + ACTIONS(318), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(312), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(316), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [14210] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(677), 1, + anon_sym_DASH_GT, + STATE(168), 1, + sym_logic_operator, + STATE(169), 1, + sym_math_operator, + ACTIONS(302), 3, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(300), 11, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [14241] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(715), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + ACTIONS(713), 11, + sym_identifier, + anon_sym_none, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_num, + anon_sym_str, + anon_sym_option, + [14266] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(677), 1, + anon_sym_DASH_GT, + STATE(168), 1, + sym_logic_operator, + STATE(169), 1, + sym_math_operator, + ACTIONS(322), 3, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(320), 11, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [14297] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(731), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + ACTIONS(729), 11, + sym_identifier, + anon_sym_none, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_num, + anon_sym_str, + anon_sym_option, + [14322] = 9, + ACTIONS(3), 1, + sym__comment, + ACTIONS(314), 1, + anon_sym_DASH, + ACTIONS(677), 1, + anon_sym_DASH_GT, + ACTIONS(733), 1, + anon_sym_RPAREN, + STATE(168), 1, + sym_logic_operator, + STATE(169), 1, + sym_math_operator, + ACTIONS(318), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(312), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(316), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [14359] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(212), 1, + anon_sym_LPAREN, + ACTIONS(216), 1, + anon_sym_COLON, + ACTIONS(210), 3, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(208), 12, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DASH_GT, + [14388] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(737), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + ACTIONS(735), 11, + sym_identifier, + anon_sym_none, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_num, + anon_sym_str, + anon_sym_option, + [14413] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(741), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + ACTIONS(739), 11, + sym_identifier, + anon_sym_none, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_num, + anon_sym_str, + anon_sym_option, + [14438] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(212), 1, + anon_sym_LPAREN, ACTIONS(743), 1, anon_sym_RPAREN, - ACTIONS(745), 1, - anon_sym_DASH_GT, - STATE(208), 1, - sym_math_operator, - STATE(209), 1, - sym_logic_operator, - ACTIONS(362), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(356), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(360), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [17614] = 9, - ACTIONS(3), 1, - sym__comment, - ACTIONS(358), 1, - anon_sym_DASH, - ACTIONS(691), 1, - anon_sym_DASH_GT, - ACTIONS(747), 1, - anon_sym_LBRACE, - STATE(206), 1, - sym_logic_operator, - STATE(212), 1, - sym_math_operator, - ACTIONS(362), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(356), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(360), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [17651] = 6, - ACTIONS(3), 1, - sym__comment, - ACTIONS(745), 1, - anon_sym_DASH_GT, - STATE(208), 1, - sym_math_operator, - STATE(209), 1, - sym_logic_operator, ACTIONS(210), 3, anon_sym_DASH, anon_sym_GT, anon_sym_LT, ACTIONS(208), 11, - anon_sym_RPAREN, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -20537,268 +18032,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [17682] = 3, + anon_sym_DASH_GT, + [14466] = 8, ACTIONS(3), 1, sym__comment, - ACTIONS(751), 6, + ACTIONS(747), 1, anon_sym_LPAREN, + ACTIONS(749), 1, anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(751), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - ACTIONS(749), 11, - sym_identifier, - anon_sym_none, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_num, - anon_sym_str, + ACTIONS(753), 1, anon_sym_option, - [17707] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(755), 6, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - ACTIONS(753), 11, - sym_identifier, - anon_sym_none, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_num, - anon_sym_str, - anon_sym_option, - [17732] = 9, - ACTIONS(3), 1, - sym__comment, - ACTIONS(358), 1, - anon_sym_DASH, - ACTIONS(691), 1, - anon_sym_DASH_GT, - ACTIONS(757), 1, - anon_sym_EQ_GT, - STATE(206), 1, - sym_logic_operator, - STATE(212), 1, - sym_math_operator, - ACTIONS(362), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(356), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(360), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [17769] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(761), 6, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - ACTIONS(759), 11, - sym_identifier, - anon_sym_none, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_num, - anon_sym_str, - anon_sym_option, - [17794] = 9, - ACTIONS(3), 1, - sym__comment, - ACTIONS(358), 1, - anon_sym_DASH, - ACTIONS(745), 1, - anon_sym_DASH_GT, - ACTIONS(763), 1, - anon_sym_RPAREN, - STATE(208), 1, - sym_math_operator, - STATE(209), 1, - sym_logic_operator, - ACTIONS(362), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(356), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(360), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [17831] = 9, - ACTIONS(3), 1, - sym__comment, - ACTIONS(358), 1, - anon_sym_DASH, - ACTIONS(745), 1, - anon_sym_DASH_GT, - ACTIONS(765), 1, - anon_sym_RPAREN, - STATE(208), 1, - sym_math_operator, - STATE(209), 1, - sym_logic_operator, - ACTIONS(362), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(356), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(360), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [17868] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(729), 6, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - ACTIONS(727), 11, - sym_identifier, - anon_sym_none, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_num, - anon_sym_str, - anon_sym_option, - [17893] = 6, - ACTIONS(3), 1, - sym__comment, - ACTIONS(745), 1, - anon_sym_DASH_GT, - STATE(208), 1, - sym_math_operator, - STATE(209), 1, - sym_logic_operator, - ACTIONS(220), 3, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(218), 11, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [17924] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(226), 1, - anon_sym_LPAREN, - ACTIONS(767), 1, - anon_sym_RPAREN, - ACTIONS(224), 3, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(222), 11, - 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, - [17952] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(236), 1, - anon_sym_DASH_GT, - ACTIONS(358), 1, - anon_sym_DASH, - STATE(206), 1, - sym_logic_operator, - STATE(212), 1, - sym_math_operator, - ACTIONS(362), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(356), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(360), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [17986] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(771), 1, - anon_sym_LPAREN, - ACTIONS(773), 1, - anon_sym_RPAREN, - ACTIONS(775), 1, - anon_sym_LBRACK, - ACTIONS(777), 1, - anon_sym_option, - STATE(371), 1, + STATE(316), 1, aux_sym_type_repeat1, - STATE(379), 1, + STATE(322), 1, sym_type, - ACTIONS(769), 10, + ACTIONS(745), 10, sym_identifier, anon_sym_none, anon_sym_any, @@ -20809,197 +18059,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_num, anon_sym_str, - [18020] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(771), 1, - anon_sym_LPAREN, - ACTIONS(775), 1, - anon_sym_LBRACK, - ACTIONS(777), 1, - anon_sym_option, - ACTIONS(779), 1, - anon_sym_RPAREN, - STATE(360), 1, - aux_sym_type_repeat1, - STATE(379), 1, - sym_type, - ACTIONS(769), 10, - sym_identifier, - anon_sym_none, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_num, - anon_sym_str, - [18054] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(358), 1, - anon_sym_DASH, - ACTIONS(691), 1, - anon_sym_DASH_GT, - STATE(206), 1, - sym_logic_operator, - STATE(212), 1, - sym_math_operator, - ACTIONS(362), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(356), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(360), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [18088] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(358), 1, - anon_sym_DASH, - ACTIONS(485), 1, - anon_sym_DASH_GT, - STATE(206), 1, - sym_logic_operator, - STATE(212), 1, - sym_math_operator, - ACTIONS(362), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(356), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(360), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [18122] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(358), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_DASH_GT, - STATE(206), 1, - sym_logic_operator, - STATE(212), 1, - sym_math_operator, - ACTIONS(362), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(356), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(360), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [18156] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(226), 1, - anon_sym_LPAREN, - ACTIONS(781), 1, - anon_sym_RPAREN, - ACTIONS(224), 3, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(222), 11, - 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, - [18184] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(358), 1, - anon_sym_DASH, - ACTIONS(745), 1, - anon_sym_DASH_GT, - STATE(208), 1, - sym_math_operator, - STATE(209), 1, - sym_logic_operator, - ACTIONS(362), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(356), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(360), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [18218] = 8, + [14500] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(212), 1, - anon_sym_DASH_GT, - ACTIONS(358), 1, - anon_sym_DASH, - STATE(206), 1, - sym_logic_operator, - STATE(212), 1, - sym_math_operator, - ACTIONS(362), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(356), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(360), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [18252] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(226), 1, anon_sym_LPAREN, - ACTIONS(783), 1, + ACTIONS(210), 3, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(208), 12, anon_sym_RPAREN, - ACTIONS(224), 3, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(222), 11, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -21011,199 +18081,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_DASH_GT, - [18280] = 8, + [14526] = 5, ACTIONS(3), 1, sym__comment, - ACTIONS(358), 1, - anon_sym_DASH, - ACTIONS(671), 1, - anon_sym_DASH_GT, - STATE(206), 1, - sym_logic_operator, - STATE(212), 1, - sym_math_operator, - ACTIONS(362), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(356), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(360), 6, - 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] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(358), 1, - anon_sym_DASH, - ACTIONS(745), 1, - anon_sym_DASH_GT, - STATE(206), 1, - sym_logic_operator, - STATE(212), 1, - sym_math_operator, - ACTIONS(362), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(356), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(360), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [18348] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(788), 1, + ACTIONS(212), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(755), 1, anon_sym_RPAREN, - ACTIONS(793), 1, - anon_sym_LBRACK, - ACTIONS(796), 1, - anon_sym_option, - STATE(371), 1, - aux_sym_type_repeat1, - STATE(379), 1, - sym_type, - ACTIONS(785), 10, - sym_identifier, - anon_sym_none, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_num, - anon_sym_str, - [18382] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(358), 1, + ACTIONS(210), 3, anon_sym_DASH, - ACTIONS(370), 1, - anon_sym_DASH_GT, - STATE(206), 1, - sym_logic_operator, - STATE(212), 1, - sym_math_operator, - ACTIONS(362), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(356), 4, + ACTIONS(208), 11, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(360), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [18416] = 8, + anon_sym_DASH_GT, + [14554] = 8, ACTIONS(3), 1, sym__comment, - ACTIONS(358), 1, + ACTIONS(314), 1, + anon_sym_DASH, + ACTIONS(537), 1, + anon_sym_DASH_GT, + STATE(149), 1, + sym_logic_operator, + STATE(150), 1, + sym_math_operator, + ACTIONS(318), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(312), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(316), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [14588] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(212), 2, + anon_sym_LPAREN, + anon_sym_RPAREN, + ACTIONS(210), 3, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(208), 11, + 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, + [14614] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(314), 1, anon_sym_DASH, ACTIONS(677), 1, anon_sym_DASH_GT, - STATE(206), 1, + STATE(168), 1, sym_logic_operator, - STATE(212), 1, + STATE(169), 1, sym_math_operator, - ACTIONS(362), 2, + ACTIONS(318), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(356), 4, + ACTIONS(312), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(360), 6, + ACTIONS(316), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [18450] = 8, + [14648] = 8, ACTIONS(3), 1, sym__comment, - ACTIONS(358), 1, - anon_sym_DASH, - ACTIONS(366), 1, - anon_sym_DASH_GT, - STATE(206), 1, - sym_logic_operator, - STATE(212), 1, - sym_math_operator, - ACTIONS(362), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(356), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(360), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [18484] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(358), 1, - anon_sym_DASH, - ACTIONS(713), 1, - anon_sym_DASH_GT, - STATE(206), 1, - sym_logic_operator, - STATE(212), 1, - sym_math_operator, - ACTIONS(362), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(356), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(360), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [18518] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(226), 2, + ACTIONS(760), 1, anon_sym_LPAREN, + ACTIONS(763), 1, anon_sym_RPAREN, - ACTIONS(224), 3, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(768), 1, + anon_sym_option, + STATE(316), 1, + aux_sym_type_repeat1, + STATE(322), 1, + sym_type, + ACTIONS(757), 10, + sym_identifier, + anon_sym_none, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_num, + anon_sym_str, + [14682] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(212), 1, + anon_sym_LPAREN, + ACTIONS(771), 1, + anon_sym_RPAREN, + ACTIONS(210), 3, anon_sym_DASH, anon_sym_GT, anon_sym_LT, - ACTIONS(222), 11, + ACTIONS(208), 11, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -21215,16 +18227,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_DASH_GT, - [18544] = 4, + [14710] = 8, ACTIONS(3), 1, sym__comment, - ACTIONS(799), 1, + ACTIONS(304), 1, + anon_sym_DASH_GT, + ACTIONS(314), 1, + anon_sym_DASH, + STATE(149), 1, + sym_logic_operator, + STATE(150), 1, + sym_math_operator, + ACTIONS(318), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(312), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(316), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [14744] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(747), 1, + anon_sym_LPAREN, + ACTIONS(751), 1, + anon_sym_LBRACK, + ACTIONS(753), 1, + anon_sym_option, + ACTIONS(773), 1, anon_sym_RPAREN, - ACTIONS(272), 3, + STATE(310), 1, + aux_sym_type_repeat1, + STATE(322), 1, + sym_type, + ACTIONS(745), 10, + sym_identifier, + anon_sym_none, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_num, + anon_sym_str, + [14778] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(314), 1, + anon_sym_DASH, + ACTIONS(677), 1, + anon_sym_DASH_GT, + STATE(149), 1, + sym_logic_operator, + STATE(150), 1, + sym_math_operator, + ACTIONS(318), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(312), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(316), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [14812] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(775), 1, + anon_sym_RPAREN, + ACTIONS(366), 3, anon_sym_DASH, anon_sym_GT, anon_sym_LT, - ACTIONS(270), 11, + ACTIONS(364), 11, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -21236,37 +18326,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_DASH_GT, - [18569] = 4, + [14837] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(801), 1, - anon_sym_RPAREN, - ACTIONS(272), 3, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(270), 11, - 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, - [18594] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(807), 1, + ACTIONS(781), 1, anon_sym_COMMA, - ACTIONS(805), 3, + ACTIONS(779), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, - ACTIONS(803), 11, + ACTIONS(777), 11, sym_identifier, anon_sym_none, anon_sym_any, @@ -21278,16 +18347,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_num, anon_sym_str, anon_sym_option, - [18619] = 4, + [14862] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(809), 1, + ACTIONS(783), 1, anon_sym_RPAREN, - ACTIONS(272), 3, + ACTIONS(366), 3, anon_sym_DASH, anon_sym_GT, anon_sym_LT, - ACTIONS(270), 11, + ACTIONS(364), 11, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -21299,178 +18368,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_DASH_GT, - [18644] = 6, + [14887] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(771), 1, - anon_sym_LPAREN, - ACTIONS(775), 1, - anon_sym_LBRACK, - ACTIONS(777), 1, - anon_sym_option, - STATE(468), 1, - sym_type, - ACTIONS(769), 10, - sym_identifier, - anon_sym_none, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_num, - anon_sym_str, - [18672] = 6, - ACTIONS(3), 1, - sym__comment, - ACTIONS(771), 1, - anon_sym_LPAREN, - ACTIONS(775), 1, - anon_sym_LBRACK, - ACTIONS(777), 1, - anon_sym_option, - STATE(466), 1, - sym_type, - ACTIONS(769), 10, - sym_identifier, - anon_sym_none, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_num, - anon_sym_str, - [18700] = 6, - ACTIONS(3), 1, - sym__comment, - ACTIONS(771), 1, - anon_sym_LPAREN, - ACTIONS(775), 1, - anon_sym_LBRACK, - ACTIONS(777), 1, - anon_sym_option, - STATE(351), 1, - sym_type, - ACTIONS(769), 10, - sym_identifier, - anon_sym_none, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_num, - anon_sym_str, - [18728] = 6, - ACTIONS(3), 1, - sym__comment, - ACTIONS(771), 1, - anon_sym_LPAREN, - ACTIONS(775), 1, - anon_sym_LBRACK, - ACTIONS(777), 1, - anon_sym_option, - STATE(465), 1, - sym_type, - ACTIONS(769), 10, - sym_identifier, - anon_sym_none, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_num, - anon_sym_str, - [18756] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(791), 3, - anon_sym_LPAREN, + ACTIONS(785), 1, anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(811), 11, - sym_identifier, - anon_sym_none, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_num, - anon_sym_str, - anon_sym_option, - [18778] = 6, + ACTIONS(366), 3, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(364), 11, + 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, + [14912] = 6, ACTIONS(3), 1, sym__comment, - ACTIONS(771), 1, + ACTIONS(747), 1, anon_sym_LPAREN, - ACTIONS(775), 1, + ACTIONS(751), 1, anon_sym_LBRACK, - ACTIONS(777), 1, + ACTIONS(753), 1, anon_sym_option, - STATE(353), 1, - sym_type, - ACTIONS(769), 10, - sym_identifier, - anon_sym_none, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_num, - anon_sym_str, - [18806] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(595), 1, - sym_identifier, - ACTIONS(656), 1, - anon_sym_elseif, - ACTIONS(813), 1, - anon_sym_else, - STATE(308), 1, - sym_else, - STATE(254), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(593), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - [18831] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(587), 1, - sym_identifier, - ACTIONS(656), 1, - anon_sym_elseif, - ACTIONS(813), 1, - anon_sym_else, STATE(307), 1, + sym_type, + ACTIONS(745), 10, + sym_identifier, + anon_sym_none, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_num, + anon_sym_str, + [14940] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(747), 1, + anon_sym_LPAREN, + ACTIONS(751), 1, + anon_sym_LBRACK, + ACTIONS(753), 1, + anon_sym_option, + STATE(308), 1, + sym_type, + ACTIONS(745), 10, + sym_identifier, + anon_sym_none, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_num, + anon_sym_str, + [14968] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(747), 1, + anon_sym_LPAREN, + ACTIONS(751), 1, + anon_sym_LBRACK, + ACTIONS(753), 1, + anon_sym_option, + STATE(404), 1, + sym_type, + ACTIONS(745), 10, + sym_identifier, + anon_sym_none, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_num, + anon_sym_str, + [14996] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(763), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(787), 11, + sym_identifier, + anon_sym_none, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_num, + anon_sym_str, + anon_sym_option, + [15018] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(747), 1, + anon_sym_LPAREN, + ACTIONS(751), 1, + anon_sym_LBRACK, + ACTIONS(753), 1, + anon_sym_option, + STATE(429), 1, + sym_type, + ACTIONS(745), 10, + sym_identifier, + anon_sym_none, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_num, + anon_sym_str, + [15046] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(747), 1, + anon_sym_LPAREN, + ACTIONS(751), 1, + anon_sym_LBRACK, + ACTIONS(753), 1, + anon_sym_option, + STATE(409), 1, + sym_type, + ACTIONS(745), 10, + sym_identifier, + anon_sym_none, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_num, + anon_sym_str, + [15074] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(581), 1, + sym_identifier, + ACTIONS(650), 1, + anon_sym_elseif, + ACTIONS(789), 1, + anon_sym_else, + STATE(254), 1, sym_else, - STATE(387), 2, + STATE(216), 2, sym_else_if, aux_sym_if_else_repeat1, - ACTIONS(585), 3, + ACTIONS(579), 3, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, - [18856] = 3, + [15099] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(815), 2, + ACTIONS(791), 2, anon_sym_async, sym_identifier, - ACTIONS(817), 7, + ACTIONS(793), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_LBRACE, @@ -21478,1639 +18550,1582 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - [18873] = 4, + [15116] = 7, ACTIONS(3), 1, sym__comment, - ACTIONS(819), 1, - anon_sym_EQ, - STATE(34), 1, - sym_assignment_operator, - ACTIONS(234), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [18887] = 3, - ACTIONS(3), 1, - sym__comment, - STATE(32), 1, - sym_assignment_operator, - ACTIONS(234), 3, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [18899] = 3, - ACTIONS(3), 1, - sym__comment, - STATE(37), 1, - sym_assignment_operator, - ACTIONS(234), 3, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [18911] = 3, - ACTIONS(3), 1, - sym__comment, - STATE(34), 1, - sym_assignment_operator, - ACTIONS(234), 3, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [18923] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(821), 1, + ACTIONS(573), 1, sym_identifier, - ACTIONS(823), 1, - anon_sym_RBRACE, - STATE(430), 1, - aux_sym_map_repeat1, - [18936] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(825), 1, - anon_sym_EQ, - ACTIONS(827), 1, - anon_sym_LT, - STATE(480), 1, - sym_type_specification, - [18949] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(829), 1, - sym_identifier, - ACTIONS(831), 1, - anon_sym_RBRACE, - STATE(406), 1, - aux_sym_new_repeat1, - [18962] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(833), 1, - sym_identifier, - ACTIONS(836), 1, - anon_sym_RBRACE, - STATE(397), 1, - aux_sym_structure_repeat1, - [18975] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(838), 1, - sym_identifier, - ACTIONS(840), 1, - anon_sym_RBRACE, - STATE(397), 1, - aux_sym_structure_repeat1, - [18988] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(723), 1, - anon_sym_async, - ACTIONS(725), 1, - anon_sym_LBRACE, - STATE(271), 1, - sym_block, - [19001] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(844), 1, + ACTIONS(650), 1, + anon_sym_elseif, + ACTIONS(789), 1, + anon_sym_else, + STATE(248), 1, + sym_else, + STATE(331), 2, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(571), 3, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(842), 2, anon_sym_RBRACE, - sym_identifier, - [19012] = 4, + [15141] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(838), 1, - sym_identifier, - ACTIONS(846), 1, - anon_sym_RBRACE, - STATE(397), 1, - aux_sym_structure_repeat1, - [19025] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(827), 1, - anon_sym_LT, - ACTIONS(848), 1, + STATE(46), 1, + sym_assignment_operator, + ACTIONS(220), 3, anon_sym_EQ, - STATE(453), 1, - sym_type_specification, - [19038] = 4, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [15153] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(821), 1, + ACTIONS(795), 1, + anon_sym_EQ, + STATE(29), 1, + sym_assignment_operator, + ACTIONS(220), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [15167] = 3, + ACTIONS(3), 1, + sym__comment, + STATE(29), 1, + sym_assignment_operator, + ACTIONS(220), 3, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [15179] = 3, + ACTIONS(3), 1, + sym__comment, + STATE(42), 1, + sym_assignment_operator, + ACTIONS(220), 3, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [15191] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(797), 1, sym_identifier, - ACTIONS(850), 1, + ACTIONS(800), 1, anon_sym_RBRACE, - STATE(430), 1, - aux_sym_map_repeat1, - [19051] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(829), 1, - sym_identifier, - ACTIONS(852), 1, - anon_sym_RBRACE, - STATE(414), 1, - aux_sym_new_repeat1, - [19064] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(705), 1, - anon_sym_async, - ACTIONS(707), 1, - anon_sym_LBRACE, - STATE(83), 1, - sym_block, - [19077] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(854), 1, - sym_identifier, - ACTIONS(857), 1, - anon_sym_RBRACE, - STATE(406), 1, - aux_sym_new_repeat1, - [19090] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(705), 1, - anon_sym_async, - ACTIONS(707), 1, - anon_sym_LBRACE, - STATE(55), 1, - sym_block, - [19103] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(715), 1, - anon_sym_async, - ACTIONS(717), 1, - anon_sym_LBRACE, - STATE(110), 1, - sym_block, - [19116] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(829), 1, - sym_identifier, - ACTIONS(859), 1, - anon_sym_RBRACE, - STATE(406), 1, - aux_sym_new_repeat1, - [19129] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(838), 1, - sym_identifier, - ACTIONS(861), 1, - anon_sym_RBRACE, - STATE(401), 1, + STATE(338), 1, aux_sym_structure_repeat1, - [19142] = 4, + [15204] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(705), 1, + ACTIONS(802), 1, + sym_identifier, + ACTIONS(804), 1, + anon_sym_RBRACE, + STATE(346), 1, + aux_sym_new_repeat1, + [15217] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(806), 1, + sym_identifier, + ACTIONS(808), 1, + anon_sym_RBRACE, + STATE(356), 1, + aux_sym_map_repeat1, + [15230] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(810), 1, + sym_identifier, + ACTIONS(812), 1, + anon_sym_RBRACE, + STATE(348), 1, + aux_sym_structure_repeat1, + [15243] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(695), 1, anon_sym_async, - ACTIONS(707), 1, + ACTIONS(697), 1, + anon_sym_LBRACE, + STATE(239), 1, + sym_block, + [15256] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(695), 1, + anon_sym_async, + ACTIONS(697), 1, anon_sym_LBRACE, STATE(244), 1, sym_block, - [19155] = 4, + [15269] = 4, ACTIONS(3), 1, sym__comment, + ACTIONS(802), 1, + sym_identifier, + ACTIONS(814), 1, + anon_sym_RBRACE, + STATE(362), 1, + aux_sym_new_repeat1, + [15282] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(695), 1, + anon_sym_async, + ACTIONS(697), 1, + anon_sym_LBRACE, + STATE(241), 1, + sym_block, + [15295] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(816), 1, + sym_identifier, + ACTIONS(819), 1, + anon_sym_RBRACE, + STATE(346), 1, + aux_sym_new_repeat1, + [15308] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(810), 1, + sym_identifier, ACTIONS(821), 1, + anon_sym_RBRACE, + STATE(338), 1, + aux_sym_structure_repeat1, + [15321] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(810), 1, + sym_identifier, + ACTIONS(823), 1, + anon_sym_RBRACE, + STATE(338), 1, + aux_sym_structure_repeat1, + [15334] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(802), 1, + sym_identifier, + ACTIONS(825), 1, + anon_sym_RBRACE, + STATE(353), 1, + aux_sym_new_repeat1, + [15347] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(827), 1, + anon_sym_EQ, + ACTIONS(829), 1, + anon_sym_LT, + STATE(365), 1, + sym_type_specification, + [15360] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(831), 1, + sym_identifier, + ACTIONS(833), 1, + anon_sym_RPAREN, + STATE(359), 1, + aux_sym_function_repeat1, + [15373] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(831), 1, + sym_identifier, + ACTIONS(835), 1, + anon_sym_RPAREN, + STATE(359), 1, + aux_sym_function_repeat1, + [15386] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(802), 1, + sym_identifier, + ACTIONS(837), 1, + anon_sym_RBRACE, + STATE(346), 1, + aux_sym_new_repeat1, + [15399] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(831), 1, + sym_identifier, + ACTIONS(839), 1, + anon_sym_RPAREN, + STATE(359), 1, + aux_sym_function_repeat1, + [15412] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(806), 1, + sym_identifier, + ACTIONS(841), 1, + anon_sym_RBRACE, + STATE(356), 1, + aux_sym_map_repeat1, + [15425] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(843), 1, + sym_identifier, + ACTIONS(846), 1, + anon_sym_RBRACE, + STATE(356), 1, + aux_sym_map_repeat1, + [15438] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(810), 1, + sym_identifier, + ACTIONS(848), 1, + anon_sym_RBRACE, + STATE(347), 1, + aux_sym_structure_repeat1, + [15451] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(699), 1, + anon_sym_async, + ACTIONS(701), 1, + anon_sym_LBRACE, + STATE(108), 1, + sym_block, + [15464] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(850), 1, + sym_identifier, + ACTIONS(853), 1, + anon_sym_RPAREN, + STATE(359), 1, + aux_sym_function_repeat1, + [15477] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(857), 1, + anon_sym_COMMA, + ACTIONS(855), 2, + anon_sym_RBRACE, + sym_identifier, + [15488] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(861), 1, + anon_sym_COMMA, + ACTIONS(859), 2, + anon_sym_RBRACE, + sym_identifier, + [15499] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(802), 1, sym_identifier, ACTIONS(863), 1, anon_sym_RBRACE, - STATE(430), 1, - aux_sym_map_repeat1, - [19168] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(865), 1, - sym_identifier, - ACTIONS(868), 1, - anon_sym_RPAREN, - STATE(413), 1, - aux_sym_function_repeat1, - [19181] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(829), 1, - sym_identifier, - ACTIONS(870), 1, - anon_sym_RBRACE, - STATE(406), 1, + STATE(346), 1, aux_sym_new_repeat1, - [19194] = 4, + [15512] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(829), 1, - sym_identifier, - ACTIONS(872), 1, - anon_sym_RBRACE, - STATE(396), 1, - aux_sym_new_repeat1, - [19207] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(838), 1, - sym_identifier, - ACTIONS(874), 1, - anon_sym_RBRACE, - STATE(398), 1, - aux_sym_structure_repeat1, - [19220] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(829), 1, - sym_identifier, - ACTIONS(876), 1, - anon_sym_RBRACE, - STATE(409), 1, - aux_sym_new_repeat1, - [19233] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(838), 1, - sym_identifier, - ACTIONS(878), 1, - anon_sym_RBRACE, - STATE(397), 1, - aux_sym_structure_repeat1, - [19246] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(715), 1, + ACTIONS(703), 1, anon_sym_async, - ACTIONS(717), 1, + ACTIONS(705), 1, anon_sym_LBRACE, - STATE(299), 1, + STATE(55), 1, sym_block, - [19259] = 4, + [15525] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(838), 1, - sym_identifier, - ACTIONS(880), 1, - anon_sym_RBRACE, - STATE(418), 1, - aux_sym_structure_repeat1, - [19272] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(882), 1, - anon_sym_COMMA, - ACTIONS(868), 2, - anon_sym_RPAREN, - sym_identifier, - [19283] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(884), 1, - sym_identifier, - ACTIONS(886), 1, - anon_sym_RPAREN, - STATE(413), 1, - aux_sym_function_repeat1, - [19296] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(884), 1, - sym_identifier, - ACTIONS(888), 1, - anon_sym_RPAREN, - STATE(413), 1, - aux_sym_function_repeat1, - [19309] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(827), 1, + ACTIONS(829), 1, anon_sym_LT, - ACTIONS(890), 1, + ACTIONS(865), 1, anon_sym_EQ, - STATE(431), 1, + STATE(405), 1, sym_type_specification, - [19322] = 4, + [15538] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(723), 1, - anon_sym_async, - ACTIONS(725), 1, - anon_sym_LBRACE, - STATE(299), 1, - sym_block, - [19335] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(884), 1, + ACTIONS(867), 1, + anon_sym_EQ, + ACTIONS(800), 2, + anon_sym_RBRACE, sym_identifier, - ACTIONS(892), 1, - anon_sym_RPAREN, - STATE(413), 1, - aux_sym_function_repeat1, - [19348] = 4, + [15549] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(723), 1, - anon_sym_async, - ACTIONS(725), 1, - anon_sym_LBRACE, - STATE(280), 1, - sym_block, - [19361] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(896), 1, + ACTIONS(869), 1, anon_sym_COMMA, - ACTIONS(894), 2, - anon_sym_RBRACE, + ACTIONS(853), 2, + anon_sym_RPAREN, sym_identifier, - [19372] = 4, + [15560] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(715), 1, - anon_sym_async, - ACTIONS(717), 1, - anon_sym_LBRACE, - STATE(115), 1, - sym_block, - [19385] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(898), 1, + ACTIONS(806), 1, sym_identifier, - ACTIONS(901), 1, + ACTIONS(871), 1, anon_sym_RBRACE, - STATE(430), 1, + STATE(356), 1, aux_sym_map_repeat1, - [19398] = 3, + [15573] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(699), 1, + anon_sym_async, + ACTIONS(701), 1, + anon_sym_LBRACE, + STATE(244), 1, + sym_block, + [15586] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(810), 1, + sym_identifier, + ACTIONS(873), 1, + anon_sym_RBRACE, + STATE(374), 1, + aux_sym_structure_repeat1, + [15599] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(802), 1, + sym_identifier, + ACTIONS(875), 1, + anon_sym_RBRACE, + STATE(339), 1, + aux_sym_new_repeat1, + [15612] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(829), 1, + anon_sym_LT, + ACTIONS(877), 1, + anon_sym_EQ, + STATE(399), 1, + sym_type_specification, + [15625] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(703), 1, + anon_sym_async, + ACTIONS(705), 1, + anon_sym_LBRACE, + STATE(64), 1, + sym_block, + [15638] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(699), 1, + anon_sym_async, + ACTIONS(701), 1, + anon_sym_LBRACE, + STATE(110), 1, + sym_block, + [15651] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(810), 1, + sym_identifier, + ACTIONS(879), 1, + anon_sym_RBRACE, + STATE(338), 1, + aux_sym_structure_repeat1, + [15664] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(703), 1, + anon_sym_async, + ACTIONS(705), 1, + anon_sym_LBRACE, + STATE(210), 1, + sym_block, + [15677] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(829), 1, + anon_sym_LT, + STATE(358), 1, + sym_type_specification, + [15687] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(881), 2, + anon_sym_RBRACE, + sym_identifier, + [15695] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(806), 1, + sym_identifier, + STATE(340), 1, + aux_sym_map_repeat1, + [15705] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(829), 1, + anon_sym_LT, + STATE(363), 1, + sym_type_specification, + [15715] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(344), 1, + anon_sym_LPAREN, + ACTIONS(883), 1, + anon_sym_RPAREN, + [15725] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(885), 2, + anon_sym_RBRACE, + sym_identifier, + [15733] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(887), 2, + anon_sym_RBRACE, + sym_identifier, + [15741] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(889), 2, + anon_sym_RPAREN, + sym_identifier, + [15749] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(891), 2, + anon_sym_RBRACE, + sym_identifier, + [15757] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(829), 1, + anon_sym_LT, + STATE(372), 1, + sym_type_specification, + [15767] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(829), 1, + anon_sym_LT, + STATE(366), 1, + sym_type_specification, + [15777] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(829), 1, + anon_sym_LT, + STATE(373), 1, + sym_type_specification, + [15787] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(893), 2, + anon_sym_RBRACE, + sym_identifier, + [15795] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(344), 1, + anon_sym_LPAREN, + ACTIONS(895), 1, + anon_sym_RPAREN, + [15805] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(855), 2, + anon_sym_RBRACE, + sym_identifier, + [15813] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(829), 1, + anon_sym_LT, + STATE(345), 1, + sym_type_specification, + [15823] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(806), 1, + sym_identifier, + STATE(367), 1, + aux_sym_map_repeat1, + [15833] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(806), 1, + sym_identifier, + STATE(355), 1, + aux_sym_map_repeat1, + [15843] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(344), 1, + anon_sym_LPAREN, + ACTIONS(897), 1, + anon_sym_RPAREN, + [15853] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(829), 1, + anon_sym_LT, + STATE(342), 1, + sym_type_specification, + [15863] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(899), 1, + sym_integer, + [15870] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(901), 1, + anon_sym_LPAREN, + [15877] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(903), 1, + anon_sym_LBRACE, + [15884] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(905), 1, anon_sym_EQ, - ACTIONS(836), 2, - anon_sym_RBRACE, - sym_identifier, - [19409] = 3, + [15891] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(821), 1, - sym_identifier, - STATE(412), 1, - aux_sym_map_repeat1, - [19419] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(894), 2, - anon_sym_RBRACE, - sym_identifier, - [19427] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(905), 2, - anon_sym_RBRACE, - sym_identifier, - [19435] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(298), 1, - anon_sym_LPAREN, ACTIONS(907), 1, - anon_sym_RPAREN, - [19445] = 3, + anon_sym_LBRACE, + [15898] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(827), 1, - anon_sym_LT, - STATE(421), 1, - sym_type_specification, - [19455] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(827), 1, - anon_sym_LT, - STATE(405), 1, - sym_type_specification, - [19465] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(298), 1, - anon_sym_LPAREN, ACTIONS(909), 1, - anon_sym_RPAREN, - [19475] = 3, + anon_sym_LBRACE, + [15905] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(827), 1, - anon_sym_LT, - STATE(427), 1, - sym_type_specification, - [19485] = 2, + ACTIONS(911), 1, + anon_sym_LBRACE, + [15912] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(911), 2, - anon_sym_RBRACE, - sym_identifier, - [19493] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(821), 1, - sym_identifier, - STATE(403), 1, - aux_sym_map_repeat1, - [19503] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(298), 1, - anon_sym_LPAREN, ACTIONS(913), 1, + anon_sym_in, + [15919] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(915), 1, anon_sym_RPAREN, - [19513] = 3, + [15926] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(827), 1, - anon_sym_LT, - STATE(407), 1, - sym_type_specification, - [19523] = 2, + ACTIONS(917), 1, + anon_sym_EQ, + [15933] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(915), 2, - anon_sym_RBRACE, - sym_identifier, - [19531] = 2, + ACTIONS(919), 1, + sym_integer, + [15940] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(917), 2, - anon_sym_RBRACE, - sym_identifier, - [19539] = 2, + ACTIONS(721), 1, + anon_sym_EQ_GT, + [15947] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(919), 2, - anon_sym_RPAREN, - sym_identifier, - [19547] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(827), 1, - anon_sym_LT, - STATE(429), 1, - sym_type_specification, - [19557] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(921), 2, - anon_sym_RBRACE, - sym_identifier, - [19565] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(827), 1, - anon_sym_LT, - STATE(399), 1, - sym_type_specification, - [19575] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(827), 1, - anon_sym_LT, - STATE(408), 1, - sym_type_specification, - [19585] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(821), 1, - sym_identifier, - STATE(394), 1, - aux_sym_map_repeat1, - [19595] = 2, + ACTIONS(921), 1, + anon_sym_in, + [15954] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(923), 1, - anon_sym_COLON, - [19602] = 2, + anon_sym_RBRACK, + [15961] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(925), 1, - anon_sym_EQ, - [19609] = 2, + sym_integer, + [15968] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(927), 1, anon_sym_LBRACE, - [19616] = 2, + [15975] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(929), 1, anon_sym_LBRACE, - [19623] = 2, + [15982] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(931), 1, anon_sym_LBRACE, - [19630] = 2, + [15989] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(933), 1, anon_sym_LPAREN, - [19637] = 2, + [15996] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(935), 1, - anon_sym_LPAREN, - [19644] = 2, + anon_sym_COLON, + [16003] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(937), 1, - anon_sym_in, - [19651] = 2, + anon_sym_COLON, + [16010] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(939), 1, - anon_sym_COLON, - [19658] = 2, + anon_sym_LPAREN, + [16017] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(941), 1, anon_sym_LBRACE, - [19665] = 2, + [16024] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(943), 1, - anon_sym_LBRACE, - [19672] = 2, + anon_sym_LPAREN, + [16031] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(945), 1, anon_sym_in, - [19679] = 2, + [16038] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(947), 1, anon_sym_COLON, - [19686] = 2, + [16045] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(949), 1, - anon_sym_RPAREN, - [19693] = 2, + anon_sym_LBRACE, + [16052] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(951), 1, - anon_sym_RBRACK, - [19700] = 2, + ts_builtin_sym_end, + [16059] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(953), 1, - anon_sym_LPAREN, - [19707] = 2, + anon_sym_LBRACE, + [16066] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(955), 1, - anon_sym_GT, - [19714] = 2, + sym_identifier, + [16073] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(957), 1, - anon_sym_in, - [19721] = 2, + sym_identifier, + [16080] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(959), 1, - anon_sym_LBRACE, - [19728] = 2, + anon_sym_LPAREN, + [16087] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(961), 1, - anon_sym_LPAREN, - [19735] = 2, + sym_identifier, + [16094] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(963), 1, - anon_sym_LBRACE, - [19742] = 2, + anon_sym_GT, + [16101] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(965), 1, - anon_sym_LBRACE, - [19749] = 2, + anon_sym_LPAREN, + [16108] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(967), 1, - anon_sym_LBRACE, - [19756] = 2, + sym_identifier, + [16115] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(969), 1, - anon_sym_LBRACE, - [19763] = 2, + sym_identifier, + [16122] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(971), 1, - anon_sym_COLON, - [19770] = 2, + anon_sym_LPAREN, + [16129] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(973), 1, sym_identifier, - [19777] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(757), 1, - anon_sym_EQ_GT, - [19784] = 2, + [16136] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(975), 1, - sym_identifier, - [19791] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(977), 1, - anon_sym_EQ, - [19798] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(979), 1, - anon_sym_LPAREN, - [19805] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(981), 1, - anon_sym_COLON, - [19812] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(983), 1, - ts_builtin_sym_end, - [19819] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(985), 1, - sym_identifier, - [19826] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(987), 1, - anon_sym_COLON, - [19833] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(989), 1, - anon_sym_LPAREN, - [19840] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(991), 1, - sym_identifier, - [19847] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(993), 1, - anon_sym_COLON, - [19854] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(995), 1, - sym_identifier, - [19861] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(997), 1, - anon_sym_LPAREN, - [19868] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(999), 1, - sym_identifier, - [19875] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1001), 1, anon_sym_LBRACE, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(48)] = 0, - [SMALL_STATE(49)] = 67, - [SMALL_STATE(50)] = 132, - [SMALL_STATE(51)] = 199, - [SMALL_STATE(52)] = 273, - [SMALL_STATE(53)] = 339, - [SMALL_STATE(54)] = 405, - [SMALL_STATE(55)] = 469, - [SMALL_STATE(56)] = 528, - [SMALL_STATE(57)] = 587, - [SMALL_STATE(58)] = 646, - [SMALL_STATE(59)] = 705, - [SMALL_STATE(60)] = 764, - [SMALL_STATE(61)] = 823, - [SMALL_STATE(62)] = 882, - [SMALL_STATE(63)] = 941, - [SMALL_STATE(64)] = 1000, - [SMALL_STATE(65)] = 1059, - [SMALL_STATE(66)] = 1118, - [SMALL_STATE(67)] = 1177, - [SMALL_STATE(68)] = 1236, - [SMALL_STATE(69)] = 1295, - [SMALL_STATE(70)] = 1356, - [SMALL_STATE(71)] = 1415, - [SMALL_STATE(72)] = 1474, - [SMALL_STATE(73)] = 1547, - [SMALL_STATE(74)] = 1606, - [SMALL_STATE(75)] = 1665, - [SMALL_STATE(76)] = 1726, - [SMALL_STATE(77)] = 1785, - [SMALL_STATE(78)] = 1844, - [SMALL_STATE(79)] = 1903, - [SMALL_STATE(80)] = 1962, - [SMALL_STATE(81)] = 2021, - [SMALL_STATE(82)] = 2080, - [SMALL_STATE(83)] = 2139, - [SMALL_STATE(84)] = 2198, - [SMALL_STATE(85)] = 2267, - [SMALL_STATE(86)] = 2326, - [SMALL_STATE(87)] = 2385, - [SMALL_STATE(88)] = 2448, - [SMALL_STATE(89)] = 2518, - [SMALL_STATE(90)] = 2578, - [SMALL_STATE(91)] = 2640, - [SMALL_STATE(92)] = 2702, - [SMALL_STATE(93)] = 2774, - [SMALL_STATE(94)] = 2836, - [SMALL_STATE(95)] = 2898, - [SMALL_STATE(96)] = 2959, - [SMALL_STATE(97)] = 3016, - [SMALL_STATE(98)] = 3075, - [SMALL_STATE(99)] = 3136, - [SMALL_STATE(100)] = 3190, - [SMALL_STATE(101)] = 3244, - [SMALL_STATE(102)] = 3298, - [SMALL_STATE(103)] = 3352, - [SMALL_STATE(104)] = 3406, - [SMALL_STATE(105)] = 3460, - [SMALL_STATE(106)] = 3514, - [SMALL_STATE(107)] = 3568, - [SMALL_STATE(108)] = 3622, - [SMALL_STATE(109)] = 3678, - [SMALL_STATE(110)] = 3732, - [SMALL_STATE(111)] = 3786, - [SMALL_STATE(112)] = 3840, - [SMALL_STATE(113)] = 3894, - [SMALL_STATE(114)] = 3948, - [SMALL_STATE(115)] = 4002, - [SMALL_STATE(116)] = 4056, - [SMALL_STATE(117)] = 4110, - [SMALL_STATE(118)] = 4164, - [SMALL_STATE(119)] = 4218, - [SMALL_STATE(120)] = 4274, - [SMALL_STATE(121)] = 4328, - [SMALL_STATE(122)] = 4382, - [SMALL_STATE(123)] = 4436, - [SMALL_STATE(124)] = 4490, - [SMALL_STATE(125)] = 4544, - [SMALL_STATE(126)] = 4598, - [SMALL_STATE(127)] = 4656, - [SMALL_STATE(128)] = 4710, - [SMALL_STATE(129)] = 4764, - [SMALL_STATE(130)] = 4818, - [SMALL_STATE(131)] = 4885, - [SMALL_STATE(132)] = 4979, - [SMALL_STATE(133)] = 5073, - [SMALL_STATE(134)] = 5167, - [SMALL_STATE(135)] = 5229, - [SMALL_STATE(136)] = 5320, - [SMALL_STATE(137)] = 5411, - [SMALL_STATE(138)] = 5504, - [SMALL_STATE(139)] = 5595, - [SMALL_STATE(140)] = 5686, - [SMALL_STATE(141)] = 5777, - [SMALL_STATE(142)] = 5868, - [SMALL_STATE(143)] = 5961, - [SMALL_STATE(144)] = 6052, - [SMALL_STATE(145)] = 6109, - [SMALL_STATE(146)] = 6166, - [SMALL_STATE(147)] = 6257, - [SMALL_STATE(148)] = 6350, - [SMALL_STATE(149)] = 6441, - [SMALL_STATE(150)] = 6532, - [SMALL_STATE(151)] = 6625, - [SMALL_STATE(152)] = 6716, - [SMALL_STATE(153)] = 6807, - [SMALL_STATE(154)] = 6898, - [SMALL_STATE(155)] = 6991, - [SMALL_STATE(156)] = 7082, - [SMALL_STATE(157)] = 7175, - [SMALL_STATE(158)] = 7266, - [SMALL_STATE(159)] = 7359, - [SMALL_STATE(160)] = 7452, - [SMALL_STATE(161)] = 7543, - [SMALL_STATE(162)] = 7634, - [SMALL_STATE(163)] = 7727, - [SMALL_STATE(164)] = 7818, - [SMALL_STATE(165)] = 7909, - [SMALL_STATE(166)] = 7961, - [SMALL_STATE(167)] = 8046, - [SMALL_STATE(168)] = 8131, - [SMALL_STATE(169)] = 8216, - [SMALL_STATE(170)] = 8301, - [SMALL_STATE(171)] = 8386, - [SMALL_STATE(172)] = 8467, - [SMALL_STATE(173)] = 8552, - [SMALL_STATE(174)] = 8633, - [SMALL_STATE(175)] = 8718, - [SMALL_STATE(176)] = 8803, - [SMALL_STATE(177)] = 8888, - [SMALL_STATE(178)] = 8973, - [SMALL_STATE(179)] = 9058, - [SMALL_STATE(180)] = 9139, - [SMALL_STATE(181)] = 9220, - [SMALL_STATE(182)] = 9305, - [SMALL_STATE(183)] = 9390, - [SMALL_STATE(184)] = 9475, - [SMALL_STATE(185)] = 9560, - [SMALL_STATE(186)] = 9645, - [SMALL_STATE(187)] = 9730, - [SMALL_STATE(188)] = 9815, - [SMALL_STATE(189)] = 9896, - [SMALL_STATE(190)] = 9977, + [SMALL_STATE(49)] = 74, + [SMALL_STATE(50)] = 147, + [SMALL_STATE(51)] = 216, + [SMALL_STATE(52)] = 277, + [SMALL_STATE(53)] = 335, + [SMALL_STATE(54)] = 393, + [SMALL_STATE(55)] = 451, + [SMALL_STATE(56)] = 509, + [SMALL_STATE(57)] = 567, + [SMALL_STATE(58)] = 625, + [SMALL_STATE(59)] = 683, + [SMALL_STATE(60)] = 741, + [SMALL_STATE(61)] = 799, + [SMALL_STATE(62)] = 857, + [SMALL_STATE(63)] = 915, + [SMALL_STATE(64)] = 973, + [SMALL_STATE(65)] = 1031, + [SMALL_STATE(66)] = 1089, + [SMALL_STATE(67)] = 1147, + [SMALL_STATE(68)] = 1205, + [SMALL_STATE(69)] = 1263, + [SMALL_STATE(70)] = 1321, + [SMALL_STATE(71)] = 1379, + [SMALL_STATE(72)] = 1437, + [SMALL_STATE(73)] = 1499, + [SMALL_STATE(74)] = 1571, + [SMALL_STATE(75)] = 1641, + [SMALL_STATE(76)] = 1703, + [SMALL_STATE(77)] = 1760, + [SMALL_STATE(78)] = 1817, + [SMALL_STATE(79)] = 1876, + [SMALL_STATE(80)] = 1932, + [SMALL_STATE(81)] = 1986, + [SMALL_STATE(82)] = 2040, + [SMALL_STATE(83)] = 2094, + [SMALL_STATE(84)] = 2148, + [SMALL_STATE(85)] = 2202, + [SMALL_STATE(86)] = 2258, + [SMALL_STATE(87)] = 2312, + [SMALL_STATE(88)] = 2366, + [SMALL_STATE(89)] = 2420, + [SMALL_STATE(90)] = 2474, + [SMALL_STATE(91)] = 2528, + [SMALL_STATE(92)] = 2581, + [SMALL_STATE(93)] = 2634, + [SMALL_STATE(94)] = 2687, + [SMALL_STATE(95)] = 2740, + [SMALL_STATE(96)] = 2793, + [SMALL_STATE(97)] = 2846, + [SMALL_STATE(98)] = 2899, + [SMALL_STATE(99)] = 2952, + [SMALL_STATE(100)] = 3005, + [SMALL_STATE(101)] = 3058, + [SMALL_STATE(102)] = 3111, + [SMALL_STATE(103)] = 3164, + [SMALL_STATE(104)] = 3261, + [SMALL_STATE(105)] = 3314, + [SMALL_STATE(106)] = 3381, + [SMALL_STATE(107)] = 3478, + [SMALL_STATE(108)] = 3531, + [SMALL_STATE(109)] = 3584, + [SMALL_STATE(110)] = 3681, + [SMALL_STATE(111)] = 3734, + [SMALL_STATE(112)] = 3787, + [SMALL_STATE(113)] = 3840, + [SMALL_STATE(114)] = 3893, + [SMALL_STATE(115)] = 3946, + [SMALL_STATE(116)] = 4040, + [SMALL_STATE(117)] = 4136, + [SMALL_STATE(118)] = 4230, + [SMALL_STATE(119)] = 4324, + [SMALL_STATE(120)] = 4418, + [SMALL_STATE(121)] = 4514, + [SMALL_STATE(122)] = 4610, + [SMALL_STATE(123)] = 4706, + [SMALL_STATE(124)] = 4800, + [SMALL_STATE(125)] = 4894, + [SMALL_STATE(126)] = 4988, + [SMALL_STATE(127)] = 5082, + [SMALL_STATE(128)] = 5176, + [SMALL_STATE(129)] = 5270, + [SMALL_STATE(130)] = 5366, + [SMALL_STATE(131)] = 5462, + [SMALL_STATE(132)] = 5556, + [SMALL_STATE(133)] = 5650, + [SMALL_STATE(134)] = 5712, + [SMALL_STATE(135)] = 5808, + [SMALL_STATE(136)] = 5904, + [SMALL_STATE(137)] = 5998, + [SMALL_STATE(138)] = 6092, + [SMALL_STATE(139)] = 6186, + [SMALL_STATE(140)] = 6280, + [SMALL_STATE(141)] = 6374, + [SMALL_STATE(142)] = 6468, + [SMALL_STATE(143)] = 6564, + [SMALL_STATE(144)] = 6658, + [SMALL_STATE(145)] = 6715, + [SMALL_STATE(146)] = 6772, + [SMALL_STATE(147)] = 6860, + [SMALL_STATE(148)] = 6946, + [SMALL_STATE(149)] = 7034, + [SMALL_STATE(150)] = 7122, + [SMALL_STATE(151)] = 7210, + [SMALL_STATE(152)] = 7298, + [SMALL_STATE(153)] = 7384, + [SMALL_STATE(154)] = 7472, + [SMALL_STATE(155)] = 7524, + [SMALL_STATE(156)] = 7578, + [SMALL_STATE(157)] = 7666, + [SMALL_STATE(158)] = 7754, + [SMALL_STATE(159)] = 7842, + [SMALL_STATE(160)] = 7930, + [SMALL_STATE(161)] = 8018, + [SMALL_STATE(162)] = 8106, + [SMALL_STATE(163)] = 8194, + [SMALL_STATE(164)] = 8246, + [SMALL_STATE(165)] = 8334, + [SMALL_STATE(166)] = 8422, + [SMALL_STATE(167)] = 8510, + [SMALL_STATE(168)] = 8598, + [SMALL_STATE(169)] = 8686, + [SMALL_STATE(170)] = 8774, + [SMALL_STATE(171)] = 8860, + [SMALL_STATE(172)] = 8948, + [SMALL_STATE(173)] = 9036, + [SMALL_STATE(174)] = 9124, + [SMALL_STATE(175)] = 9212, + [SMALL_STATE(176)] = 9261, + [SMALL_STATE(177)] = 9310, + [SMALL_STATE(178)] = 9359, + [SMALL_STATE(179)] = 9408, + [SMALL_STATE(180)] = 9473, + [SMALL_STATE(181)] = 9522, + [SMALL_STATE(182)] = 9571, + [SMALL_STATE(183)] = 9620, + [SMALL_STATE(184)] = 9669, + [SMALL_STATE(185)] = 9720, + [SMALL_STATE(186)] = 9783, + [SMALL_STATE(187)] = 9832, + [SMALL_STATE(188)] = 9881, + [SMALL_STATE(189)] = 9945, + [SMALL_STATE(190)] = 10009, [SMALL_STATE(191)] = 10062, - [SMALL_STATE(192)] = 10147, - [SMALL_STATE(193)] = 10232, - [SMALL_STATE(194)] = 10315, - [SMALL_STATE(195)] = 10400, - [SMALL_STATE(196)] = 10485, - [SMALL_STATE(197)] = 10548, - [SMALL_STATE(198)] = 10633, - [SMALL_STATE(199)] = 10716, - [SMALL_STATE(200)] = 10801, - [SMALL_STATE(201)] = 10886, - [SMALL_STATE(202)] = 10951, - [SMALL_STATE(203)] = 11036, - [SMALL_STATE(204)] = 11121, - [SMALL_STATE(205)] = 11206, - [SMALL_STATE(206)] = 11289, - [SMALL_STATE(207)] = 11374, - [SMALL_STATE(208)] = 11457, - [SMALL_STATE(209)] = 11542, - [SMALL_STATE(210)] = 11627, - [SMALL_STATE(211)] = 11712, - [SMALL_STATE(212)] = 11797, - [SMALL_STATE(213)] = 11882, - [SMALL_STATE(214)] = 11967, - [SMALL_STATE(215)] = 12052, - [SMALL_STATE(216)] = 12137, - [SMALL_STATE(217)] = 12222, - [SMALL_STATE(218)] = 12307, - [SMALL_STATE(219)] = 12392, - [SMALL_STATE(220)] = 12477, - [SMALL_STATE(221)] = 12562, - [SMALL_STATE(222)] = 12643, - [SMALL_STATE(223)] = 12707, - [SMALL_STATE(224)] = 12771, - [SMALL_STATE(225)] = 12824, - [SMALL_STATE(226)] = 12877, - [SMALL_STATE(227)] = 12925, - [SMALL_STATE(228)] = 12967, - [SMALL_STATE(229)] = 13009, - [SMALL_STATE(230)] = 13051, - [SMALL_STATE(231)] = 13093, - [SMALL_STATE(232)] = 13135, - [SMALL_STATE(233)] = 13175, - [SMALL_STATE(234)] = 13215, - [SMALL_STATE(235)] = 13255, - [SMALL_STATE(236)] = 13295, - [SMALL_STATE(237)] = 13335, - [SMALL_STATE(238)] = 13375, - [SMALL_STATE(239)] = 13415, - [SMALL_STATE(240)] = 13455, - [SMALL_STATE(241)] = 13497, - [SMALL_STATE(242)] = 13537, - [SMALL_STATE(243)] = 13577, - [SMALL_STATE(244)] = 13617, - [SMALL_STATE(245)] = 13657, - [SMALL_STATE(246)] = 13720, - [SMALL_STATE(247)] = 13767, - [SMALL_STATE(248)] = 13830, - [SMALL_STATE(249)] = 13893, - [SMALL_STATE(250)] = 13956, - [SMALL_STATE(251)] = 14003, - [SMALL_STATE(252)] = 14066, - [SMALL_STATE(253)] = 14129, - [SMALL_STATE(254)] = 14192, - [SMALL_STATE(255)] = 14234, - [SMALL_STATE(256)] = 14277, - [SMALL_STATE(257)] = 14320, - [SMALL_STATE(258)] = 14361, - [SMALL_STATE(259)] = 14398, - [SMALL_STATE(260)] = 14434, - [SMALL_STATE(261)] = 14470, - [SMALL_STATE(262)] = 14506, - [SMALL_STATE(263)] = 14548, - [SMALL_STATE(264)] = 14590, - [SMALL_STATE(265)] = 14626, - [SMALL_STATE(266)] = 14666, - [SMALL_STATE(267)] = 14702, - [SMALL_STATE(268)] = 14738, - [SMALL_STATE(269)] = 14774, - [SMALL_STATE(270)] = 14810, - [SMALL_STATE(271)] = 14846, - [SMALL_STATE(272)] = 14882, - [SMALL_STATE(273)] = 14918, - [SMALL_STATE(274)] = 14958, - [SMALL_STATE(275)] = 14994, - [SMALL_STATE(276)] = 15030, - [SMALL_STATE(277)] = 15066, - [SMALL_STATE(278)] = 15104, - [SMALL_STATE(279)] = 15140, - [SMALL_STATE(280)] = 15176, - [SMALL_STATE(281)] = 15212, - [SMALL_STATE(282)] = 15248, - [SMALL_STATE(283)] = 15284, - [SMALL_STATE(284)] = 15320, - [SMALL_STATE(285)] = 15356, - [SMALL_STATE(286)] = 15392, - [SMALL_STATE(287)] = 15428, - [SMALL_STATE(288)] = 15464, - [SMALL_STATE(289)] = 15500, - [SMALL_STATE(290)] = 15536, - [SMALL_STATE(291)] = 15572, - [SMALL_STATE(292)] = 15608, - [SMALL_STATE(293)] = 15644, - [SMALL_STATE(294)] = 15680, - [SMALL_STATE(295)] = 15716, - [SMALL_STATE(296)] = 15752, - [SMALL_STATE(297)] = 15788, - [SMALL_STATE(298)] = 15825, - [SMALL_STATE(299)] = 15859, - [SMALL_STATE(300)] = 15893, - [SMALL_STATE(301)] = 15929, - [SMALL_STATE(302)] = 15963, - [SMALL_STATE(303)] = 15997, - [SMALL_STATE(304)] = 16031, - [SMALL_STATE(305)] = 16065, - [SMALL_STATE(306)] = 16099, - [SMALL_STATE(307)] = 16133, - [SMALL_STATE(308)] = 16167, - [SMALL_STATE(309)] = 16201, - [SMALL_STATE(310)] = 16235, - [SMALL_STATE(311)] = 16269, - [SMALL_STATE(312)] = 16316, - [SMALL_STATE(313)] = 16351, - [SMALL_STATE(314)] = 16383, - [SMALL_STATE(315)] = 16425, - [SMALL_STATE(316)] = 16459, - [SMALL_STATE(317)] = 16496, - [SMALL_STATE(318)] = 16533, - [SMALL_STATE(319)] = 16564, - [SMALL_STATE(320)] = 16595, - [SMALL_STATE(321)] = 16625, - [SMALL_STATE(322)] = 16655, - [SMALL_STATE(323)] = 16687, - [SMALL_STATE(324)] = 16729, - [SMALL_STATE(325)] = 16769, - [SMALL_STATE(326)] = 16803, - [SMALL_STATE(327)] = 16837, - [SMALL_STATE(328)] = 16880, - [SMALL_STATE(329)] = 16923, - [SMALL_STATE(330)] = 16954, - [SMALL_STATE(331)] = 16987, - [SMALL_STATE(332)] = 17030, - [SMALL_STATE(333)] = 17063, - [SMALL_STATE(334)] = 17106, - [SMALL_STATE(335)] = 17149, - [SMALL_STATE(336)] = 17192, - [SMALL_STATE(337)] = 17235, - [SMALL_STATE(338)] = 17278, - [SMALL_STATE(339)] = 17321, - [SMALL_STATE(340)] = 17364, - [SMALL_STATE(341)] = 17392, - [SMALL_STATE(342)] = 17420, - [SMALL_STATE(343)] = 17454, - [SMALL_STATE(344)] = 17482, - [SMALL_STATE(345)] = 17512, - [SMALL_STATE(346)] = 17540, - [SMALL_STATE(347)] = 17577, - [SMALL_STATE(348)] = 17614, - [SMALL_STATE(349)] = 17651, - [SMALL_STATE(350)] = 17682, - [SMALL_STATE(351)] = 17707, - [SMALL_STATE(352)] = 17732, - [SMALL_STATE(353)] = 17769, - [SMALL_STATE(354)] = 17794, - [SMALL_STATE(355)] = 17831, - [SMALL_STATE(356)] = 17868, - [SMALL_STATE(357)] = 17893, - [SMALL_STATE(358)] = 17924, - [SMALL_STATE(359)] = 17952, - [SMALL_STATE(360)] = 17986, - [SMALL_STATE(361)] = 18020, - [SMALL_STATE(362)] = 18054, - [SMALL_STATE(363)] = 18088, - [SMALL_STATE(364)] = 18122, - [SMALL_STATE(365)] = 18156, - [SMALL_STATE(366)] = 18184, - [SMALL_STATE(367)] = 18218, - [SMALL_STATE(368)] = 18252, - [SMALL_STATE(369)] = 18280, - [SMALL_STATE(370)] = 18314, - [SMALL_STATE(371)] = 18348, - [SMALL_STATE(372)] = 18382, - [SMALL_STATE(373)] = 18416, - [SMALL_STATE(374)] = 18450, - [SMALL_STATE(375)] = 18484, - [SMALL_STATE(376)] = 18518, - [SMALL_STATE(377)] = 18544, - [SMALL_STATE(378)] = 18569, - [SMALL_STATE(379)] = 18594, - [SMALL_STATE(380)] = 18619, - [SMALL_STATE(381)] = 18644, - [SMALL_STATE(382)] = 18672, - [SMALL_STATE(383)] = 18700, - [SMALL_STATE(384)] = 18728, - [SMALL_STATE(385)] = 18756, - [SMALL_STATE(386)] = 18778, - [SMALL_STATE(387)] = 18806, - [SMALL_STATE(388)] = 18831, - [SMALL_STATE(389)] = 18856, - [SMALL_STATE(390)] = 18873, - [SMALL_STATE(391)] = 18887, - [SMALL_STATE(392)] = 18899, - [SMALL_STATE(393)] = 18911, - [SMALL_STATE(394)] = 18923, - [SMALL_STATE(395)] = 18936, - [SMALL_STATE(396)] = 18949, - [SMALL_STATE(397)] = 18962, - [SMALL_STATE(398)] = 18975, - [SMALL_STATE(399)] = 18988, - [SMALL_STATE(400)] = 19001, - [SMALL_STATE(401)] = 19012, - [SMALL_STATE(402)] = 19025, - [SMALL_STATE(403)] = 19038, - [SMALL_STATE(404)] = 19051, - [SMALL_STATE(405)] = 19064, - [SMALL_STATE(406)] = 19077, - [SMALL_STATE(407)] = 19090, - [SMALL_STATE(408)] = 19103, - [SMALL_STATE(409)] = 19116, - [SMALL_STATE(410)] = 19129, - [SMALL_STATE(411)] = 19142, - [SMALL_STATE(412)] = 19155, - [SMALL_STATE(413)] = 19168, - [SMALL_STATE(414)] = 19181, - [SMALL_STATE(415)] = 19194, - [SMALL_STATE(416)] = 19207, - [SMALL_STATE(417)] = 19220, - [SMALL_STATE(418)] = 19233, - [SMALL_STATE(419)] = 19246, - [SMALL_STATE(420)] = 19259, - [SMALL_STATE(421)] = 19272, - [SMALL_STATE(422)] = 19283, - [SMALL_STATE(423)] = 19296, - [SMALL_STATE(424)] = 19309, - [SMALL_STATE(425)] = 19322, - [SMALL_STATE(426)] = 19335, - [SMALL_STATE(427)] = 19348, - [SMALL_STATE(428)] = 19361, - [SMALL_STATE(429)] = 19372, - [SMALL_STATE(430)] = 19385, - [SMALL_STATE(431)] = 19398, - [SMALL_STATE(432)] = 19409, - [SMALL_STATE(433)] = 19419, - [SMALL_STATE(434)] = 19427, - [SMALL_STATE(435)] = 19435, - [SMALL_STATE(436)] = 19445, - [SMALL_STATE(437)] = 19455, - [SMALL_STATE(438)] = 19465, - [SMALL_STATE(439)] = 19475, - [SMALL_STATE(440)] = 19485, - [SMALL_STATE(441)] = 19493, - [SMALL_STATE(442)] = 19503, - [SMALL_STATE(443)] = 19513, - [SMALL_STATE(444)] = 19523, - [SMALL_STATE(445)] = 19531, - [SMALL_STATE(446)] = 19539, - [SMALL_STATE(447)] = 19547, - [SMALL_STATE(448)] = 19557, - [SMALL_STATE(449)] = 19565, - [SMALL_STATE(450)] = 19575, - [SMALL_STATE(451)] = 19585, - [SMALL_STATE(452)] = 19595, - [SMALL_STATE(453)] = 19602, - [SMALL_STATE(454)] = 19609, - [SMALL_STATE(455)] = 19616, - [SMALL_STATE(456)] = 19623, - [SMALL_STATE(457)] = 19630, - [SMALL_STATE(458)] = 19637, - [SMALL_STATE(459)] = 19644, - [SMALL_STATE(460)] = 19651, - [SMALL_STATE(461)] = 19658, - [SMALL_STATE(462)] = 19665, - [SMALL_STATE(463)] = 19672, - [SMALL_STATE(464)] = 19679, - [SMALL_STATE(465)] = 19686, - [SMALL_STATE(466)] = 19693, - [SMALL_STATE(467)] = 19700, - [SMALL_STATE(468)] = 19707, - [SMALL_STATE(469)] = 19714, - [SMALL_STATE(470)] = 19721, - [SMALL_STATE(471)] = 19728, - [SMALL_STATE(472)] = 19735, - [SMALL_STATE(473)] = 19742, - [SMALL_STATE(474)] = 19749, - [SMALL_STATE(475)] = 19756, - [SMALL_STATE(476)] = 19763, - [SMALL_STATE(477)] = 19770, - [SMALL_STATE(478)] = 19777, - [SMALL_STATE(479)] = 19784, - [SMALL_STATE(480)] = 19791, - [SMALL_STATE(481)] = 19798, - [SMALL_STATE(482)] = 19805, - [SMALL_STATE(483)] = 19812, - [SMALL_STATE(484)] = 19819, - [SMALL_STATE(485)] = 19826, - [SMALL_STATE(486)] = 19833, - [SMALL_STATE(487)] = 19840, - [SMALL_STATE(488)] = 19847, - [SMALL_STATE(489)] = 19854, - [SMALL_STATE(490)] = 19861, - [SMALL_STATE(491)] = 19868, - [SMALL_STATE(492)] = 19875, + [SMALL_STATE(192)] = 10115, + [SMALL_STATE(193)] = 10163, + [SMALL_STATE(194)] = 10205, + [SMALL_STATE(195)] = 10247, + [SMALL_STATE(196)] = 10289, + [SMALL_STATE(197)] = 10331, + [SMALL_STATE(198)] = 10373, + [SMALL_STATE(199)] = 10413, + [SMALL_STATE(200)] = 10479, + [SMALL_STATE(201)] = 10521, + [SMALL_STATE(202)] = 10561, + [SMALL_STATE(203)] = 10601, + [SMALL_STATE(204)] = 10667, + [SMALL_STATE(205)] = 10707, + [SMALL_STATE(206)] = 10747, + [SMALL_STATE(207)] = 10787, + [SMALL_STATE(208)] = 10827, + [SMALL_STATE(209)] = 10867, + [SMALL_STATE(210)] = 10907, + [SMALL_STATE(211)] = 10947, + [SMALL_STATE(212)] = 10987, + [SMALL_STATE(213)] = 11053, + [SMALL_STATE(214)] = 11093, + [SMALL_STATE(215)] = 11140, + [SMALL_STATE(216)] = 11187, + [SMALL_STATE(217)] = 11229, + [SMALL_STATE(218)] = 11266, + [SMALL_STATE(219)] = 11302, + [SMALL_STATE(220)] = 11338, + [SMALL_STATE(221)] = 11374, + [SMALL_STATE(222)] = 11410, + [SMALL_STATE(223)] = 11446, + [SMALL_STATE(224)] = 11484, + [SMALL_STATE(225)] = 11519, + [SMALL_STATE(226)] = 11554, + [SMALL_STATE(227)] = 11589, + [SMALL_STATE(228)] = 11624, + [SMALL_STATE(229)] = 11659, + [SMALL_STATE(230)] = 11694, + [SMALL_STATE(231)] = 11729, + [SMALL_STATE(232)] = 11764, + [SMALL_STATE(233)] = 11799, + [SMALL_STATE(234)] = 11834, + [SMALL_STATE(235)] = 11869, + [SMALL_STATE(236)] = 11904, + [SMALL_STATE(237)] = 11939, + [SMALL_STATE(238)] = 11974, + [SMALL_STATE(239)] = 12009, + [SMALL_STATE(240)] = 12044, + [SMALL_STATE(241)] = 12079, + [SMALL_STATE(242)] = 12114, + [SMALL_STATE(243)] = 12149, + [SMALL_STATE(244)] = 12184, + [SMALL_STATE(245)] = 12218, + [SMALL_STATE(246)] = 12252, + [SMALL_STATE(247)] = 12286, + [SMALL_STATE(248)] = 12320, + [SMALL_STATE(249)] = 12354, + [SMALL_STATE(250)] = 12388, + [SMALL_STATE(251)] = 12422, + [SMALL_STATE(252)] = 12456, + [SMALL_STATE(253)] = 12490, + [SMALL_STATE(254)] = 12524, + [SMALL_STATE(255)] = 12558, + [SMALL_STATE(256)] = 12594, + [SMALL_STATE(257)] = 12628, + [SMALL_STATE(258)] = 12663, + [SMALL_STATE(259)] = 12710, + [SMALL_STATE(260)] = 12744, + [SMALL_STATE(261)] = 12776, + [SMALL_STATE(262)] = 12818, + [SMALL_STATE(263)] = 12852, + [SMALL_STATE(264)] = 12888, + [SMALL_STATE(265)] = 12921, + [SMALL_STATE(266)] = 12952, + [SMALL_STATE(267)] = 12983, + [SMALL_STATE(268)] = 13014, + [SMALL_STATE(269)] = 13045, + [SMALL_STATE(270)] = 13076, + [SMALL_STATE(271)] = 13107, + [SMALL_STATE(272)] = 13138, + [SMALL_STATE(273)] = 13169, + [SMALL_STATE(274)] = 13206, + [SMALL_STATE(275)] = 13243, + [SMALL_STATE(276)] = 13273, + [SMALL_STATE(277)] = 13303, + [SMALL_STATE(278)] = 13333, + [SMALL_STATE(279)] = 13363, + [SMALL_STATE(280)] = 13393, + [SMALL_STATE(281)] = 13423, + [SMALL_STATE(282)] = 13465, + [SMALL_STATE(283)] = 13505, + [SMALL_STATE(284)] = 13548, + [SMALL_STATE(285)] = 13591, + [SMALL_STATE(286)] = 13634, + [SMALL_STATE(287)] = 13677, + [SMALL_STATE(288)] = 13720, + [SMALL_STATE(289)] = 13763, + [SMALL_STATE(290)] = 13806, + [SMALL_STATE(291)] = 13849, + [SMALL_STATE(292)] = 13892, + [SMALL_STATE(293)] = 13935, + [SMALL_STATE(294)] = 13969, + [SMALL_STATE(295)] = 13997, + [SMALL_STATE(296)] = 14025, + [SMALL_STATE(297)] = 14062, + [SMALL_STATE(298)] = 14099, + [SMALL_STATE(299)] = 14136, + [SMALL_STATE(300)] = 14173, + [SMALL_STATE(301)] = 14210, + [SMALL_STATE(302)] = 14241, + [SMALL_STATE(303)] = 14266, + [SMALL_STATE(304)] = 14297, + [SMALL_STATE(305)] = 14322, + [SMALL_STATE(306)] = 14359, + [SMALL_STATE(307)] = 14388, + [SMALL_STATE(308)] = 14413, + [SMALL_STATE(309)] = 14438, + [SMALL_STATE(310)] = 14466, + [SMALL_STATE(311)] = 14500, + [SMALL_STATE(312)] = 14526, + [SMALL_STATE(313)] = 14554, + [SMALL_STATE(314)] = 14588, + [SMALL_STATE(315)] = 14614, + [SMALL_STATE(316)] = 14648, + [SMALL_STATE(317)] = 14682, + [SMALL_STATE(318)] = 14710, + [SMALL_STATE(319)] = 14744, + [SMALL_STATE(320)] = 14778, + [SMALL_STATE(321)] = 14812, + [SMALL_STATE(322)] = 14837, + [SMALL_STATE(323)] = 14862, + [SMALL_STATE(324)] = 14887, + [SMALL_STATE(325)] = 14912, + [SMALL_STATE(326)] = 14940, + [SMALL_STATE(327)] = 14968, + [SMALL_STATE(328)] = 14996, + [SMALL_STATE(329)] = 15018, + [SMALL_STATE(330)] = 15046, + [SMALL_STATE(331)] = 15074, + [SMALL_STATE(332)] = 15099, + [SMALL_STATE(333)] = 15116, + [SMALL_STATE(334)] = 15141, + [SMALL_STATE(335)] = 15153, + [SMALL_STATE(336)] = 15167, + [SMALL_STATE(337)] = 15179, + [SMALL_STATE(338)] = 15191, + [SMALL_STATE(339)] = 15204, + [SMALL_STATE(340)] = 15217, + [SMALL_STATE(341)] = 15230, + [SMALL_STATE(342)] = 15243, + [SMALL_STATE(343)] = 15256, + [SMALL_STATE(344)] = 15269, + [SMALL_STATE(345)] = 15282, + [SMALL_STATE(346)] = 15295, + [SMALL_STATE(347)] = 15308, + [SMALL_STATE(348)] = 15321, + [SMALL_STATE(349)] = 15334, + [SMALL_STATE(350)] = 15347, + [SMALL_STATE(351)] = 15360, + [SMALL_STATE(352)] = 15373, + [SMALL_STATE(353)] = 15386, + [SMALL_STATE(354)] = 15399, + [SMALL_STATE(355)] = 15412, + [SMALL_STATE(356)] = 15425, + [SMALL_STATE(357)] = 15438, + [SMALL_STATE(358)] = 15451, + [SMALL_STATE(359)] = 15464, + [SMALL_STATE(360)] = 15477, + [SMALL_STATE(361)] = 15488, + [SMALL_STATE(362)] = 15499, + [SMALL_STATE(363)] = 15512, + [SMALL_STATE(364)] = 15525, + [SMALL_STATE(365)] = 15538, + [SMALL_STATE(366)] = 15549, + [SMALL_STATE(367)] = 15560, + [SMALL_STATE(368)] = 15573, + [SMALL_STATE(369)] = 15586, + [SMALL_STATE(370)] = 15599, + [SMALL_STATE(371)] = 15612, + [SMALL_STATE(372)] = 15625, + [SMALL_STATE(373)] = 15638, + [SMALL_STATE(374)] = 15651, + [SMALL_STATE(375)] = 15664, + [SMALL_STATE(376)] = 15677, + [SMALL_STATE(377)] = 15687, + [SMALL_STATE(378)] = 15695, + [SMALL_STATE(379)] = 15705, + [SMALL_STATE(380)] = 15715, + [SMALL_STATE(381)] = 15725, + [SMALL_STATE(382)] = 15733, + [SMALL_STATE(383)] = 15741, + [SMALL_STATE(384)] = 15749, + [SMALL_STATE(385)] = 15757, + [SMALL_STATE(386)] = 15767, + [SMALL_STATE(387)] = 15777, + [SMALL_STATE(388)] = 15787, + [SMALL_STATE(389)] = 15795, + [SMALL_STATE(390)] = 15805, + [SMALL_STATE(391)] = 15813, + [SMALL_STATE(392)] = 15823, + [SMALL_STATE(393)] = 15833, + [SMALL_STATE(394)] = 15843, + [SMALL_STATE(395)] = 15853, + [SMALL_STATE(396)] = 15863, + [SMALL_STATE(397)] = 15870, + [SMALL_STATE(398)] = 15877, + [SMALL_STATE(399)] = 15884, + [SMALL_STATE(400)] = 15891, + [SMALL_STATE(401)] = 15898, + [SMALL_STATE(402)] = 15905, + [SMALL_STATE(403)] = 15912, + [SMALL_STATE(404)] = 15919, + [SMALL_STATE(405)] = 15926, + [SMALL_STATE(406)] = 15933, + [SMALL_STATE(407)] = 15940, + [SMALL_STATE(408)] = 15947, + [SMALL_STATE(409)] = 15954, + [SMALL_STATE(410)] = 15961, + [SMALL_STATE(411)] = 15968, + [SMALL_STATE(412)] = 15975, + [SMALL_STATE(413)] = 15982, + [SMALL_STATE(414)] = 15989, + [SMALL_STATE(415)] = 15996, + [SMALL_STATE(416)] = 16003, + [SMALL_STATE(417)] = 16010, + [SMALL_STATE(418)] = 16017, + [SMALL_STATE(419)] = 16024, + [SMALL_STATE(420)] = 16031, + [SMALL_STATE(421)] = 16038, + [SMALL_STATE(422)] = 16045, + [SMALL_STATE(423)] = 16052, + [SMALL_STATE(424)] = 16059, + [SMALL_STATE(425)] = 16066, + [SMALL_STATE(426)] = 16073, + [SMALL_STATE(427)] = 16080, + [SMALL_STATE(428)] = 16087, + [SMALL_STATE(429)] = 16094, + [SMALL_STATE(430)] = 16101, + [SMALL_STATE(431)] = 16108, + [SMALL_STATE(432)] = 16115, + [SMALL_STATE(433)] = 16122, + [SMALL_STATE(434)] = 16129, + [SMALL_STATE(435)] = 16136, }; 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(51), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), [51] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), - [53] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(51), - [56] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(137), - [59] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(462), + [53] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(48), + [56] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(116), + [59] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(413), [62] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(4), - [65] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(492), - [68] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(487), - [71] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(81), - [74] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(81), - [77] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(80), - [80] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(139), - [83] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(56), - [86] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(486), - [89] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(218), - [92] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(216), - [95] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(210), - [98] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(484), - [101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(484), - [104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(41), - [107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(57), - [110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [65] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(435), + [68] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(431), + [71] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(51), + [74] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(70), + [77] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(60), + [80] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(143), + [83] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(67), + [86] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(430), + [89] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(153), + [92] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(156), + [95] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(157), + [98] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(425), + [101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(425), + [104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(40), + [107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(54), + [110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), [134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_root, 1), - [136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), [142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), + [172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), [180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), - [202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 3), - [210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 3), - [212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 5), - [216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 5), - [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__expression_kind, 1), - [224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_kind, 1), - [226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_expression_kind, 1), - [228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 1), - [232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4), - [240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4), - [242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option, 1), - [244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option, 1), - [246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_value, 1), - [248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_built_in_value, 1), - [250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option, 4), - [252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option, 4), - [254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new, 4), - [256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new, 4), - [258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structure, 4), - [264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structure, 4), - [266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new, 5), - [268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new, 5), - [270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 3), - [276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 3), - [278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3), - [280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3), - [282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3), - [284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 3), - [286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), - [288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), - [290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4), - [292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4), - [294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structure, 3), - [296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structure, 3), - [298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 1), - [300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 1), - [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 6), - [306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 6), - [308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 1), - [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 3), - [314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 3), - [316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3), - [318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3), - [320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 3), - [322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 3), - [324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), - [326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), - [328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), - [330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1), - [332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), - [334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1), - [336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5), - [342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5), - [344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), - [346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), - [348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3), - [350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3), - [352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1), - [354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1), - [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_expression_kind, 1), - [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(265), - [379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(147), - [382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(441), - [385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), - [387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(472), - [390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(477), - [393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(279), - [396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(279), - [399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(266), - [402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(160), - [405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(290), - [408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(458), - [411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(478), - [414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(261), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(126), - [436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(156), - [439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(432), - [442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(455), - [445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(489), - [448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(129), - [451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(129), - [454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(128), - [457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(152), - [460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), - [462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(122), - [465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(490), - [468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(117), - [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(126), - [504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(156), - [507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), - [509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(432), - [512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(455), - [515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(489), - [518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(129), - [521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(129), - [524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(128), - [527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(152), - [530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(122), - [533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(490), - [536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(117), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 1), - [575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 1), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 1), - [581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 1), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 1), - [587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 1), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 2), - [595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 2), - [597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), - [599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_else_repeat1, 2), - [601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(172), - [604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if, 3), - [606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if, 3), - [608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 3), - [610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 3), - [612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3), - [614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3), - [616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 5), - [618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 5), - [620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return, 2), - [622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return, 2), - [624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 2), - [626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 2), - [628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for, 5), - [630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for, 5), - [632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 3), - [634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 3), - [636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 3), - [638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 3), - [640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 4), - [642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 4), - [644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_assignment, 3), - [646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_assignment, 3), - [648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else, 2), - [650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else, 2), - [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(213), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_operator, 1), - [675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_operator, 1), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 3), - [683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 3), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 4), - [689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 4), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), - [695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), - [697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 1), - [699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 1), - [701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic_operator, 1), - [703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic_operator, 1), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 3), - [729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 3), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 2), - [735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1), - [751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1), - [753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 4), - [755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 4), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 5), - [761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 5), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(350), - [788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(361), - [791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), - [793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(382), - [796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(467), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 1), - [805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 1), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specification, 3), - [817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specification, 3), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_structure_repeat1, 2), SHIFT_REPEAT(424), - [836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_structure_repeat1, 2), - [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 3), - [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_new_repeat1, 2), SHIFT_REPEAT(402), - [857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_new_repeat1, 2), - [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), SHIFT_REPEAT(436), - [868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 4), - [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(395), - [901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), - [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_structure_repeat1, 3), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_new_repeat1, 4), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 5), - [917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_structure_repeat1, 4), - [919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 3), - [921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_new_repeat1, 3), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [983] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_kind, 1), + [210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_kind, 1), + [212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_expression_kind, 1), + [214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 1), + [218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), + [226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1), + [228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structure, 3), + [232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structure, 3), + [234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option, 4), + [236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option, 4), + [238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_value, 1), + [240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_built_in_value, 1), + [242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5), + [244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5), + [246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), + [248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), + [250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 3), + [252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 3), + [254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 1), + [256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 3), + [258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 3), + [260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), + [262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1), + [264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), + [266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), + [268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3), + [270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3), + [272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4), + [278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4), + [280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structure, 4), + [286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structure, 4), + [288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option, 1), + [290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option, 1), + [292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 3), + [294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 3), + [296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), + [298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), + [300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 3), + [302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 3), + [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1), + [308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1), + [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 3), + [322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 3), + [324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_expression_kind, 1), + [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 6), + [330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 6), + [332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 3), + [334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 3), + [336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3), + [338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3), + [340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new, 5), + [342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new, 5), + [344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 1), + [346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 1), + [348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4), + [350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4), + [352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3), + [354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 3), + [356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new, 4), + [358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new, 4), + [360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3), + [362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3), + [364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), + [366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), + [368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(263), + [371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(120), + [374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(378), + [377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), + [379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(402), + [382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(426), + [385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(223), + [388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(230), + [391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(231), + [394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(128), + [397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(234), + [400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(427), + [403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(407), + [406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(238), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(155), + [450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(129), + [453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(392), + [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(412), + [459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(432), + [462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(79), + [465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(104), + [468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(101), + [471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(140), + [474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), + [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(96), + [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(433), + [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(95), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(155), + [496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(129), + [499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), + [501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(392), + [504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(412), + [507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(432), + [510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(79), + [513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(104), + [516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(101), + [519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(140), + [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(96), + [525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(433), + [528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(95), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 1), + [561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 1), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 1), + [567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 1), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 1), + [573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 1), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 2), + [581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 2), + [583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), + [585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_else_repeat1, 2), + [587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(173), + [590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 3), + [592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 3), + [594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if, 3), + [596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if, 3), + [598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return, 2), + [600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return, 2), + [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 3), + [608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 3), + [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 4), + [616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 4), + [618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 2), + [620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 2), + [622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_assignment, 3), + [624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_assignment, 3), + [626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3), + [628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3), + [630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 5), + [632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 5), + [634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else, 2), + [636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else, 2), + [638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 3), + [640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 3), + [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for, 5), + [648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for, 5), + [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(162), + [657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_operator, 1), + [659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_operator, 1), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 3), + [665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 3), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 4), + [671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 4), + [673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), + [675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic_operator, 1), + [681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic_operator, 1), + [683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 1), + [685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 1), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 2), + [709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 3), + [715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 3), + [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1), + [731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 4), + [737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 4), + [739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 5), + [741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 5), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(304), + [760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(319), + [763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), + [765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(330), + [768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(417), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 1), + [779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 1), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2), + [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specification, 3), + [793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specification, 3), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_structure_repeat1, 2), SHIFT_REPEAT(350), + [800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_structure_repeat1, 2), + [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_new_repeat1, 2), SHIFT_REPEAT(364), + [819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_new_repeat1, 2), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(371), + [846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), + [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), SHIFT_REPEAT(386), + [853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), + [855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 4), + [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 3), + [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_new_repeat1, 4), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_new_repeat1, 3), + [887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 5), + [889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 3), + [891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_structure_repeat1, 4), + [893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_structure_repeat1, 3), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [951] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), }; #ifdef __cplusplus