diff --git a/examples/match.ds b/examples/match.ds new file mode 100644 index 0000000..48bb8a2 --- /dev/null +++ b/examples/match.ds @@ -0,0 +1,12 @@ +foo_or_bar = match (random_boolean) { + true => "foo" + false => "bar" +} + +num = match (random_integer) { + 1 => "one", + 2 => { "two" }, + * => "neither", +} + +[foo_or_bar, num] diff --git a/src/abstract_tree/match.rs b/src/abstract_tree/match.rs index 6dedf50..454be4c 100644 --- a/src/abstract_tree/match.rs +++ b/src/abstract_tree/match.rs @@ -13,6 +13,7 @@ use crate::{AbstractTree, Error, Expression, Map, Result, Statement, Type, Value pub struct Match { matcher: Expression, options: Vec<(Expression, Statement)>, + fallback: Option>, } impl AbstractTree for Match { @@ -24,24 +25,37 @@ impl AbstractTree for Match { let mut options = Vec::new(); let mut previous_expression = None; + let mut next_statement_is_fallback = false; + let mut fallback = None; for index in 2..node.child_count() { let child = node.child(index).unwrap(); + if child.kind() == "*" { + next_statement_is_fallback = true; + } + if child.kind() == "expression" { previous_expression = Some(Expression::from_syntax_node(source, child, context)?); } if child.kind() == "statement" { - if let Some(expression) = &previous_expression { - let statement = Statement::from_syntax_node(source, child, context)?; + let statement = Statement::from_syntax_node(source, child, context)?; + if next_statement_is_fallback { + fallback = Some(Box::new(statement)); + next_statement_is_fallback = false; + } else if let Some(expression) = &previous_expression { options.push((expression.clone(), statement)); } } } - Ok(Match { matcher, options }) + Ok(Match { + matcher, + options, + fallback, + }) } fn run(&self, source: &str, context: &Map) -> Result { @@ -55,7 +69,11 @@ impl AbstractTree for Match { } } - Ok(Value::Empty) + if let Some(fallback) = &self.fallback { + fallback.run(source, context) + } else { + Ok(Value::Empty) + } } fn expected_type(&self, _context: &Map) -> Result { diff --git a/src/value/map.rs b/src/value/map.rs index f949f6a..f6e1de8 100644 --- a/src/value/map.rs +++ b/src/value/map.rs @@ -1,4 +1,4 @@ -use serde::{ser::SerializeMap, Deserialize, Serialize}; +use serde::{ser::SerializeMap, Serialize}; use std::{ cmp::Ordering, collections::BTreeMap, diff --git a/tree-sitter-dust/grammar.js b/tree-sitter-dust/grammar.js index ef61a47..5870b48 100644 --- a/tree-sitter-dust/grammar.js +++ b/tree-sitter-dust/grammar.js @@ -285,9 +285,13 @@ module.exports = grammar({ '{', repeat1( seq( - $.expression, + choice( + $.expression, + '*', + ), '=>', $.statement, + optional(','), ), ), '}', diff --git a/tree-sitter-dust/src/grammar.json b/tree-sitter-dust/src/grammar.json index eac1bd9..ba49124 100644 --- a/tree-sitter-dust/src/grammar.json +++ b/tree-sitter-dust/src/grammar.json @@ -896,8 +896,17 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "expression" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": "*" + } + ] }, { "type": "STRING", @@ -906,6 +915,18 @@ { "type": "SYMBOL", "name": "statement" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] } ] } diff --git a/tree-sitter-dust/src/parser.c b/tree-sitter-dust/src/parser.c index 14fa34d..6140bb2 100644 --- a/tree-sitter-dust/src/parser.c +++ b/tree-sitter-dust/src/parser.c @@ -6,7 +6,7 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 325 +#define STATE_COUNT 327 #define LARGE_STATE_COUNT 2 #define SYMBOL_COUNT 94 #define ALIAS_COUNT 0 @@ -777,183 +777,183 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [80] = 18, [81] = 15, [82] = 14, - [83] = 71, - [84] = 64, - [85] = 60, - [86] = 45, - [87] = 47, - [88] = 54, - [89] = 49, - [90] = 46, - [91] = 63, - [92] = 59, - [93] = 52, - [94] = 70, - [95] = 57, - [96] = 62, - [97] = 36, + [83] = 36, + [84] = 57, + [85] = 47, + [86] = 62, + [87] = 54, + [88] = 49, + [89] = 46, + [90] = 63, + [91] = 52, + [92] = 64, + [93] = 70, + [94] = 59, + [95] = 45, + [96] = 60, + [97] = 71, [98] = 40, [99] = 34, [100] = 61, [101] = 73, - [102] = 102, - [103] = 103, - [104] = 73, - [105] = 72, - [106] = 106, - [107] = 106, - [108] = 14, + [102] = 73, + [103] = 72, + [104] = 104, + [105] = 105, + [106] = 15, + [107] = 10, + [108] = 108, [109] = 109, - [110] = 106, - [111] = 15, - [112] = 10, - [113] = 18, - [114] = 10, - [115] = 15, - [116] = 14, + [110] = 109, + [111] = 10, + [112] = 109, + [113] = 14, + [114] = 18, + [115] = 14, + [116] = 15, [117] = 18, - [118] = 36, - [119] = 46, - [120] = 49, - [121] = 60, - [122] = 122, - [123] = 59, - [124] = 64, - [125] = 63, - [126] = 57, - [127] = 54, - [128] = 52, - [129] = 62, - [130] = 70, - [131] = 131, - [132] = 45, - [133] = 71, + [118] = 62, + [119] = 71, + [120] = 54, + [121] = 59, + [122] = 64, + [123] = 63, + [124] = 52, + [125] = 46, + [126] = 60, + [127] = 70, + [128] = 45, + [129] = 129, + [130] = 49, + [131] = 57, + [132] = 132, + [133] = 36, [134] = 40, [135] = 47, [136] = 136, - [137] = 34, - [138] = 138, + [137] = 137, + [138] = 34, [139] = 139, - [140] = 140, - [141] = 141, + [140] = 139, + [141] = 59, [142] = 142, [143] = 143, - [144] = 144, - [145] = 61, - [146] = 143, - [147] = 138, - [148] = 144, - [149] = 138, - [150] = 150, - [151] = 144, - [152] = 152, - [153] = 49, - [154] = 59, - [155] = 155, - [156] = 141, - [157] = 150, - [158] = 141, - [159] = 143, - [160] = 160, - [161] = 160, + [144] = 142, + [145] = 145, + [146] = 146, + [147] = 61, + [148] = 148, + [149] = 146, + [150] = 142, + [151] = 151, + [152] = 146, + [153] = 148, + [154] = 154, + [155] = 49, + [156] = 156, + [157] = 157, + [158] = 151, + [159] = 151, + [160] = 145, + [161] = 145, [162] = 162, - [163] = 73, + [163] = 163, [164] = 164, - [165] = 72, + [165] = 165, [166] = 166, - [167] = 167, + [167] = 72, [168] = 168, - [169] = 169, + [169] = 165, [170] = 170, - [171] = 164, + [171] = 171, [172] = 172, [173] = 173, - [174] = 174, - [175] = 166, - [176] = 176, - [177] = 170, - [178] = 169, - [179] = 170, - [180] = 169, - [181] = 181, - [182] = 172, - [183] = 162, - [184] = 184, - [185] = 174, - [186] = 184, - [187] = 176, - [188] = 188, - [189] = 170, - [190] = 169, - [191] = 176, - [192] = 173, - [193] = 73, - [194] = 167, - [195] = 195, + [174] = 163, + [175] = 175, + [176] = 166, + [177] = 177, + [178] = 172, + [179] = 171, + [180] = 172, + [181] = 171, + [182] = 173, + [183] = 183, + [184] = 162, + [185] = 164, + [186] = 175, + [187] = 187, + [188] = 172, + [189] = 171, + [190] = 177, + [191] = 168, + [192] = 166, + [193] = 177, + [194] = 194, + [195] = 73, [196] = 196, - [197] = 166, + [197] = 197, [198] = 198, - [199] = 199, - [200] = 168, - [201] = 169, + [199] = 170, + [200] = 171, + [201] = 170, [202] = 170, - [203] = 168, - [204] = 169, - [205] = 168, - [206] = 181, - [207] = 170, - [208] = 188, - [209] = 168, + [203] = 171, + [204] = 172, + [205] = 172, + [206] = 187, + [207] = 183, + [208] = 170, + [209] = 209, [210] = 210, - [211] = 211, - [212] = 174, - [213] = 213, + [211] = 170, + [212] = 212, + [213] = 175, [214] = 214, - [215] = 181, - [216] = 168, - [217] = 217, + [215] = 215, + [216] = 173, + [217] = 183, [218] = 218, [219] = 219, - [220] = 172, - [221] = 221, + [220] = 220, + [221] = 73, [222] = 222, - [223] = 222, - [224] = 224, + [223] = 223, + [224] = 222, [225] = 225, [226] = 226, - [227] = 224, - [228] = 225, - [229] = 226, - [230] = 131, - [231] = 231, - [232] = 231, - [233] = 122, - [234] = 234, + [227] = 223, + [228] = 226, + [229] = 225, + [230] = 132, + [231] = 129, + [232] = 136, + [233] = 233, + [234] = 233, [235] = 235, - [236] = 136, - [237] = 59, + [236] = 236, + [237] = 143, [238] = 49, - [239] = 142, - [240] = 152, - [241] = 241, - [242] = 242, - [243] = 213, - [244] = 198, - [245] = 196, - [246] = 195, - [247] = 247, - [248] = 248, - [249] = 249, - [250] = 184, + [239] = 59, + [240] = 156, + [241] = 164, + [242] = 164, + [243] = 214, + [244] = 210, + [245] = 209, + [246] = 198, + [247] = 194, + [248] = 218, + [249] = 219, + [250] = 220, [251] = 251, - [252] = 214, - [253] = 217, - [254] = 219, - [255] = 218, - [256] = 211, - [257] = 184, - [258] = 210, - [259] = 199, + [252] = 252, + [253] = 196, + [254] = 197, + [255] = 215, + [256] = 256, + [257] = 257, + [258] = 258, + [259] = 259, [260] = 260, [261] = 261, [262] = 262, @@ -969,56 +969,58 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [272] = 272, [273] = 273, [274] = 274, - [275] = 274, - [276] = 274, - [277] = 277, + [275] = 275, + [276] = 275, + [277] = 275, [278] = 278, [279] = 279, [280] = 280, [281] = 281, [282] = 282, - [283] = 277, - [284] = 284, + [283] = 283, + [284] = 280, [285] = 285, - [286] = 282, - [287] = 280, - [288] = 277, - [289] = 289, + [286] = 286, + [287] = 286, + [288] = 285, + [289] = 278, [290] = 290, [291] = 291, [292] = 292, - [293] = 280, - [294] = 282, - [295] = 290, - [296] = 289, - [297] = 285, - [298] = 284, - [299] = 289, - [300] = 290, - [301] = 285, - [302] = 302, + [293] = 291, + [294] = 283, + [295] = 291, + [296] = 283, + [297] = 286, + [298] = 285, + [299] = 299, + [300] = 278, + [301] = 280, + [302] = 292, [303] = 303, [304] = 304, [305] = 305, [306] = 306, [307] = 307, - [308] = 308, + [308] = 306, [309] = 309, [310] = 310, - [311] = 311, - [312] = 307, - [313] = 309, + [311] = 307, + [312] = 312, + [313] = 313, [314] = 314, [315] = 315, - [316] = 311, - [317] = 315, - [318] = 309, - [319] = 314, - [320] = 315, - [321] = 309, - [322] = 309, + [316] = 314, + [317] = 317, + [318] = 318, + [319] = 305, + [320] = 314, + [321] = 306, + [322] = 305, [323] = 314, - [324] = 305, + [324] = 314, + [325] = 318, + [326] = 315, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -1026,142 +1028,142 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(25); + if (eof) ADVANCE(26); if (lookahead == '!') ADVANCE(11); if (lookahead == '"') ADVANCE(6); - if (lookahead == '#') ADVANCE(20); - if (lookahead == '%') ADVANCE(61); + if (lookahead == '#') ADVANCE(21); + if (lookahead == '%') ADVANCE(62); if (lookahead == '&') ADVANCE(8); if (lookahead == '\'') ADVANCE(9); - if (lookahead == '(') ADVANCE(52); - if (lookahead == ')') ADVANCE(53); - if (lookahead == '*') ADVANCE(59); - if (lookahead == '+') ADVANCE(55); - if (lookahead == ',') ADVANCE(31); - if (lookahead == '-') ADVANCE(58); + if (lookahead == '(') ADVANCE(53); + if (lookahead == ')') ADVANCE(54); + if (lookahead == '*') ADVANCE(60); + if (lookahead == '+') ADVANCE(56); + if (lookahead == ',') ADVANCE(32); + if (lookahead == '-') ADVANCE(59); if (lookahead == '.') ADVANCE(10); - if (lookahead == '/') ADVANCE(60); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43); - if (lookahead == ':') ADVANCE(50); - if (lookahead == ';') ADVANCE(30); - if (lookahead == '<') ADVANCE(68); - if (lookahead == '=') ADVANCE(49); - if (lookahead == '>') ADVANCE(67); - if (lookahead == '[') ADVANCE(46); - if (lookahead == ']') ADVANCE(47); - if (lookahead == '`') ADVANCE(14); - if (lookahead == 'a') ADVANCE(39); - if (lookahead == 'e') ADVANCE(37); - if (lookahead == '{') ADVANCE(28); - if (lookahead == '|') ADVANCE(77); - if (lookahead == '}') ADVANCE(29); + if (lookahead == '/') ADVANCE(61); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(44); + if (lookahead == ':') ADVANCE(51); + if (lookahead == ';') ADVANCE(31); + if (lookahead == '<') ADVANCE(69); + if (lookahead == '=') ADVANCE(50); + if (lookahead == '>') ADVANCE(68); + if (lookahead == '[') ADVANCE(47); + if (lookahead == ']') ADVANCE(48); + if (lookahead == '`') ADVANCE(15); + if (lookahead == 'a') ADVANCE(40); + if (lookahead == 'e') ADVANCE(38); + if (lookahead == '{') ADVANCE(29); + if (lookahead == '|') ADVANCE(78); + if (lookahead == '}') ADVANCE(30); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(0) if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(42); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(43); END_STATE(); case 1: if (lookahead == '!') ADVANCE(11); if (lookahead == '"') ADVANCE(6); - if (lookahead == '#') ADVANCE(20); - if (lookahead == '%') ADVANCE(61); + if (lookahead == '#') ADVANCE(21); + if (lookahead == '%') ADVANCE(62); if (lookahead == '&') ADVANCE(8); if (lookahead == '\'') ADVANCE(9); - if (lookahead == '(') ADVANCE(52); - if (lookahead == ')') ADVANCE(53); - if (lookahead == '*') ADVANCE(59); - if (lookahead == '+') ADVANCE(55); - if (lookahead == ',') ADVANCE(31); - if (lookahead == '-') ADVANCE(58); + if (lookahead == '(') ADVANCE(53); + if (lookahead == ')') ADVANCE(54); + if (lookahead == '*') ADVANCE(60); + if (lookahead == '+') ADVANCE(56); + if (lookahead == ',') ADVANCE(32); + if (lookahead == '-') ADVANCE(59); if (lookahead == '.') ADVANCE(10); - if (lookahead == '/') ADVANCE(60); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43); - if (lookahead == ':') ADVANCE(50); - if (lookahead == ';') ADVANCE(30); - if (lookahead == '<') ADVANCE(68); - if (lookahead == '=') ADVANCE(48); - if (lookahead == '>') ADVANCE(67); - if (lookahead == '[') ADVANCE(46); - if (lookahead == ']') ADVANCE(47); - if (lookahead == '`') ADVANCE(14); - if (lookahead == '{') ADVANCE(28); - if (lookahead == '|') ADVANCE(21); - if (lookahead == '}') ADVANCE(29); + if (lookahead == '/') ADVANCE(61); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(44); + if (lookahead == ':') ADVANCE(51); + if (lookahead == ';') ADVANCE(31); + if (lookahead == '<') ADVANCE(69); + if (lookahead == '=') ADVANCE(49); + if (lookahead == '>') ADVANCE(68); + if (lookahead == '[') ADVANCE(47); + if (lookahead == ']') ADVANCE(48); + if (lookahead == '`') ADVANCE(15); + if (lookahead == '{') ADVANCE(29); + if (lookahead == '|') ADVANCE(22); + if (lookahead == '}') ADVANCE(30); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(1) if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(42); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(43); END_STATE(); case 2: if (lookahead == '!') ADVANCE(11); - if (lookahead == '#') ADVANCE(20); - if (lookahead == '%') ADVANCE(61); + if (lookahead == '#') ADVANCE(21); + if (lookahead == '%') ADVANCE(62); if (lookahead == '&') ADVANCE(8); - if (lookahead == '*') ADVANCE(59); - if (lookahead == '+') ADVANCE(55); - if (lookahead == ',') ADVANCE(31); - if (lookahead == '-') ADVANCE(56); + if (lookahead == '*') ADVANCE(60); + if (lookahead == '+') ADVANCE(56); + if (lookahead == ',') ADVANCE(32); + if (lookahead == '-') ADVANCE(57); if (lookahead == '.') ADVANCE(10); - if (lookahead == '/') ADVANCE(60); - if (lookahead == ':') ADVANCE(50); - if (lookahead == ';') ADVANCE(30); - if (lookahead == '<') ADVANCE(68); - if (lookahead == '=') ADVANCE(49); - if (lookahead == '>') ADVANCE(67); - if (lookahead == '{') ADVANCE(28); - if (lookahead == '|') ADVANCE(21); - if (lookahead == '}') ADVANCE(29); + if (lookahead == '/') ADVANCE(61); + if (lookahead == ':') ADVANCE(51); + if (lookahead == ';') ADVANCE(31); + if (lookahead == '<') ADVANCE(69); + if (lookahead == '=') ADVANCE(50); + if (lookahead == '>') ADVANCE(68); + if (lookahead == '{') ADVANCE(29); + if (lookahead == '|') ADVANCE(22); + if (lookahead == '}') ADVANCE(30); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(2) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(42); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(43); END_STATE(); case 3: if (lookahead == '!') ADVANCE(11); - if (lookahead == '#') ADVANCE(20); - if (lookahead == '%') ADVANCE(61); + if (lookahead == '#') ADVANCE(21); + if (lookahead == '%') ADVANCE(62); if (lookahead == '&') ADVANCE(8); - if (lookahead == '*') ADVANCE(59); - if (lookahead == '+') ADVANCE(55); - if (lookahead == ',') ADVANCE(31); - if (lookahead == '-') ADVANCE(56); - if (lookahead == '/') ADVANCE(60); - if (lookahead == ':') ADVANCE(50); - if (lookahead == ';') ADVANCE(30); - if (lookahead == '<') ADVANCE(68); - if (lookahead == '=') ADVANCE(48); - if (lookahead == '>') ADVANCE(67); - if (lookahead == '|') ADVANCE(21); - if (lookahead == '}') ADVANCE(29); + if (lookahead == '*') ADVANCE(60); + if (lookahead == '+') ADVANCE(56); + if (lookahead == ',') ADVANCE(32); + if (lookahead == '-') ADVANCE(57); + if (lookahead == '/') ADVANCE(61); + if (lookahead == ':') ADVANCE(51); + if (lookahead == ';') ADVANCE(31); + if (lookahead == '<') ADVANCE(69); + if (lookahead == '=') ADVANCE(49); + if (lookahead == '>') ADVANCE(68); + if (lookahead == '|') ADVANCE(22); + if (lookahead == '}') ADVANCE(30); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(3) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(42); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(43); END_STATE(); case 4: if (lookahead == '!') ADVANCE(11); - if (lookahead == '#') ADVANCE(20); - if (lookahead == '%') ADVANCE(61); + if (lookahead == '#') ADVANCE(21); + if (lookahead == '%') ADVANCE(62); if (lookahead == '&') ADVANCE(8); - if (lookahead == '*') ADVANCE(59); - if (lookahead == '+') ADVANCE(54); - if (lookahead == '-') ADVANCE(57); - if (lookahead == '/') ADVANCE(60); - if (lookahead == ':') ADVANCE(50); - if (lookahead == '<') ADVANCE(68); + if (lookahead == '*') ADVANCE(60); + if (lookahead == '+') ADVANCE(55); + if (lookahead == '-') ADVANCE(58); + if (lookahead == '/') ADVANCE(61); + if (lookahead == ':') ADVANCE(51); + if (lookahead == '<') ADVANCE(69); if (lookahead == '=') ADVANCE(12); - if (lookahead == '>') ADVANCE(67); - if (lookahead == '|') ADVANCE(21); + if (lookahead == '>') ADVANCE(68); + if (lookahead == '|') ADVANCE(22); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -1169,360 +1171,365 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 5: if (lookahead == '"') ADVANCE(6); - if (lookahead == '#') ADVANCE(20); + if (lookahead == '#') ADVANCE(21); if (lookahead == '\'') ADVANCE(9); - if (lookahead == '(') ADVANCE(52); - if (lookahead == ',') ADVANCE(31); - if (lookahead == '-') ADVANCE(22); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43); - if (lookahead == ';') ADVANCE(30); - if (lookahead == '>') ADVANCE(66); - if (lookahead == '[') ADVANCE(46); - if (lookahead == '`') ADVANCE(14); - if (lookahead == 'e') ADVANCE(37); - if (lookahead == '{') ADVANCE(28); - if (lookahead == '}') ADVANCE(29); + if (lookahead == '(') ADVANCE(53); + if (lookahead == '*') ADVANCE(60); + if (lookahead == ',') ADVANCE(32); + if (lookahead == '-') ADVANCE(23); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(44); + if (lookahead == ';') ADVANCE(31); + if (lookahead == '=') ADVANCE(14); + if (lookahead == '>') ADVANCE(67); + if (lookahead == '[') ADVANCE(47); + if (lookahead == '`') ADVANCE(15); + if (lookahead == 'e') ADVANCE(38); + if (lookahead == '{') ADVANCE(29); + if (lookahead == '}') ADVANCE(30); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(5) if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(42); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(43); END_STATE(); case 6: - if (lookahead == '"') ADVANCE(45); + if (lookahead == '"') ADVANCE(46); if (lookahead != 0) ADVANCE(6); END_STATE(); case 7: - if (lookahead == '#') ADVANCE(20); - if (lookahead == '(') ADVANCE(52); - if (lookahead == ')') ADVANCE(53); - if (lookahead == ',') ADVANCE(31); + if (lookahead == '#') ADVANCE(21); + if (lookahead == '(') ADVANCE(53); + if (lookahead == ')') ADVANCE(54); + if (lookahead == ',') ADVANCE(32); if (lookahead == '-') ADVANCE(13); - if (lookahead == '>') ADVANCE(66); - if (lookahead == '[') ADVANCE(46); - if (lookahead == ']') ADVANCE(47); - if (lookahead == '|') ADVANCE(77); + if (lookahead == '>') ADVANCE(67); + if (lookahead == '[') ADVANCE(47); + if (lookahead == ']') ADVANCE(48); + if (lookahead == '|') ADVANCE(78); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(7) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(42); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(43); END_STATE(); case 8: - if (lookahead == '&') ADVANCE(64); + if (lookahead == '&') ADVANCE(65); END_STATE(); case 9: - if (lookahead == '\'') ADVANCE(45); + if (lookahead == '\'') ADVANCE(46); if (lookahead != 0) ADVANCE(9); END_STATE(); case 10: - if (lookahead == '.') ADVANCE(51); + if (lookahead == '.') ADVANCE(52); END_STATE(); case 11: - if (lookahead == '=') ADVANCE(63); + if (lookahead == '=') ADVANCE(64); END_STATE(); case 12: - if (lookahead == '=') ADVANCE(62); - if (lookahead == '>') ADVANCE(74); + if (lookahead == '=') ADVANCE(63); + if (lookahead == '>') ADVANCE(75); END_STATE(); case 13: - if (lookahead == '>') ADVANCE(76); + if (lookahead == '>') ADVANCE(77); END_STATE(); case 14: - if (lookahead == '`') ADVANCE(45); - if (lookahead != 0) ADVANCE(14); + if (lookahead == '>') ADVANCE(75); END_STATE(); case 15: - if (lookahead == 'f') ADVANCE(18); + if (lookahead == '`') ADVANCE(46); + if (lookahead != 0) ADVANCE(15); END_STATE(); case 16: - if (lookahead == 'f') ADVANCE(73); + if (lookahead == 'f') ADVANCE(19); END_STATE(); case 17: - if (lookahead == 'i') ADVANCE(16); + if (lookahead == 'f') ADVANCE(74); END_STATE(); case 18: - if (lookahead == 'o') ADVANCE(19); + if (lookahead == 'i') ADVANCE(17); END_STATE(); case 19: - if (lookahead == 'r') ADVANCE(75); + if (lookahead == 'o') ADVANCE(20); END_STATE(); case 20: - if (lookahead == '|') ADVANCE(27); - if (lookahead == '\n' || - lookahead == '#') ADVANCE(26); - if (lookahead != 0) ADVANCE(20); + if (lookahead == 'r') ADVANCE(76); END_STATE(); case 21: - if (lookahead == '|') ADVANCE(65); + if (lookahead == '|') ADVANCE(28); + if (lookahead == '\n' || + lookahead == '#') ADVANCE(27); + if (lookahead != 0) ADVANCE(21); END_STATE(); case 22: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43); + if (lookahead == '|') ADVANCE(66); END_STATE(); case 23: if (('0' <= lookahead && lookahead <= '9')) ADVANCE(44); END_STATE(); case 24: - if (eof) ADVANCE(25); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(45); + END_STATE(); + case 25: + if (eof) ADVANCE(26); if (lookahead == '!') ADVANCE(11); if (lookahead == '"') ADVANCE(6); - if (lookahead == '#') ADVANCE(20); - if (lookahead == '%') ADVANCE(61); + if (lookahead == '#') ADVANCE(21); + if (lookahead == '%') ADVANCE(62); if (lookahead == '&') ADVANCE(8); if (lookahead == '\'') ADVANCE(9); - if (lookahead == '(') ADVANCE(52); - if (lookahead == '*') ADVANCE(59); - if (lookahead == '+') ADVANCE(55); - if (lookahead == '-') ADVANCE(58); + if (lookahead == '(') ADVANCE(53); + if (lookahead == '*') ADVANCE(60); + if (lookahead == '+') ADVANCE(56); + if (lookahead == '-') ADVANCE(59); if (lookahead == '.') ADVANCE(10); - if (lookahead == '/') ADVANCE(60); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43); - if (lookahead == ':') ADVANCE(50); - if (lookahead == ';') ADVANCE(30); - if (lookahead == '<') ADVANCE(68); - if (lookahead == '=') ADVANCE(48); - if (lookahead == '>') ADVANCE(67); - if (lookahead == '[') ADVANCE(46); - if (lookahead == '`') ADVANCE(14); - if (lookahead == 'a') ADVANCE(39); - if (lookahead == '{') ADVANCE(28); - if (lookahead == '|') ADVANCE(21); - if (lookahead == '}') ADVANCE(29); + if (lookahead == '/') ADVANCE(61); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(44); + if (lookahead == ':') ADVANCE(51); + if (lookahead == ';') ADVANCE(31); + if (lookahead == '<') ADVANCE(69); + if (lookahead == '=') ADVANCE(49); + if (lookahead == '>') ADVANCE(68); + if (lookahead == '[') ADVANCE(47); + if (lookahead == '`') ADVANCE(15); + if (lookahead == 'a') ADVANCE(40); + if (lookahead == '{') ADVANCE(29); + if (lookahead == '|') ADVANCE(22); + if (lookahead == '}') ADVANCE(30); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(24) + lookahead == ' ') SKIP(25) if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(42); - END_STATE(); - case 25: - ACCEPT_TOKEN(ts_builtin_sym_end); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(43); END_STATE(); case 26: - ACCEPT_TOKEN(sym__comment); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 27: ACCEPT_TOKEN(sym__comment); - if (lookahead == '|') ADVANCE(27); - if (lookahead == '\n' || - lookahead == '#') ADVANCE(26); - if (lookahead != 0) ADVANCE(20); END_STATE(); case 28: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(sym__comment); + if (lookahead == '|') ADVANCE(28); + if (lookahead == '\n' || + lookahead == '#') ADVANCE(27); + if (lookahead != 0) ADVANCE(21); END_STATE(); case 29: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 30: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 31: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 32: - ACCEPT_TOKEN(sym_identifier); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 33: ACCEPT_TOKEN(sym_identifier); - if (lookahead == ' ') ADVANCE(17); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(32); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(42); END_STATE(); case 34: ACCEPT_TOKEN(sym_identifier); - if (lookahead == ' ') ADVANCE(15); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(32); + if (lookahead == ' ') ADVANCE(18); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(33); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(42); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(43); END_STATE(); case 35: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(34); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(32); + if (lookahead == ' ') ADVANCE(16); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(33); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(42); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(43); END_STATE(); case 36: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(33); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(32); + if (lookahead == 'c') ADVANCE(35); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(33); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(42); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(43); END_STATE(); case 37: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(40); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(32); + if (lookahead == 'e') ADVANCE(34); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(33); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(42); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(43); END_STATE(); case 38: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(35); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(32); + if (lookahead == 'l') ADVANCE(41); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(33); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(42); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(43); END_STATE(); case 39: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(41); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(32); + if (lookahead == 'n') ADVANCE(36); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(33); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(42); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(43); END_STATE(); case 40: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(36); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(32); + if (lookahead == 's') ADVANCE(42); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(33); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(42); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(43); END_STATE(); case 41: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'y') ADVANCE(38); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(32); + if (lookahead == 's') ADVANCE(37); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(33); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(42); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(43); END_STATE(); case 42: ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(32); + if (lookahead == 'y') ADVANCE(39); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(33); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(42); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(43); END_STATE(); case 43: - ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(23); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43); + ACCEPT_TOKEN(sym_identifier); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(33); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(43); END_STATE(); case 44: - ACCEPT_TOKEN(sym_float); + ACCEPT_TOKEN(sym_integer); + if (lookahead == '.') ADVANCE(24); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(44); END_STATE(); case 45: - ACCEPT_TOKEN(sym_string); + ACCEPT_TOKEN(sym_float); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(45); END_STATE(); case 46: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(sym_string); END_STATE(); case 47: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 48: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(62); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 49: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(62); - if (lookahead == '>') ADVANCE(74); + if (lookahead == '=') ADVANCE(63); END_STATE(); case 50: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(63); + if (lookahead == '>') ADVANCE(75); END_STATE(); case 51: - ACCEPT_TOKEN(anon_sym_DOT_DOT); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 52: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); case 53: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 54: - ACCEPT_TOKEN(anon_sym_PLUS); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 55: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(71); END_STATE(); case 56: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(anon_sym_PLUS); if (lookahead == '=') ADVANCE(72); - if (lookahead == '>') ADVANCE(76); END_STATE(); case 57: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '>') ADVANCE(76); + if (lookahead == '=') ADVANCE(73); + if (lookahead == '>') ADVANCE(77); END_STATE(); case 58: ACCEPT_TOKEN(anon_sym_DASH); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43); - if (lookahead == '=') ADVANCE(72); - if (lookahead == '>') ADVANCE(76); + if (lookahead == '>') ADVANCE(77); END_STATE(); case 59: - ACCEPT_TOKEN(anon_sym_STAR); + ACCEPT_TOKEN(anon_sym_DASH); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(44); + if (lookahead == '=') ADVANCE(73); + if (lookahead == '>') ADVANCE(77); END_STATE(); case 60: - ACCEPT_TOKEN(anon_sym_SLASH); + ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); case 61: - ACCEPT_TOKEN(anon_sym_PERCENT); + ACCEPT_TOKEN(anon_sym_SLASH); END_STATE(); case 62: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); case 63: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 64: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 65: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 66: - ACCEPT_TOKEN(anon_sym_GT); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 67: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(69); END_STATE(); case 68: - ACCEPT_TOKEN(anon_sym_LT); + ACCEPT_TOKEN(anon_sym_GT); if (lookahead == '=') ADVANCE(70); END_STATE(); case 69: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '=') ADVANCE(71); END_STATE(); case 70: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 71: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 72: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 73: - ACCEPT_TOKEN(anon_sym_elseif); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 74: - ACCEPT_TOKEN(anon_sym_EQ_GT); + ACCEPT_TOKEN(anon_sym_elseif); END_STATE(); case 75: - ACCEPT_TOKEN(anon_sym_asyncfor); + ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); case 76: - ACCEPT_TOKEN(anon_sym_DASH_GT); + ACCEPT_TOKEN(anon_sym_asyncfor); END_STATE(); case 77: + ACCEPT_TOKEN(anon_sym_DASH_GT); + END_STATE(); + case 78: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); default: @@ -1749,80 +1756,80 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [1] = {.lex_state = 24}, - [2] = {.lex_state = 24}, - [3] = {.lex_state = 24}, - [4] = {.lex_state = 24}, - [5] = {.lex_state = 24}, - [6] = {.lex_state = 24}, - [7] = {.lex_state = 24}, - [8] = {.lex_state = 24}, - [9] = {.lex_state = 24}, - [10] = {.lex_state = 24}, - [11] = {.lex_state = 24}, - [12] = {.lex_state = 24}, - [13] = {.lex_state = 24}, - [14] = {.lex_state = 24}, - [15] = {.lex_state = 24}, - [16] = {.lex_state = 24}, - [17] = {.lex_state = 24}, - [18] = {.lex_state = 24}, - [19] = {.lex_state = 24}, - [20] = {.lex_state = 24}, - [21] = {.lex_state = 24}, - [22] = {.lex_state = 24}, - [23] = {.lex_state = 24}, - [24] = {.lex_state = 24}, - [25] = {.lex_state = 24}, - [26] = {.lex_state = 24}, - [27] = {.lex_state = 24}, - [28] = {.lex_state = 24}, - [29] = {.lex_state = 24}, - [30] = {.lex_state = 24}, - [31] = {.lex_state = 24}, - [32] = {.lex_state = 24}, - [33] = {.lex_state = 24}, - [34] = {.lex_state = 24}, - [35] = {.lex_state = 24}, - [36] = {.lex_state = 24}, + [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 = 1}, - [38] = {.lex_state = 24}, - [39] = {.lex_state = 24}, - [40] = {.lex_state = 24}, + [38] = {.lex_state = 25}, + [39] = {.lex_state = 25}, + [40] = {.lex_state = 25}, [41] = {.lex_state = 1}, [42] = {.lex_state = 1}, - [43] = {.lex_state = 24}, + [43] = {.lex_state = 25}, [44] = {.lex_state = 1}, - [45] = {.lex_state = 24}, - [46] = {.lex_state = 24}, - [47] = {.lex_state = 24}, - [48] = {.lex_state = 24}, - [49] = {.lex_state = 24}, - [50] = {.lex_state = 24}, - [51] = {.lex_state = 24}, - [52] = {.lex_state = 24}, + [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 = 1}, - [54] = {.lex_state = 24}, - [55] = {.lex_state = 24}, - [56] = {.lex_state = 24}, - [57] = {.lex_state = 24}, - [58] = {.lex_state = 24}, - [59] = {.lex_state = 24}, - [60] = {.lex_state = 24}, - [61] = {.lex_state = 24}, - [62] = {.lex_state = 24}, - [63] = {.lex_state = 24}, - [64] = {.lex_state = 24}, - [65] = {.lex_state = 24}, - [66] = {.lex_state = 24}, + [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 = 1}, - [68] = {.lex_state = 24}, - [69] = {.lex_state = 24}, - [70] = {.lex_state = 24}, - [71] = {.lex_state = 24}, - [72] = {.lex_state = 24}, - [73] = {.lex_state = 24}, - [74] = {.lex_state = 24}, + [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 = 1}, [76] = {.lex_state = 1}, [77] = {.lex_state = 1}, @@ -1854,13 +1861,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [103] = {.lex_state = 1}, [104] = {.lex_state = 1}, [105] = {.lex_state = 1}, - [106] = {.lex_state = 1}, - [107] = {.lex_state = 1}, - [108] = {.lex_state = 2}, + [106] = {.lex_state = 2}, + [107] = {.lex_state = 2}, + [108] = {.lex_state = 1}, [109] = {.lex_state = 1}, [110] = {.lex_state = 1}, [111] = {.lex_state = 2}, - [112] = {.lex_state = 2}, + [112] = {.lex_state = 1}, [113] = {.lex_state = 2}, [114] = {.lex_state = 2}, [115] = {.lex_state = 2}, @@ -1870,52 +1877,52 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [119] = {.lex_state = 2}, [120] = {.lex_state = 2}, [121] = {.lex_state = 2}, - [122] = {.lex_state = 0}, + [122] = {.lex_state = 2}, [123] = {.lex_state = 2}, [124] = {.lex_state = 2}, [125] = {.lex_state = 2}, [126] = {.lex_state = 2}, [127] = {.lex_state = 2}, [128] = {.lex_state = 2}, - [129] = {.lex_state = 2}, + [129] = {.lex_state = 0}, [130] = {.lex_state = 2}, - [131] = {.lex_state = 0}, - [132] = {.lex_state = 2}, + [131] = {.lex_state = 2}, + [132] = {.lex_state = 0}, [133] = {.lex_state = 2}, [134] = {.lex_state = 2}, [135] = {.lex_state = 2}, [136] = {.lex_state = 0}, - [137] = {.lex_state = 3}, - [138] = {.lex_state = 1}, + [137] = {.lex_state = 1}, + [138] = {.lex_state = 3}, [139] = {.lex_state = 1}, [140] = {.lex_state = 1}, - [141] = {.lex_state = 1}, - [142] = {.lex_state = 0}, - [143] = {.lex_state = 1}, + [141] = {.lex_state = 0}, + [142] = {.lex_state = 1}, + [143] = {.lex_state = 0}, [144] = {.lex_state = 1}, - [145] = {.lex_state = 3}, + [145] = {.lex_state = 1}, [146] = {.lex_state = 1}, - [147] = {.lex_state = 1}, + [147] = {.lex_state = 3}, [148] = {.lex_state = 1}, [149] = {.lex_state = 1}, [150] = {.lex_state = 1}, [151] = {.lex_state = 1}, - [152] = {.lex_state = 0}, - [153] = {.lex_state = 0}, - [154] = {.lex_state = 0}, - [155] = {.lex_state = 1}, - [156] = {.lex_state = 1}, + [152] = {.lex_state = 1}, + [153] = {.lex_state = 1}, + [154] = {.lex_state = 1}, + [155] = {.lex_state = 0}, + [156] = {.lex_state = 0}, [157] = {.lex_state = 1}, [158] = {.lex_state = 1}, [159] = {.lex_state = 1}, [160] = {.lex_state = 1}, [161] = {.lex_state = 1}, [162] = {.lex_state = 1}, - [163] = {.lex_state = 2}, - [164] = {.lex_state = 1}, - [165] = {.lex_state = 2}, + [163] = {.lex_state = 1}, + [164] = {.lex_state = 25}, + [165] = {.lex_state = 1}, [166] = {.lex_state = 1}, - [167] = {.lex_state = 1}, + [167] = {.lex_state = 2}, [168] = {.lex_state = 1}, [169] = {.lex_state = 1}, [170] = {.lex_state = 1}, @@ -1932,22 +1939,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [181] = {.lex_state = 1}, [182] = {.lex_state = 1}, [183] = {.lex_state = 1}, - [184] = {.lex_state = 24}, - [185] = {.lex_state = 1}, - [186] = {.lex_state = 24}, + [184] = {.lex_state = 1}, + [185] = {.lex_state = 25}, + [186] = {.lex_state = 1}, [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 = 2}, - [194] = {.lex_state = 1}, - [195] = {.lex_state = 24}, - [196] = {.lex_state = 24}, - [197] = {.lex_state = 1}, - [198] = {.lex_state = 24}, - [199] = {.lex_state = 24}, + [193] = {.lex_state = 1}, + [194] = {.lex_state = 25}, + [195] = {.lex_state = 2}, + [196] = {.lex_state = 25}, + [197] = {.lex_state = 25}, + [198] = {.lex_state = 25}, + [199] = {.lex_state = 1}, [200] = {.lex_state = 1}, [201] = {.lex_state = 1}, [202] = {.lex_state = 1}, @@ -1957,19 +1964,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [206] = {.lex_state = 1}, [207] = {.lex_state = 1}, [208] = {.lex_state = 1}, - [209] = {.lex_state = 1}, - [210] = {.lex_state = 24}, - [211] = {.lex_state = 24}, + [209] = {.lex_state = 25}, + [210] = {.lex_state = 25}, + [211] = {.lex_state = 1}, [212] = {.lex_state = 1}, - [213] = {.lex_state = 24}, - [214] = {.lex_state = 24}, - [215] = {.lex_state = 1}, + [213] = {.lex_state = 1}, + [214] = {.lex_state = 25}, + [215] = {.lex_state = 25}, [216] = {.lex_state = 1}, - [217] = {.lex_state = 24}, - [218] = {.lex_state = 24}, - [219] = {.lex_state = 24}, - [220] = {.lex_state = 1}, - [221] = {.lex_state = 1}, + [217] = {.lex_state = 1}, + [218] = {.lex_state = 25}, + [219] = {.lex_state = 25}, + [220] = {.lex_state = 25}, + [221] = {.lex_state = 2}, [222] = {.lex_state = 2}, [223] = {.lex_state = 2}, [224] = {.lex_state = 2}, @@ -1979,35 +1986,35 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [228] = {.lex_state = 2}, [229] = {.lex_state = 2}, [230] = {.lex_state = 5}, - [231] = {.lex_state = 2}, - [232] = {.lex_state = 2}, - [233] = {.lex_state = 5}, - [234] = {.lex_state = 4}, - [235] = {.lex_state = 24}, - [236] = {.lex_state = 5}, + [231] = {.lex_state = 5}, + [232] = {.lex_state = 5}, + [233] = {.lex_state = 2}, + [234] = {.lex_state = 2}, + [235] = {.lex_state = 25}, + [236] = {.lex_state = 4}, [237] = {.lex_state = 5}, [238] = {.lex_state = 5}, [239] = {.lex_state = 5}, [240] = {.lex_state = 5}, - [241] = {.lex_state = 7}, - [242] = {.lex_state = 7}, + [241] = {.lex_state = 1}, + [242] = {.lex_state = 1}, [243] = {.lex_state = 1}, [244] = {.lex_state = 1}, [245] = {.lex_state = 1}, [246] = {.lex_state = 1}, - [247] = {.lex_state = 7}, - [248] = {.lex_state = 7}, - [249] = {.lex_state = 7}, + [247] = {.lex_state = 1}, + [248] = {.lex_state = 1}, + [249] = {.lex_state = 1}, [250] = {.lex_state = 1}, [251] = {.lex_state = 7}, - [252] = {.lex_state = 1}, + [252] = {.lex_state = 7}, [253] = {.lex_state = 1}, [254] = {.lex_state = 1}, [255] = {.lex_state = 1}, - [256] = {.lex_state = 1}, - [257] = {.lex_state = 1}, - [258] = {.lex_state = 1}, - [259] = {.lex_state = 1}, + [256] = {.lex_state = 7}, + [257] = {.lex_state = 7}, + [258] = {.lex_state = 7}, + [259] = {.lex_state = 7}, [260] = {.lex_state = 1}, [261] = {.lex_state = 1}, [262] = {.lex_state = 1}, @@ -2022,57 +2029,59 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [271] = {.lex_state = 1}, [272] = {.lex_state = 1}, [273] = {.lex_state = 1}, - [274] = {.lex_state = 24}, - [275] = {.lex_state = 24}, - [276] = {.lex_state = 24}, - [277] = {.lex_state = 7}, - [278] = {.lex_state = 7}, - [279] = {.lex_state = 1}, + [274] = {.lex_state = 1}, + [275] = {.lex_state = 25}, + [276] = {.lex_state = 25}, + [277] = {.lex_state = 25}, + [278] = {.lex_state = 1}, + [279] = {.lex_state = 7}, [280] = {.lex_state = 1}, - [281] = {.lex_state = 24}, - [282] = {.lex_state = 1}, + [281] = {.lex_state = 1}, + [282] = {.lex_state = 25}, [283] = {.lex_state = 7}, [284] = {.lex_state = 1}, - [285] = {.lex_state = 1}, + [285] = {.lex_state = 7}, [286] = {.lex_state = 1}, [287] = {.lex_state = 1}, [288] = {.lex_state = 7}, [289] = {.lex_state = 1}, [290] = {.lex_state = 7}, [291] = {.lex_state = 1}, - [292] = {.lex_state = 7}, + [292] = {.lex_state = 1}, [293] = {.lex_state = 1}, - [294] = {.lex_state = 1}, - [295] = {.lex_state = 7}, - [296] = {.lex_state = 1}, + [294] = {.lex_state = 7}, + [295] = {.lex_state = 1}, + [296] = {.lex_state = 7}, [297] = {.lex_state = 1}, - [298] = {.lex_state = 1}, + [298] = {.lex_state = 7}, [299] = {.lex_state = 1}, - [300] = {.lex_state = 7}, + [300] = {.lex_state = 1}, [301] = {.lex_state = 1}, - [302] = {.lex_state = 7}, - [303] = {.lex_state = 1}, - [304] = {.lex_state = 0}, - [305] = {.lex_state = 1}, - [306] = {.lex_state = 5}, + [302] = {.lex_state = 1}, + [303] = {.lex_state = 7}, + [304] = {.lex_state = 1}, + [305] = {.lex_state = 0}, + [306] = {.lex_state = 0}, [307] = {.lex_state = 0}, [308] = {.lex_state = 0}, - [309] = {.lex_state = 0}, - [310] = {.lex_state = 24}, - [311] = {.lex_state = 1}, + [309] = {.lex_state = 5}, + [310] = {.lex_state = 25}, + [311] = {.lex_state = 0}, [312] = {.lex_state = 0}, - [313] = {.lex_state = 0}, + [313] = {.lex_state = 5}, [314] = {.lex_state = 0}, - [315] = {.lex_state = 0}, - [316] = {.lex_state = 1}, + [315] = {.lex_state = 1}, + [316] = {.lex_state = 0}, [317] = {.lex_state = 0}, - [318] = {.lex_state = 0}, + [318] = {.lex_state = 1}, [319] = {.lex_state = 0}, [320] = {.lex_state = 0}, [321] = {.lex_state = 0}, [322] = {.lex_state = 0}, [323] = {.lex_state = 0}, - [324] = {.lex_state = 1}, + [324] = {.lex_state = 0}, + [325] = {.lex_state = 1}, + [326] = {.lex_state = 1}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -2134,8 +2143,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(1), }, [1] = { - [sym_root] = STATE(308), - [sym_block] = STATE(184), + [sym_root] = STATE(312), + [sym_block] = STATE(185), [sym_statement] = STATE(21), [sym_expression] = STATE(74), [sym_value] = STATE(62), @@ -2145,15 +2154,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_index] = STATE(61), [sym_math] = STATE(62), [sym_logic] = STATE(62), - [sym_assignment] = STATE(184), - [sym_index_assignment] = STATE(184), - [sym_if_else] = STATE(184), - [sym_if] = STATE(131), - [sym_match] = STATE(184), - [sym_while] = STATE(184), - [sym_for] = STATE(184), - [sym_return] = STATE(184), - [sym_use] = STATE(184), + [sym_assignment] = STATE(185), + [sym_index_assignment] = STATE(185), + [sym_if_else] = STATE(185), + [sym_if] = STATE(132), + [sym_match] = STATE(185), + [sym_while] = STATE(185), + [sym_for] = STATE(185), + [sym_return] = STATE(185), + [sym_use] = STATE(185), [sym_function] = STATE(40), [sym_function_call] = STATE(62), [sym_yield] = STATE(62), @@ -2218,9 +2227,9 @@ static const uint16_t ts_small_parse_table[] = { sym_index, STATE(74), 1, sym_expression, - STATE(131), 1, + STATE(132), 1, sym_if, - STATE(299), 1, + STATE(286), 1, aux_sym_map_repeat1, ACTIONS(13), 2, sym_float, @@ -2242,7 +2251,7 @@ static const uint16_t ts_small_parse_table[] = { sym_logic, sym_function_call, sym_yield, - STATE(184), 9, + STATE(185), 9, sym_block, sym_assignment, sym_index_assignment, @@ -2289,9 +2298,9 @@ static const uint16_t ts_small_parse_table[] = { sym_index, STATE(74), 1, sym_expression, - STATE(131), 1, + STATE(132), 1, sym_if, - STATE(296), 1, + STATE(297), 1, aux_sym_map_repeat1, ACTIONS(13), 2, sym_float, @@ -2313,7 +2322,7 @@ static const uint16_t ts_small_parse_table[] = { sym_logic, sym_function_call, sym_yield, - STATE(184), 9, + STATE(185), 9, sym_block, sym_assignment, sym_index_assignment, @@ -2360,9 +2369,9 @@ static const uint16_t ts_small_parse_table[] = { sym_index, STATE(74), 1, sym_expression, - STATE(131), 1, + STATE(132), 1, sym_if, - STATE(289), 1, + STATE(287), 1, aux_sym_map_repeat1, ACTIONS(13), 2, sym_float, @@ -2384,7 +2393,7 @@ static const uint16_t ts_small_parse_table[] = { sym_logic, sym_function_call, sym_yield, - STATE(184), 9, + STATE(185), 9, sym_block, sym_assignment, sym_index_assignment, @@ -2429,7 +2438,7 @@ static const uint16_t ts_small_parse_table[] = { sym_index, STATE(74), 1, sym_expression, - STATE(131), 1, + STATE(132), 1, sym_if, ACTIONS(45), 2, ts_builtin_sym_end, @@ -2454,7 +2463,7 @@ static const uint16_t ts_small_parse_table[] = { sym_logic, sym_function_call, sym_yield, - STATE(184), 9, + STATE(185), 9, sym_block, sym_assignment, sym_index_assignment, @@ -2501,7 +2510,7 @@ static const uint16_t ts_small_parse_table[] = { sym_index, STATE(74), 1, sym_expression, - STATE(131), 1, + STATE(132), 1, sym_if, ACTIONS(13), 2, sym_float, @@ -2523,7 +2532,7 @@ static const uint16_t ts_small_parse_table[] = { sym_logic, sym_function_call, sym_yield, - STATE(184), 9, + STATE(185), 9, sym_block, sym_assignment, sym_index_assignment, @@ -2570,7 +2579,7 @@ static const uint16_t ts_small_parse_table[] = { sym_index, STATE(74), 1, sym_expression, - STATE(131), 1, + STATE(132), 1, sym_if, ACTIONS(13), 2, sym_float, @@ -2592,7 +2601,7 @@ static const uint16_t ts_small_parse_table[] = { sym_logic, sym_function_call, sym_yield, - STATE(184), 9, + STATE(185), 9, sym_block, sym_assignment, sym_index_assignment, @@ -2639,7 +2648,7 @@ static const uint16_t ts_small_parse_table[] = { sym_index, STATE(74), 1, sym_expression, - STATE(131), 1, + STATE(132), 1, sym_if, ACTIONS(13), 2, sym_float, @@ -2661,7 +2670,7 @@ static const uint16_t ts_small_parse_table[] = { sym_logic, sym_function_call, sym_yield, - STATE(184), 9, + STATE(185), 9, sym_block, sym_assignment, sym_index_assignment, @@ -2708,7 +2717,7 @@ static const uint16_t ts_small_parse_table[] = { sym_index, STATE(74), 1, sym_expression, - STATE(131), 1, + STATE(132), 1, sym_if, ACTIONS(13), 2, sym_float, @@ -2730,7 +2739,7 @@ static const uint16_t ts_small_parse_table[] = { sym_logic, sym_function_call, sym_yield, - STATE(184), 9, + STATE(185), 9, sym_block, sym_assignment, sym_index_assignment, @@ -2743,9 +2752,9 @@ static const uint16_t ts_small_parse_table[] = { [762] = 5, ACTIONS(3), 1, sym__comment, - STATE(189), 1, + STATE(188), 1, sym_logic_operator, - STATE(190), 1, + STATE(189), 1, sym_math_operator, ACTIONS(105), 17, anon_sym_async, @@ -2826,7 +2835,7 @@ static const uint16_t ts_small_parse_table[] = { sym_index, STATE(74), 1, sym_expression, - STATE(131), 1, + STATE(132), 1, sym_if, ACTIONS(13), 2, sym_float, @@ -2848,7 +2857,7 @@ static const uint16_t ts_small_parse_table[] = { sym_logic, sym_function_call, sym_yield, - STATE(184), 9, + STATE(185), 9, sym_block, sym_assignment, sym_index_assignment, @@ -2895,7 +2904,7 @@ static const uint16_t ts_small_parse_table[] = { sym_index, STATE(74), 1, sym_expression, - STATE(131), 1, + STATE(132), 1, sym_if, ACTIONS(13), 2, sym_float, @@ -2917,7 +2926,7 @@ static const uint16_t ts_small_parse_table[] = { sym_logic, sym_function_call, sym_yield, - STATE(184), 9, + STATE(185), 9, sym_block, sym_assignment, sym_index_assignment, @@ -2964,7 +2973,7 @@ static const uint16_t ts_small_parse_table[] = { sym_index, STATE(74), 1, sym_expression, - STATE(131), 1, + STATE(132), 1, sym_if, ACTIONS(13), 2, sym_float, @@ -2986,7 +2995,7 @@ static const uint16_t ts_small_parse_table[] = { sym_logic, sym_function_call, sym_yield, - STATE(184), 9, + STATE(185), 9, sym_block, sym_assignment, sym_index_assignment, @@ -2999,9 +3008,9 @@ static const uint16_t ts_small_parse_table[] = { [1098] = 5, ACTIONS(3), 1, sym__comment, - STATE(189), 1, + STATE(188), 1, sym_logic_operator, - STATE(190), 1, + STATE(189), 1, sym_math_operator, ACTIONS(115), 17, anon_sym_async, @@ -3050,9 +3059,9 @@ static const uint16_t ts_small_parse_table[] = { sym__comment, ACTIONS(121), 1, anon_sym_COLON, - STATE(189), 1, + STATE(188), 1, sym_logic_operator, - STATE(190), 1, + STATE(189), 1, sym_math_operator, ACTIONS(119), 17, anon_sym_async, @@ -3132,7 +3141,7 @@ static const uint16_t ts_small_parse_table[] = { sym_index, STATE(74), 1, sym_expression, - STATE(131), 1, + STATE(132), 1, sym_if, ACTIONS(13), 2, sym_float, @@ -3154,7 +3163,7 @@ static const uint16_t ts_small_parse_table[] = { sym_logic, sym_function_call, sym_yield, - STATE(184), 9, + STATE(185), 9, sym_block, sym_assignment, sym_index_assignment, @@ -3201,7 +3210,7 @@ static const uint16_t ts_small_parse_table[] = { sym_index, STATE(74), 1, sym_expression, - STATE(131), 1, + STATE(132), 1, sym_if, ACTIONS(13), 2, sym_float, @@ -3223,7 +3232,7 @@ static const uint16_t ts_small_parse_table[] = { sym_logic, sym_function_call, sym_yield, - STATE(184), 9, + STATE(185), 9, sym_block, sym_assignment, sym_index_assignment, @@ -3240,9 +3249,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, ACTIONS(139), 1, anon_sym_DASH_GT, - STATE(189), 1, + STATE(188), 1, sym_logic_operator, - STATE(190), 1, + STATE(189), 1, sym_math_operator, ACTIONS(131), 2, anon_sym_PLUS, @@ -3293,9 +3302,9 @@ static const uint16_t ts_small_parse_table[] = { sym__comment, ACTIONS(141), 1, anon_sym_DOT_DOT, - STATE(189), 1, + STATE(188), 1, sym_logic_operator, - STATE(190), 1, + STATE(189), 1, sym_math_operator, ACTIONS(105), 17, anon_sym_async, @@ -3375,7 +3384,7 @@ static const uint16_t ts_small_parse_table[] = { sym_index, STATE(74), 1, sym_expression, - STATE(131), 1, + STATE(132), 1, sym_if, ACTIONS(13), 2, sym_float, @@ -3397,7 +3406,7 @@ static const uint16_t ts_small_parse_table[] = { sym_logic, sym_function_call, sym_yield, - STATE(184), 9, + STATE(185), 9, sym_block, sym_assignment, sym_index_assignment, @@ -3444,7 +3453,7 @@ static const uint16_t ts_small_parse_table[] = { sym_index, STATE(74), 1, sym_expression, - STATE(131), 1, + STATE(132), 1, sym_if, ACTIONS(13), 2, sym_float, @@ -3466,7 +3475,7 @@ static const uint16_t ts_small_parse_table[] = { sym_logic, sym_function_call, sym_yield, - STATE(184), 9, + STATE(185), 9, sym_block, sym_assignment, sym_index_assignment, @@ -3479,9 +3488,9 @@ static const uint16_t ts_small_parse_table[] = { [1706] = 5, ACTIONS(3), 1, sym__comment, - STATE(204), 1, + STATE(200), 1, sym_math_operator, - STATE(207), 1, + STATE(205), 1, sym_logic_operator, ACTIONS(115), 17, anon_sym_async, @@ -3559,7 +3568,7 @@ static const uint16_t ts_small_parse_table[] = { sym_index, STATE(74), 1, sym_expression, - STATE(131), 1, + STATE(132), 1, sym_if, ACTIONS(13), 2, sym_float, @@ -3581,7 +3590,7 @@ static const uint16_t ts_small_parse_table[] = { sym_logic, sym_function_call, sym_yield, - STATE(184), 9, + STATE(185), 9, sym_block, sym_assignment, sym_index_assignment, @@ -3626,7 +3635,7 @@ static const uint16_t ts_small_parse_table[] = { sym_index, STATE(74), 1, sym_expression, - STATE(131), 1, + STATE(132), 1, sym_if, ACTIONS(13), 2, sym_float, @@ -3648,7 +3657,7 @@ static const uint16_t ts_small_parse_table[] = { sym_logic, sym_function_call, sym_yield, - STATE(184), 9, + STATE(185), 9, sym_block, sym_assignment, sym_index_assignment, @@ -3693,7 +3702,7 @@ static const uint16_t ts_small_parse_table[] = { sym_index, STATE(74), 1, sym_expression, - STATE(131), 1, + STATE(132), 1, sym_if, ACTIONS(13), 2, sym_float, @@ -3715,7 +3724,7 @@ static const uint16_t ts_small_parse_table[] = { sym_logic, sym_function_call, sym_yield, - STATE(184), 9, + STATE(185), 9, sym_block, sym_assignment, sym_index_assignment, @@ -3760,7 +3769,7 @@ static const uint16_t ts_small_parse_table[] = { sym_index, STATE(74), 1, sym_expression, - STATE(131), 1, + STATE(132), 1, sym_if, ACTIONS(13), 2, sym_float, @@ -3782,7 +3791,7 @@ static const uint16_t ts_small_parse_table[] = { sym_logic, sym_function_call, sym_yield, - STATE(184), 9, + STATE(185), 9, sym_block, sym_assignment, sym_index_assignment, @@ -3827,7 +3836,7 @@ static const uint16_t ts_small_parse_table[] = { sym_index, STATE(74), 1, sym_expression, - STATE(131), 1, + STATE(132), 1, sym_if, ACTIONS(13), 2, sym_float, @@ -3849,7 +3858,7 @@ static const uint16_t ts_small_parse_table[] = { sym_logic, sym_function_call, sym_yield, - STATE(184), 9, + STATE(185), 9, sym_block, sym_assignment, sym_index_assignment, @@ -3894,7 +3903,7 @@ static const uint16_t ts_small_parse_table[] = { sym_index, STATE(74), 1, sym_expression, - STATE(131), 1, + STATE(132), 1, sym_if, ACTIONS(13), 2, sym_float, @@ -3916,7 +3925,7 @@ static const uint16_t ts_small_parse_table[] = { sym_logic, sym_function_call, sym_yield, - STATE(184), 9, + STATE(185), 9, sym_block, sym_assignment, sym_index_assignment, @@ -3961,7 +3970,7 @@ static const uint16_t ts_small_parse_table[] = { sym_index, STATE(74), 1, sym_expression, - STATE(131), 1, + STATE(132), 1, sym_if, ACTIONS(13), 2, sym_float, @@ -3983,7 +3992,7 @@ static const uint16_t ts_small_parse_table[] = { sym_logic, sym_function_call, sym_yield, - STATE(184), 9, + STATE(185), 9, sym_block, sym_assignment, sym_index_assignment, @@ -3998,9 +4007,9 @@ static const uint16_t ts_small_parse_table[] = { sym__comment, ACTIONS(147), 1, anon_sym_COLON, - STATE(204), 1, + STATE(200), 1, sym_math_operator, - STATE(207), 1, + STATE(205), 1, sym_logic_operator, ACTIONS(119), 17, anon_sym_async, @@ -4077,7 +4086,7 @@ static const uint16_t ts_small_parse_table[] = { sym_index, STATE(74), 1, sym_expression, - STATE(131), 1, + STATE(132), 1, sym_if, ACTIONS(13), 2, sym_float, @@ -4099,7 +4108,7 @@ static const uint16_t ts_small_parse_table[] = { sym_logic, sym_function_call, sym_yield, - STATE(184), 9, + STATE(185), 9, sym_block, sym_assignment, sym_index_assignment, @@ -4116,9 +4125,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, ACTIONS(147), 1, anon_sym_COLON, - STATE(204), 1, + STATE(200), 1, sym_math_operator, - STATE(207), 1, + STATE(205), 1, sym_logic_operator, ACTIONS(131), 2, anon_sym_PLUS, @@ -4198,7 +4207,7 @@ static const uint16_t ts_small_parse_table[] = { sym_index, STATE(74), 1, sym_expression, - STATE(131), 1, + STATE(132), 1, sym_if, ACTIONS(13), 2, sym_float, @@ -4220,7 +4229,7 @@ static const uint16_t ts_small_parse_table[] = { sym_logic, sym_function_call, sym_yield, - STATE(184), 9, + STATE(185), 9, sym_block, sym_assignment, sym_index_assignment, @@ -4316,7 +4325,7 @@ static const uint16_t ts_small_parse_table[] = { sym_index, STATE(74), 1, sym_expression, - STATE(131), 1, + STATE(132), 1, sym_if, ACTIONS(13), 2, sym_float, @@ -4338,7 +4347,7 @@ static const uint16_t ts_small_parse_table[] = { sym_logic, sym_function_call, sym_yield, - STATE(184), 9, + STATE(185), 9, sym_block, sym_assignment, sym_index_assignment, @@ -4416,13 +4425,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, ACTIONS(183), 1, anon_sym_fn, - STATE(103), 1, + STATE(105), 1, sym_expression, - STATE(148), 1, + STATE(149), 1, aux_sym__expression_list, - STATE(169), 1, + STATE(171), 1, sym_math_operator, - STATE(170), 1, + STATE(172), 1, sym_logic_operator, ACTIONS(137), 2, anon_sym_GT, @@ -4450,7 +4459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(96), 6, + STATE(86), 6, sym_value, sym_index, sym_math, @@ -4490,11 +4499,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, STATE(100), 1, sym_index, - STATE(104), 1, + STATE(102), 1, sym_expression, STATE(230), 1, sym_if, - STATE(256), 1, + STATE(244), 1, sym_statement, ACTIONS(169), 2, sym_float, @@ -4507,13 +4516,13 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym_map, sym_function, - STATE(96), 5, + STATE(86), 5, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, - STATE(257), 9, + STATE(241), 9, sym_block, sym_assignment, sym_index_assignment, @@ -4556,11 +4565,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, STATE(100), 1, sym_index, - STATE(104), 1, + STATE(102), 1, sym_expression, STATE(230), 1, sym_if, - STATE(254), 1, + STATE(248), 1, sym_statement, ACTIONS(169), 2, sym_float, @@ -4573,13 +4582,13 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym_map, sym_function, - STATE(96), 5, + STATE(86), 5, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, - STATE(257), 9, + STATE(241), 9, sym_block, sym_assignment, sym_index_assignment, @@ -4657,13 +4666,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, ACTIONS(209), 1, anon_sym_RPAREN, - STATE(103), 1, + STATE(105), 1, sym_expression, - STATE(144), 1, + STATE(146), 1, aux_sym__expression_list, - STATE(169), 1, + STATE(171), 1, sym_math_operator, - STATE(170), 1, + STATE(172), 1, sym_logic_operator, ACTIONS(137), 2, anon_sym_GT, @@ -4691,7 +4700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(96), 6, + STATE(86), 6, sym_value, sym_index, sym_math, @@ -4721,13 +4730,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, ACTIONS(211), 1, anon_sym_RPAREN, - STATE(103), 1, + STATE(105), 1, sym_expression, - STATE(147), 1, + STATE(144), 1, aux_sym__expression_list, - STATE(174), 1, + STATE(175), 1, sym_logic_operator, - STATE(221), 1, + STATE(212), 1, sym_math_operator, ACTIONS(137), 2, anon_sym_GT, @@ -4755,7 +4764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(96), 6, + STATE(86), 6, sym_value, sym_index, sym_math, @@ -4795,11 +4804,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, STATE(100), 1, sym_index, - STATE(104), 1, + STATE(102), 1, sym_expression, STATE(230), 1, sym_if, - STATE(243), 1, + STATE(255), 1, sym_statement, ACTIONS(169), 2, sym_float, @@ -4812,13 +4821,13 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym_map, sym_function, - STATE(96), 5, + STATE(86), 5, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, - STATE(257), 9, + STATE(241), 9, sym_block, sym_assignment, sym_index_assignment, @@ -4851,14 +4860,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, ACTIONS(213), 1, anon_sym_RPAREN, - STATE(103), 1, + STATE(105), 1, sym_expression, - STATE(138), 1, + STATE(150), 1, aux_sym__expression_list, STATE(212), 1, - sym_logic_operator, - STATE(221), 1, sym_math_operator, + STATE(213), 1, + sym_logic_operator, ACTIONS(137), 2, anon_sym_GT, anon_sym_LT, @@ -4885,7 +4894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(96), 6, + STATE(86), 6, sym_value, sym_index, sym_math, @@ -5058,13 +5067,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, ACTIONS(243), 1, anon_sym_fn, - STATE(145), 1, + STATE(147), 1, sym_index, - STATE(193), 1, + STATE(195), 1, sym_expression, STATE(230), 1, sym_if, - STATE(279), 1, + STATE(281), 1, sym_statement, ACTIONS(233), 2, sym_float, @@ -5077,13 +5086,13 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym_map, sym_function, - STATE(129), 5, + STATE(118), 5, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, - STATE(250), 9, + STATE(242), 9, sym_block, sym_assignment, sym_index_assignment, @@ -5175,7 +5184,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expression, STATE(230), 1, sym_if, - STATE(265), 1, + STATE(260), 1, sym_statement, ACTIONS(169), 2, sym_float, @@ -5188,13 +5197,13 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym_map, sym_function, - STATE(96), 5, + STATE(86), 5, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, - STATE(250), 9, + STATE(242), 9, sym_block, sym_assignment, sym_index_assignment, @@ -5239,9 +5248,9 @@ static const uint16_t ts_small_parse_table[] = { sym_index, STATE(73), 1, sym_expression, - STATE(131), 1, + STATE(132), 1, sym_if, - STATE(219), 1, + STATE(218), 1, sym_statement, ACTIONS(13), 2, sym_float, @@ -5260,7 +5269,7 @@ static const uint16_t ts_small_parse_table[] = { sym_logic, sym_function_call, sym_yield, - STATE(186), 9, + STATE(164), 9, sym_block, sym_assignment, sym_index_assignment, @@ -5338,13 +5347,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, ACTIONS(253), 1, anon_sym_RPAREN, - STATE(103), 1, + STATE(105), 1, sym_expression, - STATE(151), 1, + STATE(152), 1, aux_sym__expression_list, - STATE(169), 1, + STATE(171), 1, sym_math_operator, - STATE(170), 1, + STATE(172), 1, sym_logic_operator, ACTIONS(137), 2, anon_sym_GT, @@ -5372,7 +5381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(96), 6, + STATE(86), 6, sym_value, sym_index, sym_math, @@ -5459,9 +5468,9 @@ static const uint16_t ts_small_parse_table[] = { sym_index, STATE(73), 1, sym_expression, - STATE(131), 1, + STATE(132), 1, sym_if, - STATE(211), 1, + STATE(210), 1, sym_statement, ACTIONS(13), 2, sym_float, @@ -5480,7 +5489,7 @@ static const uint16_t ts_small_parse_table[] = { sym_logic, sym_function_call, sym_yield, - STATE(186), 9, + STATE(164), 9, sym_block, sym_assignment, sym_index_assignment, @@ -5616,13 +5625,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, ACTIONS(243), 1, anon_sym_fn, - STATE(145), 1, + STATE(147), 1, sym_index, - STATE(193), 1, + STATE(195), 1, sym_expression, STATE(230), 1, sym_if, - STATE(279), 1, + STATE(281), 1, sym_statement, ACTIONS(233), 2, sym_float, @@ -5635,13 +5644,13 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym_map, sym_function, - STATE(129), 5, + STATE(118), 5, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, - STATE(250), 9, + STATE(242), 9, sym_block, sym_assignment, sym_index_assignment, @@ -5955,13 +5964,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, ACTIONS(243), 1, anon_sym_fn, - STATE(145), 1, + STATE(147), 1, sym_index, - STATE(163), 1, + STATE(221), 1, sym_expression, STATE(230), 1, sym_if, - STATE(243), 1, + STATE(255), 1, sym_statement, ACTIONS(233), 2, sym_float, @@ -5974,13 +5983,13 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym_map, sym_function, - STATE(129), 5, + STATE(118), 5, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, - STATE(257), 9, + STATE(241), 9, sym_block, sym_assignment, sym_index_assignment, @@ -6021,13 +6030,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, ACTIONS(243), 1, anon_sym_fn, - STATE(145), 1, + STATE(147), 1, sym_index, - STATE(163), 1, + STATE(221), 1, sym_expression, STATE(230), 1, sym_if, - STATE(256), 1, + STATE(244), 1, sym_statement, ACTIONS(233), 2, sym_float, @@ -6040,13 +6049,13 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym_map, sym_function, - STATE(129), 5, + STATE(118), 5, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, - STATE(257), 9, + STATE(241), 9, sym_block, sym_assignment, sym_index_assignment, @@ -6079,13 +6088,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, ACTIONS(281), 1, anon_sym_RPAREN, - STATE(103), 1, + STATE(105), 1, sym_expression, - STATE(149), 1, + STATE(142), 1, aux_sym__expression_list, - STATE(185), 1, + STATE(186), 1, sym_logic_operator, - STATE(221), 1, + STATE(212), 1, sym_math_operator, ACTIONS(137), 2, anon_sym_GT, @@ -6113,7 +6122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(96), 6, + STATE(86), 6, sym_value, sym_index, sym_math, @@ -6155,9 +6164,9 @@ static const uint16_t ts_small_parse_table[] = { sym_index, STATE(73), 1, sym_expression, - STATE(131), 1, + STATE(132), 1, sym_if, - STATE(213), 1, + STATE(215), 1, sym_statement, ACTIONS(13), 2, sym_float, @@ -6176,7 +6185,7 @@ static const uint16_t ts_small_parse_table[] = { sym_logic, sym_function_call, sym_yield, - STATE(186), 9, + STATE(164), 9, sym_block, sym_assignment, sym_index_assignment, @@ -6217,13 +6226,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, ACTIONS(243), 1, anon_sym_fn, - STATE(145), 1, + STATE(147), 1, sym_index, - STATE(163), 1, + STATE(221), 1, sym_expression, STATE(230), 1, sym_if, - STATE(254), 1, + STATE(248), 1, sym_statement, ACTIONS(233), 2, sym_float, @@ -6236,13 +6245,13 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym_map, sym_function, - STATE(129), 5, + STATE(118), 5, sym_value, sym_math, sym_logic, sym_function_call, sym_yield, - STATE(257), 9, + STATE(241), 9, sym_block, sym_assignment, sym_index_assignment, @@ -6351,9 +6360,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, ACTIONS(147), 1, anon_sym_COLON, - STATE(204), 1, + STATE(200), 1, sym_math_operator, - STATE(207), 1, + STATE(205), 1, sym_logic_operator, ACTIONS(137), 2, anon_sym_GT, @@ -6402,9 +6411,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, ACTIONS(147), 1, anon_sym_COLON, - STATE(204), 1, + STATE(200), 1, sym_math_operator, - STATE(207), 1, + STATE(205), 1, sym_logic_operator, ACTIONS(137), 2, anon_sym_GT, @@ -6455,9 +6464,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, ACTIONS(299), 1, anon_sym_SEMI, - STATE(204), 1, + STATE(200), 1, sym_math_operator, - STATE(207), 1, + STATE(205), 1, sym_logic_operator, ACTIONS(137), 2, anon_sym_GT, @@ -6499,9 +6508,9 @@ static const uint16_t ts_small_parse_table[] = { [5512] = 5, ACTIONS(3), 1, sym__comment, - STATE(179), 1, - sym_logic_operator, STATE(180), 1, + sym_logic_operator, + STATE(181), 1, sym_math_operator, ACTIONS(105), 10, sym_identifier, @@ -6544,9 +6553,9 @@ static const uint16_t ts_small_parse_table[] = { sym__comment, ACTIONS(301), 1, anon_sym_DOT_DOT, - STATE(179), 1, - sym_logic_operator, STATE(180), 1, + sym_logic_operator, + STATE(181), 1, sym_math_operator, ACTIONS(105), 10, sym_identifier, @@ -6586,9 +6595,9 @@ static const uint16_t ts_small_parse_table[] = { [5610] = 5, ACTIONS(3), 1, sym__comment, - STATE(179), 1, - sym_logic_operator, STATE(180), 1, + sym_logic_operator, + STATE(181), 1, sym_math_operator, ACTIONS(115), 10, sym_identifier, @@ -6633,9 +6642,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, ACTIONS(303), 1, anon_sym_COLON, - STATE(179), 1, - sym_logic_operator, STATE(180), 1, + sym_logic_operator, + STATE(181), 1, sym_math_operator, ACTIONS(131), 2, anon_sym_PLUS, @@ -6680,9 +6689,9 @@ static const uint16_t ts_small_parse_table[] = { sym__comment, ACTIONS(303), 1, anon_sym_COLON, - STATE(179), 1, - sym_logic_operator, STATE(180), 1, + sym_logic_operator, + STATE(181), 1, sym_math_operator, ACTIONS(119), 10, sym_identifier, @@ -6726,9 +6735,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, ACTIONS(181), 1, anon_sym_DASH_GT, - STATE(169), 1, + STATE(171), 1, sym_math_operator, - STATE(170), 1, + STATE(172), 1, sym_logic_operator, ACTIONS(131), 2, anon_sym_PLUS, @@ -6772,9 +6781,9 @@ static const uint16_t ts_small_parse_table[] = { sym__comment, ACTIONS(175), 1, anon_sym_COLON, - STATE(169), 1, + STATE(171), 1, sym_math_operator, - STATE(170), 1, + STATE(172), 1, sym_logic_operator, ACTIONS(119), 10, sym_identifier, @@ -6813,9 +6822,9 @@ static const uint16_t ts_small_parse_table[] = { [5876] = 5, ACTIONS(3), 1, sym__comment, - STATE(169), 1, + STATE(171), 1, sym_math_operator, - STATE(170), 1, + STATE(172), 1, sym_logic_operator, ACTIONS(115), 10, sym_identifier, @@ -6855,7 +6864,7 @@ static const uint16_t ts_small_parse_table[] = { [5923] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(289), 10, + ACTIONS(161), 10, sym_identifier, sym_integer, anon_sym_true, @@ -6866,7 +6875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_fn, - ACTIONS(287), 24, + ACTIONS(159), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -6892,435 +6901,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_DASH_GT, [5965] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(279), 10, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_fn, - ACTIONS(277), 24, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_GT, - [6007] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(271), 10, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_fn, - ACTIONS(269), 24, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_GT, - [6049] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(217), 10, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_fn, - ACTIONS(215), 24, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_GT, - [6091] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(225), 10, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_fn, - ACTIONS(223), 24, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_GT, - [6133] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(257), 10, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_fn, - ACTIONS(255), 24, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_GT, - [6175] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(247), 10, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_fn, - ACTIONS(245), 24, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_GT, - [6217] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(221), 10, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_fn, - ACTIONS(219), 24, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_GT, - [6259] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(275), 10, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_fn, - ACTIONS(273), 24, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_GT, - [6301] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(267), 10, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_fn, - ACTIONS(265), 24, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_GT, - [6343] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(251), 10, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_fn, - ACTIONS(249), 24, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_GT, - [6385] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(285), 10, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_fn, - ACTIONS(283), 24, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_GT, - [6427] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(263), 10, @@ -7359,7 +6939,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_DASH_GT, - [6469] = 3, + [6007] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(225), 10, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_fn, + ACTIONS(223), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DASH_GT, + [6049] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(151), 10, @@ -7398,10 +7017,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_DASH_GT, - [6511] = 3, + [6091] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(161), 10, + ACTIONS(257), 10, sym_identifier, sym_integer, anon_sym_true, @@ -7412,7 +7031,397 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_fn, - ACTIONS(159), 24, + ACTIONS(255), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DASH_GT, + [6133] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(247), 10, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_fn, + ACTIONS(245), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DASH_GT, + [6175] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(221), 10, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_fn, + ACTIONS(219), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DASH_GT, + [6217] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(275), 10, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_fn, + ACTIONS(273), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DASH_GT, + [6259] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(251), 10, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_fn, + ACTIONS(249), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DASH_GT, + [6301] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(279), 10, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_fn, + ACTIONS(277), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DASH_GT, + [6343] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(285), 10, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_fn, + ACTIONS(283), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DASH_GT, + [6385] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(267), 10, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_fn, + ACTIONS(265), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DASH_GT, + [6427] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(217), 10, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_fn, + ACTIONS(215), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DASH_GT, + [6469] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(271), 10, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_fn, + ACTIONS(269), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DASH_GT, + [6511] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(289), 10, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_fn, + ACTIONS(287), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -7499,10 +7508,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_GT, anon_sym_fn, - ACTIONS(149), 18, + ACTIONS(149), 19, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, @@ -7518,7 +7528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_DASH_GT, - [6645] = 6, + [6646] = 6, ACTIONS(3), 1, sym__comment, ACTIONS(153), 1, @@ -7538,10 +7548,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_fn, - ACTIONS(149), 18, + ACTIONS(149), 19, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, @@ -7557,7 +7568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_DASH_GT, - [6690] = 12, + [6692] = 12, ACTIONS(3), 1, sym__comment, ACTIONS(131), 1, @@ -7568,16 +7579,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, ACTIONS(305), 1, anon_sym_SEMI, - STATE(169), 1, + STATE(171), 1, sym_math_operator, - STATE(170), 1, + STATE(172), 1, sym_logic_operator, ACTIONS(137), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(133), 4, + ACTIONS(133), 3, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, ACTIONS(297), 5, @@ -7593,14 +7603,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(295), 6, + ACTIONS(295), 8, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_LPAREN, - [6745] = 12, + anon_sym_STAR, + [6748] = 11, + ACTIONS(3), 1, + sym__comment, + ACTIONS(131), 1, + anon_sym_DASH, + ACTIONS(175), 1, + anon_sym_COLON, + ACTIONS(181), 1, + anon_sym_DASH_GT, + STATE(171), 1, + sym_math_operator, + STATE(172), 1, + sym_logic_operator, + ACTIONS(137), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(133), 3, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(297), 5, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_fn, + ACTIONS(135), 6, + 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(295), 9, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_STAR, + [6802] = 11, + ACTIONS(3), 1, + sym__comment, + ACTIONS(131), 1, + anon_sym_DASH, + ACTIONS(175), 1, + anon_sym_COLON, + ACTIONS(181), 1, + anon_sym_DASH_GT, + STATE(171), 1, + sym_math_operator, + STATE(172), 1, + sym_logic_operator, + ACTIONS(137), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(133), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(293), 5, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_fn, + ACTIONS(135), 6, + 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(291), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_LPAREN, + [6856] = 12, ACTIONS(3), 1, sym__comment, ACTIONS(131), 1, @@ -7611,9 +7709,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, ACTIONS(311), 1, anon_sym_COMMA, - STATE(169), 1, + STATE(171), 1, sym_math_operator, - STATE(170), 1, + STATE(172), 1, sym_logic_operator, ACTIONS(137), 2, anon_sym_GT, @@ -7643,7 +7741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, - [6800] = 12, + [6911] = 12, ACTIONS(3), 1, sym__comment, ACTIONS(131), 1, @@ -7654,9 +7752,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, ACTIONS(317), 1, anon_sym_COMMA, - STATE(169), 1, + STATE(171), 1, sym_math_operator, - STATE(170), 1, + STATE(172), 1, sym_logic_operator, ACTIONS(137), 2, anon_sym_GT, @@ -7686,133 +7784,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_RPAREN, - [6855] = 11, + [6966] = 6, ACTIONS(3), 1, sym__comment, - ACTIONS(131), 1, - anon_sym_DASH, - ACTIONS(175), 1, - anon_sym_COLON, - ACTIONS(181), 1, - anon_sym_DASH_GT, - STATE(169), 1, - sym_math_operator, - STATE(170), 1, - sym_logic_operator, - ACTIONS(137), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(133), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(297), 5, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_fn, - ACTIONS(135), 6, - 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(295), 7, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - [6908] = 11, - ACTIONS(3), 1, - sym__comment, - ACTIONS(131), 1, - anon_sym_DASH, - ACTIONS(175), 1, - anon_sym_COLON, - ACTIONS(181), 1, - anon_sym_DASH_GT, - STATE(169), 1, - sym_math_operator, - STATE(170), 1, - sym_logic_operator, - ACTIONS(137), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(133), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(293), 5, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_fn, - ACTIONS(135), 6, - 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(291), 7, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - [6961] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(131), 1, - anon_sym_DASH, - ACTIONS(175), 1, - anon_sym_COLON, - ACTIONS(181), 1, - anon_sym_DASH_GT, ACTIONS(319), 1, - anon_sym_RPAREN, - STATE(169), 1, - sym_math_operator, - STATE(170), 1, + anon_sym_COLON, + STATE(178), 1, sym_logic_operator, - ACTIONS(137), 2, + STATE(179), 1, + sym_math_operator, + ACTIONS(119), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_GT, anon_sym_LT, - ACTIONS(133), 4, - anon_sym_PLUS, + ACTIONS(117), 18, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(127), 5, - anon_sym_LBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - ACTIONS(129), 5, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_fn, - ACTIONS(135), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [7015] = 12, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [7008] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(178), 1, + sym_logic_operator, + STATE(179), 1, + sym_math_operator, + ACTIONS(105), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(103), 19, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [7048] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(175), 1, + anon_sym_COLON, + STATE(171), 1, + sym_math_operator, + STATE(172), 1, + sym_logic_operator, + ACTIONS(119), 8, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_fn, + ACTIONS(117), 17, + anon_sym_LBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_LPAREN, + 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, + [7090] = 12, ACTIONS(3), 1, sym__comment, ACTIONS(131), 1, @@ -7823,9 +7902,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, ACTIONS(321), 1, anon_sym_RPAREN, - STATE(169), 1, + STATE(171), 1, sym_math_operator, - STATE(170), 1, + STATE(172), 1, sym_logic_operator, ACTIONS(137), 2, anon_sym_GT, @@ -7854,12 +7933,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [7069] = 5, + [7144] = 12, ACTIONS(3), 1, sym__comment, - STATE(177), 1, + ACTIONS(131), 1, + anon_sym_DASH, + ACTIONS(175), 1, + anon_sym_COLON, + ACTIONS(181), 1, + anon_sym_DASH_GT, + ACTIONS(323), 1, + anon_sym_RPAREN, + STATE(171), 1, + sym_math_operator, + STATE(172), 1, sym_logic_operator, + ACTIONS(137), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(133), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(127), 5, + anon_sym_LBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_LPAREN, + ACTIONS(129), 5, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_fn, + ACTIONS(135), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [7198] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(325), 1, + anon_sym_DOT_DOT, STATE(178), 1, + sym_logic_operator, + STATE(179), 1, + sym_math_operator, + ACTIONS(105), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(103), 18, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [7240] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(131), 1, + anon_sym_DASH, + ACTIONS(175), 1, + anon_sym_COLON, + ACTIONS(181), 1, + anon_sym_DASH_GT, + ACTIONS(327), 1, + anon_sym_RPAREN, + STATE(171), 1, + sym_math_operator, + STATE(172), 1, + sym_logic_operator, + ACTIONS(137), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(133), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(127), 5, + anon_sym_LBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_LPAREN, + ACTIONS(129), 5, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_fn, + ACTIONS(135), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [7294] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(178), 1, + sym_logic_operator, + STATE(179), 1, sym_math_operator, ACTIONS(115), 7, anon_sym_async, @@ -7889,166 +8088,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_EQ_GT, anon_sym_DASH_GT, - [7109] = 6, + [7334] = 11, ACTIONS(3), 1, sym__comment, - ACTIONS(175), 1, - anon_sym_COLON, - STATE(169), 1, - sym_math_operator, - STATE(170), 1, - sym_logic_operator, - ACTIONS(119), 8, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_fn, - ACTIONS(117), 17, - anon_sym_LBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - 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, - [7151] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(131), 1, - anon_sym_DASH, - ACTIONS(175), 1, - anon_sym_COLON, - ACTIONS(181), 1, - anon_sym_DASH_GT, - ACTIONS(323), 1, - anon_sym_RPAREN, - STATE(169), 1, - sym_math_operator, - STATE(170), 1, - sym_logic_operator, - ACTIONS(137), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(133), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(127), 5, - anon_sym_LBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - ACTIONS(129), 5, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_fn, - ACTIONS(135), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [7205] = 6, - ACTIONS(3), 1, - sym__comment, - ACTIONS(325), 1, - anon_sym_COLON, - STATE(177), 1, - sym_logic_operator, - STATE(178), 1, - sym_math_operator, - ACTIONS(119), 7, - anon_sym_async, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(117), 18, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [7247] = 6, - ACTIONS(3), 1, - sym__comment, - ACTIONS(327), 1, - anon_sym_DOT_DOT, - STATE(177), 1, - sym_logic_operator, - STATE(178), 1, - sym_math_operator, - ACTIONS(105), 7, - anon_sym_async, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(103), 18, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [7289] = 11, - ACTIONS(3), 1, - sym__comment, - ACTIONS(325), 1, + ACTIONS(319), 1, anon_sym_COLON, ACTIONS(329), 1, anon_sym_DASH_GT, - STATE(177), 1, - sym_logic_operator, STATE(178), 1, + sym_logic_operator, + STATE(179), 1, sym_math_operator, ACTIONS(131), 2, anon_sym_PLUS, @@ -8080,82 +8129,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_EQ_GT, - [7341] = 5, + [7386] = 5, ACTIONS(3), 1, sym__comment, - STATE(177), 1, - sym_logic_operator, - STATE(178), 1, + STATE(203), 1, sym_math_operator, - ACTIONS(105), 7, - anon_sym_async, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(103), 19, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [7381] = 6, - ACTIONS(3), 1, - sym__comment, - ACTIONS(331), 1, - anon_sym_COLON, - STATE(201), 1, - sym_math_operator, - STATE(202), 1, - sym_logic_operator, - ACTIONS(119), 7, - anon_sym_async, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(117), 17, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [7422] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(201), 1, - sym_math_operator, - STATE(202), 1, + STATE(204), 1, sym_logic_operator, ACTIONS(115), 7, anon_sym_async, @@ -8184,16 +8163,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_EQ_GT, anon_sym_DASH_GT, - [7461] = 11, + [7425] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(331), 1, + anon_sym_COLON, + STATE(203), 1, + sym_math_operator, + STATE(204), 1, + sym_logic_operator, + ACTIONS(119), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(117), 17, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [7466] = 11, ACTIONS(3), 1, sym__comment, ACTIONS(329), 1, anon_sym_DASH_GT, ACTIONS(331), 1, anon_sym_COLON, - STATE(201), 1, + STATE(203), 1, sym_math_operator, - STATE(202), 1, + STATE(204), 1, sym_logic_operator, ACTIONS(131), 2, anon_sym_PLUS, @@ -8224,352 +8238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_EQ_GT, - [7512] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(161), 7, - anon_sym_async, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(159), 19, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [7546] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(221), 7, - anon_sym_async, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(219), 19, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [7580] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(247), 7, - anon_sym_async, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(245), 19, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [7614] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(271), 7, - anon_sym_async, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(269), 19, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [7648] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(337), 1, - anon_sym_elseif, - ACTIONS(339), 1, - anon_sym_else, - STATE(214), 1, - sym_else, - STATE(136), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(333), 9, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_asyncfor, - ACTIONS(335), 12, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_use, - anon_sym_fn, - [7690] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(267), 7, - anon_sym_async, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(265), 19, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [7724] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(279), 7, - anon_sym_async, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(277), 19, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [7758] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(275), 7, - anon_sym_async, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(273), 19, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [7792] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(263), 7, - anon_sym_async, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(261), 19, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [7826] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(257), 7, - anon_sym_async, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(255), 19, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [7860] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(251), 7, - anon_sym_async, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(249), 19, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [7894] = 3, + [7517] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(151), 7, @@ -8600,104 +8269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_EQ_GT, anon_sym_DASH_GT, - [7928] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(285), 7, - anon_sym_async, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(283), 19, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [7962] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(337), 1, - anon_sym_elseif, - ACTIONS(339), 1, - anon_sym_else, - STATE(210), 1, - sym_else, - STATE(122), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(341), 9, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_asyncfor, - ACTIONS(343), 12, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_use, - anon_sym_fn, - [8004] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(217), 7, - anon_sym_async, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(215), 19, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [8038] = 3, + [7551] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(289), 7, @@ -8728,7 +8300,449 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_EQ_GT, anon_sym_DASH_GT, - [8072] = 3, + [7585] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(257), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(255), 19, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [7619] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(267), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(265), 19, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [7653] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(279), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(277), 19, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [7687] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(275), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(273), 19, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [7721] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(251), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(249), 19, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [7755] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(221), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(219), 19, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [7789] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(271), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(269), 19, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [7823] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(285), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(283), 19, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [7857] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(217), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(215), 19, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [7891] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(337), 1, + anon_sym_elseif, + ACTIONS(339), 1, + anon_sym_else, + STATE(220), 1, + sym_else, + STATE(136), 2, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(333), 9, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_asyncfor, + ACTIONS(335), 12, + anon_sym_async, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_use, + anon_sym_fn, + [7933] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(247), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(245), 19, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [7967] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(263), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(261), 19, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [8001] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(337), 1, + anon_sym_elseif, + ACTIONS(339), 1, + anon_sym_else, + STATE(209), 1, + sym_else, + STATE(129), 2, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(341), 9, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_asyncfor, + ACTIONS(343), 12, + anon_sym_async, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_use, + anon_sym_fn, + [8043] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(161), 7, + anon_sym_async, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(159), 19, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [8077] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(207), 7, @@ -8759,7 +8773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_EQ_GT, anon_sym_DASH_GT, - [8106] = 3, + [8111] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(225), 7, @@ -8790,7 +8804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_EQ_GT, anon_sym_DASH_GT, - [8140] = 5, + [8145] = 5, ACTIONS(3), 1, sym__comment, ACTIONS(349), 1, @@ -8822,7 +8836,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_use, anon_sym_fn, - [8177] = 8, + [8182] = 15, + ACTIONS(3), 1, + sym__comment, + ACTIONS(352), 1, + sym_identifier, + ACTIONS(355), 1, + anon_sym_LBRACE, + ACTIONS(358), 1, + anon_sym_RBRACE, + ACTIONS(360), 1, + sym_integer, + ACTIONS(369), 1, + anon_sym_LBRACK, + ACTIONS(372), 1, + anon_sym_LPAREN, + ACTIONS(375), 1, + anon_sym_STAR, + ACTIONS(378), 1, + anon_sym_fn, + STATE(137), 1, + aux_sym_match_repeat1, + STATE(236), 1, + sym_expression, + ACTIONS(363), 2, + sym_float, + sym_string, + ACTIONS(366), 2, + anon_sym_true, + anon_sym_false, + STATE(134), 4, + sym_boolean, + sym_list, + sym_map, + sym_function, + STATE(118), 6, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [8238] = 8, ACTIONS(3), 1, sym__comment, ACTIONS(153), 1, @@ -8831,7 +8886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, STATE(66), 1, sym_assignment_operator, - STATE(274), 1, + STATE(277), 1, sym_type_definition, ACTIONS(157), 2, anon_sym_PLUS_EQ, @@ -8856,109 +8911,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_DASH_GT, - [8219] = 14, + [8280] = 15, ACTIONS(3), 1, sym__comment, - ACTIONS(163), 1, - sym_identifier, - ACTIONS(165), 1, - anon_sym_LBRACE, - ACTIONS(167), 1, + ACTIONS(231), 1, sym_integer, - ACTIONS(173), 1, + ACTIONS(237), 1, anon_sym_LBRACK, - ACTIONS(177), 1, + ACTIONS(239), 1, anon_sym_LPAREN, - ACTIONS(183), 1, + ACTIONS(243), 1, anon_sym_fn, - ACTIONS(352), 1, - anon_sym_RPAREN, - STATE(103), 1, - sym_expression, - STATE(139), 1, - aux_sym__expression_list, - ACTIONS(169), 2, - sym_float, - sym_string, - ACTIONS(171), 2, - anon_sym_true, - anon_sym_false, - STATE(98), 4, - sym_boolean, - sym_list, - sym_map, - sym_function, - STATE(96), 6, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [8272] = 14, - ACTIONS(3), 1, - sym__comment, - ACTIONS(354), 1, - sym_identifier, - ACTIONS(357), 1, - anon_sym_LBRACE, - ACTIONS(360), 1, - sym_integer, - ACTIONS(369), 1, - anon_sym_LBRACK, - ACTIONS(372), 1, - anon_sym_LPAREN, - ACTIONS(375), 1, - anon_sym_RPAREN, - ACTIONS(377), 1, - anon_sym_fn, - STATE(103), 1, - sym_expression, - STATE(139), 1, - aux_sym__expression_list, - ACTIONS(363), 2, - sym_float, - sym_string, - ACTIONS(366), 2, - anon_sym_true, - anon_sym_false, - STATE(98), 4, - sym_boolean, - sym_list, - sym_map, - sym_function, - STATE(96), 6, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [8325] = 14, - ACTIONS(3), 1, - sym__comment, - ACTIONS(380), 1, + ACTIONS(381), 1, sym_identifier, ACTIONS(383), 1, anon_sym_LBRACE, - ACTIONS(386), 1, + ACTIONS(385), 1, anon_sym_RBRACE, - ACTIONS(388), 1, - sym_integer, - ACTIONS(397), 1, - anon_sym_LBRACK, - ACTIONS(400), 1, - anon_sym_LPAREN, - ACTIONS(403), 1, - anon_sym_fn, - STATE(140), 1, + ACTIONS(387), 1, + anon_sym_STAR, + STATE(137), 1, aux_sym_match_repeat1, - STATE(234), 1, + STATE(236), 1, sym_expression, - ACTIONS(391), 2, + ACTIONS(233), 2, sym_float, sym_string, - ACTIONS(394), 2, + ACTIONS(235), 2, anon_sym_true, anon_sym_false, STATE(134), 4, @@ -8966,56 +8945,58 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym_map, sym_function, - STATE(129), 6, + STATE(118), 6, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, - [8378] = 14, + [8336] = 15, ACTIONS(3), 1, sym__comment, - ACTIONS(163), 1, - sym_identifier, - ACTIONS(165), 1, - anon_sym_LBRACE, - ACTIONS(167), 1, + ACTIONS(231), 1, sym_integer, - ACTIONS(173), 1, + ACTIONS(237), 1, anon_sym_LBRACK, - ACTIONS(177), 1, + ACTIONS(239), 1, anon_sym_LPAREN, - ACTIONS(183), 1, + ACTIONS(243), 1, anon_sym_fn, - ACTIONS(406), 1, - anon_sym_RBRACK, - STATE(102), 1, + ACTIONS(381), 1, + sym_identifier, + ACTIONS(383), 1, + anon_sym_LBRACE, + ACTIONS(387), 1, + anon_sym_STAR, + ACTIONS(389), 1, + anon_sym_RBRACE, + STATE(137), 1, + aux_sym_match_repeat1, + STATE(236), 1, sym_expression, - STATE(155), 1, - aux_sym_list_repeat1, - ACTIONS(169), 2, + ACTIONS(233), 2, sym_float, sym_string, - ACTIONS(171), 2, + ACTIONS(235), 2, anon_sym_true, anon_sym_false, - STATE(98), 4, + STATE(134), 4, sym_boolean, sym_list, sym_map, sym_function, - STATE(96), 6, + STATE(118), 6, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, - [8431] = 3, + [8392] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(408), 10, + ACTIONS(265), 10, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -9026,7 +9007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_elseif, anon_sym_asyncfor, - ACTIONS(410), 13, + ACTIONS(267), 13, anon_sym_async, sym_identifier, sym_integer, @@ -9040,7 +9021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_use, anon_sym_fn, - [8462] = 14, + [8423] = 14, ACTIONS(3), 1, sym__comment, ACTIONS(163), 1, @@ -9055,50 +9036,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(183), 1, anon_sym_fn, - ACTIONS(412), 1, - anon_sym_RBRACK, - STATE(102), 1, - sym_expression, - STATE(156), 1, - aux_sym_list_repeat1, - ACTIONS(169), 2, - sym_float, - sym_string, - ACTIONS(171), 2, - anon_sym_true, - anon_sym_false, - STATE(98), 4, - sym_boolean, - sym_list, - sym_map, - sym_function, - STATE(96), 6, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [8515] = 14, - ACTIONS(3), 1, - sym__comment, - ACTIONS(163), 1, - sym_identifier, - ACTIONS(165), 1, - anon_sym_LBRACE, - ACTIONS(167), 1, - sym_integer, - ACTIONS(173), 1, - anon_sym_LBRACK, - ACTIONS(177), 1, - anon_sym_LPAREN, - ACTIONS(183), 1, - anon_sym_fn, - ACTIONS(414), 1, + ACTIONS(391), 1, anon_sym_RPAREN, - STATE(103), 1, + STATE(105), 1, sym_expression, - STATE(139), 1, + STATE(154), 1, aux_sym__expression_list, ACTIONS(169), 2, sym_float, @@ -9111,14 +9053,159 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym_map, sym_function, - STATE(96), 6, + STATE(86), 6, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, - [8568] = 6, + [8476] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(393), 10, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_elseif, + anon_sym_asyncfor, + ACTIONS(395), 13, + anon_sym_async, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_use, + anon_sym_fn, + [8507] = 14, + ACTIONS(3), 1, + sym__comment, + ACTIONS(163), 1, + sym_identifier, + ACTIONS(165), 1, + anon_sym_LBRACE, + ACTIONS(167), 1, + sym_integer, + ACTIONS(173), 1, + anon_sym_LBRACK, + ACTIONS(177), 1, + anon_sym_LPAREN, + ACTIONS(183), 1, + anon_sym_fn, + ACTIONS(397), 1, + anon_sym_RPAREN, + STATE(105), 1, + sym_expression, + STATE(154), 1, + aux_sym__expression_list, + ACTIONS(169), 2, + sym_float, + sym_string, + ACTIONS(171), 2, + anon_sym_true, + anon_sym_false, + STATE(98), 4, + sym_boolean, + sym_list, + sym_map, + sym_function, + STATE(86), 6, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [8560] = 14, + ACTIONS(3), 1, + sym__comment, + ACTIONS(163), 1, + sym_identifier, + ACTIONS(165), 1, + anon_sym_LBRACE, + ACTIONS(167), 1, + sym_integer, + ACTIONS(173), 1, + anon_sym_LBRACK, + ACTIONS(177), 1, + anon_sym_LPAREN, + ACTIONS(183), 1, + anon_sym_fn, + ACTIONS(399), 1, + anon_sym_RBRACK, + STATE(104), 1, + sym_expression, + STATE(158), 1, + aux_sym_list_repeat1, + ACTIONS(169), 2, + sym_float, + sym_string, + ACTIONS(171), 2, + anon_sym_true, + anon_sym_false, + STATE(98), 4, + sym_boolean, + sym_list, + sym_map, + sym_function, + STATE(86), 6, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [8613] = 14, + ACTIONS(3), 1, + sym__comment, + ACTIONS(163), 1, + sym_identifier, + ACTIONS(165), 1, + anon_sym_LBRACE, + ACTIONS(167), 1, + sym_integer, + ACTIONS(173), 1, + anon_sym_LBRACK, + ACTIONS(177), 1, + anon_sym_LPAREN, + ACTIONS(183), 1, + anon_sym_fn, + ACTIONS(401), 1, + anon_sym_RPAREN, + STATE(105), 1, + sym_expression, + STATE(154), 1, + aux_sym__expression_list, + ACTIONS(169), 2, + sym_float, + sym_string, + ACTIONS(171), 2, + anon_sym_true, + anon_sym_false, + STATE(98), 4, + sym_boolean, + sym_list, + sym_map, + sym_function, + STATE(86), 6, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [8666] = 6, ACTIONS(3), 1, sym__comment, ACTIONS(153), 1, @@ -9149,163 +9236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_DASH_GT, - [8605] = 14, - ACTIONS(3), 1, - sym__comment, - ACTIONS(163), 1, - sym_identifier, - ACTIONS(165), 1, - anon_sym_LBRACE, - ACTIONS(167), 1, - sym_integer, - ACTIONS(173), 1, - anon_sym_LBRACK, - ACTIONS(177), 1, - anon_sym_LPAREN, - ACTIONS(183), 1, - anon_sym_fn, - ACTIONS(416), 1, - anon_sym_RBRACK, - STATE(102), 1, - sym_expression, - STATE(158), 1, - aux_sym_list_repeat1, - ACTIONS(169), 2, - sym_float, - sym_string, - ACTIONS(171), 2, - anon_sym_true, - anon_sym_false, - STATE(98), 4, - sym_boolean, - sym_list, - sym_map, - sym_function, - STATE(96), 6, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [8658] = 14, - ACTIONS(3), 1, - sym__comment, - ACTIONS(163), 1, - sym_identifier, - ACTIONS(165), 1, - anon_sym_LBRACE, - ACTIONS(167), 1, - sym_integer, - ACTIONS(173), 1, - anon_sym_LBRACK, - ACTIONS(177), 1, - anon_sym_LPAREN, - ACTIONS(183), 1, - anon_sym_fn, - ACTIONS(418), 1, - anon_sym_RPAREN, - STATE(103), 1, - sym_expression, - STATE(139), 1, - aux_sym__expression_list, - ACTIONS(169), 2, - sym_float, - sym_string, - ACTIONS(171), 2, - anon_sym_true, - anon_sym_false, - STATE(98), 4, - sym_boolean, - sym_list, - sym_map, - sym_function, - STATE(96), 6, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [8711] = 14, - ACTIONS(3), 1, - sym__comment, - ACTIONS(163), 1, - sym_identifier, - ACTIONS(165), 1, - anon_sym_LBRACE, - ACTIONS(167), 1, - sym_integer, - ACTIONS(173), 1, - anon_sym_LBRACK, - ACTIONS(177), 1, - anon_sym_LPAREN, - ACTIONS(183), 1, - anon_sym_fn, - ACTIONS(420), 1, - anon_sym_RPAREN, - STATE(103), 1, - sym_expression, - STATE(139), 1, - aux_sym__expression_list, - ACTIONS(169), 2, - sym_float, - sym_string, - ACTIONS(171), 2, - anon_sym_true, - anon_sym_false, - STATE(98), 4, - sym_boolean, - sym_list, - sym_map, - sym_function, - STATE(96), 6, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [8764] = 14, - ACTIONS(3), 1, - sym__comment, - ACTIONS(163), 1, - sym_identifier, - ACTIONS(165), 1, - anon_sym_LBRACE, - ACTIONS(167), 1, - sym_integer, - ACTIONS(173), 1, - anon_sym_LBRACK, - ACTIONS(177), 1, - anon_sym_LPAREN, - ACTIONS(183), 1, - anon_sym_fn, - ACTIONS(422), 1, - anon_sym_RPAREN, - STATE(103), 1, - sym_expression, - STATE(139), 1, - aux_sym__expression_list, - ACTIONS(169), 2, - sym_float, - sym_string, - ACTIONS(171), 2, - anon_sym_true, - anon_sym_false, - STATE(98), 4, - sym_boolean, - sym_list, - sym_map, - sym_function, - STATE(96), 6, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [8817] = 14, + [8703] = 14, ACTIONS(3), 1, sym__comment, ACTIONS(231), 1, @@ -9316,15 +9247,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(243), 1, anon_sym_fn, - ACTIONS(424), 1, + ACTIONS(381), 1, sym_identifier, - ACTIONS(426), 1, + ACTIONS(383), 1, anon_sym_LBRACE, - ACTIONS(428), 1, - anon_sym_RBRACE, + ACTIONS(387), 1, + anon_sym_STAR, STATE(140), 1, aux_sym_match_repeat1, - STATE(234), 1, + STATE(236), 1, sym_expression, ACTIONS(233), 2, sym_float, @@ -9337,14 +9268,14 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym_map, sym_function, - STATE(129), 6, + STATE(118), 6, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, - [8870] = 14, + [8756] = 14, ACTIONS(3), 1, sym__comment, ACTIONS(163), 1, @@ -9359,11 +9290,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(183), 1, anon_sym_fn, - ACTIONS(430), 1, + ACTIONS(403), 1, anon_sym_RPAREN, - STATE(103), 1, + STATE(105), 1, sym_expression, - STATE(139), 1, + STATE(154), 1, aux_sym__expression_list, ACTIONS(169), 2, sym_float, @@ -9376,42 +9307,209 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym_map, sym_function, - STATE(96), 6, + STATE(86), 6, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, - [8923] = 3, + [8809] = 14, ACTIONS(3), 1, sym__comment, - ACTIONS(432), 10, - ts_builtin_sym_end, + ACTIONS(163), 1, + sym_identifier, + ACTIONS(165), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(167), 1, + sym_integer, + ACTIONS(173), 1, + anon_sym_LBRACK, + ACTIONS(177), 1, + anon_sym_LPAREN, + ACTIONS(183), 1, + anon_sym_fn, + ACTIONS(405), 1, + anon_sym_RPAREN, + STATE(105), 1, + sym_expression, + STATE(154), 1, + aux_sym__expression_list, + ACTIONS(169), 2, sym_float, sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_elseif, - anon_sym_asyncfor, - ACTIONS(434), 13, - anon_sym_async, - sym_identifier, - sym_integer, + ACTIONS(171), 2, anon_sym_true, anon_sym_false, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_use, + STATE(98), 4, + sym_boolean, + sym_list, + sym_map, + sym_function, + STATE(86), 6, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [8862] = 14, + ACTIONS(3), 1, + sym__comment, + ACTIONS(163), 1, + sym_identifier, + ACTIONS(165), 1, + anon_sym_LBRACE, + ACTIONS(167), 1, + sym_integer, + ACTIONS(173), 1, + anon_sym_LBRACK, + ACTIONS(177), 1, + anon_sym_LPAREN, + ACTIONS(183), 1, anon_sym_fn, - [8954] = 3, + ACTIONS(407), 1, + anon_sym_RBRACK, + STATE(104), 1, + sym_expression, + STATE(157), 1, + aux_sym_list_repeat1, + ACTIONS(169), 2, + sym_float, + sym_string, + ACTIONS(171), 2, + anon_sym_true, + anon_sym_false, + STATE(98), 4, + sym_boolean, + sym_list, + sym_map, + sym_function, + STATE(86), 6, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [8915] = 14, + ACTIONS(3), 1, + sym__comment, + ACTIONS(163), 1, + sym_identifier, + ACTIONS(165), 1, + anon_sym_LBRACE, + ACTIONS(167), 1, + sym_integer, + ACTIONS(173), 1, + anon_sym_LBRACK, + ACTIONS(177), 1, + anon_sym_LPAREN, + ACTIONS(183), 1, + anon_sym_fn, + ACTIONS(409), 1, + anon_sym_RPAREN, + STATE(105), 1, + sym_expression, + STATE(154), 1, + aux_sym__expression_list, + ACTIONS(169), 2, + sym_float, + sym_string, + ACTIONS(171), 2, + anon_sym_true, + anon_sym_false, + STATE(98), 4, + sym_boolean, + sym_list, + sym_map, + sym_function, + STATE(86), 6, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [8968] = 14, + ACTIONS(3), 1, + sym__comment, + ACTIONS(231), 1, + sym_integer, + ACTIONS(237), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + anon_sym_LPAREN, + ACTIONS(243), 1, + anon_sym_fn, + ACTIONS(381), 1, + sym_identifier, + ACTIONS(383), 1, + anon_sym_LBRACE, + ACTIONS(387), 1, + anon_sym_STAR, + STATE(139), 1, + aux_sym_match_repeat1, + STATE(236), 1, + sym_expression, + ACTIONS(233), 2, + sym_float, + sym_string, + ACTIONS(235), 2, + anon_sym_true, + anon_sym_false, + STATE(134), 4, + sym_boolean, + sym_list, + sym_map, + sym_function, + STATE(118), 6, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [9021] = 14, + ACTIONS(3), 1, + sym__comment, + ACTIONS(411), 1, + sym_identifier, + ACTIONS(414), 1, + anon_sym_LBRACE, + ACTIONS(417), 1, + sym_integer, + ACTIONS(426), 1, + anon_sym_LBRACK, + ACTIONS(429), 1, + anon_sym_LPAREN, + ACTIONS(432), 1, + anon_sym_RPAREN, + ACTIONS(434), 1, + anon_sym_fn, + STATE(105), 1, + sym_expression, + STATE(154), 1, + aux_sym__expression_list, + ACTIONS(420), 2, + sym_float, + sym_string, + ACTIONS(423), 2, + anon_sym_true, + anon_sym_false, + STATE(98), 4, + sym_boolean, + sym_list, + sym_map, + sym_function, + STATE(86), 6, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [9074] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(245), 10, @@ -9439,10 +9537,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_use, anon_sym_fn, - [8985] = 3, + [9105] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(265), 10, + ACTIONS(437), 10, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -9453,7 +9551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_elseif, anon_sym_asyncfor, - ACTIONS(267), 13, + ACTIONS(439), 13, anon_sym_async, sym_identifier, sym_integer, @@ -9467,276 +9565,202 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_use, anon_sym_fn, - [9016] = 14, + [9136] = 14, ACTIONS(3), 1, sym__comment, - ACTIONS(436), 1, + ACTIONS(441), 1, sym_identifier, - ACTIONS(439), 1, + ACTIONS(444), 1, anon_sym_LBRACE, - ACTIONS(442), 1, + ACTIONS(447), 1, sym_integer, - ACTIONS(451), 1, - anon_sym_LBRACK, - ACTIONS(454), 1, - anon_sym_RBRACK, ACTIONS(456), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(459), 1, - anon_sym_fn, - STATE(102), 1, - sym_expression, - STATE(155), 1, - aux_sym_list_repeat1, - ACTIONS(445), 2, - sym_float, - sym_string, - ACTIONS(448), 2, - anon_sym_true, - anon_sym_false, - STATE(98), 4, - sym_boolean, - sym_list, - sym_map, - sym_function, - STATE(96), 6, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [9069] = 14, - ACTIONS(3), 1, - sym__comment, - ACTIONS(163), 1, - sym_identifier, - ACTIONS(165), 1, - anon_sym_LBRACE, - ACTIONS(167), 1, - sym_integer, - ACTIONS(173), 1, - anon_sym_LBRACK, - ACTIONS(177), 1, - anon_sym_LPAREN, - ACTIONS(183), 1, - anon_sym_fn, - ACTIONS(462), 1, anon_sym_RBRACK, - STATE(102), 1, - sym_expression, - STATE(155), 1, - aux_sym_list_repeat1, - ACTIONS(169), 2, - sym_float, - sym_string, - ACTIONS(171), 2, - anon_sym_true, - anon_sym_false, - STATE(98), 4, - sym_boolean, - sym_list, - sym_map, - sym_function, - STATE(96), 6, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [9122] = 14, - ACTIONS(3), 1, - sym__comment, - ACTIONS(231), 1, - sym_integer, - ACTIONS(237), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, + ACTIONS(461), 1, anon_sym_LPAREN, - ACTIONS(243), 1, - anon_sym_fn, - ACTIONS(424), 1, - sym_identifier, - ACTIONS(426), 1, - anon_sym_LBRACE, ACTIONS(464), 1, - anon_sym_RBRACE, - STATE(140), 1, - aux_sym_match_repeat1, - STATE(234), 1, - sym_expression, - ACTIONS(233), 2, - sym_float, - sym_string, - ACTIONS(235), 2, - anon_sym_true, - anon_sym_false, - STATE(134), 4, - sym_boolean, - sym_list, - sym_map, - sym_function, - STATE(129), 6, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [9175] = 14, - ACTIONS(3), 1, - sym__comment, - ACTIONS(163), 1, - sym_identifier, - ACTIONS(165), 1, - anon_sym_LBRACE, - ACTIONS(167), 1, - sym_integer, - ACTIONS(173), 1, - anon_sym_LBRACK, - ACTIONS(177), 1, - anon_sym_LPAREN, - ACTIONS(183), 1, anon_sym_fn, - ACTIONS(466), 1, - anon_sym_RBRACK, - STATE(102), 1, + STATE(104), 1, sym_expression, - STATE(155), 1, - aux_sym_list_repeat1, - ACTIONS(169), 2, - sym_float, - sym_string, - ACTIONS(171), 2, - anon_sym_true, - anon_sym_false, - STATE(98), 4, - sym_boolean, - sym_list, - sym_map, - sym_function, - STATE(96), 6, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [9228] = 14, - ACTIONS(3), 1, - sym__comment, - ACTIONS(163), 1, - sym_identifier, - ACTIONS(165), 1, - anon_sym_LBRACE, - ACTIONS(167), 1, - sym_integer, - ACTIONS(173), 1, - anon_sym_LBRACK, - ACTIONS(177), 1, - anon_sym_LPAREN, - ACTIONS(183), 1, - anon_sym_fn, - ACTIONS(468), 1, - anon_sym_RBRACK, - STATE(102), 1, - sym_expression, - STATE(141), 1, - aux_sym_list_repeat1, - ACTIONS(169), 2, - sym_float, - sym_string, - ACTIONS(171), 2, - anon_sym_true, - anon_sym_false, - STATE(98), 4, - sym_boolean, - sym_list, - sym_map, - sym_function, - STATE(96), 6, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [9281] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(231), 1, - sym_integer, - ACTIONS(237), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - anon_sym_LPAREN, - ACTIONS(243), 1, - anon_sym_fn, - ACTIONS(424), 1, - sym_identifier, - ACTIONS(426), 1, - anon_sym_LBRACE, STATE(157), 1, - aux_sym_match_repeat1, - STATE(234), 1, - sym_expression, - ACTIONS(233), 2, + aux_sym_list_repeat1, + ACTIONS(450), 2, sym_float, sym_string, - ACTIONS(235), 2, + ACTIONS(453), 2, anon_sym_true, anon_sym_false, - STATE(134), 4, + STATE(98), 4, sym_boolean, sym_list, sym_map, sym_function, - STATE(129), 6, + STATE(86), 6, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, - [9331] = 13, + [9189] = 14, ACTIONS(3), 1, sym__comment, - ACTIONS(231), 1, - sym_integer, - ACTIONS(237), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - anon_sym_LPAREN, - ACTIONS(243), 1, - anon_sym_fn, - ACTIONS(424), 1, + ACTIONS(163), 1, sym_identifier, - ACTIONS(426), 1, + ACTIONS(165), 1, anon_sym_LBRACE, - STATE(150), 1, - aux_sym_match_repeat1, - STATE(234), 1, + ACTIONS(167), 1, + sym_integer, + ACTIONS(173), 1, + anon_sym_LBRACK, + ACTIONS(177), 1, + anon_sym_LPAREN, + ACTIONS(183), 1, + anon_sym_fn, + ACTIONS(467), 1, + anon_sym_RBRACK, + STATE(104), 1, sym_expression, - ACTIONS(233), 2, + STATE(157), 1, + aux_sym_list_repeat1, + ACTIONS(169), 2, sym_float, sym_string, - ACTIONS(235), 2, + ACTIONS(171), 2, anon_sym_true, anon_sym_false, - STATE(134), 4, + STATE(98), 4, sym_boolean, sym_list, sym_map, sym_function, - STATE(129), 6, + STATE(86), 6, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, - [9381] = 12, + [9242] = 14, + ACTIONS(3), 1, + sym__comment, + ACTIONS(163), 1, + sym_identifier, + ACTIONS(165), 1, + anon_sym_LBRACE, + ACTIONS(167), 1, + sym_integer, + ACTIONS(173), 1, + anon_sym_LBRACK, + ACTIONS(177), 1, + anon_sym_LPAREN, + ACTIONS(183), 1, + anon_sym_fn, + ACTIONS(469), 1, + anon_sym_RBRACK, + STATE(104), 1, + sym_expression, + STATE(157), 1, + aux_sym_list_repeat1, + ACTIONS(169), 2, + sym_float, + sym_string, + ACTIONS(171), 2, + anon_sym_true, + anon_sym_false, + STATE(98), 4, + sym_boolean, + sym_list, + sym_map, + sym_function, + STATE(86), 6, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [9295] = 14, + ACTIONS(3), 1, + sym__comment, + ACTIONS(163), 1, + sym_identifier, + ACTIONS(165), 1, + anon_sym_LBRACE, + ACTIONS(167), 1, + sym_integer, + ACTIONS(173), 1, + anon_sym_LBRACK, + ACTIONS(177), 1, + anon_sym_LPAREN, + ACTIONS(183), 1, + anon_sym_fn, + ACTIONS(471), 1, + anon_sym_RBRACK, + STATE(104), 1, + sym_expression, + STATE(151), 1, + aux_sym_list_repeat1, + ACTIONS(169), 2, + sym_float, + sym_string, + ACTIONS(171), 2, + anon_sym_true, + anon_sym_false, + STATE(98), 4, + sym_boolean, + sym_list, + sym_map, + sym_function, + STATE(86), 6, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [9348] = 14, + ACTIONS(3), 1, + sym__comment, + ACTIONS(163), 1, + sym_identifier, + ACTIONS(165), 1, + anon_sym_LBRACE, + ACTIONS(167), 1, + sym_integer, + ACTIONS(173), 1, + anon_sym_LBRACK, + ACTIONS(177), 1, + anon_sym_LPAREN, + ACTIONS(183), 1, + anon_sym_fn, + ACTIONS(473), 1, + anon_sym_RBRACK, + STATE(104), 1, + sym_expression, + STATE(159), 1, + aux_sym_list_repeat1, + ACTIONS(169), 2, + sym_float, + sym_string, + ACTIONS(171), 2, + anon_sym_true, + anon_sym_false, + STATE(98), 4, + sym_boolean, + sym_list, + sym_map, + sym_function, + STATE(86), 6, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [9401] = 12, ACTIONS(3), 1, sym__comment, ACTIONS(231), 1, @@ -9747,9 +9771,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(243), 1, anon_sym_fn, - ACTIONS(424), 1, + ACTIONS(381), 1, sym_identifier, - ACTIONS(426), 1, + ACTIONS(383), 1, anon_sym_LBRACE, STATE(224), 1, sym_expression, @@ -9764,47 +9788,14 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym_map, sym_function, - STATE(129), 6, + STATE(118), 6, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, - [9428] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(131), 1, - anon_sym_DASH, - ACTIONS(329), 1, - anon_sym_DASH_GT, - ACTIONS(331), 1, - anon_sym_COLON, - STATE(201), 1, - sym_math_operator, - STATE(202), 1, - sym_logic_operator, - ACTIONS(137), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(133), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(295), 4, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_identifier, - ACTIONS(135), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [9471] = 12, + [9448] = 12, ACTIONS(3), 1, sym__comment, ACTIONS(231), 1, @@ -9815,11 +9806,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(243), 1, anon_sym_fn, - ACTIONS(424), 1, + ACTIONS(381), 1, sym_identifier, - ACTIONS(426), 1, + ACTIONS(383), 1, anon_sym_LBRACE, - STATE(231), 1, + STATE(225), 1, sym_expression, ACTIONS(233), 2, sym_float, @@ -9832,47 +9823,75 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym_map, sym_function, - STATE(129), 6, + STATE(118), 6, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, - [9518] = 10, + [9495] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(131), 1, - anon_sym_DASH, - ACTIONS(329), 1, - anon_sym_DASH_GT, - ACTIONS(331), 1, - anon_sym_COLON, - STATE(201), 1, - sym_math_operator, - STATE(202), 1, - sym_logic_operator, - ACTIONS(137), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(133), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(291), 4, + ACTIONS(295), 9, + ts_builtin_sym_end, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_asyncfor, + ACTIONS(297), 12, + anon_sym_async, sym_identifier, - ACTIONS(135), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [9561] = 12, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_use, + anon_sym_fn, + [9524] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(231), 1, + sym_integer, + ACTIONS(237), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + anon_sym_LPAREN, + ACTIONS(243), 1, + anon_sym_fn, + ACTIONS(381), 1, + sym_identifier, + ACTIONS(383), 1, + anon_sym_LBRACE, + STATE(234), 1, + sym_expression, + ACTIONS(233), 2, + sym_float, + sym_string, + ACTIONS(235), 2, + anon_sym_true, + anon_sym_false, + STATE(134), 4, + sym_boolean, + sym_list, + sym_map, + sym_function, + STATE(118), 6, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [9571] = 12, ACTIONS(3), 1, sym__comment, ACTIONS(163), 1, @@ -9900,14 +9919,47 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym_map, sym_function, - STATE(96), 6, + STATE(86), 6, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, - [9608] = 12, + [9618] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(131), 1, + anon_sym_DASH, + ACTIONS(329), 1, + anon_sym_DASH_GT, + ACTIONS(331), 1, + anon_sym_COLON, + STATE(203), 1, + sym_math_operator, + STATE(204), 1, + sym_logic_operator, + ACTIONS(137), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(133), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(291), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + ACTIONS(135), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [9661] = 12, ACTIONS(3), 1, sym__comment, ACTIONS(231), 1, @@ -9918,9 +9970,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(243), 1, anon_sym_fn, - ACTIONS(424), 1, + ACTIONS(381), 1, sym_identifier, - ACTIONS(426), 1, + ACTIONS(383), 1, anon_sym_LBRACE, STATE(226), 1, sym_expression, @@ -9935,14 +9987,49 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym_map, sym_function, - STATE(129), 6, + STATE(118), 6, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, - [9655] = 12, + [9708] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(231), 1, + sym_integer, + ACTIONS(237), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + anon_sym_LPAREN, + ACTIONS(243), 1, + anon_sym_fn, + ACTIONS(381), 1, + sym_identifier, + ACTIONS(383), 1, + anon_sym_LBRACE, + STATE(233), 1, + sym_expression, + ACTIONS(233), 2, + sym_float, + sym_string, + ACTIONS(235), 2, + anon_sym_true, + anon_sym_false, + STATE(134), 4, + sym_boolean, + sym_list, + sym_map, + sym_function, + STATE(118), 6, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [9755] = 12, ACTIONS(3), 1, sym__comment, ACTIONS(163), 1, @@ -9970,14 +10057,14 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym_map, sym_function, - STATE(96), 6, + STATE(86), 6, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, - [9702] = 12, + [9802] = 12, ACTIONS(3), 1, sym__comment, ACTIONS(163), 1, @@ -10005,14 +10092,14 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym_map, sym_function, - STATE(96), 6, + STATE(86), 6, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, - [9749] = 12, + [9849] = 12, ACTIONS(3), 1, sym__comment, ACTIONS(163), 1, @@ -10040,49 +10127,14 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym_map, sym_function, - STATE(96), 6, + STATE(86), 6, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, - [9796] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(231), 1, - sym_integer, - ACTIONS(237), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - anon_sym_LPAREN, - ACTIONS(243), 1, - anon_sym_fn, - ACTIONS(424), 1, - sym_identifier, - ACTIONS(426), 1, - anon_sym_LBRACE, - STATE(232), 1, - sym_expression, - ACTIONS(233), 2, - sym_float, - sym_string, - ACTIONS(235), 2, - anon_sym_true, - anon_sym_false, - STATE(134), 4, - sym_boolean, - sym_list, - sym_map, - sym_function, - STATE(129), 6, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [9843] = 12, + [9896] = 12, ACTIONS(3), 1, sym__comment, ACTIONS(163), 1, @@ -10110,14 +10162,14 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym_map, sym_function, - STATE(96), 6, + STATE(86), 6, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, - [9890] = 12, + [9943] = 12, ACTIONS(3), 1, sym__comment, ACTIONS(231), 1, @@ -10128,11 +10180,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(243), 1, anon_sym_fn, - ACTIONS(424), 1, + ACTIONS(381), 1, sym_identifier, - ACTIONS(426), 1, + ACTIONS(383), 1, anon_sym_LBRACE, - STATE(223), 1, + STATE(229), 1, sym_expression, ACTIONS(233), 2, sym_float, @@ -10145,14 +10197,14 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym_map, sym_function, - STATE(129), 6, + STATE(118), 6, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, - [9937] = 12, + [9990] = 12, ACTIONS(3), 1, sym__comment, ACTIONS(163), 1, @@ -10167,7 +10219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(183), 1, anon_sym_fn, - STATE(107), 1, + STATE(112), 1, sym_expression, ACTIONS(169), 2, sym_float, @@ -10180,14 +10232,14 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym_map, sym_function, - STATE(96), 6, + STATE(86), 6, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, - [9984] = 12, + [10037] = 12, ACTIONS(3), 1, sym__comment, ACTIONS(163), 1, @@ -10215,14 +10267,14 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym_map, sym_function, - STATE(96), 6, + STATE(86), 6, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, - [10031] = 12, + [10084] = 12, ACTIONS(3), 1, sym__comment, ACTIONS(11), 1, @@ -10233,9 +10285,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(35), 1, anon_sym_fn, - ACTIONS(470), 1, + ACTIONS(475), 1, sym_identifier, - ACTIONS(472), 1, + ACTIONS(477), 1, anon_sym_LBRACE, STATE(72), 1, sym_expression, @@ -10257,7 +10309,7 @@ static const uint16_t ts_small_parse_table[] = { sym_logic, sym_function_call, sym_yield, - [10078] = 12, + [10131] = 12, ACTIONS(3), 1, sym__comment, ACTIONS(231), 1, @@ -10268,11 +10320,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(243), 1, anon_sym_fn, - ACTIONS(424), 1, + ACTIONS(381), 1, sym_identifier, - ACTIONS(426), 1, + ACTIONS(383), 1, anon_sym_LBRACE, - STATE(113), 1, + STATE(114), 1, sym_expression, ACTIONS(233), 2, sym_float, @@ -10285,14 +10337,14 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym_map, sym_function, - STATE(129), 6, + STATE(118), 6, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, - [10125] = 12, + [10178] = 12, ACTIONS(3), 1, sym__comment, ACTIONS(231), 1, @@ -10303,11 +10355,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(243), 1, anon_sym_fn, - ACTIONS(424), 1, + ACTIONS(381), 1, sym_identifier, - ACTIONS(426), 1, + ACTIONS(383), 1, anon_sym_LBRACE, - STATE(111), 1, + STATE(106), 1, sym_expression, ACTIONS(233), 2, sym_float, @@ -10320,14 +10372,14 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym_map, sym_function, - STATE(129), 6, + STATE(118), 6, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, - [10172] = 12, + [10225] = 12, ACTIONS(3), 1, sym__comment, ACTIONS(163), 1, @@ -10355,14 +10407,14 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym_map, sym_function, - STATE(96), 6, + STATE(86), 6, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, - [10219] = 12, + [10272] = 12, ACTIONS(3), 1, sym__comment, ACTIONS(163), 1, @@ -10390,49 +10442,14 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym_map, sym_function, - STATE(96), 6, + STATE(86), 6, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, - [10266] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(163), 1, - sym_identifier, - ACTIONS(165), 1, - anon_sym_LBRACE, - ACTIONS(167), 1, - sym_integer, - ACTIONS(173), 1, - anon_sym_LBRACK, - ACTIONS(177), 1, - anon_sym_LPAREN, - ACTIONS(183), 1, - anon_sym_fn, - STATE(82), 1, - sym_expression, - ACTIONS(169), 2, - sym_float, - sym_string, - ACTIONS(171), 2, - anon_sym_true, - anon_sym_false, - STATE(98), 4, - sym_boolean, - sym_list, - sym_map, - sym_function, - STATE(96), 6, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [10313] = 12, + [10319] = 12, ACTIONS(3), 1, sym__comment, ACTIONS(163), 1, @@ -10460,14 +10477,49 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym_map, sym_function, - STATE(96), 6, + STATE(86), 6, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, - [10360] = 12, + [10366] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(163), 1, + sym_identifier, + ACTIONS(165), 1, + anon_sym_LBRACE, + ACTIONS(167), 1, + sym_integer, + ACTIONS(173), 1, + anon_sym_LBRACK, + ACTIONS(177), 1, + anon_sym_LPAREN, + ACTIONS(183), 1, + anon_sym_fn, + STATE(82), 1, + sym_expression, + ACTIONS(169), 2, + sym_float, + sym_string, + ACTIONS(171), 2, + anon_sym_true, + anon_sym_false, + STATE(98), 4, + sym_boolean, + sym_list, + sym_map, + sym_function, + STATE(86), 6, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [10413] = 12, ACTIONS(3), 1, sym__comment, ACTIONS(231), 1, @@ -10478,11 +10530,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(243), 1, anon_sym_fn, - ACTIONS(424), 1, + ACTIONS(381), 1, sym_identifier, - ACTIONS(426), 1, + ACTIONS(383), 1, anon_sym_LBRACE, - STATE(227), 1, + STATE(222), 1, sym_expression, ACTIONS(233), 2, sym_float, @@ -10495,14 +10547,14 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym_map, sym_function, - STATE(129), 6, + STATE(118), 6, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, - [10407] = 4, + [10460] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(299), 1, @@ -10529,888 +10581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_use, anon_sym_fn, - [10438] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(163), 1, - sym_identifier, - ACTIONS(165), 1, - anon_sym_LBRACE, - ACTIONS(167), 1, - sym_integer, - ACTIONS(173), 1, - anon_sym_LBRACK, - ACTIONS(177), 1, - anon_sym_LPAREN, - ACTIONS(183), 1, - anon_sym_fn, - STATE(106), 1, - sym_expression, - ACTIONS(169), 2, - sym_float, - sym_string, - ACTIONS(171), 2, - anon_sym_true, - anon_sym_false, - STATE(98), 4, - sym_boolean, - sym_list, - sym_map, - sym_function, - STATE(96), 6, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [10485] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(295), 9, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_asyncfor, - ACTIONS(297), 12, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_use, - anon_sym_fn, - [10514] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(231), 1, - sym_integer, - ACTIONS(237), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - anon_sym_LPAREN, - ACTIONS(243), 1, - anon_sym_fn, - ACTIONS(424), 1, - sym_identifier, - ACTIONS(426), 1, - anon_sym_LBRACE, - STATE(165), 1, - sym_expression, - ACTIONS(233), 2, - sym_float, - sym_string, - ACTIONS(235), 2, - anon_sym_true, - anon_sym_false, - STATE(134), 4, - sym_boolean, - sym_list, - sym_map, - sym_function, - STATE(129), 6, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [10561] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(231), 1, - sym_integer, - ACTIONS(237), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - anon_sym_LPAREN, - ACTIONS(243), 1, - anon_sym_fn, - ACTIONS(424), 1, - sym_identifier, - ACTIONS(426), 1, - anon_sym_LBRACE, - STATE(228), 1, - sym_expression, - ACTIONS(233), 2, - sym_float, - sym_string, - ACTIONS(235), 2, - anon_sym_true, - anon_sym_false, - STATE(134), 4, - sym_boolean, - sym_list, - sym_map, - sym_function, - STATE(129), 6, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [10608] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(35), 1, - anon_sym_fn, - ACTIONS(470), 1, - sym_identifier, - ACTIONS(472), 1, - anon_sym_LBRACE, - STATE(18), 1, - sym_expression, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(40), 4, - sym_boolean, - sym_list, - sym_map, - sym_function, - STATE(62), 6, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [10655] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(35), 1, - anon_sym_fn, - ACTIONS(470), 1, - sym_identifier, - ACTIONS(472), 1, - anon_sym_LBRACE, - STATE(15), 1, - sym_expression, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(40), 4, - sym_boolean, - sym_list, - sym_map, - sym_function, - STATE(62), 6, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [10702] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(163), 1, - sym_identifier, - ACTIONS(165), 1, - anon_sym_LBRACE, - ACTIONS(167), 1, - sym_integer, - ACTIONS(173), 1, - anon_sym_LBRACK, - ACTIONS(177), 1, - anon_sym_LPAREN, - ACTIONS(183), 1, - anon_sym_fn, - STATE(105), 1, - sym_expression, - ACTIONS(169), 2, - sym_float, - sym_string, - ACTIONS(171), 2, - anon_sym_true, - anon_sym_false, - STATE(98), 4, - sym_boolean, - sym_list, - sym_map, - sym_function, - STATE(96), 6, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [10749] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(231), 1, - sym_integer, - ACTIONS(237), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - anon_sym_LPAREN, - ACTIONS(243), 1, - anon_sym_fn, - ACTIONS(424), 1, - sym_identifier, - ACTIONS(426), 1, - anon_sym_LBRACE, - STATE(222), 1, - sym_expression, - ACTIONS(233), 2, - sym_float, - sym_string, - ACTIONS(235), 2, - anon_sym_true, - anon_sym_false, - STATE(134), 4, - sym_boolean, - sym_list, - sym_map, - sym_function, - STATE(129), 6, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [10796] = 11, - ACTIONS(3), 1, - sym__comment, - ACTIONS(131), 1, - anon_sym_DASH, - ACTIONS(305), 1, - anon_sym_SEMI, - ACTIONS(329), 1, - anon_sym_DASH_GT, - ACTIONS(331), 1, - anon_sym_COLON, - STATE(201), 1, - sym_math_operator, - STATE(202), 1, - sym_logic_operator, - ACTIONS(137), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(295), 3, - anon_sym_RBRACE, - anon_sym_COMMA, - sym_identifier, - ACTIONS(133), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(135), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [10841] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(231), 1, - sym_integer, - ACTIONS(237), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - anon_sym_LPAREN, - ACTIONS(243), 1, - anon_sym_fn, - ACTIONS(424), 1, - sym_identifier, - ACTIONS(426), 1, - anon_sym_LBRACE, - STATE(229), 1, - sym_expression, - ACTIONS(233), 2, - sym_float, - sym_string, - ACTIONS(235), 2, - anon_sym_true, - anon_sym_false, - STATE(134), 4, - sym_boolean, - sym_list, - sym_map, - sym_function, - STATE(129), 6, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [10888] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(474), 9, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_asyncfor, - ACTIONS(476), 12, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_use, - anon_sym_fn, - [10917] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(478), 9, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_asyncfor, - ACTIONS(480), 12, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_use, - anon_sym_fn, - [10946] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(163), 1, - sym_identifier, - ACTIONS(165), 1, - anon_sym_LBRACE, - ACTIONS(167), 1, - sym_integer, - ACTIONS(173), 1, - anon_sym_LBRACK, - ACTIONS(177), 1, - anon_sym_LPAREN, - ACTIONS(183), 1, - anon_sym_fn, - STATE(67), 1, - sym_expression, - ACTIONS(169), 2, - sym_float, - sym_string, - ACTIONS(171), 2, - anon_sym_true, - anon_sym_false, - STATE(98), 4, - sym_boolean, - sym_list, - sym_map, - sym_function, - STATE(96), 6, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [10993] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(482), 9, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_asyncfor, - ACTIONS(484), 12, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_use, - anon_sym_fn, - [11022] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(486), 9, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_asyncfor, - ACTIONS(488), 12, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_use, - anon_sym_fn, - [11051] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(231), 1, - sym_integer, - ACTIONS(237), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - anon_sym_LPAREN, - ACTIONS(243), 1, - anon_sym_fn, - ACTIONS(424), 1, - sym_identifier, - ACTIONS(426), 1, - anon_sym_LBRACE, - STATE(112), 1, - sym_expression, - ACTIONS(233), 2, - sym_float, - sym_string, - ACTIONS(235), 2, - anon_sym_true, - anon_sym_false, - STATE(134), 4, - sym_boolean, - sym_list, - sym_map, - sym_function, - STATE(129), 6, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [11098] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(231), 1, - sym_integer, - ACTIONS(237), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - anon_sym_LPAREN, - ACTIONS(243), 1, - anon_sym_fn, - ACTIONS(424), 1, - sym_identifier, - ACTIONS(426), 1, - anon_sym_LBRACE, - STATE(115), 1, - sym_expression, - ACTIONS(233), 2, - sym_float, - sym_string, - ACTIONS(235), 2, - anon_sym_true, - anon_sym_false, - STATE(134), 4, - sym_boolean, - sym_list, - sym_map, - sym_function, - STATE(129), 6, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [11145] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(231), 1, - sym_integer, - ACTIONS(237), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - anon_sym_LPAREN, - ACTIONS(243), 1, - anon_sym_fn, - ACTIONS(424), 1, - sym_identifier, - ACTIONS(426), 1, - anon_sym_LBRACE, - STATE(117), 1, - sym_expression, - ACTIONS(233), 2, - sym_float, - sym_string, - ACTIONS(235), 2, - anon_sym_true, - anon_sym_false, - STATE(134), 4, - sym_boolean, - sym_list, - sym_map, - sym_function, - STATE(129), 6, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [11192] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(35), 1, - anon_sym_fn, - ACTIONS(470), 1, - sym_identifier, - ACTIONS(472), 1, - anon_sym_LBRACE, - STATE(19), 1, - sym_expression, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(40), 4, - sym_boolean, - sym_list, - sym_map, - sym_function, - STATE(62), 6, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [11239] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(35), 1, - anon_sym_fn, - ACTIONS(470), 1, - sym_identifier, - ACTIONS(472), 1, - anon_sym_LBRACE, - STATE(30), 1, - sym_expression, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(40), 4, - sym_boolean, - sym_list, - sym_map, - sym_function, - STATE(62), 6, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [11286] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(231), 1, - sym_integer, - ACTIONS(237), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - anon_sym_LPAREN, - ACTIONS(243), 1, - anon_sym_fn, - ACTIONS(424), 1, - sym_identifier, - ACTIONS(426), 1, - anon_sym_LBRACE, - STATE(114), 1, - sym_expression, - ACTIONS(233), 2, - sym_float, - sym_string, - ACTIONS(235), 2, - anon_sym_true, - anon_sym_false, - STATE(134), 4, - sym_boolean, - sym_list, - sym_map, - sym_function, - STATE(129), 6, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [11333] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(35), 1, - anon_sym_fn, - ACTIONS(470), 1, - sym_identifier, - ACTIONS(472), 1, - anon_sym_LBRACE, - STATE(22), 1, - sym_expression, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(40), 4, - sym_boolean, - sym_list, - sym_map, - sym_function, - STATE(62), 6, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [11380] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(35), 1, - anon_sym_fn, - ACTIONS(470), 1, - sym_identifier, - ACTIONS(472), 1, - anon_sym_LBRACE, - STATE(32), 1, - sym_expression, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(40), 4, - sym_boolean, - sym_list, - sym_map, - sym_function, - STATE(62), 6, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [11427] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(231), 1, - sym_integer, - ACTIONS(237), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - anon_sym_LPAREN, - ACTIONS(243), 1, - anon_sym_fn, - ACTIONS(424), 1, - sym_identifier, - ACTIONS(426), 1, - anon_sym_LBRACE, - STATE(225), 1, - sym_expression, - ACTIONS(233), 2, - sym_float, - sym_string, - ACTIONS(235), 2, - anon_sym_true, - anon_sym_false, - STATE(134), 4, - sym_boolean, - sym_list, - sym_map, - sym_function, - STATE(129), 6, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [11474] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(163), 1, - sym_identifier, - ACTIONS(165), 1, - anon_sym_LBRACE, - ACTIONS(167), 1, - sym_integer, - ACTIONS(173), 1, - anon_sym_LBRACK, - ACTIONS(177), 1, - anon_sym_LPAREN, - ACTIONS(183), 1, - anon_sym_fn, - STATE(75), 1, - sym_expression, - ACTIONS(169), 2, - sym_float, - sym_string, - ACTIONS(171), 2, - anon_sym_true, - anon_sym_false, - STATE(98), 4, - sym_boolean, - sym_list, - sym_map, - sym_function, - STATE(96), 6, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - sym_yield, - [11521] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(333), 9, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_asyncfor, - ACTIONS(335), 12, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_use, - anon_sym_fn, - [11550] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(490), 9, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_asyncfor, - ACTIONS(492), 12, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_use, - anon_sym_fn, - [11579] = 12, + [10491] = 12, ACTIONS(3), 1, sym__comment, ACTIONS(163), 1, @@ -11438,66 +10609,14 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym_map, sym_function, - STATE(96), 6, + STATE(86), 6, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, - [11626] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(494), 9, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_asyncfor, - ACTIONS(496), 12, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_use, - anon_sym_fn, - [11655] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(498), 9, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_asyncfor, - ACTIONS(500), 12, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_use, - anon_sym_fn, - [11684] = 12, + [10538] = 12, ACTIONS(3), 1, sym__comment, ACTIONS(231), 1, @@ -11508,9 +10627,532 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(243), 1, anon_sym_fn, - ACTIONS(424), 1, + ACTIONS(381), 1, sym_identifier, - ACTIONS(426), 1, + ACTIONS(383), 1, + anon_sym_LBRACE, + STATE(223), 1, + sym_expression, + ACTIONS(233), 2, + sym_float, + sym_string, + ACTIONS(235), 2, + anon_sym_true, + anon_sym_false, + STATE(134), 4, + sym_boolean, + sym_list, + sym_map, + sym_function, + STATE(118), 6, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [10585] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_fn, + ACTIONS(475), 1, + sym_identifier, + ACTIONS(477), 1, + anon_sym_LBRACE, + STATE(18), 1, + sym_expression, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(40), 4, + sym_boolean, + sym_list, + sym_map, + sym_function, + STATE(62), 6, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [10632] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_fn, + ACTIONS(475), 1, + sym_identifier, + ACTIONS(477), 1, + anon_sym_LBRACE, + STATE(15), 1, + sym_expression, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(40), 4, + sym_boolean, + sym_list, + sym_map, + sym_function, + STATE(62), 6, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [10679] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(231), 1, + sym_integer, + ACTIONS(237), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + anon_sym_LPAREN, + ACTIONS(243), 1, + anon_sym_fn, + ACTIONS(381), 1, + sym_identifier, + ACTIONS(383), 1, + anon_sym_LBRACE, + STATE(167), 1, + sym_expression, + ACTIONS(233), 2, + sym_float, + sym_string, + ACTIONS(235), 2, + anon_sym_true, + anon_sym_false, + STATE(134), 4, + sym_boolean, + sym_list, + sym_map, + sym_function, + STATE(118), 6, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [10726] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(231), 1, + sym_integer, + ACTIONS(237), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + anon_sym_LPAREN, + ACTIONS(243), 1, + anon_sym_fn, + ACTIONS(381), 1, + sym_identifier, + ACTIONS(383), 1, + anon_sym_LBRACE, + STATE(228), 1, + sym_expression, + ACTIONS(233), 2, + sym_float, + sym_string, + ACTIONS(235), 2, + anon_sym_true, + anon_sym_false, + STATE(134), 4, + sym_boolean, + sym_list, + sym_map, + sym_function, + STATE(118), 6, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [10773] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(163), 1, + sym_identifier, + ACTIONS(165), 1, + anon_sym_LBRACE, + ACTIONS(167), 1, + sym_integer, + ACTIONS(173), 1, + anon_sym_LBRACK, + ACTIONS(177), 1, + anon_sym_LPAREN, + ACTIONS(183), 1, + anon_sym_fn, + STATE(67), 1, + sym_expression, + ACTIONS(169), 2, + sym_float, + sym_string, + ACTIONS(171), 2, + anon_sym_true, + anon_sym_false, + STATE(98), 4, + sym_boolean, + sym_list, + sym_map, + sym_function, + STATE(86), 6, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [10820] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(163), 1, + sym_identifier, + ACTIONS(165), 1, + anon_sym_LBRACE, + ACTIONS(167), 1, + sym_integer, + ACTIONS(173), 1, + anon_sym_LBRACK, + ACTIONS(177), 1, + anon_sym_LPAREN, + ACTIONS(183), 1, + anon_sym_fn, + STATE(103), 1, + sym_expression, + ACTIONS(169), 2, + sym_float, + sym_string, + ACTIONS(171), 2, + anon_sym_true, + anon_sym_false, + STATE(98), 4, + sym_boolean, + sym_list, + sym_map, + sym_function, + STATE(86), 6, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [10867] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(479), 9, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_asyncfor, + ACTIONS(481), 12, + anon_sym_async, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_use, + anon_sym_fn, + [10896] = 11, + ACTIONS(3), 1, + sym__comment, + ACTIONS(131), 1, + anon_sym_DASH, + ACTIONS(305), 1, + anon_sym_SEMI, + ACTIONS(329), 1, + anon_sym_DASH_GT, + ACTIONS(331), 1, + anon_sym_COLON, + STATE(203), 1, + sym_math_operator, + STATE(204), 1, + sym_logic_operator, + ACTIONS(137), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(295), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + sym_identifier, + ACTIONS(133), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(135), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [10941] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(483), 9, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_asyncfor, + ACTIONS(485), 12, + anon_sym_async, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_use, + anon_sym_fn, + [10970] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(487), 9, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_asyncfor, + ACTIONS(489), 12, + anon_sym_async, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_use, + anon_sym_fn, + [10999] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(491), 9, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_asyncfor, + ACTIONS(493), 12, + anon_sym_async, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_use, + anon_sym_fn, + [11028] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_fn, + ACTIONS(475), 1, + sym_identifier, + ACTIONS(477), 1, + anon_sym_LBRACE, + STATE(19), 1, + sym_expression, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(40), 4, + sym_boolean, + sym_list, + sym_map, + sym_function, + STATE(62), 6, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [11075] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_fn, + ACTIONS(475), 1, + sym_identifier, + ACTIONS(477), 1, + anon_sym_LBRACE, + STATE(30), 1, + sym_expression, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(40), 4, + sym_boolean, + sym_list, + sym_map, + sym_function, + STATE(62), 6, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [11122] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(231), 1, + sym_integer, + ACTIONS(237), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + anon_sym_LPAREN, + ACTIONS(243), 1, + anon_sym_fn, + ACTIONS(381), 1, + sym_identifier, + ACTIONS(383), 1, + anon_sym_LBRACE, + STATE(107), 1, + sym_expression, + ACTIONS(233), 2, + sym_float, + sym_string, + ACTIONS(235), 2, + anon_sym_true, + anon_sym_false, + STATE(134), 4, + sym_boolean, + sym_list, + sym_map, + sym_function, + STATE(118), 6, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [11169] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(231), 1, + sym_integer, + ACTIONS(237), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + anon_sym_LPAREN, + ACTIONS(243), 1, + anon_sym_fn, + ACTIONS(381), 1, + sym_identifier, + ACTIONS(383), 1, + anon_sym_LBRACE, + STATE(111), 1, + sym_expression, + ACTIONS(233), 2, + sym_float, + sym_string, + ACTIONS(235), 2, + anon_sym_true, + anon_sym_false, + STATE(134), 4, + sym_boolean, + sym_list, + sym_map, + sym_function, + STATE(118), 6, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [11216] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(231), 1, + sym_integer, + ACTIONS(237), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + anon_sym_LPAREN, + ACTIONS(243), 1, + anon_sym_fn, + ACTIONS(381), 1, + sym_identifier, + ACTIONS(383), 1, anon_sym_LBRACE, STATE(116), 1, sym_expression, @@ -11525,14 +11167,49 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym_map, sym_function, - STATE(129), 6, + STATE(118), 6, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, - [11731] = 12, + [11263] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(231), 1, + sym_integer, + ACTIONS(237), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + anon_sym_LPAREN, + ACTIONS(243), 1, + anon_sym_fn, + ACTIONS(381), 1, + sym_identifier, + ACTIONS(383), 1, + anon_sym_LBRACE, + STATE(117), 1, + sym_expression, + ACTIONS(233), 2, + sym_float, + sym_string, + ACTIONS(235), 2, + anon_sym_true, + anon_sym_false, + STATE(134), 4, + sym_boolean, + sym_list, + sym_map, + sym_function, + STATE(118), 6, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [11310] = 12, ACTIONS(3), 1, sym__comment, ACTIONS(11), 1, @@ -11543,9 +11220,201 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(35), 1, anon_sym_fn, - ACTIONS(470), 1, + ACTIONS(475), 1, sym_identifier, - ACTIONS(472), 1, + ACTIONS(477), 1, + anon_sym_LBRACE, + STATE(32), 1, + sym_expression, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(40), 4, + sym_boolean, + sym_list, + sym_map, + sym_function, + STATE(62), 6, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [11357] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(231), 1, + sym_integer, + ACTIONS(237), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + anon_sym_LPAREN, + ACTIONS(243), 1, + anon_sym_fn, + ACTIONS(381), 1, + sym_identifier, + ACTIONS(383), 1, + anon_sym_LBRACE, + STATE(227), 1, + sym_expression, + ACTIONS(233), 2, + sym_float, + sym_string, + ACTIONS(235), 2, + anon_sym_true, + anon_sym_false, + STATE(134), 4, + sym_boolean, + sym_list, + sym_map, + sym_function, + STATE(118), 6, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [11404] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_fn, + ACTIONS(475), 1, + sym_identifier, + ACTIONS(477), 1, + anon_sym_LBRACE, + STATE(22), 1, + sym_expression, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(40), 4, + sym_boolean, + sym_list, + sym_map, + sym_function, + STATE(62), 6, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [11451] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(163), 1, + sym_identifier, + ACTIONS(165), 1, + anon_sym_LBRACE, + ACTIONS(167), 1, + sym_integer, + ACTIONS(173), 1, + anon_sym_LBRACK, + ACTIONS(177), 1, + anon_sym_LPAREN, + ACTIONS(183), 1, + anon_sym_fn, + STATE(75), 1, + sym_expression, + ACTIONS(169), 2, + sym_float, + sym_string, + ACTIONS(171), 2, + anon_sym_true, + anon_sym_false, + STATE(98), 4, + sym_boolean, + sym_list, + sym_map, + sym_function, + STATE(86), 6, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [11498] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(333), 9, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_asyncfor, + ACTIONS(335), 12, + anon_sym_async, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_use, + anon_sym_fn, + [11527] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(495), 9, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_asyncfor, + ACTIONS(497), 12, + anon_sym_async, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_use, + anon_sym_fn, + [11556] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_fn, + ACTIONS(475), 1, + sym_identifier, + ACTIONS(477), 1, anon_sym_LBRACE, STATE(10), 1, sym_expression, @@ -11567,85 +11436,7 @@ static const uint16_t ts_small_parse_table[] = { sym_logic, sym_function_call, sym_yield, - [11778] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(502), 9, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_asyncfor, - ACTIONS(504), 12, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_use, - anon_sym_fn, - [11807] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(506), 9, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_asyncfor, - ACTIONS(508), 12, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_use, - anon_sym_fn, - [11836] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(510), 9, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_asyncfor, - ACTIONS(512), 12, - anon_sym_async, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_use, - anon_sym_fn, - [11865] = 12, + [11603] = 12, ACTIONS(3), 1, sym__comment, ACTIONS(163), 1, @@ -11660,7 +11451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(183), 1, anon_sym_fn, - STATE(41), 1, + STATE(108), 1, sym_expression, ACTIONS(169), 2, sym_float, @@ -11673,14 +11464,14 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym_map, sym_function, - STATE(96), 6, + STATE(86), 6, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, - [11912] = 12, + [11650] = 12, ACTIONS(3), 1, sym__comment, ACTIONS(163), 1, @@ -11708,14 +11499,214 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym_map, sym_function, - STATE(96), 6, + STATE(86), 6, sym_value, sym_index, sym_math, sym_logic, sym_function_call, sym_yield, - [11959] = 12, + [11697] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(499), 9, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_asyncfor, + ACTIONS(501), 12, + anon_sym_async, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_use, + anon_sym_fn, + [11726] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(503), 9, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_asyncfor, + ACTIONS(505), 12, + anon_sym_async, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_use, + anon_sym_fn, + [11755] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(163), 1, + sym_identifier, + ACTIONS(165), 1, + anon_sym_LBRACE, + ACTIONS(167), 1, + sym_integer, + ACTIONS(173), 1, + anon_sym_LBRACK, + ACTIONS(177), 1, + anon_sym_LPAREN, + ACTIONS(183), 1, + anon_sym_fn, + STATE(41), 1, + sym_expression, + ACTIONS(169), 2, + sym_float, + sym_string, + ACTIONS(171), 2, + anon_sym_true, + anon_sym_false, + STATE(98), 4, + sym_boolean, + sym_list, + sym_map, + sym_function, + STATE(86), 6, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [11802] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(231), 1, + sym_integer, + ACTIONS(237), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + anon_sym_LPAREN, + ACTIONS(243), 1, + anon_sym_fn, + ACTIONS(381), 1, + sym_identifier, + ACTIONS(383), 1, + anon_sym_LBRACE, + STATE(115), 1, + sym_expression, + ACTIONS(233), 2, + sym_float, + sym_string, + ACTIONS(235), 2, + anon_sym_true, + anon_sym_false, + STATE(134), 4, + sym_boolean, + sym_list, + sym_map, + sym_function, + STATE(118), 6, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + sym_yield, + [11849] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(507), 9, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_asyncfor, + ACTIONS(509), 12, + anon_sym_async, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_use, + anon_sym_fn, + [11878] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(511), 9, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_asyncfor, + ACTIONS(513), 12, + anon_sym_async, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_use, + anon_sym_fn, + [11907] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(515), 9, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_asyncfor, + ACTIONS(517), 12, + anon_sym_async, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_use, + anon_sym_fn, + [11936] = 10, ACTIONS(3), 1, sym__comment, ACTIONS(131), 1, @@ -11724,15 +11715,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, ACTIONS(331), 1, anon_sym_COLON, - ACTIONS(514), 1, - anon_sym_async, - ACTIONS(516), 1, - anon_sym_LBRACE, - STATE(201), 1, + STATE(203), 1, sym_math_operator, - STATE(202), 1, + STATE(204), 1, sym_logic_operator, - STATE(255), 1, + ACTIONS(137), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(133), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(295), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + ACTIONS(135), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [11979] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(131), 1, + anon_sym_DASH, + ACTIONS(329), 1, + anon_sym_DASH_GT, + ACTIONS(331), 1, + anon_sym_COLON, + ACTIONS(519), 1, + anon_sym_async, + ACTIONS(521), 1, + anon_sym_LBRACE, + STATE(203), 1, + sym_math_operator, + STATE(204), 1, + sym_logic_operator, + STATE(253), 1, sym_block, ACTIONS(137), 2, anon_sym_GT, @@ -11749,7 +11773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [12005] = 12, + [12025] = 12, ACTIONS(3), 1, sym__comment, ACTIONS(131), 1, @@ -11758,183 +11782,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, ACTIONS(331), 1, anon_sym_COLON, - ACTIONS(518), 1, + ACTIONS(523), 1, anon_sym_async, - ACTIONS(520), 1, + ACTIONS(525), 1, anon_sym_LBRACE, - STATE(201), 1, + STATE(203), 1, sym_math_operator, - STATE(202), 1, - sym_logic_operator, - STATE(218), 1, - sym_block, - ACTIONS(137), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(133), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(135), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [12051] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(131), 1, - anon_sym_DASH, - ACTIONS(329), 1, - anon_sym_DASH_GT, - ACTIONS(331), 1, - anon_sym_COLON, - ACTIONS(518), 1, - anon_sym_async, - ACTIONS(520), 1, - anon_sym_LBRACE, - STATE(195), 1, - sym_block, - STATE(201), 1, - sym_math_operator, - STATE(202), 1, - sym_logic_operator, - ACTIONS(137), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(133), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(135), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [12097] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(131), 1, - anon_sym_DASH, - ACTIONS(329), 1, - anon_sym_DASH_GT, - ACTIONS(331), 1, - anon_sym_COLON, - ACTIONS(522), 1, - anon_sym_async, - ACTIONS(524), 1, - anon_sym_LBRACE, - STATE(152), 1, - sym_block, - STATE(201), 1, - sym_math_operator, - STATE(202), 1, - sym_logic_operator, - ACTIONS(137), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(133), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(135), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [12143] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(131), 1, - anon_sym_DASH, - ACTIONS(329), 1, - anon_sym_DASH_GT, - ACTIONS(331), 1, - anon_sym_COLON, - ACTIONS(522), 1, - anon_sym_async, - ACTIONS(524), 1, - anon_sym_LBRACE, - STATE(142), 1, - sym_block, - STATE(201), 1, - sym_math_operator, - STATE(202), 1, - sym_logic_operator, - ACTIONS(137), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(133), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(135), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [12189] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(131), 1, - anon_sym_DASH, - ACTIONS(329), 1, - anon_sym_DASH_GT, - ACTIONS(331), 1, - anon_sym_COLON, - ACTIONS(514), 1, - anon_sym_async, - ACTIONS(516), 1, - anon_sym_LBRACE, - STATE(201), 1, - sym_math_operator, - STATE(202), 1, - sym_logic_operator, - STATE(246), 1, - sym_block, - ACTIONS(137), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(133), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(135), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [12235] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(131), 1, - anon_sym_DASH, - ACTIONS(329), 1, - anon_sym_DASH_GT, - ACTIONS(331), 1, - anon_sym_COLON, - ACTIONS(526), 1, - anon_sym_async, - ACTIONS(528), 1, - anon_sym_LBRACE, - STATE(201), 1, - sym_math_operator, - STATE(202), 1, + STATE(204), 1, sym_logic_operator, STATE(240), 1, sym_block, @@ -11953,7 +11807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [12281] = 12, + [12071] = 12, ACTIONS(3), 1, sym__comment, ACTIONS(131), 1, @@ -11962,15 +11816,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, ACTIONS(331), 1, anon_sym_COLON, - ACTIONS(526), 1, + ACTIONS(527), 1, anon_sym_async, - ACTIONS(528), 1, + ACTIONS(529), 1, anon_sym_LBRACE, - STATE(201), 1, + STATE(196), 1, + sym_block, + STATE(203), 1, sym_math_operator, - STATE(202), 1, + STATE(204), 1, sym_logic_operator, - STATE(239), 1, + ACTIONS(137), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(133), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(135), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [12117] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(131), 1, + anon_sym_DASH, + ACTIONS(329), 1, + anon_sym_DASH_GT, + ACTIONS(331), 1, + anon_sym_COLON, + ACTIONS(519), 1, + anon_sym_async, + ACTIONS(521), 1, + anon_sym_LBRACE, + STATE(203), 1, + sym_math_operator, + STATE(204), 1, + sym_logic_operator, + STATE(243), 1, sym_block, ACTIONS(137), 2, anon_sym_GT, @@ -11987,16 +11875,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [12327] = 7, + [12163] = 12, ACTIONS(3), 1, sym__comment, - ACTIONS(530), 1, + ACTIONS(131), 1, + anon_sym_DASH, + ACTIONS(329), 1, + anon_sym_DASH_GT, + ACTIONS(331), 1, + anon_sym_COLON, + ACTIONS(531), 1, + anon_sym_async, + ACTIONS(533), 1, + anon_sym_LBRACE, + STATE(143), 1, + sym_block, + STATE(203), 1, + sym_math_operator, + STATE(204), 1, + sym_logic_operator, + ACTIONS(137), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(133), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(135), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [12209] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(131), 1, + anon_sym_DASH, + ACTIONS(329), 1, + anon_sym_DASH_GT, + ACTIONS(331), 1, + anon_sym_COLON, + ACTIONS(531), 1, + anon_sym_async, + ACTIONS(533), 1, + anon_sym_LBRACE, + STATE(156), 1, + sym_block, + STATE(203), 1, + sym_math_operator, + STATE(204), 1, + sym_logic_operator, + ACTIONS(137), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(133), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(135), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [12255] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(131), 1, + anon_sym_DASH, + ACTIONS(329), 1, + anon_sym_DASH_GT, + ACTIONS(331), 1, + anon_sym_COLON, + ACTIONS(523), 1, + anon_sym_async, + ACTIONS(525), 1, + anon_sym_LBRACE, + STATE(203), 1, + sym_math_operator, + STATE(204), 1, + sym_logic_operator, + STATE(237), 1, + sym_block, + ACTIONS(137), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(133), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(135), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [12301] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(131), 1, + anon_sym_DASH, + ACTIONS(329), 1, + anon_sym_DASH_GT, + ACTIONS(331), 1, + anon_sym_COLON, + ACTIONS(527), 1, + anon_sym_async, + ACTIONS(529), 1, + anon_sym_LBRACE, + STATE(203), 1, + sym_math_operator, + STATE(204), 1, + sym_logic_operator, + STATE(214), 1, + sym_block, + ACTIONS(137), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(133), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(135), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [12347] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(535), 1, anon_sym_elseif, - ACTIONS(532), 1, + ACTIONS(537), 1, anon_sym_else, - STATE(258), 1, + STATE(245), 1, sym_else, - STATE(233), 2, + STATE(231), 2, sym_else_if, aux_sym_if_else_repeat1, ACTIONS(343), 5, @@ -12005,7 +12029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, anon_sym_fn, - ACTIONS(341), 8, + ACTIONS(341), 9, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -12014,76 +12038,17 @@ static const uint16_t ts_small_parse_table[] = { sym_string, anon_sym_LBRACK, anon_sym_LPAREN, - [12361] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(131), 1, - anon_sym_DASH, - ACTIONS(329), 1, - anon_sym_DASH_GT, - ACTIONS(331), 1, - anon_sym_COLON, - ACTIONS(534), 1, - anon_sym_LBRACE, - STATE(201), 1, - sym_math_operator, - STATE(202), 1, - sym_logic_operator, - ACTIONS(137), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(133), 4, - anon_sym_PLUS, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(135), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [12401] = 10, + [12382] = 7, ACTIONS(3), 1, sym__comment, - ACTIONS(131), 1, - anon_sym_DASH, - ACTIONS(329), 1, - anon_sym_DASH_GT, - ACTIONS(331), 1, - anon_sym_COLON, - ACTIONS(536), 1, - anon_sym_LBRACE, - STATE(201), 1, - sym_math_operator, - STATE(202), 1, - sym_logic_operator, - ACTIONS(137), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(133), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(135), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [12441] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(530), 1, + ACTIONS(535), 1, anon_sym_elseif, - ACTIONS(532), 1, + ACTIONS(537), 1, anon_sym_else, - STATE(252), 1, + STATE(250), 1, sym_else, - STATE(236), 2, + STATE(232), 2, sym_else_if, aux_sym_if_else_repeat1, ACTIONS(335), 5, @@ -12092,7 +12057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, anon_sym_fn, - ACTIONS(333), 8, + ACTIONS(333), 9, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -12101,7 +12066,33 @@ static const uint16_t ts_small_parse_table[] = { sym_string, anon_sym_LBRACK, anon_sym_LPAREN, - [12475] = 10, + anon_sym_STAR, + [12417] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(539), 1, + anon_sym_elseif, + STATE(232), 2, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(347), 6, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_else, + anon_sym_fn, + ACTIONS(345), 9, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_STAR, + [12447] = 10, ACTIONS(3), 1, sym__comment, ACTIONS(131), 1, @@ -12110,11 +12101,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, ACTIONS(331), 1, anon_sym_COLON, - ACTIONS(538), 1, - anon_sym_EQ_GT, - STATE(201), 1, + ACTIONS(542), 1, + anon_sym_LBRACE, + STATE(203), 1, sym_math_operator, - STATE(202), 1, + STATE(204), 1, sym_logic_operator, ACTIONS(137), 2, anon_sym_GT, @@ -12131,17 +12122,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [12515] = 3, + [12487] = 10, ACTIONS(3), 1, sym__comment, - ACTIONS(542), 6, + ACTIONS(131), 1, + anon_sym_DASH, + ACTIONS(329), 1, + anon_sym_DASH_GT, + ACTIONS(331), 1, + anon_sym_COLON, + ACTIONS(544), 1, + anon_sym_LBRACE, + STATE(203), 1, + sym_math_operator, + STATE(204), 1, + sym_logic_operator, + ACTIONS(137), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(133), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(135), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [12527] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(548), 6, anon_sym_LBRACE, sym_float, sym_string, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_asyncfor, - ACTIONS(540), 12, + ACTIONS(546), 12, anon_sym_async, sym_identifier, sym_integer, @@ -12154,51 +12175,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_use, anon_sym_fn, - [12541] = 5, + [12553] = 10, ACTIONS(3), 1, sym__comment, - ACTIONS(544), 1, - anon_sym_elseif, - STATE(236), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(347), 6, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_else, - anon_sym_fn, - ACTIONS(345), 8, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - [12570] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(267), 6, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_else, - anon_sym_fn, - ACTIONS(265), 9, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_elseif, + ACTIONS(131), 1, + anon_sym_DASH, + ACTIONS(329), 1, + anon_sym_DASH_GT, + ACTIONS(331), 1, + anon_sym_COLON, + ACTIONS(550), 1, + anon_sym_EQ_GT, + STATE(203), 1, + sym_math_operator, + STATE(204), 1, + sym_logic_operator, + ACTIONS(137), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(133), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(135), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, [12593] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(395), 6, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_else, + anon_sym_fn, + ACTIONS(393), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_elseif, + [12617] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(247), 6, @@ -12208,7 +12236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_else, anon_sym_fn, - ACTIONS(245), 9, + ACTIONS(245), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -12217,18 +12245,19 @@ static const uint16_t ts_small_parse_table[] = { sym_string, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_STAR, anon_sym_elseif, - [12616] = 3, + [12641] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(410), 6, + ACTIONS(267), 6, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_else, anon_sym_fn, - ACTIONS(408), 9, + ACTIONS(265), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -12237,18 +12266,19 @@ static const uint16_t ts_small_parse_table[] = { sym_string, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_STAR, anon_sym_elseif, - [12639] = 3, + [12665] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(434), 6, + ACTIONS(439), 6, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_else, anon_sym_fn, - ACTIONS(432), 9, + ACTIONS(437), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -12257,55 +12287,18 @@ static const uint16_t ts_small_parse_table[] = { sym_string, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_STAR, anon_sym_elseif, - [12662] = 3, + [12689] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(549), 1, - anon_sym_DASH_GT, - ACTIONS(547), 13, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_any, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_num, - anon_sym_str, - [12684] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(553), 1, - anon_sym_DASH_GT, - ACTIONS(551), 13, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_any, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_num, - anon_sym_str, - [12706] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(496), 5, + ACTIONS(297), 5, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_fn, - ACTIONS(494), 8, + ACTIONS(295), 9, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -12314,112 +12307,8 @@ static const uint16_t ts_small_parse_table[] = { sym_string, anon_sym_LBRACK, anon_sym_LPAREN, - [12727] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(484), 5, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_fn, - ACTIONS(482), 8, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - [12748] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(480), 5, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_fn, - ACTIONS(478), 8, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - [12769] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(476), 5, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_fn, - ACTIONS(474), 8, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - [12790] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(555), 13, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_any, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_num, - anon_sym_str, - [12809] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(557), 13, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_any, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_num, - anon_sym_str, - [12828] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(559), 13, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_any, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_num, - anon_sym_str, - [12847] = 4, + anon_sym_STAR, + [12711] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(305), 1, @@ -12430,131 +12319,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, anon_sym_fn, - ACTIONS(295), 7, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - [12870] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(551), 13, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_any, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_num, - anon_sym_str, - [12889] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(500), 5, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_fn, - ACTIONS(498), 8, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - [12910] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(504), 5, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_fn, - ACTIONS(502), 8, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - [12931] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(512), 5, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_fn, - ACTIONS(510), 8, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - [12952] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(508), 5, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_fn, - ACTIONS(506), 8, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - [12973] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(492), 5, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_fn, - ACTIONS(490), 8, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - [12994] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(297), 5, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_fn, ACTIONS(295), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_STAR, + [12735] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(501), 5, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_fn, + ACTIONS(499), 9, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -12563,7 +12346,27 @@ static const uint16_t ts_small_parse_table[] = { sym_string, anon_sym_LBRACK, anon_sym_LPAREN, - [13015] = 3, + anon_sym_STAR, + [12757] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(497), 5, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_fn, + ACTIONS(495), 9, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_STAR, + [12779] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(335), 5, @@ -12572,7 +12375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, anon_sym_fn, - ACTIONS(333), 8, + ACTIONS(333), 9, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -12581,16 +12384,17 @@ static const uint16_t ts_small_parse_table[] = { sym_string, anon_sym_LBRACK, anon_sym_LPAREN, - [13036] = 3, + anon_sym_STAR, + [12801] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(488), 5, + ACTIONS(493), 5, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_fn, - ACTIONS(486), 8, + ACTIONS(491), 9, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -12599,20 +12403,95 @@ static const uint16_t ts_small_parse_table[] = { sym_string, anon_sym_LBRACK, anon_sym_LPAREN, - [13057] = 7, + anon_sym_STAR, + [12823] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(561), 1, + ACTIONS(481), 5, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_fn, + ACTIONS(479), 9, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_float, + sym_string, anon_sym_LBRACK, - ACTIONS(563), 1, anon_sym_LPAREN, - ACTIONS(565), 1, + anon_sym_STAR, + [12845] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(509), 5, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_fn, + ACTIONS(507), 9, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_STAR, + [12867] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(513), 5, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_fn, + ACTIONS(511), 9, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_STAR, + [12889] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(517), 5, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_fn, + ACTIONS(515), 9, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_STAR, + [12911] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(554), 1, + anon_sym_DASH_GT, + ACTIONS(552), 13, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(261), 1, - aux_sym_type_repeat1, - STATE(263), 1, - sym_type, - ACTIONS(567), 7, + anon_sym_GT, anon_sym_any, anon_sym_bool, anon_sym_float, @@ -12620,20 +12499,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_num, anon_sym_str, - [13085] = 7, + [12933] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(561), 1, + ACTIONS(558), 1, + anon_sym_DASH_GT, + ACTIONS(556), 13, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(563), 1, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(569), 1, anon_sym_RPAREN, - STATE(262), 1, - aux_sym_type_repeat1, - STATE(263), 1, - sym_type, - ACTIONS(567), 7, + anon_sym_GT, anon_sym_any, anon_sym_bool, anon_sym_float, @@ -12641,20 +12518,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_num, anon_sym_str, - [13113] = 7, + [12955] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(571), 1, + ACTIONS(485), 5, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_fn, + ACTIONS(483), 9, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_STAR, + [12977] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(489), 5, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_fn, + ACTIONS(487), 9, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_STAR, + [12999] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(505), 5, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_fn, + ACTIONS(503), 9, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_STAR, + [13021] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(560), 13, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_any, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_num, + anon_sym_str, + [13040] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(562), 13, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_any, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_num, + anon_sym_str, + [13059] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(564), 13, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_any, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_num, + anon_sym_str, + [13078] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(552), 13, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_any, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_num, + anon_sym_str, + [13097] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(570), 1, + anon_sym_COMMA, + ACTIONS(566), 5, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_fn, + ACTIONS(568), 7, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_STAR, + [13120] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(572), 1, anon_sym_LBRACK, ACTIONS(574), 1, anon_sym_LPAREN, - ACTIONS(577), 1, + ACTIONS(576), 1, anon_sym_RPAREN, STATE(262), 1, aux_sym_type_repeat1, - STATE(263), 1, + STATE(267), 1, sym_type, - ACTIONS(579), 7, + ACTIONS(578), 7, anon_sym_any, anon_sym_bool, anon_sym_float, @@ -12662,15 +12683,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_num, anon_sym_str, - [13141] = 3, + [13148] = 7, ACTIONS(3), 1, sym__comment, - ACTIONS(582), 1, - anon_sym_COMMA, - ACTIONS(584), 10, + ACTIONS(572), 1, anon_sym_LBRACK, + ACTIONS(574), 1, anon_sym_LPAREN, + ACTIONS(580), 1, anon_sym_RPAREN, + STATE(264), 1, + aux_sym_type_repeat1, + STATE(267), 1, + sym_type, + ACTIONS(578), 7, anon_sym_any, anon_sym_bool, anon_sym_float, @@ -12678,122 +12704,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_num, anon_sym_str, - [13160] = 3, + [13176] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(586), 5, + ACTIONS(582), 5, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, anon_sym_fn, - ACTIONS(454), 6, + ACTIONS(584), 7, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_STAR, + [13196] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(586), 1, + anon_sym_LBRACK, + ACTIONS(589), 1, + anon_sym_LPAREN, + ACTIONS(592), 1, + anon_sym_RPAREN, + STATE(264), 1, + aux_sym_type_repeat1, + STATE(267), 1, + sym_type, + ACTIONS(594), 7, + anon_sym_any, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_num, + anon_sym_str, + [13224] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(597), 5, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_fn, + ACTIONS(432), 6, + anon_sym_LBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + [13243] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(599), 5, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_fn, + ACTIONS(459), 6, anon_sym_LBRACE, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, - [13179] = 3, + [13262] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(588), 5, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_fn, - ACTIONS(590), 6, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - [13198] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(592), 5, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_fn, - ACTIONS(375), 6, - anon_sym_LBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - [13217] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(561), 1, - anon_sym_LBRACK, - ACTIONS(563), 1, - anon_sym_LPAREN, - STATE(249), 1, - sym_type, - ACTIONS(567), 7, - anon_sym_any, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_num, - anon_sym_str, - [13239] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(594), 5, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_fn, - ACTIONS(596), 5, - anon_sym_LBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - [13257] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(598), 5, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_fn, - ACTIONS(600), 5, - anon_sym_LBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - [13275] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(561), 1, - anon_sym_LBRACK, - ACTIONS(563), 1, - anon_sym_LPAREN, - STATE(248), 1, - sym_type, - ACTIONS(567), 7, - anon_sym_any, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_num, - anon_sym_str, - [13297] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(577), 10, + ACTIONS(601), 1, + anon_sym_COMMA, + ACTIONS(603), 10, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_RPAREN, @@ -12804,16 +12790,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_num, anon_sym_str, - [13313] = 5, + [13281] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(561), 1, + ACTIONS(605), 5, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_fn, + ACTIONS(607), 5, + anon_sym_LBRACE, + sym_float, + sym_string, anon_sym_LBRACK, - ACTIONS(563), 1, anon_sym_LPAREN, - STATE(306), 1, + [13299] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(572), 1, + anon_sym_LBRACK, + ACTIONS(574), 1, + anon_sym_LPAREN, + STATE(258), 1, sym_type, - ACTIONS(567), 7, + ACTIONS(578), 7, anon_sym_any, anon_sym_bool, anon_sym_float, @@ -12821,16 +12822,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_num, anon_sym_str, - [13335] = 5, + [13321] = 5, ACTIONS(3), 1, sym__comment, - ACTIONS(561), 1, + ACTIONS(572), 1, anon_sym_LBRACK, - ACTIONS(563), 1, + ACTIONS(574), 1, anon_sym_LPAREN, - STATE(304), 1, + STATE(317), 1, sym_type, - ACTIONS(567), 7, + ACTIONS(578), 7, anon_sym_any, anon_sym_bool, anon_sym_float, @@ -12838,16 +12839,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_num, anon_sym_str, - [13357] = 3, + [13343] = 3, ACTIONS(3), 1, sym__comment, - STATE(65), 1, - sym_assignment_operator, - ACTIONS(157), 3, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [13369] = 3, + ACTIONS(609), 5, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_fn, + ACTIONS(611), 5, + anon_sym_LBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_LPAREN, + [13361] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(572), 1, + anon_sym_LBRACK, + ACTIONS(574), 1, + anon_sym_LPAREN, + STATE(313), 1, + sym_type, + ACTIONS(578), 7, + anon_sym_any, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_num, + anon_sym_str, + [13383] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(592), 10, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_any, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_num, + anon_sym_str, + [13399] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(572), 1, + anon_sym_LBRACK, + ACTIONS(574), 1, + anon_sym_LPAREN, + STATE(257), 1, + sym_type, + ACTIONS(578), 7, + anon_sym_any, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_num, + anon_sym_str, + [13421] = 3, ACTIONS(3), 1, sym__comment, STATE(43), 1, @@ -12856,7 +12911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - [13381] = 3, + [13433] = 3, ACTIONS(3), 1, sym__comment, STATE(68), 1, @@ -12865,343 +12920,357 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - [13393] = 4, + [13445] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(604), 1, - anon_sym_PIPE, - STATE(278), 1, - aux_sym_function_repeat1, - [13406] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(606), 1, - sym_identifier, - ACTIONS(609), 1, - anon_sym_PIPE, - STATE(278), 1, - aux_sym_function_repeat1, - [13419] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(613), 1, - anon_sym_COMMA, - ACTIONS(611), 2, - anon_sym_RBRACE, - sym_identifier, - [13430] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(615), 1, - anon_sym_async, - ACTIONS(617), 1, - anon_sym_LBRACE, - STATE(132), 1, - sym_block, - [13443] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(619), 3, + STATE(65), 1, + sym_assignment_operator, + ACTIONS(157), 3, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - [13452] = 4, + [13457] = 4, ACTIONS(3), 1, sym__comment, + ACTIONS(613), 1, + anon_sym_async, ACTIONS(615), 1, - anon_sym_async, + anon_sym_LBRACE, + STATE(128), 1, + sym_block, + [13470] = 4, + ACTIONS(3), 1, + sym__comment, ACTIONS(617), 1, - anon_sym_LBRACE, - STATE(127), 1, - sym_block, - [13465] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(602), 1, sym_identifier, - ACTIONS(621), 1, + ACTIONS(620), 1, anon_sym_PIPE, - STATE(278), 1, + STATE(279), 1, aux_sym_function_repeat1, - [13478] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(518), 1, - anon_sym_async, - ACTIONS(520), 1, - anon_sym_LBRACE, - STATE(217), 1, - sym_block, - [13491] = 4, + [13483] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(41), 1, anon_sym_RBRACE, - ACTIONS(623), 1, + ACTIONS(622), 1, sym_identifier, - STATE(296), 1, + STATE(297), 1, aux_sym_map_repeat1, - [13504] = 4, + [13496] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(514), 1, - anon_sym_async, - ACTIONS(516), 1, - anon_sym_LBRACE, - STATE(88), 1, - sym_block, - [13517] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(518), 1, - anon_sym_async, - ACTIONS(520), 1, - anon_sym_LBRACE, - STATE(45), 1, - sym_block, - [13530] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(625), 1, - anon_sym_PIPE, - STATE(278), 1, - aux_sym_function_repeat1, - [13543] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(623), 1, - sym_identifier, - ACTIONS(627), 1, - anon_sym_RBRACE, - STATE(291), 1, - aux_sym_map_repeat1, - [13556] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(629), 1, - anon_sym_PIPE, - STATE(277), 1, - aux_sym_function_repeat1, - [13569] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(631), 1, - sym_identifier, - ACTIONS(634), 1, - anon_sym_RBRACE, - STATE(291), 1, - aux_sym_map_repeat1, - [13582] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(638), 1, + ACTIONS(626), 1, anon_sym_COMMA, - ACTIONS(636), 2, - sym_identifier, - anon_sym_PIPE, - [13593] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(514), 1, - anon_sym_async, - ACTIONS(516), 1, - anon_sym_LBRACE, - STATE(86), 1, - sym_block, - [13606] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(518), 1, - anon_sym_async, - ACTIONS(520), 1, - anon_sym_LBRACE, - STATE(54), 1, - sym_block, - [13619] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(640), 1, - anon_sym_PIPE, - STATE(288), 1, - aux_sym_function_repeat1, - [13632] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(623), 1, - sym_identifier, - ACTIONS(642), 1, + ACTIONS(624), 2, anon_sym_RBRACE, - STATE(291), 1, - aux_sym_map_repeat1, - [13645] = 4, + sym_identifier, + [13507] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(628), 3, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [13516] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(630), 1, + sym_identifier, + ACTIONS(632), 1, + anon_sym_PIPE, + STATE(279), 1, + aux_sym_function_repeat1, + [13529] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(43), 1, anon_sym_RBRACE, - ACTIONS(623), 1, + ACTIONS(622), 1, sym_identifier, - STATE(289), 1, + STATE(287), 1, aux_sym_map_repeat1, - [13658] = 4, + [13542] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(514), 1, - anon_sym_async, - ACTIONS(516), 1, - anon_sym_LBRACE, - STATE(253), 1, - sym_block, - [13671] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(623), 1, + ACTIONS(630), 1, sym_identifier, - ACTIONS(644), 1, - anon_sym_RBRACE, - STATE(291), 1, - aux_sym_map_repeat1, - [13684] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(646), 1, + ACTIONS(634), 1, anon_sym_PIPE, STATE(283), 1, aux_sym_function_repeat1, - [13697] = 4, + [13555] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(622), 1, + sym_identifier, + ACTIONS(636), 1, + anon_sym_RBRACE, + STATE(299), 1, + aux_sym_map_repeat1, + [13568] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(622), 1, + sym_identifier, + ACTIONS(638), 1, + anon_sym_RBRACE, + STATE(299), 1, + aux_sym_map_repeat1, + [13581] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(630), 1, + sym_identifier, + ACTIONS(640), 1, + anon_sym_PIPE, + STATE(296), 1, + aux_sym_function_repeat1, + [13594] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(527), 1, + anon_sym_async, + ACTIONS(529), 1, + anon_sym_LBRACE, + STATE(45), 1, + sym_block, + [13607] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(644), 1, + anon_sym_COMMA, + ACTIONS(642), 2, + sym_identifier, + anon_sym_PIPE, + [13618] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(613), 1, + anon_sym_async, + ACTIONS(615), 1, + anon_sym_LBRACE, + STATE(120), 1, + sym_block, + [13631] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(527), 1, + anon_sym_async, + ACTIONS(529), 1, + anon_sym_LBRACE, + STATE(219), 1, + sym_block, + [13644] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(527), 1, + anon_sym_async, + ACTIONS(529), 1, + anon_sym_LBRACE, + STATE(54), 1, + sym_block, + [13657] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(630), 1, + sym_identifier, + ACTIONS(646), 1, + anon_sym_PIPE, + STATE(279), 1, + aux_sym_function_repeat1, + [13670] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(519), 1, + anon_sym_async, + ACTIONS(521), 1, + anon_sym_LBRACE, + STATE(87), 1, + sym_block, + [13683] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(630), 1, + sym_identifier, + ACTIONS(648), 1, + anon_sym_PIPE, + STATE(279), 1, + aux_sym_function_repeat1, + [13696] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(622), 1, + sym_identifier, + ACTIONS(650), 1, + anon_sym_RBRACE, + STATE(299), 1, + aux_sym_map_repeat1, + [13709] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(630), 1, + sym_identifier, + ACTIONS(652), 1, + anon_sym_PIPE, + STATE(294), 1, + aux_sym_function_repeat1, + [13722] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(654), 1, + sym_identifier, + ACTIONS(657), 1, + anon_sym_RBRACE, + STATE(299), 1, + aux_sym_map_repeat1, + [13735] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(519), 1, + anon_sym_async, + ACTIONS(521), 1, + anon_sym_LBRACE, + STATE(95), 1, + sym_block, + [13748] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(39), 1, anon_sym_RBRACE, - ACTIONS(623), 1, + ACTIONS(622), 1, sym_identifier, - STATE(299), 1, + STATE(286), 1, aux_sym_map_repeat1, - [13710] = 2, + [13761] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(609), 2, + ACTIONS(519), 1, + anon_sym_async, + ACTIONS(521), 1, + anon_sym_LBRACE, + STATE(249), 1, + sym_block, + [13774] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(620), 2, sym_identifier, anon_sym_PIPE, - [13718] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(648), 2, - anon_sym_RBRACE, - sym_identifier, - [13726] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(650), 1, - anon_sym_RBRACK, - [13733] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(652), 1, - sym_identifier, - [13740] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(654), 1, - anon_sym_GT, - [13747] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(656), 1, - sym_string, - [13754] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(658), 1, - ts_builtin_sym_end, - [13761] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(660), 1, - anon_sym_LBRACE, - [13768] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(662), 1, - anon_sym_EQ, - [13775] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(664), 1, - anon_sym_in, [13782] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(666), 1, + ACTIONS(659), 2, + anon_sym_RBRACE, + sym_identifier, + [13790] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(661), 1, + anon_sym_LPAREN, + [13797] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(663), 1, + anon_sym_PIPE, + [13804] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(665), 1, sym_string, - [13789] = 2, + [13811] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(668), 1, - anon_sym_LBRACE, - [13796] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(670), 1, + ACTIONS(667), 1, anon_sym_PIPE, - [13803] = 2, + [13818] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(672), 1, - anon_sym_LPAREN, - [13810] = 2, + ACTIONS(550), 1, + anon_sym_EQ_GT, + [13825] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(674), 1, + ACTIONS(669), 1, + anon_sym_EQ, + [13832] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(671), 1, + sym_string, + [13839] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(673), 1, + ts_builtin_sym_end, + [13846] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(675), 1, + anon_sym_GT, + [13853] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(677), 1, + anon_sym_LBRACE, + [13860] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(679), 1, + sym_identifier, + [13867] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(681), 1, + anon_sym_LBRACE, + [13874] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(683), 1, + anon_sym_RBRACK, + [13881] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(685), 1, anon_sym_in, - [13817] = 2, + [13888] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(676), 1, + ACTIONS(687), 1, anon_sym_LPAREN, - [13824] = 2, + [13895] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(678), 1, + ACTIONS(689), 1, anon_sym_LBRACE, - [13831] = 2, + [13902] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(680), 1, + ACTIONS(691), 1, anon_sym_PIPE, - [13838] = 2, + [13909] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(682), 1, + ACTIONS(693), 1, anon_sym_LPAREN, - [13845] = 2, + [13916] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(684), 1, + ACTIONS(695), 1, anon_sym_LBRACE, - [13852] = 2, + [13923] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(686), 1, + ACTIONS(697), 1, anon_sym_LBRACE, - [13859] = 2, + [13930] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(688), 1, - anon_sym_PIPE, - [13866] = 2, + ACTIONS(699), 1, + anon_sym_in, + [13937] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(690), 1, + ACTIONS(701), 1, sym_identifier, }; @@ -13304,231 +13373,233 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(97)] = 6511, [SMALL_STATE(98)] = 6553, [SMALL_STATE(99)] = 6595, - [SMALL_STATE(100)] = 6645, - [SMALL_STATE(101)] = 6690, - [SMALL_STATE(102)] = 6745, - [SMALL_STATE(103)] = 6800, - [SMALL_STATE(104)] = 6855, - [SMALL_STATE(105)] = 6908, - [SMALL_STATE(106)] = 6961, - [SMALL_STATE(107)] = 7015, - [SMALL_STATE(108)] = 7069, - [SMALL_STATE(109)] = 7109, - [SMALL_STATE(110)] = 7151, - [SMALL_STATE(111)] = 7205, - [SMALL_STATE(112)] = 7247, - [SMALL_STATE(113)] = 7289, - [SMALL_STATE(114)] = 7341, - [SMALL_STATE(115)] = 7381, - [SMALL_STATE(116)] = 7422, - [SMALL_STATE(117)] = 7461, - [SMALL_STATE(118)] = 7512, - [SMALL_STATE(119)] = 7546, - [SMALL_STATE(120)] = 7580, - [SMALL_STATE(121)] = 7614, - [SMALL_STATE(122)] = 7648, - [SMALL_STATE(123)] = 7690, - [SMALL_STATE(124)] = 7724, - [SMALL_STATE(125)] = 7758, - [SMALL_STATE(126)] = 7792, - [SMALL_STATE(127)] = 7826, - [SMALL_STATE(128)] = 7860, - [SMALL_STATE(129)] = 7894, - [SMALL_STATE(130)] = 7928, - [SMALL_STATE(131)] = 7962, - [SMALL_STATE(132)] = 8004, - [SMALL_STATE(133)] = 8038, - [SMALL_STATE(134)] = 8072, - [SMALL_STATE(135)] = 8106, - [SMALL_STATE(136)] = 8140, - [SMALL_STATE(137)] = 8177, - [SMALL_STATE(138)] = 8219, - [SMALL_STATE(139)] = 8272, - [SMALL_STATE(140)] = 8325, - [SMALL_STATE(141)] = 8378, - [SMALL_STATE(142)] = 8431, - [SMALL_STATE(143)] = 8462, - [SMALL_STATE(144)] = 8515, - [SMALL_STATE(145)] = 8568, - [SMALL_STATE(146)] = 8605, - [SMALL_STATE(147)] = 8658, - [SMALL_STATE(148)] = 8711, - [SMALL_STATE(149)] = 8764, - [SMALL_STATE(150)] = 8817, - [SMALL_STATE(151)] = 8870, - [SMALL_STATE(152)] = 8923, - [SMALL_STATE(153)] = 8954, - [SMALL_STATE(154)] = 8985, - [SMALL_STATE(155)] = 9016, - [SMALL_STATE(156)] = 9069, - [SMALL_STATE(157)] = 9122, - [SMALL_STATE(158)] = 9175, - [SMALL_STATE(159)] = 9228, - [SMALL_STATE(160)] = 9281, - [SMALL_STATE(161)] = 9331, - [SMALL_STATE(162)] = 9381, - [SMALL_STATE(163)] = 9428, - [SMALL_STATE(164)] = 9471, - [SMALL_STATE(165)] = 9518, - [SMALL_STATE(166)] = 9561, - [SMALL_STATE(167)] = 9608, - [SMALL_STATE(168)] = 9655, - [SMALL_STATE(169)] = 9702, - [SMALL_STATE(170)] = 9749, - [SMALL_STATE(171)] = 9796, - [SMALL_STATE(172)] = 9843, - [SMALL_STATE(173)] = 9890, - [SMALL_STATE(174)] = 9937, - [SMALL_STATE(175)] = 9984, - [SMALL_STATE(176)] = 10031, - [SMALL_STATE(177)] = 10078, - [SMALL_STATE(178)] = 10125, - [SMALL_STATE(179)] = 10172, - [SMALL_STATE(180)] = 10219, - [SMALL_STATE(181)] = 10266, - [SMALL_STATE(182)] = 10313, - [SMALL_STATE(183)] = 10360, - [SMALL_STATE(184)] = 10407, - [SMALL_STATE(185)] = 10438, - [SMALL_STATE(186)] = 10485, - [SMALL_STATE(187)] = 10514, - [SMALL_STATE(188)] = 10561, - [SMALL_STATE(189)] = 10608, - [SMALL_STATE(190)] = 10655, - [SMALL_STATE(191)] = 10702, - [SMALL_STATE(192)] = 10749, - [SMALL_STATE(193)] = 10796, - [SMALL_STATE(194)] = 10841, - [SMALL_STATE(195)] = 10888, - [SMALL_STATE(196)] = 10917, - [SMALL_STATE(197)] = 10946, - [SMALL_STATE(198)] = 10993, - [SMALL_STATE(199)] = 11022, - [SMALL_STATE(200)] = 11051, - [SMALL_STATE(201)] = 11098, - [SMALL_STATE(202)] = 11145, - [SMALL_STATE(203)] = 11192, - [SMALL_STATE(204)] = 11239, - [SMALL_STATE(205)] = 11286, - [SMALL_STATE(206)] = 11333, - [SMALL_STATE(207)] = 11380, - [SMALL_STATE(208)] = 11427, - [SMALL_STATE(209)] = 11474, - [SMALL_STATE(210)] = 11521, - [SMALL_STATE(211)] = 11550, - [SMALL_STATE(212)] = 11579, - [SMALL_STATE(213)] = 11626, - [SMALL_STATE(214)] = 11655, - [SMALL_STATE(215)] = 11684, - [SMALL_STATE(216)] = 11731, - [SMALL_STATE(217)] = 11778, - [SMALL_STATE(218)] = 11807, - [SMALL_STATE(219)] = 11836, - [SMALL_STATE(220)] = 11865, - [SMALL_STATE(221)] = 11912, - [SMALL_STATE(222)] = 11959, - [SMALL_STATE(223)] = 12005, - [SMALL_STATE(224)] = 12051, - [SMALL_STATE(225)] = 12097, - [SMALL_STATE(226)] = 12143, - [SMALL_STATE(227)] = 12189, - [SMALL_STATE(228)] = 12235, - [SMALL_STATE(229)] = 12281, - [SMALL_STATE(230)] = 12327, - [SMALL_STATE(231)] = 12361, - [SMALL_STATE(232)] = 12401, - [SMALL_STATE(233)] = 12441, - [SMALL_STATE(234)] = 12475, - [SMALL_STATE(235)] = 12515, - [SMALL_STATE(236)] = 12541, - [SMALL_STATE(237)] = 12570, - [SMALL_STATE(238)] = 12593, - [SMALL_STATE(239)] = 12616, - [SMALL_STATE(240)] = 12639, - [SMALL_STATE(241)] = 12662, - [SMALL_STATE(242)] = 12684, - [SMALL_STATE(243)] = 12706, - [SMALL_STATE(244)] = 12727, - [SMALL_STATE(245)] = 12748, - [SMALL_STATE(246)] = 12769, - [SMALL_STATE(247)] = 12790, - [SMALL_STATE(248)] = 12809, - [SMALL_STATE(249)] = 12828, - [SMALL_STATE(250)] = 12847, - [SMALL_STATE(251)] = 12870, - [SMALL_STATE(252)] = 12889, - [SMALL_STATE(253)] = 12910, - [SMALL_STATE(254)] = 12931, - [SMALL_STATE(255)] = 12952, - [SMALL_STATE(256)] = 12973, - [SMALL_STATE(257)] = 12994, - [SMALL_STATE(258)] = 13015, - [SMALL_STATE(259)] = 13036, - [SMALL_STATE(260)] = 13057, - [SMALL_STATE(261)] = 13085, - [SMALL_STATE(262)] = 13113, - [SMALL_STATE(263)] = 13141, - [SMALL_STATE(264)] = 13160, - [SMALL_STATE(265)] = 13179, - [SMALL_STATE(266)] = 13198, - [SMALL_STATE(267)] = 13217, - [SMALL_STATE(268)] = 13239, - [SMALL_STATE(269)] = 13257, - [SMALL_STATE(270)] = 13275, - [SMALL_STATE(271)] = 13297, - [SMALL_STATE(272)] = 13313, - [SMALL_STATE(273)] = 13335, - [SMALL_STATE(274)] = 13357, - [SMALL_STATE(275)] = 13369, - [SMALL_STATE(276)] = 13381, - [SMALL_STATE(277)] = 13393, - [SMALL_STATE(278)] = 13406, - [SMALL_STATE(279)] = 13419, - [SMALL_STATE(280)] = 13430, - [SMALL_STATE(281)] = 13443, - [SMALL_STATE(282)] = 13452, - [SMALL_STATE(283)] = 13465, - [SMALL_STATE(284)] = 13478, - [SMALL_STATE(285)] = 13491, - [SMALL_STATE(286)] = 13504, - [SMALL_STATE(287)] = 13517, - [SMALL_STATE(288)] = 13530, - [SMALL_STATE(289)] = 13543, - [SMALL_STATE(290)] = 13556, - [SMALL_STATE(291)] = 13569, - [SMALL_STATE(292)] = 13582, - [SMALL_STATE(293)] = 13593, - [SMALL_STATE(294)] = 13606, - [SMALL_STATE(295)] = 13619, - [SMALL_STATE(296)] = 13632, - [SMALL_STATE(297)] = 13645, - [SMALL_STATE(298)] = 13658, - [SMALL_STATE(299)] = 13671, - [SMALL_STATE(300)] = 13684, - [SMALL_STATE(301)] = 13697, - [SMALL_STATE(302)] = 13710, - [SMALL_STATE(303)] = 13718, - [SMALL_STATE(304)] = 13726, - [SMALL_STATE(305)] = 13733, - [SMALL_STATE(306)] = 13740, - [SMALL_STATE(307)] = 13747, - [SMALL_STATE(308)] = 13754, - [SMALL_STATE(309)] = 13761, - [SMALL_STATE(310)] = 13768, - [SMALL_STATE(311)] = 13775, - [SMALL_STATE(312)] = 13782, - [SMALL_STATE(313)] = 13789, - [SMALL_STATE(314)] = 13796, - [SMALL_STATE(315)] = 13803, - [SMALL_STATE(316)] = 13810, - [SMALL_STATE(317)] = 13817, - [SMALL_STATE(318)] = 13824, - [SMALL_STATE(319)] = 13831, - [SMALL_STATE(320)] = 13838, - [SMALL_STATE(321)] = 13845, - [SMALL_STATE(322)] = 13852, - [SMALL_STATE(323)] = 13859, - [SMALL_STATE(324)] = 13866, + [SMALL_STATE(100)] = 6646, + [SMALL_STATE(101)] = 6692, + [SMALL_STATE(102)] = 6748, + [SMALL_STATE(103)] = 6802, + [SMALL_STATE(104)] = 6856, + [SMALL_STATE(105)] = 6911, + [SMALL_STATE(106)] = 6966, + [SMALL_STATE(107)] = 7008, + [SMALL_STATE(108)] = 7048, + [SMALL_STATE(109)] = 7090, + [SMALL_STATE(110)] = 7144, + [SMALL_STATE(111)] = 7198, + [SMALL_STATE(112)] = 7240, + [SMALL_STATE(113)] = 7294, + [SMALL_STATE(114)] = 7334, + [SMALL_STATE(115)] = 7386, + [SMALL_STATE(116)] = 7425, + [SMALL_STATE(117)] = 7466, + [SMALL_STATE(118)] = 7517, + [SMALL_STATE(119)] = 7551, + [SMALL_STATE(120)] = 7585, + [SMALL_STATE(121)] = 7619, + [SMALL_STATE(122)] = 7653, + [SMALL_STATE(123)] = 7687, + [SMALL_STATE(124)] = 7721, + [SMALL_STATE(125)] = 7755, + [SMALL_STATE(126)] = 7789, + [SMALL_STATE(127)] = 7823, + [SMALL_STATE(128)] = 7857, + [SMALL_STATE(129)] = 7891, + [SMALL_STATE(130)] = 7933, + [SMALL_STATE(131)] = 7967, + [SMALL_STATE(132)] = 8001, + [SMALL_STATE(133)] = 8043, + [SMALL_STATE(134)] = 8077, + [SMALL_STATE(135)] = 8111, + [SMALL_STATE(136)] = 8145, + [SMALL_STATE(137)] = 8182, + [SMALL_STATE(138)] = 8238, + [SMALL_STATE(139)] = 8280, + [SMALL_STATE(140)] = 8336, + [SMALL_STATE(141)] = 8392, + [SMALL_STATE(142)] = 8423, + [SMALL_STATE(143)] = 8476, + [SMALL_STATE(144)] = 8507, + [SMALL_STATE(145)] = 8560, + [SMALL_STATE(146)] = 8613, + [SMALL_STATE(147)] = 8666, + [SMALL_STATE(148)] = 8703, + [SMALL_STATE(149)] = 8756, + [SMALL_STATE(150)] = 8809, + [SMALL_STATE(151)] = 8862, + [SMALL_STATE(152)] = 8915, + [SMALL_STATE(153)] = 8968, + [SMALL_STATE(154)] = 9021, + [SMALL_STATE(155)] = 9074, + [SMALL_STATE(156)] = 9105, + [SMALL_STATE(157)] = 9136, + [SMALL_STATE(158)] = 9189, + [SMALL_STATE(159)] = 9242, + [SMALL_STATE(160)] = 9295, + [SMALL_STATE(161)] = 9348, + [SMALL_STATE(162)] = 9401, + [SMALL_STATE(163)] = 9448, + [SMALL_STATE(164)] = 9495, + [SMALL_STATE(165)] = 9524, + [SMALL_STATE(166)] = 9571, + [SMALL_STATE(167)] = 9618, + [SMALL_STATE(168)] = 9661, + [SMALL_STATE(169)] = 9708, + [SMALL_STATE(170)] = 9755, + [SMALL_STATE(171)] = 9802, + [SMALL_STATE(172)] = 9849, + [SMALL_STATE(173)] = 9896, + [SMALL_STATE(174)] = 9943, + [SMALL_STATE(175)] = 9990, + [SMALL_STATE(176)] = 10037, + [SMALL_STATE(177)] = 10084, + [SMALL_STATE(178)] = 10131, + [SMALL_STATE(179)] = 10178, + [SMALL_STATE(180)] = 10225, + [SMALL_STATE(181)] = 10272, + [SMALL_STATE(182)] = 10319, + [SMALL_STATE(183)] = 10366, + [SMALL_STATE(184)] = 10413, + [SMALL_STATE(185)] = 10460, + [SMALL_STATE(186)] = 10491, + [SMALL_STATE(187)] = 10538, + [SMALL_STATE(188)] = 10585, + [SMALL_STATE(189)] = 10632, + [SMALL_STATE(190)] = 10679, + [SMALL_STATE(191)] = 10726, + [SMALL_STATE(192)] = 10773, + [SMALL_STATE(193)] = 10820, + [SMALL_STATE(194)] = 10867, + [SMALL_STATE(195)] = 10896, + [SMALL_STATE(196)] = 10941, + [SMALL_STATE(197)] = 10970, + [SMALL_STATE(198)] = 10999, + [SMALL_STATE(199)] = 11028, + [SMALL_STATE(200)] = 11075, + [SMALL_STATE(201)] = 11122, + [SMALL_STATE(202)] = 11169, + [SMALL_STATE(203)] = 11216, + [SMALL_STATE(204)] = 11263, + [SMALL_STATE(205)] = 11310, + [SMALL_STATE(206)] = 11357, + [SMALL_STATE(207)] = 11404, + [SMALL_STATE(208)] = 11451, + [SMALL_STATE(209)] = 11498, + [SMALL_STATE(210)] = 11527, + [SMALL_STATE(211)] = 11556, + [SMALL_STATE(212)] = 11603, + [SMALL_STATE(213)] = 11650, + [SMALL_STATE(214)] = 11697, + [SMALL_STATE(215)] = 11726, + [SMALL_STATE(216)] = 11755, + [SMALL_STATE(217)] = 11802, + [SMALL_STATE(218)] = 11849, + [SMALL_STATE(219)] = 11878, + [SMALL_STATE(220)] = 11907, + [SMALL_STATE(221)] = 11936, + [SMALL_STATE(222)] = 11979, + [SMALL_STATE(223)] = 12025, + [SMALL_STATE(224)] = 12071, + [SMALL_STATE(225)] = 12117, + [SMALL_STATE(226)] = 12163, + [SMALL_STATE(227)] = 12209, + [SMALL_STATE(228)] = 12255, + [SMALL_STATE(229)] = 12301, + [SMALL_STATE(230)] = 12347, + [SMALL_STATE(231)] = 12382, + [SMALL_STATE(232)] = 12417, + [SMALL_STATE(233)] = 12447, + [SMALL_STATE(234)] = 12487, + [SMALL_STATE(235)] = 12527, + [SMALL_STATE(236)] = 12553, + [SMALL_STATE(237)] = 12593, + [SMALL_STATE(238)] = 12617, + [SMALL_STATE(239)] = 12641, + [SMALL_STATE(240)] = 12665, + [SMALL_STATE(241)] = 12689, + [SMALL_STATE(242)] = 12711, + [SMALL_STATE(243)] = 12735, + [SMALL_STATE(244)] = 12757, + [SMALL_STATE(245)] = 12779, + [SMALL_STATE(246)] = 12801, + [SMALL_STATE(247)] = 12823, + [SMALL_STATE(248)] = 12845, + [SMALL_STATE(249)] = 12867, + [SMALL_STATE(250)] = 12889, + [SMALL_STATE(251)] = 12911, + [SMALL_STATE(252)] = 12933, + [SMALL_STATE(253)] = 12955, + [SMALL_STATE(254)] = 12977, + [SMALL_STATE(255)] = 12999, + [SMALL_STATE(256)] = 13021, + [SMALL_STATE(257)] = 13040, + [SMALL_STATE(258)] = 13059, + [SMALL_STATE(259)] = 13078, + [SMALL_STATE(260)] = 13097, + [SMALL_STATE(261)] = 13120, + [SMALL_STATE(262)] = 13148, + [SMALL_STATE(263)] = 13176, + [SMALL_STATE(264)] = 13196, + [SMALL_STATE(265)] = 13224, + [SMALL_STATE(266)] = 13243, + [SMALL_STATE(267)] = 13262, + [SMALL_STATE(268)] = 13281, + [SMALL_STATE(269)] = 13299, + [SMALL_STATE(270)] = 13321, + [SMALL_STATE(271)] = 13343, + [SMALL_STATE(272)] = 13361, + [SMALL_STATE(273)] = 13383, + [SMALL_STATE(274)] = 13399, + [SMALL_STATE(275)] = 13421, + [SMALL_STATE(276)] = 13433, + [SMALL_STATE(277)] = 13445, + [SMALL_STATE(278)] = 13457, + [SMALL_STATE(279)] = 13470, + [SMALL_STATE(280)] = 13483, + [SMALL_STATE(281)] = 13496, + [SMALL_STATE(282)] = 13507, + [SMALL_STATE(283)] = 13516, + [SMALL_STATE(284)] = 13529, + [SMALL_STATE(285)] = 13542, + [SMALL_STATE(286)] = 13555, + [SMALL_STATE(287)] = 13568, + [SMALL_STATE(288)] = 13581, + [SMALL_STATE(289)] = 13594, + [SMALL_STATE(290)] = 13607, + [SMALL_STATE(291)] = 13618, + [SMALL_STATE(292)] = 13631, + [SMALL_STATE(293)] = 13644, + [SMALL_STATE(294)] = 13657, + [SMALL_STATE(295)] = 13670, + [SMALL_STATE(296)] = 13683, + [SMALL_STATE(297)] = 13696, + [SMALL_STATE(298)] = 13709, + [SMALL_STATE(299)] = 13722, + [SMALL_STATE(300)] = 13735, + [SMALL_STATE(301)] = 13748, + [SMALL_STATE(302)] = 13761, + [SMALL_STATE(303)] = 13774, + [SMALL_STATE(304)] = 13782, + [SMALL_STATE(305)] = 13790, + [SMALL_STATE(306)] = 13797, + [SMALL_STATE(307)] = 13804, + [SMALL_STATE(308)] = 13811, + [SMALL_STATE(309)] = 13818, + [SMALL_STATE(310)] = 13825, + [SMALL_STATE(311)] = 13832, + [SMALL_STATE(312)] = 13839, + [SMALL_STATE(313)] = 13846, + [SMALL_STATE(314)] = 13853, + [SMALL_STATE(315)] = 13860, + [SMALL_STATE(316)] = 13867, + [SMALL_STATE(317)] = 13874, + [SMALL_STATE(318)] = 13881, + [SMALL_STATE(319)] = 13888, + [SMALL_STATE(320)] = 13895, + [SMALL_STATE(321)] = 13902, + [SMALL_STATE(322)] = 13909, + [SMALL_STATE(323)] = 13916, + [SMALL_STATE(324)] = 13923, + [SMALL_STATE(325)] = 13930, + [SMALL_STATE(326)] = 13937, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -13536,69 +13607,69 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), [45] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), [47] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(34), - [50] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(309), + [50] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(314), [53] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(4), [56] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(40), [59] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(40), [62] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(71), - [65] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(159), + [65] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(160), [68] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(166), - [71] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(167), - [74] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(171), - [77] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(173), - [80] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(305), - [83] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(305), - [86] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(176), - [89] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(312), - [92] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(323), + [71] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(168), + [74] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(169), + [77] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(174), + [80] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(315), + [83] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(315), + [86] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(177), + [89] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(307), + [92] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(308), [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), [103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 3), [105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 3), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), [113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 5), [115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 5), [117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 3), [119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 3), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), [127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 3), [129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 3), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), [145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_root, 1), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), [149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), [151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), @@ -13606,31 +13677,31 @@ static const TSParseActionEntry ts_parse_actions[] = { [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), [159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 5), [161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 5), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), [205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), [207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1), [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), [215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4), [217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4), @@ -13638,20 +13709,20 @@ static const TSParseActionEntry ts_parse_actions[] = { [221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 5), [223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4), [225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), [245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), [247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), [249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), [251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), [255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5), [257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5), [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), @@ -13665,7 +13736,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3), [277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 6), [279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 6), - [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), [283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), [285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), [287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), @@ -13674,187 +13745,192 @@ static const TSParseActionEntry ts_parse_actions[] = { [293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return, 2), [295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1), [297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), [307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 1), [309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 1), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), [313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 1), [315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 1), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), [333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 2), [335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 2), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), [341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 1), [343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 1), [345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), [347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_else_repeat1, 2), - [349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(208), - [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(96), - [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(285), - [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(98), - [363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(98), - [366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(83), - [369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(143), - [372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(197), - [375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), - [377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(314), - [380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(129), - [383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(301), - [386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), - [388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(134), - [391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(134), - [394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(133), - [397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(146), - [400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(175), - [403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(319), - [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 3), - [410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 3), - [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if, 3), - [434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if, 3), - [436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(96), - [439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(285), - [442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(98), - [445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(98), - [448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(83), - [451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(143), - [454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), - [456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(197), - [459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(314), - [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for, 5), - [476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for, 5), - [478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 5), - [480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 5), - [482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use, 2), - [484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use, 2), - [486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 2), - [488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 2), - [490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3), - [492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3), - [494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 4), - [496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 4), - [498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 3), - [500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 3), - [502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else, 2), - [504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else, 2), - [506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 3), - [508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 3), - [510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_assignment, 3), - [512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_assignment, 3), - [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_operator, 1), - [542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_operator, 1), - [544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(188), - [547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 3), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1), - [557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 4), - [559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 5), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(273), - [574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(260), - [577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), - [579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(247), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 1), - [586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), - [588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 3), - [590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 3), - [592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), - [594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic_operator, 1), - [596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic_operator, 1), - [598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 1), - [600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 1), - [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), SHIFT_REPEAT(292), - [609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), - [611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 3), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 3), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(310), - [634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), - [636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 1), - [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 4), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [658] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(206), + [352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(118), + [355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(301), + [358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), + [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(134), + [363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(134), + [366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(119), + [369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(161), + [372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(176), + [375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(309), + [378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(321), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 3), + [395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 3), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(86), + [414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(280), + [417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(98), + [420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(98), + [423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(97), + [426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(145), + [429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(192), + [432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), + [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(306), + [437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if, 3), + [439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if, 3), + [441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(86), + [444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(280), + [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(98), + [450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(98), + [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(97), + [456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(145), + [459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), + [461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(192), + [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(306), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use, 2), + [481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use, 2), + [483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for, 5), + [485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for, 5), + [487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 5), + [489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 5), + [491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 2), + [493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 2), + [495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3), + [497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3), + [499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 3), + [501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 3), + [503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 4), + [505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 4), + [507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_assignment, 3), + [509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_assignment, 3), + [511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else, 2), + [513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else, 2), + [515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 3), + [517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 3), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(187), + [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_operator, 1), + [548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_operator, 1), + [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 3), + [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2), + [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1), + [562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 4), + [564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 5), + [566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 3), + [568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 3), + [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 4), + [584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 4), + [586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(270), + [589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(261), + [592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), + [594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(256), + [597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), + [599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 1), + [605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 1), + [607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 1), + [609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic_operator, 1), + [611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic_operator, 1), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), SHIFT_REPEAT(290), + [620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), + [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 3), + [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 3), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 1), + [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(310), + [657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), + [659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 4), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [673] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), }; #ifdef __cplusplus